From 74561096fafe0a20dacb93fc2abb6726ac436d29 Mon Sep 17 00:00:00 2001 From: joshua stein Date: Sun, 7 Dec 2014 23:38:58 -0600 Subject: [PATCH] add an implementation of HTTPS Everywhere A ruby script converts all of the XML rule files into hashes and dumps them to plist files, which are parsed by the app at startup. When intercepting URLs, check for matching rules by hostname (using the same wildcarding as the Javascript in the Firefox extension) and then rewrite them. Supports exclusions as well. Seems to be pretty fast, and has a cache size of (currently) 20 rules to avoid having to recompile all those regexes and stuff on every request. --- .gitmodules | 3 + Podfile | 4 + Podfile.lock | 3 + endless Tests/HTTPSEverywhere_Tests.m | 70 + endless Tests/Info.plist | 24 + endless Tests/mock_rules.plist | 211 + endless Tests/mock_targets.plist | 34 + endless.xcodeproj/project.pbxproj | 243 +- endless/AppDelegate.h | 3 +- endless/AppDelegate.m | 7 + endless/Base.lproj/Main.storyboard | 8 +- endless/HTTPSEverywhere.h | 13 + endless/HTTPSEverywhere.m | 128 + endless/HTTPSEverywhereRule.h | 18 + endless/HTTPSEverywhereRule.m | 172 + endless/URLInterceptor.m | 85 +- endless/WebViewController.m | 10 +- endless/endless-Prefix.pch | 14 + endless/main.m | 2 - https-everywhere | 1 + https-everywhere_rules.plist | 428814 +++++++++++++++++++++++ https-everywhere_targets.plist | 54678 +++ https-everywhere_to_plist.rb | 48 + 23 files changed, 484533 insertions(+), 60 deletions(-) create mode 100644 .gitmodules create mode 100644 endless Tests/HTTPSEverywhere_Tests.m create mode 100644 endless Tests/Info.plist create mode 100644 endless Tests/mock_rules.plist create mode 100644 endless Tests/mock_targets.plist create mode 100644 endless/HTTPSEverywhere.h create mode 100644 endless/HTTPSEverywhere.m create mode 100644 endless/HTTPSEverywhereRule.h create mode 100644 endless/HTTPSEverywhereRule.m create mode 100644 endless/endless-Prefix.pch create mode 160000 https-everywhere create mode 100644 https-everywhere_rules.plist create mode 100644 https-everywhere_targets.plist create mode 100644 https-everywhere_to_plist.rb diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..46309a1 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "https-everywhere"] + path = https-everywhere + url = https://github.com/EFForg/https-everywhere diff --git a/Podfile b/Podfile index f9a8013..e1b3c15 100644 --- a/Podfile +++ b/Podfile @@ -2,3 +2,7 @@ platform :ios, "7.0" pod "NJKWebViewProgress" pod "InAppSettingsKit" + +target "endless Tests", :exclusive => true do + pod "OCMock" +end diff --git a/Podfile.lock b/Podfile.lock index 4c2d93a..a26170f 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -5,13 +5,16 @@ PODS: - NJKWebViewProgress/ProgressView (= 0.2.3) - NJKWebViewProgress/Core (0.2.3) - NJKWebViewProgress/ProgressView (0.2.3) + - OCMock (3.1.1) DEPENDENCIES: - InAppSettingsKit - NJKWebViewProgress + - OCMock SPEC CHECKSUMS: InAppSettingsKit: c4eb758abf9d71a3b7847a80ceebf02ce4299113 NJKWebViewProgress: 721b57080c840c76f70ff6c2dda4f836ee1b27c1 + OCMock: f6cb8c162ab9d5620dddf411282c7b2c0ee78854 COCOAPODS: 0.35.0 diff --git a/endless Tests/HTTPSEverywhere_Tests.m b/endless Tests/HTTPSEverywhere_Tests.m new file mode 100644 index 0000000..8d3b0ca --- /dev/null +++ b/endless Tests/HTTPSEverywhere_Tests.m @@ -0,0 +1,70 @@ +#import +#import +#import + +#import "HTTPSEverywhere.h" + +@interface HTTPSEverywhere_Tests : XCTestCase +@end + +@implementation HTTPSEverywhere_Tests + +id HEMocked; + +- (void)setUp { + [super setUp]; + // Put setup code here. This method is called before the invocation of each test method in the class. + + HEMocked = OCMClassMock([HTTPSEverywhere class]); + + NSFileManager *fm = [NSFileManager defaultManager]; + NSString *path = [[NSBundle bundleForClass:[self class]] pathForResource:@"mock_rules" ofType:@"plist"]; + if (![fm fileExistsAtPath:path]) + abort(); + + OCMStub([HEMocked rules]).andReturn([NSDictionary dictionaryWithContentsOfFile:path]); + + NSString *tpath = [[NSBundle bundleForClass:[self class]] pathForResource:@"mock_targets" ofType:@"plist"]; + if (![fm fileExistsAtPath:tpath]) + abort(); + + OCMStub([HEMocked targets]).andReturn([NSDictionary dictionaryWithContentsOfFile:tpath]); +} + +- (void)tearDown { + // Put teardown code here. This method is called after the invocation of each test method in the class. + [super tearDown]; +} + +- (void)testMock { + XCTAssertNotNil([[HTTPSEverywhere rules] objectForKey:@"Reddit"]); + XCTAssertNotNil([[HTTPSEverywhere rules] objectForKey:@"Better Business Bureau (partial)"]); + // make sure the big list didn't get loaded + XCTAssertNil([[HTTPSEverywhere rules] objectForKey:@"EFF"]); +} + +- (void)testApplicableRules { + NSArray *results = [HTTPSEverywhere potentiallyApplicableRulesFor:@"www.reddit.com"]; + XCTAssertEqual([results count], 1U); + XCTAssert([[results objectAtIndex:0] isKindOfClass:[HTTPSEverywhereRule class]]); + XCTAssert([[(HTTPSEverywhereRule *)[results objectAtIndex:0] name] isEqualToString:@"Reddit"]); +} + +- (void)testRewrittenURI { + NSURL *rewritten = [HTTPSEverywhere rewrittenURI:[NSURL URLWithString:@"http://www.reddit.com/test"]]; + XCTAssert([[rewritten absoluteString] isEqualToString:@"https://www.reddit.com/test"]); + + /* a more complex rewrite */ + rewritten = [HTTPSEverywhere rewrittenURI:[NSURL URLWithString:@"http://bbbonline.org/cks.asp?id=1234"]]; + XCTAssert([[rewritten absoluteString] isEqualToString:@"https://www.bbb.org/us/bbb-online-business/?id=1234"]); +} + +- (void)testRewrittenURIWithExclusion { + NSString *input = @"http://www.dc.bbb.org/"; + NSURL *rewritten = [HTTPSEverywhere rewrittenURI:[NSURL URLWithString:input]]; + XCTAssert([[rewritten absoluteString] isEqualToString:input]); + +} + + +@end diff --git a/endless Tests/Info.plist b/endless Tests/Info.plist new file mode 100644 index 0000000..7a07dda --- /dev/null +++ b/endless Tests/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + org.jcs.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/endless Tests/mock_rules.plist b/endless Tests/mock_rules.plist new file mode 100644 index 0000000..436b6b6 --- /dev/null +++ b/endless Tests/mock_rules.plist @@ -0,0 +1,211 @@ + + + + + Better Business Bureau (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?dc\. + + + pattern + http://(?:www\.)?seflorida\. + + + name + Better Business Bureau (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?la\.?bbb\.org/ + to + https://www.labbb.org/ + + + from + ^http://bbb\.org/ + to + https://www.bbb.org/ + + + from + ^http://(?:www\.)?([\w\-]+)\.bbb\.org/ + to + https://$1.bbb.org/ + + + from + ^http://hurdman\.app\.bbb\.org/ + to + https://hurdman.app.bbb.org/ + + + from + ^https?://(?:www\.)?bbbonline\.org/cks\.asp\?id=(\d+) + to + https://www.bbb.org/us/bbb-online-business/?id=$1 + + + from + ^http://(www\.)?bbbsilicon\.org/ + to + https://$1bbbsilicon.org/ + + + from + ^https?://(?:www\.)?sanjose\.bbb\.org/ + to + https://bbbsilicon.org/ + + + securecookie + + + host + ^.*\.bbb\.org$ + name + .* + + + host + ^(.*\.)?bbbsilicon\.org$ + name + .* + + + host + ^www\.labbb\.org$ + name + .* + + + target + + + host + bbb.org + + + host + hurdman.app.bbb.org + + + host + *.bbb.org + + + host + www.*.bbb.org + + + host + bbbonline.org + + + host + www.bbbonline.org + + + host + bbbsilicon.org + + + host + www.bbbsilicon.org + + + host + labbb.org + + + host + www.labbb.org + + + + + Reddit + + ruleset + + name + Reddit + rule + + + from + ^http://((?:[a-z]{1,2}|[a-z]{2}-[a-z]{2}|blog|pay|redditama|ssl|static|www)\.)?reddit\.com/ + to + https://$1reddit.com/ + + + from + ^http://(?:www\.)?np\.reddit\.com/ + to + https://np.reddit.com/ + + + from + ^http://thumbs\.reddit\.com/ + to + https://s3.amazonaws.com/thumbs.reddit.com/ + + + from + ^http://(\w+\.)?thumbs\.redditmedia\.com/ + to + https://$1thumbs.redditmedia.com/ + + + from + ^http://www\.redditstatic\.com/ + to + https://www.redditstatic.com/ + + + securecookie + + + host + .*\.reddit\.com$ + name + .+ + + + host + ^\.redditmedia\.com$ + name + ^__cfduid$ + + + target + + + host + reddit.com + + + host + *.reddit.com + + + host + *.redditmedia.com + + + host + www.redditstatic.com + + + + + + diff --git a/endless Tests/mock_targets.plist b/endless Tests/mock_targets.plist new file mode 100644 index 0000000..fd5d6a5 --- /dev/null +++ b/endless Tests/mock_targets.plist @@ -0,0 +1,34 @@ + + + + + *.bbb.org + Better Business Bureau (partial) + *.reddit.com + Reddit + *.redditmedia.com + Reddit + bbb.org + Better Business Bureau (partial) + bbbonline.org + Better Business Bureau (partial) + bbbsilicon.org + Better Business Bureau (partial) + hurdman.app.bbb.org + Better Business Bureau (partial) + labbb.org + Better Business Bureau (partial) + reddit.com + Reddit + www.*.bbb.org + Better Business Bureau (partial) + www.bbbonline.org + Better Business Bureau (partial) + www.bbbsilicon.org + Better Business Bureau (partial) + www.labbb.org + Better Business Bureau (partial) + www.redditstatic.com + Reddit + + diff --git a/endless.xcodeproj/project.pbxproj b/endless.xcodeproj/project.pbxproj index c844984..27a0ea0 100644 --- a/endless.xcodeproj/project.pbxproj +++ b/endless.xcodeproj/project.pbxproj @@ -13,12 +13,29 @@ 01801EA11A32CA2A002B4718 /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 01801EA01A32CA2A002B4718 /* WebViewController.m */; }; 01801EA41A32CA2A002B4718 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 01801EA21A32CA2A002B4718 /* Main.storyboard */; }; 01801EA61A32CA2A002B4718 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 01801EA51A32CA2A002B4718 /* Images.xcassets */; }; - 01801EA91A32CA2A002B4718 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 01801EA71A32CA2A002B4718 /* LaunchScreen.xib */; }; 01801EC01A335BEC002B4718 /* URLInterceptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 01801EBF1A335BEC002B4718 /* URLInterceptor.m */; }; 01801EC31A3360F8002B4718 /* InAppSettings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 01801EC21A3360F8002B4718 /* InAppSettings.bundle */; }; + 018333CA1A3505FB00670CD1 /* HTTPSEverywhere.m in Sources */ = {isa = PBXBuildFile; fileRef = 018333C91A3505FB00670CD1 /* HTTPSEverywhere.m */; }; + 018333D21A35291200670CD1 /* HTTPSEverywhereRule.m in Sources */ = {isa = PBXBuildFile; fileRef = 018333D11A35291200670CD1 /* HTTPSEverywhereRule.m */; }; + 018333DC1A35727C00670CD1 /* HTTPSEverywhere_Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 018333DB1A35727C00670CD1 /* HTTPSEverywhere_Tests.m */; }; + 018333E41A35742E00670CD1 /* mock_rules.plist in Resources */ = {isa = PBXBuildFile; fileRef = 018333E21A35742E00670CD1 /* mock_rules.plist */; }; + 018333E51A35742E00670CD1 /* mock_targets.plist in Resources */ = {isa = PBXBuildFile; fileRef = 018333E31A35742E00670CD1 /* mock_targets.plist */; }; + 018333E91A35746500670CD1 /* https-everywhere_rules.plist in Resources */ = {isa = PBXBuildFile; fileRef = 018333E71A35746500670CD1 /* https-everywhere_rules.plist */; }; + 018333EA1A35746500670CD1 /* https-everywhere_targets.plist in Resources */ = {isa = PBXBuildFile; fileRef = 018333E81A35746500670CD1 /* https-everywhere_targets.plist */; }; 0357A14A00B472D144F4F53B /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F000EBDB20709D482560EE0 /* libPods.a */; }; + BF746B2CD72A306F0316B40B /* libPods-endless Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78E95B84E061F9B319EB8E8B /* libPods-endless Tests.a */; }; /* End PBXBuildFile section */ +/* Begin PBXContainerItemProxy section */ + 018333DD1A35727C00670CD1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 01801E8A1A32CA2A002B4718 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01801E911A32CA2A002B4718; + remoteInfo = endless; + }; +/* End PBXContainerItemProxy section */ + /* Begin PBXFileReference section */ 01801E921A32CA2A002B4718 /* endless.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = endless.app; sourceTree = BUILT_PRODUCTS_DIR; }; 01801E961A32CA2A002B4718 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; @@ -30,12 +47,28 @@ 01801EA01A32CA2A002B4718 /* WebViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WebViewController.m; sourceTree = ""; }; 01801EA31A32CA2A002B4718 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 01801EA51A32CA2A002B4718 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = endless/Images.xcassets; sourceTree = ""; }; - 01801EA81A32CA2A002B4718 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 01801EBE1A335BEC002B4718 /* URLInterceptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = URLInterceptor.h; sourceTree = ""; }; 01801EBF1A335BEC002B4718 /* URLInterceptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = URLInterceptor.m; sourceTree = ""; }; 01801EC21A3360F8002B4718 /* InAppSettings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = InAppSettings.bundle; path = endless/InAppSettings.bundle; sourceTree = ""; }; + 018333C41A35027E00670CD1 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; }; + 018333C81A3505FB00670CD1 /* HTTPSEverywhere.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPSEverywhere.h; sourceTree = ""; }; + 018333C91A3505FB00670CD1 /* HTTPSEverywhere.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPSEverywhere.m; sourceTree = ""; }; + 018333CF1A351B3B00670CD1 /* endless-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "endless-Prefix.pch"; sourceTree = ""; }; + 018333D01A35291200670CD1 /* HTTPSEverywhereRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPSEverywhereRule.h; sourceTree = ""; }; + 018333D11A35291200670CD1 /* HTTPSEverywhereRule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPSEverywhereRule.m; sourceTree = ""; }; + 018333D71A35727C00670CD1 /* endless Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "endless Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 018333DA1A35727C00670CD1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 018333DB1A35727C00670CD1 /* HTTPSEverywhere_Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HTTPSEverywhere_Tests.m; sourceTree = ""; }; + 018333E21A35742E00670CD1 /* mock_rules.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = mock_rules.plist; sourceTree = ""; }; + 018333E31A35742E00670CD1 /* mock_targets.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = mock_targets.plist; sourceTree = ""; }; + 018333E71A35746500670CD1 /* https-everywhere_rules.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "https-everywhere_rules.plist"; sourceTree = ""; }; + 018333E81A35746500670CD1 /* https-everywhere_targets.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "https-everywhere_targets.plist"; sourceTree = ""; }; + 018333EB1A357D8B00670CD1 /* libPods-OCMock.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libPods-OCMock.a"; path = "Pods/build/Debug-iphoneos/libPods-OCMock.a"; sourceTree = ""; }; 5F000EBDB20709D482560EE0 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 78E95B84E061F9B319EB8E8B /* libPods-endless Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-endless Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D5539BB6B9C413DCDBDB86C7 /* Pods-endless Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-endless Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-endless Tests/Pods-endless Tests.release.xcconfig"; sourceTree = ""; }; DC10B8CFD8DB1137076245D9 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = ""; }; + DDC76BC31EB8F9AAFB8BEE31 /* Pods-endless Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-endless Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-endless Tests/Pods-endless Tests.debug.xcconfig"; sourceTree = ""; }; DDD1A40F3EE6113729C69C4E /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ @@ -48,6 +81,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 018333D41A35727C00670CD1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BF746B2CD72A306F0316B40B /* libPods-endless Tests.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -57,6 +98,7 @@ 01801E941A32CA2A002B4718 /* endless */, 01801EC11A3360B1002B4718 /* Resources */, 01801E951A32CA2A002B4718 /* Supporting Files */, + 018333D81A35727C00670CD1 /* endless Tests */, 01801E931A32CA2A002B4718 /* Products */, 15AD3EF085D2BF7B56887532 /* Pods */, 6CC21620E2AE7B4037C6401B /* Frameworks */, @@ -67,6 +109,7 @@ isa = PBXGroup; children = ( 01801E921A32CA2A002B4718 /* endless.app */, + 018333D71A35727C00670CD1 /* endless Tests.xctest */, ); name = Products; sourceTree = ""; @@ -76,12 +119,15 @@ children = ( 01801E991A32CA2A002B4718 /* AppDelegate.h */, 01801E9A1A32CA2A002B4718 /* AppDelegate.m */, - 01801E9F1A32CA2A002B4718 /* WebViewController.h */, - 01801EA01A32CA2A002B4718 /* WebViewController.m */, 01801EA21A32CA2A002B4718 /* Main.storyboard */, - 01801EA71A32CA2A002B4718 /* LaunchScreen.xib */, + 018333C81A3505FB00670CD1 /* HTTPSEverywhere.h */, + 018333C91A3505FB00670CD1 /* HTTPSEverywhere.m */, + 018333D01A35291200670CD1 /* HTTPSEverywhereRule.h */, + 018333D11A35291200670CD1 /* HTTPSEverywhereRule.m */, 01801EBE1A335BEC002B4718 /* URLInterceptor.h */, 01801EBF1A335BEC002B4718 /* URLInterceptor.m */, + 01801E9F1A32CA2A002B4718 /* WebViewController.h */, + 01801EA01A32CA2A002B4718 /* WebViewController.m */, ); path = endless; sourceTree = ""; @@ -91,6 +137,7 @@ children = ( 01801E961A32CA2A002B4718 /* Info.plist */, 01801E971A32CA2A002B4718 /* main.m */, + 018333CF1A351B3B00670CD1 /* endless-Prefix.pch */, ); name = "Supporting Files"; path = endless; @@ -99,6 +146,8 @@ 01801EC11A3360B1002B4718 /* Resources */ = { isa = PBXGroup; children = ( + 018333E71A35746500670CD1 /* https-everywhere_rules.plist */, + 018333E81A35746500670CD1 /* https-everywhere_targets.plist */, 01801EA51A32CA2A002B4718 /* Images.xcassets */, 01801E9C1A32CA2A002B4718 /* endless.xcdatamodeld */, 01801EC21A3360F8002B4718 /* InAppSettings.bundle */, @@ -106,11 +155,32 @@ name = Resources; sourceTree = ""; }; + 018333D81A35727C00670CD1 /* endless Tests */ = { + isa = PBXGroup; + children = ( + 018333DB1A35727C00670CD1 /* HTTPSEverywhere_Tests.m */, + 018333D91A35727C00670CD1 /* Supporting Files */, + ); + path = "endless Tests"; + sourceTree = ""; + }; + 018333D91A35727C00670CD1 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 018333E21A35742E00670CD1 /* mock_rules.plist */, + 018333E31A35742E00670CD1 /* mock_targets.plist */, + 018333DA1A35727C00670CD1 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; 15AD3EF085D2BF7B56887532 /* Pods */ = { isa = PBXGroup; children = ( DC10B8CFD8DB1137076245D9 /* Pods.debug.xcconfig */, DDD1A40F3EE6113729C69C4E /* Pods.release.xcconfig */, + DDC76BC31EB8F9AAFB8BEE31 /* Pods-endless Tests.debug.xcconfig */, + D5539BB6B9C413DCDBDB86C7 /* Pods-endless Tests.release.xcconfig */, ); name = Pods; sourceTree = ""; @@ -118,7 +188,10 @@ 6CC21620E2AE7B4037C6401B /* Frameworks */ = { isa = PBXGroup; children = ( + 018333EB1A357D8B00670CD1 /* libPods-OCMock.a */, + 018333C41A35027E00670CD1 /* libsqlite3.dylib */, 5F000EBDB20709D482560EE0 /* libPods.a */, + 78E95B84E061F9B319EB8E8B /* libPods-endless Tests.a */, ); name = Frameworks; sourceTree = ""; @@ -145,6 +218,26 @@ productReference = 01801E921A32CA2A002B4718 /* endless.app */; productType = "com.apple.product-type.application"; }; + 018333D61A35727C00670CD1 /* endless Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 018333DF1A35727C00670CD1 /* Build configuration list for PBXNativeTarget "endless Tests" */; + buildPhases = ( + B490F5F7A7DE676CD3B7340F /* Check Pods Manifest.lock */, + 018333D31A35727C00670CD1 /* Sources */, + 018333D41A35727C00670CD1 /* Frameworks */, + 018333D51A35727C00670CD1 /* Resources */, + 1A927D79DA43D9D14E9FB250 /* Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + 018333DE1A35727C00670CD1 /* PBXTargetDependency */, + ); + name = "endless Tests"; + productName = "endless Tests"; + productReference = 018333D71A35727C00670CD1 /* endless Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -157,6 +250,10 @@ 01801E911A32CA2A002B4718 = { CreatedOnToolsVersion = 6.1.1; }; + 018333D61A35727C00670CD1 = { + CreatedOnToolsVersion = 6.1.1; + TestTargetID = 01801E911A32CA2A002B4718; + }; }; }; buildConfigurationList = 01801E8D1A32CA2A002B4718 /* Build configuration list for PBXProject "endless" */; @@ -173,6 +270,7 @@ projectRoot = ""; targets = ( 01801E911A32CA2A002B4718 /* endless */, + 018333D61A35727C00670CD1 /* endless Tests */, ); }; /* End PBXProject section */ @@ -183,15 +281,40 @@ buildActionMask = 2147483647; files = ( 01801EA41A32CA2A002B4718 /* Main.storyboard in Resources */, + 018333EA1A35746500670CD1 /* https-everywhere_targets.plist in Resources */, 01801EC31A3360F8002B4718 /* InAppSettings.bundle in Resources */, - 01801EA91A32CA2A002B4718 /* LaunchScreen.xib in Resources */, + 018333E91A35746500670CD1 /* https-everywhere_rules.plist in Resources */, 01801EA61A32CA2A002B4718 /* Images.xcassets in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; + 018333D51A35727C00670CD1 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 018333E41A35742E00670CD1 /* mock_rules.plist in Resources */, + 018333E51A35742E00670CD1 /* mock_targets.plist in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 1A927D79DA43D9D14E9FB250 /* Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-endless Tests/Pods-endless Tests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; AD6CC348A4A754780C9FF2A3 /* Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -207,6 +330,21 @@ shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; + B490F5F7A7DE676CD3B7340F /* Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; F1123B8772DD1017FF7AD4C0 /* Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -231,14 +369,32 @@ files = ( 01801E9B1A32CA2A002B4718 /* AppDelegate.m in Sources */, 01801E981A32CA2A002B4718 /* main.m in Sources */, + 018333D21A35291200670CD1 /* HTTPSEverywhereRule.m in Sources */, 01801EA11A32CA2A002B4718 /* WebViewController.m in Sources */, 01801E9E1A32CA2A002B4718 /* endless.xcdatamodeld in Sources */, 01801EC01A335BEC002B4718 /* URLInterceptor.m in Sources */, + 018333CA1A3505FB00670CD1 /* HTTPSEverywhere.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 018333D31A35727C00670CD1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 018333DC1A35727C00670CD1 /* HTTPSEverywhere_Tests.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ +/* Begin PBXTargetDependency section */ + 018333DE1A35727C00670CD1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 01801E911A32CA2A002B4718 /* endless */; + targetProxy = 018333DD1A35727C00670CD1 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + /* Begin PBXVariantGroup section */ 01801EA21A32CA2A002B4718 /* Main.storyboard */ = { isa = PBXVariantGroup; @@ -248,14 +404,6 @@ name = Main.storyboard; sourceTree = ""; }; - 01801EA71A32CA2A002B4718 /* LaunchScreen.xib */ = { - isa = PBXVariantGroup; - children = ( - 01801EA81A32CA2A002B4718 /* Base */, - ); - name = LaunchScreen.xib; - sourceTree = ""; - }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ @@ -282,6 +430,7 @@ GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREFIX_HEADER = "endless/endless-Prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", @@ -322,6 +471,7 @@ ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREFIX_HEADER = "endless/endless-Prefix.pch"; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; @@ -357,6 +507,62 @@ }; name = Release; }; + 018333E01A35727C00670CD1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DDC76BC31EB8F9AAFB8BEE31 /* Pods-endless Tests.debug.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(inherited)", + ); + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + INFOPLIST_FILE = "endless Tests/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Pods/build/Debug-iphoneos", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + XCTest, + "-ObjC", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/endless.app/endless"; + }; + name = Debug; + }; + 018333E11A35727C00670CD1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D5539BB6B9C413DCDBDB86C7 /* Pods-endless Tests.release.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(inherited)", + ); + INFOPLIST_FILE = "endless Tests/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Pods/build/Debug-iphoneos", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + XCTest, + "-ObjC", + ); + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/endless.app/endless"; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -378,6 +584,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 018333DF1A35727C00670CD1 /* Build configuration list for PBXNativeTarget "endless Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 018333E01A35727C00670CD1 /* Debug */, + 018333E11A35727C00670CD1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ /* Begin XCVersionGroup section */ diff --git a/endless/AppDelegate.h b/endless/AppDelegate.h index 116afa2..9b6723b 100644 --- a/endless/AppDelegate.h +++ b/endless/AppDelegate.h @@ -3,8 +3,6 @@ #import "WebViewController.h" -#define TRACE - @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @@ -19,6 +17,7 @@ - (void)saveContext; - (NSURL *)applicationDocumentsDirectory; +- (void)dumpCookies; @end diff --git a/endless/AppDelegate.m b/endless/AppDelegate.m index e3ef372..5f97358 100644 --- a/endless/AppDelegate.m +++ b/endless/AppDelegate.m @@ -123,4 +123,11 @@ - (void)saveContext { } } +- (void)dumpCookies { + NSLog(@"cookie dump:"); + for (NSHTTPCookie *cookie in [[self cookieStorage] cookies]) { + NSLog(@" %@: \"%@\"=\"%@\"", cookie.domain, cookie.name, cookie.value); + } +} + @end diff --git a/endless/Base.lproj/Main.storyboard b/endless/Base.lproj/Main.storyboard index b2f38d7..b078891 100644 --- a/endless/Base.lproj/Main.storyboard +++ b/endless/Base.lproj/Main.storyboard @@ -43,11 +43,11 @@ - - - - + + + + diff --git a/endless/HTTPSEverywhere.h b/endless/HTTPSEverywhere.h new file mode 100644 index 0000000..27e072a --- /dev/null +++ b/endless/HTTPSEverywhere.h @@ -0,0 +1,13 @@ +#import +#import "HTTPSEverywhereRule.h" + +@interface HTTPSEverywhere : NSObject + ++ (NSDictionary *)rules; ++ (NSDictionary *)targets; + ++ (HTTPSEverywhereRule *)cachedRuleForName:(NSString *)name; ++ (NSArray *)potentiallyApplicableRulesFor:(NSString *)host; ++ (NSURL *)rewrittenURI:(NSURL *)URL; + +@end diff --git a/endless/HTTPSEverywhere.m b/endless/HTTPSEverywhere.m new file mode 100644 index 0000000..08cd324 --- /dev/null +++ b/endless/HTTPSEverywhere.m @@ -0,0 +1,128 @@ +#import "HTTPSEverywhere.h" + +@implementation HTTPSEverywhere + +static NSDictionary *_rules; +static NSDictionary *_targets; + +static NSCache *ruleCache; + +#define RULE_CACHE_SIZE 20 + ++ (NSDictionary *)rules { + if (_rules == nil) { + NSFileManager *fm = [NSFileManager defaultManager]; + NSString *path = [[NSBundle mainBundle] pathForResource:@"https-everywhere_rules" ofType:@"plist"]; + if (![fm fileExistsAtPath:path]) { + NSLog(@"[HTTPSEverywhere] no rule plist at %@", path); + abort(); + } + + _rules = [NSDictionary dictionaryWithContentsOfFile:path]; + +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] locked and loaded with %lu rules", [_rules count]); +#endif + } + + return _rules; +} + ++ (NSDictionary *)targets { + if (_targets == nil) { + NSFileManager *fm = [NSFileManager defaultManager]; + NSString *path = [[NSBundle mainBundle] pathForResource:@"https-everywhere_targets" ofType:@"plist"]; + if (![fm fileExistsAtPath:path]) { + NSLog(@"[HTTPSEverywhere] no target plist at %@", path); + abort(); + } + + _targets = [NSDictionary dictionaryWithContentsOfFile:path]; + +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] locked and loaded with %lu target domains", [_targets count]); +#endif + } + + return _targets; +} + ++ (void)cacheRule:(HTTPSEverywhereRule *)rule forName:(NSString *)name { + if (!ruleCache) { + ruleCache = [[NSCache alloc] init]; + [ruleCache setCountLimit:RULE_CACHE_SIZE]; + } + +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] cache miss for %@", name); +#endif + + [ruleCache setObject:rule forKey:name]; +} + ++ (HTTPSEverywhereRule *)cachedRuleForName:(NSString *)name { + HTTPSEverywhereRule *r; + + if (ruleCache) { + if ((r = [ruleCache objectForKey:name]) != nil) { +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] cache hit for %@", name); +#endif + return r; + } + } + + r = [[HTTPSEverywhereRule alloc] initWithDictionary:[[[self class] rules] objectForKey:name]]; + [[self class] cacheRule:r forName:name]; + + return r; +} + ++ (NSArray *)potentiallyApplicableRulesFor:(NSString *)host { + NSMutableDictionary *rs = [[NSMutableDictionary alloc] initWithCapacity:2]; + + host = [host lowercaseString]; + + NSString *targetName = [[[self class] targets] objectForKey:host]; + if (targetName != nil) + [rs setValue:[[self class] cachedRuleForName:targetName] forKey:targetName]; + + /* now for x.y.z.example.com, try *.y.z.example.com, *.z.example.com, *.example.com, etc. */ + /* TODO: should we skip the last component for obviously non-matching things like "*.com", "*.net"? */ + NSArray *hostp = [host componentsSeparatedByString:@"."]; + for (int i = 1; i < [hostp count]; i++) { + NSString *wc = [[hostp subarrayWithRange:NSMakeRange(i, [hostp count] - i)] componentsJoinedByString:@"."]; + + NSString *targetName = [[[self class] targets] objectForKey:wc]; + if (targetName != nil) { +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] found ruleset %@ for component %@ in %@", targetName, wc, host); +#endif + if (![rs objectForKey:targetName]) + [rs setValue:[[self class] cachedRuleForName:targetName] forKey:targetName]; + } + } + + return [rs allValues]; +} + ++ (NSURL *)rewrittenURI:(NSURL *)URL { + NSArray *rs = [[self class] potentiallyApplicableRulesFor:[URL host]]; + + if (rs == nil || [rs count] == 0) + return URL; + +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] have %lu applicable ruleset(s) for %@", [rs count], [URL absoluteString]); +#endif + + for (HTTPSEverywhereRule *rule in rs) { + NSURL *rurl = [rule apply:URL]; + if (rurl != nil) + return rurl; + } + + return URL; +} + +@end diff --git a/endless/HTTPSEverywhereRule.h b/endless/HTTPSEverywhereRule.h new file mode 100644 index 0000000..9d40648 --- /dev/null +++ b/endless/HTTPSEverywhereRule.h @@ -0,0 +1,18 @@ +#import + +@interface HTTPSEverywhereRule : NSObject + +@property NSString *name; +@property NSArray *exclusions; +@property NSDictionary *rules; +@property NSDictionary *securecookies; +@property NSString *platform; +@property BOOL on_by_default; +@property NSString *notes; +/* not loaded here since HTTPSEverywhere class has a big list of them */ +@property NSArray *targets; + +- (id)initWithDictionary:(NSDictionary *)dict; +- (NSURL *)apply:(NSURL *)url; + +@end diff --git a/endless/HTTPSEverywhereRule.m b/endless/HTTPSEverywhereRule.m new file mode 100644 index 0000000..3f247da --- /dev/null +++ b/endless/HTTPSEverywhereRule.m @@ -0,0 +1,172 @@ +#import "HTTPSEverywhereRule.h" + +@implementation HTTPSEverywhereRule + +/* typical ruleset imported from XML rule: + + ruleset = { + exclusion = { + pattern = "^http://(help|meme)\\.duckduckgo\\.com/"; + }; + name = DuckDuckGo; + rule = ( + { + from = "^http://duckduckgo\\.com/"; + to = "https://duckduckgo.com/"; + }, + { + from = "^http://([^/:@\\.]+)\\.duckduckgo\\.com/"; + to = "https://$1.duckduckgo.com/"; + }, + ); + securecookie = { + host = "^duck\\.co$"; + name = ".*"; + }; + target = ( + { + host = "duckduckgo.com"; + }, + { + host = "*.duckduckgo.com"; + }, + ); + }; +*/ + +- (id)initWithDictionary:(NSDictionary *)dict { + NSError *error; + NSObject *t; + + NSDictionary *ruleset = [dict objectForKey:@"ruleset"]; + if (ruleset == nil) { + NSLog(@"[HTTPSEverywhere] ruleset dict not found in %@", dict); + return nil; + } + + self.name = (NSString *)[ruleset objectForKey:@"name"]; + + NSString *doff = [ruleset objectForKey:@"default_off"]; + if (doff != nil && ![doff isEqualToString:@""]) { + self.on_by_default = NO; + self.notes = doff; + } else { + self.on_by_default = YES; + } + + self.platform = (NSString *)[ruleset objectForKey:@"platform"]; + /* TODO: do something useful with platform to disable rules */ + + /* exclusions */ + if ((t = [ruleset objectForKey:@"exclusion"]) != nil) { + if (![t isKindOfClass:[NSArray class]]) + t = [[NSArray alloc] initWithObjects:t, nil]; + + NSMutableArray *excs = [[NSMutableArray alloc] initWithCapacity:2]; + + for (NSDictionary *excd in (NSArray *)t) { + NSString *pattern = [excd valueForKey:@"pattern"]; + + NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:pattern options:NSRegularExpressionCaseInsensitive error:&error]; + if (error != nil) { + NSLog(@"[HTTPSEverywhere] error compiling regex %@: %@", pattern, error); + continue; + } + + [excs addObject:regex]; + } + + self.exclusions = excs; + } + + /* actual url mappings, dictionary of input url regex -> good url */ + if ((t = [ruleset objectForKey:@"rule"]) != nil) { + if (![t isKindOfClass:[NSArray class]]) + t = [[NSArray alloc] initWithObjects:t, nil]; + + NSMutableDictionary *rulesd = [[NSMutableDictionary alloc] initWithCapacity:2]; + + for (NSDictionary *ruled in (NSArray *)t) { + NSString *from = [ruled valueForKey:@"from"]; + NSString *to = [ruled valueForKey:@"to"]; + + NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:from options:NSRegularExpressionCaseInsensitive error:&error]; + if (error != nil) { + NSLog(@"[HTTPSEverywhere] error compiling regex %@: %@", from, error); + continue; + } + + [rulesd setObject:to forKey:regex]; + } + + self.rules = rulesd; + } + + /* securecookies, dictionary of host regex -> cookie name regex */ + if ((t = [ruleset objectForKey:@"securecookie"]) != nil) { + if (![t isKindOfClass:[NSArray class]]) + t = [[NSArray alloc] initWithObjects:t, nil]; + + NSMutableDictionary *scooksd = [[NSMutableDictionary alloc] initWithCapacity:2]; + + for (NSDictionary *scookd in (NSArray *)t) { + NSString *host = [scookd valueForKey:@"host"]; + NSString *cname = [scookd valueForKey:@"name"]; + + NSRegularExpression *hostreg = [NSRegularExpression regularExpressionWithPattern:host options:NSRegularExpressionCaseInsensitive error:&error]; + if (error != nil) { + NSLog(@"[HTTPSEverywhere] error compiling regex %@: %@", host, error); + continue; + } + + NSRegularExpression *namereg = [NSRegularExpression regularExpressionWithPattern:cname options:NSRegularExpressionCaseInsensitive error:&error]; + if (error != nil) { + NSLog(@"[HTTPSEverywhere] error compiling regex %@: %@", cname, error); + continue; + } + + [scooksd setObject:namereg forKey:hostreg]; + } + + self.securecookies = scooksd; + } + +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] parsed plist for %@", self.name); +#endif + + return self; +} + +/* return nil if URL was not modified by this rule */ +- (NSURL *)apply:(NSURL *)url { + NSString *absURL = [url absoluteString]; + NSArray *matches; + + for (NSRegularExpression *reg in (NSArray *)self.exclusions) { + if ((matches = [reg matchesInString:absURL options:0 range:NSMakeRange(0, [absURL length])]) != nil && [matches count] > 0) { +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] [%@] exclusion %@ matched %@", self.name, [reg pattern], absURL); +#endif + return nil; + } + } + + for (NSRegularExpression *reg in (NSDictionary *)self.rules) { + if ((matches = [reg matchesInString:absURL options:0 range:NSMakeRange(0, [absURL length])]) != nil && [matches count] > 0) { + NSString *dest = [[self rules] objectForKey:reg]; + dest = [reg stringByReplacingMatchesInString:absURL options:0 range:NSMakeRange(0, [absURL length]) withTemplate:dest]; + +#ifdef TRACE_HTTPS_EVERYWHERE + NSLog(@"[HTTPSEverywhere] [%@] rewrote %@ to %@", self.name, absURL, dest); +#endif + + /* JS implementation says first matching wins */ + return [NSURL URLWithString:dest]; + } + } + + return nil; +} + +@end diff --git a/endless/URLInterceptor.m b/endless/URLInterceptor.m index 2e8e9c7..37f67ea 100644 --- a/endless/URLInterceptor.m +++ b/endless/URLInterceptor.m @@ -1,4 +1,5 @@ #import "AppDelegate.h" +#import "HTTPSEverywhere.h" #import "URLInterceptor.h" @interface URLInterceptor () @@ -15,6 +16,10 @@ + (BOOL)canInitWithRequest:(NSURLRequest *)request { if ([NSURLProtocol propertyForKey:REWRITTEN_KEY inRequest:request] != nil) /* already mucked with this request */ return NO; + + if ([[[[request URL] scheme] lowercaseString] isEqualToString:@"data"]) + /* can't really do anything for these URLs */ + return NO; if (appDelegate == nil) appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate]; @@ -31,25 +36,37 @@ - (void)startLoading { self.origRequest = self.request; self.evOrgName = nil; - + NSMutableURLRequest *newRequest = [self.request mutableCopy]; #ifdef TRACE - NSLog(@"startLoading URL: %@", [[newRequest URL] absoluteString]); + NSLog(@"startLoading URL (%@): %@", [newRequest HTTPMethod], [[newRequest URL] absoluteString]); #endif + + [newRequest setURL:[HTTPSEverywhere rewrittenURI:[[self request] URL]]]; + /* redirections can happen without us seeing them, so keep the webview chrome in the loop */ [[appDelegate curWebView] setCurURL:[newRequest mainDocumentURL]]; - + + /* we're handling cookies ourself */ + [newRequest setHTTPShouldHandleCookies:NO]; + NSArray *cookies = [[appDelegate cookieStorage] cookiesForURL:[newRequest URL]]; + if (cookies != nil && [cookies count] > 0) { +#ifdef TRACE + NSLog(@"sending %lu cookie(s) to %@", [cookies count], [newRequest URL]); +#endif + NSDictionary *headers = [NSHTTPCookie requestHeaderFieldsWithCookies:cookies]; + [newRequest setAllHTTPHeaderFields:headers]; + } + /* add "do not track" header */ if (true /* TODO: move this to a pref check */) { [newRequest setValue:@"1" forHTTPHeaderField:@"DNT"]; } - + + /* remember that we saw this to avoid a loop */ [NSURLProtocol setProperty:@YES forKey:REWRITTEN_KEY inRequest:newRequest]; - - /* we're handling cookies ourself */ - [newRequest setHTTPShouldHandleCookies:NO]; - + self.connection = [NSURLConnection connectionWithRequest:newRequest delegate:self]; } @@ -64,16 +81,20 @@ - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSUR /* we don't get a redirect response when only upgrading from http -> https on the same hostname, so we have to find it ourselves :( */ if (response == nil && [self.origRequest hash] != [request hash]) { +#ifdef TRACE NSLog(@"hash changed, URL went from %@ to %@", [[self.origRequest URL] absoluteString], [[request URL] absoluteString]); +#endif schemaRedirect = true; } if (response == nil && !schemaRedirect) { #ifdef TRACE - NSLog(@"willSendRequest to %@", [[request URL] absoluteString]); + NSLog(@"willSendRequest %@ to %@", [request HTTPMethod], [[request URL] absoluteString]); #endif } else { + [self extractCookiesFromResponse:response forURL:[request URL] fromMainDocument:[[appDelegate curWebView] curURL]]; + #ifdef TRACE if (schemaRedirect && response == nil) NSLog(@"willSendRequest being redirected (schema-only) from %@ to %@", [[self.origRequest URL] absoluteString], [[request URL] absoluteString]); @@ -98,28 +119,8 @@ - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSUR - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { - NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response; - NSMutableArray *cookies = [[NSMutableArray alloc] initWithCapacity:5]; - - for (NSHTTPCookie *cookie in [NSHTTPCookie cookiesWithResponseHeaderFields:[httpResponse allHeaderFields] forURL:[self.request URL]]) { - /* toggle "secure" bit */ - NSMutableDictionary *ps = (NSMutableDictionary *)[cookie properties]; - [ps setValue:@"TRUE" forKey:NSHTTPCookieSecure]; + [self extractCookiesFromResponse:response forURL:[self.request URL] fromMainDocument:[[appDelegate curWebView] curURL]]; - /* and make everything a session cookie */ - [ps setValue:@"TRUE" forKey:NSHTTPCookieDiscard]; - - NSHTTPCookie *nCookie = [[NSHTTPCookie alloc] initWithProperties:ps]; - [cookies addObject:nCookie]; - } - - if ([cookies count] > 0) { -#ifdef TRACE - NSLog(@"setting %lu cookie(s) for %@ (via %@)", [cookies count], [[self.request URL] host], [[appDelegate curWebView] curURL]); -#endif - [[appDelegate cookieStorage] setCookies:cookies forURL:[self.request URL] mainDocumentURL:[[appDelegate curWebView] curURL]]; - } - if (self.evOrgName != nil && ![self.evOrgName isEqualToString:@""]) { NSLog(@"EV info is %@", self.evOrgName); } @@ -179,4 +180,28 @@ - (void) connection:(NSURLConnection *)conn didReceiveAuthenticationChallenge:(N [[challenge sender] continueWithoutCredentialForAuthenticationChallenge:challenge]; } +- (void)extractCookiesFromResponse:(NSURLResponse *)response forURL:(NSURL *)url fromMainDocument:(NSURL *)mainDocument { + NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response; + NSMutableArray *cookies = [[NSMutableArray alloc] initWithCapacity:5]; + + for (NSHTTPCookie *cookie in [NSHTTPCookie cookiesWithResponseHeaderFields:[httpResponse allHeaderFields] forURL:url]) { + /* toggle "secure" bit */ + NSMutableDictionary *ps = (NSMutableDictionary *)[cookie properties]; + [ps setValue:@"TRUE" forKey:NSHTTPCookieSecure]; + + /* and make everything a session cookie */ + [ps setValue:@"TRUE" forKey:NSHTTPCookieDiscard]; + + NSHTTPCookie *nCookie = [[NSHTTPCookie alloc] initWithProperties:ps]; + [cookies addObject:nCookie]; + } + + if ([cookies count] > 0) { +#ifdef TRACE + NSLog(@"storing %lu cookie(s) for %@ (via %@)", [cookies count], [url host], mainDocument); +#endif + [[appDelegate cookieStorage] setCookies:cookies forURL:url mainDocumentURL:mainDocument]; + } +} + @end \ No newline at end of file diff --git a/endless/WebViewController.m b/endless/WebViewController.m index df42844..b1979b6 100644 --- a/endless/WebViewController.m +++ b/endless/WebViewController.m @@ -187,15 +187,9 @@ - (void)webViewDidFinishLoad:(UIWebView *)_webView { #endif [self updateSearchBarDetails]; -#ifdef DEBUG - NSLog(@"cookie dump:"); -#endif - for (NSHTTPCookie *cookie in [[appDelegate cookieStorage] cookies]) { -#ifdef DEBUG - NSLog(@" %@: \"%@\"=\"%@\"", cookie.domain, cookie.name, cookie.value); +#ifdef TRACE + [appDelegate dumpCookies]; #endif - [[appDelegate cookieStorage] deleteCookie:cookie]; - } } - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error { diff --git a/endless/endless-Prefix.pch b/endless/endless-Prefix.pch new file mode 100644 index 0000000..6f08f63 --- /dev/null +++ b/endless/endless-Prefix.pch @@ -0,0 +1,14 @@ +#ifndef endless_endless_Prefix_pch +#define endless_endless_Prefix_pch + +#ifdef DEBUG + +/* NSLog() all network activity and boring stuff */ +//# define TRACE + +/* be verbose about HTTPS Everywhere workings */ +//# define TRACE_HTTPS_EVERYWHERE + +#endif + +#endif diff --git a/endless/main.m b/endless/main.m index aad00db..d807d1a 100644 --- a/endless/main.m +++ b/endless/main.m @@ -1,8 +1,6 @@ #import #import "AppDelegate.h" -#undef TRACE - int main(int argc, char * argv[]) { @autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); diff --git a/https-everywhere b/https-everywhere new file mode 160000 index 0000000..7876b06 --- /dev/null +++ b/https-everywhere @@ -0,0 +1 @@ +Subproject commit 7876b06712eb13247eef167ddf8675f99dce4703 diff --git a/https-everywhere_rules.plist b/https-everywhere_rules.plist new file mode 100644 index 0000000..0209880 --- /dev/null +++ b/https-everywhere_rules.plist @@ -0,0 +1,428814 @@ + + + + + 00f.net + + ruleset + + name + 00f.net + rule + + from + ^http://(?:(f\.)|www\.)?00f\.net/ + to + https://$100f.net/ + + target + + + host + 00f.net + + + host + *.00f.net + + + + + 01.org + + ruleset + + name + 01.org + rule + + + from + ^http://(lists\.|www\.)?01\.org/ + to + https://$101.org/ + + + from + ^http://mx\.01\.org/ + to + https://lists.01.org/mailman/listinfo + + + target + + + host + 01.org + + + host + *.01.org + + + + + 0x539 dev group (partial) + + ruleset + + name + 0x539 dev group (partial) + rule + + from + ^http://(gobby|hosting)\.0x539\.de/ + to + https://$1.0x539.de/ + + securecookie + + host + ^\w+\.0x539\.de$ + name + .* + + target + + + host + hosting.0x539.de + + + host + gobby.0x539.de + + + + + 0xbadc0de.be (partial) + + ruleset + + name + 0xbadc0de.be (partial) + rule + + + from + ^http://0xbadc0de\.be/ + to + https://0xbadc0de.be/ + + + from + ^http://www\.0xbadc0de\.be/+(?:\?.*)?$ + to + https://blog.0xbadc0de.be/ + + + from + ^http://www\.0xbadc0de\.be/+wiki/*(?=$|\?.*) + to + https://blog.0xbadc0de.be/ + + + from + ^http://(blog|stats)\.0xbadc0de\.be/ + to + https://$1.0xbadc0de.be/ + + + securecookie + + host + ^stats\.0xbadc0de\.be$ + name + .+ + + target + + + host + 0xbadc0de.be + + + host + *.0xbadc0de.be + + + + + 1 Deg.org + + ruleset + + name + 1 Deg.org + rule + + from + ^http://(www\.)?1deg\.org/ + to + https://$11deg.org/ + + target + + + host + 1deg.org + + + host + www.1deg.org + + + + + 1&1 Internet + + ruleset + + exclusion + + pattern + ^https://www\.1and1\.(co\.uk|com|ca)/(xml/|\?__) + + name + 1&1 Internet + rule + + + from + ^http://((?:admin|forum|mailxchange|mywebsite(?:personal)?|order|password|redirect|shop|www)\.)?1and1\.com/ + to + https://$11and1.com/ + + + from + ^http://webmailcluster\.perfora\.net/ + to + https://webmailcluster.perfora.net/ + + + from + ^http://uim\.tifbs\.net/ + to + https://uim.tifbs.net/ + + + from + ^https?://(?:www\.)?1and1\.co\.uk/ + to + https://order.1and1.co.uk/ + + + from + ^http://(admin|mailxchange|mywebsite(?:personal)?|online-office|order|password|redirect|shop|webmailcluster)\.1and1\.co\.uk/ + to + https://$1.1and1.co.uk/ + + + from + ^https?://(?:www\.)?1and1\.ca/ + to + https://order.1and1.ca/ + + + from + ^http://(admin|mywebsitepersonal|online-office|order|password)\.1and1\.ca/ + to + https://$1.1and1.ca/ + + + from + ^http://mywebsite\.1and1\.ca/tariff($|;) + to + https://mywebsite.1and1.ca/tariff$1 + + + securecookie + + + host + ^((admin|forum|mailxchange|mywebsite|mywebsitepersonal|order|password|redirect|shop|www)?\.)?1and1\.com$ + name + .+ + + + host + ^webmailcluster\.perfora\.net$ + name + .+ + + + host + ^((admin|mailxchange|mywebsite(personal)?|online-office|order|password|redirect|shop|webmailcluster|www)?\.)?1and1\.co\.uk$ + name + .+ + + + host + ^((admin|mywebsitepersonal|online-office|order|password|www)?\.)?1and1\.ca$ + name + .+ + + + target + + + host + 1and1.com + + + host + *.1and1.com + + + host + webmailcluster.perfora.net + + + host + uim.tifbs.net + + + host + 1and1.co.uk + + + host + *.1and1.co.uk + + + host + 1and1.ca + + + host + *.1and1.ca + + + + + 10 Minute Mail.com (false MCB) + + ruleset + + name + 10 Minute Mail.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?10minutemail\.com/ + to + https://$110minutemail.com/ + + securecookie + + host + ^\.?10minutemail\.com$ + name + .+ + + target + + + host + 10minutemail.com + + + host + *.10minutemail.com + + + + + 100-gute-gruende.de + + ruleset + + name + 100-gute-gruende.de + rule + + from + ^http://(www\.)?100-gute-gruende\.de/ + to + https://www.100-gute-gruende.de/ + + target + + + host + www.100-gute-gruende.de + + + host + 100-gute-gruende.de + + + + + 10gen + + ruleset + + name + 10gen + rule + + from + ^http://(mms\.|www\.)?10gen\.com/ + to + https://$110gen.com/ + + target + + + host + 10gen.com + + + host + *.10gen.com + + + + + 1177.se + + ruleset + + name + 1177.se + rule + + from + ^http://(?:www\.)?1177\.se/ + to + https://www.1177.se/ + + target + + + host + 1177.se + + + host + www.1177.se + + + + + 11footballclub + + ruleset + + name + 11footballclub + rule + + from + ^http://(cdn\.|www\.)?11footballclub\.com/ + to + https://$111footballclub.com/ + + securecookie + + host + ^\.11footballclub\.com$ + name + .+ + + target + + + host + 11footballclub.com + + + host + *.11footballclub.com + + + + + 123-reg + + ruleset + + name + 123-reg + rule + + + from + ^https?://inside\.123-reg\.co\.uk/ + to + https://www.123-reg.co.uk/blog/ + + + from + ^http://(\w+\.)?123-reg\.co\.uk/ + to + https://$1123-reg.co.uk/ + + + from + ^http://ssllin1\.123-secure\.com/ + to + https://ssllin1.123-secure.com/ + + + securecookie + + host + ^.*\.123-reg\.co\.uk$ + name + .* + + target + + + host + 123-reg.co.uk + + + host + *.123-reg.co.uk + + + host + ssllin1.123-secure.com + + + + + 123Count.com + + ruleset + + name + 123Count.com + rule + + from + ^http://(?:www\.)?123count\.com/ + to + https://www.123count.com/ + + securecookie + + host + ^\.123count\.com$ + name + .+ + + target + + + host + 123count.com + + + host + *.123count.com + + + + + 123RF + + ruleset + + name + 123RF + rule + + + from + ^http://(www\.)?123rf\.com/ + to + https://$1123rf.com/ + + + from + ^https?://static\.123rf\.com/ + to + https://d3klshmqqidl5x.cloudfront.net/ + + + securecookie + + host + ^.*\.123rf\.com$ + name + .+ + + target + + + host + 123rf.com + + + host + *.123rf.com + + + + + 123eHost.com + + ruleset + + name + 123eHost.com + rule + + + from + ^https?://(?:www\.)?123ehost\.com/ + to + https://www.123ehost.com/ + + + from + ^http://drive29\.mywwwserver\.com/ + to + https://drive29.mywwwserver.com/ + + + from + ^http://drive7000\.station030\.com/ + to + https://drive7000.station030.com/ + + + target + + + host + 123ehost.com + + + host + www.123ehost.com + + + host + drive29.mywwwserver.com + + + host + drive7000.station030.com + + + + + 123systems + + ruleset + + name + 123systems + rule + + from + ^http://(www\.)?123systems\.net/ + to + https://$1123systems.net/ + + securecookie + + host + ^\.?123systems\.net$ + name + .+ + + target + + + host + 123systems.net + + + host + *.123systems.net + + + + + 131002.net + + ruleset + + name + 131002.net + rule + + from + ^http://(www\.)?131002\.net/ + to + https://$1131002.net/ + + target + + + host + 131002.net + + + host + www.131002.net + + + + + 1688.com (partial) + + ruleset + + name + 1688.com (partial) + rule + + from + ^http://dmtracking\.1688\.com/ + to + https://dmtracking.1688.com/ + + securecookie + + host + ^\.1688\.com$ + name + ^ali_beacon_id$ + + target + + host + *.1688.com + + + + 168qiquan.com (partial) + + ruleset + + name + 168qiquan.com (partial) + rule + + from + ^http://hk\.168qiquan\.com/(?=bridge/|css/|favicon\.ico|images/|javax\.faces\.resource/|jsp?/|thickbox/|undefined/) + to + https://hk.168qiquan.com/ + + target + + host + hk.168qiquan.com + + + + 16personalities.com + + ruleset + + name + 16personalities.com + rule + + + from + ^https?://16personalities\.com/ + to + https://www.16personalities.com/ + + + from + ^http://([^/:@]+)\.16personalities\.com/ + to + https://$1.16personalities.com/ + + + target + + + host + 16personalities.com + + + host + *.16personalities.com + + + + + 17track.net + + ruleset + + name + 17track.net + platform + mixedcontent + rule + + from + ^http://(www\.)?17track\.net/ + to + https://www.17track.net/ + + target + + + host + 17track.net + + + host + www.17track.net + + + + + 1984.is + + ruleset + + name + 1984.is + rule + + + from + ^http://(?:www\.)?1984\.is/ + to + https://1984.is/ + + + from + ^http://(?:www\.)?1984hosting\.com/ + to + https://1984hosting.com/ + + + securecookie + + + host + ^(www)?\.1984\.is$ + name + .* + + + host + ^(www)?\.1984hosting\.com$ + name + .* + + + target + + + host + 1984.is + + + host + www.1984.is + + + host + 1984hosting.com + + + host + www.1984hosting.com + + + + + 1Cart + + ruleset + + name + 1Cart + rule + + + from + ^http://(www\.)?1cart\.co(?:m|\.nz)/ + to + https://$11cart.co.nz/ + + + from + ^http://resellers\.1cart\.com/ + to + https://resellers.1cart.com/ + + + securecookie + + + host + ^resellers\.1cart\.com$ + name + .* + + + host + ^(www\.)?1cart\.co\.nz$ + name + .* + + + target + + + host + 1cart.com + + + host + *.1cart.com + + + host + 1cart.co.nz + + + host + www.1cart.co.nz + + + + + 1LotSTP.com + + ruleset + + name + 1LotSTP.com + rule + + from + ^http://(new\.|www\.)?1lotstp\.com/ + to + https://$11lotstp.com/ + + securecookie + + host + ^\.1lotstp\.com$ + name + .+ + + target + + + host + 1lotstp.com + + + host + *.1lotstp.com + + + + + 1NightStandStory + + ruleset + + name + 1NightStandStory + rule + + from + ^http://(?:www\.)?1nightstandstory\.com/ + to + https://www.1nightstandstory.com/ + + target + + + host + 1nightstandstory.com + + + host + www.1nightstandstory.com + + + + + 1PipFix + + ruleset + + name + 1PipFix + rule + + from + ^http://(www\.)?1pipfix\.com/ + to + https://$11pipfix.com/ + + securecookie + + host + ^(?:w*\.)?1pipfix\.com$ + name + .+ + + target + + + host + 1pipfix.com + + + host + *.1pipfix.com + + + + + 1TW.org + + ruleset + + name + 1TW.org + rule + + from + ^http://c\.1tw\.org/ + to + https://d2bj0t3lpy2azd.cloudfront.net/ + + target + + host + c.1tw.org + + + + 1WT.eu (partial) + + ruleset + + name + 1WT.eu (partial) + rule + + from + ^http://(?:(demo\.)|static\.|www\.)?1wt\.eu/ + to + https://$11wt.eu/ + + target + + + host + 1wt.eu + + + host + *.1wt.eu + + + + + 1X + + ruleset + + name + 1X + rule + + + from + ^http://(?:(autodiscover\.|owa\.)|www\.)?1x\.com/ + to + https://$11x.com/ + + + from + ^https?://mail\.1x\.com/(?:.*) + to + https://mail.google.com/a/1x.com + + + securecookie + + host + ^\.1x\.com$ + name + .+ + + target + + + host + 1x.com + + + host + *.1x.com + + + + + 1c-bitrix.ru (partial) + + ruleset + + name + 1c-bitrix.ru (partial) + rule + + + from + ^http://(?:www\.)?1c-bitrix\.ru/ + to + https://www.1c-bitrix.ru/ + + + from + ^http://(1c|academy|dev|idea|marketplace|partners|promo)\.1c-bitrix\.ru/ + to + https://$1.1c-bitrix.ru/ + + + securecookie + + host + ^\.1c-bitrix\.ru$ + name + .+ + + target + + + host + 1c-bitrix.ru + + + host + *.1c-bitrix.ru + + + + + 1f0.de (partial) + + ruleset + + name + 1f0.de (partial) + platform + cacert + rule + + from + ^http://(?:www\.)?1f0\.de/wp-content/ + to + https://www.1f0.de/wp-content/ + + target + + + host + 1f0.de + + + host + www.1f0.de + + + + + 1nsk.ru (partial) + + ruleset + + name + 1nsk.ru (partial) + rule + + from + ^http://live\.1nsk\.ru/ + to + https://live.1nsk.ru/ + + securecookie + + host + ^live\.1nsk\.ru$ + name + .+ + + target + + host + live.1nsk.ru + + + + 1phads.com + + ruleset + + name + 1phads.com + rule + + from + ^http://(?:www\.)?1phads\.com/ + to + https://1phads.com/ + + securecookie + + host + ^1phads\.com$ + name + .+ + + target + + + host + 1phads.com + + + host + www.1phads.com + + + + + 1s and 0s.nl + + ruleset + + name + 1s and 0s.nl + rule + + from + ^http://(www\.)?1sand0s\.nl/ + to + https://$11sand0s.nl/ + + target + + + host + 1sand0s.nl + + + host + www.1sand0s.nl + + + + + 1ty.me + + ruleset + + name + 1ty.me + rule + + from + ^http://(www\.)?1ty\.me/ + to + https://$11ty.me/ + + target + + + host + 1ty.me + + + host + www.1ty.me + + + + + 1und1.de (partial) + + ruleset + + name + 1und1.de (partial) + rule + + + from + ^http://(?:www\.)?1und1\.de/ + to + https://www.1und1.de/ + + + from + ^http://(apps|dsl|forum|hilfe-center|home|homepage|hosting|ias|img|kunden|login|mein|mobile|pixel|redirect|sec-i0|tt|webmailer)\.1und1\.de/ + to + https://$1.1und1.de/ + + + from + ^http://i0\.1und1\.de/ + to + https://a248.e.akamai.net/f/1254/284/7h/i0.1und1.de/ + + + securecookie + + host + .*\.1und1\.de$ + name + .+ + + target + + + host + 1und1.de + + + host + *.1und1.de + + + + + 1xbet.com + + ruleset + + name + 1xbet.com + rule + + from + ^http://(www\.)?(1xbe|xbetspor)t\.com/ + to + https://$1$2t.com/ + + securecookie + + host + ^(?:w*\.)?(?:1xbe|xbetspor)t\.com$ + name + .+ + + target + + + host + 1xbet.com + + + host + *.1xbet.com + + + host + xbetsport.com + + + host + *.xbetsport.com + + + + + 2020mobile + + ruleset + + name + 2020mobile + rule + + from + ^http://(www\.)?2020mobile\.es/ + to + https://www.2020mobile.es/ + + target + + + host + www.2020mobile.es + + + host + 2020mobile.es + + + + + 21 Century Rims + + ruleset + + name + 21 Century Rims + rule + + from + ^http://(www\.)?21centuryrims\.com/ + to + https://$121centuryrims.com/ + + securecookie + + host + ^(?:.*\.)?21centuryrims\.com$ + name + .+ + + target + + + host + 21centuryrims.com + + + host + *.21centuryrims.com + + + + + 220Volt.hu + + ruleset + + name + 220Volt.hu + rule + + from + ^http://([^@:/]*)\.220volt\.hu/ + to + https://$1.220volt.hu/ + + securecookie + + host + ^www\.220volt\.hu$ + name + .* + + target + + + host + media.220volt.hu + + + host + www.220volt.hu + + + + + 23Systems + + ruleset + + name + 23Systems + rule + + from + ^http://(www\.)?23systems\.net/ + to + https://$123systems.net/ + + securecookie + + host + ^(?:w*\.)?23systems\.net$ + name + .+ + + target + + + host + 23systems.net + + + host + *.23systems.net + + + + + 23Vnet + + ruleset + + name + 23Vnet + rule + + from + ^http://hostit\.hu/ + to + https://hostit.hu/ + + target + + host + hostit.hu + + + + 23andMe.com + + ruleset + + name + 23andMe.com + rule + + from + ^http://(?:www\.)?23andme\.com/ + to + https://www.23andme.com/ + + securecookie + + host + ^(?:www\.)?23andme\.com$ + name + .+ + + target + + + host + 23andme.com + + + host + www.23andme.com + + + + + 24 ways (partial) + + ruleset + + name + 24 ways (partial) + rule + + + from + ^http://cloud\.24ways\.org/ + to + https://d3dtvigi7xxd4v.cloudfront.net/ + + + from + ^http://media\.24ways\.org/ + to + https://s3.amazonaws.com/media.24ways.org/ + + + target + + host + *.24ways.org + + + + 24/7 Customer (partial) + + ruleset + + name + 24/7 Customer (partial) + rule + + from + ^http://(cdn|psp)\.247ilabs\.com/ + to + https://$1.247ilabs.com/ + + target + + host + *.247ilabs.com + + + + 24/7 Media (partial) + + ruleset + + name + 24/7 Media (partial) + rule + + + from + ^http://imagec14\.247realmedia\.com/ + to + https://oasc14.247realmedia.com/ + + + from + ^http://imagec15\.247realmedia\.com/ + to + https://a248.e.akamai.net/f/229/1/5m/imagec15.247realmedia.com/ + + + from + ^http://imageceu1\.247realmedia\.com/ + to + https://oasc-eu1.247realmedia.com/ + + + from + ^http://o(asc[01]\d|asc-eu1|penadstream(?:1\d|-eu1))\.247realmedia\.com/ + to + https://o$1.247realmedia.com/ + + + from + ^https?://oasc([01]\d)(?:a|\d{1,3})\.247realmedia\.com/ + to + https://oasc$1.247realmedia.com/ + + + from + ^http://network\.realmedia\.com/ + to + https://network.realmedia.com/ + + + from + ^https?://oas-central\.realmedia\.com/ + to + https://oasc10.247realmedia.com/ + + + securecookie + + + host + ^.*\.(?:247)?realmedia\.com$ + name + .+ + + + host + ^network\.realmedia\.com$ + name + .+ + + + target + + + host + *.247realmedia.com + + + host + *.realmedia.com + + + + + 24/7 Media clients + + ruleset + + name + 24/7 Media clients + rule + + + from + ^http://oascentral\.bostonherald\.com/ + to + https://oasc08.247realmedia.com/ + + + from + ^https?://oascentral\.aviationweek\.com/ + to + https://oasc10.247realmedia.com/ + + + from + ^http://oascentral\.globalpost\.com/ + to + https://oasc11.247realmedia.com/ + + + target + + + host + oascentral.aviationweek.com + + + host + oascentral.bostonherald.com + + + host + oascentral.globalpost.com + + + + + 247filmz + + ruleset + + name + 247filmz + rule + + from + ^http://(www\.)?247filmz\.com/ + to + https://$1247filmz.com/ + + securecookie + + host + ^(?:www\.)?247filmz\.com$ + name + .+ + + target + + + host + 247filmz.com + + + host + www.247filmz.com + + + + + 254a.com + + ruleset + + name + 254a.com + rule + + from + ^http://d\.254a\.com/ + to + https://d.254a.com/ + + securecookie + + host + ^d\.254a\.com$ + name + .+ + + target + + host + d.254a.com + + + + 256.com + + ruleset + + name + 256.com + rule + + from + ^http://(?:www\.)?256\.com/ + to + https://256.com/ + + target + + + host + 256.com + + + host + www.256.com + + + + + 2Checkout (partial) + + ruleset + + name + 2Checkout (partial) + rule + + + from + ^https?://(?:www\.)?2checkout\.com/ + to + https://www.2checkout.com/ + + + from + ^http://(shopping|www)\.2co\.com/ + to + https://$1.2co.com/ + + + securecookie + + + host + ^shopping\.2co\.com$ + name + .* + + + host + ^\.2checkout\.com$ + name + .* + + + target + + + host + *.2co.com + + + host + 2checkout.com + + + host + *.2checkout.com + + + + + 2Dialog.com (partial) + + ruleset + + name + 2Dialog.com (partial) + rule + + from + ^http://(www\.)?2dialog\.com/([\w-]+/admin\.php|(?:[\w-]+/)?(?:cs|image|j)s/|favicon\.ico) + to + https://$12dialog.com/$2 + + target + + + host + 2dialog.com + + + host + www.2dialog.com + + + + + 2K Games (partial) + + ruleset + + name + 2K Games (partial) + rule + + + from + ^http://store\.2k\.com/ + to + https://store.2k.com/ + + + from + ^https?://(?:www\.)?2kgames\.com/ + to + https://www.2kgames.com/ + + + from + ^http://downloads\.2kgames\.com/ + to + https://downloads.2kgames.com/ + + + securecookie + + + host + ^store\.2k\.com$ + name + .+ + + + host + ^.+\.2kgames\.com + name + .+ + + + target + + + host + store.2k.com + + + host + 2kgames.com + + + host + *.2kgames.com + + + + + 2K Sports + + ruleset + + name + 2K Sports + rule + + from + ^http://(\w\.2k13-fb\.|www\.)?2ksports\.com/ + to + https://$12ksports.com/ + + securecookie + + host + ^(?:www\.)?2ksports\.com$ + name + .+ + + target + + + host + 2ksports.com + + + host + *.2ksports.com + + + + + 2PipFixed (false MCB) + + ruleset + + name + 2PipFixed (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?2pipfixed\.com/ + to + https://$12pipfixed.com/ + + securecookie + + host + ^(?:w*\.)?2pipfixed\.com$ + name + .+ + + target + + + host + 2pipfixed.com + + + host + *.2pipfixed.com + + + + + 2ch.cm + + ruleset + + name + 2ch.cm + rule + + from + ^http://(www\.)?2ch\.cm/ + to + https://$12ch.cm/ + + securecookie + + host + ^(?:\.|www\.)?2ch\.cm$ + name + .+ + + target + + + host + 2ch.cm + + + host + *.2ch.cm + + + + + 2ch.hk + + ruleset + + name + 2ch.hk + rule + + from + ^http://(www\.)?2ch\.hk/ + to + https://2ch.hk/ + + securecookie + + host + ^\.?2ch\.hk$ + name + .+ + + target + + + host + 2ch.hk + + + host + *.2ch.hk + + + + + 2mdn.net + + ruleset + + exclusion + + pattern + http://s0\.2mdn\.net/instream/flash/v3/ + + name + 2mdn.net + rule + + from + ^http://s0\.2mdn\.net/ + to + https://s0.2mdn.net/ + + target + + host + s0.2mdn.net + + + + 2nd Vote.com + + ruleset + + name + 2nd Vote.com + rule + + from + ^http://(www\.)?2ndvote\.com/ + to + https://$12ndvote.com/ + + target + + + host + 2ndvote.com + + + host + www.2ndvote.com + + + + + 3 News + + ruleset + + name + 3 News + rule + + + from + ^http://(?:www\.)?3news\.co\.nz/ + to + https://www.3news.co.nz/ + + + from + ^http://cdn\.3news\.co\.nz/ + to + https://cdn.mediaworks.co.nz/ + + + securecookie + + host + ^(?:www\.)?3news\.co\.nz$ + name + .+ + + target + + + host + 3news.co.nz + + + host + *.3news.co.nz + + + + + 30 Boxes.com + + ruleset + + name + 30 Boxes.com + rule + + from + ^http://(nick\.|www\.)?30boxes\.com/ + to + https://$130boxes.com/ + + securecookie + + host + ^\.30boxes\.com$ + name + .+ + + target + + + host + 30boxes.com + + + host + *.30boxes.com + + + + + 32Red Online Casino + + ruleset + + name + 32Red Online Casino + rule + + + from + ^http://(?:www\.)?32red\.com/ + to + https://www.32red.com/ + + + from + ^http://(affiliates|assets|gamesarcade|images|livecasino)\.32red\.com/ + to + https://$1.32red.com/ + + + securecookie + + host + ^(?:affiliates|gamesarcade|livecasino|www)?\.32red\.com$ + name + .+ + + target + + + host + 32red.com + + + host + *.32red.com + + + + + 33Across (partial) + + ruleset + + exclusion + + pattern + ^http://socialdna\. + + name + 33Across (partial) + platform + mixedcontent + rule + + from + ^http://(\w+\.)?33across\.com/ + to + https://$133across.com/ + + securecookie + + host + ^(?:.*\.)?33across\.com$ + name + .+ + + target + + + host + 33across.com + + + host + *.33across.com + + + + + 350 (partial) + + ruleset + + name + 350 (partial) + rule + + + from + ^http://act\.350\.org/ + to + https://act.350.org/ + + + from + ^https?://pacific\.350\.org/(bundl|imag)es/ + to + https://posterous.com/$1es/ + + + securecookie + + host + ^act\.350\.org$ + name + .+ + + target + + host + *.350.org + + + + 350zEvolution.com + + ruleset + + name + 350zEvolution.com + rule + + from + ^http://(www\.)?350zevolution\.com/ + to + https://$1350zevolution.com/ + + securecookie + + host + ^(?:.*\.)?350zevolution\.com$ + name + .+ + + target + + + host + 350zevolution.com + + + host + *.350zevolution.com + + + + + 360 Yield + + ruleset + + name + 360 Yield + rule + + + from + ^http://(?:www\.)?360yield\.com/ + to + https://admin.360yield.com/ + + + from + ^http://ad(min)?\.360yield\.com/ + to + https://ad$1.360yield.com/ + + + securecookie + + host + .*\.360yield\.com$ + name + .+ + + target + + + host + 360yield.com + + + host + *.360yield.com + + + + + 360Cities (partial) + + ruleset + + name + 360Cities (partial) + rule + + + from + ^http://(www\.)?360cities\.net/ + to + https://$1360cities.net/ + + + from + ^https?://cdn1\.360cities\.net/ + to + https://d2dw0c606n9zn3.cloudfront.net/ + + + from + ^https?://cdn2\.360cities\.net/ + to + https://d3tllcxe89i3i3.cloudfront.net/ + + + securecookie + + host + ^www\.360cities\.net$ + name + .+ + + target + + + host + 360cities.net + + + host + *.360cities.net + + + + + 365 Tickets Central.com + + ruleset + + name + 365 Tickets Central.com + rule + + from + ^http://(www\.)?365ticketscentral\.com/ + to + https://$1365ticketscentral.com/ + + securecookie + + host + ^\.365ticketscentral\.com$ + name + .+ + + target + + + host + 365ticketscentral.com + + + host + *.365ticketscentral.com + + + + + 365 Tickets Global.com + + ruleset + + name + 365 Tickets Global.com + rule + + from + ^http://(cs|image)s\.365ticketsglobal\.com/ + to + https://$1s.365ticketsglobal.com/ + + securecookie + + host + ^\.365ticketsglobal\.com$ + name + .+ + + target + + host + *.365ticketsglobal.com + + + + 365 Tickets Scotland.com + + ruleset + + name + 365 Tickets Scotland.com + rule + + from + ^http://(www\.)?365ticketsscotland\.com/ + to + https://$1365ticketsscotland.com/ + + securecookie + + host + ^\.365ticketsscotland\.com$ + name + .+ + + target + + + host + 365ticketsscotland.com + + + host + *.365ticketsscotland.com + + + + + 365 Tickets.co.uk + + ruleset + + name + 365 Tickets.co.uk + rule + + from + ^http://(www\.)?365tickets\.co\.uk/ + to + https://$1365tickets.co.uk/ + + securecookie + + host + ^\.365tickets\.co\.uk$ + name + .+ + + target + + + host + 365tickets.co.uk + + + host + *.365tickets.co.uk + + + + + 365 Tickets.com + + ruleset + + name + 365 Tickets.com + rule + + from + ^http://(www\.)?365tickets\.com/ + to + https://$1365tickets.com/ + + securecookie + + host + ^\.365tickets\.com$ + name + .+ + + target + + + host + 365tickets.com + + + host + *.365tickets.com + + + + + 37Signals + + ruleset + + name + 37Signals + rule + + + from + ^http://(?:www\.)?37signals\.com/ + to + https://37signals.com/ + + + from + ^http://(gettingreal|launchpad|smiley)\.37signals\.com/ + to + https://$1.37signals.com/ + + + securecookie + + host + ^((www|gettingreal|launchpad|smiley)\.)?37signals\.com$ + name + .* + + target + + + host + 37signals.com + + + host + www.37signals.com + + + host + gettingreal.37signals.com + + + host + launchpad.37signals.com + + + host + smiley.37signals.com + + + + + 38.de + + ruleset + + name + 38.de + platform + mixedcontent + rule + + + from + ^http://38\.de/.* + to + https://www.38.de/ + + + from + ^http://www\.38\.de/ + to + https://www.38.de/ + + + securecookie + + host + ^\.38\.de$ + name + .+ + + target + + + host + 38.de + + + host + *.38.de + + + + + 38degrees + + ruleset + + name + 38degrees + rule + + from + ^http://([^/:@]+)?\.38degrees\.org\.uk/ + to + https://$1.38degrees.org.uk/ + + securecookie + + host + ^(.*\.)?38degrees\.org\.uk$ + name + .+ + + target + + host + you.38degrees.org.uk + + + + 39dollarglasses.com + + ruleset + + name + 39dollarglasses.com + rule + + from + ^http://(www\.)?39dollarglasses\.com/ + to + https://www.39dollarglasses.com/ + + target + + + host + 39dollarglasses.com + + + host + www.39dollarglasses.com + + + + + 3DStats + + ruleset + + name + 3DStats + rule + + from + ^http://(www\.)?3dstats\.com/ + to + https://$13dstats.com/ + + securecookie + + host + ^(.*\.)?3dstats\.com$ + name + .* + + target + + + host + 3dstats.com + + + host + www.3dstats.com + + + + + 3FM + + ruleset + + name + 3FM + rule + + from + ^http://(www\.)?3fm\.nl/ + to + https://$13fm.nl/ + + target + + + host + 3fm.nl + + + host + www.3fm.nl + + + + + 3M.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(www\.)?3m\.com/+(?!product/) + + + pattern + ^http://solutions\.3m\.com/+(?!3M/themes/|3MContentRetrievalAPI/|wps/) + + + name + 3M.com (partial) + rule + + from + ^http://((?:metricscst|solutions|www)\.)?3m\.com/ + to + https://$13m.com/ + + target + + + host + 3m.com + + + host + *.3m.com + + + + + 3Play Media (partial) + + ruleset + + name + 3Play Media (partial) + rule + + from + ^http://account\.3playmedia\.com/ + to + https://account.3playmedia.com/ + + target + + host + account.3playmedia.com + + + + 3bbwifi.com + + ruleset + + name + 3bbwifi.com + rule + + from + ^http://(www\.)?3bbwifi\.com/ + to + https://www.3bbwifi.com/ + + target + + + host + 3bbwifi.com + + + host + www.3bbwifi.com + + + + + 3cdn + + ruleset + + name + 3cdn + rule + + from + ^http://(\w+)\.3cdn\.net/ + to + https://$1.3cdn.net/ + + target + + host + *.3cdn.net + + + + 3dcenter + + ruleset + + name + 3dcenter + platform + cacert + rule + + from + ^http://(www\.)?3dcenter\.org/ + to + https://www.3dcenter.org/ + + target + + + host + 3dcenter.org + + + host + www.3dcenter.org + + + + + 3dglassesfree.com (partial) + + ruleset + + name + 3dglassesfree.com (partial) + rule + + from + ^http://www\.3dglassesfree\.com/(?=favicon\.ico|images/|stylesheets/) + to + https://www.3dglassesfree.com/ + + target + + host + www.3dglassesfree.com + + + + 3scale + + ruleset + + name + 3scale + rule + + from + ^http://([\w-]+\.)?3scale\.net/ + to + https://$13scale.net/ + + securecookie + + host + .+\.3scale\.net$ + name + .+ + + target + + + host + 3scale.net + + + host + *.3scale.net + + + + + 3taps + + ruleset + + name + 3taps + rule + + from + ^http://(developer\.|www\.)?3taps\.com/ + to + https://$13taps.com/ + + securecookie + + host + ^developer\.3taps\.com$ + name + .+ + + target + + + host + 3taps.com + + + host + *.3taps.com + + + + + 419 Eater.com (partial) + + ruleset + + name + 419 Eater.com (partial) + rule + + from + ^http://forum\.419eater\.com/ + to + https://forum.419eater.com/ + + securecookie + + host + ^forum\.419eater\.com$ + name + .+ + + target + + host + forum.419eater.com + + + + 451 Group + + ruleset + + name + 451 Group + rule + + from + ^http://(www\.)?451research\.com/ + to + https://$1451research.com/ + + securecookie + + host + ^(.*\.)?451research\.com$ + name + .* + + target + + + host + 451research.com + + + host + www.451research.com + + + + + 4D.com (partial) + + ruleset + + name + 4D.com (partial) + rule + + from + ^http://store\.4d\.com/ + to + https://store.4d.com/ + + securecookie + + host + ^\.store\.4d\.com$ + name + .+ + + target + + host + *.4d.com + + + + 4RX.com + + ruleset + + name + 4RX.com + rule + + from + ^http://(?:secure\.|www\.)?4rx\.com/ + to + https://secure.4rx.com/ + + securecookie + + host + ^\.4rx\.com$ + name + .+ + + target + + + host + 4rx.com + + + host + *.4rx.com + + + + + 4RunnerForex.com + + ruleset + + name + 4RunnerForex.com + rule + + from + ^http://(www\.)?4runnerforex\.com/ + to + https://$14runnerforex.com/ + + securecookie + + host + ^(?:w*\.)?4runnerforex\.com$ + name + .+ + + target + + + host + 4runnerforex.com + + + host + *.4runnerforex.com + + + + + 4Shared (experimental) + + ruleset + + exclusion + + pattern + ^http://(blog|forum)\.4shared\.com/ + + name + 4Shared (experimental) + rule + + from + ^http://([^/:@]*\.)?4shared\.com/ + to + https://$14shared.com/ + + securecookie + + host + ^(.*\.)?4shared\.com$ + name + .* + + target + + + host + 4shared.com + + + host + *.4shared.com + + + + + 4Tulemar + + ruleset + + name + 4Tulemar + platform + mixedcontent + rule + + from + ^http://(resources\.|www\.)?4tulemar\.com/ + to + https://$14tulemar.com/ + + securecookie + + host + .*\.4tulemar\.com$ + name + .+ + + target + + + host + 4tulemar.com + + + host + *.4tulemar.com + + + + + 4chan (partial) + + ruleset + + exclusion + + pattern + ^http://(?:status|blog)\. + + name + 4chan (partial) + rule + + from + ^http://([\w.]+\.)?4c(dn|han|han-ads|hannel)\.org/ + to + https://$14c$2.org/ + + securecookie + + host + .*\.4chan(?:-ads|nel)?\.org$ + name + .+ + + target + + + host + 4cdn.org + + + host + *.4cdn.org + + + host + 4chan.org + + + host + *.4chan.org + + + host + 4chan-ads.org + + + host + *.4chan-ads.org + + + host + 4channel.org + + + host + *.4channel.org + + + + + 4gamer.net (partial) + + ruleset + + name + 4gamer.net (partial) + rule + + from + ^http://(?:www\.)?4gamer\.net/(favicon\.ico|images/) + to + https://www.4gamer.net/$1 + + target + + + host + 4gamer.net + + + host + www.4gamer.net + + + + + 4plebs.org + + ruleset + + name + 4plebs.org + rule + + from + ^http://(archive\.|www\.)?4plebs\.org/ + to + https://$14plebs.org/ + + securecookie + + host + ^(?:archive)?\.4plebs\.org$ + name + .+ + + target + + + host + 4plebs.org + + + host + *.4plebs.org + + + + + 4sevens + + ruleset + + name + 4sevens + rule + + from + ^http://(?:www\.)?4sevens\.com/ + to + https://www.4sevens.com/ + + target + + + host + www.4sevens.com + + + host + 4sevens.com + + + + + 5 July.org + + ruleset + + name + 5 July.org + rule + + from + ^http://(hax\.|www\.)?5july\.org/ + to + https://$15july.org/ + + securecookie + + host + ^5july\.org$ + name + .+ + + target + + + host + 5july.org + + + host + *.5july.org + + + + + 500px.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?500px\.com/+(?!assets/|favicon\.ico|(?:login|signup)(?:$|[?/])|v3/) + + name + 500px.com (partial) + rule + + from + ^http://(prime\.|www\.)?500px\.com/ + to + https://$1500px.com/ + + securecookie + + host + ^prime\.500px\.com$ + name + .+ + + target + + + host + 500px.com + + + host + *.500px.com + + + + + 512 Pixels + + ruleset + + name + 512 Pixels + rule + + from + ^http://(www\.)?512pixels\.net/ + to + https://$1512pixels.net/ + + securecookie + + host + ^\.512pixels\.net$ + name + .+ + + target + + + host + 512pixels.net + + + host + *.512pixels.net + + + + + 5NINES (partial) + + ruleset + + name + 5NINES (partial) + rule + + from + ^http://portal\.5ninesdata\.com/ + to + https://portal.5ninesdata.com/ + + securecookie + + host + ^portal\.5ninesdata\.com$ + name + .* + + target + + host + portal.5ninesdata.com + + + + 5min (partial) + + ruleset + + name + 5min (partial) + rule + + + from + ^http://((?:admin|api|embed|files|l|syn|videos|www)\.)?5min\.com/ + to + https://$15min.com/ + + + from + ^https?://[ap]?(shared|thumbnails)\.5min\.com/ + to + https://$1.5min.com/ + + + target + + + host + 5min.com + + + host + *.5min.com + + + + + 5vpn.net + + ruleset + + name + 5vpn.net + rule + + from + ^http://(www\.)?5vpn\.net/ + to + https://$15vpn.net/ + + securecookie + + host + ^(?:www\.)?5vpn.net$ + name + .+ + + target + + + host + 5vpn.net + + + host + www.5vpn.net + + + + + 6Scan.com (partial) + + ruleset + + name + 6Scan.com (partial) + rule + + from + ^http://api\.wp\.6scan\.com/ + to + https://api.wp.6scan.com/ + + target + + host + api.wp.6scan.com + + + + 6xq.net (CAcert) + + ruleset + + name + 6xq.net (CAcert) + platform + cacert + rule + + from + ^http://(?:www\.)?6xq\.net/ + to + https://6xq.net/ + + target + + + host + 6xq.net + + + host + www.6xq.net + + + + + 7 Springs.com + + ruleset + + name + 7 Springs.com + rule + + from + ^http://(www\.)?7springs\.com/ + to + https://$17springs.com/ + + securecookie + + host + ^(?:www\.)?7springs\.com$ + name + .+ + + target + + + host + 7springs.com + + + host + www.7springs.com + + + + + 77777i.com + + ruleset + + name + 77777i.com + rule + + from + ^http://(www\.)?77777i\.com/ + to + https://$177777i.com/ + + securecookie + + host + ^(?:w*\.)?77777i\.com$ + name + .+ + + target + + + host + 77777i.com + + + host + *.77777i.com + + + + + 7chan + + ruleset + + name + 7chan + rule + + from + ^http://(?:www\.)?7chan\.org/ + to + https://7chan.org/ + + target + + + host + 7chan.org + + + host + www.7chan.org + + + + + 7digital (partial) + + ruleset + + exclusion + + + pattern + ^https?://(?:us\.|www\.)?7digital\.com/(?!(?:help|sign(?:in|up))(?:$|\?|/)|s/|static/) + + + pattern + ^https?://cdn\.7static\.com/static/img/ + + + name + 7digital (partial) + rule + + + from + ^https?://(?:(?:css\.)?cdn(?:22)?\.|www\.)?7(?:digital|static)\.com/ + to + https://www.7digital.com/ + + + from + ^http://(api|us)\.7digital\.com/ + to + https://$1.7digital.com/ + + + target + + + host + 7digital.com + + + host + *.7digital.com + + + host + *.7static.com + + + + + 80s Purple.com + + ruleset + + name + 80s Purple.com + rule + + from + ^http://(?:smcdn\.|(news\.|www\.))?80spurple\.com/ + to + https://$180spurple.com/ + + securecookie + + host + .*\.80spurple\.com$ + name + .+ + + target + + + host + 80spurple.com + + + host + *.80spurple.com + + + + + 888173.net (false MCB) + + ruleset + + name + 888173.net (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.888173\.net/ + to + https://www.888173.net/ + + securecookie + + host + ^\.888173\.net$ + name + .+ + + target + + host + *.888173.net + + + + 888173.net (partial) + + ruleset + + exclusion + + pattern + ^http://www\.888173\.net/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + 888173.net (partial) + rule + + from + ^http://(www\.)?888173\.net/ + to + https://$1888173.net/ + + target + + + host + 888173.net + + + host + www.888173.net + + + + + 888VoIP.com + + ruleset + + name + 888VoIP.com + rule + + from + ^http://(www\.)?888voip\.com/ + to + https://$1888voip.com/ + + securecookie + + host + ^(?:[w.]*\.)?888voip\.com$ + name + .+ + + target + + + host + 888voip.com + + + host + *.888voip.com + + + + + 8tracks + + ruleset + + name + 8tracks + rule + + + from + ^http://(www\.)?8tracks\.com/ + to + https://$18tracks.com/ + + + from + ^http://imgix\.8tracks\.com/ + to + https://8tracks.imgix.net/ + + + target + + + host + 8tracks.com + + + host + *.8tracks.com + + + + + 8win88win.com + + ruleset + + name + 8win88win.com + rule + + from + ^http://(www\.)?8win88win\.com/ + to + https://$18win88win.com/ + + securecookie + + host + ^\.8win88win\.com$ + name + .+ + + target + + + host + 8win88win.com + + + host + *.8win88win.com + + + + + 918autoloans.com + + ruleset + + name + 918autoloans.com + rule + + from + ^http://(www\.)?918autoloans\.com/ + to + https://$1918autoloans.com/ + + securecookie + + host + ^\.918autoloans\.com$ + name + .+ + + target + + + host + 918autoloans.com + + + host + *.918autoloans.com + + + + + 95Bet.com (partial) + + ruleset + + name + 95Bet.com (partial) + rule + + from + ^http://cashier\.95bet\.com/ + to + https://cashier.95bet.com/ + + securecookie + + host + ^cashier\.95bet\.com$ + name + .+ + + target + + host + cashier.95bet.com + + + + 972 Mag.com (partial) + + ruleset + + name + 972 Mag.com (partial) + rule + + from + ^http://(?:www\.)?972mag\.com/(?=wp-content/|wp-includes/) + to + https://d2f1h9jpcesbx3.cloudfront.net/ + + target + + + host + 972mag.com + + + host + www.972mag.com + + + + + 99.se + + ruleset + + name + 99.se + rule + + + from + ^http://99\.se/ + to + https://www.99.se/ + + + from + ^http://www\.99\.se/ + to + https://www.99.se/ + + + securecookie + + host + ^www\.99\.se + name + .* + + target + + + host + 99.se + + + host + www.99.se + + + + + 9gag (partial) + + ruleset + + exclusion + + pattern + ^http://(?:m\.|www\.)?9gag\.com/+(?!(?:about|advertise|faq|login|privacy|recover|signup|tos)(?:$|[?/])|favicon\.ico|img/) + + name + 9gag (partial) + rule + + + from + ^http://((?:admin|api|comment|m|www)\.)?9gag\.com/ + to + https://$19gag.com/ + + + from + ^http://images-cdn\.9gag\.com/ + to + https://d24w6bsrhbeh9d.cloudfront.net/ + + + from + ^http://assets-9gag-lol\.9cache\.com/ + to + https://assets-9gag-lol.9cache.com/ + + + securecookie + + host + ^admin\.9gag\.com$ + name + .+ + + target + + + host + 9gag.com + + + host + *.9gag.com + + + host + assets-9gag-lol.9cache.com + + + + + 9seeds (partial) + + ruleset + + name + 9seeds (partial) + rule + + from + ^http://(?:www\.)?9seeds\.com/ + to + https://d3j03r5zbavjdk.cloudfront.net/ + + target + + host + 9seeds.com + + + + ::progressive:: (partial) + + ruleset + + name + ::progressive:: (partial) + rule + + from + ^http://www\.progressive\.hu/ + to + https://www.progressive.hu/ + + securecookie + + host + ^www\.progressive\.hu$ + name + .+ + + target + + host + www.progressive.hu + + + + @stuff + + ruleset + + name + @stuff + rule + + from + ^http://(www\.)?atstuff\.com/ + to + https://$1atstuff.com/ + + securecookie + + host + ^\.atstuff\.com$ + name + .+ + + target + + + host + atstuff.com + + + host + *.atstuff.com + + + + + A 1000 Words.com + + ruleset + + name + A 1000 Words.com + rule + + from + ^http://(?:www\.)?a1000words\.com/ + to + https://www.a1000words.com/ + + securecookie + + host + ^\.a1000words\.com$ + name + .+ + + target + + + host + a1000words.com + + + host + *.a1000words.com + + + + + A Bigger Society.com + + ruleset + + name + A Bigger Society.com + rule + + from + ^http://(www\.)?abiggersociety\.com/ + to + https://$1abiggersociety.com/ + + securecookie + + host + ^(?:w*\.)?abiggersociety\.com$ + name + .+ + + target + + + host + abiggersociety.com + + + host + *.abiggersociety.com + + + + + A Small Orange (partial) + + ruleset + + name + A Small Orange (partial) + rule + + + from + ^http://(customers\.|www\.)?asmallorange\.com/ + to + https://$1asmallorange.com/ + + + from + ^https?://jobs\.asmallorange\.com/css/ + to + https://asmallorange.theresumator.com/css/ + + + securecookie + + host + ^customers\.asmallorange\.com$ + name + .+ + + target + + + host + asmallorange.com + + + host + *.asmallorange.com + + + + + A Voice for Men.com + + ruleset + + name + A Voice for Men.com + rule + + from + ^http://(www\.)?avoiceformen\.com/ + to + https://$1avoiceformen.com/ + + target + + + host + avoiceformen.com + + + host + www.avoiceformen.com + + + + + A+ Flint River Ranch + + ruleset + + name + A+ Flint River Ranch + rule + + + from + ^http://(www\.)?aplus-flint-river-ranch\.com/ + to + https://$1aplus-flint-river-ranch.com/ + + + from + ^https?://cats\.aplus-flint-river-ranch\.com/(?:\?.*)?$ + to + https://www.aplus-flint-river-ranch.com/index-cat.php? + + + securecookie + + host + ^\.www\.aplus-flint-river-ranch\.com$ + name + .+ + + target + + + host + aplus-flint-river-ranch.com + + + host + *.aplus-flint-river-ranch.com + + + + + A.C.T.I.O.N Kooperative (partial) + + ruleset + + name + A.C.T.I.O.N Kooperative (partial) + rule + + from + ^http://mail\.action\.at/ + to + https://mail.action.at/ + + securecookie + + host + ^mail\.action\.at$ + name + .+ + + target + + host + mail.action.at + + + + A.M. Best Company (partial) + + ruleset + + name + A.M. Best Company (partial) + rule + + + from + ^https?://(?:www\.)?ambest\.com/(CSS|SpryAssets)/ + to + https://www3.ambest.com/$1/ + + + from + ^https?://(?:www\.)?ambest\.com/images/ + to + https://www3.ambest.com/simages/ + + + from + ^http://www3\.ambest\.com/ + to + https://www3.ambest.com/ + + + from + ^https?://dev-www3/ + to + https://www3.ambest.com/ + + + securecookie + + host + ^www3\.ambest\.com$ + name + .* + + target + + + host + ambest.com + + + host + *.ambest.com + + + host + dev-www3 + + + + + A1 Telekom Austria + + ruleset + + name + A1 Telekom Austria + rule + + + from + ^https?://(?:www\.)?a1\.net/ + to + https://www.a1.net/ + + + from + ^http://(asmp|cdn[123]|mss|shop)\.a1\.net/ + to + https://$1.a1.net/ + + + from + ^http://(www\.)?a1community\.net/ + to + https://$1a1community.net/ + + + from + ^https?://(?:www\.)?telekom\.at/ + to + https://www.telekom.at/ + + + securecookie + + host + ^.*\.a1(community)?\.net$ + name + .* + + target + + + host + a1.net + + + host + *.a1.net + + + host + a1community.net + + + host + *.a1community.net + + + host + telekom.at + + + host + www.telekom.at + + + + + A14 Electronics.com + + ruleset + + name + A14 Electronics.com + rule + + from + ^http://(www\.)?a14electronics\.com/ + to + https://$1a14electronics.com/ + + securecookie + + host + ^(?:w*\.)?a14electronics\.com$ + name + .+ + + target + + + host + a14electronics.com + + + host + *.a14electronics.com + + + + + A16z.com + + ruleset + + name + A16z.com + rule + + from + ^http://(www\.)?a16z\.com/ + to + https://$1a16z.com/ + + target + + + host + a16z.com + + + host + www.a16z.com + + + + + A1A Fast Cash + + ruleset + + name + A1A Fast Cash + rule + + from + ^http://(www\.)?a1afastcash\.com/ + to + https://$1a1afastcash.com/ + + securecookie + + host + ^(?:www)?\.a1afastcash.com$ + name + .+ + + target + + + host + a1afastcash.com + + + host + *.a1afastcash.com + + + + + A1WebStats.com (partial) + + ruleset + + name + A1WebStats.com (partial) + rule + + from + ^http://(www\.)?a1webstats\.com/(?=stats/|wp-content/|wp-includes/) + to + https://$1a1webstats.com/ + + target + + + host + a1webstats.com + + + host + www.a1webstats.com + + + + + A2 Hosting (partial) + + ruleset + + name + A2 Hosting (partial) + rule + + from + ^http://((?:my|partners|www)\.)?a2hosting\.com/ + to + https://$1a2hosting.com/ + + securecookie + + host + .+\.a2hosting\.com$ + name + .+ + + target + + + host + a2hosting.com + + + host + *.a2hosting.com + + + + + AA.net.uk (partial) + + ruleset + + name + AA.net.uk (partial) + rule + + from + ^http://(accounts|clueless|order|status)\.aa\.net\.uk/ + to + https://$1.aa.net.uk/ + + securecookie + + host + ^(?:accounts|clueless|status)\.aa\.net\.uk$ + name + .+ + + target + + host + *.aa.net.uk + + + + AAAS.org (partial) + + ruleset + + name + AAAS.org (partial) + rule + + from + ^http://pubs\.aaas\.org/ + to + https://pubs.aaas.org/ + + target + + host + pubs.aaas.org + + + + AAMC.org + + ruleset + + name + AAMC.org + rule + + from + ^http://(?:www\.)?aamc\.org/ + to + https://www.aamc.org/ + + target + + + host + aamc.org + + + host + www.aamc.org + + + + + AAS.org (partial) + + ruleset + + name + AAS.org (partial) + rule + + + from + ^http://(jobregister\.|members\.)?aas\.org/ + to + https://$1aas.org/ + + + from + ^http://apj\.aas\.org/+ + to + https://iopscience.iop.org/0004-637X + + + from + ^http://aj\.aas\.org/+ + to + https://iopscience.iop.org/1538-3881 + + + securecookie + + host + ^members\.aas\.org$ + name + .+ + + target + + + host + aas.org + + + host + *.aas.org + + + + + AB9IL.net + + ruleset + + name + AB9IL.net + rule + + from + ^http://(www\.)?ab9il\.net/ + to + https://$1ab9il.net/ + + target + + + host + ab9il.net + + + host + www.ab9il.net + + + + + ABC News (false MCB) + + ruleset + + name + ABC News (false MCB) + platform + mixedcontent + rule + + from + ^http://abcnews\.go\.com/ + to + https://abcnews.go.com/ + + target + + host + abcnews.go.com + + + + ABC News (partial) + + ruleset + + exclusion + + pattern + ^http://abcnews\.go\.com/+(?!assets/|favicon\.ico|images/) + + name + ABC News (partial) + rule + + from + ^http://a(?:\.abcnews|(?:\.a)?bcnews\.go)\.com/ + to + https://abcnews.go.com/ + + target + + + host + a.abcnews.com + + + host + abcnews.go.com + + + host + a.abcnews.go.com + + + + + ABC Online (partial) + + ruleset + + name + ABC Online (partial) + rule + + + from + ^http://shop\.abc\.net\.au/ + to + https://shop.abc.net.au/ + + + from + ^http://(?:www\.)?abccomercial\.com/ + to + https://abccomercial.com/ + + + securecookie + + + host + ^shop.abc.net.au$ + name + .+ + + + host + ^\.abccommercial\.com$ + name + .+ + + + target + + + host + shop.abc.net.au + + + host + abccommercial.com + + + host + *.abccommercial.com + + + + + ABI Research + + ruleset + + name + ABI Research + rule + + from + ^http://(?:www\.)?abiresearch\.com/ + to + https://www.abiresearch.com/ + + target + + + host + abiresearch.com + + + host + www.abiresearch.com + + + + + ABN AMRO Bank + + ruleset + + name + ABN AMRO Bank + rule + + from + ^http://(?:www\.)?abnamro\.nl/ + to + https://www.abnamro.nl/ + + securecookie + + host + ^www\.abnamro\.nl$ + name + .+ + + target + + + host + abnamro.nl + + + host + www.abnamro.nl + + + + + ABestWeb.com + + ruleset + + name + ABestWeb.com + rule + + from + ^http://(www\.)?abestweb\.com/ + to + https://$1abestweb.com/ + + target + + + host + abestweb.com + + + host + www.abestweb.com + + + + + ACCAN + + ruleset + + name + ACCAN + rule + + from + ^http://(www\.)?accan\.org\.au/ + to + https://$1accan.org.au/ + + target + + + host + accan.org.au + + + host + *.accan.org.au + + + + + ACLS.org + + ruleset + + name + ACLS.org + rule + + + from + ^http://acls\.org/.* + to + https://www.acls.org/ + + + from + ^http://www\.acls\.org/ + to + https://www.acls.org/ + + + securecookie + + host + ^www\.acls\.org$ + name + .+ + + target + + + host + acls.org + + + host + www.acls.org + + + + + ACLU + + ruleset + + name + ACLU + rule + + + from + ^http://(?:www\.)?aclu\.org/ + to + https://www.aclu.org/ + + + from + ^http://secure\.aclu\.org/ + to + https://secure.aclu.org/ + + + securecookie + + host + ^secure\.aclu\.org$ + name + .+ + + target + + + host + aclu.org + + + host + *.aclu.org + + + + + ACLU of Louisiana + + ruleset + + name + ACLU of Louisiana + rule + + from + ^http://(www\.)?laaclu\.org/ + to + https://www.laaclu.org/ + + target + + + host + laaclu.org + + + host + www.laaclu.org + + + + + ACLU of Massachusetts + + ruleset + + name + ACLU of Massachusetts + rule + + from + ^http://(www\.)?aclum\.org/ + to + https://$1aclum.org/ + + securecookie + + host + ^\.aclum\.org$ + name + .+ + + target + + + host + aclum.org + + + host + *.aclum.org + + + + + ACLU of New Jersey (partial) + + ruleset + + name + ACLU of New Jersey (partial) + rule + + from + ^https?://(?:www\.)?aclu-nj\.org/(concrete/css|files|packages|secure|themes)/ + to + https://www.aclu-nj.org/$1/ + + target + + + host + aclu-nj.org + + + host + www.aclu-nj.org + + + + + ACLU of North Carolina + + ruleset + + name + ACLU of North Carolina + platform + mixedcontent + rule + + from + ^http://(?:www\.)?(?:acluofn(?:c|orthcarolina)|epo-rtal)\.org/ + to + https://www.acluofnorthcarolina.org/ + + target + + + host + acluofnc.org + + + host + www.acluofnc.org + + + host + acluofnorthcarolina.org + + + host + www.acluofnorthcarolina.org + + + host + epo-rtal.org + + + host + www.epo-rtal.org + + + + + ACLU of Northern California + + ruleset + + name + ACLU of Northern California + rule + + from + ^http://(www\.)?aclunc\.org/ + to + https://$1aclunc.org/ + + securecookie + + host + ^(?:www\.)?aclunc\.org$ + name + .+ + + target + + + host + aclunc.org + + + host + www.aclunc.org + + + + + ACLU of Southern California + + ruleset + + name + ACLU of Southern California + rule + + from + ^http://(?:www\.)?aclu-sc\.org/ + to + https://www.aclu-sc.org/ + + target + + + host + aclu-sc.org + + + host + www.aclu-sc.org + + + + + ACLU of Texas + + ruleset + + name + ACLU of Texas + rule + + + from + ^http://(www\.)?aclutx\.org/ + to + https://www.aclutx.org/ + + + from + ^http://vpn\.aclutx\.org/ + to + https://vpn.aclutx.org/ + + + securecookie + + host + ^(vpn|www)\.aclutx\.org$ + name + .+ + + target + + + host + aclutx.org + + + host + vpn.aclutx.org + + + host + www.aclutx.org + + + + + ACLU of Virginia + + ruleset + + name + ACLU of Virginia + rule + + from + ^http://(?:www\.)?acluva\.org/ + to + https://acluva.org/ + + securecookie + + host + ^\.?acluva\.org$ + name + .+ + + target + + + host + acluva.org + + + host + *.acluva.org + + + + + ACLU of Washington + + ruleset + + name + ACLU of Washington + rule + + from + ^((http://(www\.)?)|(https://www\.))aclu-wa\.org/ + to + https://aclu-wa.org/ + + target + + + host + aclu-wa.org + + + host + www.aclu-wa.org + + + + + ACM.org (false MCB) + + ruleset + + name + ACM.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?acm\.org/ + to + https://$1acm.org/ + + target + + + host + acm.org + + + host + www.acm.org + + + + + ACM.org (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?acm\.org/+(?!.+\.(?:/image_thumb$|\.gif$|\.jpg$|\.png$)|favicon\.ico|images-mail/|portal_css/) + + + pattern + ^http://cacm.acm.org/(?!(?:accounts/(?:forgot-password|new)|login)/*(?:\?.*)?$|favicon\.ico|images/|javascripts/|stylesheets/|system/) + + + name + ACM.org (partial) + rule + + + from + ^http://((?:cacm|campus|dl|myacm|pd|learning|myacm|plone|portal|queue|spam|techpack|www)\.)?acm\.org/ + to + https://$1acm.org/ + + + from + ^http://deliveryimages\.acm\.org/ + to + https://a248.e.akamai.net/f/1097/1823/7m/deliveryimages.acm.org/ + + + from + ^http://portalparts\.acm\.org/ + to + https://a248.e.akamai.net/f/1896/8636/1d/portalparts.acm.org/ + + + from + ^http://store\.acm\.org/[^?]* + to + https://campus.acm.org/public/Estore_window/estore_foyer2.cfm + + + securecookie + + host + ^(?!cacm\.).*\.acm\.org$ + name + .+ + + target + + + host + acm.org + + + host + *.acm.org + + + + + ACPICA.org + + ruleset + + name + ACPICA.org + rule + + from + ^http://(?:(bugs\.|lists\.)|www\.)?acpica\.org/ + to + https://$1acpica.org/ + + securecookie + + host + ^(?:bugs\.)?acpica\.org$ + name + .+ + + target + + + host + acpica.org + + + host + *.acpica.org + + + + + ADCocktail (partial) + + ruleset + + name + ADCocktail (partial) + rule + + from + ^http://track\.adcocktail\.com/ + to + https://track.adcocktail.com/ + + securecookie + + host + ^track\.adcocktail\.com$ + name + .+ + + target + + host + track.adcocktail.com + + + + ADISC.org + + ruleset + + name + ADISC.org + rule + + from + ^http://(www\.)?adisc\.org/ + to + https://$1adisc.org/ + + securecookie + + host + ^\.adisc\.org$ + name + .+ + + target + + + host + adisc.org + + + host + *.adisc.org + + + + + ADP Retirement Services + + ruleset + + name + ADP Retirement Services + rule + + from + ^https?://(?:www\.)?mykplan\.com/ + to + https://www.mykplan.com/ + + securecookie + + host + ^www\.mykplan\.com$ + name + .+ + + target + + + host + mykplan.com + + + host + www.mykplan.com + + + + + ADP Screening and Selection Services + + ruleset + + name + ADP Screening and Selection Services + rule + + from + ^https?://(?:www\.)?adpselect\.com/ + to + https://www.adpselect.com/ + + target + + + host + adpselect.com + + + host + www.adpselect.com + + + + + ADP VirtualEdge + + ruleset + + name + ADP VirtualEdge + rule + + from + ^https?://(?:www\.)?virtualedge\.com/ + to + https://www.virtualedge.com/ + + securecookie + + host + ^www\.virtualedge\.com$ + name + .+ + + target + + + host + virtualedge.com + + + host + www.virtualedge.com + + + + + ADindex + + ruleset + + name + ADindex + rule + + from + ^http://(www\.)?adindex\.de/ + to + https://$1adindex.de/ + + securecookie + + host + ^(?:.*\.)?adindex\.de$ + name + .+ + + target + + + host + adindex.de + + + host + *.adindex.de + + + + + AEGEE-Enschede.nl (partial) + + ruleset + + name + AEGEE-Enschede.nl (partial) + rule + + from + ^http://(www\.)?aegee-enschede\.nl/ + to + https://$1aegee-enschede.nl/ + + securecookie + + host + ^\.aegee-enschede\.nl$ + name + .+ + + target + + + host + aegee-enschede.nl + + + host + *.aegee-enschede.nl + + + + + AFCEA + + ruleset + + name + AFCEA + rule + + from + ^http://(?:www\.)?afcea\.org/ + to + https://www.afcea.org/ + + securecookie + + host + ^www\.afcea\.org$ + name + .* + + target + + + host + afcea.org + + + host + www.afcea.org + + + + + AFCOM.com + + ruleset + + name + AFCOM.com + rule + + from + ^http://(www\.)?afcom\.com/ + to + https://$1afcom.com/ + + target + + + host + afcom.com + + + host + www.afcom.com + + + + + AFNIC.fr + + ruleset + + name + AFNIC.fr + rule + + + from + ^http://afnic\.fr/[^?]*(\?.*)? + to + https://www.afnic.fr/$1 + + + from + ^http://www\.(sandbox\.)?afnic\.fr/ + to + https://www.$1afnic.fr/ + + + securecookie + + host + ^www\.(?:sandbox\.)?afnic\.fr$ + name + .+ + + target + + + host + afnic.fr + + + host + *.afnic.fr + + + + + AFP548.com (false MCB) + + ruleset + + name + AFP548.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?afp548\.com/ + to + https://$1afp548.com/ + + securecookie + + host + ^afp548\.com$ + name + .+ + + target + + + host + afp548.com + + + host + *.afp548.com + + + + + AFP548.com (partial) + + ruleset + + name + AFP548.com (partial) + rule + + from + ^http://(www\.)?afp548\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1afp548.com/ + + target + + + host + afp548.com + + + host + www.afp548.com + + + + + AFRA-Berlin.de + + ruleset + + name + AFRA-Berlin.de + rule + + from + ^http://(www\.)?afra-berlin\.de/ + to + https://$1afra-berlin.de/ + + target + + + host + afra-berlin.de + + + host + www.afra-berlin.de + + + + + AGU.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:ethics|meetings|publications|sciencepolicy|sharingscience|sites)\.agu\.org/+(?!favicon\.ico|(?:\w+/)?wp-(?:content|includes)/) + + name + AGU.org (partial) + rule + + from + ^http://(about|chapman|education|ethics|fallmeeting|geocalendar|giving|honors|meetings|membership|news|publications|sciencepolicy|sharingscience|sites2?|spc)\.agu\.org/ + to + https://$1.agu.org/ + + target + + host + *.agu.org + + + + AIA Surety + + ruleset + + name + AIA Surety + rule + + + from + ^http://((?:becomeanagent|www)\.)?aiasurety\.com/ + to + https://$1aiasurety.com/ + + + from + ^http://(www\.)?expertbail\.com/ + to + https://$1expertbail.com/ + + + securecookie + + host + ^(.*\.)?(aiasurety|expertbail)\.com$ + name + .* + + target + + + host + aiasurety.com + + + host + *.aiasurety.com + + + host + expertbail.com + + + host + www.expertbail.com + + + + + AJ's Ski & Sports + + ruleset + + name + AJ's Ski & Sports + rule + + from + ^http://(www\.)?stowesports\.com/ + to + https://$1[stowesports.com/ + + securecookie + + host + ^\.stowesports\.com$ + name + .+ + + target + + + host + stowesports.com + + + host + *.stowesports.com + + + + + AK Vorrat.org (partial) + + ruleset + + name + AK Vorrat.org (partial) + rule + + from + ^http://listen\.akvorrat\.org/ + to + https://listen.akvorrat.org/ + + target + + host + listen.akvorrat.org + + + + AK-Vorrat + + ruleset + + name + AK-Vorrat + platform + cacert mixedcontent + rule + + from + ^http://(wiki\.|www\.)?vorratsdatenspeicherung\.de/ + to + https://$1vorratsdatenspeicherung.de/ + + securecookie + + host + ^(?:wiki\.|www\.)?vorratsdatenspeicherung\.de$ + name + .+ + + target + + + host + vorratsdatenspeicherung.de + + + host + *.vorratsdatenspeicherung.de + + + + + ALSO Actebis + + ruleset + + exclusion + + pattern + ^http://www\.alsoactebis\.com/ec/cms3/[0-9]+/ShopStart\.do + + name + ALSO Actebis + rule + + from + ^http://(www\.)?alsoactebis\.com/ + to + https://www.alsoactebis.com/ + + target + + + host + alsoactebis.com + + + host + www.alsoactebis.com + + + + + AMC (partial) + + ruleset + + name + AMC (partial) + rule + + + from + ^https?://(?:www\.)?amctv\.com/ + to + https://www.amctv.com/ + + + from + ^http://media\.amctv\.com/ + to + https://media.amctv.com/ + + + securecookie + + host + ^www\.amctv\.com$ + name + .+ + + target + + + host + amctv.com + + + host + *.amctv.com + + + + + AMCTheatres + + ruleset + + name + AMCTheatres + rule + + from + ^http://(?:www\.)?amctheatres\.com/ + to + https://www.amctheatres.com/ + + securecookie + + host + ^(www)?\.amctheatres\.com$ + name + .* + + target + + + host + amctheatres.com + + + host + www.amctheatres.com + + + + + AMI.com + + ruleset + + name + AMI.com + rule + + from + ^http://(www\.)?ami\.com/ + to + https://$1ami.com/ + + target + + + host + ami.com + + + host + www.ami.com + + + + + AMS.org (partial) + + ruleset + + name + AMS.org (partial) + rule + + from + ^http://(www\.)?ams\.org/(?=animated_favicon1\.gif|css/|favicon\.ico|images/) + to + https://$1ams.org/ + + target + + + host + ams.org + + + host + www.ams.org + + + + + AMSl.com + + ruleset + + name + AMSl.com + rule + + from + ^http://(www\.)?amsl\.com/ + to + https://$1amsl.com/ + + target + + + host + amsl.com + + + host + www.amsl.com + + + + + AMetSoc.org (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?ametsoc\.org/(?!favicon\.ico|.+(?:css|gif|jpg|png)(?:$|\?)) + + + pattern + ^http://annual\.ametsoc\.org/(?!\d{4}/includes/|cssfiles/|includes/) + + + pattern + ^http://bookstore\.ametsoc\.org/(?!(?:cart|user/login)(?:$|\?)|sites/) + + + pattern + ^http://journals\.ametsoc\.org/(?!action/showLogin|favicon\.ico|na101/home/literatum/publisher/\w+/journals/|templates/|userimages/) + + + name + AMetSoc.org (partial) + rule + + from + ^http://((?:annual|bookstore|journals|shib|www)\.)?ametsoc\.org/ + to + https://$1ametsoc.org/ + + target + + + host + ametsoc.org + + + host + *.ametsoc.org + + + + + ANB + + ruleset + + name + ANB + rule + + + from + ^http://anb\.com\.sa/ + to + https://www.anb.com.sa/ + + + from + ^http://(e|ebusiness|onlinebanking|www)\.anb\.com\.sa/ + to + https://$1.anb.com.sa/ + + + target + + + host + anb.com.sa + + + host + *.anb.com.sa + + + + + ANXBTC.com + + ruleset + + name + ANXBTC.com + rule + + from + ^http://(www\.)?anxbtc\.com/ + to + https://$1anxbtc.com/ + + securecookie + + host + ^(?:\.|www\.)?anxbtc\.com$ + name + .+ + + target + + + host + anxbtc.com + + + host + *.anxbtc.com + + + + + ANZ + + ruleset + + name + ANZ + rule + + + from + ^http://(?:www\.)?anz\.com/ + to + https://www.anz.com/ + + + from + ^http://infos\.anz\.com/ + to + https://infos.anz.com/ + + + securecookie + + host + .*\.anz\.com$ + name + .+ + + target + + + host + anz.com + + + host + *.anz.com + + + + + AOE.com (partial) + + ruleset + + name + AOE.com (partial) + rule + + + from + ^http://(www\.)?aoe\.com/(?=$|\?|en/*(?:$|\?)|en/press/press-contact\.html|fileadmin/|typo3conf/|typo3temp/|uploads/) + to + https://$1aoe.com/ + + + from + ^http://cdn1\.aoe\.com/ + to + https://d1bxvq8g6qmzaf.cloudfront.net/ + + + from + ^http://cdn2\.aoe\.com/ + to + https://dgpnghoac0a43.cloudfront.net/ + + + target + + + host + aoe.com + + + host + *.aoe.com + + + + + AOK + + ruleset + + name + AOK + rule + + from + ^http://(?:www\.)?aok\.de/ + to + https://www.aok.de/ + + target + + + host + www.aok.de + + + host + aok.de + + + + + AOL (partial) + + ruleset + + exclusion + + + pattern + ^http://my\.screenname\.aol\.com/_cqr/logout/ + + + pattern + ^http://o\.aolcdn\.com/(?:hss/storage(?!/adam/|/midas/)|mars|myfeeds|portaleu|winamp/dp)/ + + + name + AOL (partial) + rule + + + from + ^http://(?:cdn\.|www\.)?aim\.com/ + to + https://www.aim.com/ + + + from + ^http://(?:www\.)?aol\.com/(favicon\.ico|video/) + to + https://www.aol.com/$1 + + + from + ^http://((?:dev\.sandbox\.)?autos|bill|misc\.blogsmith|contactus|account\.login|(?:api\.|cdn\.web)mail|myaccount|netscape|new|on|openid|pki-info|aolctoftp\.red|s2c|(?:api|my)\.screenname|dashboard\.voice)\.aol\.com/ + to + https://$1.aol.com/ + + + from + ^http://a?(s|t)\.on\.aol\.com/ + to + https://$1.on.aol.com/ + + + from + ^http://support\.(?:on\.aol|aolonnetwork)\.com/ + to + https://support.aolonnetwork.com/ + + + from + ^http://(?:exp)?api\.oscar\.aol\.com/ + to + https://api.oscar.aol.com/ + + + from + ^http://(?:www\.)?aol\.co\.uk/ + to + https://www.aol.co.uk/ + + + from + ^http://rs\.aol\.co\.uk/ + to + https://rs.aol.co.uk/ + + + from + ^http://(?:o3?|s(ns-static)?)\.aolcdn\.com/ + to + https://s$1.aolcdn.com/ + + + from + ^http://(?:www\.)?crunchboard\.com/(build|images3?|include)/ + to + https://secure.personforce.com/$1/ + + + from + ^http://(?:(?:home|www)\.)?netscape\.com/ + to + https://netscape.aol.com/ + + + from + ^http://(?:web)?mail\.netscape\.com/ + to + https://my.screenname.aol.com/_cqr/login/login.psp?sitedomain=sns.webmail.aol.com + + + securecookie + + + host + ^(?:dev\.sandbox\.autos|new)\.aol\.com$ + name + .+ + + + host + ^www\.aol\.co\.uk$ + name + .+ + + + host + ^support\.aolonnetwork\.com$ + name + .+ + + + target + + + host + aim.com + + + host + *.aim.com + + + host + aol.com + + + host + *.aol.com + + + host + aol.co.uk + + + host + *.aol.co.uk + + + host + *.aolcdn.com + + + host + support.aolonnetwork.com + + + host + crunchboard.com + + + host + www.crunchboard.com + + + host + netscape.com + + + host + *.netscape.com + + + + + AOL Advertising + + ruleset + + name + AOL Advertising + rule + + + from + ^http://(?:www\.)?adsonar\.com/ + to + https://www.adsonar.com/ + + + from + ^http://(?:secure-)?js\.adsonar\.com/ + to + https://secure-js.adsonar.com/ + + + from + ^http://(ar|tacoda\.at)\.atwola\.com/ + to + https://$1.atwola.com/ + + + from + ^http://anrtx\.tacoda\.net/ + to + https://anrtx.tacoda.net/ + + + securecookie + + host + ^\.atwola\.com$ + name + .+ + + target + + + host + adsonar.com + + + host + *.adsonar.com + + + host + *.atwola.com + + + host + anrtx.tacoda.net + + + + + APA.org (partial) + + ruleset + + name + APA.org (partial) + platform + mixedcontent + rule + + from + ^http://my\.apa\.org/ + to + https://my.apa.org/ + + securecookie + + host + ^my\.apa\.org$ + name + .* + + target + + host + my.apa.org + + + + APC Magazine + + ruleset + + name + APC Magazine + rule + + from + ^http://(?:www\.)?apcmag\.com/ + to + https://apcmag.com/ + + securecookie + + host + ^apcmag\.com$ + name + .* + + target + + + host + apcmag.com + + + host + www.apcmag.com + + + + + APM.com + + ruleset + + name + APM.com + rule + + from + ^http://(myapm\.|www\.)?apm\.com/ + to + https://$1apm.com/ + + securecookie + + host + ^(?:myapm|www)\.apm\.com$ + name + .+ + + target + + + host + apm.com + + + host + *.apm.com + + + + + APN News & Media (partial) + + ruleset + + name + APN News & Media (partial) + rule + + from + ^http://media2\.apnonline\.com\.au/ + to + https://d159yll7hxyh2o.cloudfront.net/ + + target + + host + media2.apnonline.com.au + + + + APO Box.com + + ruleset + + name + APO Box.com + rule + + + from + ^http://(www\.)?apobox\.com/ + to + https://$1apobox.com/ + + + from + ^http://support\.apobox\.com/(?=favicon\.ico|generated/|images/|system/) + to + https://apobox.zendesk.com/ + + + securecookie + + host + ^\.apobox\.com$ + name + .+ + + target + + + host + apobox.com + + + host + *.apobox.com + + + + + APS Jobs + + ruleset + + name + APS Jobs + rule + + from + ^http://(?:www\.)?apsjobs\.gov\.au/ + to + https://www.apsjobs.gov.au/ + + target + + + host + apsjobs.gov.au + + + host + *.apsjobs.gov.au + + + + + ARIN.net (partial) + + ruleset + + name + ARIN.net (partial) + rule + + from + ^http://(updown-pilot\.|www\.)?arin\.net/ + to + https://$1arin.net/ + + securecookie + + host + ^(?:updown-pilot\.|w*\.)?arin\.net$ + name + .+ + + target + + + host + arin.net + + + host + *.arin.net + + + + + ARM (partial) + + ruleset + + name + ARM (partial) + rule + + + from + ^http://(?:www\.)?arm\.com/(?=css/|images/) + to + https://cmsis.arm.com/ + + + from + ^http://(cmsis|(?:apps\.)?community(?:-uat)?|login|silver)\.arm\.com/ + to + https://$1.arm.com/ + + + securecookie + + host + ^(?:cmsis|(?:apps\.)?community(?:-uat)?|login)\.arm\.com$ + name + .+ + + target + + host + *.arm.com + + + + ARPNetworks.com (partial) + + ruleset + + name + ARPNetworks.com (partial) + rule + + + from + ^http://(portal\.|www\.)?arpnetworks\.com/ + to + https://$1arpnetworks.com/ + + + from + ^https?://support\.arpnetworks\.com/(help|pkg|stylesheets)/ + to + https://asset-2.tenderapp.com/$1/ + + + securecookie + + host + ^(.*\.)?arpnetworks\.com$ + name + .* + + target + + + host + arpnetworks.com + + + host + *.arpnetworks.com + + + + + ARRL (partial) + + ruleset + + name + ARRL (partial) + rule + + from + ^http://(www\.)?arrl\.org/(?=css/|favicon\.ico|img/|shop(?:$|[?/])) + to + https://$1arrl.org/ + + target + + + host + arrl.org + + + host + www.arrl.org + + + + + AS112.net + + ruleset + + name + AS112.net + rule + + from + ^http://(www\.)?as112\.net/ + to + https://$1as112.net/ + + target + + + host + as112.net + + + host + www.as112.net + + + + + ASDA (partial) + + ruleset + + name + ASDA (partial) + rule + + + from + ^https?://credit-card\.asda\.com/$ + to + https://apply.creation.co.uk/apply/index.html?brandCode=asda_colleague + + + from + ^https?://credit-card\.asda\.com/(?!$) + to + https://apply.creation.co.uk/ + + + from + ^http://(cards|(?:ipadkiosk\.)?direct|email|i(?:\.|\d-)groceries|grocieries-qa2|money|online-account-manager|pulse|tradein)\.asda\.com/ + to + https://$1.asda.com/ + + + from + ^https?://omniture\.groceries\.asda\.com/ + to + https://groceries.asda.com.d2.sc.omtrdc.net/ + + + from + ^https?://survey\.asda\.com/(?:\?.*)?$ + to + https://www.emailvision.com/ + + + securecookie + + host + ^.+\.asda\.com$ + name + .+ + + target + + host + *.asda.com + + + + ASI robots.com + + ruleset + + name + ASI robots.com + rule + + from + ^http://(www\.)?asirobots\.com/ + to + https://$1asirobots.com/ + + securecookie + + host + ^\.asirobots\.com$ + name + .+ + + target + + + host + asirobots.com + + + host + *.asirobots.com + + + + + ASIC + + ruleset + + name + ASIC + rule + + + from + ^http://(?:www\.)?asic\.gov\.au/ + to + https://www.asic.gov.au/ + + + from + ^http://(?:www\.)?insolvencynotices\.asic\.gov\.au/ + to + https://insolvencynotices.asic.gov.au/ + + + target + + + host + asic.gov.au + + + host + *.asic.gov.au + + + + + ASL19.org + + ruleset + + name + ASL19.org + rule + + from + ^http://(www\.)?asl19\.org/ + to + https://$1asl19.org/ + + securecookie + + host + ^\.asl19\.org$ + name + .+ + + target + + + host + asl19.org + + + host + *.asl19.org + + + + + ASN Bank.nl (partial) + + ruleset + + name + ASN Bank.nl (partial) + rule + + from + ^http://(?:www\.)?asnbank\.nl/ + to + https://www.asnbank.nl/ + + securecookie + + host + ^\.www\.asnbank\.nl$ + name + .+ + + target + + + host + asnbank.nl + + + host + *.asnbank.nl + + + + + ASP.NET (partial) + + ruleset + + name + ASP.NET (partial) + rule + + from + ^http://login\.asp\.net/ + to + https://login.asp.net/ + + securecookie + + host + ^login\.asp\.net$ + name + .+ + + target + + host + login.asp.net + + + + ASPNETcdn.com + + ruleset + + name + ASPNETcdn.com + rule + + from + ^http://ajax\.aspnetcdn\.com/ + to + https://ajax.aspnetcdn.com/ + + target + + host + ajax.aspnetcdn.com + + + + ASPPlayground.NET + + ruleset + + name + ASPPlayground.NET + rule + + from + ^http://(www\.)?aspplayground\.net/ + to + https://$1aspplayground.net/ + + securecookie + + host + ^(?:www\.)?aspplayground\.net$ + name + .+ + + target + + + host + aspplayground.net + + + host + www.aspplayground.net + + + + + ASUS (partial) + + ruleset + + name + ASUS (partial) + rule + + + from + ^http://(?:www\.)?asus\.com/ + to + https://www.asus.com/ + + + from + ^http://(account|mymail|serviceshop|vip)\.asus\.com/ + to + https://$1.asus.com/ + + + from + ^http://(?:autodiscover|mail)\.asus\.com/.* + to + https://mymail.asus.com/owa/ + + + from + ^http://dlcdnet\.asus\.com/ + to + https://a248.e.akamai.net/f/1828/2290/9f/dlcdnet.asus.com/ + + + securecookie + + host + .+\.asus\.com$ + name + .+ + + target + + + host + asus.com + + + host + *.asus.com + + + + + AT Internet Solutions + + ruleset + + name + AT Internet Solutions + rule + + from + ^http://(?:www\.)?atinternet-solutions\.com/ + to + https://www.atinternet-solutions.com/ + + securecookie + + host + ^www\.atinternet-solutions\.com$ + name + .+ + + target + + + host + atinternet-solutions.com + + + host + www.atinternet-solutions.com + + + + + AT&T (partial) + + ruleset + + name + AT&T (partial) + rule + + + from + ^http://((?:connect|www\.corp|cprodmasx|developer|www\.e-access|forums|localization|networkingexchangeblog|rewardcenter|smb|trial\.uc|ufix|uversecentral\d|webhosting|www\.wireless|www)\.)?att\.com/ + to + https://$1att.com/ + + + from + ^https?://(?:www\.)?business\.att\.com/(?:enterprise/)?(?:\?.*)?$ + to + https://www.att.com/gen/landing-pages?pid=9214 + + + from + ^http://wireless\.att\.com/($|\?) + to + https://www.att.com/shop/wireless/$1 + + + from + ^http://(\d)\.ecom\.attccc\.com/ + to + https://$1.ecom.attccc.com/ + + + securecookie + + host + ^.*\.att\.com$ + name + .+ + + target + + + host + att.com + + + host + *.att.com + + + host + *.ecom.attccc.com + + + + + ATBank + + ruleset + + name + ATBank + rule + + from + ^http://(?:www\.)?atbank\.nl/ + to + https://www.atbank.nl/ + + target + + + host + www.atbank.nl + + + host + atbank.nl + + + + + ATG Web Commerce + + ruleset + + name + ATG Web Commerce + rule + + from + ^http://(g|r)s\.instantservice\.com/ + to + https://$1s.instantservice.com/ + + securecookie + + host + ^[gr]s\.instantservice\.com$ + name + .+ + + target + + host + *.instantservice.com + + + + ATV.hu (partial) + + ruleset + + name + ATV.hu (partial) + rule + + from + ^http://static\.atv\.hu/ + to + https://static.atv.hu/ + + target + + host + static.atv.hu + + + + ATbar (partial) + + ruleset + + name + ATbar (partial) + rule + + from + ^http://ssl\.atbar\.org/ + to + https://ssl.atbar.org/ + + target + + host + ssl.atbar.org + + + + AVG.com (partial) + + ruleset + + name + AVG.com (partial) + rule + + from + ^http://(\w+\.)?inst\.avg\.com/ + to + https://$1inst.avg.com/ + + securecookie + + host + ^(?:\w+\.)?inst\.avg\.com$ + name + .+ + + target + + host + *.avg.com + + + + AWcloud.net + + ruleset + + name + AWcloud.net + rule + + from + ^http://(projecta|stats)\.awcloud\.net/ + to + https://$1.awcloud.net/ + + target + + host + *.awcloud.net + + + + AWeber (partial) + + ruleset + + name + AWeber (partial) + rule + + + from + ^http://(?:www\.)?aweber\.com/(banners/|blog(?:$|\?|/)|(?:(?:contact-us|login|order)\.htm)(?:$|\?)|images/|img/) + to + https://www.aweber.com/$1 + + + from + ^http://(analytics|forms|help|labs)\.aweber\.com/ + to + https://$1s.aweber.com/ + + + from + ^http://cdn([1-5])\.aweber-static\.com/ + to + https://cdn$1.weber-static.com/ + + + from + ^https?://hostedimages\.aweber-static\.com/ + to + https://s3.amazonaws.com/hostedimages.aweber-static.com/ + + + securecookie + + + host + ^(?:\.?forms|help|labs)\.aweber\.com$ + name + .+ + + + host + ^.*\.aweber-static\.com$ + name + .+ + + + target + + + host + aweber.com + + + host + *.aweber.com + + + host + *.forms.aweber.com + + + host + *.aweber-static.com + + + + + AWeber Communications (partial) + + ruleset + + name + AWeber Communications (partial) + rule + + from + ^http://(forms|help|labs)\.aweber\.com/ + to + https://$1.aweber.com/ + + securecookie + + host + ^(forms|help|labs)\.aweber\.com$ + name + .+ + + target + + + host + forms.aweber.com + + + host + help.aweber.com + + + host + labs.aweber.com + + + + + AXA (partial) + + ruleset + + name + AXA (partial) + rule + + from + ^http://creativegallery\.axa\.com/ + to + https://creativegallery.axa.com/ + + securecookie + + host + ^creativegallery\.axa\.com$ + name + .+ + + target + + host + creativegallery.axa.com + + + + AXA Winterthur + + ruleset + + name + AXA Winterthur + rule + + + from + ^https?://axa-winterthur\.ch/ + to + https://www.axa-winterthur.ch/ + + + from + ^http://([^/:@]+)?\.axa-winterthur\.ch/ + to + https://$1.axa-winterthur.ch/ + + + target + + + host + axa-winterthur.ch + + + host + *.axa-winterthur.ch + + + + + AZHCA.org + + ruleset + + name + AZHCA.org + rule + + from + ^http://(?:www\.)?azhca\.org/ + to + https://www.azhca.org/ + + securecookie + + host + ^(?:www)?\.azhca\.org$ + name + .+ + + target + + + host + azhca.org + + + host + *.azhca.org + + + + + Aaai.org + + ruleset + + name + Aaai.org + platform + mixedcontent + rule + + from + ^http://(?:www\.)?aaai\.org/ + to + https://www.aaai.org/ + + target + + + host + aaai.org + + + host + www.aaai.org + + + + + Aalborg University (partial) + + ruleset + + name + Aalborg University (partial) + rule + + from + ^http://login\.aau\.dk/ + to + https://login.aau.dk/ + + securecookie + + host + ^login\.aau\.dk$ + name + .+ + + target + + host + login.aau.dk + + + + Aaron Brothers + + ruleset + + name + Aaron Brothers + rule + + from + ^http://(www\.)?aaronbrotherscircular\.com/ + to + https://$1aaronbrotherscircular.com/ + + securecookie + + host + ^(?:w*\.)?aaronbrotherscircular.com$ + name + .+ + + target + + + host + aaronbrotherscircular.com + + + host + *.aaronbrotherscircular.com + + + + + Aaronparecki.com + + ruleset + + name + Aaronparecki.com + rule + + from + ^http://aaronparecki\.com/ + to + https://aaronparecki.com/ + + target + + host + aaronparecki.com + + + + Aart de Vos (partial) + + ruleset + + name + Aart de Vos (partial) + rule + + from + ^http://(www\.)?aartdevos\.dk/(_css/|file/|_grafix/|konto(?:$|\?|/)) + to + https://$1aartdevos.dk/$2 + + target + + + host + aartdevos.dk + + + host + www.aartdevos.dk + + + + + Abacus.com (partial) + + ruleset + + name + Abacus.com (partial) + rule + + from + ^http://(www\.)?abacus\.com/ + to + https://$1abacus.com/ + + target + + + host + abacus.com + + + host + www.abacus.com + + + + + Abbo-shop.ch + + ruleset + + name + Abbo-shop.ch + rule + + from + ^http://(?:www\.)?abbo-shop\.ch/ + to + https://www.abbo-shop.ch/ + + securecookie + + host + ^(.*\.)?abbo-shop\.ch$ + name + .* + + target + + + host + abbo-shop.ch + + + host + www.abbo-shop.ch + + + + + Abbott Laboratories + + ruleset + + name + Abbott Laboratories + rule + + from + ^http://(www\.)?abbott\.com/ + to + https://$1abbott.com/ + + securecookie + + host + ^(www\.)?abbott\.com$ + name + .* + + target + + + host + abbott.com + + + host + www.abbott.com + + + + + AbcLinuxu + + ruleset + + name + AbcLinuxu + platform + mixedcontent + rule + + from + ^http://(www\.)?abclinuxu\.cz/ + to + https://$1abclinuxu.cz/ + + securecookie + + host + ^(?:w*\.)?abclinuxu\.cz$ + name + .+ + + target + + + host + abclinuxu.cz + + + host + *.abclinuxu.cz + + + + + Abdn.ac.uk (partial) + + ruleset + + name + Abdn.ac.uk (partial) + rule + + from + ^http://(?:www\.)?abdn\.ac\.uk/ + to + https://www.abdn.ac.uk/ + + target + + + host + abdn.ac.uk + + + host + www.abdn.ac.uk + + + + + AbeBooks + + ruleset + + name + AbeBooks + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?abebooks\.co\.uk/ + to + https://www.abebooks.co.uk/ + + + from + ^http://(?:www\.)?abebooks\.com/ + to + https://www.abebooks.com/ + + + target + + + host + abebooks.co.uk + + + host + www.abebooks.co.uk + + + host + abebooks.com + + + host + www.abebooks.com + + + + + Aberystwyth University (partial) + + ruleset + + exclusion + + + pattern + ^http://cadair\.aber\.ac\.uk/(?!dspace/ldap-login) + + + pattern + ^http://(?:connect|www\.inf|jump|nexus|users)\. + + + pattern + ^http://primo\.aber\.ac\.uk(?:80)?/primo_library/libweb/ + + + name + Aberystwyth University (partial) + rule + + + from + ^https?://(?:beta\.)?aber\.ac\.uk/ + to + https://www.aber.ac.uk/ + + + from + ^http://([\w\.]+)\.aber\.ac\.uk/ + to + https://$1.aber.ac.uk/ + + + securecookie + + host + ^[^cp][\w\.]+\.aber\.ac\.uk$ + name + .+ + + target + + + host + aber.ac.uk + + + host + *.aber.ac.uk + + + + + Abiliba + + ruleset + + name + Abiliba + platform + mixedcontent + rule + + from + ^http://(?:secure\.|www\.)?abiliba\.net/ + to + https://secure.abiliba.net/ + + securecookie + + host + ^secure\.abiliba\.net$ + name + .* + + target + + + host + abiliba.net + + + host + *.abiliba.net + + + + + Abine + + ruleset + + name + Abine + rule + + from + ^http://(dnt\.|www\.)?abine\.com/ + to + https://$1abine.com/ + + securecookie + + host + ^(?:w*\.)?abine\.com$ + name + .+ + + target + + + host + abine.com + + + host + *.abine.com + + + + + AbleGamers + + ruleset + + name + AbleGamers + rule + + from + ^http://(www\.)?ablegamers\.com/ + to + https://$1ablegamers.com/ + + securecookie + + host + ^www\.ablegamers\.com$ + name + .+ + + target + + + host + ablegamers.com + + + host + www.ablegamers.com + + + + + Abosgratis.de + + ruleset + + name + Abosgratis.de + rule + + from + ^http://(www\.)?abosgratis\.de/ + to + https://www.abosgratis.de/ + + target + + + host + abosgratis.de + + + host + www.abosgratis.de + + + + + About Ads (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?aboutads\.info/(choices)/ + + name + About Ads (partial) + rule + + from + ^http://(?:www\.)?aboutads\.info/ + to + https://www.aboutads.info/ + + target + + + host + aboutads.info + + + host + *.aboutads.info + + + + + About the Data.com + + ruleset + + name + About the Data.com + rule + + from + ^http://(www\.)?aboutthedata\.com/ + to + https://$1aboutthedata.com/ + + target + + + host + aboutthedata.com + + + host + www.aboutthedata.com + + + + + AboutMe + + ruleset + + name + AboutMe + rule + + from + ^http://(www\.)?about\.me/ + to + https://$1about.me/ + + securecookie + + host + ^(.*\.)?about.me$ + name + .* + + target + + + host + about.me + + + host + www.about.me + + + + + AboutUs (partial) + + ruleset + + name + AboutUs (partial) + platform + mixedcontent + rule + + from + ^http://static\.aboutus\.org/ + to + https://s3.amazonaws.com/au-site-static-assets/ + + target + + host + static.aboutus.org + + + + Above.com (partial) + + ruleset + + name + Above.com (partial) + rule + + from + ^http://(www\.)?above\.com/ + to + https://$1above.com/ + + securecookie + + host + ^(?:www\.)?above\.com$ + name + .+ + + target + + + host + above.com + + + host + www.above.com + + + + + Abuse.ch + + ruleset + + name + Abuse.ch + rule + + from + ^http://(sslbl|spyeyetracker|www|zeustracker)\.abuse\.ch/ + to + https://$1.abuse.ch/ + + securecookie + + host + .*\.abuse\.ch$ + name + .+ + + target + + host + *.abuse.ch + + + + Academia.edu (partial) + + ruleset + + name + Academia.edu (partial) + rule + + from + ^http://(assets|images|photos)\.academia\.edu/ + to + https://s3.amazonaws.com/academia.edu.$1/ + + target + + host + *.academia.edu + + + + Academy Credit online.com + + ruleset + + name + Academy Credit online.com + rule + + from + ^http://(secure\.|www\.)?academycreditonline\.com/ + to + https://$1academycreditonline.com/ + + securecookie + + host + ^(?:\w*\.)?academycreditonline\.com$ + name + .+ + + target + + + host + academycreditonline.com + + + host + *.academycreditonline.com + + + + + Academy of Model Aeronautics (partial) + + ruleset + + name + Academy of Model Aeronautics (partial) + rule + + + from + ^http://modelaircraft\.org/ + to + https://modelaircraft.org/ + + + from + ^http://www\.modelaircraft\.org/(advertising/|(?:clubsearch|hobbyshopsearch|joinrenew|ping|shopama/dept)\.ashx|(?:fil|imag|templat|UserFil)es/|forums/) + to + https://www.modelaircraft.org/$1 + + + securecookie + + host + ^(www\.)?modelaircraft\.org$ + name + .* + + target + + + host + modelaircraft.org + + + host + www.modelaircraft.org + + + + + Acalog + + ruleset + + name + Acalog + rule + + from + ^http://([\w-]+)\.acalogadmin\.com/ + to + https://$1.acalogadmin.com/ + + securecookie + + host + .+\.acalogadmin\.com$ + name + .+ + + target + + host + *.acalogadmin.com + + + + Accela Communications (partial) + + ruleset + + name + Accela Communications (partial) + rule + + + from + ^https?://accelacomm\.com/ + to + https://www.accelacomm.com/ + + + from + ^http://(reg|www)\.accelacomm\.com/ + to + https://$1.accelacomm.com/ + + + from + ^http://(www\.)?accelaworks\.com/ + to + https://$1accelaworks.com/ + + + securecookie + + + host + ^.*\.accelacomm\.com$ + name + .* + + + host + ^(.*\.)?accelaworks\.com$ + name + .* + + + target + + + host + accelacomm.com + + + host + *.accelacomm.com + + + host + accelaworks.com + + + host + www.accelaworks.com + + + + + Accellion + + ruleset + + name + Accellion + platform + mixedcontent + rule + + from + ^http://(www\.)?accellion\.com/ + to + https://$1accellion.com/ + + securecookie + + host + ^(.*\.)accellion\.com$ + name + .* + + target + + + host + accellion.com + + + host + *.accellion.com + + + + + Accenture + + ruleset + + name + Accenture + rule + + from + ^http://beacon4\.abba\.accenture\.com/ + to + https://beacon4.abba.accenture.com/ + + target + + host + *.abba.accenture.com + + + + Acceptiva.com (partial) + + ruleset + + name + Acceptiva.com (partial) + rule + + from + ^http://secure\.acceptiva\.com/ + to + https://secure.acceptiva.com/ + + target + + host + secure.acceptiva.com + + + + Access Office Products + + ruleset + + name + Access Office Products + rule + + from + ^http://(www\.)?accessofficeproducts\.com/ + to + https://$1accessofficeproducts.com/ + + securecookie + + host + ^\.accessofficeproducts\.com$ + name + .+ + + target + + + host + accessofficeproducts.com + + + host + *.accessofficeproducts.com + + + + + Access Privacy.com + + ruleset + + name + Access Privacy.com + rule + + from + ^http://(www\.)?accessprivacy\.com/ + to + https://$1accessprivacy.com/ + + securecookie + + host + ^(?:w*\.)?accessprivacy\.com$ + name + .+ + + target + + + host + accessprivacy.com + + + host + *.accessprivacy.com + + + + + Access to Justice + + ruleset + + name + Access to Justice + rule + + from + ^http://(?:www\.)?accesstojustice\.gov\.au/ + to + https://www.accesstojustice.gov.au/ + + target + + + host + accesstojustice.gov.au + + + host + *.accesstojustice.gov.au + + + + + AccessGuardian.com + + ruleset + + name + AccessGuardian.com + rule + + from + ^http://(www\.)?accessguardian\.com/ + to + https://$1accessguardian.com/ + + securecookie + + host + ^(?:www\.)?accessguardian\.com$ + name + .+ + + target + + + host + accessguardian.com + + + host + www.accessguardian.com + + + + + AccessLabs + + ruleset + + name + AccessLabs + rule + + + from + ^http://(ext\.|www\.)?accesslabs\.net/ + to + https://$1accesslabs.net/ + + + from + ^http://(www\.)?accesslabs\.org/ + to + https://$1accesslabs.org/ + + + securecookie + + host + ^(www\.)?accesslabs\.(net|org)$ + name + .* + + target + + + host + accesslabs.net + + + host + *.accesslabs.net + + + host + accesslabs.org + + + host + www.accesslabs.org + + + + + AccessNow.org + + ruleset + + name + AccessNow.org + rule + + from + ^http://((?:donate|fakedomains|www)\.)?accessnow\.org/ + to + https://$1accessnow.org/ + + securecookie + + host + ^.*\.accessnow\.org$ + name + .* + + target + + + host + accessnow.org + + + host + *.accessnow.org + + + + + AccessPrivacy.ca + + ruleset + + name + AccessPrivacy.ca + rule + + from + ^http://(www\.)?accessprivacy\.ca/ + to + https://$1accessprivacy.ca/ + + securecookie + + host + ^(?:w*\.)?accessprivacy\.ca$ + name + .+ + + target + + + host + accessprivacy.ca + + + host + *.accessprivacy.ca + + + + + Accessibility.nl + + ruleset + + name + Accessibility.nl + rule + + from + ^http://(?:www\.)?accessibility\.nl/ + to + https://www.accessibility.nl/ + + target + + + host + www.accessibility.nl + + + host + accessibility.nl + + + + + Accessible Information Management (gunadiframework.com) + + ruleset + + name + Accessible Information Management (gunadiframework.com) + rule + + + from + ^http://gunadiframework\.com/ + to + https://gunadiframework.com/ + + + from + ^http://([a-zA-Z0-9\-]+)\.gunadiframework\.com/ + to + https://$1.gunadiframework.com/ + + + securecookie + + host + ^(([a-zA-Z0-9\-]*)\.)?gunadiframework.com$ + name + .+ + + target + + + host + gunadiframework.com + + + host + *.gunadiframework.com + + + + + Accessorize (partial) + + ruleset + + name + Accessorize (partial) + rule + + from + ^http://uk\.accessorize\.com/(medias/|monsoon/|registerSession\.gif) + to + https://uk.accessorize.com/$1 + + target + + host + uk.accessorize.com + + + + Accordance Bible.com (partial) + + ruleset + + name + Accordance Bible.com (partial) + rule + + from + ^http://(www\.)?accordancebible\.com/(?=archive/|(?:custom_)?content/|errors/|files/|(?:forums|site/thirdparty|store/(?:checkout_info|gift_card))(?:$|[?/])|thirdparty/) + to + https://$1accordancebible.com/ + + securecookie + + host + ^\.accordancebible\.com$ + name + ^(?:__utm\w+|newsession_id)$ + + target + + + host + accordancebible.com + + + host + *.accordancebible.com + + + + + Account Chooser + + ruleset + + name + Account Chooser + rule + + from + ^http://(www\.)?accountchooser\.com/ + to + https://$1accountchooser.com/ + + target + + + host + accountchooser.com + + + host + www.accountchooser.com + + + + + Account Online.com + + ruleset + + name + Account Online.com + rule + + + from + ^http://(?:www\.)?accountonline\.com/(\?.*)?$ + to + https://creditcards.citi.com/$1 + + + from + ^http://(?:www\.)?accountonline\.com/ + to + https://www.accountonline.com/ + + + securecookie + + host + ^(?:\.?www)?\.accountonline\.com$ + name + .+ + + target + + + host + accountonline.com + + + host + *.accountonline.com + + + + + AccountSupport.com + + ruleset + + name + AccountSupport.com + rule + + from + ^http://(secure\.|www\.)?accountsupport\.com/ + to + https://$1accountsupport.com/ + + securecookie + + host + ^\.accountsupport\.com$ + name + .+ + + target + + + host + accountsupport.com + + + host + *.accountsupport.com + + + + + AccuWeather (partial) + + ruleset + + name + AccuWeather (partial) + rule + + + from + ^http://(api|apidev|enterpriseportal|wwwl)\.accuweather\.com/ + to + https://$1.accuweather.com/ + + + from + ^http://(htc2|motox|samsu|samsungmobile)\.accu-weather\.com/ + to + https://$1.accu-weather.com/ + + + securecookie + + host + ^enterpriseportal\.accuweather\.com$ + name + .+ + + target + + + host + *.accuweather.com + + + host + *.accu-weather.com + + + + + Accuen (partial) + + ruleset + + name + Accuen (partial) + rule + + from + ^http://d\.p-td\.com/ + to + https://d.p-td.com/ + + target + + host + d.p-td.com + + + + Accuvant.com + + ruleset + + name + Accuvant.com + rule + + + from + ^http://(www\.)?accuvant\.com/ + to + https://$1accuvant.com/ + + + from + ^http://blog\.accuvant\.com/ + to + https://blog.accuvant.com/ + + + from + ^http://files\.accuvant\.com/ + to + https://accuvantstorage.blob.core.windows.net/ + + + securecookie + + host + ^(?:www)?\.accuvant\.com$ + name + .+ + + target + + + host + accuvant.com + + + host + *.accuvant.com + + + + + Ace Hotel.com (partial) + + ruleset + + exclusion + + pattern + ^http://shop\.acehotel\.com/+(?!media/) + + name + Ace Hotel.com (partial) + rule + + from + ^http://(shop\.|www\.)?acehotel\.com/ + to + https://$1acehotel.com/ + + securecookie + + host + ^www\.acehotel\.com$ + name + .+ + + target + + + host + acehotel.com + + + host + *.acehotel.com + + + + + Acenet (partial) + + ruleset + + exclusion + + + pattern + http://billing\.ace-host\.net/(announcements|index)\.php$ + + + pattern + http://(demos|testimonials)\.ace-host\.net/ + + + name + Acenet (partial) + rule + + + from + ^http://(\w+\.)?ace-host\.net/ + to + https://$1ace-host.net/ + + + from + ^http://(www\.)?ace-net\.net/ + to + https://$1ace-host.net/ + + + from + ^http://(billing|esupport|warthog)\.acenet-inc\.net/ + to + https://$1.acenet-inc.net/ + + + securecookie + + + host + ^(.*\.)?ace-host\.net$ + name + .* + + + host + ^(.*\.)?acenet-inc\.net$ + name + .* + + + target + + + host + ace-host.net + + + host + *.ace-host.net + + + host + acenet-inc.net + + + host + *.acenet-inc.net + + + host + *.esupport.acenet-inc.net + + + + + Acik Akademi.com + + ruleset + + name + Acik Akademi.com + rule + + from + ^http://(?:www\.)?acikakademi\.com/ + to + https://www.acikakademi.com/ + + securecookie + + host + ^www\.acikakademi\.com$ + name + .+ + + target + + + host + acikakademi.com + + + host + www.acikakademi.com + + + + + Acorns.com (partial) + + ruleset + + name + Acorns.com (partial) + rule + + from + ^http://(?:www\.)?acorns\.com/ + to + https://www.acorns.com/ + + target + + + host + acorns.com + + + host + www.acorns.com + + + + + AcoustID + + ruleset + + name + AcoustID + rule + + from + ^http://(www\.)?acoustid\.org/ + to + https://$1acoustid.org/ + + target + + + host + acoustid.org + + + host + www.acoustid.org + + + + + Acoustics.org + + ruleset + + name + Acoustics.org + rule + + from + ^http://(www\.)?acoustics\.org/ + to + https://$1acoustics.org/ + + target + + + host + acoustics.org + + + host + www.acoustics.org + + + + + Acquia + + ruleset + + name + Acquia + rule + + from + ^http://((?:api|docs|insight|library|network|showcase|www)\.)?acquia\.com/ + to + https://$1acquia.com/ + + securecookie + + host + ^.*\.acquia\.com$ + name + .+ + + target + + + host + acquia.com + + + host + *.acquia.com + + + + + Acro Media (partial) + + ruleset + + name + Acro Media (partial) + rule + + from + ^http://(?:www\.)?acromediainc\.com/(acronet|careers|co(?:ntact|ntent-management|nversion-calculator)|drupal-development|news(?:/|letter/|-articles)|ongoing-(?:services|marketing)|privacy-policy|process|sites/|strategy-planning|team|uploads/) + to + https://www.acromediainc.com/$1 + + target + + + host + acromediainc.com + + + host + www.acromediainc.com + + + + + Acronis.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.acronis\.com/(?!modules/|sites/|(?:\w\w-\w\w/)?(?:my|support)(?:$|[?/])) + + name + Acronis.com (partial) + rule + + + from + ^http://(?:www\.)?acronis\.com/ + to + https://www.acronis.com/ + + + from + ^http://(forum|i4|kb)\.acronis\.com/ + to + https://$1.acronis.com/ + + + securecookie + + host + ^\.forum\.acronis\.com$ + name + .+ + + target + + + host + acronis.com + + + host + *.acronis.com + + + + + Act-On Software (partial) + + ruleset + + name + Act-On Software (partial) + rule + + from + ^http://(ci\d*\.|mktg\.|www\.)?actonsoftware\.com/ + to + https://$1actonsoftware.com/ + + securecookie + + host + ^(?:.*\.)?actonsoftware\.com$ + name + .+ + + target + + + host + actonsoftware.com + + + host + *.actonsoftware.com + + + + + Act.demandprogress.org + + ruleset + + name + Act.demandprogress.org + rule + + from + ^http://act\.demandprogress\.org/ + to + https://act.demandprogress.org/ + + target + + host + act.demandprogress.org + + + + ActBlue (partial) + + ruleset + + name + ActBlue (partial) + rule + + + from + ^http://secure\.actblue\.com/ + to + https://secure.actblue.com/ + + + from + ^https?://(?:www|m)\.actblue\.com/ + to + https://secure.actblue.com/ + + + from + ^https?://i\.actblue\.com/ + to + https://s3.amazonaws.com/i.actblue.com/ + + + securecookie + + host + ^\.actblue\.com$ + name + .* + + target + + + host + actblue.com + + + host + *.actblue.com + + + + + Actel.com + + ruleset + + name + Actel.com + rule + + + from + ^http://actel\.com/ + to + https://www.actel.com/ + + + from + ^http://www\.actel\.com/ + to + https://www.actel.com/ + + + target + + + host + actel.com + + + host + www.actel.com + + + + + Action Auto Wreckers + + ruleset + + name + Action Auto Wreckers + rule + + from + ^https?://(?:www\.)?actionsalvage\.com/ + to + https://www.actionsalvage.com/ + + securecookie + + host + ^www\.actionsalvage\.com$ + name + .* + + target + + + host + actionsalvage.com + + + host + www.actionsalvage.com + + + + + Action Intell + + ruleset + + name + Action Intell + rule + + from + ^http://(?:www\.)?action-intell\.com/ + to + https://www.action-intell.com/ + + target + + + host + action-intell.com + + + host + www.action-intell.com + + + + + ActionKit.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + ActionKit.com (partial) + rule + + from + ^http://(\w+)\.actionkit\.com/ + to + https://$1.actionkit.com/ + + securecookie + + host + ^\w+\.actionkit\.com$ + name + .+ + + target + + host + *.actionkit.com + + + + Active Events (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + Active Events (partial) + rule + + from + ^http://([\w\-]+)\.activeevents\.com/ + to + https://$1.activeevents.com/ + + securecookie + + host + ^.+\.activenetwork\.com$ + name + .+ + + target + + host + *.activeevents.com + + + + Active Melody + + ruleset + + name + Active Melody + rule + + from + ^http://(www\.)?activemelody\.com/ + to + https://$1activemelody.com/ + + securecookie + + host + ^\.activemelody\.com$ + name + .+ + + target + + + host + activemelody.com + + + host + *.activemelody.com + + + + + Active.com (partial) + + ruleset + + name + Active.com (partial) + rule + + + from + ^http://((?:assets-results2|community|results|rolassets|sso|www)\.)?active\.com/ + to + https://$1active.com/ + + + from + ^http://schwaggle\.active\.com/help/faq/? + to + https://schwaggle.active.com/help/faq + + + from + ^http://schwaggle\.active\.com/content/ + to + https://schwaggle.active.com/content/ + + + from + ^http://(www\.)?activestatic\.net/ + to + https://$1activestatic.net/ + + + from + ^http://(www\.)?regonline\.com/([rR])egister/([cC])heckin\.aspx\?EventID=(\d+)$ + to + https://$1regonline.com/$2egister/$3heckin.aspx?EventID=$4&MethodId=0&EventSessionId=&startnewreg=1 + + + from + ^http://(www\.)?regonline\.com/((?:__404|privacy|[rR]egister/(?:[cC]heckin|dialogs/passwordReset|login))\.aspx|Builder/WebResource\.axd|__images/|RadControls/|registrations/|__styles/) + to + https://$1regonline.com/$2 + + + securecookie + + host + ^(community\.|sso\.|www\.)?active\.com$ + name + .* + + target + + + host + active.com + + + host + *.active.com + + + host + activestatic.net + + + host + www.activestatic.net + + + host + regonline.com + + + host + www.regonline.com + + + + + ActiveState Software (partial) + + ruleset + + name + ActiveState Software (partial) + rule + + from + ^http://((?:account|code|store|templates|www)\.)?activestate\.com/ + to + https://$1activestate.com/ + + securecookie + + host + .*\.activestate\.com$ + name + .+ + + target + + + host + activestate.com + + + host + *.activestate.com + + + + + Activision Blizzard.com (partial) + + ruleset + + name + Activision Blizzard.com (partial) + rule + + + from + ^http://www\.activisionblizzard\.com/(?=content/|etc/(?!designs/atvi(?:/activision-blizzard/design-web/static|-ui/clientlibs-atvi/clientlibs-atvi-ui-(?:main|plugins)))\.css) + to + https://a248.e.akamai.net/f/1896/3621/9/www.activisionblizzard.com/ + + + from + ^http://investor\.activisionblizzard\.com/common/ + to + https://investor.shareholder.com/common/ + + + target + + host + *.activisionblizzard.com + + + + Acuity platform.com + + ruleset + + name + Acuity platform.com + rule + + from + ^http://(click-west\.|www\.)?acuityplatform\.com/ + to + https://$1acuityplatform.com/ + + securecookie + + host + ^\.acuityplatform\.com$ + name + .+ + + target + + + host + acuityplatform.com + + + host + *.acuityplatform.com + + + + + Aculab.com (partial) + + ruleset + + name + Aculab.com (partial) + rule + + from + ^http://cloud\.aculab\.com/ + to + https://cloud.aculab.com/ + + securecookie + + host + ^cloud\.aculab\.com$ + name + .+ + + target + + host + cloud.aculab.com + + + + Acunetix.com + + ruleset + + name + Acunetix.com + rule + + from + ^http://(?:www\.)?acunetix\.com/ + to + https://www.acunetix.com/ + + target + + + host + acunetix.com + + + host + www.acunetix.com + + + + + Acxiom (partial) + + ruleset + + name + Acxiom (partial) + rule + + from + ^https?://(?:www\.)?infobaselistexpress\.com/ + to + https://infobaselistexpress.com/ + + target + + + host + infobaselistexpress.com + + + host + www.infobaselistexpress.com + + + + + Acxiom-online.com + + ruleset + + name + Acxiom-online.com + rule + + from + ^http://p\.acxiom-online\.com/ + to + https://p.acxiom-online.com/ + + target + + host + p.acxiom-online.com + + + + Ad Peeps hosted.com + + ruleset + + name + Ad Peeps hosted.com + rule + + from + ^http://(www\.)?adpeepshosted\.com/ + to + https://$1adpeepshosted.com/ + + securecookie + + host + ^(?:www\.)?adpeepshosted\.com$ + name + .+ + + target + + + host + adpeepshosted.com + + + host + www.adpeepshosted.com + + + + + Ad-Center.com (partial) + + ruleset + + name + Ad-Center.com (partial) + rule + + from + ^http://ads\.ad-center\.com/ + to + https://ads.ad-center.com/ + + securecookie + + host + ^ads\.ad-center\.com$ + name + .+ + + target + + host + ads.ad-center.com + + + + Ad-Juster (partial) + + ruleset + + name + Ad-Juster (partial) + rule + + from + ^http://(tagscan\.|www\.)?ad-juster\.com/ + to + https://ad-juster.com/ + + securecookie + + host + ^tagscan\.ad-juster\.com$ + name + .+ + + target + + + host + ad-juster.com + + + host + *.ad-juster.com + + + + + Ad4Game (partial) + + ruleset + + name + Ad4Game (partial) + rule + + from + ^http://(ads|traffic)\.ad4game\.com/ + to + https://$1.ad4game.com/ + + securecookie + + host + \.?ads\.ad4game\.com$ + name + .* + + target + + host + *.ad4game.com + + + + AdBlock + + ruleset + + name + AdBlock + rule + + + from + ^http://(www\.)?getadblock\.com/ + to + https://$1getadblock.com/ + + + from + ^http://(?:www\.)?chromeadblock\.com/ + to + https://chromeadblock.com/ + + + target + + + host + getadblock.com + + + host + *.getadblock.com + + + host + chromeadblock.com + + + host + *.chromeadblock.com + + + + + AdBrite (partial) + + ruleset + + name + AdBrite (partial) + rule + + + from + ^http://ads(2)?\.adbrite\.com/ + to + https://ads$1.adbrite.com/ + + + from + ^https?://(?:files\.|www\.)?adbrite\.com/ + to + https://www.adbrite.com/ + + + target + + + host + adbrite.com + + + host + *.adbrite.com + + + + + AdBulter + + ruleset + + name + AdBulter + rule + + + from + ^http://(?:www\.)?adbutler\.com/ + to + https://www.adbutler.com/ + + + from + ^http://(?:www\.)?servedbyadbutler\.com/ + to + https://servedbyadbutler.com/ + + + securecookie + + host + ^\.adbutler\.com$ + name + .+ + + target + + + host + adbutler.com + + + host + *.adbutler.com + + + host + servedbyadbutler.com + + + host + www.servedbyadbutler.com + + + + + AdExcite (partial) + + ruleset + + name + AdExcite (partial) + rule + + from + ^https?://cdn\.adexcite\.com/ + to + https://adexcite.s3.amazonaws.com/ + + target + + host + cdn.adexcite.com + + + + AdExtent.com (partial) + + ruleset + + name + AdExtent.com (partial) + rule + + + from + ^http://appv2\.adextent\.com/(?=favicon\.ico|Frontend/(?:bootstrap|scripts|theme)/) + to + https://s3.amazonaws.com/appv2.adextent.com/ + + + from + ^http://dynads\.adextent\.com/ + to + https://d2dxlvlyoblbme.cloudfront.net/ + + + from + ^http://ssl\.adextent\.com/ + to + https://ssl.adextent.com/ + + + from + ^http://support\.adextent\.com/ + to + https://adextent.freshdesk.com/ + + + securecookie + + host + ^\.appv2\.adextent\.com$ + name + .+ + + target + + host + *.adextent.com + + + + AdJug.com (partial) + + ruleset + + name + AdJug.com (partial) + rule + + + from + ^http://(?:www\.)?adjug\.com/ + to + https://www.adjug.com/ + + + from + ^http://((?:hosting|www)\.(?:de|uk)|hosting|(?:de|uk)\.hosting|image|tracking|www\.us|view\.(?:de|uk|us))\.adjug\.com/ + to + https://$1.adjug.com/ + + + from + ^http://vast\.adjug\.com/ + to + https://a248.e.akamai.net/f/1051/7225/4f/vast.adjug.com/ + + + target + + + host + adjug.com + + + host + *.adjug.com + + + + + AdJuggler (partial) + + ruleset + + exclusion + + pattern + ^https?://hwcdn\.hadj[147]\.adjuggler\.net/banners/ + + name + AdJuggler (partial) + rule + + + from + ^https?://(?:rotator\.adjuggler\.(?:com|net)|hwcdn\.hadj[14]\.adjuggler\.net)/ + to + https://rotator.adjuggler.com/ + + + from + ^https?://((?:\w+\.)?rotator|hwcdn)\.hadj7\.adjuggler\.net/ + to + https://rotator.hadj7.adjuggler.net/ + + + securecookie + + host + ^rotator\.hadj7\.adjuggler\.net$ + name + .+ + + target + + + host + *.adjuggler.com + + + host + *.adjuggler.net + + + + + AdMatrix.jp + + ruleset + + name + AdMatrix.jp + rule + + from + ^http://(fso-tapi\.|www\.)?admatrix\.jp/ + to + https://$1admatrix.jp/ + + securecookie + + host + ^(?:www\.)?admatrix\.jp$ + name + .+ + + target + + + host + admatrix.jp + + + host + *.admatrix.jp + + + + + AdMob (partial) + + ruleset + + name + AdMob (partial) + rule + + + from + ^https?://(?:www\.)?admob\.com/ + to + https://www.admob.com/ + + + from + ^http://secure\.admob\.com/ + to + https://secure.admob.com/ + + + target + + + host + admob.com + + + host + *.admob.com + + + + + AdPerfect (partial) + + ruleset + + name + AdPerfect (partial) + rule + + from + ^https?://(?:www\.)?adperfect\.com/ + to + https://www.adperfect.com/ + + target + + + host + adperfect.com + + + host + www.adperfect.com + + + + + AdReactor (partial) + + ruleset + + name + AdReactor (partial) + rule + + from + ^http://adserver\.adreactor\.com/ + to + https://adserver.adreactor.com/ + + target + + host + adserver.adreactor.com + + + + AdRiver + + ruleset + + name + AdRiver + rule + + + from + ^http://(?:www\.)?adriver\.ru/ + to + https://www.adriver.ru/ + + + from + ^http://(ad[rs]?|content|edp[12]|masterh\d)\.adriver\.ru/ + to + https://$1.adriver.ru/ + + + securecookie + + host + ^\.adriver\.ru$ + name + .+ + + target + + + host + adriver.ru + + + host + *.adriver.ru + + + + + AdRoll (partial) + + ruleset + + name + AdRoll (partial) + rule + + + from + ^http://(d\.|www\.)?adroll\.com/ + to + https://$1adroll.com/ + + + from + ^http://[as]\.adroll\.com/ + to + https://s.adroll.com/ + + + from + ^http://feedback\.adroll\.com/s/ + to + https://userecho.com/s/ + + + target + + + host + adroll.com + + + host + *.adroll.com + + + + + AdSafe (partial) + + ruleset + + name + AdSafe (partial) + rule + + + from + ^http://(www\.)?adsafecontrol\.com/ + to + https://$1adsafecontrol.com/ + + + from + ^http://(fw|pixel|static)\.adsafeprotected\.com/ + to + https://$1.adsafeprotected.com/ + + + securecookie + + host + ^adsafecontrol\.com$ + name + .+ + + target + + + host + adsafecontrol.com + + + host + www.adsafecontrol.com + + + host + *.adsafeprotected.com + + + + + AdSpeed (partial) + + ruleset + + name + AdSpeed (partial) + rule + + + from + ^https?://(?:www\.)?adspeed\.biz/(?:.*) + to + https://adspeed.com/?src=dotbiz + + + from + ^https?://(?:www\.)?adspeed\.com/ + to + https://adspeed.com/ + + + from + ^https?://(?:\w\d+\.adspeed\.biz|g\.adspeed\.net)/ + to + https://g.adspeed.net/ + + + from + ^https?://(?:www\.)?adspeed\.net/ + to + https://adspeed.com/ + + + securecookie + + host + ^\.adspeed\.com$ + name + .+ + + target + + + host + adspeed.biz + + + host + *.adspeed.biz + + + host + adspeed.com + + + host + www.adspeed.com + + + host + adspeed.net + + + host + *.adspeed.net + + + + + AdSpirit (partial) + + ruleset + + name + AdSpirit (partial) + rule + + from + ^http://(?!www\.)?([\w-]+)\.adspirit\.de/ + to + https://$1.adspirit.de/ + + target + + host + *.adspirit.de + + + + AdSupply (partial) + + ruleset + + name + AdSupply (partial) + rule + + + from + ^http://(?:cdn\.)?engine\.4dsply\.com/ + to + https://engine.4dsply.com/ + + + from + ^http://(affiliates|engine|ui)\.adsupply\.com/ + to + https://$1.adsupply.com/ + + + from + ^http://(?:engine\.)?trklnks\.com/ + to + https://engine.trklnks.com/ + + + securecookie + + + host + ^engine\.(?:4dsply|trklnks)\.com$ + name + .+ + + + host + ^.+\.adsupply\.com$ + name + .+ + + + target + + + host + *.4dsply.com + + + host + *.adsupply.com + + + host + trklnks.com + + + host + engine.trklnks.com + + + + + AdXpansion.com (partial) + + ruleset + + name + AdXpansion.com (partial) + rule + + from + ^http://(www\.)?adxpansion\.com/ + to + https://$1adxpansion.com/ + + securecookie + + host + ^(?:w*\.)?adxpansion\.com$ + name + .+ + + target + + + host + adxpansion.com + + + host + *.adxpansion.com + + + + + AdaCore + + ruleset + + name + AdaCore + platform + mixedcontent + rule + + from + ^http://(www\.|libre\.)?adacore\.com/ + to + https://$1adacore.com/ + + securecookie + + host + ^www\.adacore\.com$ + name + .* + + target + + + host + adacore.com + + + host + *.adacore.com + + + + + AdaFruit + + ruleset + + name + AdaFruit + rule + + from + ^http://((?:accounts|forums|learn|www)\.)?adafruit\.com/ + to + https://$1adafruit.com/ + + securecookie + + host + ^\.?www\.adafruit\.com$ + name + .+ + + target + + + host + adafruit.com + + + host + *.adafruit.com + + + + + Adap.TV + + ruleset + + name + Adap.TV + rule + + + from + ^http://((?:ads|my|segments|www)\.)?adap\.tv/ + to + https://$1adap.tv/ + + + from + ^https?://redir\.adap\.tv/ + to + https://ads.adap.tv/ + + + securecookie + + host + ^\.adap\.tv$ + name + .* + + target + + + host + adap.tv + + + host + *.adap.tv + + + + + Adaptec.com (partial) + + ruleset + + name + Adaptec.com (partial) + rule + + from + ^http://(?:www\.)?adaptec\.com/ + to + https://www.adaptec.com/ + + target + + + host + adaptec.com + + + host + www.adaptec.com + + + + + Adapteva.com (partial) + + ruleset + + name + Adapteva.com (partial) + rule + + from + ^http://shop\.adapteva\.com/ + to + https://adapteva.myshopify.com/ + + target + + host + shop.adapteva.com + + + + Adaptive Computing + + ruleset + + name + Adaptive Computing + rule + + from + ^http://(www\.)?adaptivecomputing\.com/ + to + https://$1adaptivecomputing.com/ + + securecookie + + host + ^www\.adaptivecomputing\.com$ + name + .+ + + target + + + host + adaptivecomputing.com + + + host + www.adaptivecomputing.com + + + + + Adara Media (partial) + + ruleset + + name + Adara Media (partial) + rule + + + from + ^http://login\.adaramedia\.com/ + to + https://login.adaramedia.com/ + + + from + ^http://tag\.yieldoptimizer\.com/ + to + https://tag.yieldoptimizer.com/ + + + securecookie + + host + ^login\.adaramedia\.com$ + name + .* + + target + + + host + login.adaramedia.com + + + host + tag.yieldoptimizer.com + + + + + Adblade (partial) + + ruleset + + name + Adblade (partial) + rule + + + from + ^http://(www\.)?adblade\.com/(css|images|img|registration)/ + to + https://$1adblade.com/$2/ + + + from + ^http://(pixel|web)\.adblade\.com/ + to + https://$1.adblade.com/ + + + from + ^http://web\.reachmode\.com/ + to + https://web.reachmode.com/ + + + securecookie + + host + ^web\.reachmode\.com$ + name + .* + + target + + + host + adblade.com + + + host + *.adblade.com + + + host + reachmode.com + + + host + *.reachmode.com + + + + + AdblockPlus + + ruleset + + name + AdblockPlus + rule + + from + ^http://((?:easylist(?:-downloads)?|hg|notification|reports|www)\.)?adblockplus\.org/ + to + https://$1adblockplus.org/ + + securecookie + + host + ^(?:.*\.)?adblockplus\.org$ + name + .+ + + target + + + host + adblockplus.org + + + host + *.adblockplus.org + + + + + Adbooth.net + + ruleset + + name + Adbooth.net + rule + + + from + ^http://cdn\.adbooth\.net/ + to + https://s3.amazonaws.com/cdn.adbooth.net/ + + + from + ^http://help\.adbooth\.net/track\.gif + to + https://cdn.uservoice.com/track.gif + + + from + ^http://yieldmanager\.adbooth\.net/ + to + https://ad.yieldmanager.com/ + + + target + + host + *.adbooth.net + + + + Adbusters.org + + ruleset + + name + Adbusters.org + rule + + from + ^http://(www\.)?adbusters\.org/ + to + https://www.adbusters.org/ + + target + + + host + adbusters.org + + + host + www.adbusters.org + + + + + Adcash + + ruleset + + name + Adcash + rule + + from + ^http://(www\.)?adcash\.com/ + to + https://$1adcash.com/ + + securecookie + + host + ^(?:www\.)?adcash\.com$ + name + .+ + + target + + + host + adcash.com + + + host + www.adcash.com + + + + + Add2Net (partial) + + ruleset + + name + Add2Net (partial) + rule + + + from + ^http://(www\.)?lpdedicated\.com/ + to + https://$1lpdedicated.com/ + + + from + ^http://(?:www\.)?lplogin\.com/ + to + https://account.lunarpages.com/ + + + from + ^http://(www\.)?lunar(mod|page)s\.com/ + to + https://$1lunarpages.com/ + + + from + ^http://(account|secure|support)\.lunarpages\.com/ + to + https://$1.lunarpages.com/ + + + from + ^http://(www\.)?lunarpages\.co(m\.mx|\.uk)/ + to + https://$1lunarpages.co$2/ + + + from + ^http://(www\.)?tremendesk\.com/ + to + https://$1tremendesk.com/ + + + securecookie + + + host + ^www\.lunarmods\.com$ + name + .* + + + host + ^(account|secure|support|www)?\.lunarpages\.com$ + name + .* + + + host + ^(www)?\.tremendesk\.com$ + name + .* + + + target + + + host + lpdedicated.com + + + host + www.lpdedicated.com + + + host + lplogin.com + + + host + www.lplogin.com + + + host + lunarmods.com + + + host + www.lunarmods.com + + + host + lunarpages.com + + + host + *.lunarpages.com + + + host + lunarpages.com.mx + + + host + www.lunarpages.com.mx + + + host + lunarpages.co.uk + + + host + www.lunarpages.co.uk + + + host + tremendesk.com + + + host + *.tremendesk.com + + + + + AddBooks.se + + ruleset + + name + AddBooks.se + platform + mixedcontent + rule + + + from + ^http://www\.addbooks\.se/ + to + https://www.addbooks.se/ + + + from + ^http://addbooks\.se/ + to + https://addbooks.se/ + + + target + + + host + www.addbooks.se + + + host + addbooks.se + + + + + AddThis (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?addthis\.com/(?!bookmark\.php|blog(?:$|\?|/)|download/|images/|(?:get(?:/just-analytics|/sharing|/trending)?|landing|login|press|register)(?:$|\?)) + + name + AddThis (partial) + rule + + + from + ^http://(www\.)?addthis\.com/get($|\?) + to + https://$1addthis.com/get/sharing$2 + + + from + ^http://((?:api|cache|cf|ct\d|ds|m|s[3579u]|secure|www)\.)?addthis\.com/ + to + https://$1addthis.com/ + + + from + ^http://cache\.addthiscdn\.com/ + to + https://cache.addthiscdn.com/ + + + securecookie + + host + ^\.addthis.com$ + name + ^(?:__atuvc|di|uid|xtc)$ + + target + + + host + addthis.com + + + host + *.addthis.com + + + host + cache.addthiscdn.com + + + + + AddThisedge.com + + ruleset + + name + AddThisedge.com + rule + + from + ^http://m\.addthisedge\.com/ + to + https://m.addthisedge.com/ + + target + + host + m.addthisedge.com + + + + AddToAny + + ruleset + + name + AddToAny + rule + + from + ^http://(static\.|www\.)?addtoany\.com/ + to + https://$1addtoany.com/ + + securecookie + + host + ^(?:\.static)?\.addtoany\.com$ + name + .+ + + target + + + host + addtoany.com + + + host + *.addtoany.com + + + + + Addictech + + ruleset + + name + Addictech + rule + + + from + ^http://(www\.)?addictech\.com/ + to + https://www.addictech.com/ + + + from + ^http://assets\.musicwindow\.com/public/ + to + https://www.addictech.com/shared/assetlink.php?file=public/ + + + target + + + host + addictech.com + + + host + www.addictech.com + + + host + assets.musicwindow.com + + + + + Addiction Help + + ruleset + + name + Addiction Help + rule + + from + ^https?://(?:www\.)?addictionhelpchat\.com/ + to + https://addictionhelpchat.com/ + + securecookie + + host + ^addictionhelpchat\.com$ + name + .+ + + target + + + host + addictionhelpchat.com + + + host + www.addictionhelpchat.com + + + + + Addison Lee + + ruleset + + name + Addison Lee + rule + + + from + ^https?://addisonlee\.com/ + to + https://www.addisonlee.com/ + + + from + ^http://([^/:@]+)?\.addisonlee\.com/ + to + https://$1.addisonlee.com/ + + + securecookie + + host + ^(.*\.)?addisonlee\.com$ + name + .+ + + target + + + host + addisonlee.com + + + host + *.addisonlee.com + + + + + Addison.com.hk (partial) + + ruleset + + name + Addison.com.hk (partial) + rule + + from + ^http://(www\.)?addison\.com\.hk/(?=(?:contact_us|what_we_do)(?:$|[?/])|favicon\.ico|images/|libraries/|media/|templates/|wp-content/|wp-includes/) + to + https://$1addison.com.hk/ + + target + + + host + addison.com.hk + + + host + www.addison.com.hk + + + + + Adecco Way to Work + + ruleset + + name + Adecco Way to Work + rule + + from + ^http://(www\.)?adeccowaytowork\.com/ + to + https://$1adeccowaytowork.com/ + + target + + + host + adeccowaytowork.com + + + host + www.adeccowaytowork.com + + + + + Adelaide.edu.au (partial) + + ruleset + + name + Adelaide.edu.au (partial) + rule + + from + ^http://((?:apps|auth|cas-prd\.auth|blogs|global|international|login|m|myuni|orbit|password|shop|unified|www)\.)?adelaide\.edu\.au/ + to + https://$1adelaide.edu.au/ + + securecookie + + host + ^(?:apps|blogs|myuni|orbit|shop)\.adelaide\.edu\.au$ + name + .+ + + target + + + host + adelaide.edu.au + + + host + *.adelaide.edu.au + + + + + Adestra (partial) + + ruleset + + name + Adestra (partial) + rule + + + from + ^http://new\.adestra\.com/ + to + https://new.adestra.com/ + + + from + ^http://cup\.msgfocus\.com/ + to + https://cup.msgfocus.com/ + + + target + + + host + new.adestra.com + + + host + cup.msgfocus.com + + + + + Adform + + ruleset + + name + Adform + rule + + + from + ^http://(?:www\.)?adform\.com/ + to + https://www.adform.com/ + + + from + ^http://(a1|asia|cp|files|s1|s2|server|track|us)\.adform\.net/ + to + https://$1.adform.net/ + + + from + ^http://s(1|2|erver)\.adformdsp\.net/ + to + https://s$1.adformdsp.net/ + + + securecookie + + + host + ^www\.adform\.com$ + name + .+ + + + host + ^\.adform\.net$ + name + .+ + + + host + ^track\.adform\.net$ + name + .+ + + + host + ^\.adformdsp\.net$ + name + .+ + + + host + ^server\.adformdsp\.net$ + name + .+ + + + target + + + host + adform.com + + + host + www.adform.com + + + host + *.adform.net + + + host + *.adformdsp.net + + + + + Adgenie.co.uk (partial) + + ruleset + + name + Adgenie.co.uk (partial) + rule + + from + ^http://adverts\.adgenie\.co\.uk/ + to + https://adverts.adgenie.co.uk/ + + target + + host + adverts.adgenie.co.uk + + + + Adicio.com (partial) + + ruleset + + name + Adicio.com (partial) + rule + + from + ^http://sitemanager2\.adicio\.com/ + to + https://sitemanager2.adicio.com/ + + securecookie + + host + ^sitemanager2\.adicio\.com$ + name + .+ + + target + + host + sitemanager2.adicio.com + + + + Adify + + ruleset + + name + Adify + rule + + from + ^http://ad\.afy11\.net/ + to + https://ad.afy11.net/ + + target + + host + ad.afy11.net + + + + Adium.im + + ruleset + + name + Adium.im + rule + + from + ^http://((?:forum|trac|www)\.)?adium\.im/ + to + https://$1adium.im/ + + securecookie + + host + ^trac\.adium\.im$ + name + .+ + + target + + + host + adium.im + + + host + *.adium.im + + + + + Adknowledge (partial) + + ruleset + + name + Adknowledge (partial) + rule + + + from + ^http://advertiser\.adknowledge\.com/ + to + https://advertiser.adknowledge.com/ + + + from + ^http://(tracker\.|www\.)?bidsystem\.com/ + to + https://$1bidsystem.com/ + + + securecookie + + + host + ^advertiser\.adknowledge\.com$ + name + .+ + + + host + ^(?:www\.)?bidsystem\.com$ + name + .+ + + + target + + + host + advertiser.adknowledge.com + + + host + bidsystem.com + + + host + *.bidsystem.com + + + + + Adkontekst.pl (partial) + + ruleset + + name + Adkontekst.pl (partial) + rule + + from + ^http://((?:www\.)?adsearch|wydawcy\.panel)\.adkontekst\.pl/ + to + https://$1.adkontekst.pl/ + + securecookie + + host + ^wydawcy\.panel\.adkontekst\.pl$ + name + .+ + + target + + host + *.adkontekst.pl + + + + Adlibris/Capris + + ruleset + + name + Adlibris/Capris + platform + mixedcontent + rule + + from + ^http://(?:www\.)?(adlibris\.com|capris\.no)/ + to + https://www.$1/ + + target + + + host + www.adlibris.com + + + host + adlibris.com + + + host + www.capris.no + + + host + capris.no + + + + + Admatic + + ruleset + + name + Admatic + rule + + from + ^http://(www\.)?admatic\.com\.br/ + to + https://$1admatic.com.br/ + + securecookie + + host + ^\.admatic\.com\.br$ + name + .+ + + target + + + host + admatic.com.br + + + host + *.admatic.com.br + + + + + Admeld + + ruleset + + name + Admeld + rule + + + from + ^http://(?:www\.)?admeld\.com/images/interface/masthead_bk\.jpg$ + to + https://portal.admeld.com/images/bg.jpg + + + from + ^http://portal\.admeld\.com/ + to + https://portal.admeld.com/ + + + securecookie + + host + ^portal\.admeld\.com$ + name + .+ + + target + + + host + admeld.com + + + host + *.admeld.com + + + + + Admeta Aktiebolag (partial) + + ruleset + + name + Admeta Aktiebolag (partial) + rule + + from + ^http://(www\.)?atemda\.com/ + to + https://$1atemda.com/ + + securecookie + + host + ^\.atemda\.com$ + name + .* + + target + + + host + atemda.com + + + host + *.atemda.com + + + + + Admized + + ruleset + + name + Admized + rule + + from + ^http://ads\.admized\.com/ + to + https://ads.admized.com/ + + target + + host + *.admized.com + + + + Adnet (partial) + + ruleset + + name + Adnet (partial) + rule + + from + ^http://cdn\.adnet-media\.net/ + to + https://cdn.adnet-media.net/ + + target + + host + cdn.adnet-media.net + + + + Adobe + + ruleset + + exclusion + + + pattern + ^http://blogs\.adobe\.com/webplatform(?:$|[?/]) + + + pattern + ^http://forums\.adobe\.com/+(?!\d\.\d\.\d/(?:images/|resources/|styles/|themes/)|favicon\.ico|people/[\w.]+/avatar/|plugins/|styles/|themes?/) + + + pattern + ^http://fpdownload\.adobe\.com/(?:pub/swz/)?crossdomain\.xml$ + + + name + Adobe + rule + + + from + ^http://adobe\.com/ + to + https://www.adobe.com/ + + + from + ^http://((?:entitlement|sp)\.auth|blogs|bugbase|community|cookbooks|(?:\w\w\.)?creative|edexchange|cem\.events|forums|fpdownload|get3?|helpx|images-tv|kuler|max|adobeid-na1\.services|sstats|store1|success|thumbnails-tv|tv|verify|www|wwwimages2)\.adobe\.com/ + to + https://$1.adobe.com/ + + + from + ^http://get2\.adobe\.com/ + to + https://get.adobe.com/ + + + from + ^http://ns\.adobe\.com/$ + to + https://www.adobe.com/ + + + from + ^http://ns\.adobe\.com/xap/ + to + https://www.adobe.com/products/xmp/ + + + from + ^http://stats\.adobe\.com/ + to + https://mxmacromedia.d1.sc.omtrdc.net/ + + + from + ^http://thumbnails\.tv\.adobe\.com/ + to + https://a248.e.akamai.net/f/1355/4224/3m/thumbnails.tv.adobe.com/ + + + from + ^http://wwwimages\.adobe\.com/ + to + https://a248.e.akamai.net/f/1953/8974/2h/wwwimages.adobe.com/ + + + from + ^http://(?:www\.)?macromedia\.com/ + to + https://www.macromedia.com/ + + + from + ^http://(fp)?download\.macromedia\.com/ + to + https://$1download.macromedia.com/ + + + securecookie + + host + .*\.adobe\.com$ + name + .+ + + target + + + host + adobe.com + + + host + *.adobe.com + + + host + macromedia.com + + + host + *.macromedia.com + + + + + Adobe Connect + + ruleset + + name + Adobe Connect + rule + + + from + ^http://(?:www\.)?adobeconnect\.com/[^?]*(?=$|\?) + to + https://www.adobe.com/products/adobeconnect.html + + + from + ^http://events-(emea\d+|na\d+)\.adobeconnect\.com/ + to + https://events-$1.adobeconnect.com/ + + + target + + + host + adobeconnect.com + + + host + *.adobeconnect.com + + + + + Adobe Digital Marketing + + ruleset + + name + Adobe Digital Marketing + rule + + + from + ^http://([^/:@\.]+)(\.1[12]2|\.sbx1)?\.2o7\.net/ + to + https://$1$2.2o7.net/ + + + from + ^http://bank\.demdex\.com/ + to + https://bank.demdex.com/ + + + from + ^http://cdn\.demdex\.net/ + to + https://a248.e.akamai.net/demdex.download.akamai.com/ + + + from + ^http://([\w-]+)\.demdex\.net/ + to + https://$1.demdex.net/ + + + from + ^http://(?:www\.)?omniture\.com/ + to + https://www.omniture.com/ + + + from + ^http://(assets|my|publish|sc-css-1|scripts|searchandpromote|(?:admin\.)?testandtarget|style)\.omniture\.com/ + to + https://$1.omniture.com/ + + + from + ^http://(?:www\.)?omniture-static\.com/ + to + https://www.omniture-static.com/ + + + from + ^http://(\w+)\.(d[12]\.sc|tt)\.omtrdc\.net/ + to + https://$1.$2.omtrdc.net/ + + + from + ^http://worldsecuresystems\.com/ + to + https://worldsecuresystems.com/ + + + securecookie + + + host + ^(?:.*\.)?2o7\.net$ + name + .+ + + + host + .*\.demdex\.(?:com|net)$ + name + .+ + + + host + ^(?:.*\.)?om(?:niture\.com|trdc\.net)$ + name + .+ + + + host + ^(?:.*\.)?worldsecuresystems\.com$ + name + .+ + + + target + + + host + *.2o7.net + + + host + *.demdex.com + + + host + *.demdex.net + + + host + omniture.com + + + host + *.omniture.com + + + host + omniture-static.com + + + host + www.omniture-static.com + + + host + *.omtrdc.net + + + host + worldsecuresystems.com + + + host + *.worldsecuresystems.com + + + + + Adobe login.com + + ruleset + + name + Adobe login.com + rule + + + from + ^http://(?:www\.)?adobelogin\.com/+ + to + https://www.adobe.com/ + + + from + ^http://ims-na1\.adobelogin\.com/ + to + https://ims-na1.adobelogin.com/ + + + securecookie + + host + ^ims-na1\.adobelogin\.com$ + name + .+ + + target + + + host + adobelogin.com + + + host + *.adobelogin.com + + + + + Adobe.com (false MCB) + + ruleset + + name + Adobe.com (false MCB) + platform + mixedcontent + rule + + from + ^http://forums\.adobe\.com/ + to + https://forums.adobe.com/ + + target + + host + forums.adobe.com + + + + Adobetag.com + + ruleset + + name + Adobetag.com + rule + + from + ^http://www\.adobetag\.com/ + to + https://www.adobetag.com/ + + securecookie + + host + ^www\.adobetag\.com$ + name + .+ + + target + + host + www.adobetag.com + + + + Adometry (partial) + + ruleset + + name + Adometry (partial) + rule + + + from + ^http://attribute\.adometry\.com/ + to + https://attribute.adometry.com/ + + + from + ^http://(js|log)\.dmtry\.com/ + to + https://$1.dmtry.com/ + + + target + + + host + attribute.adometry.com + + + host + *.dmtry.com + + + + + Adoyacademy.se + + ruleset + + name + Adoyacademy.se + rule + + + from + ^http://www\.adoyacademy\.se/ + to + https://adoyacademy.se/ + + + from + ^http://adoyacademy\.se/ + to + https://adoyacademy.se/ + + + target + + + host + www.adoyacademy.se + + + host + adoyacademy.se + + + + + Adpay.com (partial) + + ruleset + + exclusion + + + pattern + ^http://secure\.adpay\.com/(?!ajaxpro/|[bB]randing/|favicon\.ico|[iI]mages/|Includes/|RadControls/|WebResource\.axd) + + + pattern + ^http://staging\.adpay\.com//searchresults\.aspx + + + name + Adpay.com (partial) + rule + + from + ^http://s(ecure|taging)\.adpay\.com/ + to + https://s$1.adpay.com/ + + securecookie + + host + ^\.adpay\.com$ + name + ^adpay$ + + target + + host + *.adpay.com + + + + Adperio.com + + ruleset + + name + Adperio.com + rule + + from + ^http://(www\.)?adperio\.com/ + to + https://$1adperio.com/ + + securecookie + + host + ^(?:www\.)?adperio\.com$ + name + .+ + + target + + + host + adperio.com + + + host + www.adperio.com + + + + + Adscend Media + + ruleset + + name + Adscend Media + platform + mixedcontent + rule + + from + ^http://(www\.)?adscendmedia\.com/ + to + https://$1adscendmedia.com/ + + securecookie + + host + ^adscendmedia\.com$ + name + .* + + target + + + host + adscendmedia.com + + + host + www.adscendmedia.com + + + + + Adseekmedia.com + + ruleset + + name + Adseekmedia.com + rule + + from + ^http://delivery\.adseekmedia\.com/ + to + https://delivery.adseekmedia.com/ + + target + + host + *.adseekmedia.com + + + + Adsimilis + + ruleset + + name + Adsimilis + platform + mixedcontent + rule + + from + ^http://(www\.)?adsimilis\.com/ + to + https://$1adsimilis.com/ + + securecookie + + host + ^(.*\.)?adsimilis\.com$ + name + .* + + target + + + host + adsimilis.com + + + host + *.adsimilis.com + + + + + Adtech.de (partial) + + ruleset + + exclusion + + pattern + http://(?:adserver\.)?adtech\.de/(?:\?adrawdata/|crossdomain\.xml) + + name + Adtech.de (partial) + rule + + + from + ^http://(adserver(?:ams|-sb-fra)?|aka-cdn|secserv|ums)\.adtech\.de/ + to + https://$1.adtech.de/ + + + from + ^http://aka-cdn-ns\.adtech\.de/ + to + https://aka-cdn.adtech.de/ + + + from + ^http://ad\.dc2\.adtech\.de/ + to + https://adserver.adtech.de/ + + + securecookie + + host + ^\.adtech\.de + name + .+ + + target + + host + *.adtech.de + + + + Adtechus.com (partial) + + ruleset + + name + Adtechus.com (partial) + rule + + + from + ^http://(adserver(?:ec|wc)?|glb|(?:helios)?iq|ums)\.adtechus\.com/ + to + https://$1.adtechus.com/ + + + from + ^http://aka-cdn-ns\.adtechus\.com/ + to + https://aka-cdn.adtechus.com/ + + + from + ^http://ad\.us-ec\.adserverus\.com/ + to + https://adserverec.adserverus.com/ + + + securecookie + + host + .*\.adtechus\.com$ + name + .+ + + target + + host + *.adtechus.com + + + + Adult Ad World (partial) + + ruleset + + name + Adult Ad World (partial) + rule + + from + ^https://(?:newt[27]|hippo)\.adultadworld\.com/ + to + https://hippo.adultadworld.com/ + + target + + host + *.adultadworld.com + + + + Adult FriendFinder (partial) + + ruleset + + name + Adult FriendFinder (partial) + rule + + + from + ^https?://graphics\.adultfriendfinder\.com/ + to + https://secureimage.securedataimages.com/ + + + from + ^https?://(?:(?:banners|secure|www)\.)?adultfriendfinder\.com/ + to + https://secure.adultfriendfinder.com/ + + + target + + + host + adultfriendfinder.com + + + host + *.adultfriendfinder.com + + + + + Adult Swim + + ruleset + + name + Adult Swim + rule + + from + ^http://(www\.)?adultswim\.com/ + to + https://www.adultswim.com/ + + target + + + host + www.adultswim.com + + + host + adultswim.com + + + + + Adult Toys 4 U.com + + ruleset + + name + Adult Toys 4 U.com + rule + + from + ^http://(www\.)?adulttoys4u\.com\.au/ + to + https://$1adulttoys4u.com.au/ + + securecookie + + host + ^\.www\.adulttoys4u\.com\.au$ + name + .+ + + target + + + host + adulttoys4u.com.au + + + host + *.adulttoys4u.com.au + + + + + Advance Digital (partial) + + ruleset + + name + Advance Digital (partial) + rule + + from + ^http://blog\.advance\.net/ + to + https://blog.advance.net/ + + target + + host + blog.advance.net + + + + Advanced Micro Devices (partial) + + ruleset + + name + Advanced Micro Devices (partial) + rule + + + from + ^http://(?:support|www)\.amd\.com/(?:PublishingImages/Restricted/Graphic/HighResolutionJPEG/(www_background\.jpg)|Style%20Library/Images/AMD/((?:amd_logo|main(?:_content_bottom|content_top)|mast_head)\.png|spacer\.gif)) + to + https://sso.amd.com/Registration/Images/$1$2 + + + from + ^http://metrics\.amd\.com/ + to + https://amdvglobal.122.2o7.net/ + + + from + ^http://s(ecure|so)\.amd\.com/ + to + https://s$1.amd.com/ + + + from + ^http://support\.amd\.com/Style%20Library/Images/AMD/AMD_logo\.png + to + https://sso.amd.com/Registration/Images/amd_logo.png + + + securecookie + + host + ^s(?:ecure|so)\.amd\.com$ + name + .+ + + target + + host + *.amd.com + + + + Advantage + + ruleset + + name + Advantage + rule + + + from + ^http://(www\.)?advantageseoservices\.com/ + to + https://$1advantageseoservices.com/ + + + from + ^https?://(?:www\.)?discountclick\.com/ + to + https://www.advantageseoservices.com/ + + + from + ^http://click\.discountclick\.com/ + to + https://click.discountclick.com/ + + + securecookie + + host + ^click\.discountclick\.com$ + name + .+ + + target + + + host + advantageseoservices.com + + + host + www.advantageseoservices.com + + + host + discountclick.com + + + host + *.discountclick.com + + + + + Advantage Business Media + + ruleset + + name + Advantage Business Media + rule + + from + ^http://(www\.)?advantagemedia\.com/ + to + https://$1advantagemedia.com/ + + target + + + host + advantagemedia.com + + + host + www.advantagemedia.com + + + + + Advert Stream (partial) + + ruleset + + name + Advert Stream (partial) + rule + + from + ^http://(a?d|adaccess)\.advertstream\.com/ + to + https://$1.advertstream.com/ + + securecookie + + host + ^\.adaccess\.advertstream\.com$ + name + .+ + + target + + host + *.advertstream.com + + + + AdvertServe.com + + ruleset + + name + AdvertServe.com + rule + + + from + ^http://(?:secure\.|www\.)?advertserve\.com/ + to + https://secure.advertserve.com/ + + + from + ^http://tradefx\.advertserve\.com/ + to + https://tradefx.advertserve.com/ + + + securecookie + + host + ^tradefx\.advertserve\.com$ + name + .+ + + target + + + host + advertserve.com + + + host + *.advertserve.com + + + + + Adverticum + + ruleset + + name + Adverticum + rule + + from + ^http://([^@:/]*)\.adverticum\.net/ + to + https://$1.adverticum.net/ + + target + + host + *.adverticum.net + + + + Advertise.com (partial) + + ruleset + + name + Advertise.com (partial) + rule + + + from + ^https?://ad\.advertise\.com/ + to + https://ad.rmxads.com/ + + + from + ^http://admin\.advertise\.com/ + to + https://admin.advertise.com/ + + + securecookie + + host + ^admin\.advertise\.com$ + name + .+ + + target + + host + *.advertise.com + + + + Advertising.com (partial) + + ruleset + + name + Advertising.com (partial) + rule + + + from + ^https?://(?:[\w-]+\.)?ace\.advertising\.com/ + to + https://secure.ace.advertising.com/ + + + from + ^https?://(?:secure\.)?(ace-tag|leadback|uac)\.advertising\.com/ + to + https://secure.$1.advertising.com/ + + + from + ^http://servedby\.advertising\.com/ + to + https://servedby.advertising.com/ + + + securecookie + + host + ^\.advertising\.com$ + name + .+ + + target + + host + *.advertising.com + + + + Adverts.ie + + ruleset + + name + Adverts.ie + rule + + from + ^http://(c\d\.|www\.)?adverts\.ie/ + to + https://$1adverts.ie/ + + securecookie + + host + ^www\.adverts\.ie$ + name + .+ + + target + + + host + adverts.ie + + + host + *.adverts.ie + + + + + Adviceguide (partial) + + ruleset + + name + Adviceguide (partial) + rule + + from + ^http://(?:www\.)?(?:adviceguide\.org|consumerdirect\.gov)\.uk/ + to + https://www.adviceguide.org.uk/ + + target + + + host + adviceguide.org.uk + + + host + www.adviceguide.org.uk + + + host + consumerdirect.gov.uk + + + host + www.consumerdirect.gov.uk + + + + + Advocates for Youth (partial) + + ruleset + + name + Advocates for Youth (partial) + rule + + from + ^http://s(ecure|hop)\.advocatesforyouth\.org/ + to + https://s$1.advocatesforyouth.org/ + + securecookie + + host + ^\.?s(?:ecure|hop)\.advocatesforyouth\.org$ + name + .+ + + target + + host + *.advocatesforyouth.org + + + + Ady Advantage.com (false MCB) + + ruleset + + name + Ady Advantage.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?adyadvantage\.com/ + to + https://$1adyadvantage.com/ + + securecookie + + host + ^(?:w*\.)?adyadvantage\.com$ + name + .+ + + target + + + host + adyadvantage.com + + + host + *.adyadvantage.com + + + + + Ady Advantage.com (partial) + + ruleset + + name + Ady Advantage.com (partial) + rule + + from + ^http://(www\.)?adyadvantage\.com/(?=favicon\.ico|sites/|wp-content/|wp-includes/)/ + to + https://$1adyadvantage.com/ + + target + + + host + adyadvantage.com + + + host + www.adyadvantage.com + + + + + Adzerk (partial) + + ruleset + + name + Adzerk (partial) + rule + + + from + ^http://help\.adzerk\.com/images/ + to + https://billing.helpjuice.com/images/ + + + from + ^http://static\.adzerk\.(?:com|net)/ + to + https://d36aw3ue2ntmsq.cloudfront.net/ + + + from + ^http://(engine|secure)\.adzerk\.net/ + to + https://$1.adzerk.net/ + + + securecookie + + host + ^engine\.adzerk\.net$ + name + .+ + + target + + + host + *.adzerk.com + + + host + *.adzerk.net + + + + + Aea.se + + ruleset + + name + Aea.se + platform + mixedcontent + rule + + + from + ^http://www\.aea\.se/ + to + https://www.aea.se/ + + + from + ^http://aea\.se/ + to + https://aea.se/ + + + target + + + host + www.aea.se + + + host + aea.se + + + + + Aeolus + + ruleset + + name + Aeolus + rule + + from + ^http://(www\.)?aeolusproject\.org/ + to + https://$1aeolusproject.org/ + + target + + + host + aeolusproject.org + + + host + www.aeolusproject.org + + + + + Aera.net + + ruleset + + name + Aera.net + rule + + from + ^http://(www\.)?aera\.at/ + to + https://$1aera.at/ + + securecookie + + host + ^(?:w*\.)?aera\.net$ + name + .+ + + target + + + host + aera.at + + + host + *.aera.at + + + + + Aereo.com (partial) + + ruleset + + name + Aereo.com (partial) + rule + + + from + ^http://(www\.)?aereo\.com/ + to + https://$1aereo.com/ + + + from + ^http://support\.aereo\.com/favicon\.ico + to + https://d3jyn100am7dxp.cloudfront.net/favicon.ico + + + securecookie + + host + ^\.aereo\.com$ + name + .+ + + target + + + host + aereo.com + + + host + *.aereo.com + + + + + Aeriagames + + ruleset + + name + Aeriagames + rule + + + from + ^http://(?:www\.)?aeriagames\.com/ + to + https://www.aeriagames.com/ + + + from + ^https?://[cs]\.aeriastatic\.com/ + to + https://c.aeriastatic.com/ + + + target + + + host + www.aeriagames.com + + + host + aeriagames.com + + + host + *.aeriastatic.com + + + + + AeroFS (partial) + + ruleset + + name + AeroFS (partial) + rule + + + from + ^http://(blog\.|my\.|www\.)?aerofs\.com/ + to + https://$1aerofs.com/ + + + from + ^https?://support\.aerofs\.com/track\.gif + to + https://aerofs.uservoice.com/track.gif + + + securecookie + + host + ^.+\.aerofs\.com$ + name + .+ + + target + + + host + aerofs.com + + + host + *.aerofs.com + + + + + Aeryon Labs + + ruleset + + name + Aeryon Labs + rule + + from + ^http://(www\.)?aeryon\.com/ + to + https://$1aeryon.com/ + + securecookie + + host + ^(?:www\.)?aeryon\.com$ + name + .+ + + target + + + host + aeryon.com + + + host + www.aeryon.com + + + + + Aesload.de + + ruleset + + name + Aesload.de + rule + + from + ^http://(www\.)?aesload\.de/ + to + https://www.aesload.de/ + + target + + + host + aesload.de + + + host + www.aesload.de + + + + + Aether Flyff.com (false MCB) + + ruleset + + exclusion + + + pattern + ^http://basilisk\.aetherflyff\.com/+(?!forums(?!/favicon\.ico|/index\.php\?app=core&module=task|/public/|/uploads/)) + + + pattern + ^http://support\.aetherflyff\.com/+(?:cron/index\.php\?/Base/|favicon\.ico|index\.php\?/Core/|__swift/) + + + name + Aether Flyff.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(basilisk|support)\.aetherflyff\.com/ + to + https://$1.aetherflyff.com/ + + securecookie + + host + ^(?:\.basilisk|support)?\.aetherflyff\.com$ + name + .+ + + target + + host + *.aetherflyff.com + + + + Aether Flyff.com (partial) + + ruleset + + exclusion + + + pattern + ^http://basilisk\.aetherflyff\.com/+forums(?!/favicon\.ico|/index\.php\?app=core&module=task|/public/|/uploads/) + + + pattern + ^http://support\.aetherflyff\.com/+(?!cron/index\.php\?/Base/|favicon\.ico|index\.php\?/Core/|__swift/) + + + name + Aether Flyff.com (partial) + rule + + from + ^http://((?:basilisk|support|www)\.)?aetherflyff\.com/ + to + https://$1aetherflyff.com/ + + target + + + host + aetherflyff.com + + + host + basilisk.aetherflyff.com + + + host + support.aetherflyff.com + + + host + www.aetherflyff.com + + + + + AffUtd.com + + ruleset + + name + AffUtd.com + rule + + from + ^http://(?:www\.)?affutd\.com/ + to + https://www.affutd.com/ + + securecookie + + host + ^www\.affutd\.com$ + name + .* + + target + + + host + affutd.com + + + host + www.affutd.com + + + + + Affair-Guide.com (false MCB) + + ruleset + + name + Affair-Guide.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?affair-guide\.com/ + to + https://$1affair-guide.com/ + + securecookie + + host + ^\.?affair-guide\.com$ + name + .+ + + target + + + host + affair-guide.com + + + host + *.affair-guide.com + + + + + Affair-Guide.com (partial) + + ruleset + + name + Affair-Guide.com (partial) + rule + + from + ^http://(www\.)?affair-guide\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1affair-guide.com/ + + target + + + host + affair-guide.com + + + host + www.affair-guide.com + + + + + Affec.tv (partial) + + ruleset + + name + Affec.tv (partial) + rule + + from + ^http://go\.affec\.tv/ + to + https://go.affec.tv/ + + securecookie + + host + ^\.go\.affec\.tv$ + name + .+ + + target + + host + *.affec.tv + + + + Affiliate-B.com + + ruleset + + name + Affiliate-B.com + rule + + + from + ^http://(?:www\.)?affiliate-b\.com/ + to + https://www.affiliate-b.com/ + + + from + ^http://track\.affiliate-b\.com/ + to + https://track.affiliate-b.com/ + + + target + + + host + affiliate-b.com + + + host + *.affiliate-b.com + + + + + AffiliateTracking.com + + ruleset + + name + AffiliateTracking.com + rule + + from + ^http://(?:www\.)?affiliatetracking\.com/ + to + https://affiliatetracking.com/ + + securecookie + + host + ^\.affiliatetracking\.com$ + name + .+ + + target + + + host + affiliatetracking.com + + + host + *.affiliatetracking.com + + + + + Afford.com + + ruleset + + name + Afford.com + rule + + + from + ^http://borrowsmart\.afford\.com/ + to + https://borrowsmart.afford.com/ + + + from + ^http://(www\.)?afford\.com/ + to + https://www.afford.com/ + + + securecookie + + host + (^|\.)afford\.com$ + name + .+ + + target + + + host + afford.com + + + host + borrowsmart.afford.com + + + host + www.afford.com + + + + + Afilias + + ruleset + + name + Afilias + rule + + from + ^http://(www\.)?afilias\.info/ + to + https://$1afilias.info/ + + securecookie + + host + ^\.afilias\.info$ + name + .+ + + target + + + host + afilias.info + + + host + *.afilias.info + + + + + African Grey Parrot Centre + + ruleset + + name + African Grey Parrot Centre + rule + + from + ^http://(www\.)?africangreyparrotcentre\.co\.uk/ + to + https://$1africangreyparrotcentre.co.uk/ + + securecookie + + host + ^(?:www)?\.africangreyparrotcentre\.co\.uk$ + name + .+ + + target + + + host + africangreyparrotcentre.co.uk + + + host + *.africangreyparrotcentre.co.uk + + + + + African Network Information Center + + ruleset + + name + African Network Information Center + platform + mixedcontent + rule + + from + ^http://((?:meeting|my|www2?)\.)?afrinic\.net/ + to + https://$1afrinic.net/ + + securecookie + + host + ^(.*\.)?afrinic\.net$ + name + .* + + target + + + host + afrinic.net + + + host + *.afrinic.net + + + host + *.meeting.afrinic.net + + + + + Aftenposten + + ruleset + + name + Aftenposten + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?aftenposten\.no/ + to + https://www.aftenposten.no/ + + + from + ^http://(a|kundeweb|onlinesos)\.aftenposten\.no/ + to + https://$1.aftenposten.no/ + + + from + ^http://kundeservice\.aftenposten\.no/(\?.*)?$ + to + https://a.aftenposten.no/kundeservice/$1 + + + from + ^http://ap\.mnocdn\.no/ + to + https://www.aftenposten.no/ + + + securecookie + + host + ^(?:a|kundeweb|onlinesos)\.aftenposten\.no$ + name + .+ + + target + + + host + *.aftenposten.no + + + host + aftenposten.no + + + host + ap.mnocdn.no + + + + + AfterShip.com + + ruleset + + name + AfterShip.com + rule + + from + ^http://(www\.)?aftership\.com/ + to + https://$1aftership.com/ + + securecookie + + host + ^www\.aftership\.com$ + name + .+ + + target + + + host + aftership.com + + + host + www.aftership.com + + + + + Afton Trial Run + + ruleset + + name + Afton Trial Run + rule + + from + ^http://(www\.)?aftontrailrun\.com/ + to + https://$1aftontrailrun.com/ + + securecookie + + host + ^(?:www\.)?aftontrailrun\.com$ + name + .+ + + target + + + host + aftontrailrun.com + + + host + www.aftontrailrun.com + + + + + Aftonbladet + + ruleset + + name + Aftonbladet + rule + + + from + ^http://(?:(?:www\.)?aftonbladet|gfx2?\.aftonbladet-cdn)\.se/ + to + https://www.aftonbladet.se/ + + + from + ^http://(ads|login|smetrics)\.aftonbladet\.se/ + to + https://$1.aftonbladet.se/ + + + securecookie + + host + ^(?:ads|\.smetrics)?\.aftonbladet\.se$ + name + .+ + + target + + + host + aftonbladet.se + + + host + *.aftonbladet.se + + + host + *.aftonbladet-cdn.se + + + + + Agari + + ruleset + + name + Agari + rule + + + from + ^http://(app\.|www\.)?agari\.com/ + to + https://$1agari.com/ + + + from + ^http://dev\.agari\.com/wp-content/ + to + https://agari.com/wp-content/ + + + securecookie + + host + ^(?:w*\.)?agari\.com$ + name + .+ + + target + + + host + agari.com + + + host + *.agari.com + + + + + Age of Mine.com + + ruleset + + name + Age of Mine.com + rule + + from + ^http://(www\.)?ageofmine\.com/ + to + https://$1ageofmine.com/ + + securecookie + + host + ^\.ageofmine\.com$ + name + .+ + + target + + + host + ageofmine.com + + + host + *.ageofmine.com + + + + + Agendaless.com + + ruleset + + name + Agendaless.com + rule + + from + ^http://(?:www\.)?agendaless\.com/ + to + https://agendaless.com/ + + target + + + host + agendaless.com + + + host + www.agendaless.com + + + + + Aggregate Knowledge + + ruleset + + name + Aggregate Knowledge + rule + + + from + ^http://((?:dashboard|data|images|ui|www)\.)?aggregateknowledge\.com/ + to + https://$1aggregateknowledge.com/ + + + from + ^http://content\.aggregateknowledge\.com/ + to + https://d37f3s04rhujtb.cloudfront.net/ + + + from + ^http://(?:creative|www-stage)\.aggregateknowledge\.com/ + to + https://www.aggregateknowledge.com/ + + + from + ^http://ticket\.aggregateknowledge\.com/ + to + https://marketplace.atlassian.com/ + + + from + ^http://d\.agkn\.com/ + to + https://d.agkn.com/ + + + securecookie + + host + ^\.agkn\.com$ + name + .+ + + target + + + host + aggregateknowledge.com + + + host + *.aggregateknowledge.com + + + host + *.agkn.com + + + + + AgileBits (partial) + + ruleset + + name + AgileBits (partial) + rule + + + from + ^https?://(?:www\.)?agilewebsolutions\.com/ + to + https://agilebits.com/ + + + from + ^http://(discussions\.|www\.)?agilebits\.com/ + to + https://$1agilebits.com/ + + + from + ^https?://(?:blog\.agilebits|tooagile\.wpengine\.netdna-cdn)\.com/ + to + https://tooagile.wpengine.com/ + + + securecookie + + host + ^agilebits\.com$ + name + .* + + target + + + host + agilebits.com + + + host + *.agilebits.com + + + host + agilewebsolutions.com + + + host + www.agilewebsolutions.com + + + host + tooagile.wpengine.com.netdna-cdn.com + + + + + Agnitum + + ruleset + + name + Agnitum + rule + + + from + ^http://www\.agnitum\.com/ + to + https://www.agnitum.com/ + + + from + ^http://agnitum\.com/ + to + https://www.agnitum.com/ + + + target + + + host + agnitum.com + + + host + www.agnitum.com + + + + + Agri Supply.com (partial) + + ruleset + + name + Agri Supply.com (partial) + rule + + from + ^http://(?:www\.)?agrisupply\.com/((?:editaccount|signin)\.aspx|favicon\.ico|images/|Java[sS]cript/|Styles/) + to + https://www.agrisupply.com/$1 + + target + + + host + agrisupply.com + + + host + www.agrisupply.com + + + + + Agwa.name + + ruleset + + name + Agwa.name + rule + + from + ^http://(www\.)?agwa\.name/ + to + https://$1agwa.name/ + + target + + + host + agwa.name + + + host + www.agwa.name + + + + + Ahnlab + + ruleset + + name + Ahnlab + platform + mixedcontent + rule + + + from + ^http://global\.ahnlab\.com/ + to + https://global.ahnlab.com/ + + + from + ^http://image\.ahnlab\.com/ + to + https://image.ahnlab.com/ + + + target + + + host + image.ahnlab.com + + + host + global.ahnlab.com + + + + + Aim4Media.com (partial) + + ruleset + + name + Aim4Media.com (partial) + rule + + from + ^http://ad\.aim4media\.com/ + to + https://ad.yieldmanager.com/ + + target + + host + ad.aim4media.com + + + + Air Canada Pilot's Association (partial) + + ruleset + + name + Air Canada Pilot's Association (partial) + rule + + + from + ^http://(?:www\.)?acpa\.ca/(client_asset/|multimedia/) + to + https://secure.acpa.ca/$1/ + + + from + ^http://secure\.acpa\.ca/ + to + https://secure.acpa.ca/ + + + target + + + host + acpa.ca + + + host + secure.acpa.ca + + + host + www.acpa.ca + + + + + Air VPN + + ruleset + + name + Air VPN + rule + + from + ^http://(www\.)?airvpn\.org/ + to + https://$1airvpn.org/ + + securecookie + + host + ^airvpn\.org$ + name + .* + + target + + + host + airvpn.org + + + host + www.airvpn.org + + + + + Airbnb (partial) + + ruleset + + name + Airbnb (partial) + rule + + + from + ^http://(?:www\.)?airbnb\.(ca|co\.kr|co\.uk|com|com\.au|com\.br|de|es|fr|it|jp|ru)/ + to + https://www.airbnb.$1/ + + + from + ^http://(m\.|www\.)?airbnb\.com/ + to + https://$1airbnb.com/ + + + from + ^http://a(0|1)\.muscache\.com/ + to + https://a$1.muscache.com/ + + + securecookie + + host + ^\.airbnb\.(?:ca|co\.kr|co\.uk|com|com\.au|com\.br|de|es|fr|it|jp|ru)$ + name + .+ + + target + + + host + airbnb.* + + + host + www.airbnb.* + + + host + *.airbnb.ca + + + host + airbnb.co.* + + + host + *.airbnb.co.kr + + + host + *.airbnb.co.uk + + + host + *.airbnb.com + + + host + www.airbnb.com.* + + + host + *.airbnb.com.au + + + host + *.airbnb.com.br + + + host + *.airbnb.de + + + host + *.airbnb.es + + + host + *.airbnb.fr + + + host + *.airbnb.it + + + host + *.airbnb.jp + + + host + *.airbnb.ru + + + host + *.muscache.com + + + + + AirshipVentures + + ruleset + + name + AirshipVentures + rule + + from + ^http://(?:www\.)?airshipventures\.com/ + to + https://www.airshipventures.com/ + + target + + + host + www.airshipventures.com + + + host + airshipventures.com + + + + + AirsoftGI.com + + ruleset + + name + AirsoftGI.com + rule + + from + ^http://(www\.)?airsoftgi\.com/ + to + https://$1airsoftgi.com/ + + securecookie + + host + ^\.airsoftgi\.com$ + name + .+ + + target + + + host + airsoftgi.com + + + host + *.airsoftgi.com + + + + + Airtricity + + ruleset + + name + Airtricity + platform + mixedcontent + rule + + + from + ^http://airtricity\.com/ + to + https://www.airtricity.com/ + + + from + ^http://([^/:@\.]+)\.airtricity\.com/ + to + https://$1.airtricity.com/ + + + target + + + host + www.airtricity.com + + + host + airtricity.com + + + host + *.airtricity.com + + + + + AkademikerFörsäkring.se + + ruleset + + name + AkademikerFörsäkring.se + rule + + from + ^http://(?:www\.)?akademikerf[oö]rs[aä]kring\.se/ + to + https://www.akademikerforsakring.se/ + + target + + + host + akademikerforsakring.se + + + host + www.akademikerforsakring.se + + + host + akademikerförsäkring.se + + + host + www.akademikerförsäkring.se + + + + + AkademiskaHus.se (partial) + + ruleset + + name + AkademiskaHus.se (partial) + rule + + from + ^http://(portal|vpn)\.akademiskahus\.se/ + to + https://$1.akademiskahus.se/ + + securecookie + + host + ^(?:portal|vpn)\.akademiskahus\.se$ + name + .+ + + target + + host + *.akademiskahus.se + + + + Akamai + + ruleset + + exclusion + + + pattern + ^http://[\w-]+-(?:f|i|s|lh|vh)\.akamaihd\.net/ + + + pattern + ^http://zynga\d-a.akamaihd\.net/ + + + pattern + ^http://eaassets-a\.akamaihd\.net/ + + + name + Akamai + rule + + + from + ^http://ak1s\.abmr\.net/ + to + https://ak1s.abmr.net/ + + + from + ^http://a248\.e\.akamai\.net/ + to + https://a248.e.akamai.net/ + + + from + ^http://([^@:/\.]+)\.akamaihd\.net/ + to + https://$1.akamaihd.net/ + + + from + ^http://ak1\.abmr\.net/is/(www.imiclk|pixel\.mathtag)\.com(?=$|\?) + to + https://ak1s.abmr.net/is/$1.com + + + securecookie + + host + .*\.abmr\.net$ + name + .+ + + target + + + host + *.abmr.net + + + host + *.e.akamai.net + + + host + *.akamaihd.net + + + + + Akamai.com (partial) + + ruleset + + name + Akamai.com (partial) + rule + + from + ^http://blogs\.akamai\.com/ + to + https://blogs.akamai.com/ + + target + + host + blogs.akamai.com + + + + Akban.org + + ruleset + + name + Akban.org + rule + + from + ^http://images\.akban\.org/ + to + https://c3198132.ssl.cf0.rackcdn.com/ + + target + + host + images.akban.org + + + + Akira.org + + ruleset + + name + Akira.org + rule + + from + ^http://(www\.)?akira\.org/ + to + https://$1akira.org/ + + target + + + host + akira.org + + + host + www.akira.org + + + + + Akismet + + ruleset + + name + Akismet + rule + + from + ^http://(?:www\.)?akismet\.com/ + to + https://akismet.com/ + + target + + + host + akismet.com + + + host + www.akismet.com + + + + + Aktion-Deutschland-Hilft.de (partial) + + ruleset + + name + Aktion-Deutschland-Hilft.de (partial) + rule + + + from + ^http://(?:www\.)?aktion-deutschland-hilft\.de/(css/|favicon\.ico|fileadmin/|index\.php\?eID=adh_banner|typo3(?:conf|temp)/|uploads/) + to + https://www.aktion-deutschland-hilft.de/$1 + + + from + ^http://media\.aktion-deutschland-hilft\.de/ + to + https://d3c57cw0c70g44.cloudfront.net/ + + + target + + + host + aktion-deutschland-hilft.de + + + host + *.aktion-deutschland-hilft.de + + + + + Aktivix.org + + ruleset + + name + Aktivix.org + rule + + from + ^http://(?:(lists\.|newyear\.)|www\.)?aktivix\.org/ + to + https://$1aktivix.org/ + + target + + + host + aktivix.org + + + host + *.aktivix.org + + + + + Alamy + + ruleset + + name + Alamy + rule + + from + ^http://(secure\.|www\.)?alamy\.com/ + to + https://$1alamy.com/ + + securecookie + + host + ^\.alamy\.com$ + name + .+ + + target + + + host + alamy.com + + + host + *.alamy.com + + + + + Alaska Airlines + + ruleset + + name + Alaska Airlines + platform + mixedcontent + rule + + + from + ^http://alaskaair\.com/ + to + https://www.alaskaair.com/ + + + from + ^http://(careers|easybiz|myeagle|webselfservice|www)\.alaskaair\.com/ + to + https://$1.alaskaair.com/ + + + target + + + host + alaskaair.com + + + host + *.alaskaair.com + + + + + Alastair’s Place + + ruleset + + name + Alastair’s Place + platform + mixedcontent + rule + + from + ^http://(www\.)?alastairs-place\.net/ + to + https://$1alastairs-place.net/ + + target + + + host + alastairs-place.net + + + host + www.alastairs-place.net + + + + + AlbumArsiv.com + + ruleset + + name + AlbumArsiv.com + rule + + from + ^http://(www\.)?albumarsiv\.com/ + to + https://$1albumarsiv.com/ + + securecookie + + host + ^(?:w*\.)?albumarsiv\.com$ + name + .+ + + target + + + host + albumarsiv.com + + + host + *.albumarsiv.com + + + + + Alcatel-Lucent.com (partial) + + ruleset + + exclusion + + pattern + ^http://developer-enterprise.alcatel-lucent.com/(?!api_content(?:$|[?/])|components/|images/|libraries/|media/|modules/|plugins/|templates/|webapp/) + + name + Alcatel-Lucent.com (partial) + rule + + + from + ^http://(?:www\.)?alcatel-lucent\.com/ + to + https://www.alcatel-lucent.com/ + + + from + ^http://conversation-images\.alcatel-lucent\.com/ + to + https://a248.e.akamai.net/f/578/177/3m/conversation-images.alcatel-lucent.com/ + + + from + ^http://corporatereporting\.alcatel-lucent\.com/.* + to + https://www3.alcatel-lucent.com/corporate-portal/corporate-reporting-portal.html + + + from + ^http://(applicationpartner|businessportal|developer-enterprise|service\.esd|market|my-home|(?:services\.)?support|www3)\.alcatel-lucent\.com/ + to + https://$1.alcatel-lucent.com/ + + + from + ^http://www2\.alcatel-lucent\.com/(?:\?.*)?$ + to + https://wwww.alcatel-lucent.com/ + + + from + ^http://(market|services\.support)\.lucent\.com/ + to + https://$1.lucent.com/ + + + securecookie + + host + ^(?:\.?applicationpartner|businessportal|service\.esd|market|www3)\.alcatel-lucent\.com$ + name + .+ + + target + + + host + alcatel-lucent.com + + + host + *.alcatel-lucent.com + + + host + *.lucent.com + + + + + Alcuda (partial) + + ruleset + + name + Alcuda (partial) + rule + + + from + ^http://whitelabeldating\.(?:alcuda|upforitnetworks)\.com/ + to + https://whitelabeldating.upforitnetworks.com/ + + + from + ^http://(?:cdn\.)?wl\.easydategroup\.com/static/ + to + https://www.upforit.com/static/ + + + from + ^http://(?:cdn\.picstat2|upforit)\.com/ + to + https://www.upforit.com/ + + + from + ^http://shagaholic\.com/ + to + https://www.shagaholic.com/ + + + from + ^http://www\.(shagaholic|upforit)\.com/(login\.html|static/) + to + https://www.$1.com/$2 + + + from + ^http://affiliates\.upforitnetworks\.com/ + to + https://affiliates.upforitnetworks.com/ + + + from + ^http://(?:www\.)?xhamster\.biz/static/ + to + https://www.upforit.com/static/ + + + securecookie + + host + ^affiliates\.upforitnetworks\.com$ + name + .* + + target + + + host + whitelabeldating.alcuda.com + + + host + wl.easydategroup.com + + + host + cdn.wl.easydategroup.com + + + host + cdn.picstat2.com + + + host + shagaholic.com + + + host + www.shagaholic.com + + + host + upforit.com + + + host + www.upforit.com + + + host + *.upforitnetworks.com + + + host + xhamster.biz + + + host + www.xhamster.biz + + + + + Aldi + + ruleset + + name + Aldi + rule + + + from + ^http://(?:www\.)?aldisued\.de/ + to + https://www.aldi-sued.de/ + + + from + ^http://([^/:@]*)\.aldisued\.de/ + to + https://$1.aldi-sued.de/ + + + from + ^http://(?:www\.)?aldi-mobile\.ch/ + to + https://www.aldi-mobile.ch/ + + + from + ^http://([^/:@]*)\.aldi-mobile\.ch/ + to + https://$1.aldi-mobile.ch/ + + + from + ^http://(?:www\.)?aldi-nord\.de/ + to + https://www.aldi-nord.de/ + + + from + ^http://([^/:@]*)\.aldi-nord\.de/ + to + https://$1.aldi-nord.de/ + + + from + ^http://(?:www\.)?aldi-sued\.de/ + to + https://www.aldi-sued.de/ + + + from + ^http://([^/:@]*)\.aldi-sued\.de/ + to + https://$1.aldi-sued.de/ + + + from + ^http://(?:www\.)?aldi-suisse\.ch/ + to + https://www.aldi-suisse.ch/ + + + from + ^http://([^/:@]*)\.aldi-suisse\.ch/ + to + https://$1.aldi-suisse.ch/ + + + from + ^http://(?:www\.)?aldi\.be/ + to + https://www.aldi.be/ + + + from + ^http://([^/:@]*)\.aldi\.be/ + to + https://$1.aldi.be/ + + + from + ^http://(?:www\.)?aldi\.co\.uk/ + to + https://www.aldi.co.uk/ + + + from + ^http://([^/:@]*)\.aldi\.co\.uk/ + to + https://$1.aldi.co.uk/ + + + from + ^http://(?:www\.)?aldi\.com\.au/ + to + https://www.aldi.com.au/ + + + from + ^http://([^/:@]*)\.aldi\.com\.au/ + to + https://$1.aldi.com.au/ + + + from + ^http://(?:www\.)?aldi\.dk/ + to + https://www.aldi.dk/ + + + from + ^http://([^/:@]*)\.aldi\.dk/ + to + https://$1.aldi.dk/ + + + from + ^http://(?:www\.)?aldi\.es/ + to + https://www.aldi.es/ + + + from + ^http://([^/:@]*)\.aldi\.es/ + to + https://$1.aldi.es/ + + + from + ^http://(?:www\.)?aldi\.fr/ + to + https://www.aldi.fr/ + + + from + ^http://([^/:@]*)\.aldi\.fr/ + to + https://$1.aldi.fr/ + + + from + ^http://(?:www\.)?aldi\.hu/ + to + https://www.aldi.hu/ + + + from + ^http://([^/:@]*)\.aldi\.hu/ + to + https://$1.aldi.hu/ + + + from + ^http://(?:www\.)?aldi\.ie/ + to + https://www.aldi.ie/ + + + from + ^http://([^/:@]*)\.aldi\.ie/ + to + https://$1.aldi.ie/ + + + from + ^http://(?:www\.)?aldi\.lu/ + to + https://www.aldi.lu/ + + + from + ^http://([^/:@]*)\.aldi\.lu/ + to + https://$1.aldi.lu/ + + + from + ^http://(?:www\.)?aldi\.nl/ + to + https://www.aldi.nl/ + + + from + ^http://([^/:@]*)\.aldi\.nl/ + to + https://$1.aldi.nl/ + + + from + ^http://(?:www\.)?aldi\.pl/ + to + https://www.aldi.pl/ + + + from + ^http://([^/:@]*)\.aldi\.pl/ + to + https://$1.aldi.pl/ + + + from + ^http://(?:www\.)?aldi\.pt/ + to + https://www.aldi.pt/ + + + from + ^http://([^/:@]*)\.aldi\.pt/ + to + https://$1.aldi.pt/ + + + from + ^http://(?:www\.)?aldi\.us/ + to + https://www.aldi.us/ + + + from + ^http://([^/:@]*)\.aldi\.us/ + to + https://$1.aldi.us/ + + + from + ^http://(?:www\.)?aldinord\.de/ + to + https://www.aldi-nord.de/ + + + from + ^http://([^/:@]*)\.aldinord\.de/ + to + https://$1.aldi-nord.de/ + + + from + ^http://(?:www\.)?aldisued\.de/ + to + https://www.aldi-sued.de/ + + + from + ^http://(?:www\.)?aldisuisse\.ch/ + to + https://www.aldi-suisse.ch/ + + + from + ^http://([^/:@]*)\.aldisuisse\.ch/ + to + https://$1.aldi-suisse.ch/ + + + from + ^http://(?:www\.)?alditalk\.de/ + to + https://www.alditalk.de/ + + + from + ^http://([^/:@]*)\.alditalk\.de/ + to + https://$1.alditalk.de/ + + + from + ^http://(?:www\.)?hofer\.at/ + to + https://www.hofer.at/ + + + from + ^http://([^/:@]*)\.hofer\.at/ + to + https://$1.hofer.at/ + + + from + ^http://(?:www\.)?hofer\.si/ + to + https://www.hofer.si/ + + + from + ^http://([^/:@]*)\.hofer\.si/ + to + https://$1.hofer.si/ + + + target + + + host + aldisued.de + + + host + *.aldi-mobile.ch + + + host + *.aldi-nord.de + + + host + *.aldi-sued.de + + + host + *.aldi-suisse.ch + + + host + *.aldi.be + + + host + *.aldi.co.uk + + + host + *.aldi.com.au + + + host + *.aldi.dk + + + host + *.aldi.es + + + host + *.aldi.fr + + + host + *.aldi.hu + + + host + *.aldi.ie + + + host + *.aldi.lu + + + host + *.aldi.nl + + + host + *.aldi.pl + + + host + *.aldi.pt + + + host + *.aldi.us + + + host + *.aldinord.de + + + host + *.aldisued.de + + + host + *.aldisuisse.ch + + + host + *.alditalk.de + + + host + *.hofer.at + + + host + *.hofer.si + + + host + aldi-mobile.ch + + + host + aldi-nord.de + + + host + aldi-sued.de + + + host + aldi-suisse.ch + + + host + aldi.be + + + host + aldi.co.uk + + + host + aldi.com.au + + + host + aldi.dk + + + host + aldi.es + + + host + aldi.fr + + + host + aldi.hu + + + host + aldi.ie + + + host + aldi.lu + + + host + aldi.nl + + + host + aldi.pl + + + host + aldi.pt + + + host + aldi.us + + + host + aldinord.de + + + host + aldisuisse.ch + + + host + alditalk.de + + + host + hofer.at + + + host + hofer.si + + + + + Aleavia (partial) + + ruleset + + name + Aleavia (partial) + rule + + from + ^http://(www\.)?shop\.aleavia\.com/(\w+_\d+\.css|checkout\.sc|images/|media/|qsctemplates/|static/) + to + https://$1shop.aleavia.com/$2 + + target + + host + *.aleavia.com + + + + Alecomm.com + + ruleset + + name + Alecomm.com + rule + + from + ^http://(www\.)?alecomm\.com/ + to + https://$1alecomm.com/ + + target + + + host + alecomm.com + + + host + www.alecomm.com + + + + + Alert Investor Relations + + ruleset + + name + Alert Investor Relations + rule + + + from + ^http://(?:www\.)?alertir\.com/ + to + https://www.alertir.com/ + + + from + ^http://vp(\d+)\.alertir\.com/ + to + https://vp$1.alertir.com/ + + + securecookie + + host + ^\.alertir\.com$ + name + .+ + + target + + + host + alertir.com + + + host + *.alertir.com + + + + + AlertBot + + ruleset + + name + AlertBot + rule + + from + ^https?://(?:www\.)?alertbot\.com/ + to + https://www.alertbot.com/ + + securecookie + + host + ^w*\.alertbot\.com$ + name + .+ + + target + + + host + alertbot.com + + + host + *.alertbot.com + + + + + Alex Cabal.com + + ruleset + + name + Alex Cabal.com + rule + + from + ^http://(www\.)?alexcabal\.com/ + to + https://$1alexcabal.com/ + + target + + + host + alexcabal.com + + + host + www.alexcabal.com + + + + + Alex.se + + ruleset + + name + Alex.se + platform + mixedcontent + rule + + + from + ^http://www\.alex\.se/ + to + https://www.alex.se/ + + + from + ^http://alex\.se/ + to + https://alex.se/ + + + target + + + host + www.alex.se + + + host + alex.se + + + + + Alexa (partial) + + ruleset + + name + Alexa (partial) + rule + + + from + ^http://(www\.)?alexa\.com/(favicon\.ico|css/|images/|secure/|\w+/wp-content/) + to + https://$1alexa.com/$2 + + + from + ^http://pcache\.alexa\.com/ + to + https://d1uki75gjpelap.cloudfront.net/ + + + from + ^http://xslt\.alexa\.com/ + to + https://d1loejjcvv1d9m.cloudfront.net/ + + + from + ^http://pixel\.alexametrics\.com/ + to + https://d5nxst8fruw4z.cloudfront.net/ + + + target + + + host + alexa.com + + + host + *.alexa.com + + + host + pixel.alexametrics.com + + + + + Alexander Interactive (partial) + + ruleset + + name + Alexander Interactive (partial) + rule + + from + ^http://(?:cdn|origin)\.at\.ai/ + to + https://dzutovmmu6g2t.cloudfront.net/ + + target + + host + *.at.ai + + + + Alexandras Angel Gifts.co.uk + + ruleset + + name + Alexandras Angel Gifts.co.uk + rule + + from + ^http://(www\.)?alexandrasangelgifts\.co\.uk/ + to + https://$1alexandrasangelgifts.co.uk/ + + securecookie + + host + ^\.alexandrasangelgifts\.co\.uk$ + name + .+ + + target + + + host + alexandrasangelgifts.co.uk + + + host + *.alexandrasangelgifts.co.uk + + + + + Alexis Hair (partial) + + ruleset + + name + Alexis Hair (partial) + rule + + from + ^http://(www\.)?alexishair\.com/(checkout(?:$|\?|/)|wp-content/|wp-includes/) + to + https://$1alexishair.com/$2 + + target + + + host + alexishair.com + + + host + www.alexishair.com + + + + + Alfresco.com + + ruleset + + name + Alfresco.com + platform + firefox + rule + + from + ^http://my\.alfresco\.com/ + to + https://my.alfresco.com/ + + securecookie + + host + ^my\.alfresco\.com$ + name + .+ + + target + + host + my.alfresco.com + + + + Algolia.com + + ruleset + + name + Algolia.com + rule + + from + ^http://((?:blog|hn|status|www)\.)?algolia\.com/ + to + https://$1algolia.com/ + + securecookie + + host + ^www\.algolia\.com$ + name + .+ + + target + + + host + algolia.com + + + host + *.algolia.com + + + + + AliCDN.com (partial) + + ruleset + + name + AliCDN.com (partial) + rule + + from + ^http://(at|g)\.alicdn\.com/ + to + https://$1.alicdn.com/ + + target + + host + *.alicdn.com + + + + AliExpress.com (partial) + + ruleset + + name + AliExpress.com (partial) + rule + + from + ^http://login\.aliexpress\.com/ + to + https://login.aliexpress.com/ + + target + + host + login.aliexpress.com + + + + Alianza + + ruleset + + name + Alianza + rule + + from + ^http://(www\.)?alianza\.tv/ + to + https://$1alianza.tv/ + + securecookie + + host + \.alianza\.tv$ + name + .+ + + target + + + host + alianza.tv + + + host + *.alianza.tv + + + + + Alibaba (partial) + + ruleset + + name + Alibaba (partial) + rule + + + from + ^http://(102|escrow|job|login)\.alibaba\.com/ + to + https://$1.alibaba.com/ + + + from + ^http://style(?:ssl)?\.alibaba\.com/ + to + https://stylessl.alibaba.com/ + + + securecookie + + host + ^(?:102|escrow|job)\.alibaba\.com$ + name + .+ + + target + + host + *.alibaba.com + + + + AliceDSL + + ruleset + + name + AliceDSL + rule + + + from + ^http://(?:www\.)?alice\.de/ + to + https://www.alice-dsl.de/ + + + from + ^http://alice\.de/ + to + https://www.alice-dsl.de/ + + + from + ^http://alice-dsl\.de/ + to + https://www.alice-dsl.de/ + + + from + ^http://(?:www\.)?alice-dsl\.de/ + to + https://www.alice-dsl.de/ + + + securecookie + + host + ^(.*\.)?alice-dsl\.de$ + name + .* + + target + + + host + alice.de + + + host + *.alice.de + + + host + alice-dsl.de + + + host + *.alice-dsl.de + + + host + www.alice-dsl.de + + + + + Alien.net.au + + ruleset + + name + Alien.net.au + rule + + from + ^http://(www\.)?alien\.net\.au/ + to + https://$1alien.net.au/ + + securecookie + + host + ^\.alien\.net\.au$ + name + .+ + + target + + + host + alien.net.au + + + host + *.alien.net.au + + + + + AlienVault (partial) + + ruleset + + name + AlienVault (partial) + rule + + + from + ^https?://(?:www\.)?alienvault\.com/ + to + https://www.alienvault.com/ + + + from + ^http://(cloud|communities|resources)\.alienvault\.com/ + to + https://$1.alienvault.com/ + + + from + ^https?://forums\.alienvault\.com/ + to + https://alienvault.vanillaforums.com/ + + + securecookie + + host + ^.*\.alienvault\.com$ + name + .* + + target + + + host + alienvault.com + + + host + *.alienvault.com + + + + + Alipay.com (partial) + + ruleset + + exclusion + + pattern + ^http://fun\.alipay\.com/+(?!favicon\.ico) + + name + Alipay.com (partial) + rule + + + from + ^http://job\.alipay\.com/ + to + https://job.alibaba.com/ + + + from + ^http://(?!(?:blog|club|help|home|qudao)\.)(\w+\.)?alipay\.com/ + to + https://$1alipay.com/ + + + from + ^http://(?:a|static)\.alipayobjects\.com/ + to + https://a.alipayobjects.com/ + + + from + ^http://(d|t)\.alipayobjects\.com/ + to + https://$1.alipayobjects.com/ + + + from + ^http://(?:i|pic)\.alipayobjects\.com/ + to + https://i.alipayobjects.com/ + + + securecookie + + host + ^(?!fun\.).*\.alipay\.com$ + name + .+ + + target + + + host + alipay.com + + + host + *.alipay.com + + + host + *.alipayobjects.com + + + + + Aliyun.com (partial) + + ruleset + + name + Aliyun.com (partial) + rule + + from + ^http://pin\.aliyun\.com/ + to + https://pin.aliyun.com/ + + target + + host + pin.aliyun.com + + + + All Above Offers + + ruleset + + name + All Above Offers + platform + mixedcontent + rule + + from + ^http://(?:www\.)?abovealloffers\.com/ + to + https://www.abovealloffers.com/ + + target + + + host + abovealloffers.com + + + host + www.abovealloffers.com + + + + + All American Trains + + ruleset + + name + All American Trains + rule + + from + ^http://(www\.)?aat-net\.de/ + to + https://$1aat-net.de/ + + securecookie + + host + ^\.(?:www\.)?aat-net\.de$ + name + .+ + + target + + + host + aat-net.de + + + host + *.aat-net.de + + + + + All Day Calm + + ruleset + + name + All Day Calm + rule + + from + ^http://(www\.)?alldaycalm\.com/ + to + https://$1alldaycalm.com/ + + target + + + host + alldaycalm.com + + + host + www.alldaycalm.com + + + + + All Star Tire + + ruleset + + name + All Star Tire + rule + + from + ^http://(www\.)?allstartire\.com/ + to + https://$1allstartire.com/ + + securecookie + + host + ^(?:.*\.)?allstartire\.com$ + name + .+ + + target + + + host + allstartire.com + + + host + *.allstartire.com + + + + + All You Can Arcade.com (partial) + + ruleset + + name + All You Can Arcade.com (partial) + rule + + + from + ^http://(?:www\.)?allyoucanarcade\.com/ + to + https://www.allyoucanarcade.com/ + + + from + ^http://blog\.allyoucanarcade\.com/wp-content/ + to + https://secure.bluehost.com/~findmymi/allyoucanarcadeblog/wp-content/ + + + securecookie + + host + ^www\.allyoucanarcade\.com$$ + name + .+ + + target + + + host + allyoucanarcade.com + + + host + *.allyoucanarcade.com + + + + + All-inkl.com + + ruleset + + name + All-inkl.com + rule + + + from + ^http://all-inkl\.com/ + to + https://all-inkl.com/ + + + from + ^http://([^/:@\.]+)\.all-inkl\.com/ + to + https://$1.all-inkl.com/ + + + from + ^http://(?:www\.)?all-inkl\.[^/:@][^/:@]/ + to + https://all-inkl.com/ + + + target + + + host + *.all-inkl.com + + + host + all-inkl.* + + + host + www.all-inkl.* + + + + + AllClear ID.com + + ruleset + + name + AllClear ID.com + rule + + from + ^http://(enroll\.|www\.)?allclearid\.com/ + to + https://$1allclearid.com/ + + target + + + host + allclearid.com + + + host + *.allclearid.com + + + + + AllDebrid.com (partial) + + ruleset + + name + AllDebrid.com (partial) + rule + + from + ^http://(cdn\.|www\.)?alldebrid\.(com|fr)/ + to + https://$1alldebrid.$2/ + + securecookie + + host + ^(?:w*\.)?alldebrid\.(?:com|fr)$ + name + .+ + + target + + + host + alldebrid.com + + + host + *.alldebrid.com + + + host + alldebrid.fr + + + host + www.alldebrid.fr + + + + + AllJoyn.org + + ruleset + + name + AllJoyn.org + rule + + from + ^http://(www\.|wwwtst\.)?alljoyn\.org/ + to + https://$1alljoyn.org/ + + target + + + host + alljoyn.org + + + host + *.alljoyn.org + + + + + AllPlayers.com + + ruleset + + name + AllPlayers.com + rule + + from + ^http://((?:f|m|platform|store|usarugbystats|www)\.)?allplayers\.com/ + to + https://$1allplayers.com/ + + securecookie + + host + .*\.allplayers\.com$ + name + .+ + + target + + + host + allplayers.com + + + host + *.allplayers.com + + + + + AllSeen Alliance.org + + ruleset + + name + AllSeen Alliance.org + rule + + from + ^http://((?:ask|git|jira|lists|wiki|www)\.)?allseenalliance\.org/ + to + https://$1allseenalliance.org/ + + securecookie + + host + ^(?:ask|jira|wiki)\.allseenalliance\.org$ + name + .+ + + target + + + host + allseenalliance.org + + + host + *.allseenalliance.org + + + + + AllShare Play + + ruleset + + name + AllShare Play + rule + + + from + ^https?://(?:www\.)?allshareplay\.com/ + to + https://www.allshareplay.com/ + + + from + ^http://(fwk|m)\.allshareplay\.com/ + to + https://$1.allshareplay.com/ + + + securecookie + + host + ^.*\.allshareplay\.com$ + name + .+ + + target + + + host + allshareplay.com + + + host + *.allshareplay.com + + + + + AllThingsD (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?allthingsd\.com/(?!favicon\.ico|files/|theme/|wp-content/|wp-includes/) + + name + AllThingsD (partial) + rule + + from + ^http://((?:mediamemo|profiles|voices|www)\.)?allthingsd\.com/ + to + https://$1allthingsd.com/ + + target + + + host + allthingsd.com + + + host + *.allthingsd.com + + + + + AllUnmanaged.com + + ruleset + + name + AllUnmanaged.com + rule + + from + ^http://(www\.)?allunmanaged\.com/ + to + https://$1allunmanaged.com/ + + target + + + host + allunmanaged.com + + + host + www.allunmanaged.com + + + + + AllYou.net + + ruleset + + name + AllYou.net + rule + + from + ^http://(media\.|www\.)?allyou\.net/ + to + https://$1allyou.net/ + + securecookie + + host + ^(?:www)?\.allyou\.net$ + name + .+ + + target + + + host + allyou.net + + + host + *.allyou.net + + + + + Alliance '90/The Greens (partial) + + ruleset + + name + Alliance '90/The Greens (partial) + rule + + from + ^http://(www\.)?gruene\.de/ + to + https://$1gruene.de/ + + securecookie + + host + ^www\.gruene\.de$ + name + .* + + target + + + host + gruene.de + + + host + www.gruene.de + + + + + AllianceBernstein (partial) + + ruleset + + name + AllianceBernstein (partial) + rule + + from + ^http://(www\.)?(alliance)?bernstein\.com/ + to + https://$1$2bernstein.com/ + + securecookie + + host + ^(?:www\.)?alliancebernstein\.com$ + name + .+ + + target + + + host + alliancebernstein.com + + + host + www.alliancebernstein.com + + + host + bernstein.com + + + host + www.bernstein.com + + + + + Allianz für Cyber-Sicherheit + + ruleset + + name + Allianz für Cyber-Sicherheit + rule + + from + ^http://(?:www\.)?(allianz-?fuer-?cybersicherheit\.(?:de|org)|cybersicherheits-allianz\.de)/ + to + https://www.$1/ + + securecookie + + host + ^www\.(?:allianz-?fuer-?cybersicherheit\.(?:de|org)|cybersicherheits-allianz\.de)$ + name + .+ + + target + + + host + allianzfuercybersicherheit.de + + + host + www.allianzfuercybersicherheit.de + + + host + allianz-fuer-cybersicherheit.de + + + host + www.allianz-fuer-cybersicherheit.de + + + host + allianz-fuer-cybersicherheit.org + + + host + www.allianz-fuer-cybersicherheit.org + + + host + cybersicherheits-allianz.de + + + host + www.cybersicherheits-allianz.de + + + + + Allied Media.org + + ruleset + + name + Allied Media.org + rule + + from + ^http://((?:amc|store|talk|www)\.)?alliedmedia\.org/ + to + https://$1alliedmedia.org/ + + securecookie + + host + ^\.(?:store|talk)\.alliedmedia\.org$ + name + .+ + + target + + + host + alliedmedia.org + + + host + *.alliedmedia.org + + + + + AlliedModders + + ruleset + + name + AlliedModders + rule + + + from + ^http://([^/@:\.]+)\.alliedmods\.net/ + to + https://$1.alliedmods.net/ + + + from + ^http://alliedmods\.net/ + to + https://alliedmods.net/ + + + securecookie + + host + ^(?:.*\.)?alliedmods\.net$ + name + .+ + + target + + + host + alliedmods.net + + + host + *.alliedmods.net + + + + + Allingsas.se + + ruleset + + name + Allingsas.se + rule + + + from + ^http://www\.allingsas\.se/ + to + https://www.allingsas.se/ + + + from + ^http://allingsas\.se/ + to + https://allingsas.se/ + + + target + + + host + www.allingsas.se + + + host + allingsas.se + + + + + Allistene.fr + + ruleset + + name + Allistene.fr + rule + + + from + ^https?://allistene\.fr/ + to + https://www.allistene.fr/ + + + from + ^http://(?:www\.)?allistene\.fr/ + to + https://www.allistene.fr/ + + + securecookie + + host + ^$ + name + .+ + + target + + + host + allistene.fr + + + host + www.allistene.fr + + + + + Allizom.org + + ruleset + + name + Allizom.org + rule + + from + ^http://(support\.|www\.)?allizom\.org/ + to + https://$1allizom.org/ + + securecookie + + host + ^support\.allizom\.org$ + name + .+ + + target + + + host + allizom.org + + + host + *.allizom.org + + + + + Alloy Digital (partial) + + ruleset + + name + Alloy Digital (partial) + rule + + + from + ^https?://cdn\.b5media\.com/ + to + https://d36nwfv100lk1n.cloudfront.net/ + + + from + ^https?://cdn\.blisstree\.com/ + to + https://d2oiv51wjnj5wa.cloudfront.net/ + + + from + ^https?://cdn\.crushable\.com/ + to + https://d1r0ty19i0gtvo.cloudfront.net/ + + + from + ^https?://cdn\.mommyish\.com/ + to + https://dkuyan05fvz6l.cloudfront.net/ + + + from + ^https?://cdn\.thegloss\.com/ + to + https://daispricmon6s.cloudfront.net/ + + + from + ^https?://cdn\.thegrindstone\.com/ + to + https://d176o63igdzvgd.cloudfront.net/ + + + target + + + host + cdn.b5media.com + + + host + cdn.blisstree.com + + + host + cdn.crushable.com + + + host + cdn.mommyish.com + + + host + cdn.thegloss.com + + + host + cdn.thegrindstone.com + + + + + Allpoetry + + ruleset + + name + Allpoetry + rule + + from + ^http://(?:(a\.)|www\.)?allpoetry\.com/ + to + https://$1allpoetry.com/ + + securecookie + + host + ^\.?allpoetry\.com$ + name + .+ + + target + + + host + allpoetry.com + + + host + *.allpoetry.com + + + + + Alluremedia (partial) + + ruleset + + name + Alluremedia (partial) + rule + + + from + ^https?://edge\.alluremedia\.com\.au/(assets/img|m)/ + to + https://i0.wp.com/edge.alluremedia.com.au/$1/ + + + from + ^http://(?:edge|secure)\.alluremedia\.com/ + to + https://secure.alluremedia.com.au/ + + + target + + host + *.alluremedia.com.au + + + + Ally Financial (partial) + + ruleset + + name + Ally Financial (partial) + rule + + + from + ^http://((?:billpay|chat|m|online-application|secure|survey|www)\.)?ally\.com/ + to + https://$1ally.com/ + + + from + ^http://(?:www\.)?allybank\.com/ + to + https://www.ally.com/ + + + from + ^http://www\.smartauction\.biz/ + to + https://www.smartauction.biz/ + + + securecookie + + host + .*\.ally\.com$ + name + .+ + + target + + + host + ally.com + + + host + *.ally.com + + + host + allybank.com + + + host + www.allybank.com + + + host + www.smartauction.biz + + + + + AlphaSSL + + ruleset + + name + AlphaSSL + rule + + from + ^http://(seal\.|www\.)?alphassl\.com/ + to + https://$1alphassl.com/ + + target + + + host + alphassl.com + + + host + *.alphassl.com + + + + + Alpine Linux.org (partial) + + ruleset + + name + Alpine Linux.org (partial) + rule + + from + ^http://(bugs\.|www\.)?alpinelinux\.org/ + to + https://$1alpinelinux.org/ + + securecookie + + host + ^bugs\.alpinelinux\.org$ + name + .+ + + target + + + host + alpinelinux.org + + + host + *.alpinelinux.org + + + + + Alta Ski Area + + ruleset + + name + Alta Ski Area + rule + + + from + ^https?://(?:www\.)?alta\.com/ + to + https://www.alta.com/ + + + from + ^http://shop\.alta\.com/ + to + https://shop.alta.com/ + + + securecookie + + host + ^shop\.alta\.com$ + name + .+ + + target + + + host + alta.com + + + host + *.alta.com + + + + + AlterNet (partial) + + ruleset + + name + AlterNet (partial) + rule + + + from + ^http://(www\.)?alternet\.org/images/ + to + https://$1alternet.org/images/ + + + from + ^http://blogs\.alternet\.org/speakeasy/wp-content/avatars/ + to + https://images.alternet.org/images/avatars/ + + + from + ^http://(fil|imag)es\.alternet\.org/ + to + https://$1es.alternet.org/ + + + target + + + host + alternet.org + + + host + *.alternet.org + + + + + Altera.com (partial) + + ruleset + + name + Altera.com (partial) + rule + + from + ^http://(?:www\.)?altera\.com/(?=common/|favicon\.ico|js\.lib/|myaltera(?:$|[?/])) + to + https://www.altera.com/ + + target + + + host + altera.com + + + host + www.altera.com + + + + + AlternC (partial) + + ruleset + + name + AlternC (partial) + rule + + from + ^http://(demo\.|www\.)?alternc\.org/ + to + https://$1alternc.org/ + + securecookie + + host + ^(?:www\.)?alternc\.org$ + name + .+ + + target + + + host + alternc.org + + + host + *.alternc.org + + + + + AlternaLabs (partial) + + ruleset + + name + AlternaLabs (partial) + rule + + from + ^http://(www\.)?alternalabs\.com/(assets/|favicon\.ico|wp-content/) + to + https://$1alternalabs.com/$2 + + target + + + host + alternalabs.com + + + host + www.alternalabs.com + + + + + Alternate + + ruleset + + name + Alternate + platform + mixedcontent + rule + + + from + ^http://([^/:@]*)\.alternate\.be/ + to + https://$1.alternate.be/ + + + from + ^http://alternate\.be/ + to + https://alternate.be/ + + + from + ^http://([^/:@]*)\.alternate\.nl/ + to + https://$1.alternate.nl/ + + + from + ^http://alternate\.nl/ + to + https://alternate.nl/ + + + from + ^http://([^/:@]*)\.alternate-b2b\.nl/ + to + https://$1.alternate-b2b.nl/ + + + from + ^http://alternate-b2b\.nl/ + to + https://alternate-b2b.nl/ + + + target + + + host + *.alternate.be + + + host + alternate.be + + + host + *.alternate.nl + + + host + alternate.nl + + + host + *.alternate-b2b.nl + + + host + alternate-b2b.nl + + + + + Alternatif Bilisim.org + + ruleset + + name + Alternatif Bilisim.org + rule + + from + ^http://(iuf\.|www\.)?alternatifbilisim\.org/ + to + https://$1alternatifbilisim.org/ + + target + + + host + alternatifbilisim.org + + + host + *.alternatifbilisim.org + + + + + Alternatives.ca + + ruleset + + name + Alternatives.ca + rule + + from + ^http://(www\.)?alternatives\.ca/ + to + https://www.alternatives.ca/ + + target + + + host + alternatives.ca + + + host + www.alternatives.ca + + + + + Alticore (partial) + + ruleset + + exclusion + + pattern + ^http://www\.amway\.com/Shop/Product/ + + name + Alticore (partial) + rule + + + from + ^http://(?:www\.)?amway\.com/ + to + https://www.amway.com/ + + + from + ^http://(www\.)?bww\.com/(css/|images/|Common/CharitableGiving\.aspx) + to + https://$1bww.com/$2 + + + from + ^http://(www\.)?lauramercier\.com/(store/(account|cart|template)/|subscription/) + to + https://$1lauramercier.com/$2 + + + target + + + host + amway.com + + + host + www.amway.com + + + host + bww.com + + + host + www.bww.com + + + host + lauramercier.com + + + host + www.lauramercier.com + + + + + Altimate Wellness (partial) + + ruleset + + name + Altimate Wellness (partial) + rule + + from + ^http://(www\.)?altimatewellness\.com/wp-(admin(?:/|\.php)|content/|includes/) + to + https://$1altimatewellness.com/wp-$2 + + target + + + host + altimatewellness.com + + + host + www.altimatewellness.com + + + + + Altoona Mirror (partial) + + ruleset + + name + Altoona Mirror (partial) + rule + + + from + ^https?://(?:mobile\.|www\.)?altoonamirror\.com/ + to + https://www.altoonamirror.com/ + + + from + ^https?://(?:www\.)?intellnews\.net/ + to + https://www.intellnews.net/ + + + securecookie + + + host + ^www\.altoonamirror\.com$ + name + .* + + + host + ^www\.intellnews\.net$ + name + .* + + + target + + + host + altoonamirror.com + + + host + *.altoonamirror.com + + + host + intellnews.net + + + host + www.intellnews.net + + + + + AlumFX.com + + ruleset + + name + AlumFX.com + rule + + from + ^http://(www\.)?alumfx\.com/images/ + to + https://$1alumfx.com/images/ + + target + + + host + alumfx.com + + + host + www.alumfx.com + + + + + Alza.cz + + ruleset + + name + Alza.cz + rule + + + from + ^http://(www\.)?alza\.cz/ + to + https://www.alza.cz/ + + + from + ^http://([^/:@]*)\.alza\.cz/ + to + https://$1.alza.cz/ + + + target + + + host + alza.cz + + + host + *.alza.cz + + + + + Alza.sk + + ruleset + + name + Alza.sk + rule + + + from + ^http://(www\.)?alza\.sk/ + to + https://www.alza.sk/ + + + from + ^http://([^/:@]*)\.alza\.sk/ + to + https://$1.alza.sk/ + + + target + + + host + alza.sk + + + host + *.alza.sk + + + + + Alzforum.org (partial) + + ruleset + + name + Alzforum.org (partial) + rule + + from + ^http://(www\.)?alzforum\.org/(?=favicon\.ico|(?:login|my-alzforum|password-recovery|registration)(?:$|[?/])|sites/) + to + https://$1alzforum.org/ + + target + + + host + alzforum.org + + + host + www.alzforum.org + + + + + Alzheimer's Association (partial) + + ruleset + + exclusion + + pattern + ^http://act\.alz\.org/+(?!$|\?|\w+/images/|css/|favicon\.ico|images/) + + name + Alzheimer's Association (partial) + rule + + from + ^http://((?:sdc|shop|www)\.)?alz\.org/ + to + https://$1alz.org/ + + securecookie + + host + ^(?:sdc\.|www\.)?alz\.org$ + name + .+ + + target + + + host + alz.org + + + host + *.alz.org + + + + + Alzheimer's Society (partial) + + ruleset + + name + Alzheimer's Society (partial) + rule + + + from + ^http://(?:www\.)?alzheimers\.org\.uk/ + to + https://www.alzheimers.org.uk/ + + + from + ^http://shop\.alzheimers\.org\.uk/(checkout(?:$|\?|/)|_css/|images/|_img/|_js/) + to + https://shop.alzheimers.org.uk/$1 + + + securecookie + + host + ^(?:www)?\.alzheimers\.org\.uk$ + name + .+ + + target + + + host + alzheimers.org.uk + + + host + *.alzheimers.org.uk + + + + + Amahi.org (partial) + + ruleset + + name + Amahi.org (partial) + rule + + + from + ^http://((?:blog|bugs|forums|shop|wiki|www)\.)?amahi\.org/ + to + https://$1amahi.org/ + + + from + ^http://talk\.amahi\.org/.* + to + https://webchat.freenode.net/?channels=amahi + + + securecookie + + host + ^(?:(?:bugs|\.shop|wiki|www)\.)?amahi\.org$ + name + .+ + + target + + + host + amahi.org + + + host + *.amahi.org + + + + + Amara (false MCB) + + ruleset + + name + Amara (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?amara\.org/ + to + https://$1amara.org/ + + securecookie + + host + ^www\.amara\.org$ + name + .+ + + target + + + host + amara.org + + + host + www.amara.org + + + + + Amazon Associates + + ruleset + + name + Amazon Associates + rule + + + from + ^http://rcm-ca\.amazon\.ca/ + to + https://rcm-ca.amazon.ca/ + + + from + ^http://ws\.amazon\.(ca|co\.jp|com|co\.uk|de|fr)/ + to + https://ws.amazon.$1/ + + + from + ^http://(affiliate-program|astore|pda-bes|rcm|sellercentral|widgets)\.amazon\.com/ + to + https://$1.amazon.com/ + + + from + ^https?://rcm-images\.amazon\.com/ + to + https://images-na.ssl-images-amazon.com/ + + + from + ^http://(completion|payments|rcm-uk|sellercentral)\.amazon\.co\.uk/ + to + https://$1.amazon.co.uk/ + + + from + ^http://partnernet\.amazon\.de/ + to + https://partnernet.amazon.de/ + + + from + ^http://wms\.assoc-amazon\.(ca|com|co\.uk|de|fr)/ + to + https://wms.assoc-amazon.$1/ + + + from + ^https?://(?:www\.)?assoc-amazon\.(ca|com|co\.uk|de|fr)/ + to + https://www.assoc-amazon.$1/ + + + from + ^http://(rcm-na|wms|wm?s-na)\.assoc-amazon\.com/ + to + https://$1.assoc-amazon.com/ + + + securecookie + + host + ^widgets\.amazon\.com$ + name + .+ + + target + + + host + rcm-ca.amazon.ca + + + host + affiliate-program.amazon.com + + + host + astore.amazon.com + + + host + pda-bes.amazon.com + + + host + rcm.amazon.com + + + host + rcm-images.amazon.com + + + host + sellercentral.amazon.com + + + host + ws.amazon.* + + + host + ws.amazon.co.* + + + host + completion.amazon.co.uk + + + host + payments.amazon.co.uk + + + host + rcm-uk.amazon.co.uk + + + host + sellercentral.amazon.co.uk + + + host + partnernet.amazon.de + + + host + assoc-amazon.* + + + host + wms.assoc-amazon.* + + + host + www.assoc-amazon.* + + + host + assoc-amazon.co.uk + + + host + *.assoc-amazon.co.uk + + + host + *.assoc-amazon.com + + + + + Amazon Japan (partial) + + ruleset + + name + Amazon Japan (partial) + rule + + from + ^http://(?:www\.)?amazon\.co\.jp/(ap|gp/(?:bestsellers|cart|cobrandcard|registry|uedata))/ + to + https://www.amazon.co.jp/$1/ + + target + + + host + amazon.co.jp + + + host + www.amazon.co.jp + + + + + Amazon Web Services + + ruleset + + exclusion + + + pattern + ^http://(?:static\.via\.me|img\.wired\.co\.uk|s3\.sandbaguk\.com|spiegeltv-ivms2-restapi|www\.mercyships\.org|www-prod-storage\.cloud\.caltech\.edu)\.s3\.amazonaws\.com/ + + + pattern + ^http://badracket-website\.s3\.amazonaws\.com/swf/soundmanager\d_flash\d\.swf + + + pattern + ^http://em\.css\.s3\.amazonaws\.com/style\.css + + + pattern + ^http://s3\.lbrcdn\.net\.s3-external-3\.amazonaws.com/ + + + pattern + ^http://charts-datawrapper\.s3\.amazonaws\.com/ + + + pattern + ^http://darkskysatellite(maps)?\.s3\.amazonaws\.com/ + + + pattern + ^http://g-ecx\.images-amazon\.com/.*([mM][pP]3|zeitgeist|digital/music) + + + pattern + ^http://ecx\.images-amazon\.com/ + + + pattern + ^http://amazon-zg\.s3\.amazonaws.com/ + + + pattern + ^http://[^@:/]+images[^@:/]+/images/G/01/zeitgeist/mp3player + + + name + Amazon Web Services + rule + + + from + ^http://dis(\.resized)?\.images\.s3\.amazonaws\.com/ + to + https://s3-eu-west-1.amazonaws.com/dis$1.images/ + + + from + ^http://cms\.kiva\.org\.s3\.amazonaws\.com/ + to + https://s3-us-west-1.amazonaws.com/cms.kiva.org/ + + + from + ^http://fls-eu\.amazon\.co\.uk/ + to + https://fls-eu.amazon.co.uk/ + + + from + ^http://((?:docs|forums|signin)\.aws|aws-portal|fls-eu|fls-na|payments|sis|webservices)\.amazon\.com/ + to + https://$1.amazon.com/ + + + from + ^http://s3(?:-website)?(-ap-(?:nor|sou)theast-1|-(?:eu|us)-west-\d|-external-\d|-sa-east-1)?\.amazonaws\.com/ + to + https://s3$1.amazonaws.com/ + + + from + ^http://([^@:\.]+)\.s3(?:-website)?(-ap-(?:nor|sou)theast-1|-(?:eu|us)-west-\d|-external-\d|-sa-east-1)?\.amazonaws\.com/ + to + https://$1.s3$2.amazonaws.com/ + + + from + ^http://([^@:\.]+)\.([^@:/]+)\.s3(?:-website)?(-ap-(?:nor|sou)theast-1|-(?:eu|us)-west-\d|-external-\d|-sa-east-1)?\.amazonaws\.com/ + to + https://s3$3.amazonaws.com/$1.$2/ + + + from + ^http://s3-website-us-east-1\.amazonaws\.com/ + to + https://s3.amazonaws.com/ + + + from + ^http://([^@:\.]+)\.s3-website-us-east-1\.amazonaws\.com/ + to + https://$1.s3.amazonaws.com/ + + + from + ^http://([^@:\.]+)\.([^@:/]+)\.s3-website-us-east-1\.amazonaws\.com/ + to + https://s3.amazonaws.com/$1.$2/ + + + from + ^http://(?:www\.)?amazonwebservices\.com/ + to + https://aws.amazon.com/ + + + from + ^http://developer\.amazonwebservices\.com/ + to + https://developer.amazonwebservices.com/ + + + from + ^http://media\.amazonwebservices\.com/ + to + https://s3.amazonaws.com/awsmedia/ + + + from + ^http://(?:g-images\.|(?:ec[5x]|g-ecx)\.images-)amazon\.com/ + to + https://d1ge0kk1l5kms0.cloudfront.net/ + + + from + ^http://(?:(?:(?:\w-)?ec[1-8x]|z-ak)\.images-|images(?:-jp)?\.)amazon\.com/ + to + https://images-na.ssl-images-amazon.com/ + + + from + ^http://images-(eu|fe|na)\.ssl-images-amazon\.com/ + to + https://images-$1.ssl-images-amazon.com/ + + + target + + + host + fls-eu.amazon.co.uk + + + host + aws.amazon.com + + + host + forums.aws.amazon.com + + + host + signin.aws.amazon.com + + + host + docs.aws.amazon.com + + + host + aws-portal.amazon.com + + + host + fls-eu.amazon.com + + + host + fls-na.amazon.com + + + host + images.amazon.com + + + host + images-jp.amazon.com + + + host + payments.amazon.com + + + host + sis.amazon.com + + + host + webservices.amazon.com + + + host + *.amazonaws.com + + + host + amazonwebservices.com + + + host + *.amazonwebservices.com + + + host + *.images-amazon.com + + + host + *.ssl-images-amazon.com + + + + + Amazon-Adsystem.com (partial) + + ruleset + + name + Amazon-Adsystem.com (partial) + rule + + + from + ^http://(aax|aax-eu|aax-us-east|fls-na|ir-na|ps-us|rcm-na|s|wm?s-na)\.amazon-adsystem\.com/ + to + https://$1.amazon-adsystem.com/ + + + from + ^http://c\.amazon-adsystem\.com/ + to + https://d1ykf07e75w7ss.cloudfront.net/ + + + securecookie + + host + ^\.amazon-adsystem\.com$ + name + .+ + + target + + host + *.amazon-adsystem.com + + + + Amber Swann Publishing (partial) + + ruleset + + name + Amber Swann Publishing (partial) + rule + + from + ^http://(www\.)?amberswann\.com/(components/|favicon\.ico|images/|libraries/|media/|modules/|plugins/|templates/) + to + https://$1amberswann.com/$2 + + target + + + host + amberswann.com + + + host + www.amberswann.com + + + + + Ambx.com + + ruleset + + name + Ambx.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?ambx\.com/ + to + https://www.ambx.com/ + + target + + + host + ambx.com + + + host + www.ambx.com + + + + + Ameba (partial) + + ruleset + + exclusion + + pattern + ^http://stat\.ameba\.jp/user_images/ + + name + Ameba (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?ameba\.jp/ + to + https://www.ameba.jp/ + + + from + ^https?://(?:ssl|stat)\.ameba\.jp/ + to + https://ssl.ameba.jp/ + + + from + ^http://user\.ameba\.jp/ + to + https://user.ameba.jp/ + + + securecookie + + host + ^.*\.ameba\.jp$ + name + .* + + target + + + host + ameba.jp + + + host + *.ameba.jp + + + + + Amelia Andersdotter.eu + + ruleset + + name + Amelia Andersdotter.eu + rule + + from + ^http://(?:www\.)?ameliaandersdotter\.eu/ + to + https://ameliaandersdotter.eu/ + + target + + + host + ameliaandersdotter.eu + + + host + www.ameliaandersdotter.eu + + + + + America's Charities + + ruleset + + name + America's Charities + rule + + from + ^(http://(www\.)?|https://)charities\.org/ + to + https://www.charities.org/ + + securecookie + + host + ^www\.charities\.org$ + name + .+ + + target + + + host + charities.org + + + host + www.charities.org + + + + + America's Longest War + + ruleset + + name + America's Longest War + rule + + from + ^http://(www\.)?americaslongestwar\.com/ + to + https://$1americaslongestwar.com/ + + target + + + host + americaslongestwar.com + + + host + www.americaslongestwar.com + + + + + American Academy of Neurology (partial) + + ruleset + + name + American Academy of Neurology (partial) + rule + + + from + ^https?://(?:www\.)?aan\.com/(CFFileServlet/|contact/|globals/|go/|(?:index\.cfm)?\?axon=user\.(?:login|profile)|skins/) + to + https://www.aan.com/$1 + + + from + ^http://patients\.aan\.com/ + to + https://patients.aan.com/ + + + securecookie + + host + ^patients\.aan\.com$ + name + .+ + + target + + + host + aan.com + + + host + *.aan.com + + + + + American Airlines + + ruleset + + name + American Airlines + rule + + from + ^http://(ox-d\.|www\.)aa\.com/ + to + https://$1aa.com/ + + securecookie + + host + ^(.*\.)aa\.com$ + name + .* + + target + + + host + aa.com + + + host + *.aa.com + + + host + *.www.aa.com + + + + + American Ancestors.org (partial) + + ruleset + + name + American Ancestors.org (partial) + rule + + from + ^http://(www\.)?americanancestors\.org/(?=css/|favicon\.ico|images/|membershipproduct\.aspx|uploadedImages/|WebResource\.axd|WorkArea/) + to + https://$1americanancestors.org/ + + securecookie + + host + ^www\.americanancestors\.org$ + name + ^EkAnalytics$ + + target + + + host + americanancestors.org + + + host + www.americanancestors.org + + + + + American Association of Neurological Surgeons + + ruleset + + name + American Association of Neurological Surgeons + rule + + from + ^http://(\w+\.)?aans\.org/ + to + https://$1aans.org/ + + securecookie + + host + ^(.*\.)?aans\.org$ + name + .* + + target + + + host + aans.org + + + host + *.aans.org + + + + + American Bar Assocation + + ruleset + + name + American Bar Assocation + rule + + + from + ^http://www\.abanet\.org/+(?=search/+common/+img/) + to + https://apps.americanbar.org/ + + + from + ^http://www\.abanet\.org/+(?=$|\?) + to + https://www.americanbar.org/content/aba/ + + + from + ^http://www\.abanet\.org/+rppt(?:(?:/[^?]*)?(\?.*)?)$ + to + https://www.americanbar.org/publications/probate_property_magazine_home.html$1 + + + from + ^http://(apps\.|www\.)?americanbar\.org/ + to + https://$1americanbar.org/ + + + from + ^http://webstats\.americanbar\.org/ + to + https://americanbar-org.d1.sc.omtrdc.net/ + + + securecookie + + host + ^(?:.*\.)?americanbar\.org$ + name + .+ + + target + + + host + www.abanet.org + + + host + americanbar.org + + + host + *.americanbar.org + + + + + American Center for Law and Justice (partial) + + ruleset + + name + American Center for Law and Justice (partial) + rule + + + from + ^http://(www\.)?aclj\.org/ + to + https://$1aclj.org/ + + + from + ^http://action\.aclj\.org/\??$ + to + https://www.aclj.org/ + + + from + ^http://images\.aclj\.org/ + to + https://c427193.ssl.cf2.rackcdn.com/ + + + from + ^http://media\.aclj\.org/ + to + https://c391070.ssl.cf2.rackcdn.com/ + + + securecookie + + host + ^aclj\.org$ + name + .+ + + target + + + host + aclj.org + + + host + *.aclj.org + + + + + American Chemical Society (partial) + + ruleset + + exclusion + + pattern + ^http://pubs\.acs\.org/(?!appl/|action/showLogin|sda/|templates/) + + name + American Chemical Society (partial) + rule + + + from + ^http://((?:cen|communities(?:test)?|eweb|(?:www\.)?(?:emailpref|join)|portal|pubs|www(?:(?:(?:awards|fellowselection|giving|nominate|profed|register)(?:test)?|akzonobel|ccedlookup|donate|meetings|membernumberlookup|ncwlookup|nominatefellow|pubsbenefits|renew|store|yellowbook)\.)?)\.)?acs\.org/ + to + https://$1acs.org/ + + + from + ^https?://assets(?:test)?\.acs\.org/ + to + https://assets.acs.org/ + + + from + ^https?://(?:www\.)?ewebtest\.acs\.org/ + to + https://www.ewebtest.acs.org/ + + + securecookie + + host + ^(?!pu)(?:.*\.)?acs\.org$ + name + .+ + + target + + + host + acs.org + + + host + *.acs.org + + + + + American College of Radiology (partial) + + ruleset + + name + American College of Radiology (partial) + rule + + + from + ^https?://(?:www\.)?acr\.org/(~|css|images|js|Login)($|\?|/) + to + https://www.acr.org/$1$2 + + + from + ^http://(login|shop)\.acr\.org/ + to + https://$1.acr.org/ + + + securecookie + + host + ^(?:login|shop)\.acr\.org$ + name + .+ + + target + + + host + acr.org + + + host + *.acr.org + + + + + American Epilepsy Society (partial) + + ruleset + + name + American Epilepsy Society (partial) + rule + + from + ^http://(?:www\.)?aesnet\.org/erc/ + to + https://www.aesnet.org/erc/ + + target + + + host + aesnet.org + + + host + www.aesnet.org + + + + + American Flyer Trains.com + + ruleset + + name + American Flyer Trains.com + rule + + from + ^http://(www\.)?americanflyertrains\.com/ + to + https://$1americanflyertrains.com/ + + target + + + host + americanflyertrains.com + + + host + www.americanflyertrains.com + + + + + American Foundation for Suicide Prevention + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?afsp\.org/indiana$ + + name + American Foundation for Suicide Prevention + rule + + from + ^((http://(?:www\.)?)|https://)afsp\.org/ + to + https://www.afsp.org/ + + target + + + host + afsp.org + + + host + www.afsp.org + + + + + American Freedom.com + + ruleset + + name + American Freedom.com + rule + + from + ^http://(www\.)?americanfreedom\.com/ + to + https://$1americanfreedom.com/ + + securecookie + + host + ^americanfreedom\.com$ + name + .+ + + target + + + host + americanfreedom.com + + + host + www.americanfreedom.com + + + + + American Future Fund + + ruleset + + name + American Future Fund + rule + + from + ^http://(www\.)?americanfuturefund\.com/ + to + https://$1americanfuturefund.com/ + + securecookie + + host + ^(www\.)?americanfuturefund\.com$ + name + .+ + + target + + + host + americanfuturefund.com + + + host + www.americanfuturefund.com + + + + + American Heart.org (partial) + + ruleset + + exclusion + + pattern + ^http://my\.americanheart\.org/(?!\w+/(?:imag|theme)es/|favicon\.ico) + + name + American Heart.org (partial) + rule + + + from + ^http://(?:www\.)?americanheart\.org/.* + to + https://www.heart.org/ + + + from + ^http://(donate|my)\.americanheart\.org/ + to + https://$1.americanheart.org/ + + + securecookie + + host + ^donate\.americanheart\.org$ + name + .+ + + target + + + host + americanheart.org + + + host + *.americanheart.org + + + + + American Physical Society (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:counter|feeds|physics|pr[bel]|prola)\. + + + pattern + ^http://publish\.aps\.org/(?:image|stylesheet)s/ + + + name + American Physical Society (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?aps\.org/(?=commonspot/|elementadmin/|[\w/-]+images/|style/|templates/) + to + https://www.aps.org/ + + + from + ^http://(\w+)\.aps\.org/((?:files|images|misc|sites/[\w.-]+themes|style(?:sheets)?)/) + to + https://$1.aps.org/ + + + from + ^http://(author|journal|referee|tesseract-asset)s\.aps\.org/ + to + https://$1s.aps.org/ + + + from + ^http://publish\.aps\.org/(?=login|signup) + to + https://publish.aps.org/ + + + from + ^http://publish\.aps\.org/favicon\.ico + to + https://www.aps.org/favicon.ico/ + + + securecookie + + host + ^journals\.aps\.org$ + name + .+ + + target + + + host + aps.org + + + host + *.aps.org + + + + + American Postal Workers Union + + ruleset + + name + American Postal Workers Union + rule + + + from + ^https?://(?:www\.)?apwu\.org/ + to + https://www.apwu.org/ + + + from + ^https?://(?:www\.)?apwustore\.org/(?:apwu/)? + to + https://www.costore.com/apwu/ + + + securecookie + + host + ^www\.apwu\.org$ + name + .* + + target + + + host + apwu.org + + + host + www.apwu.org + + + host + apwustore.org + + + host + www.apwustore.org + + + + + American Scientist.org + + ruleset + + name + American Scientist.org + rule + + + from + ^http://(?:www\.)?americanscientist\.org/ + to + https://www.americanscientist.org/ + + + from + ^http://amsciadmin\.eresources\.com/Libraries/ + to + https://www.americanscientist.org/Libraries/ + + + securecookie + + host + ^www\.americanscientist\.org$ + name + .+ + + target + + + host + amsciadmin.eresources.com + + + host + americanscientist.org + + + host + www.americanscientist.org + + + + + American Society of Media Photographers + + ruleset + + name + American Society of Media Photographers + rule + + from + ^http://(www\.)?(admin\.)?asmp\.org/ + to + https://$1$2asmp.org/ + + securecookie + + host + ^.*\.asmp\.org$ + name + .+ + + target + + + host + asmp.org + + + host + *.asmp.org + + + host + www.admin.asmp.org + + + + + American University (partial) + + ruleset + + name + American University (partial) + rule + + + from + ^https?://library\.american\.edu/ + to + https://www.american.edu/library/ + + + from + ^http://([\w\.]+\.)?american\.edu/ + to + https://$1american.edu/ + + + target + + + host + american.edu + + + host + *.american.edu + + + host + *.wcl.american.edu + + + + + AmericanExpress + + ruleset + + name + AmericanExpress + rule + + + from + ^http://(?:www\.)?americanexpress\.com/ + to + https://www.americanexpress.com/ + + + from + ^http://home\.americanexpress\.com/ + to + https://home.americanexpress.com/ + + + target + + + host + www.americanexpress.com + + + host + americanexpress.com + + + host + home.americanexpress.com + + + + + Americana Exchange + + ruleset + + name + Americana Exchange + rule + + from + ^http://(?:www\.)?americanaexchange\.com/ + to + https://www.americanaexchange.com/ + + target + + + host + americanaexchange.com + + + host + www.americanaexchange.com + + + + + Americans United (partial) + + ruleset + + name + Americans United (partial) + rule + + from + ^http://(www\.)?au\.org/ + to + https://$1au.org/ + + target + + + host + au.org + + + host + www.au.org + + + + + Amnesty International (partial) + + ruleset + + exclusion + + pattern + ^http://livewire\.amnesty\.org/(?:.+/)?(?:\?.*)?$ + + name + Amnesty International (partial) + platform + mixedcontent + rule + + + from + ^http://((?:adam|files|livewire|www)\.)?amnesty\.org/ + to + https://$1amnesty.org/ + + + from + ^http://(protectthehuman\.|www2?\.)?amnesty\.org\.uk/ + to + https://$1amnesty.org.uk/ + + + from + ^http://blogs\.amnesty\.org\.uk/ + to + https://d3soxcs9eo85xz.cloudfront.net/ + + + securecookie + + + host + ^\.amnesty\.org\.uk$ + name + ^__utm\w$ + + + host + ^(?:.*\.)?amnesty\.org\.uk$ + name + .+ + + + target + + + host + amnesty.org + + + host + *.amnesty.org + + + host + amnesty.org.uk + + + host + *.amnesty.org.uk + + + + + Amnesty International Norway (partial) + + ruleset + + name + Amnesty International Norway (partial) + rule + + from + ^http://(www\.)?amnesty\.no/ + to + https://$1amnesty.no/ + + securecookie + + host + ^(?:w*\.)?amnesty\.no$ + name + .+ + + target + + + host + amnesty.no + + + host + *.amnesty.no + + + + + Amnesty USA.org (partial) + + ruleset + + name + Amnesty USA.org (partial) + rule + + from + ^http://(www\.)?amnestyusa\.org/ + to + https://$1amnestyusa.org/ + + target + + + host + amnestyusa.org + + + host + www.amnestyusa.org + + + + + Ampush.com + + ruleset + + name + Ampush.com + rule + + from + ^http://(www\.)?ampush\.com/ + to + https://$1ampush.com/ + + securecookie + + host + ^(?:w*\.)?ampush\.com$ + name + .+ + + target + + + host + ampush.com + + + host + *.ampush.com + + + + + Amsterdam Internet Exchange + + ruleset + + name + Amsterdam Internet Exchange + rule + + from + ^http://(my\.|stats\.|www\.)?ams-ix\.net/ + to + https://$1ams-ix.net/ + + securecookie + + host + ^(?:w*\.)?ams-ix\.net$ + name + .+ + + target + + + host + ams-ix.net + + + host + *.ams-ix.net + + + + + An Post (partial) + + ruleset + + name + An Post (partial) + rule + + + from + ^http://(?:www\.)?anpost\.ie/ + to + https://www.anpost.ie/ + + + from + ^http://edocket\.anpost\.ie/ + to + https://edocket.anpost.ie/ + + + securecookie + + host + ^(?:edocket|www)\.anpost\.ie$ + name + .+ + + target + + + host + *.anpost.ie + + + host + anpost.ie + + + + + Ananda Sangha + + ruleset + + name + Ananda Sangha + rule + + from + ^http://(www\.)?ananda\.org/ + to + https://$1ananda.org/ + + securecookie + + host + ^(?:www\.)?ananda\.org$ + name + .+ + + target + + + host + ananda.org + + + host + www.ananda.org + + + + + Ancestry.com (partial) + + ruleset + + name + Ancestry.com (partial) + rule + + + from + ^http://secure\.ancestry\.co\.uk/ + to + https://secure.ancestry.co.uk/ + + + from + ^http://dna\.ancestry\.com/ + to + https://dna.ancestry.com/ + + + from + ^http://(?:secure\.)?store\.ancestry\.com/ + to + https://secure.store.ancestry.com/ + + + from + ^http://c\.(?:ancestry|mfcreative)\.com/ + to + https://c.mfcreative.com/ + + + securecookie + + + host + ^secure\.ancestry\.co\.uk$ + name + .+ + + + host + ^dna\.ancestry\.com$ + name + .+ + + + target + + + host + secure.ancestry.co.uk + + + host + *.ancestry.com + + + host + c.mfcreative.com + + + + + Anchor + + ruleset + + name + Anchor + rule + + + from + ^http://(control\.|www\.)?anchor\.com\.au/ + to + https://$1anchor.com.au/ + + + from + ^http://(?:www\.)?anchor\.net\.au/ + to + https://anchor.net.au/ + + + securecookie + + host + ^\.anchor\.net\.au$ + name + .+ + + target + + + host + anchor.com.au + + + host + *.anchor.com.au + + + host + anchor.net.au + + + host + *.anchor.net.au + + + + + AnchorFree (partial) + + ruleset + + name + AnchorFree (partial) + rule + + from + ^http://rpt\.anchorfree\.net/ + to + https://rpt.anchorfree.net/ + + target + + host + rpt.anchorfree.net + + + + Andor.com + + ruleset + + name + Andor.com + rule + + from + ^http://(www\.)?andor\.com/ + to + https://$1andor.com/ + + securecookie + + host + ^(?:\.|www\.)?andor\.com$ + name + .+ + + target + + + host + andor.com + + + host + *.andor.com + + + + + Android (partial) + + ruleset + + name + Android (partial) + rule + + from + ^http://(developer|market|source)\.android\.com/ + to + https://$1.android.com/ + + securecookie + + host + .+\.android\.com$ + name + .+ + + target + + host + *.android.com + + + + Androidfilehost.com + + ruleset + + name + Androidfilehost.com + rule + + from + ^http://(www\.)?androidfilehost\.com/ + to + https://www.androidfilehost.com/ + + target + + + host + www.androidfilehost.com + + + host + androidfilehost.com + + + + + Androidpolice + + ruleset + + name + Androidpolice + rule + + from + ^http://(www\.)?androidpolice\.com/ + to + https://www.androidpolice.com/ + + target + + + host + www.androidpolice.com + + + host + androidpolice.com + + + + + Andy Walsh.com + + ruleset + + name + Andy Walsh.com + rule + + from + ^http://(www\.)?andywalsh\.com/ + to + https://$1andywalsh.com/ + + securecookie + + host + ^(?:www)?\.andywalsh\.com$ + name + .+ + + target + + + host + andywalsh.com + + + host + *.andywalsh.com + + + + + AngelList (partial) + + ruleset + + name + AngelList (partial) + rule + + from + ^http://(www\.)?angel\.co/ + to + https://$1angel.co/ + + securecookie + + host + ^angel\.co$ + name + .+ + + target + + + host + angel.co + + + host + www.angel.co + + + + + AniRena + + ruleset + + name + AniRena + rule + + from + ^http://(www\.)?anirena\.com/ + to + https://$1anirena.com/ + + securecookie + + host + ^\.(?:www\.)?anirena\.com$ + name + .+ + + target + + + host + anirena.com + + + host + *.anirena.com + + + + + Animenfo.com + + ruleset + + name + Animenfo.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?animenfo\.com/ + to + https://www.animenfo.com/ + + securecookie + + + host + \.animenfo\.com$ + name + PHPSESSID + + + host + \.animenfo\.com$ + name + anforadio_(user|hash) + + + target + + + host + animenfo.com + + + host + www.animenfo.com + + + + + Animoto.com (partial) + + ruleset + + name + Animoto.com (partial) + rule + + + from + ^http://(www\.)?animoto\.com/(?=favicon\.ico|images/|sign_(?:in|up)/*(?:$|\?)) + to + https://$1animoto.com/ + + + from + ^http://help\.animoto\.com/(?=favicon\.ico|generated/|images/|system/|widgets/) + to + https://animoto.zendesk.com/ + + + from + ^http://static\.animoto\.com/ + to + https://d150hyw1dtprld.cloudfront.net/ + + + target + + + host + animoto.com + + + host + *.animoto.com + + + + + Anker + + ruleset + + name + Anker + rule + + from + ^http://anker\.to/ + to + https://anker.to/ + + securecookie + + host + ^anker\.to$ + name + .+ + + target + + host + anker.to + + + + Ann Summers (partial) + + ruleset + + name + Ann Summers (partial) + rule + + + from + ^http://annsummers\.com/[^\?]*(\?.*)? + to + https://www.annsummers.com/$1 + + + from + ^http://www\.annsummers\.com/ + to + https://www.annsummers.com/ + + + securecookie + + host + ^(?:www)?\.annsummers\.com$ + name + .+ + + target + + + host + annsummers.com + + + host + *.annsummers.com + + + + + Anne van Kesteren.nl + + ruleset + + name + Anne van Kesteren.nl + rule + + from + ^http://(www\.)?annevankesteren\.nl/ + to + https://$1annevankesteren.nl/ + + target + + + host + annevankesteren.nl + + + host + www.annevankesteren.nl + + + + + AnnualCreditReport.com + + ruleset + + name + AnnualCreditReport.com + rule + + from + ^http://([\w-]+\.)?annualcreditreport\.com/ + to + https://$1annualcreditreport.com/ + + securecookie + + host + ^(?:.*\.)?annualcreditreport\.com$ + name + .+ + + target + + + host + annualcreditreport.com + + + host + *.annualcreditreport.com + + + + + Anomos (CAcert) + + ruleset + + name + Anomos (CAcert) + platform + cacert + rule + + from + ^http://(git\.|www\.)?anomos\.info/ + to + https://$1anomos.info/ + + target + + + host + anomos.info + + + host + *.anomos.info + + + + + AnonFiles.com + + ruleset + + name + AnonFiles.com + rule + + from + ^http://(cdn\.|www\.)?anonfiles\.com/ + to + https://$1anonfiles.com/ + + target + + + host + anonfiles.com + + + host + *.anonfiles.com + + + + + AnonOps.com + + ruleset + + name + AnonOps.com + rule + + from + ^http://(newblood\.|www\.)?anonops\.com/ + to + https://$1anonops.com/ + + securecookie + + host + ^\.anonops\.com$ + name + .+ + + target + + + host + anonops.com + + + host + *.anonops.com + + + + + Anonine.com + + ruleset + + name + Anonine.com + rule + + from + ^http://(?:www\.)?anonine\.com/ + to + https://anonine.com/ + + securecookie + + host + ^(?:www\.)?anonine\.com$ + name + .+ + + target + + + host + anonine.com + + + host + www.anonine.com + + + + + Anonymizer + + ruleset + + name + Anonymizer + rule + + from + ^http://(www1?\.)?anonymizer\.com/ + to + https://$1anonymizer.com/ + + target + + + host + anonymizer.com + + + host + *.anonymizer.com + + + + + AnonymousSpeech.com + + ruleset + + name + AnonymousSpeech.com + rule + + from + ^http://(www\.)?anonymousspeech\.com/ + to + https://$1anonymousspeech.com/ + + securecookie + + host + ^(?:www\.)?anonymousspeech\.com$ + name + .+ + + target + + + host + anonymousspeech.com + + + host + www.anonymousspeech.com + + + + + Anonymousads.com + + ruleset + + name + Anonymousads.com + rule + + from + ^http://(www\.)?anonymousads\.com/ + to + https://anonymousads.com/ + + target + + + host + anonymousads.com + + + host + www.anonymousads.com + + + + + Anquanbao.com + + ruleset + + name + Anquanbao.com + rule + + from + ^http://(?:www\.)?anquanbao\.com/ + to + https://www.anquanbao.com/ + + target + + + host + anquanbao.com + + + host + www.anquanbao.com + + + + + Ansa.it + + ruleset + + name + Ansa.it + platform + mixedcontent + rule + + from + ^http://(?:www\.)?ansa\.it/ + to + https://www.ansa.it/ + + target + + + host + www.ansa.it + + + host + ansa.it + + + + + Ansible works.com (partial) + + ruleset + + name + Ansible works.com (partial) + rule + + from + ^http://(galaxy\.|www\.)?ansibleworks\.com/ + to + https://$1ansibleworks.com/ + + securecookie + + host + ^\.ansibleworks\.com$ + name + .+ + + target + + + host + ansibleworks.com + + + host + *.ansibleworks.com + + + + + Ansible.com (partial) + + ruleset + + name + Ansible.com (partial) + rule + + from + ^http://(galaxy\.)?ansible\.com/ + to + https://$1ansible.com/ + + securecookie + + + host + ^\.ansible\.com$ + name + ^__cfduid$ + + + host + ^galaxy\.ansible\.com$ + name + .+ + + + target + + + host + ansible.com + + + host + *.ansible.com + + + + + Antevenio (partial) + + ruleset + + name + Antevenio (partial) + rule + + from + ^http://reachandrich\.antevenio\.com/ + to + https://reachandrich.antevenio.com/ + + securecookie + + host + ^reachandrich\.antevenio\.com$ + name + .+ + + target + + host + reachandrich.antevenio.com + + + + Anthrocon + + ruleset + + name + Anthrocon + rule + + from + ^http://(www\.)?anthrocon\.org/ + to + https://www.anthrocon.org/ + + securecookie + + + host + ^\.anthrocon\.org$ + name + .+ + + + host + ^www\.anthrocon\.org$ + name + .+ + + + target + + + host + anthrocon.org + + + host + www.anthrocon.org + + + + + Anti-Phishing Working Group (partial) + + ruleset + + name + Anti-Phishing Working Group (partial) + rule + + + from + ^https?://(www\.)?a(?:ntiphishin|pw)g\.org/ + to + https://$1apwg.org/ + + + from + ^http://(education|info|members)\.apwg\.org/ + to + https://$1.apwg.org/ + + + securecookie + + host + ^(?:.+\.)?apwg\.org$ + name + .+ + + target + + + host + antiphishing.org + + + host + www.antiphishing.org + + + host + apwg.org + + + host + *.apwg.org + + + + + AntiPolygraph.org + + ruleset + + name + AntiPolygraph.org + rule + + from + ^http://(www\.)?antipolygraph\.org/ + to + https://$1antipolygraph.org/ + + target + + + host + antipolygraph.org + + + host + www.antipolygraph.org + + + + + AntiSpam e.V. + + ruleset + + name + AntiSpam e.V. + platform + mixedcontent + rule + + from + ^http://(www\.)?antispam-ev\.de/ + to + https://$1antispam-ev.de/ + + target + + + host + antispam-ev.de + + + host + www.antispam-ev.de + + + + + Anunciou.com (false MCB) + + ruleset + + name + Anunciou.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?anunciou\.com/ + to + https://$1anunciou.com/ + + securecookie + + host + ^\.anunciou\.com$ + name + .+ + + target + + + host + anunciou.com + + + host + *.anunciou.com + + + + + Anunciou.com (partial) + + ruleset + + name + Anunciou.com (partial) + rule + + from + ^http://(www\.)?anunciou\.com/(?=componentes/|estilo\.css|favicon\.ico|images/) + to + https://$1anunciou.com/ + + target + + + host + anunciou.com + + + host + www.anunciou.com + + + + + Anybeat + + ruleset + + name + Anybeat + platform + mixedcontent + rule + + from + ^http://(www\.)?anybeat\.com/ + to + https://www.anybeat.com/ + + target + + + host + www.anybeat.com + + + host + anybeat.com + + + + + Anybots.com + + ruleset + + name + Anybots.com + rule + + from + ^http://(www\.)?anybots\.com/ + to + https://$1anybots.com/ + + securecookie + + host + ^(?:w*\.)?anybots\.com$ + name + .+ + + target + + + host + anybots.com + + + host + *.anybots.com + + + + + Anyfi.net + + ruleset + + name + Anyfi.net + rule + + from + ^https?://(?:www\.)?anyfi\.net/ + to + https://anyfi.net/ + + securecookie + + host + ^anyfi\.net$ + name + .* + + target + + + host + anyfi.net + + + host + www.anyfi.net + + + + + Anyproz + + ruleset + + name + Anyproz + rule + + from + ^http://(www\.)?anonyproz\.com/ + to + https://$1anonyproz.com/ + + securecookie + + host + ^www\.anonyproz\.com$ + name + .* + + target + + + host + anonyproz.com + + + host + www.anonyproz.com + + + + + Anzen.org.uk + + ruleset + + name + Anzen.org.uk + rule + + from + ^http://(www\.)?anzen\.org\.uk/ + to + https://$1anzen.org.uk/ + + securecookie + + host + ^(?:w*\.)?anzen\.org\.uk$ + name + .+ + + target + + + host + anzen.org.uk + + + host + *.anzen.org.uk + + + + + Apache (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:ci|feathercast|vmgump)\.apache\.org/ + + + pattern + ^http://(?:activemq|aries|attic|geronimo|helix|jackrabbit|lucy|oodt|santuario|tuscany)\.apache\.org/+(?!css/|favicon\.ico|images/|oodt\.css|style/|stylesheets/) + + + pattern + ^http://ooo-forums\.apache\.org/ + + + pattern + ^http://git\.apache\.org/ + + + name + Apache (partial) + rule + + + from + ^http://(?:www\.)?apache\.org/ + to + https://www.apache.org/ + + + from + ^http://([^/:@]+)?\.apache\.org/ + to + https://$1.apache.org/ + + + securecookie + + host + ^(.+\.)?apache\.org$ + name + .* + + target + + + host + apache.org + + + host + *.apache.org + + + + + Apache OpenOffice (partial) + + ruleset + + name + Apache OpenOffice (partial) + rule + + from + ^http://((?:download|forums?|wiki|www)\.)?openoffice\.org/ + to + https://$1openoffice.org/ + + target + + + host + openoffice.org + + + host + *.openoffice.org + + + + + Apache.org (false MCB) + + ruleset + + name + Apache.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(activemq|aries|attic|geronimo|helix|jackrabbit|lucy|oodt|santuario|tuscany)\.apache\.org/ + to + https://$1.apache.org/ + + target + + + host + activemq.apache.org + + + host + aries.apache.org + + + host + attic.apache.org + + + host + geronimo.apache.org + + + host + helix.apache.org + + + host + jackrabbit.apache.org + + + host + lucy.apache.org + + + host + oodt.apache.org + + + host + santuario.apache.org + + + host + tuscany.apache.org + + + + + Apica + + ruleset + + name + Apica + rule + + + from + ^https?://(?:www\.)?apicasystem\.com/ + to + https://www.apicasystem.com/ + + + from + ^http://webtracker\.apicasystem\.com/ + to + https://webtracker.apicasystem.com/ + + + securecookie + + host + ^.+\.apicasystem\.com$ + name + .+ + + target + + + host + apicasystem.com + + + host + *.apicasystem.com + + + + + Apigee (partial) + + ruleset + + name + Apigee (partial) + rule + + from + ^http://(accounts\.|dev\.|www\.)?apigee\.com/ + to + https://$1apigee.com/ + + securecookie + + host + ^(?:accounts\.)?apigee\.com$ + name + .+ + + target + + + host + apigee.com + + + host + *.apigee.com + + + + + Apigility.org + + ruleset + + name + Apigility.org + rule + + from + ^http://(www\.)?apigility\.org/ + to + https://$1apigility.org/ + + target + + + host + apigility.org + + + host + www.apigility.org + + + + + Apna India + + ruleset + + name + Apna India + rule + + from + ^http://(media\.|www\.|yellowpages\.)?apnaindia\.com/ + to + https://$1apnaindia.com/ + + securecookie + + host + ^\.apnaindia\.com$ + name + .+ + + target + + + host + apnaindia.com + + + host + *.apnaindia.com + + + + + Apollo-auto.com + + ruleset + + name + Apollo-auto.com + platform + firefox + rule + + from + ^http://www\.apollo-auto\.com/ + to + https://www.apollo-auto.com/ + + securecookie + + host + ^www\.apollo-auto\.com$ + name + .+ + + target + + host + www.apollo-auto.com + + + + Apomedifot.de (partial) + + ruleset + + name + Apomedifot.de (partial) + rule + + from + ^http://(www\.)?apomedifot\.de/ + to + https://$1apomedifot.de/ + + target + + + host + apomedifot.de + + + host + www.apomedifot.de + + + + + Apoteket.se + + ruleset + + name + Apoteket.se + rule + + + from + ^http://apoteket\.se/ + to + https://www.apoteket.se/ + + + from + ^http://www\.apoteket\.se/ + to + https://www.apoteket.se/ + + + target + + + host + apoteket.se + + + host + www.apoteket.se + + + + + Apotheke.de + + ruleset + + name + Apotheke.de + rule + + from + ^http://(www\.)?apotheke\.de/ + to + https://www.apotheke.de/ + + target + + + host + apotheke.de + + + host + www.apotheke.de + + + + + App.net + + ruleset + + name + App.net + rule + + from + ^http://((?:account|alpha|files|join|www)\.)?app\.net/ + to + https://$1app.net/ + + securecookie + + host + ^(?:(?:account|alpha|\.?join|www)\.)?app\.net$ + name + .+ + + target + + + host + app.net + + + host + *.app.net + + + + + AppDynamics + + ruleset + + name + AppDynamics + rule + + from + ^http://(www\.)?appdynamics\.com/ + to + https://$1appdynamics.com/ + + target + + + host + appdynamics.com + + + host + www.appdynamics.com + + + + + AppGratis + + ruleset + + name + AppGratis + rule + + from + ^http://(www\.)?appgratis\.com/ + to + https://$1appgratis.com/ + + target + + + host + appgratis.com + + + host + www.appgratis.com + + + + + AppHarbor.com + + ruleset + + name + AppHarbor.com + rule + + from + ^http://(www\.)?appharbor\.com/ + to + https://$1appharbor.com/ + + target + + + host + appharbor.com + + + host + www.appharbor.com + + + + + AppNexus (partial) + + ruleset + + name + AppNexus (partial) + rule + + + from + ^http://cdn\.adnxs\.com/ + to + https://secure.adnxs.com/ + + + from + ^http://(\w+\.)?adnxs\.com/ + to + https://$1adnxs.com/ + + + from + ^http://console\.appnexus\.com/ + to + https://console.appnexus.com/ + + + securecookie + + + host + ^(?:.*\.)?adnxs\.com$ + name + .+ + + + host + ^console\.appnexus\.com$ + name + .+ + + + target + + + host + adnxs.com + + + host + *.adnxs.com + + + host + console.appnexus.com + + + + + AppThemes.com + + ruleset + + name + AppThemes.com + rule + + from + ^http://((?:cdn|demos|docs|forums|ideas|marketplace|my|www)\.)?appthemes\.com/ + to + https://$1appthemes.com/ + + target + + + host + appthemes.com + + + host + *.appthemes.com + + + + + AppVault (partial) + + ruleset + + name + AppVault (partial) + rule + + + from + ^https?://(?:www\.)?appvault\.com/ + to + https://appvault.com/ + + + from + ^http://(www\.)?skilldrum\.com/ + to + https://$1skilldrum.com/ + + + securecookie + + host + ^(?:www)?\.skilldrum\.com$ + name + .+ + + target + + + host + appvault.com + + + host + www.appvault.com + + + host + skilldrum.com + + + host + *.skilldrum.com + + + + + Appache (partial) + + ruleset + + name + Appache (partial) + rule + + + from + ^http://(?:www\.)?5apps\.com/ + to + https://5apps.com/ + + + from + ^http://(develop|libs)\.5apps\.com/ + to + https://$1.5apps.com/ + + + securecookie + + host + ^5apps\.com$ + name + .+ + + target + + + host + 5apps.com + + + host + *.5apps.com + + + + + Appcelerator + + ruleset + + name + Appcelerator + rule + + from + ^http://(?:www\.)?appcelerator\.com/ + to + https://www.appcelerator.com/ + + securecookie + + host + ^www\.appcelerator\.com$ + name + .+ + + target + + + host + appcelerator.com + + + host + www.appcelerator.com + + + + + Appetize.io + + ruleset + + name + Appetize.io + rule + + from + ^http://(www\.)?appetize\.io/ + to + https://$1appetize.io/ + + target + + + host + appetize.io + + + host + www.appetize.io + + + + + Appie Hein.com + + ruleset + + name + Appie Hein.com + rule + + from + ^http://(www\.)?appiehein\.com/ + to + https://$1appiehein.com/ + + target + + + host + appiehein.com + + + host + www.appiehein.com + + + + + Apple (false MCB) + + ruleset + + name + Apple (false MCB) + platform + mixedcontent + rule + + from + ^http://support\.apple\.com/ + to + https://support.apple.com/ + + securecookie + + host + ^support\.apple\.com$ + name + .+ + + target + + host + support.apple.com + + + + Apple Parts Store (partial) + + ruleset + + name + Apple Parts Store (partial) + rule + + + from + ^http://(?:www\.)?applepartsstore\.com/ + to + https://applepartsstore.com/ + + + from + ^http://(?:www\.)?re-pear\.com/ + to + https://www.re-pear.com/ + + + securecookie + + + host + ^\.(?:www\.)?applepartsstore\.com$ + name + .+ + + + host + ^\.re-pear\.com$ + name + .+ + + + target + + + host + applepartsstore.com + + + host + *.applepartsstore.com + + + host + re-pear.com + + + host + *.re-pear.com + + + + + Apple.com (partial) + + ruleset + + exclusion + + + pattern + ^http://concierge\.apple\.com/(?!resources/) + + + pattern + ^http://store\.apple\.com/(?!Catalog/|[\w/]+/css/|rs/) + + + name + Apple.com (partial) + rule + + + from + ^http://a772\.g\.akamai\.net/7/772/51/ef865529940b9e/www\.apple\.com/ + to + https://a248.e.akamai.net/7/772/51/ef865529940b9e/www.apple.com/ + + + from + ^http://((?:albert|appleid|application|(?:nc-|nwk-)?as-images|bugreport|buyiphone\d?|certifications|concierge|configuration|connect|consultants-locator|csat|daw|developer|devforums|discussions(?:japan)?|ecommerce|service\d?\.ess|expresslane|gsx|gsxapp|help|hrweb|ia?d|idmsa|iforgot|(?:(?:affiliate|api|autolinkmaker|banners|bookkeeper|buy|c|client-api|collection|du|feeds|files|genius(?:-download|-upload)?(?:-2)?|homesharing|init|itunesu|ld-(?:\d|nk11|st11)|linkmaker|my|myapp|p\d+-buy|p100-sandbox|p[12]-u|partiality|pd-nk|pd-st|play|redeem|rss|s|sandbox|sc|se|search|sidebar|sitemanager|sp|static|stations|su|tl|tl-activity|upp|userpub|volume|vpp|widgets)\.)?itunes|itunesconnect|jointventure|jobs|locate|mypage|n(?:c|wk)-(?:buyiphone|unbrick1)|nwk-unbrick2|onetoone|phobos|portal|register|remoteadvisor|reportingitc|reseller|reserve|salestraining|securemetrics|selfsolve|store|secure\d?\.store|supportprofile|swdlp|uptodate|wdg2|www)\.)?apple\.com/ + to + https://$1apple.com/ + + + from + ^http://appldnld\.apple\.com/ + to + https://a248.e.akamai.net/7/248/51/20120908/appldnld.apple.com/ + + + from + ^http://devimages\.apple\.com/ + to + https://devimages.apple.com.edgekey.net/ + + + from + ^http://(?:images|ssl)\.apple\.com/ + to + https://ssl.apple.com/ + + + from + ^http://docs\.info\.apple\.com/ + to + https://a248.e.akamai.net/7/248/51/20120908/docs.info.apple.com/ + + + from + ^http://manuals\.info\.apple\.com/ + to + https://a248.e.akamai.net/7/248/51/20120908/manuals.info.apple.com/ + + + from + ^http://www0\.info\.apple\.com/ + to + https://a248.e.akamai.net/7/1300/51/20120908/www0.info.apple.com/ + + + from + ^http://(?:prod\.|www\.)?lists\.apple\.com/ + to + https://lists.apple.com/ + + + from + ^http://store(?:images\.|\.storeimages\.cdn-)apple\.com/ + to + https://storeimages.apple.com.edgekey.net/ + + + from + ^http://(hrweb|reserve)\.cdn-apple\.com/ + to + https://$1.cdn-apple.com/ + + + from + ^(http://(www\.)?|https://www\.)opensource\.apple\.com/ + to + https://opensource.apple.com/ + + + from + ^http://ax\.phobos\.apple\.com\.edgesuite\.net/ + to + https://s.mzstatic.com/ + + + from + ^http://km\.support\.apple\.com/ + to + https://km.support.apple.com.edgekey.net/ + + + from + ^http://(?:www\.)?iwork\.com/ + to + https://www.iwork.com/ + + + from + ^http://(www\.)?me\.com/ + to + https://$1me.com/ + + + from + ^http://(?:www\.)?mzstatic\.com/ + to + https://www.apple.com/ + + + from + ^http://a(\d)\.mzstatic\.com/ + to + https://s$1.mzstatic.com/ + + + from + ^http://(accertify|itc|metrics|s\d?)\.mzstatic\.com/ + to + https://$1.mzstatic.com/ + + + from + ^http://r\.mzstatic\.com/ + to + https://s.mzstatic.com/ + + + downgrade + 1 + from + ^https?://trailers\.apple\.com/ + to + http://trailers.apple.com/ + + + from + ^http://(www\.)?itunes\.com/ + to + https://$1itunes.com/ + + + securecookie + + + host + ^\.apple\.com$ + name + ^s_.+$ + + + host + ^(?!\.?(?:concierg|stor)e\.apple\.com).+\.apple\.com$ + name + .+ + + + target + + + host + a772.g.akamai.net + + + host + apple.com + + + host + *.apple.com + + + host + *.cdn-apple.com + + + host + ax.phobos.apple.com.edgesuite.net + + + host + iwork.com + + + host + www.iwork.com + + + host + me.com + + + host + www.me.com + + + host + mzstatic.com + + + host + *.mzstatic.com + + + host + itunes.com + + + host + www.itunes.com + + + + + Applebee's + + ruleset + + name + Applebee's + platform + mixedcontent + rule + + + from + ^http://applebees\.com/ + to + https://applebees.com/ + + + from + ^http://(my|www)\.applebees\.com/ + to + https://$1.applebees.com/ + + + target + + + host + applebees.com + + + host + *.applebees.com + + + + + Applianceshop.eu + + ruleset + + name + Applianceshop.eu + rule + + from + ^http://(www\.)?applianceshop\.eu/ + to + https://$1applianceshop.eu/ + + securecookie + + host + ^\.www\.applianceshop\.eu$ + name + .+ + + target + + + host + applianceshop.eu + + + host + *.applianceshop.eu + + + + + ApplyWeb.com + + ruleset + + name + ApplyWeb.com + rule + + from + ^http://(www\.)?applyweb\.com/ + to + https://$1applyweb.com/ + + target + + + host + applyweb.com + + + host + www.applyweb.com + + + + + ApplyYourself + + ruleset + + name + ApplyYourself + rule + + from + ^http://app\.applyyourself\.com/ + to + https://app.applyyourself.com/ + + securecookie + + host + ^app\.applyyourself\.com$ + name + .+ + + target + + host + app.applyyourself.com + + + + Appseccalifornia.org + + ruleset + + name + Appseccalifornia.org + platform + firefox + rule + + from + ^http://appseccalifornia\.org/ + to + https://appseccalifornia.org/ + + securecookie + + host + ^appseccalifornia\.org$ + name + .+ + + target + + host + appseccalifornia.org + + + + Appsecute + + ruleset + + name + Appsecute + rule + + from + ^http://(www\.)?appsecute\.com/ + to + https://$1appsecute.com/ + + securecookie + + host + ^\.appsecute\.com$ + name + .+ + + target + + + host + appsecute.com + + + host + *.appsecute.com + + + + + Appsites.com + + ruleset + + name + Appsites.com + rule + + from + ^http://(?:www\.)?appsites\.com/ + to + https://appsites.com/ + + securecookie + + host + ^appsites\.com$ + name + .+ + + target + + + host + appsites.com + + + host + www.appsites.com + + + + + Apress.com + + ruleset + + name + Apress.com + rule + + from + ^http://(www\.)?apress\.com/ + to + https://www.apress.com/ + + target + + + host + apress.com + + + host + www.apress.com + + + + + Apricorn.com + + ruleset + + name + Apricorn.com + rule + + from + ^http://(www\.)?apricorn\.com/ + to + https://$1apricorn.com/ + + target + + + host + apricorn.com + + + host + www.apricorn.com + + + + + April.org + + ruleset + + name + April.org + platform + mixedcontent + rule + + from + ^http://([^/:@]+\.)?april\.org/ + to + https://$1april.org/ + + securecookie + + host + ^.*\.april\.org$ + name + .+ + + target + + + host + april.org + + + host + *.april.org + + + + + Aquent (partial) + + ruleset + + name + Aquent (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?aquent\.com/ + to + https://$1aquent.com/ + + + from + ^http://(www\.)?aquent\.us/(common|global)/ + to + https://$1aquent.com/$2/ + + + securecookie + + host + ^(.*\.)?aquent\.com$ + name + .* + + target + + + host + aquent.com + + + host + *.aquent.com + + + host + aquent.us + + + host + www.aquent.us + + + + + Aqueous Vapor.com (partial) + + ruleset + + name + Aqueous Vapor.com (partial) + rule + + from + ^http://(www\.)?aqueousvapor\.com/(?=favicon\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1aqueousvapor.com/ + + target + + + host + aqueousvapor.com + + + host + www.aqueousvapor.com + + + + + Aquiss (partial) + + ruleset + + exclusion + + pattern + ^http://ebilling\.aquiss\.net/(?!css/|templates/) + + name + Aquiss (partial) + rule + + from + ^http://(ebilling|secure)\.aquiss\.net/ + to + https://$1.aquiss.net/ + + securecookie + + host + ^secure\.aquiss\.net$ + name + .* + + target + + host + *.aquiss.net + + + + Arachnys + + ruleset + + name + Arachnys + rule + + from + ^http://(app\.|www\.)?arachnys\.com/ + to + https://$1arachnys.com/ + + securecookie + + host + ^(?:app)?\.arachnys\.com$ + name + .+ + + target + + + host + arachnys.com + + + host + *.arachnys.com + + + + + Arbeitsagentur.de + + ruleset + + name + Arbeitsagentur.de + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?arbeitsagentur\.de/ + to + https://www.arbeitsagentur.de/ + + + from + ^http://jobboerse\.arbeitsagentur\.de/ + to + https://jobboerse.arbeitsagentur.de/ + + + target + + + host + arbeitsagentur.de + + + host + www.arbeitsagentur.de + + + host + jobboerse.arbeitsagentur.de + + + + + Arbor Networks (partial) + + ruleset + + name + Arbor Networks (partial) + rule + + + from + ^https?://(?:www\.)?arbor(?:\.net|networks\.com)/ + to + https://www.arbornetworks.com/ + + + from + ^http://atlas\.arbor\.net/ + to + https://atlas.arbor.net/ + + + target + + + host + arbor.net + + + host + *.arbor.net + + + host + arbornetworks.com + + + host + www.arbornetworks.com + + + + + ArcGIS (partial) + + ruleset + + name + ArcGIS (partial) + rule + + + from + ^http://(developers\.|webaccounts\.|www\.)?arcgis\.com/ + to + https://$1arcgis.com/ + + + from + ^http://serverapi\.arcgisonline\.com/ + to + https://serverapi.arcgisonline.com/ + + + securecookie + + host + ^www\.arcgis\.com$ + name + .+ + + target + + + host + arcgis.com + + + host + *.arcgis.com + + + host + serverapi.arcgisonline.com + + + + + Arch Linux + + ruleset + + name + Arch Linux + rule + + from + ^http://([^/:@\.]+\.)?archlinux\.org/ + to + https://$1archlinux.org/ + + securecookie + + host + ^.*\.archlinux\.org$ + name + .* + + target + + + host + archlinux.org + + + host + *.archlinux.org + + + + + Archi-Strasbourg + + ruleset + + name + Archi-Strasbourg + rule + + from + ^http://(www\.)?archi-strasbourg\.org/ + to + https://archi-strasbourg.org/ + + target + + + host + archi-strasbourg.org + + + host + www.archi-strasbourg.org + + + + + Architect's Journal + + ruleset + + name + Architect's Journal + rule + + from + ^http://(?:www\.)?(?:architectsjournal|theaj)\.co\.uk/ + to + https://www.architectsjournal.co.uk/ + + securecookie + + host + ^www\.architectsjournal\.co\.uk$ + name + .+ + + target + + + host + architectsjournal.co.uk + + + host + www.architectsjournal.co.uk + + + host + theaj.co.uk + + + host + www.theaj.co.uk + + + + + ArchiveOfOurOwn + + ruleset + + name + ArchiveOfOurOwn + rule + + from + ^http://(www\.)?archiveofourown\.org/ + to + https://archiveofourown.org/ + + target + + + host + archiveofourown.org + + + host + www.archiveofourown.org + + + + + Archives-ouvertes.fr (partial) + + ruleset + + name + Archives-ouvertes.fr (partial) + rule + + from + ^http://tel\.archives-ouvertes\.fr/ + to + https://tel.archives-ouvertes.fr/ + + securecookie + + host + ^tel\.archives-ouvertes\.fr$ + name + .+ + + target + + host + tel.archives-ouvertes.fr + + + + Archos.com + + ruleset + + name + Archos.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?archos\.com/ + to + https://www.archos.com/ + + target + + + host + archos.com + + + host + www.archos.com + + + + + ArcorCentralLogin + + ruleset + + name + ArcorCentralLogin + rule + + from + ^http://(www\.)?arcor\.de/login/login\.jsp + to + https://www.arcor.de/login/login.jsp + + securecookie + + host + ^(.*\.)?arcor\.de$ + name + .* + + target + + + host + www.arcor.de + + + host + arcor.de + + + + + Ardour (partial) + + ruleset + + name + Ardour (partial) + rule + + from + ^http://(www\.)?(community\.)?ardour\.org/ + to + https://$1$2ardour.org/ + + securecookie + + host + ^\.community\.ardour\.org$ + name + .+ + + target + + + host + ardour.org + + + host + *.ardour.org + + + + + Argeweb hosting.nl + + ruleset + + name + Argeweb hosting.nl + rule + + from + ^http://webmail\.argewebhosting\.nl/ + to + https://webmail.argewebhosting.nl/ + + target + + host + webmail.argewebhosting.nl + + + + Argeweb.nl + + ruleset + + name + Argeweb.nl + rule + + from + ^http://(www\.)?argeweb\.nl/ + to + https://$1argeweb.nl/ + + target + + + host + argeweb.nl + + + host + www.argeweb.nl + + + + + Argonne National Laboratory (partial) + + ruleset + + name + Argonne National Laboratory (partial) + rule + + + from + ^https?://(?:www\.)?(cels|evs|mcs)\.anl\.gov/ + to + https://www.$1.anl.gov/ + + + from + ^https?://(?:www\.)?aps\.anl\.gov/(css/|img/) + to + https://www.aps.anl.gov/$1 + + + target + + + host + *.anl.gov + + + host + www.*.anl.gov + + + + + Argos (partial) + + ruleset + + name + Argos (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?argos(emails|-spain)?\.co\.uk/ + to + https://www.argos$1.co.uk/ + + + from + ^http://image\.email\.argos\.co\.uk/ + to + https://image.email.argos.co.uk/ + + + from + ^https?://(?:www\.)?argos\.ie/ + to + https://www.argos.ie/ + + + from + ^http://competitions\.argos\.ie/ + to + https://competitions.argos.ie/ + + + from + ^https?://(?:www\.)?argoscareers\.com/ + to + https://www.argoscareers.com/ + + + from + ^https?://(?:www\.)?argosonline\.es/ + to + https://www.argosonline.es/ + + + from + ^http://www\.greatcareers\.co\.uk/ + to + https://www.greatcareers.co.uk/ + + + from + ^https?://(?:www\.)?wearechoosy\.com/ + to + https://www.wearechoosy.com/ + + + securecookie + + + host + ^.*\.argos\.co\.uk$ + name + .* + + + host + ^www\.argos\.ie$ + name + .* + + + host + ^www\.argoscareers\.com$ + name + .* + + + host + ^www\.argosemails\.co\.uk$ + name + .* + + + host + ^www\.argosonline\.es$ + name + .* + + + host + ^www\.greatcareers\.co\.uk$ + name + .* + + + host + ^www\.wearechoosy\.com$ + name + .* + + + target + + + host + argos.co.uk + + + host + *.argos.co.uk + + + host + image.email.argos.co.uk + + + host + argos.ie + + + host + *.argos.ie + + + host + argoscareers.com + + + host + www.argoscareers.com + + + host + argosemails.co.uk + + + host + www.argosemails.co.uk + + + host + argosonline.es + + + host + www.argosonline.es + + + host + argos-spain.co.uk + + + host + www.argos-spain.co.uk + + + host + www.greatcareers.co.uk + + + host + wearechoosy.com + + + host + www.wearechoosy.com + + + + + Argyle Social (partial) + + ruleset + + name + Argyle Social (partial) + rule + + from + ^http://goals\.ar\.gy/ + to + https://goals.ar.gy/ + + target + + host + goals.ar.gy + + + + Ariejan.net + + ruleset + + name + Ariejan.net + rule + + from + ^http://(?:(spock\.)|www\.)?ariejan\.net/ + to + https://$1ariejan.net/ + + target + + + host + ariejan.net + + + host + *.ariejan.net + + + + + Arisebitcoin.com + + ruleset + + name + Arisebitcoin.com + rule + + from + ^http://(www\.)?arisebitcoin\.com/ + to + https://$1arisebitcoin.com/ + + target + + + host + arisebitcoin.com + + + host + www.arisebitcoin.com + + + + + Arizona State University (partial) + + ruleset + + exclusion + + + pattern + ^https?://(?:www\.)?herbergercollege\.asu\.edu/images/ + + + pattern + ^http://lib\.asu\.edu/(?!misc/|sites/) + + + name + Arizona State University (partial) + rule + + + from + ^https?://(?:www\.)?asu\.edu/ + to + https://www.asu.edu/ + + + from + ^http://(articulation|artsandsciences|asu(?:events(?:-dev)?|news|research|webdevilarchive)|aztransmac2|bmi|(?:www\.)?cabhp|caliper|catalog|ccj|cfo|chemistry|chem-webtools|(?:shprs\.|sst\.|www\.)?clas|commguide|commons|connect|contact|copp|cronkite|csid|cubic|docs|drupal|eadvisor|email|ex2010|flexdisplay|forms|global|geoda(?:center)?|graduation|havasu|healthsolutions|herbergeronline2?|hpchelp|humanities|labs|(?:www\.)?law|lists|lodestar|lsi|(?:drupal|jmars|viewer)\.mars|mathpost|mayo|morrisoninstitute|mslgoee|my|myasucourses|(?:crm\.|hrsa\.)?oasis|ocw|outreach|prehealth|scholarships|search|selfsub|shibboleth2?|sls|spa|studyabroad|syshealth|uresearch|sirc|ssw|uto|vcweb|visit|secure\.vpsa|washingtoncenter|web(?:app\d?|consulting|login|work2?)?|(?:www\.)?west|wpcareyonline|yourfuture)\.asu\.edu/ + to + https://$1.asu.edu/ + + + from + ^https?://budget\.asu\.edu/ + to + https://cfo.asu.edu/budget + + + from + ^https?://(?:www\.)?(asuonline|pgs\.clas|digitalculture|geoplan|graduate|lib|newcollege|nursingandhealth|opendoor|origins|researchadmin|shesc|sols|student(?:succes|venture)?s|technology|wpcarey)\.asu\.edu/ + to + https://$1.asu.edu/ + + + from + ^https?://career\.asu\.edu/(?:index\.htm)?(?:$|\?.*) + to + https://students.asu.edu/career/ + + + from + ^https?://cronkitenews\.(?:jmc\.)?asu\.edu/ + to + https://cronkitenews.jmc.asu.edu/ + + + from + ^https?://geo(?:graphy|plan)\.asu\.edu/ + to + https://geoplan.asu.edu/ + + + from + ^https?://(?:www\.)?prod\.gios\.asu\.edu/ + to + https://www.prod.gios.asu.edu/ + + + from + ^https?://(?:www\.)?herberger(?:college|institute)\.asu\.edu/ + to + https://herbergerinstitute.asu.edu/ + + + from + ^https?://web\.hida\.asu\.edu/(?:$|\?.*) + to + https://herbergerinstitute.asu.edu/ + + + from + ^https?://libguides\.asu\.edu/(css\d*|data|js)/ + to + https://libguides.com/$1/ + + + from + ^https?://marsed\.(?:mars\.)?asu\.edu/ + to + https://marsed.mars.asu.edu/ + + + from + ^https?://technology\.poly\.asu\.edu/(?:$|\?.*) + to + https://technology.asu.edu/ + + + from + ^https?://(?:www\.)?wikispaces\.asu\.edu/i/ + to + https://ssl.wikicdn.com/i/ + + + from + ^http://secure\.asufoundation\.org/ + to + https://secure.asufoundation.org/ + + + from + ^http://(www\.)?geodacenter\.org/ + to + https://$1geodacenter.org/ + + + securecookie + + + host + ^\.(?:(?:articulation|asuevents|asuonline|asuresearch|catalog|cfo|s(?:hprs|st)\.clas|commons|contact|cronkite|csid|cubic|eadvisor|flexdisplay|geo(?:da|dacenter|plan)?|global|graduat(?:e|ion)|havasu|healthsolutions|lsi|viewer\.mars|mayo|newcollege|nursingandhealth|ocw|outreach|prehealth|researchadmin|shesc|sls|sols|student(?:succes|venture)?s|technology|uresearch|uto|visit|web|webconsulting|yourfuture)\.)?asu\.edu$ + name + .+ + + + host + ^\w[\w\.]*\.asu\.edu$ + name + .+ + + + host + ^secure\.asufoundation\.org$ + name + .+ + + + target + + + host + asu.edu + + + host + *.asu.edu + + + host + secure.asufoundation.org + + + host + geodacenter.org + + + host + www.geodacenter.org + + + + + Arlanda.se + + ruleset + + name + Arlanda.se + rule + + + from + ^http://arlanda\.se/ + to + https://www.arlanda.se/ + + + from + ^http://www\.arlanda\.se/ + to + https://www.arlanda.se/ + + + target + + + host + arlanda.se + + + host + www.arlanda.se + + + + + ArmoryBids.com + + ruleset + + name + ArmoryBids.com + rule + + from + ^http://(www\.)?armorybids\.com/ + to + https://$1armorybids.com/ + + securecookie + + host + ^www\.armorybids\.com$ + name + .+ + + target + + + host + armorybids.com + + + host + www.armorybids.com + + + + + Army Times (partial) + + ruleset + + name + Army Times (partial) + rule + + from + ^http://(awi|projects)\.armytimes\.com/ + to + https://$1.armytimes.com/ + + securecookie + + host + ^\.armytimes\.com + name + ^s_(?!p|s)\w+$ + + target + + host + *.armytimes.com + + + + Armyoutlet.de + + ruleset + + name + Armyoutlet.de + rule + + from + ^http://(www\.)?armyoutlet\.de/ + to + https://www.armyoutlet.de/ + + target + + + host + armyoutlet.de + + + host + www.armyoutlet.de + + + + + Array.is (partial) + + ruleset + + name + Array.is (partial) + rule + + from + ^http://(?:www\.)?array\.is/ + to + https://array.is/ + + securecookie + + host + ^array\.is$ + name + .+ + + target + + + host + array.is + + + host + www.array.is + + + + + Arriva + + ruleset + + name + Arriva + rule + + from + ^https?://(?:www\.)?arrivabus\.co\.uk/ + to + https://www.arrivabus.co.uk/ + + securecookie + + host + ^www\.arrivabus\.co\.uk$ + name + .* + + target + + + host + arrivabus.co.uk + + + host + www.arrivabus.co.uk + + + + + Ars Technica (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?arstechnica\.com/(?!ads/|civis/ucp\.php|favicon\.ico|public-shared/|services/incr\.php|subscriptions(?:$|[?/])|wp-content/) + + name + Ars Technica (partial) + rule + + + from + ^http://ars\.to/ + to + https://bit.ly/ + + + from + ^http://((?:cms|coins|hq|www)\.)?arstechnica\.com/ + to + https://$1arstechnica.com/ + + + from + ^http://feeds\.arstechnica\.com/(?:\?.*)?$ + to + https://feedburner.google.com/fb/a/home + + + from + ^http://stats2\.arstechnica\.com/ + to + https://condenast.112.2o7.net/ + + + from + ^http://api\.arstechnica\.net/ + to + https://api.arstechnica.net/ + + + from + ^http://(?:(?:media|origin)\.arstechnica\.com|(?:cdn|static)\.arstechnica\.net)/ + to + https://cdn.arstechnica.net/ + + + securecookie + + host + ^\.arstechnica\.com$ + name + ^(?:mbox|s_\w+|timeSpent|__utm\w)$ + + target + + + host + ars.to + + + host + arstechnica.com + + + host + *.arstechnica.com + + + host + *.arstechnica.net + + + + + Art Practical + + ruleset + + name + Art Practical + platform + mixedcontent + rule + + from + ^http://(www\.)?artpractical\.com/ + to + https://artpractical.com/ + + target + + + host + artpractical.com + + + host + www.artpractical.com + + + + + Art2pO.com + + ruleset + + name + Art2pO.com + rule + + from + ^http://(www\.)?art2po\.com/ + to + https://$1art2po.com/ + + securecookie + + host + ^(?:w*\.)?art2po\.com$ + name + .+ + + target + + + host + art2po.com + + + host + *.art2po.com + + + + + ArtSkills + + ruleset + + name + ArtSkills + rule + + from + ^http://(static\.|www\.)?artskills\.com/ + to + https://$1artskills.com/ + + securecookie + + host + ^(?:w*\.)?artskills\.com$ + name + .+ + + target + + + host + artskills.com + + + host + *.artskills.com + + + + + Artday + + ruleset + + name + Artday + rule + + from + ^http://(?:auction\.|www\.)?artday\.co\.kr/ + to + https://auction.artday.co.kr/ + + securecookie + + host + ^auction\.artday\.co\.kr$ + name + .+ + + target + + + host + artday.co.kr + + + host + *.artday.co.kr + + + + + Arte do Lar.com.br + + ruleset + + name + Arte do Lar.com.br + rule + + from + ^http://(www\.)?(artedolar|festeirice)\.com\.br/ + to + https://$1$2.com.br/ + + securecookie + + host + ^\.(?:www\.)?(?:artedolar|festeirice)\.com\.br$ + name + .+ + + target + + + host + artedolar.com.br + + + host + *.artedolar.com.br + + + host + festeirice.com.br + + + host + *.festeirice.com.br + + + + + Artemis-IA.eu (partial) + + ruleset + + name + Artemis-IA.eu (partial) + rule + + from + ^http://community\.artemis-ia\.eu/ + to + https://community.artemis-ia.eu/ + + securecookie + + host + ^community\.artemis-ia\.eu$ + name + .+ + + target + + host + community.artemis-ia.eu + + + + Artemis.net + + ruleset + + name + Artemis.net + rule + + from + ^http://(www\.)?artemis(\.net|internet\.com)/ + to + https://$1artemis$2/ + + securecookie + + host + ^\.artemis(?:\.net|internet\.com)$ + name + .+ + + target + + + host + artemis.net + + + host + *.artemis.net + + + host + artemisinternet.com + + + host + *.artemisinternet.com + + + + + Artfiles New Media (partial) + + ruleset + + name + Artfiles New Media (partial) + rule + + + from + ^http://((?:dcp\.c|documents|www)\.)?artfiles\.de/ + to + https://$1artfiles.de/ + + + from + ^http://(?:www\.)?webmail\.artfiles\.de/ + to + https://webmail.artfiles.de/ + + + securecookie + + host + ^(?:webmail|www)?\.artfiles\.de$ + name + .+ + + target + + + host + artfiles.de + + + host + *.artfiles.de + + + + + Articulate.com (false MCB) + + ruleset + + name + Articulate.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?articulate\.com/ + to + https://www.articulate.com/ + + securecookie + + host + ^www\.articulate\.com$ + name + .+ + + target + + + host + articulate.com + + + host + www.articulate.com + + + + + Articulate.com (partial) + + ruleset + + name + Articulate.com (partial) + rule + + + from + ^http://(?:www\.)?articulate\.com/(?=blog/wp-(?:content|includes)/|favicon\.ico|images/|javascripts/|stylesheets/) + to + https://www.articulate.com/ + + + from + ^http://store\.articulate\.com/ + to + https://store.articulate.com/ + + + securecookie + + host + ^\.?store\.articulate\.com$ + name + .+ + + target + + + host + articulate.com + + + host + *.articulate.com + + + + + Artizone (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?artizone\.com/(?!Content/|favicon\.ico|Scripts/|Shipping/(?:Account/LogOn|Help/ContactUs)) + + name + Artizone (partial) + rule + + from + ^http://(image\.|www\.)?artizone\.com/ + to + https://$1artizone.com/ + + securecookie + + + host + ^\.artizone\.com$ + name + ^__utm\w$ + + + host + ^www\.artizone\.com$ + name + ^artizoneStat$ + + + target + + + host + artizone.com + + + host + *.artizone.com + + + + + Arvixe + + ruleset + + name + Arvixe + rule + + + from + ^http://((?:affiliates|postoffice|support|www)\.)?arvixe\.com/ + to + https://$1arvixe.com/ + + + from + ^https?://mail\.arvixe\.com/ + to + https://postoffice.arvixe.com/ + + + securecookie + + host + ^(.*\.)?arvixe\.com$ + name + .* + + target + + + host + arvixe.com + + + host + *.arvixe.com + + + + + Asahi Shimbun (partial) + + ruleset + + exclusion + + pattern + ^http://digital\.asahi\.com/(?!css/|img/|login) + + name + Asahi Shimbun (partial) + rule + + from + ^http://(ajw|digital)\.asahi\.com/ + to + https://$1.asahi.com/ + + securecookie + + host + ^ajw\.asahi\.com$ + name + .+ + + target + + host + *.asahi.com + + + + Asana (partial) + + ruleset + + name + Asana (partial) + rule + + + from + ^http://((?:app|beta|help|www)\.)?asana\.com/ + to + https://$1asana.com/ + + + from + ^https?://blog\.asana\.com/ + to + https://asanablog.wpengine.com/ + + + from + ^https?://connect\.asana\.com/ + to + https://t.trackedlink.net/ + + + from + ^https?://developers?\.asana\.com/ + to + https://asanadev.wpengine.com/ + + + securecookie + + host + ^(?:app\.)?asana\.com$ + name + .* + + target + + + host + asana.com + + + host + *.asana.com + + + + + Asbestos Safety and Eradication Agency + + ruleset + + name + Asbestos Safety and Eradication Agency + rule + + from + ^http://(?:www\.)?asbestossafety\.gov\.au/ + to + https://asbestossafety.gov.au/ + + target + + + host + asbestossafety.gov.au + + + host + *.asbestossafety.gov.au + + + + + Asbury Park Press (partial) + + ruleset + + name + Asbury Park Press (partial) + rule + + from + ^https?://(?:cmsimg\.|www\.)?app\.com/ + to + https://www.app.com/ + + securecookie + + host + ^www\.app\.com$ + name + .+ + + target + + + host + app.com + + + host + *.app.com + + + + + Asciinema.org (partial) + + ruleset + + name + Asciinema.org (partial) + rule + + + from + ^http://(www\.)?asciinema\.org/ + to + https://$1asciinema.org/ + + + from + ^http://blog\.asciinema\.org/(?=images/|stylesheets/) + to + https://asciinema-blog.herokuapp.com/ + + + securecookie + + host + ^asciinema\.org$ + name + .+ + + target + + + host + asciinema.org + + + host + *.asciinema.org + + + + + Ascio.com (partial) + + ruleset + + name + Ascio.com (partial) + rule + + from + ^http://portal\.ascio\.com/ + to + https://portal.ascio.com/ + + securecookie + + host + ^portal\.ascio\.com$ + name + .+ + + target + + host + portal.ascio.com + + + + Asheville Citizen-Times + + ruleset + + name + Asheville Citizen-Times + rule + + from + ^https?://(?:cmsimg\.|www\.)?citizen-times\.com/ + to + https://www.citizen-times.com/ + + securecookie + + host + ^www\.citizen-times\.com$ + name + .+ + + target + + + host + citizen-times.com + + + host + *.citizen-times.com + + + + + Ashford.com (partial) + + ruleset + + name + Ashford.com (partial) + rule + + from + ^https?://(?:www\.)?ashford\.com/(css_compressed/|images/|global/util/loginRedirect\.jsp|marketing/|myaccount/) + to + https://www.ashford.com/$1 + + target + + + host + ashford.com + + + host + www.ashford.com + + + + + Ashland Fiber.net (partial) + + ruleset + + name + Ashland Fiber.net (partial) + rule + + from + ^http://(www\.)?ashlandfiber\.net/ + to + https://$1ashlandfiber.net/ + + target + + + host + ashlandfiber.net + + + host + www.ashlandfiber.net + + + + + Asia-Pacific Network Information Centre (partial) + + ruleset + + name + Asia-Pacific Network Information Centre (partial) + rule + + + from + ^https?://(?:www\.)?apnic\.net/ + to + https://www.apnic.net/ + + + from + ^http://submit\.apnic\.net/ + to + https://submit.apnic.net/ + + + from + ^https?://(?:www\.)?myapnic\.net/ + to + https://myapnic.net/ + + + securecookie + + host + ^\.apnic\.net$ + name + .* + + target + + + host + apnic.net + + + host + *.apnic.net + + + host + myapnic.net + + + host + www.myapnic.net + + + + + Asianfanfics + + ruleset + + name + Asianfanfics + rule + + from + ^http://(www\.)?asianfanfics\.com/ + to + https://$1asianfanfics.com/ + + securecookie + + host + ^\.asianfanfics\.com$ + name + .+ + + target + + + host + asianfanfics.com + + + host + *.asianfanfics.com + + + + + Ask Ubuntu.com + + ruleset + + name + Ask Ubuntu.com + rule + + from + ^http://(meta\.|www\.)?askubuntu\.com/ + to + https://$1askubuntu.com/ + + securecookie + + host + ^\.(?:meta\.)?askubuntu\.com$ + name + .+ + + target + + + host + askubuntu.com + + + host + *.askubuntu.com + + + + + Ask a Patient + + ruleset + + name + Ask a Patient + rule + + from + ^https?://(?:www\.)?askapatient\.com/ + to + https://www.askapatient.com/ + + securecookie + + host + ^(?:www\.)?askapatient\.com$ + name + .+ + + target + + + host + askapatient.com + + + host + www.askapatient.com + + + + + AskMonty (partial) + + ruleset + + name + AskMonty (partial) + rule + + from + ^http://(downloads\.|kb\.|www\.)?askmonty\.org/ + to + https://$1askmonty.org/ + + securecookie + + host + ^(?:kb\.)?askmonty\.org$ + name + .+ + + target + + + host + askmonty.org + + + host + *.askmonty.org + + + + + Askives.com + + ruleset + + name + Askives.com + rule + + from + ^http://(docs\.|www\.)?askives\.com/ + to + https://$1askives.com/ + + securecookie + + host + ^(?:\.|www\.)?askives\.com$ + name + .+ + + target + + + host + askives.com + + + host + *.askives.com + + + + + Asmc.de + + ruleset + + name + Asmc.de + rule + + from + ^http://(www\.)?asmc\.de/ + to + https://www.asmc.de/ + + target + + + host + asmc.de + + + host + www.asmc.de + + + + + Aspect Security + + ruleset + + name + Aspect Security + rule + + from + ^http://(www\.)?aspectsecurity\.com/ + to + https://$1aspectsecurity.com/ + + target + + + host + aspectsecurity.com + + + host + www.aspectsecurity.com + + + + + Aspen.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?aspen\.com/(?!favicon\.ico|files/|sites/) + + name + Aspen.com (partial) + rule + + from + ^http://(?:www\.)?aspen\.com/ + to + https://secure.bluehost.com/~aspenco3/ + + securecookie + + host + ^\.aspen\.com$ + name + ^s_\w+$ + + target + + + host + aspen.com + + + host + *.aspen.com + + + + + Assay Assured.co.uk (partial) + + ruleset + + name + Assay Assured.co.uk (partial) + rule + + from + ^http://(www\.)?assayassured\.co\.uk/(?!$|\?|index\.php|site/*(?:$|[?/])) + to + https://$1assayassured.co.uk/ + + target + + + host + assayassured.co.uk + + + host + www.assayassured.co.uk + + + + + Assembla (partial) + + ruleset + + name + Assembla (partial) + rule + + + from + ^http://((?:assets\d|nooku|(?:scala-ide-)?portfolio|svn2|trac2?|www)\.)?assembla\.com/ + to + https://$1assembla.com/ + + + from + ^https?://feedback\.assembla\.com/track\.gif + to + https://assembla.uservoice.com/track.gif + + + securecookie + + host + ^(?:.*\.)?assembla\.com$ + name + .+ + + target + + + host + assembla.com + + + host + *.assembla.com + + + + + Assemble.me + + ruleset + + name + Assemble.me + rule + + from + ^http://(www\.)?assemble\.me/ + to + https://$1assemble.me/ + + securecookie + + host + ^\.assemble\.me$ + name + .+ + + target + + + host + assemble.me + + + host + *.assemble.me + + + + + Assembly.com (partial) + + ruleset + + name + Assembly.com (partial) + rule + + from + ^http://(?:www\.)?assembly\.com/ + to + https://assembly.com/ + + target + + + host + assembly.com + + + host + www.assembly.com + + + + + Asset Insight + + ruleset + + name + Asset Insight + rule + + from + ^http://(www\.)?assetinsightinc\.com/ + to + https://$1assetinsightinc.com/ + + securecookie + + host + ^\.assetinsightinc.com$ + name + .+ + + target + + + host + assetinsightinc.com + + + host + *.assetinsightinc.com + + + + + Assistance-Multimedia.fr + + ruleset + + name + Assistance-Multimedia.fr + rule + + from + ^http://(www\.)?assistance-multimedia\.fr/ + to + https://$1assistance-multimedia.fr/ + + target + + + host + assistance-multimedia.fr + + + host + www.assistance-multimedia.fr + + + + + Associated Press (partial) + + ruleset + + name + Associated Press (partial) + rule + + from + ^http://binaryapi\.ap\.org/ + to + https://d3obzbnzikmki9.cloudfront.net/ + + target + + host + binaryapi.ap.org + + + + Association for Learning Technology (partial) + + ruleset + + name + Association for Learning Technology (partial) + rule + + from + ^http://(www\.)?alt\.ac\.uk/((?:civicrm|user)(?:$|\?|/)|modules/|sites/|themes/) + to + https://$1alt.ac.uk/$2 + + target + + + host + alt.ac.uk + + + host + www.alt.ac.uk + + + + + Association for Progressive Communications + + ruleset + + name + Association for Progressive Communications + rule + + + from + ^http://((www\.gn|lists|www)\.)?apc\.org/ + to + https://$1apc.org/ + + + from + ^http://flossprize\.apc\.org/[^?]* + to + https://www.apc.org/en/node/1786 + + + from + ^http://gn\.apc\.org/[^?]* + to + https://www.gn.apc.org/ + + + securecookie + + host + ^\.(?:www\.gn\.)?apc\.org$ + name + .+ + + target + + + host + apc.org + + + host + *.apc.org + + + + + Association for Psychological Science + + ruleset + + name + Association for Psychological Science + rule + + + from + ^https?://(?:www\.)?psychologicalscience\.org/ + to + https://www.psychologicalscience.org/ + + + from + ^http://aps\.psychologicalscience\.org/ + to + https://aps.psychologicalscience.org/ + + + securecookie + + host + ^.+\.psychologicalscience\.org$ + name + .+ + + target + + + host + psychologicalscience.org + + + host + *.psychologicalscience.org + + + + + Association of National Advertisers + + ruleset + + name + Association of National Advertisers + rule + + from + ^https?://(?:www\.)?ana\.net/ + to + https://www.ana.net/ + + securecookie + + host + ^\.ana\.net$ + name + .+ + + target + + + host + ana.net + + + host + *.ana.net + + + + + Asterisk (partial) + + ruleset + + name + Asterisk (partial) + rule + + from + ^http://(issues\.|wiki\.)?asterisk\.org/ + to + https://$1asterisk.org/ + + securecookie + + host + ^wiki\.asterisk\.org$ + name + .+ + + target + + + host + asterisk.org + + + host + *.asterisk.org + + + + + Asterisk Exchange (partial) + + ruleset + + name + Asterisk Exchange (partial) + rule + + from + ^http://(www\.)?asteriskexchange\.com/(images|stylesheets|system)/ + to + https://$1asteriskexchange.com/$2/ + + target + + + host + asteriskexchange.com + + + host + www.asteriskexchange.com + + + + + Astra.io + + ruleset + + name + Astra.io + rule + + from + ^http://(?:www\.)?astra\.io/ + to + https://astra.io/ + + target + + + host + astra.io + + + host + www.astra.io + + + + + Astrocentro.com (partial) + + ruleset + + name + Astrocentro.com (partial) + rule + + from + ^http://tienda\.astrocentro\.com/ + to + https://tienda.astrocentro.com/ + + target + + host + tienda.astrocentro.com + + + + AstronomicalTours + + ruleset + + name + AstronomicalTours + rule + + from + ^https?://(?:www\.)?astronomicaltours\.net/ + to + https://www.astronomicaltours.net/ + + securecookie + + host + ^www\.astronomicaltours\.net$ + name + .* + + target + + + host + astronomicaltours.net + + + host + www.astronomicaltours.net + + + + + AtariAge + + ruleset + + name + AtariAge + rule + + from + ^http://(www\.)?atariage\.com/ + to + https://atariage.com/ + + securecookie + + host + ^(.*\.)?atariage\.com$ + name + .* + + target + + + host + atariage.com + + + host + *.atariage.com + + + + + Atheists.org (partial) + + ruleset + + name + Atheists.org (partial) + rule + + from + ^http://(www\.)?atheists\.org/ + to + https://$1atheists.org/ + + securecookie + + host + ^(?:w*\.)?atheists\.org$ + name + .+ + + target + + + host + atheists.org + + + host + *.atheists.org + + + + + Ativismo.org.br (partial) + + ruleset + + name + Ativismo.org.br (partial) + rule + + from + ^http://(www\.)?ativismo\.org\.br/ + to + https://$1ativismo.org.br/ + + target + + + host + ativismo.org.br + + + host + www.ativismo.org.br + + + + + Atlantic Media (partial) + + ruleset + + name + Atlantic Media (partial) + rule + + + from + ^https?://(?:cdn\.|www\.)?govexec\.com/ + to + https://www.govexec.com/ + + + from + ^http://secure\.nationaljournal\.com/ + to + https://secure.nationaljournal.com/ + + + from + ^http://admin\.theatlantic(cities|wire)\.com/ + to + https://admin.theatlantic$1.com/ + + + from + ^http://cdn\.theatlanticcities\.com/ + to + https://admin.theatlanticcities.com/ + + + securecookie + + + host + \.govexec\.com$ + name + .* + + + host + ^admin\.theatlantic(cities|wire)$ + name + .* + + + target + + + host + govexec.com + + + host + *.govexec.com + + + host + secure.nationaljournal.com + + + host + *.theatlanticcities.com + + + host + admin.theatlanticwire.com + + + + + Atlantic Metro Communications (partial) + + ruleset + + exclusion + + pattern + ^http://blog\. + + name + Atlantic Metro Communications (partial) + platform + mixedcontent + rule + + from + ^http://(my\.|www\.)?atlanticmetro\.net/ + to + https://$1my.atlanticmetro.net/ + + securecookie + + host + ^(.*\.)?atlanticmetro\.net$ + name + .* + + target + + + host + atlanticmetro.net + + + host + *.atlanticmetro.net + + + + + Atlantic.net + + ruleset + + name + Atlantic.net + rule + + from + ^http://([^/:@]+\.)?atlantic\.net/ + to + https://$1atlantic.net/ + + securecookie + + host + ^(?:.*\.)?atlantic\.net$ + name + .+ + + target + + + host + atlantic.net + + + host + *.atlantic.net + + + + + Atlantis.sk + + ruleset + + name + Atlantis.sk + rule + + from + ^http://(webmail\.|www\.)?atlantis\.sk/ + to + https://$1atlantis.sk/ + + securecookie + + host + ^(?:.+\.)?atlantis\.sk$ + name + .+ + + target + + + host + atlantis.sk + + + host + *.atlantis.sk + + + + + Atlassian (partial) + + ruleset + + exclusion + + + pattern + http://click\.mailer\.atlassian\.com/ + + + pattern + ^http://.+\.(?:ams|dyn\.syd|inf|internal|sf)\.atlassian\.com/ + + + name + Atlassian (partial) + rule + + + from + ^http://status\.atlassian\.com/ + to + https://atlassian.statuspage.io/ + + + from + ^http://([\w.]+\.)?atlassian\.com/ + to + https://$1atlassian.com/ + + + from + ^https?://atlassian\.wpengine\.netdna-cdn\.com/ + to + https://blogs.atlassian.com/ + + + from + ^https?://wac\.29c4\.edgecastcdn\.net/8029C4/wac-small//wac/ + to + https://summit.atlassian.com/ + + + securecookie + + host + ^(?:ace|answers|aug|confluence|developer|id|jira|marketplace|my|openid|support)\.atlassian\.com$ + name + .+ + + target + + + host + atlassian.com + + + host + *.atlassian.com + + + host + atlassian.wpengine.netdna-cdn.com + + + + + Atlassian.net + + ruleset + + name + Atlassian.net + rule + + from + ^http://(bro-tracker|ecosystem|mariadb|solidphp)\.atlassian\.net/ + to + https://$1.atlassian.net/ + + securecookie + + host + ^(?:bro-tracker|ecosystem)\.atlassian\.net$ + name + .+ + + target + + host + *.atlassian.net + + + + Atmail + + ruleset + + name + Atmail + rule + + from + ^http://(www\.)?atmail\.com/ + to + https://$1atmail.com/ + + securecookie + + host + ^\.atmail\.com$ + name + .* + + target + + + host + atmail.com + + + host + *.atmail.com + + + + + Atom.io (partial) + + ruleset + + name + Atom.io (partial) + rule + + from + ^http://(discuss\.|www\.)?atom\.io/ + to + https://$1atom.io/ + + target + + + host + atom.io + + + host + *.atom.io + + + + + Atomic Cowlick + + ruleset + + name + Atomic Cowlick + rule + + from + ^http://(www\.)?atomiccowlick\.com/ + to + https://$1atomiccowlick.com/ + + securecookie + + host + ^(www\.)?atomiccowlick\.com$ + name + .* + + target + + + host + atomiccowlick.com + + + host + www.atomiccowlick.com + + + + + Atomicorp + + ruleset + + name + Atomicorp + platform + mixedcontent + rule + + from + ^http://(www\.)?atomicorp\.com/ + to + https://www.atomicorp.com/ + + target + + + host + www.atomicorp.com + + + host + atomicorp.com + + + + + Atomz + + ruleset + + name + Atomz + rule + + from + ^http://(center\.|content\.|www\.)?atomz\.com/ + to + https://$1atomz.com/ + + target + + + host + atomz.com + + + host + *.atomz.com + + + + + Atos.net + + ruleset + + name + Atos.net + rule + + from + ^http://((?:a[eprtu]|ascentlookout|b[egr]|c[hnz]|cms|de|dk|eg|es|fi|fr|hr|in|it|jp|mx|n[alz]|p[hlt]|prd|r[osu]|se|sk|t[hrw]|uk|www|za)\.)?atos\.net/ + to + https://$1atos.net/ + + securecookie + + host + ^(?:\w+\.)?atos\.net$ + name + .+ + + target + + + host + atos.net + + + host + *.atos.net + + + + + Atrativa.com.br (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?atrativa\.com\.br/+(?!img/) + + name + Atrativa.com.br (partial) + rule + + from + ^http://(?:secure\.|www\.)?atrativa\.com\.br/ + to + https://secure.atrativa.com.br/ + + target + + + host + atrativa.com.br + + + host + *.atrativa.com.br + + + + + Attachmate (partial) + + ruleset + + name + Attachmate (partial) + rule + + from + ^http://(download|mysupport)\.attachmate\.com/ + to + https://$1.attachmate.com/ + + securecookie + + host + ^download\.attachmate\.com$ + name + .+ + + target + + host + *.attachmate.com + + + + Attention Deficit Disorders Association - Southern Region + + ruleset + + name + Attention Deficit Disorders Association - Southern Region + rule + + from + ^http://(www\.)?adda-sr\.org/ + to + https://www.adda-sr.org/ + + target + + + host + adda-sr.org + + + host + www.adda-sr.org + + + + + Attic-backup.org + + ruleset + + name + Attic-backup.org + rule + + from + ^http://(www\.)?attic-backup\.org/ + to + https://$1attic-backup.org/ + + target + + + host + attic-backup.org + + + host + www.attic-backup.org + + + + + Attorney-General's Department + + ruleset + + name + Attorney-General's Department + rule + + from + ^http://(?:www\.)?ag\.gov\.au/ + to + https://www.ag.gov.au/ + + target + + + host + ag.gov.au + + + host + *.ag.gov.au + + + + + Attracta + + ruleset + + name + Attracta + rule + + from + ^http://(\w+\.)?attracta\.com/ + to + https://$1attracta.com/ + + securecookie + + host + ^(?:.*\.)?attracta\.com$ + name + .+ + + target + + + host + attracta.com + + + host + *.attracta.com + + + + + Atypon + + ruleset + + name + Atypon + platform + mixedcontent + rule + + from + ^http://(www\.)?atypon\.com/ + to + https://$1atypon.com/ + + securecookie + + host + ^(.*\.)?atypon\.com$ + name + .* + + target + + + host + atypon.com + + + host + *.atypon.com + + + + + Auctionbunker + + ruleset + + name + Auctionbunker + rule + + from + ^http://(www\.)?auctionbunker\.com/ + to + https://$1auctionbunker.com/ + + securecookie + + host + ^(?:w*\.)?auctionbunker\.com$ + name + .+ + + target + + + host + auctionbunker.com + + + host + *.auctionbunker.com + + + + + Audemars Piguet.com + + ruleset + + name + Audemars Piguet.com + rule + + from + ^http://(?:www\.)?audemarspiguet\.com/ + to + https://www.audemarspiguet.com/ + + securecookie + + host + ^\.audemarspiguet\.com$ + name + .+ + + target + + + host + audemarspiguet.com + + + host + *.audemarspiguet.com + + + + + Audentio.com + + ruleset + + name + Audentio.com + rule + + from + ^http://(www\.)?audentio\.com/ + to + https://$1audentio.com/ + + securecookie + + host + ^www\.audentio\.com$ + name + .+ + + target + + + host + audentio.com + + + host + www.audentio.com + + + + + Audible.de + + ruleset + + name + Audible.de + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?audible\.de/ + to + https://www.audible.de/ + + + from + ^http://audible\.de/ + to + https://www.audible.de/ + + + securecookie + + host + ^(.*\.)?audible\.de$ + name + .* + + target + + + host + audible.de + + + host + *.audible.de + + + + + Audience Ad Network (partial) + + ruleset + + name + Audience Ad Network (partial) + platform + mixedcontent + rule + + + from + ^http://manage\.audienceadnetwork\.com/ + to + https://manage.audienceadnetwork.com/ + + + from + ^http://(\w+)\.qwobl\.net/ + to + https://$1.qwobl.net/ + + + securecookie + + + host + ^manage\.audienceadnetwork\.com$ + name + .* + + + host + ^\.qwobl\.net$ + name + .* + + + target + + + host + manage.audienceadnetwork.com + + + host + *.qwobl.net + + + + + Audience Amplify.com (partial) + + ruleset + + name + Audience Amplify.com (partial) + rule + + from + ^http://ads\.audienceamplify\.com/ + to + https://ib.adnxs.com/ + + target + + host + ads.audienceamplify.com + + + + Audience IQ.com + + ruleset + + name + Audience IQ.com + rule + + + from + ^http://www\.audienceiq\.com/.* + to + https://www.experian.com/business-services/digital-advertising.html?cat1=marketing-services + + + from + ^http://d\.audienceiq\.com/ + to + https://d.audienceiq.com/ + + + securecookie + + host + ^\.audienceiq\.com$ + name + .+ + + target + + host + *.audienceiq.com + + + + Audience-Discovery.com + + ruleset + + name + Audience-Discovery.com + rule + + from + ^http://(www\.)?audience-discovery\.com/ + to + https://$1audience-discovery.com/ + + securecookie + + host + ^(?:w*\.)?audience-discovery\.com$ + name + .+ + + target + + + host + audience-discovery.com + + + host + *.audience-discovery.com + + + + + AudienceScience + + ruleset + + name + AudienceScience + rule + + + from + ^http://login\.audiencescience\.com/ + to + https://login.audiencescience.com/ + + + from + ^http://(ads|js|pix|pix0[124])\.revsci\.net/ + to + https://$1.revsci.net/ + + + from + ^https?://ad.targetingmarketplace.com/ + to + https://ad.yieldmanager.com/ + + + from + ^https?://(?:connect\.|www\.)?wunderloop\.net/ + to + https://connect.wunderloop.net/ + + + from + ^http://req\.connect\.wunderloop\.net/ + to + https://req.connect.wunderloop.net/ + + + securecookie + + + host + ^login\.audiencescience\.com$ + name + .* + + + host + ^\.revsci\.net$ + name + .* + + + host + ^.+\.wunderloop\.net$ + name + .+ + + + target + + + host + login.audiencescience.com + + + host + *.revsci.net + + + host + ad.targetingmarketplace.com + + + host + wunderloop.net + + + host + *.wunderloop.net + + + host + req.connect.wunderloop.net + + + + + Audiko + + ruleset + + name + Audiko + platform + mixedcontent + rule + + + from + ^http://(s[45]\.|www\.)?audiko\.net/ + to + https://$1audiko.net/ + + + from + ^https?://css\.cdn\.audiko\.net/ + to + https://d21bsjqmai8lm5.cloudfront.net/ + + + from + ^https?://jpg\.st\.audiko\.net/ + to + https://s4.audiko.net/ + + + target + + + host + audiko.net + + + host + *.audiko.net + + + host + css.cdn.audiko.net + + + host + jpg.st.audiko.net + + + + + AudioGO + + ruleset + + name + AudioGO + rule + + from + ^http://(?:www\.)?audiogo\.com/ + to + https://www.audiogo.com/ + + securecookie + + host + ^\.?www\.audiogo\.com$ + name + .+ + + target + + + host + audiogo.com + + + host + *.audiogo.com + + + + + Audioboo.fm (partial) + + ruleset + + name + Audioboo.fm (partial) + rule + + from + ^http://(www\.)?audioboo\.fm/ + to + https://$1audioboo.fm/ + + target + + + host + audioboo.fm + + + host + www.audioboo.fm + + + + + Aufbix.org (partial) + + ruleset + + name + Aufbix.org (partial) + rule + + from + ^http://hydra\.aufbix\.org/ + to + https://hydra.aufbix.org/ + + securecookie + + host + ^hydra\.aufbix\.org$ + name + .+ + + target + + host + hydra.aufbix.org + + + + Aulani.jobs + + ruleset + + name + Aulani.jobs + rule + + from + ^http://(?:www\.)?aulani\.jobs/ + to + https://aulani.jobs/ + + securecookie + + host + ^aulani\.jobs$ + name + .+ + + target + + + host + aulani.jobs + + + host + www.aulani.jobs + + + + + AusCERT.org + + ruleset + + name + AusCERT.org + rule + + from + ^http://(www\.)?auscert\.org\.au/ + to + https://$1auscert.org.au/ + + target + + + host + auscert.org.au + + + host + www.auscert.org.au + + + + + AusRegistry (partial) + + ruleset + + name + AusRegistry (partial) + rule + + from + ^http://(www\.)?ausregistry\.com\.au/ + to + https://$1ausregistry.com.au/ + + securecookie + + host + ^(www\.)?ausregistry\.com\.au$ + name + .* + + target + + + host + ausregistry.com.au + + + host + www.ausregistry.com.au + + + + + AusinfoTech + + ruleset + + name + AusinfoTech + rule + + from + ^http://(www\.)?ausinfotech\.net/ + to + https://$1ausinfotech.net/ + + securecookie + + host + ^\.ausinfotech\.net$ + name + .+ + + target + + + host + ausinfotech.net + + + host + *.ausinfotech.net + + + + + Austin Fit Magazine.com + + ruleset + + name + Austin Fit Magazine.com + rule + + + from + ^http://(www\.)?austinfitmagazine\.com/ + to + https://$1austinfitmagazine.com/ + + + from + ^https?://static\d\.austinfitmagazine\.com/ + to + https://www.austinfitmagazine.com/ + + + securecookie + + host + ^(?:w*\.)?austinfitmagazine\.com$ + name + .+ + + target + + + host + austinfitmagazine.com + + + host + *.austinfitmagazine.com + + + + + Austiners.com (false MCB) + + ruleset + + name + Austiners.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?austiners\.com/ + to + https://www.austiners.com/ + + securecookie + + host + ^(?:www)?\.austiners\.com$ + name + .+ + + target + + + host + austiners.com + + + host + *.austiners.com + + + + + Austrade + + ruleset + + name + Austrade + rule + + from + ^http://(?:www\.)?austrade\.gov\.au/ + to + https://www.austrade.gov.au/ + + target + + + host + austrade.gov.au + + + host + *.austrade.gov.au + + + + + Australia: UNSC + + ruleset + + name + Australia: UNSC + rule + + from + ^http://(?:www\.)?australia-unsc\.gov\.au/ + to + https://australia-unsc.gov.au/ + + target + + + host + australia-unsc.gov.au + + + host + *.australia-unsc.gov.au + + + + + Australian Aged Care Quality Agency + + ruleset + + name + Australian Aged Care Quality Agency + rule + + from + ^http://(?:www\.)?aacqa\.gov\.au/ + to + https://www.aacqa.gov.au/ + + target + + + host + aacqa.gov.au + + + host + *.aacqa.gov.au + + + + + Australian Alps National Parks + + ruleset + + name + Australian Alps National Parks + rule + + from + ^http://(?:www\.)?theaustralianalps\.wordpress\.com/ + to + https://theaustralianalps.wordpress.com/ + + target + + + host + theaustralianalps.wordpress.com + + + host + *.theaustralianalps.wordpress.com + + + + + Australian Antarctic Data Centre + + ruleset + + name + Australian Antarctic Data Centre + rule + + from + ^http://(?:www\.)?data\.aad\.gov\.au/ + to + https://data.aad.gov.au/ + + target + + + host + data.aad.gov.au + + + host + *.data.aad.gov.au + + + + + Australian Business Register + + ruleset + + name + Australian Business Register + rule + + from + ^http://(?:www\.)?abr\.gov\.au/ + to + https://abr.gov.au/ + + target + + + host + abr.gov.au + + + host + *.abr.gov.au + + + + + Australian Clinical Trials + + ruleset + + name + Australian Clinical Trials + rule + + from + ^http://(?:www\.)?australianclinicaltrials\.gov\.au/ + to + https://www.australianclinicaltrials.gov.au/ + + target + + + host + australianclinicaltrials.gov.au + + + host + *.australianclinicaltrials.gov.au + + + + + Australian Competition and Consumer Commission + + ruleset + + name + Australian Competition and Consumer Commission + rule + + from + ^http://(?:www\.)?accc\.gov\.au/ + to + https://www.accc.gov.au/ + + target + + + host + accc.gov.au + + + host + *.accc.gov.au + + + + + Australian Crime Commission + + ruleset + + name + Australian Crime Commission + rule + + from + ^http://(?:www\.)?crimecommission\.gov\.au/ + to + https://www.crimecommission.gov.au/ + + target + + + host + crimecommission.gov.au + + + host + *.crimecommission.gov.au + + + + + Australian Data Archive + + ruleset + + name + Australian Data Archive + rule + + from + ^http://(?:www\.)?ada\.edu\.au/ + to + https://www.ada.edu.au/ + + target + + + host + ada.edu.au + + + host + *.ada.edu.au + + + + + Australian Early Development Census + + ruleset + + name + Australian Early Development Census + rule + + from + ^http://(?:www\.)?aedc\.gov\.au/ + to + https://www.aedc.gov.au/ + + target + + + host + aedc.gov.au + + + host + *.aedc.gov.au + + + + + Australian Education International + + ruleset + + name + Australian Education International + rule + + from + ^http://(?:www\.)?aei\.gov\.au/ + to + https://aei.gov.au/ + + target + + + host + aei.gov.au + + + host + *.aei.gov.au + + + + + Australian Emergency Management + + ruleset + + name + Australian Emergency Management + rule + + + from + ^http://(?:www\.)?em\.gov\.au/ + to + https://www.em.gov.au/ + + + from + ^http://(?:www\.)?emknowledge\.gov\.au/ + to + https://www.emknowledge.gov.au/ + + + target + + + host + em.gov.au + + + host + *.em.gov.au + + + host + emknowledge.gov.au + + + host + *.emknowledge.gov.au + + + + + Australian Emergency Management Institute + + ruleset + + name + Australian Emergency Management Institute + rule + + from + ^http://(?:www\.)?schools\.aemi\.edu\.au/ + to + https://schools.aemi.edu.au/ + + target + + + host + aemi.edu.au + + + host + *.aemi.edu.au + + + + + Australian Energy Regulator + + ruleset + + name + Australian Energy Regulator + rule + + from + ^http://(?:www\.)?aer\.gov\.au/ + to + https://www.aer.gov.au/ + + target + + + host + aer.gov.au + + + host + *.aer.gov.au + + + + + Australian Export Awards + + ruleset + + name + Australian Export Awards + rule + + from + ^http://(?:www\.)?exportawards\.gov\.au/ + to + https://www.exportawards.gov.au/ + + target + + + host + exportawards.gov.au + + + host + *.exportawards.gov.au + + + + + Australian Financial Security Authority + + ruleset + + name + Australian Financial Security Authority + rule + + from + ^http://(?:www\.)?afsa\.gov\.au/ + to + https://www.afsa.gov.au/ + + target + + + host + afsa.gov.au + + + host + *.afsa.gov.au + + + + + Australian Government Boards + + ruleset + + name + Australian Government Boards + rule + + from + ^http://(?:www\.)?ausgovboards\.gov\.au/ + to + https://www.ausgovboards.gov.au/ + + target + + + host + ausgovboards.gov.au + + + host + *.ausgovboards.gov.au + + + + + Australian Health Practitioner Regulation Agency + + ruleset + + name + Australian Health Practitioner Regulation Agency + rule + + from + ^http://(?:www\.)?ahpra\.gov\.au/ + to + https://www.ahpra.gov.au/ + + target + + + host + ahpra.gov.au + + + host + *.ahpra.gov.au + + + + + Australian Human Rights Commission + + ruleset + + name + Australian Human Rights Commission + rule + + from + ^http://(?:www\.)?humanrights\.gov\.au/ + to + https://www.humanrights.gov.au/ + + target + + + host + humanrights.gov.au + + + host + *.humanrights.gov.au + + + + + Australian Koala Foundation + + ruleset + + name + Australian Koala Foundation + rule + + from + ^http://(?:www\.)?savethekoala\.com/ + to + https://www.savethekoala.com/ + + target + + + host + savethekoala.com + + + host + www.savethekoala.com + + + + + Australian Law Reform Commission + + ruleset + + name + Australian Law Reform Commission + rule + + from + ^http://(?:www\.)?alrc\.gov\.au/ + to + https://www.alrc.gov.au/ + + target + + + host + alrc.gov.au + + + host + *.alrc.gov.au + + + + + Australian Maritime Safety Authority + + ruleset + + name + Australian Maritime Safety Authority + rule + + from + ^http://(?:www\.)?amsa\.gov\.au/ + to + https://www.amsa.gov.au/ + + target + + + host + amsa.gov.au + + + host + *.amsa.gov.au + + + + + Australian Passport Office + + ruleset + + name + Australian Passport Office + rule + + from + ^http://(?:www\.)?passports\.gov\.au/ + to + https://www.passports.gov.au/ + + target + + + host + passports.gov.au + + + host + *.passports.gov.au + + + + + Australian Plants, Botany and Horticulture + + ruleset + + name + Australian Plants, Botany and Horticulture + rule + + from + ^http://(?:www\.)?anbg\.gov\.au/ + to + https://www.anbg.gov.au/ + + target + + + host + anbg.gov.au + + + host + *.anbg.gov.au + + + + + Australian Sports Anti-Doping Authority + + ruleset + + name + Australian Sports Anti-Doping Authority + rule + + from + ^http://(?:www\.)?asada\.gov\.au/ + to + https://www.asada.gov.au/ + + target + + + host + asada.gov.au + + + host + *.asada.gov.au + + + + + Australian Sports Commission Learning Portal + + ruleset + + name + Australian Sports Commission Learning Portal + rule + + from + ^http://(?:www\.)?learning\.ausport\.gov\.au/ + to + https://learning.ausport.gov.au/ + + target + + + host + learning.ausport.gov.au + + + host + *.learning.ausport.gov.au + + + + + Australian Strategic Policy Institute + + ruleset + + name + Australian Strategic Policy Institute + rule + + from + ^http://(?:www\.)?aspi\.org\.au/ + to + https://www.aspi.org.au/ + + target + + + host + aspi.org.au + + + host + *.aspi.org.au + + + + + Australian Taxation Office + + ruleset + + name + Australian Taxation Office + rule + + from + ^http://(?:www\.)?ato\.gov\.au/ + to + https://www.ato.gov.au/ + + target + + + host + ato.gov.au + + + host + *.ato.gov.au + + + + + Australian Transport Safety Bureau + + ruleset + + name + Australian Transport Safety Bureau + rule + + from + ^http://(?:www\.)?atsb\.gov\.au/ + to + https://www.atsb.gov.au/ + + target + + + host + atsb.gov.au + + + host + *.atsb.gov.au + + + + + Australian Valuation Office + + ruleset + + name + Australian Valuation Office + rule + + from + ^http://(?:www\.)?avo\.gov\.au/ + to + https://www.avo.gov.au/ + + target + + + host + avo.gov.au + + + host + *.avo.gov.au + + + + + Australian War Memorial + + ruleset + + name + Australian War Memorial + rule + + from + ^http://(?:www\.)?awm\.gov\.au/ + to + https://www.awm.gov.au/ + + target + + + host + awm.gov.au + + + host + *.awm.gov.au + + + + + Austrian Airlines + + ruleset + + name + Austrian Airlines + rule + + from + ^http://(?:www\.)?austrian\.com/ + to + https://www.austrian.com/ + + target + + + host + austrian.com + + + host + www.austrian.com + + + + + Authorize.Net + + ruleset + + name + Authorize.Net + rule + + + from + ^http://authorize\.net/ + to + https://www.authorize.net/ + + + from + ^http://(account|captcha|content|(?:community\.)?developer|ems|simplecheckout|support|verify|www)\.authorize\.net/ + to + https://$1.authorize.net/ + + + from + ^https?://(?:www\.)?authorizenet\.com/ + to + https://www.authorize.net/ + + + from + ^http://(?:www\.)?fuzeqna\.com/ + to + https://www.fuzeqna.com/ + + + securecookie + + host + ^(?:.*\.)?authorize\.net$ + name + .+ + + target + + + host + authorize.net + + + host + *.authorize.net + + + host + authorizenet.com + + + host + www.authorizenet.com + + + host + fuzeqna.com + + + host + www.fuzeqna.com + + + + + Authy.com (partial) + + ruleset + + name + Authy.com (partial) + rule + + from + ^http://(www\.)?authy\.com/ + to + https://$1authy.com/ + + securecookie + + host + ^(?:www)?\.authy\.com$ + name + .+ + + target + + + host + authy.com + + + host + *.authy.com + + + + + Autistic Self-Advocacy Network + + ruleset + + name + Autistic Self-Advocacy Network + rule + + from + ^http://(?:www\.)?autisticadvocacy\.org/ + to + https://autisticadvocacy.org/ + + securecookie + + host + ^autisticadvocacy\.org$ + name + .+ + + target + + + host + autisticadvocacy.org + + + host + www.autisticadvocacy.org + + + + + Auto Ad Manager.com (partial) + + ruleset + + name + Auto Ad Manager.com (partial) + rule + + from + ^http://(www\.)?autoadmanager\.com/ + to + https://$1autoadmanager.com/ + + securecookie + + host + ^\.autoadmanager\.com$ + name + .+ + + target + + + host + autoadmanager.com + + + host + *.autoadmanager.com + + + + + Auto Rims & Accessories + + ruleset + + name + Auto Rims & Accessories + rule + + from + ^http://(www\.)?autorimsandaccessories\.com/ + to + https://$1autorimsandaccessories.com/ + + securecookie + + host + ^(?:.*\.)?autorimsandaccessories\.com$ + name + .+ + + target + + + host + autorimsandaccessories.com + + + host + *.autorimsandaccessories.com + + + + + Auto VPS.net + + ruleset + + name + Auto VPS.net + rule + + from + ^http://(www\.)?autovps\.net/ + to + https://$1autovps.net/ + + securecookie + + host + ^\.www\.autovps\.net$ + name + .+ + + target + + + host + autovps.net + + + host + *.autovps.net + + + + + AutoTrack.nl + + ruleset + + name + AutoTrack.nl + rule + + from + ^http://((?:assets|media|www)\.)?autotrack\.nl/ + to + https://$1autotrack.nl/ + + target + + + host + autotrack.nl + + + host + *.autotrack.nl + + + + + AutoTrader.com (partial) + + ruleset + + name + AutoTrader.com (partial) + rule + + + from + ^http://(ads\.)?autotrader\.com/ + to + https://$1autotrader.com/ + + + from + ^http://www\.autotrader\.com/(no_cache/) + to + https://www.autotrader.com/$1 + + + from + ^https?://(?:www\.)?autotraderstatic\.com/ + to + https://www.autotraderstatic.com/ + + + securecookie + + host + ^\.autotraderstatic\.com$ + name + .* + + target + + + host + autotrader.com + + + host + *.autotrader.com + + + host + autotraderstatic.com + + + host + *.autotraderstatic.com + + + + + Automatak.net + + ruleset + + name + Automatak.net + rule + + from + ^http://(www\.)?automatak\.net/ + to + https://$1automatak.net/ + + target + + + host + automatak.net + + + host + www.automatak.net + + + + + Automatic Data Processing (partial) + + ruleset + + name + Automatic Data Processing (partial) + rule + + + from + ^https?://(?:www\.)?(edu\.|flexdirect\.)?adp\.com/ + to + https://www.$1adp.com/ + + + from + ^http://([ac]gateway|clientcenter|(?:checkprint|yearend)\.pss|downtime2|eetime1|ewallet|glinterface|payexag|resource-secure|runpayroll|www\.tlm|totalsource)\.adp\.com/ + to + https://$1.adp.com/ + + + from + ^http://(www\.)?(adpvantage|documax|etime|ezlm|ipay(?:admin)?|ireports|netsecure|paystatements|payex|portal|quickview|reporting|select|support|timesaver)\.adp\.com/ + to + https://$1$2.adp.com/ + + + from + ^https?://(?:www\.)?(adp4me|easynet|smallbusiness)\.adp\.com/ + to + https://$1.adp.com/ + + + from + ^https?://(?:www\.)?dataaccessregistration\.adp\.com/(?:.*) + to + https://runpayroll.adp.com/default.aspx?action=newclient&RAP=1 + + + from + ^https?://(?:www\.)?ilearn\.adp\.com/\?*$ + to + https://adpe.csod.com/ + + + from + ^https?://(?:www\.)?virtualedge\.adp\.com/(?:.*) + to + https://www.adp.com/solutions/employer-services/pre-employment-services.aspx + + + from + ^http://adpe\.csod\.com/ + to + https://adpe.csod.com/ + + + securecookie + + + host + .*\.adp\.com$ + name + .+ + + + host + ^adpe\.csod\.com$ + name + .+ + + + target + + + host + adp.com + + + host + *.adp.com + + + host + adpe.csod.com + + + + + Automotive Industries + + ruleset + + name + Automotive Industries + platform + mixedcontent + rule + + from + ^http://(www\.)?ai(?:\.ai|-online\.com)/ + to + https://$1ai-online.com/ + + securecookie + + host + ^(.*\.)?ai-online\.com$ + name + .* + + target + + + host + ai.ai + + + host + www.ai.ai + + + host + ai-online.com + + + host + www.ai-online.com + + + + + Autotools.io + + ruleset + + name + Autotools.io + rule + + from + ^http://(?:www\.)?autotools\.io/ + to + https://autotools.io/ + + target + + + host + autotools.io + + + host + www.autotools.io + + + + + AvaHost (partial) + + ruleset + + name + AvaHost (partial) + rule + + from + ^http://(www\.)?secure\.avahost\.net/ + to + https://$1secure.avahost.net/ + + securecookie + + host + ^(?:www\.)?secure\.avahost\.net$ + name + .+ + + target + + + host + secure.avahost.net + + + host + www.secure.avahost.net + + + + + Avaaz + + ruleset + + name + Avaaz + rule + + + from + ^http://(?:secure\.|static\.|www\.)?avaaz\.org/ + to + https://secure.avaaz.org/ + + + from + ^http://(en|stats)\.avaaz\.org/ + to + https://$1.avaaz.org/ + + + securecookie + + host + ^\.avaaz\.org$ + name + .+ + + target + + + host + avaaz.org + + + host + *.avaaz.org + + + + + Avadirect + + ruleset + + name + Avadirect + rule + + from + ^http://(www\.)?avadirect\.com/ + to + https://www.avadirect.com/ + + target + + host + www.avadirect.com + + + + Avangate (partial) + + ruleset + + name + Avangate (partial) + rule + + + from + ^http://www\.avangate\.com/(docs/|favicon\.ico|images/|template_new/) + to + https://www.avangate.com/$1 + + + from + ^https?://cdn\.avangate\.com/web/ + to + https://www.avangate.com/ + + + from + ^http://((?:arms|download2?|secure)\.)?avangate\.com/ + to + https://$1avangate.com/ + + + from + ^http://edge\.avangate\.net/ + to + https://edge.avangate.net/ + + + securecookie + + host + ^secure\.avangate\.com$ + name + .* + + target + + + host + avangate.com + + + host + *.avangate.com + + + host + edge.avangate.net + + + + + Avanza.se + + ruleset + + name + Avanza.se + rule + + + from + ^http://www\.avanza\.se/ + to + https://www.avanza.se/ + + + from + ^http://avanza\.se/ + to + https://www.avanza.se/ + + + target + + + host + www.Avanza.se + + + host + Avanza.se + + + + + Avast (partial) + + ruleset + + name + Avast (partial) + rule + + + from + ^http://an\.avast\.com/ + to + https://avast-co-jp-ldc.d3.sc.omtrdc.net/ + + + from + ^http://(ans|blog|forum|id|my|static2?|support)\.avast\.com/ + to + https://$1.avast.com/ + + + from + ^http://sf0\.iavs\.net/ + to + https://a248.e.akamai.net/f/1639/9783/9m/sf0.iavs.net/ + + + securecookie + + + host + ^\.avast\.com$ + name + ^s_vi$ + + + host + ^(?:blog|my)\.avast\.com$ + name + .+ + + + target + + + host + *.avast.com + + + host + sf0.iavs.net + + + + + Avaxhome.ws (partial) + + ruleset + + name + Avaxhome.ws (partial) + rule + + from + ^http://(www\.)?avaxhome\.ws/ + to + https://avaxhome.ws/ + + target + + + host + avaxhome.ws + + + host + www.avaxhome.ws + + + + + Avaya (partial) + + ruleset + + name + Avaya (partial) + rule + + + from + ^https?://(?:www\.)?avaya\.com/(_assets/|PremiumIcon\.asp|uk/ResourceWriter\.ashx|uk/RtImage\.aspx) + to + https://www.avaya.com/$1 + + + from + ^http://(downloads|grt|sso|support(?:betasite-stg)?)\.avaya\.com/ + to + https://$1.avaya.com/ + + + securecookie + + host + ^.+\.avaya\.com$ + name + .+ + + target + + + host + avaya.com + + + host + *.avaya.com + + + + + Avectra.com (partial) + + ruleset + + name + Avectra.com (partial) + rule + + + from + ^http://success\.avectra\.com/(?=css/|images/|js/|rs/) + to + https://na-abk.marketo.com/ + + + from + ^http://www2\.avectra\.com/ + to + https://www2.avectra.com/ + + + securecookie + + host + ^www2\.avectra\.com$ + name + .+ + + target + + host + *.avectra.com + + + + Avinc.com + + ruleset + + name + Avinc.com + rule + + + from + ^http://(avportal\.|www\.)?avinc\.com/ + to + https://$1avinc.com/ + + + from + ^http://investor\.avinc\.com/common/ + to + https://investor.shareholder.com/common/ + + + securecookie + + host + ^(?:\.avportal|www)?\.avinc\.com$ + name + .+ + + target + + + host + avinc.com + + + host + *.avinc.com + + + + + Avira + + ruleset + + name + Avira + rule + + + from + ^http://(?:www\.)?avira\.com/ + to + https://www.avira.com/ + + + from + ^http://(?:www\.)?(analysis|forum|license|myaccount|partnernet)\.avira\.com/ + to + https://$1.avira.com/ + + + securecookie + + host + ^www\.avira\.com$ + name + .+ + + target + + + host + avira.com + + + host + *.avira.com + + + + + Aviris näönvälineet + + ruleset + + name + Aviris näönvälineet + rule + + from + ^http://(?:www\.)?aviris(?:\.nkl)?\.fi/ + to + https://aviris.nkl.fi/ + + securecookie + + host + ^aviris\.nkl\.fi$ + name + .+ + + target + + + host + aviris.fi + + + host + www.aviris.fi + + + host + aviris.nkl.fi + + + host + www.aviris.nkl.fi + + + + + Avis.com + + ruleset + + name + Avis.com + rule + + from + ^http://(www\.)?avis\.com/ + to + https://$1avis.com/ + + securecookie + + host + .*\.avis\.com$ + name + .+ + + target + + + host + avis.com + + + host + *.avis.com + + + + + Avisservices.com + + ruleset + + name + Avisservices.com + rule + + from + ^http://snap\.avisservices\.com/ + to + https://snap.avisservices.com/ + + securecookie + + host + ^(?:\.?snap)?\.avisservices\.com$ + name + .+ + + target + + host + *.avisservices.com + + + + Avm.de + + ruleset + + name + Avm.de + platform + mixedcontent + rule + + + from + ^http://piwik\.avm\.de/ + to + https://piwik.avm.de/ + + + from + ^http://(www\.)?avm\.de/ + to + https://www.avm.de/ + + + target + + + host + piwik.avm.de + + + host + www.avm.de + + + host + avm.de + + + + + Avoin ministeriö + + ruleset + + name + Avoin ministeriö + rule + + + from + ^http://(www\.)?avoinministerio\.fi/ + to + https://www.avoinministerio.fi/ + + + from + ^https://avoinministerio\.fi/ + to + https://www.avoinministerio.fi/ + + + securecookie + + host + ^www\.avoinministerio\.fi + name + .* + + target + + + host + www.avoinministerio.fi + + + host + avoinministerio.fi + + + + + Avropa.se + + ruleset + + name + Avropa.se + rule + + + from + ^http://www\.avropa\.se/ + to + https://www.avropa.se/ + + + from + ^http://avropa\.se/ + to + https://avropa.se/ + + + target + + + host + www.avropa.se + + + host + avropa.se + + + + + Avue Central + + ruleset + + name + Avue Central + rule + + from + ^https?://(?:www\.)?avuecentral\.com/ + to + https://www.avuecentral.com/ + + target + + + host + avuecentral.com + + + host + www.avuecentral.com + + + + + Avue Digital Services + + ruleset + + name + Avue Digital Services + rule + + from + ^https?://(?:www\.)?avuedigitalservices\.com/ + to + https://www.avuedigitalservices.com/ + + target + + + host + avuedigitalservices.com + + + host + www.avuedigitalservices.com + + + + + AwesomeJar.com + + ruleset + + name + AwesomeJar.com + rule + + from + ^http://(www\.)?awesomejar\.com/ + to + https://awesomejar.com/ + + target + + + host + awesomejar.com + + + host + www.awesomejar.com + + + + + Awio Web Services (partial) + + ruleset + + name + Awio Web Services (partial) + rule + + + from + ^http://app\.dialshield\.com/ + to + https://app.dialshield.com/ + + + from + ^http://(?:www\.)?visitorboost\.com/ + to + https://www.visitorboost.com/ + + + from + ^http://(www\.)?w3roi\.com/ + to + https://$1w3roi.com/ + + + securecookie + + + host + ^app\.dialshield\.com$ + name + .* + + + host + ^(.*\.)?(visitorboost|w3roi)\.com$ + name + .* + + + target + + + host + app.dialshield.com + + + host + visitorboost.com + + + host + *.visitorboost.com + + + host + w3roi.com + + + host + *.w3roi.com + + + + + Axamba (partial) + + ruleset + + name + Axamba (partial) + rule + + from + ^http://my\.webtapestry\.net/ + to + https://my.webtapestry.net/ + + securecookie + + host + ^my\.webtapestry\.net$ + name + .* + + target + + host + my.webtapestry.net + + + + Axantum.com (partial) + + ruleset + + name + Axantum.com (partial) + rule + + from + ^http://(?:www\.)?axantum\.com/(?=Xecrets/Log(On|gedOff)\.aspx|favicon\.ico) + to + https://www.axantum.com/ + + target + + + host + axantum.com + + + host + www.axantum.com + + + + + Axboe (partial) + + ruleset + + name + Axboe (partial) + rule + + from + ^http://webmail\.axboe\.dk/ + to + https://webmail.axboe.dk/ + + securecookie + + host + ^webmail\.axboe\.dk$ + name + .* + + target + + host + webmail.axboe.dk + + + + Axel Arnbak.nl + + ruleset + + name + Axel Arnbak.nl + rule + + from + ^http://www\.axelarnbak\.nl/ + to + https://www.axelarnbak.nl/ + + target + + host + www.axelarnbak.nl + + + + Axel Springer (partial) + + ruleset + + exclusion + + pattern + ^http://www\.aufeminin\.com/.+(\.asp$|/) + + name + Axel Springer (partial) + rule + + + from + ^http://(?:www\.)?aufeminin\.com/(a/|[\w\W]+(?:\.(?:css|gif|js|ico|jpg|png)(?:$|\?)|\?lsh|v=[\d\.]+)) + to + https://www.aufeminin.com/$1 + + + from + ^http://network\.aufeminin\.com/call/pubimppixel/\d{7}/\d+\?? + to + https://im2.smartserver.com/images/shim.gif + + + target + + + host + aufeminin.com + + + host + *.aufeminin.com + + + + + Axel Springer.com (partial) + + ruleset + + name + Axel Springer.com (partial) + rule + + from + ^http://digital-content\.axelspringer\.com/ + to + https://a248.e.akamai.net/f/1961/8747/8/digital-content.axelspringer.com/ + + target + + host + digital-content.axelspringer.com + + + + Axis Bank (partial) + + ruleset + + name + Axis Bank (partial) + rule + + + from + ^http://(?:www\.)?axisbank\.co(\.in|m)/ + to + https://www.axisbank.co$1/ + + + from + ^http://aps\.axisbank\.com/ + to + https://aps.axisbank.com/ + + + securecookie + + host + ^.+\.axisbank\.co(?:\.in|m)$ + name + .+ + + target + + + host + www.axisbank.co.in + + + host + axisbank.com + + + host + *.axisbank.com + + + + + Axonify (partial) + + ruleset + + name + Axonify (partial) + rule + + from + ^http://cdn\.axonify\.com/ + to + https://cdn.axonify.com/ + + target + + host + cdn.axonify.com + + + + Axosoft.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?axosoft\.com/+(?!css/|favicon\.ico|font/|img/|js/) + + name + Axosoft.com (partial) + rule + + from + ^http://(store\.|www\.)?axosoft\.com/ + to + https://$1axosoft.com/ + + target + + + host + axosoft.com + + + host + *.axosoft.com + + + + + Ay Yildiz + + ruleset + + name + Ay Yildiz + rule + + from + ^https?://(?:www\.)?ayyildiz\.de/ + to + https://www.ayyildiz.de/ + + securecookie + + host + ^www\.ayyildiz\.de$ + name + .+ + + target + + + host + ayyildiz.de + + + host + www.ayyildiz.de + + + + + Azet.sk + + ruleset + + name + Azet.sk + rule + + + from + ^http://prihlasenie\.azet\.sk/ + to + https://prihlasenie.azet.sk/ + + + from + ^http://mail\.azet\.sk/ + to + https://mail.azet.sk/ + + + from + ^http://pokec\.azet\.sk/ + to + https://pokec.azet.sk/ + + + from + ^http://emailnew\.azet\.sk/ + to + https://emailnew.azet.sk/ + + + from + ^http://fotoalbumy\.azet\.sk/ + to + https://fotoalbumy.azet.sk/ + + + from + ^http://registracia\.azet\.sk/ + to + https://registracia.azet.sk/ + + + target + + + host + prihlasenie.azet.sk + + + host + mail.azet.sk + + + host + pokec.azet.sk + + + host + emailnew.azet.sk + + + host + fotoalbumy.azet.sk + + + host + registracia.azet.sk + + + + + Azingsport.se + + ruleset + + name + Azingsport.se + rule + + + from + ^http://www\.azingsport\.se/ + to + https://www.azingsport.se/ + + + from + ^http://azingsport\.se/ + to + https://azingsport.se/ + + + target + + + host + www.azingsport.se + + + host + azingsport.se + + + + + Azorus (partial) + + ruleset + + name + Azorus (partial) + rule + + from + ^http://content\.azorus\.com/ + to + https://content.azorus.com/ + + target + + host + content.azorus.com + + + + Aéroports de Montréal + + ruleset + + name + Aéroports de Montréal + rule + + + from + ^https?://admtl\.com/ + to + https://www.admtl.com/ + + + from + ^http://([^/:@]+)?\.admtl\.com/ + to + https://$1.admtl.com/ + + + target + + + host + admtl.com + + + host + *.admtl.com + + + + + B. E. Smith + + ruleset + + name + B. E. Smith + rule + + + from + ^http://((?:ex1|mail|thebridge|www)\.)?besmith\.com/ + to + https://$1besmith.com/ + + + from + ^http://autodiscover\.besmith\.com/ + to + https://autodiscover-s.outlook.com/ + + + securecookie + + host + .+\.besmith\.com$ + name + .+ + + target + + + host + besmith.com + + + host + *.besmith.com + + + + + BAM Agency (partial) + + ruleset + + name + BAM Agency (partial) + rule + + + from + ^http://(www\.)?bamsecure\.com/ + to + https://$1bamsecure.com/ + + + from + ^http://(www\.)?bamshop\.co\.uk/ + to + https://$1bamshop.co.uk/ + + + securecookie + + host + ^(www\.)?bams(ecure\.com|hop\.co\.uk)$ + name + .* + + target + + + host + bamsecure.com + + + host + www.bamsecure.com + + + host + bamshop.co.uk + + + host + www.bamshop.co.uk + + + + + BASE (partial) + + ruleset + + exclusion + + pattern + ^https?://infos\.base\.de/\? + + name + BASE (partial) + rule + + + from + ^https?://(?:www\.)?base\.de/ + to + https://www.base.de/ + + + from + ^https?://(?:www\.)?angebote\.base\.de/ + to + https://angebote.base.de/ + + + from + ^http://(chatsurvey|m|proactive2?|tracking)\.base\.de/ + to + https://$1.base.de/ + + + from + ^https?://facebook\.base\.de/ + to + https://angebote.base.de/ + + + from + ^https?://(?:infos|promotion)\.base\.de/(?:$|\?.*) + to + https://www.base.de/ + + + securecookie + + host + ^.*\.base\.de$ + name + .+ + + target + + + host + base.de + + + host + *.base.de + + + + + BATS Exchange + + ruleset + + name + BATS Exchange + rule + + from + ^http://(www\.)?batstrading\.com/ + to + https://$1batstrading.com/ + + securecookie + + host + ^(?:www\.)?batstrading\.com$ + name + .+ + + target + + + host + batstrading.com + + + host + www.batstrading.com + + + + + BAWSI.org + + ruleset + + name + BAWSI.org + rule + + from + ^http://(www\.)?bawsi\.org/ + to + https://$1bawsi.org/ + + target + + + host + bawsi.org + + + host + www.bawsi.org + + + + + BBC Children In Need + + ruleset + + name + BBC Children In Need + rule + + + from + ^https?://bbcchildreninneed\.co\.uk/ + to + https://www.bbcchildreninneed.co.uk/ + + + from + ^http://([^/:@]+)\.bbcchildreninneed\.co\.uk/ + to + https://$1.bbcchildreninneed.co.uk/ + + + securecookie + + host + ^(.*\.)?bbcchildreninneed\.co\.uk$ + name + .* + + target + + + host + bbcchildreninneed.co.uk + + + host + www.bbcchildreninneed.co.uk + + + + + BBC.com (false MCB) + + ruleset + + name + BBC.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?bbc\.com/ + to + https://www.bbc.com/ + + target + + + host + bbc.com + + + host + www.bbc.com + + + + + BBC.com (partial) + + ruleset + + name + BBC.com (partial) + rule + + + from + ^http://sa\.bbc\.com/ + to + https://bbc.112.2o7.net/ + + + from + ^http://ssl\.bbc\.com/ + to + https://ssl.bbc.com/ + + + target + + host + *.bbc.com + + + + BCCLA.org + + ruleset + + name + BCCLA.org + rule + + from + ^http://(www\.)?bccla\.org/ + to + https://$1bccla.org/ + + securecookie + + host + ^(?:www\.)?bccla\.org$ + name + .+ + + target + + + host + bccla.org + + + host + www.bccla.org + + + + + BCGolf.com + + ruleset + + name + BCGolf.com + rule + + + from + ^http://(www\.)?bcgolf\.com/ + to + https://$1bcgolf.com/ + + + from + ^http://(www\.)?golf2go\.net/ + to + https://$1golf2go.net/ + + + target + + + host + bcgolf.com + + + host + www.bcgolf.com + + + host + golf2go.net + + + host + www.golf2go.net + + + + + BE One Spark.com (partial) + + ruleset + + name + BE One Spark.com (partial) + rule + + from + ^http://(www\.)?beonespark\.com/(?=assets/|berlin/(?:sign-in|users/password)/*(?:$|\?)) + to + https://$1beonespark.com/ + + target + + + host + beonespark.com + + + host + www.beonespark.com + + + + + BGPmon.net + + ruleset + + name + BGPmon.net + rule + + + from + ^https?://bgpmon\.(com|net)/ + to + https://www.bgpmon.net/ + + + from + ^http://(portal|www)?\.bgpmon\.net/ + to + https://$1.bgpmon.net/ + + + from + ^http://(portal|www)?\.bgpmon\.com/ + to + https://$1.bgpmon.net/ + + + securecookie + + host + ^portal\.bgpmon\.net$ + name + .+ + + target + + + host + bgpmon.net + + + host + *.bgpmon.net + + + host + bgpmon.com + + + host + *.bgpmon.com + + + + + BGR.com + + ruleset + + name + BGR.com + rule + + from + ^http://(store\.|www\.)?bgr\.com/ + to + https://$1bgr.com/ + + target + + + host + bgr.com + + + host + *.bgr.com + + + + + BHW.de + + ruleset + + name + BHW.de + rule + + from + ^http://(apps\.|www\.)?bhw\.de/ + to + https://$1bhw.de/ + + securecookie + + host + ^apps\.bhw\.de$ + name + .+ + + target + + + host + bhw.de + + + host + *.bhw.de + + + + + BKK-Advita + + ruleset + + name + BKK-Advita + platform + mixedcontent + rule + + from + ^http://(?:www\.)?bkk-advita\.de/ + to + https://www.bkk-advita.de/ + + target + + + host + www.bkk-advita.de + + + host + bkk-advita.de + + + + + BKW-FMB.ch + + ruleset + + name + BKW-FMB.ch + rule + + from + ^http://(?:www\.)?bkw-fmb\.ch/ + to + https://www.bkw-fmb.ch/ + + securecookie + + host + ^(.*\.)?bkw-fmb\.ch$ + name + .* + + target + + + host + bkw-fmb.ch + + + host + www.bkw-fmb.ch + + + + + BLAKE2 + + ruleset + + name + BLAKE2 + rule + + from + ^http://(www\.)?blake2\.net/ + to + https://blake2.net/ + + target + + + host + blake2.net + + + host + www.blake2.net + + + + + BLOX (partial) + + ruleset + + name + BLOX (partial) + rule + + from + ^http://([\w\-]+)\.bloxcms\.com/ + to + https://$1.bloxcms.com/ + + target + + host + *.bloxcms.com + + + + BM Pharmacy + + ruleset + + name + BM Pharmacy + rule + + from + ^http://(www\.)?bmpharmacy\.com/ + to + https://$1bmpharmacy.com/ + + securecookie + + host + ^\.bmpharmacy\.com$ + name + .+ + + target + + + host + bmpharmacy.com + + + host + *.bmpharmacy.com + + + + + BMC Logo Store.com + + ruleset + + name + BMC Logo Store.com + rule + + from + ^http://(www\.)?bmclogostore\.com/ + to + https://$1bmclogostore.com/ + + securecookie + + host + ^www\.bmclogostore\.com$ + name + .+ + + target + + + host + bmclogostore.com + + + host + www.bmclogostore.com + + + + + BMC.com (partial) + + ruleset + + name + BMC.com (partial) + rule + + + from + ^http://(?:www\.)?bmc\.com/(?=includes/|s\?action=doLogin) + to + https://www.bmc.com/ + + + from + ^http://(media\.cms|communities|webapps)\.bmc\.com/ + to + https://$1.bmc.com/ + + + securecookie + + host + ^communities\.bmc\.com$ + name + .+ + + target + + + host + bmc.com + + + host + *.bmc.com + + + + + BMW China Custom Login + + ruleset + + name + BMW China Custom Login + platform + mixedcontent + rule + + from + ^http://(?:www\.)?cardealerstudy\.com/ + to + https://www.cardealerstudy.com/ + + securecookie + + host + ^.*\.cardealerstudy\.com$ + name + .* + + target + + + host + cardealerstudy.com + + + host + *.cardealerstudy.com + + + + + BOALT + + ruleset + + name + BOALT + rule + + + from + ^http://(www\.)?boalt\.com/ + to + https://$1boalt.com/ + + + from + ^https?://adamboalt\.wpengine\.netdna-cdn\.com/ + to + https://boalt.com/ + + + securecookie + + host + ^\.boalt\.com$ + name + .+ + + target + + + host + boalt.com + + + host + *.boalt.com + + + host + adamboalt.wpengine.netdna-cdn.com + + + + + BPS (partial) + + ruleset + + name + BPS (partial) + rule + + + from + ^http://(?:www\.)?bps\.org\.uk/sites/default/(files/cs|theme)s/ + to + https://www.bps.org.uk/sites/default/$1s/ + + + from + ^http://login\.bps\.org\.uk/ + to + https://login.bps.org.uk/ + + + from + ^http://(?:www\.)?bpsshop\.org\.uk/((?:App_Theme|Asset|image)s/|login\.aspx) + to + https://www.bpsshop.org.uk/$1 + + + target + + + host + bps.org.uk + + + host + *.bps.org.uk + + + host + bpsshop.org.uk + + + host + www.bpsshop.org.uk + + + + + BSD Can.org + + ruleset + + name + BSD Can.org + rule + + from + ^http://(www\.)?bsdcan\.org/ + to + https://$1bsdcan.org/ + + target + + + host + bsdcan.org + + + host + www.bsdcan.org + + + + + BSD Consulting.co.jp + + ruleset + + name + BSD Consulting.co.jp + rule + + from + ^http://www\.bsdconsulting\.co\.jp/ + to + https://www.bsdconsulting.co.jp/ + + target + + host + www.bsdconsulting.co.jp + + + + BSD.net (partial) + + ruleset + + name + BSD.net (partial) + rule + + from + ^http://s\.bsd\.net/ + to + https://s.bsd.net/ + + target + + host + s.bsd.net + + + + BT (partial) + + ruleset + + exclusion + + pattern + ^http://business\.bt\.com/ + + name + BT (partial) + rule + + + from + ^https?://(?:www\.)?((?:global|productsand)services\.)?bt\.com/ + to + https://www.$1bt.com/ + + + from + ^http://(secure\.business|www\.(?:shop|vouchers)|www2)\.bt\.com/ + to + https://$1.bt.com/ + + + from + ^http://shop\.bt\.com/.* + to + https://www.shop.bt.com/ + + + securecookie + + host + ^.*\.bt\.com$ + name + .+ + + target + + + host + bt.com + + + host + *.bt.com + + + + + BT Group (partial) + + ruleset + + name + BT Group (partial) + rule + + + from + ^http://www\.btplc\.com/ + to + https://www.btplc.com/ + + + from + ^http://www\.openreach\.co\.uk/ + to + https://www.openreach.co.uk/ + + + securecookie + + + host + ^www\.btplc\.com$ + name + .+ + + + host + ^\.openreach\.co\.uk$ + name + .+ + + + target + + + host + www.btplc.com + + + host + *.openreach.co.uk + + + + + BT Sport + + ruleset + + name + BT Sport + rule + + + from + ^http://(?:www\.)?btsport\.com/ + to + https://www.btsport.com/ + + + from + ^http://www\.register\.btsport\.com/ + to + https://www.register.btsport.com/ + + + securecookie + + host + ^www\.register\.btsport\.com$ + name + .+ + + target + + + host + btsport.com + + + host + *.btsport.com + + + + + BT Sport for Business + + ruleset + + name + BT Sport for Business + rule + + from + ^http://(?:www\.)?btsportbusiness\.com/ + to + https://btsportbusiness.com/ + + securecookie + + host + ^btsportbusiness\.com$ + name + .+ + + target + + + host + btsportbusiness.com + + + host + www.btsportbusiness.com + + + + + BT Wholesale.com + + ruleset + + name + BT Wholesale.com + rule + + from + ^http://(?:www\.)?btwholesale\.com/ + to + https://www.btwholesale.com/ + + securecookie + + host + ^\.btwholesale\.com$ + name + .+ + + target + + + host + btwholesale.com + + + host + *.btwholesale.com + + + + + BT Wi-fi + + ruleset + + name + BT Wi-fi + rule + + from + ^http://(my\.|www\.)?btwifi\.co(\.uk|m)/ + to + https://$1btwifi.co$2/ + + securecookie + + host + ^(?:.+\.)?btwifi\.co(?:\.uk|m)$ + name + .+ + + target + + + host + btwifi.co.uk + + + host + www.btwifi.co.uk + + + host + btwifi.com + + + host + *.btwifi.com + + + + + BTC Buy + + ruleset + + name + BTC Buy + rule + + from + ^http://(www\.)?btcbuy\.info/ + to + https://$1btcbuy.info/ + + target + + + host + btcbuy.info + + + host + www.btcbuy.info + + + + + BTC Gear.com + + ruleset + + name + BTC Gear.com + rule + + from + ^http://(www\.)?btcgear\.com/ + to + https://$1btcgear.com/ + + securecookie + + host + ^(?:w*\.)?btcgear\.com$ + name + .+ + + target + + + host + btcgear.com + + + host + *.btcgear.com + + + + + BTC Store.eu + + ruleset + + name + BTC Store.eu + rule + + from + ^http://(www\.)?btcstore\.eu/ + to + https://$1btcstore.eu/ + + securecookie + + host + ^\.btcstore\.eu$ + name + .+ + + target + + + host + btcstore.eu + + + host + *.btcstore.eu + + + + + BTC-E + + ruleset + + name + BTC-E + rule + + from + ^http://(www\.)?btc-e\.com/ + to + https://$1btc-e.com/ + + securecookie + + host + ^\.?btc-e\.com$ + name + .+ + + target + + + host + btc-e.com + + + host + *.btc-e.com + + + + + BTC-Trade.ru + + ruleset + + name + BTC-Trade.ru + rule + + from + ^http://(?:www\.)?btc-trade\.ru/ + to + https://www.btc-trade.ru/ + + securecookie + + host + ^\.btc-trade\.ru$ + name + .+ + + target + + + host + btc-trade.ru + + + host + *.btc-trade.ru + + + + + BTCGuild.com + + ruleset + + name + BTCGuild.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?btcguild\.com/ + to + https://www.btcguild.com/ + + target + + + host + btcguild.com + + + host + www.btcguild.com + + + + + BTCSportsBet + + ruleset + + name + BTCSportsBet + platform + mixedcontent + rule + + from + ^http://(www\.)?btcsportsbet\.com/ + to + https://$1btcsportsbet.com/ + + securecookie + + host + ^(www\.)?btcsportsbet\.com$ + name + .* + + target + + + host + btcsportsbet.com + + + host + www.btcsportsbet.com + + + + + BTCZone + + ruleset + + name + BTCZone + rule + + from + ^http://(www\.)?btczone\.com/ + to + https://$1btczone.com/ + + securecookie + + host + ^(www\.)?btczone\.com$ + name + .* + + target + + + host + btczone.com + + + host + www.btczone.com + + + + + BTDigg + + ruleset + + name + BTDigg + rule + + from + ^http://(?:www\.)?btdigg\.org/ + to + https://btdigg.org/ + + securecookie + + host + ^\.?btdigg\.org$ + name + .* + + target + + + host + btdigg.org + + + host + *.btdigg.org + + + + + BTGuard.com + + ruleset + + name + BTGuard.com + rule + + from + ^http://(?:www\.)?(affiliate\.)?btguard\.com/ + to + https://$1btguard.com/ + + securecookie + + host + ^(.*\.)?btguard\.com$ + name + .* + + target + + + host + btguard.com + + + host + *.btguard.com + + + + + BTH.se + + ruleset + + name + BTH.se + platform + mixedcontent + rule + + + from + ^http://bth\.se/ + to + https://www.bth.se/ + + + from + ^http://www\.bth\.se/ + to + https://www.bth.se/ + + + target + + + host + www.bth.se + + + host + bth.se + + + + + BTunnel + + ruleset + + name + BTunnel + platform + mixedcontent + rule + + from + ^http://(?:www\.)?btunnel\.com/ + to + https://btunnel.com/ + + securecookie + + host + ^(.+\.)?btunnel\.com$ + name + .* + + target + + + host + btunnel.com + + + host + www.btunnel.com + + + + + BVI Photo Video.com + + ruleset + + name + BVI Photo Video.com + rule + + from + ^http://(www\.)?bviphotovideo\.com/ + to + https://$1bviphotovideo.com/ + + securecookie + + host + ^(?:www)\.bviphotovideo\.com$ + name + .+ + + target + + + host + bviphotovideo.com + + + host + *.bviphotovideo.com + + + + + BabyMed.com (partial) + + ruleset + + name + BabyMed.com (partial) + rule + + from + ^http://(?:www\.)?babymed\.com/(favicon\.ico|sites/|themes/|user(?:$|\?/)) + to + https://www.babymed.com/$1 + + target + + + host + babymed.com + + + host + www.babymed.com + + + + + Babylon (partial) + + ruleset + + name + Babylon (partial) + rule + + from + ^http://(img|store|utils)\.babylon\.com/ + to + https://$1.babylon.com/ + + securecookie + + host + ^store\.babylon\.com$ + name + .* + + target + + host + *.babylon.com + + + + Backbone Security + + ruleset + + name + Backbone Security + platform + mixedcontent + rule + + from + ^http://(www\.)?backbonesecurity\.com/ + to + https://$1backbonesecurity.com/ + + target + + + host + backbonesecurity.com + + + host + www.backbonesecurity.com + + + + + Backcountry.com (partial) + + ruleset + + name + Backcountry.com (partial) + rule + + + from + ^https?://(?:www\.)?backcountry\.com/(css|images|promo_upload)/ + to + https://www.backcountry.com/$1/ + + + from + ^http://(api|beta|m)\.backcountry\.com/ + to + https://$1.backcountry.com/ + + + from + ^https?://(?:content|promoimages)\.backcountry\.com/ + to + https://www.backcountry.com/ + + + securecookie + + host + ^m\.backcountry\.com$ + name + .+ + + target + + + host + backcountry.com + + + host + *.backcountry.com + + + + + Backlift.com + + ruleset + + name + Backlift.com + rule + + from + ^http://((?:blog|docs|www)\.)?backlift\.com/ + to + https://$1backlift.com/ + + securecookie + + host + ^(?:\w+\.)?backlift\.com$ + name + .+ + + target + + + host + backlift.com + + + host + *.backlift.com + + + + + Backpackers Lucerne + + ruleset + + name + Backpackers Lucerne + rule + + + from + ^https?://backpackerslucerne\.ch/ + to + https://www.backpackerslucerne.ch/ + + + from + ^http://([^/:@]+)?\.backpackerslucerne\.ch/ + to + https://$1.backpackerslucerne.ch/ + + + securecookie + + host + ^(.*\.)?backpackerslucerne\.ch$ + name + .+ + + target + + + host + backpackerslucerne.ch + + + host + www.backpackerslucerne.ch + + + + + Backstreet International Merchandise + + ruleset + + name + Backstreet International Merchandise + rule + + from + ^http://(www\.)?backstreet(-)?merch\.com/ + to + https://$1backstreet$2merch.com/ + + securecookie + + host + ^(.*\.)?backstreet-?merch\.com$ + name + .* + + target + + + host + backstreetmerch.com + + + host + www.backstreetmerch.com + + + host + backstreet-merch.com + + + host + www.backstreet-merch.com + + + + + Backupify + + ruleset + + name + Backupify + rule + + from + ^http://(?:www\.)?backupify\.com/ + to + https://www.backupify.com/ + + securecookie + + host + ^(.*\.)?backupify\.com$ + name + .* + + target + + + host + backupify.com + + + host + www.backupify.com + + + + + Bad Dragon + + ruleset + + name + Bad Dragon + rule + + + from + ^http://bad-dragon\.com/(.+) + to + https://bad-dragon.com/$1 + + + from + ^http://labs\.bad-dragon\.com/ + to + https://labs.bad-dragon.com/ + + + from + ^http://forums\.bad-dragon\.com/ + to + https://forums.bad-dragon.com/ + + + from + ^http://contact\.bad-dragon\.com/ + to + https://contact.bad-dragon.com/ + + + target + + + host + bad-dragon.com + + + host + labs.bad-dragon.com + + + host + forums.bad-dragon.com + + + host + contact.bad-dragon.com + + + + + Badgeville.com (partial) + + ruleset + + name + Badgeville.com (partial) + rule + + from + ^http://(users\.admin|api\.v2)\.badgeville\.com/ + to + https://$1.badgeville.com/ + + target + + + host + users.admin.badgeville.com + + + host + api.v2.badgeville.com + + + + + Badongo (partial) + + ruleset + + name + Badongo (partial) + rule + + + from + ^http://(?:www\.)?badongo\.com/(inc/|(?:imag|styl)es/|login) + to + https://www.badongo.com/$1 + + + from + ^http://cdn\d\w\.badongo\.com/\w{1,6}/(imag|styl)es/ + to + https://www.badongo.com/$1es/ + + + target + + + host + badongo.com + + + host + *.badongo.com + + + + + Badoo.com + + ruleset + + name + Badoo.com + rule + + + from + ^http://www\.badoo\.com/ + to + https://www.badoo.com/ + + + from + ^http://badoo\.com/ + to + https://www.badoo.com/ + + + target + + + host + www.badoo.com + + + host + badoo.com + + + + + Badwarebusters.org + + ruleset + + name + Badwarebusters.org + rule + + from + ^http://(www\.)?badwarebusters\.org/ + to + https://$1badwarebusters.org/ + + securecookie + + host + ^(?:www)?\.badwarebusters\.org$ + name + .+ + + target + + + host + badwarebusters.org + + + host + *.badwarebusters.org + + + + + Baekdal (partial) + + ruleset + + name + Baekdal (partial) + rule + + from + ^http://(?:www\.)?baekdal\.com/ + to + https://www.baekdal.com/ + + target + + + host + baekdal.com + + + host + www.baekdal.com + + + + + Bagatoo.se + + ruleset + + name + Bagatoo.se + rule + + + from + ^http://www\.bagatoo\.se/ + to + https://www.bagatoo.se/ + + + from + ^http://bagatoo\.se/ + to + https://bagatoo.se/ + + + target + + + host + www.bagatoo.se + + + host + bagatoo.se + + + + + Bahn-BKK + + ruleset + + name + Bahn-BKK + rule + + from + ^http://(?:www\.)?bahn-bkk\.de/ + to + https://www.bahn-bkk.de/ + + target + + + host + www.bahn-bkk.de + + + host + bahn-bkk.de + + + + + Bahn.de + + ruleset + + name + Bahn.de + rule + + + from + ^http://bahn\.de/ + to + https://www.bahn.de/ + + + from + ^http://(fahrkarten|grosskunden|mobile|ps|reisauskunft|reisauskunft-iat|www)\.bahn\.de/ + to + https://$1.bahn.de/ + + + target + + + host + *.bahn.de + + + host + bahn.de + + + + + Baidu (partial) + + ruleset + + name + Baidu (partial) + rule + + + from + ^https?://(?:(?:developer|openapi)\.baidu|apps\d?\.bdimg)\.com/ + to + https://openapi.baidu.com/ + + + from + ^http://(www|yun|pan|passport)\.baidu\.com/ + to + https://$1.baidu.com/ + + + securecookie + + host + ^openapi\.baidu\.com$ + name + .+ + + target + + + host + *.baidu.com + + + host + *.bdimg.com + + + + + Baker & Taylor (minimal) + + ruleset + + name + Baker & Taylor (minimal) + rule + + from + ^http://(contentcafe2|images[abc])\.btol\.com/ + to + https://$1.btol.com/ + + securecookie + + host + ^(contentcafe2|images[abc])\.btol\.com$ + name + .+ + + target + + + host + contentcafe2.btol.com + + + host + imagesa.btol.com + + + host + imagesb.btol.com + + + host + imagesc.btol.com + + + + + BalaBit.com (partial) + + ruleset + + name + BalaBit.com (partial) + rule + + from + ^http://(support\.|www\.)?balabit\.com/ + to + https://$1balabit.com/ + + securecookie + + host + ^support\.balabit\.com$ + name + .+ + + target + + + host + balabit.com + + + host + *.balabit.com + + + + + Balatarin + + ruleset + + name + Balatarin + platform + mixedcontent + rule + + from + ^http://(?:www\.)?balatarin\.com/ + to + https://balatarin.com/ + + target + + + host + balatarin.com + + + host + www.balatarin.com + + + + + Baldershage.se + + ruleset + + name + Baldershage.se + platform + mixedcontent + rule + + + from + ^http://www\.baldershage\.se/ + to + https://www.baldershage.se/ + + + from + ^http://baldershage\.se/ + to + https://baldershage.se/ + + + target + + + host + www.baldershage.se + + + host + baldershage.se + + + + + Balkan Leaks + + ruleset + + name + Balkan Leaks + rule + + from + ^http://(www\.)?balkanleaks\.eu/ + to + https://$1balkanleaks.eu/ + + securecookie + + host + ^www\.balkanleaks\.eu$ + name + .+ + + target + + + host + balkanleaks.eu + + + host + www.balkanleaks.eu + + + + + Balkongshoppen.se + + ruleset + + name + Balkongshoppen.se + rule + + + from + ^http://www\.balkongshoppen\.se/ + to + https://www.balkongshoppen.se/ + + + from + ^http://balkongshoppen\.se/ + to + https://balkongshoppen.se/ + + + target + + + host + www.balkongshoppen.se + + + host + balkongshoppen.se + + + + + Ballicom + + ruleset + + name + Ballicom + rule + + from + ^http://(?:www\.)?ballicom\.co\.uk/ + to + https://www.ballicom.co.uk/ + + securecookie + + host + ^www\.ballicom\.co\.uk$ + name + .+ + + target + + + host + ballicom.co.uk + + + host + www.ballicom.co.uk + + + + + Ballot Measure Domains + + ruleset + + name + Ballot Measure Domains + rule + + from + ^http://(www\.)?ballotmeasuredomains\.com/ + to + https://$1ballotmeasuredomains.com/ + + securecookie + + host + ^(?:www\.)?ballotmeasuredomains\.com$ + name + .+ + + target + + + host + ballotmeasuredomains.com + + + host + www.ballotmeasuredomains.com + + + + + Ballou (partial) + + ruleset + + name + Ballou (partial) + rule + + + from + ^http://((?:autodiscover|mail|mailadministration|minasidor|websally|wiki|www)\.)?ballou\.se/ + to + https://$1ballou.se/ + + + from + ^http://(?:registrar|support)\.ballou\.se/ + to + https://minasidor.ballou.se/ + + + securecookie + + host + ^(?:mail|mailadministration|minasidor|www)\.ballou\.se$ + name + .+ + + target + + + host + ballou.se + + + host + *.ballou.se + + + + + Balsamiq (partial) + + ruleset + + name + Balsamiq (partial) + rule + + from + ^http://(?!builds\.|support\.|www\.)([\w-]+)\.mybalsamiq\.com/ + to + https://$1.mybalsamiq.com/ + + target + + host + *.mybalsamiq.com + + + + BandPass.me + + ruleset + + name + BandPass.me + rule + + from + ^http://(?:www\.)?bandpass\.me/ + to + https://bandpass.me/ + + target + + + host + bandpass.me + + + host + www.bandpass.me + + + + + Bandcamp + + ruleset + + exclusion + + pattern + ^http://blog\. + + name + Bandcamp + rule + + + from + ^http://([\w-]+\.)?bandcamp\.com/ + to + https://$1bandcamp.com/ + + + from + ^http://(www\.)?bandcamp\.mu/ + to + https://$1bandcamp.com/ + + + from + ^http://(f|s)0\.bcbits\.com/ + to + https://$10.bcbits.com/ + + + securecookie + + host + ^\.bandcamp\.com$ + name + .+ + + target + + + host + bandcamp.com + + + host + *.bandcamp.com + + + host + bandcamp.mu + + + host + www.bandcamp.mu + + + host + *.bcbits.com + + + + + Bangor Daily News (partial) + + ruleset + + name + Bangor Daily News (partial) + rule + + + from + ^http://(chrisbusby\.|www\.)?bangordailynews\.com/ + to + https://$1bangordailynews.com/ + + + from + ^https?://(?:static\.bangordailynews|bdnpull\.bangorpublishing\.netdna-cdn)\.com/ + to + https://bangordailynews.com/ + + + target + + + host + bangordailynews.com + + + host + *.bangordailynews.com + + + host + bdnpull.bangorpublishing.netdna-cdn.com + + + + + Bangor University (partial) + + ruleset + + name + Bangor University (partial) + rule + + + from + ^https?://(?:www\.)?bangor\.ac\.uk/itservices/user($|/) + to + https://www.bangor.ac.uk/itservices/user$1 + + + from + ^http://(bangorportal|blackboard|forum|inside|intranet|webmail)\.bangor\.ac\.uk/ + to + https://$1.bangor.ac.uk/ + + + securecookie + + host + ^[^w]\w+\.bangor\.ac\.uk$ + name + .* + + target + + + host + bangor.ac.uk + + + host + *.bangor.ac.uk + + + + + Bank of Taipei.com.tw + + ruleset + + name + Bank of Taipei.com.tw + rule + + from + ^http://(ebank|www)\.bankoftaipei\.com\.tw/ + to + https://$1.bankoftaipei.com.tw/ + + securecookie + + host + ^ebank\.bankoftaipei\.com\.tw$ + name + .+ + + target + + host + *.bankoftaipei.com.tw + + + + BankID.no + + ruleset + + name + BankID.no + rule + + from + ^http://(?:www\.)?bankid\.no/ + to + https://www.bankid.no/ + + securecookie + + host + ^www\.bankid\.no$ + name + .+ + + target + + + host + bankid.no + + + host + www.bankid.no + + + + + BankOfNewZeland + + ruleset + + name + BankOfNewZeland + rule + + from + ^http://(?:www\.)?bnz\.co\.nz/ + to + https://www.bnz.co.nz/ + + securecookie + + host + ^(.+\.)?bnz\.co\.nz$ + name + .* + + target + + + host + bnz.co.nz + + + host + www.bnz.co.nz + + + + + BankofAmerica.com (partial) + + ruleset + + name + BankofAmerica.com (partial) + rule + + from + ^http://webmedia\.bankofamerica\.com/ + to + https://webmedia.bankofamerica.com/ + + target + + host + webmedia.bankofamerica.com + + + + Bankofscotland.de + + ruleset + + name + Bankofscotland.de + rule + + + from + ^http://bankofscotland\.de/ + to + https://www.bankofscotland.de/ + + + from + ^http://([^/:@]*)\.bankofscotland\.de/ + to + https://$1.bankofscotland.de/ + + + target + + + host + bankofscotland.de + + + host + *.bankofscotland.de + + + + + BannerSnack.com + + ruleset + + name + BannerSnack.com + rule + + + from + ^http://(www\.)?bannersnack\.com/ + to + https://$1bannersnack.com/ + + + from + ^http://files\.bannersnack\.com/ + to + https://s3.amazonaws.com/files.bannersnack.com/ + + + securecookie + + host + ^(?:www\.)?bannersnack\.com$ + name + .+ + + target + + + host + bannersnack.com + + + host + *.bannersnack.com + + + + + Banque CIC + + ruleset + + name + Banque CIC + rule + + + from + ^https?://cic\.fr/ + to + https://www.cic.fr/ + + + from + ^http://([^/:@]+)?\.cic\.fr/ + to + https://$1.cic.fr/ + + + securecookie + + host + ^(.*\.)?cic\.fr$ + name + .+ + + target + + + host + cic.fr + + + host + *.cic.fr + + + + + Banque CIC (Suisse) + + ruleset + + name + Banque CIC (Suisse) + rule + + + from + ^https?://cic\.ch/ + to + https://www.cic.ch/ + + + from + ^http://([^/:@]+)?\.cic\.ch/ + to + https://$1.cic.ch/ + + + securecookie + + host + ^(.*\.)?cic\.ch$ + name + .+ + + target + + + host + cic.ch + + + host + *.cic.ch + + + + + Banque Cantonale du Valais + + ruleset + + name + Banque Cantonale du Valais + rule + + + from + ^https?://bcvs\.ch/ + to + https://www.bcvs.ch/ + + + from + ^http://([^/:@]+)?\.bcvs\.ch/ + to + https://$1.bcvs.ch/ + + + from + ^https?://mybcvs\.ch/ + to + https://www.mybcvs.ch/ + + + from + ^http://([^/:@]+)?\.mybcvs\.ch/ + to + https://$1.mybcvs.ch/ + + + securecookie + + host + ^(.*\.)?bcvs\.ch$ + name + .+ + + target + + + host + bcvs.ch + + + host + *.bcvs.ch + + + host + mybcvs.ch + + + host + *.mybcvs.ch + + + + + Banu.com + + ruleset + + name + Banu.com + rule + + from + ^http://((?:bugzilla|git|mail|staff|wiki|www)\.)?banu\.com/ + to + https://$1banu.com/ + + securecookie + + host + ^(?:.*\.)?banu\.com$ + name + .+ + + target + + + host + banu.com + + + host + *.banu.com + + + + + Barbican + + ruleset + + name + Barbican + rule + + from + ^https?://(?:www\.)?barbican\.org\.uk/ + to + https://www.barbican.org.uk/ + + securecookie + + host + ^www\.barbican\.org\.uk$ + name + .+ + + target + + + host + barbican.org.uk + + + host + www.barbican.org.uk + + + + + Barclays + + ruleset + + name + Barclays + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?barclays\.co\.uk/ + to + https://www.barclays.co.uk/ + + + from + ^http://ask\.barclays\.co\.uk/ + to + https://ask.barclays.co.uk/ + + + from + ^http://(?:www\.)?barclayscorporate\.com/ + to + https://www.barclayscorporate.com/ + + + from + ^http://(?:secure\.)?barclaycard\.co\.uk/ + to + https://www.barclaycard.co.uk/ + + + from + ^http://(www|bcol|letmechoose|ask|spendmanagement)\.(?:secure\.)?barclaycard\.co\.uk/ + to + https://$1.barclaycard.co.uk/ + + + securecookie + + host + ^(.+\.)?(barclays|barclayscorporate)\.(com|co\.uk)$ + name + .* + + target + + + host + www.barclays.co.uk + + + host + barclays.co.uk + + + host + ask.barclays.co.uk + + + host + barclayscorporate.com + + + host + www.barclayscorporate.com + + + host + barclaycard.co.uk + + + host + *.barclaycard.co.uk + + + host + *.secure.barclaycard.co.uk + + + + + Bardwil Home (partial) + + ruleset + + name + Bardwil Home (partial) + rule + + from + ^http://(?:www\.)?bardwilhome\.com/(cdn-cgi/ping|Controller/User_Session/CallTryCookie|css/|photos/|Public/|store_image/|Styles/) + to + https://www.bardwilhome.com/$1 + + target + + + host + bardwilhome.com + + + host + www.bardwilhome.com + + + + + BareMetal + + ruleset + + name + BareMetal + platform + mixedcontent + rule + + from + ^http://(proxy\.|s?www\.)?baremetal\.com/ + to + https://$1baremetal.com/ + + securecookie + + host + ^swww\.baremetal\.com$ + name + .* + + target + + + host + baremetal.com + + + host + *.baremetal.com + + + + + Baremetrics.io + + ruleset + + name + Baremetrics.io + rule + + from + ^http://(www\.)?baremetrics\.io/ + to + https://$1baremetrics.io/ + + securecookie + + host + ^(?:www)?\.baremetrics\.io$ + name + .+ + + target + + + host + baremetrics.io + + + host + *.baremetrics.io + + + + + Bareos + + ruleset + + name + Bareos + rule + + from + ^http://(?:www\.)?bareos\.org/ + to + https://www.bareos.org/ + + securecookie + + host + ^www\.bareos\.org$ + name + .+ + + target + + + host + bareos.org + + + host + www.bareos.org + + + + + Bargains 4 Business + + ruleset + + name + Bargains 4 Business + rule + + from + ^http://(www\.)?bargains4business\.com\.au/ + to + https://$1bargains4business.com.au/ + + securecookie + + host + ^(?:w*\.)?bargains4business\.com\.au$ + name + .+ + + target + + + host + bargains4business.com.au + + + host + *.bargains4business.com.au + + + + + BarkerJr.net + + ruleset + + name + BarkerJr.net + rule + + from + ^http://www\.barkerjr\.net/ + to + https://www.barkerjr.net/ + + target + + host + www.barkerjr.net + + + + Barmer-GEK + + ruleset + + name + Barmer-GEK + rule + + from + ^http://(?:www\.)?barmer-gek\.de/ + to + https://www.barmer-gek.de/ + + target + + + host + www.barmer-gek.de + + + host + barmer-gek.de + + + + + Barna.org + + ruleset + + name + Barna.org + rule + + from + ^http://(www\.)?barna\.org/ + to + https://$1barna.org/ + + target + + + host + barna.org + + + host + www.barna.org + + + + + Barnard College + + ruleset + + name + Barnard College + rule + + from + ^http://(www\.)?barnard\.edu/ + to + https://$1barnard.edu/ + + target + + + host + barnard.edu + + + host + www.barnard.edu + + + + + Barnes and Noble (partial) + + ruleset + + exclusion + + pattern + ^http://www\.barnesandnoble\.com/(?:google/ad\?url=|p/[\w-]+|[sw]/) + + name + Barnes and Noble (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?b(?:arnesandnoble|n)\.com/ + to + https://www.barnesandnoble.com/ + + + from + ^http://(cart\d|my|mynook|pnr)\.barnesandnoble\.com/ + to + https://$1.barnesandnoble.com/ + + + from + ^http://images\.barnesandnoble\.com/ + to + https://simg1.imagesbn.com/ + + + securecookie + + host + ^(?:cart\d|my|\.?mynook)\.barnesandnoble\.com$ + name + .+ + + target + + + host + barnesandnoble.com + + + host + *.barnesandnoble.com + + + host + bn.com + + + host + www.bn.com + + + + + Barnes-Jewish Hospital (partial) + + ruleset + + name + Barnes-Jewish Hospital (partial) + rule + + from + ^http://(?:www\.)?barnesjewish\.org/(BJHControls/|favicon\.ico|images/|MediaGallery/|skins/|styles/|[uU]pload/) + to + https://www.barnesjewish.org/$1 + + target + + + host + barnesjewish.org + + + host + www.barnesjewish.org + + + + + Barnskospecialisten.se + + ruleset + + name + Barnskospecialisten.se + platform + mixedcontent + rule + + + from + ^http://www\.barnskospecialisten\.se/ + to + https://www.barnskospecialisten.se/ + + + from + ^http://barnskospecialisten\.se/ + to + https://barnskospecialisten.se/ + + + target + + + host + www.barnskospecialisten.se + + + host + barnskospecialisten.se + + + + + Barracuda.com + + ruleset + + name + Barracuda.com + rule + + + from + ^http://(login\.|www\.)?barracuda\.com/ + to + https://$1barracuda.com/ + + + from + ^http://(login\.|www\.)?barracudanetworks\.com/ + to + https://$1barracudanetworks.com/ + + + securecookie + + host + ^www\.barracuda\.com$ + name + .+ + + target + + + host + barracuda.com + + + host + *.barracuda.com + + + host + barracudanetworks.com + + + host + *.barracudanetworks.com + + + + + Base INC! + + ruleset + + name + Base INC! + rule + + from + ^http://(www\.)?base-valid\.com/ + to + https://$1base-valid.com/ + + securecookie + + host + ^(?:www)?\.base-valid\.com$ + name + .+ + + target + + + host + base-valid.com + + + host + *.base-valid.com + + + + + Bassh.net + + ruleset + + name + Bassh.net + platform + firefox + rule + + from + ^http://bassh\.net/ + to + https://bassh.net/ + + securecookie + + host + ^bassh\.net$ + name + .+ + + target + + host + bassh.net + + + + Batmanarkhamorigins.com + + ruleset + + name + Batmanarkhamorigins.com + rule + + from + ^http://(www\.)?batmanarkhamorigins\.com/ + to + https://www.batmanarkhamorigins.com/ + + target + + + host + batmanarkhamorigins.com + + + host + www.batmanarkhamorigins.com + + + + + Battelle (partial) + + ruleset + + name + Battelle (partial) + rule + + from + ^http://(www\.)?battelle\.org/(careers/(?:benefits|current-openings|our-culture)(?:$|\?)|docs/|doing-business-with-us/commercial-clients(?:$|\?)|favicon\.ico|feeds/|images/|Sitefinity/|Telerik\.Web\.UI\.WebResource\.axd) + to + https://$1battelle.org/$2 + + target + + + host + battelle.org + + + host + www.battelle.org + + + + + Battle Creek Enquirer + + ruleset + + name + Battle Creek Enquirer + rule + + from + ^https?://(?:cmsimg\.|www\.)?battlecreekenquirer\.com/ + to + https://www.battlecreekenquirer.com/ + + securecookie + + host + ^www\.battlecreekenquirer\.com$ + name + .+ + + target + + + host + battlecreekenquirer.com + + + host + *.battlecreekenquirer.com + + + + + Battle for Wesnoth (partial) + + ruleset + + exclusion + + + pattern + ^http://(addons|replays)\.wesnoth\.org/icons/$ + + + pattern + ^http://(units|wiki)\.wesnoth\.org/skins/$ + + + name + Battle for Wesnoth (partial) + platform + cacert + rule + + + from + ^http://(?:((?:addonlist|bugs|changelog|dev(?:-addons|docs)|eclipse|gettext|irclogs|manual|patches|stable-(?:addons|changelog)|(?:web)?svn|wesnothd)\.)|www\.)?wesnoth\.org/ + to + https://$1wesnoth.org/ + + + from + ^http://(addons|replays)\.wesnoth\.org/icons/ + to + https://$1.wesnoth.org/icons/ + + + from + ^https?://(?:units|wiki)\.wesnoth\.org/skins/ + to + https://wesnoth.org/mw/skins/ + + + from + ^http://wiki\.wesnoth\.org/favicon\.ico$ + to + https://wiki.wesnoth.org/favicon.ico + + + target + + + host + wesnoth.org + + + host + *.wesnoth.org + + + + + Battle for the Net.com + + ruleset + + name + Battle for the Net.com + rule + + from + ^http://(www\.)?battleforthenet\.com/ + to + https://$1battleforthenet.com/ + + securecookie + + host + ^\.battleforthenet\.com$ + name + .+ + + target + + + host + battleforthenet.com + + + host + *.battleforthenet.com + + + + + Battle.net (partial) + + ruleset + + exclusion + + pattern + ^http://(?:(?:eu|kr|sea|tw|us|www)\.)?battle\.net/(?!(?:account|d3|login)(?:$|\?|/)|favicon\.ico|static(?:-render)?/|.+/static/) + + name + Battle.net (partial) + rule + + + from + ^http://((?:eu|forums|kr|sea|tw|us|www)\.)?battle\.net/ + to + https://$1battle.net/ + + + from + ^http://us\.media3\.battle\.net/ + to + https://bnetcmsus-a.akamaihd.net/ + + + securecookie + + host + ^forums\.battle\.net$ + name + .+ + + target + + + host + battle.net + + + host + *.battle.net + + + + + Bauhaus-University Weimar (partial) + + ruleset + + name + Bauhaus-University Weimar (partial) + rule + + from + ^http://w(ebmail|ww)\.uni-weimar\.de/ + to + https://w$1.uni-weimar.de/ + + securecookie + + host + ^.+\.uni-weimar\.de$ + name + .+ + + target + + + host + *.uni-weimar.de + + + host + *.webmail.uni-weimar.de + + + + + Bay Area Amusements + + ruleset + + name + Bay Area Amusements + rule + + from + ^http://(www\.)?bayareaamusements\.com/ + to + https://$1bayareaamusements.com/ + + securecookie + + host + ^(?:www\.)?bayareaamusements\.com$ + name + .+ + + target + + + host + bayareaamusements.com + + + host + www.bayareaamusements.com + + + + + Bay Citizen.org + + ruleset + + name + Bay Citizen.org + rule + + from + ^http://(?:www\.)?baycitizen\.org/ + to + https://www.baycitizen.org/ + + securecookie + + host + ^www\.baycitizen\.org$ + name + .+ + + target + + + host + baycitizen.org + + + host + www.baycitizen.org + + + + + BayFiles + + ruleset + + name + BayFiles + rule + + + from + ^http://(?:www\.)?bayfiles\.com/ + to + https://bayfiles.net/ + + + from + ^http://(www\.)?bayfiles\.net/ + to + https://$1bayfiles.net/ + + + target + + + host + bayfiles.com + + + host + www.bayfiles.com + + + host + bayfiles.net + + + host + www.bayfiles.net + + + + + Bayan.ir (partial) + + ruleset + + name + Bayan.ir (partial) + rule + + from + ^http://(www\.)?bayan\.ir/ + to + https://$1bayan.ir/ + + securecookie + + host + ^bayan\.ir$ + name + .+ + + target + + + host + bayan.ir + + + host + www.bayan.ir + + + + + Baylor.edu (partial) + + ruleset + + name + Baylor.edu (partial) + rule + + + from + ^http://(?:www\.)?baylor\.edu/ + to + https://www.baylor.edu/ + + + from + ^http://(m|www1)\.baylor\.edu/ + to + https://$1.baylor.edu/ + + + securecookie + + host + ^\.(?:m|www)\.baylor\.edu$ + name + .+ + + target + + + host + baylor.edu + + + host + *.baylor.edu + + + + + Bayrischer Rundfunk + + ruleset + + name + Bayrischer Rundfunk + rule + + from + ^http://www\.brreisen\.de/ + to + https://www.brreisen.de/ + + target + + host + *.brreisen.de + + + + Bazaarvoice + + ruleset + + exclusion + + pattern + ^http://dashboard\.bazaarvoice\.com/(?!css/|images/) + + name + Bazaarvoice + rule + + + from + ^https?://(?:www\.)?bazaarvoice\.com/ + to + https://www.bazaarvoice.com/ + + + from + ^http://(dashboard|login)\.bazaarvoice\.com/ + to + https://$1.bazaarvoice.com/ + + + from + ^https?://resources\.bazaarvoice\.com/images/ + to + https://na-a.bazaarvoice.com/images/ + + + from + ^https?://spark\.bazaarvoice\.com/ + to + https://bazaarvoice.secure.force.com/ + + + securecookie + + host + ^(?!dashboard\.).*\.bazaarvoice\.com$ + name + .+ + + target + + + host + bazaarvoice.com + + + host + *.bazaarvoice.com + + + + + BazzApp + + ruleset + + name + BazzApp + rule + + from + ^http://(?:www\.)?bazapp\.com/ + to + https://bazapp.com/ + + securecookie + + host + ^bazzapp\.com$ + name + .+ + + target + + + host + bazzapp.com + + + host + www.bazzapp.com + + + + + Bbcshop.com + + ruleset + + name + Bbcshop.com + platform + mixedcontent + rule + + from + ^http://www\.bbcshop\.com/ + to + https://www.bbcshop.com/ + + target + + host + www.bbcshop.com + + + + Bccx.com + + ruleset + + name + Bccx.com + platform + firefox + rule + + from + ^http://bccx\.com/ + to + https://bccx.com/ + + securecookie + + host + ^bccx\.com$ + name + .+ + + target + + host + bccx.com + + + + Bcove.me + + ruleset + + name + Bcove.me + rule + + from + ^http://bcove\.me/ + to + https://bcove.me/ + + target + + host + bcove.me + + + + Bcrook.com + + ruleset + + name + Bcrook.com + platform + firefox + rule + + from + ^http://bcrook\.com/ + to + https://bcrook.com/ + + securecookie + + host + ^bcrook\.com$ + name + .+ + + target + + host + bcrook.com + + + + Bdone.hu + + ruleset + + name + Bdone.hu + rule + + from + ^http://(www\.)?bdone\.hu/ + to + https://www.bdone.hu/ + + target + + + host + bdone.hu + + + host + www.bdone.hu + + + + + Be Diff.com.br + + ruleset + + name + Be Diff.com.br + rule + + from + ^http://(www\.)?bediff\.com\.br/ + to + https://$1bediff.com.br/ + + securecookie + + host + ^(?:w*\.)?bediff\.com\.br$ + name + .+ + + target + + + host + bediff.com.br + + + host + *.bediff.com.br + + + + + BeCoquin.com (partial) + + ruleset + + name + BeCoquin.com (partial) + rule + + from + ^http://(?:www\.)?becoquin\.com/(?=blog(?:$|[?/])|ext\.php|favicon\.ico|login\.html|static/) + to + https://www.becoquin.com/ + + securecookie + + host + ^\.becoquin\.com$ + name + ^(?:TRACK_(?:CLOG|VISIT)|__utm\w)$ + + target + + + host + becoquin.com + + + host + www.becoquin.com + + + + + BeNaughty.com (partial) + + ruleset + + exclusion + + pattern + ^http://ed\.benaughty\.com/(?!ext\.php) + + name + BeNaughty.com (partial) + rule + + + from + ^http://(?:www\.)?benaughty\.com/ + to + https://www.benaughty.com/ + + + from + ^http://(cdn|ed)\.benaughty\.com/ + to + https://$1.benaughty.com/ + + + securecookie + + host + ^(.*\.)?benaughty\.com$ + name + .* + + target + + + host + benaughty.com + + + host + *.benaughty.com + + + + + Beacon Initiative + + ruleset + + name + Beacon Initiative + rule + + from + ^http://(www\.)?beaconinitiative\.com/ + to + https://$1beaconinitiative.com/ + + securecookie + + host + ^\.beaconinitiative\.com$ + name + .+ + + target + + + host + beaconinitiative.com + + + host + *.beaconinitiative.com + + + + + Beacon Reader.com + + ruleset + + name + Beacon Reader.com + rule + + from + ^http://(?:www\.)?beaconreader\.com/ + to + https://www.beaconreader.com/ + + securecookie + + host + ^www\.beaconreader\.com$ + name + .+ + + target + + + host + beaconreader.com + + + host + www.beaconreader.com + + + + + Beagle Street (partial) + + ruleset + + name + Beagle Street (partial) + rule + + from + ^http://quotes\.beaglestreet\.com/ + to + https://quotes.beaglestreet.com/ + + securecookie + + host + ^quotes\.beaglestreet\.com$ + name + .+ + + target + + host + quotes.beaglestreet.com + + + + Beaker-Project.org + + ruleset + + name + Beaker-Project.org + rule + + from + ^http://((?:gerrit|git|stage|www)\.)?beaker-project\.org/ + to + https://$1beaker-project.org/ + + target + + + host + beaker-project.org + + + host + *.beaker-project.org + + + + + BeamYourScreen + + ruleset + + name + BeamYourScreen + rule + + from + ^http://(admin\.|www\.)?beamyourscreen\.de/ + to + https://$1beamyourscreen.de/ + + target + + + host + beamyourscreen.de + + + host + *.beamyourscreen.de + + + + + Beanstalk Data + + ruleset + + name + Beanstalk Data + rule + + from + ^http://app\.beanstalkdata\.com/ + to + https://app.beanstalkdata.com/ + + securecookie + + host + ^app\.beanstalkdata\.com$ + name + .+ + + target + + host + app.beanstalkdata.com + + + + Beanstock Media (partial) + + ruleset + + name + Beanstock Media (partial) + rule + + from + ^http://tag\.beanstock\.co/ + to + https://ib.adnxs.com/ + + target + + host + tag.beanstock.co + + + + BeastNode (partial) + + ruleset + + name + BeastNode (partial) + rule + + from + ^http://(www\.)?beastnode\.com/ + to + https://$1beastnode.com/ + + securecookie + + host + ^.*\.beastnode\.com$ + name + .+ + + target + + + host + beastnode.com + + + host + *.beastnode.com + + + + + Beatsmedia + + ruleset + + name + Beatsmedia + rule + + from + ^http://(www\.)?beatsmedia\.com/ + to + https://$1beatsmedia.com/ + + target + + + host + beatsmedia.com + + + host + www.beatsmedia.com + + + + + BeautifulDecay.com (false MCB) + + ruleset + + name + BeautifulDecay.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?beautifuldecay\.com/ + to + https://$1beautifuldecay.com/ + + securecookie + + host + ^\.beautifuldecay\.com$ + name + .+ + + target + + + host + beautifuldecay.com + + + host + *.beautifuldecay.com + + + + + BeautifulDecay.com (partial) + + ruleset + + name + BeautifulDecay.com (partial) + rule + + from + ^http://(www\.)?beautifuldecay\.com/(?=favicon\.ico|images/|wp-content/|wp-includes/) + to + https://$1beautifuldecay.com/ + + target + + + host + beautifuldecay.com + + + host + www.beautifuldecay.com + + + + + BeautyBar.com (partial) + + ruleset + + name + BeautyBar.com (partial) + rule + + + from + ^https?://(?:c\d\.)?beautybar\.com/ + to + https://www.beautybar.com/ + + + from + ^http://www\.beautybar\.com/(app/|(?:checkout|login)\.qs|[iI]mages/|giftcertificate/|helpcenter/|myaccount/|SampleSociety/|(?:App_)?Themes/|[\w\-]+\.aspx) + to + https://www.beautybar.com/$1 + + + target + + + host + beautybar.com + + + host + *.beautybar.com + + + + + Beaverbrooks.co.uk (partial) + + ruleset + + name + Beaverbrooks.co.uk (partial) + rule + + + from + ^http://(?:www\.)?beaverbrooks\.co\.uk/(?=_client/|favicon\.ico|images/|myaccount(?:$|[?/])|_uploads/) + to + https://www.beaverbrooks.co.uk/ + + + from + ^http://content\.beaverbrooks\.co\.uk/ + to + https://content.beaverbrooks.co.uk/ + + + securecookie + + host + ^\.beaverbrooks\.co\.uk$ + name + ^__utm\w$ + + target + + + host + beaverbrooks.co.uk + + + host + *.beaverbrooks.co.uk + + + + + Bedis.eu + + ruleset + + name + Bedis.eu + rule + + + from + ^http://(?:www\.)?bedis\.eu/ + to + https://bedis.eu/ + + + from + ^http://(stats|wiki)\.bedis\.eu/ + to + https://$1.bedis.eu/ + + + securecookie + + host + ^bedis\.eu$ + name + .+ + + target + + + host + bedis.eu + + + host + *.bedis.eu + + + + + BeeFree.io + + ruleset + + name + BeeFree.io + rule + + from + ^http://(www\.)?beefree\.io/ + to + https://$1beefree.io/ + + securecookie + + host + ^(?:www\.)?beefree\.io$ + name + .+ + + target + + + host + beefree.io + + + host + www.beefree.io + + + + + Beeld en Geluid.nl (partial) + + ruleset + + name + Beeld en Geluid.nl (partial) + rule + + from + ^http://(www\.)?beeldengeluid\.nl/ + to + https://$1beeldengeluid.nl/ + + target + + + host + beeldengeluid.nl + + + host + www.beeldengeluid.nl + + + + + BeenVerified (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?beenverified\.com/(?!(?:\?.*)?$|sitemap\.html) + + name + BeenVerified (partial) + rule + + + from + ^http://(api\.|(?:www\.)?sor\.api\.|m\.|www\.)?beenverified\.com/ + to + https://$1beenverified.com/ + + + from + ^https?://support\.beenverified\.com/(generated|images)/ + to + https://assets.zendesk.com/$1/ + + + securecookie + + host + ^m\.beenverified\.com$ + name + .+ + + target + + + host + beenverified.com + + + host + *.beenverified.com + + + + + Beetailer.com + + ruleset + + name + Beetailer.com + rule + + + from + ^http://(www\.)?beetailer\.com/ + to + https://$1beetailer.com/ + + + from + ^http://support\.beetailer\.com/ + to + https://beetailer.tenderapp.com/ + + + securecookie + + host + ^www\.beetailer\.com$ + name + .+ + + target + + + host + beetailer.com + + + host + *.beetailer.com + + + + + BeginLinux.com + + ruleset + + name + BeginLinux.com + rule + + from + ^http://(www\.)?beginlinux\.com/ + to + https://$1beginlinux.com/ + + securecookie + + host + ^(?:www\.)?beginlinux\.com$ + name + .+ + + target + + + host + beginlinux.com + + + host + www.beginlinux.com + + + + + Beginner Triathlete (partial) + + ruleset + + name + Beginner Triathlete (partial) + rule + + from + ^http://(www\.)?beginnertriathlete\.com/ + to + https://$1beginnertriathlete.com/ + + securecookie + + host + ^(?:www\.)?beginnertriathlete\.com$ + name + .+ + + target + + + host + beginnertriathlete.com + + + host + www.beginnertriathlete.com + + + + + Begun + + ruleset + + name + Begun + rule + + + from + ^https?://(?:www\.)?begun\.ru/ + to + https://www.begun.ru/ + + + from + ^http://(autocontext|my2)\.begun\.ru/ + to + https://$1.begun.ru/ + + + target + + + host + begun.ru + + + host + *.begun.ru + + + + + Behance (partial) + + ruleset + + name + Behance (partial) + rule + + + from + ^http://(?:www\.)?behance\.net/ + to + https://www.behance.net/ + + + from + ^http://(a2|help)\.behance\.net/ + to + https://$1.behance.net/ + + + securecookie + + host + ^(?:a2|www)\.behance\.net$ + name + .* + + target + + + host + behance.net + + + host + *.behance.net + + + + + Behr + + ruleset + + name + Behr + rule + + from + ^http://(m\.|www\.)?behr\.com/ + to + https://$1behr.com/ + + target + + + host + behr.com + + + host + *.behr.com + + + + + Beijing Qianfendian (partial) + + ruleset + + name + Beijing Qianfendian (partial) + rule + + + from + ^http://baifendian\.com/ + to + https://www.baifendian.com/ + + + from + ^http://(\w+\.api|ssl-[\w\-]+|www)\.baifendian\.com/ + to + https://$1.baifendian.com/ + + + target + + + host + baifendian.com + + + host + *.baifendian.com + + + + + Beleza na Web (partial) + + ruleset + + name + Beleza na Web (partial) + rule + + + from + ^http://(www\.)?belezanaweb\.com\.br/(css/|favicon\.ico|imagen?s/|scripts/) + to + https://$1belezanaweb.com.br/$2 + + + from + ^http://static\d?\.belezanaweb\.net\.br/ + to + https://d33827d8ipi614.cloudfront.net/ + + + securecookie + + host + ^\.belezanaweb\.net\.br$ + name + ^__sonar$ + + target + + + host + belezanaweb.net.br + + + host + *.belezanaweb.net.br + + + + + Belkin (partial) + + ruleset + + name + Belkin (partial) + rule + + from + ^http://(?:www\.)?belkin\.com/(favicon\.ico|images/|\w\w/login(?:$|\?|/)|medias/|resources/|_ui/|\w\w/_ui/) + to + https://www.belkin.com/$1 + + target + + + host + belkin.com + + + host + www.belkin.com + + + + + Bell-Labs.com + + ruleset + + name + Bell-Labs.com + rule + + from + ^http://(?:www\.)?bell-labs\.com/ + to + https://www.bell-labs.com/ + + securecookie + + host + ^www\.bell-labs\.com$ + name + .+ + + target + + + host + bell-labs.com + + + host + www.bell-labs.com + + + + + BellSouth (partial) + + ruleset + + name + BellSouth (partial) + rule + + + from + ^https?://(?:www\.)?bellsouth\.com/ + to + https://www.bellsouth.com/ + + + from + ^http://smallbusiness\.bellsouth\.com/ + to + https://smallbusiness.bellsouth.com/ + + + securecookie + + host + ^smallbusiness\.bellsouth\.com$ + name + .+ + + target + + + host + bellsouth.com + + + host + *.bellsouth.com + + + + + Bellingham School District (partial) + + ruleset + + name + Bellingham School District (partial) + rule + + from + ^http://(sehome\.|www\.)?bellinghamschools\.org/(misc|sites)/ + to + https://$1bellinghamschools.org/$2/ + + target + + + host + bellinghamschools.org + + + host + *.bellinghamschools.org + + + + + Belnet.be (partial) + + ruleset + + name + Belnet.be (partial) + rule + + + from + ^http://(?:www\.)?belnet\.be/ + to + https://www.belnet.be/ + + + from + ^http://(bcg|certificates|changepass(?:word)?|dcs|events?|fiorano|idp|idpcustomer|scs)\.belnet\.be/ + to + https://$1.belnet.be/ + + + from + ^http://bnc\.belnet\.be/+(\?.*)?$ + to + https://events.belnet.be/nl/content/belnet-networking-conference-2012$1 + + + from + ^http://loba\.belnet\.be/+[^?]*(\?.*)? + to + https://dcs.belnet.be/$1 + + + securecookie + + host + ^(?:\.?dcs|\.events?|idpcustomer)\.belnet\.be$ + name + .+ + + target + + + host + belnet.be + + + host + *.belnet.be + + + + + Belpino.se + + ruleset + + name + Belpino.se + rule + + + from + ^http://www\.belpino\.se/ + to + https://www.belpino.se/ + + + from + ^http://belpino\.se/ + to + https://belpino.se/ + + + target + + + host + www.belpino.se + + + host + belpino.se + + + + + Belspo.be (partial) + + ruleset + + name + Belspo.be (partial) + rule + + from + ^http://www\.belspo\.be/ + to + https://www.belspo.be/ + + target + + host + www.belspo.be + + + + Bendigo Bank + + ruleset + + name + Bendigo Bank + rule + + + from + ^http://bendigobank\.com\.au/ + to + https://www.bendigobank.com.au/ + + + from + ^http://(edroom|m|shop|www)\.bendigobank\.com\.au/ + to + https://$1.bendigobank.com.au/ + + + target + + + host + bendigobank.com.au + + + host + *.bendigobank.com.au + + + + + Benetech + + ruleset + + name + Benetech + rule + + from + ^http://(www\.)?benetech\.org/ + to + https://$1benetech.org/ + + target + + + host + benetech.org + + + host + www.benetech.org + + + + + Bennetts (partial) + + ruleset + + name + Bennetts (partial) + rule + + + from + ^https?://(?:www\.)?bennetts\.co\.uk/(assets/|bikesocial/signin|Global/|PageFiles/|[tT]emplates/) + to + https://www.bennetts.co.uk/$1 + + + from + ^http://(classified|quote)s\.bennetts\.co\.uk/ + to + https://$1s.bennetts.co.uk/ + + + securecookie + + host + ^\.?quotes\.bennets\.co\.uk$ + name + .+ + + target + + + host + bennetts.co.uk + + + host + *.bennetts.co.uk + + + host + *.quotes.bennetts.co.uk + + + + + Bentley Univerity (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?bentley\.edu/(?!favicon\.ico|files/|sites/) + + name + Bentley Univerity (partial) + rule + + from + ^http://((?:secureforms|www)\.)?bentley\.edu/ + to + https://$1bentley.edu/ + + securecookie + + host + ^\.secureforms\.bentley\.edu$ + name + .+ + + target + + + host + bentley.edu + + + host + *.bentley.edu + + + + + Berkeley Chess School (partial) + + ruleset + + name + Berkeley Chess School (partial) + rule + + from + ^http://(www\.)?berkeleychessschool\.org/(imgs|images|stylesheets)/ + to + https://$1berkeleychessschool.org/$2/ + + securecookie + + host + ^(.*\.)?berkeleychessschool\.org$ + name + .* + + target + + + host + berkeleychessschool.org + + + host + www.berkeleychessschool.org + + + + + Berkeley LUG.com + + ruleset + + name + Berkeley LUG.com + rule + + from + ^http://(?:www\.)?berkeleylug\.com/ + to + https://www.berkeleylug.com/ + + securecookie + + host + ^www\.berkeleylug\.com$ + name + .+ + + target + + + host + berkeleylug.com + + + host + www.berkeleylug.com + + + + + Berklee College of Music + + ruleset + + name + Berklee College of Music + rule + + from + ^http://apply\.berklee\.edu/ + to + https://apply.berklee.edu/ + + target + + host + apply.berklee.edu + + + + Berkshire-Hathaway (partial) + + ruleset + + name + Berkshire-Hathaway (partial) + rule + + + from + ^http://businesswire\.com/ + to + https://www.businesswire.com/ + + + from + ^http://(?:www\.)?businesswire\.com/(css/|images/|portal/(?:binary|site/home/(?:template\.LOGIN|index\.jsp\?epi-content=[\w&=]+wizardName=userreg))) + to + https://www.businesswire.com/$1 + + + from + ^http://(connect|secure)\.businesswire\.com/ + to + https://$1.businesswire.com/ + + + from + ^http://cts\.businesswire\.com/ct/CT\?id= + to + https://www.businesswire.com/images/spacer.gif + + + from + ^http://mms\.businesswire\.com/bwapps/mediaserver/ + to + https://connect.businesswire.com/bwapps/mediaserver/ + + + target + + + host + businesswire.com + + + host + *.businesswire.com + + + + + Berlin Airport + + ruleset + + name + Berlin Airport + rule + + + from + ^https?://berlin-airport\.de/ + to + https://www.berlin-airport.de/ + + + from + ^http://([^/:@]+)?\.berlin-airport\.de/ + to + https://$1.berlin-airport.de/ + + + target + + + host + berlin-airport.de + + + host + *.berlin-airport.de + + + + + Berlin.de + + ruleset + + exclusion + + + pattern + ^http://action\.berlin\.de/ + + + pattern + ^http://daten\.berlin\.de/ + + + name + Berlin.de + rule + + + from + ^https?://berlin\.de/ + to + https://www.berlin.de/ + + + from + ^http://([^/:@]+)?\.berlin\.de/ + to + https://$1.berlin.de/ + + + target + + + host + www.berlin.de + + + host + *.berlin.de + + + + + Berlinonline.de + + ruleset + + name + Berlinonline.de + platform + mixedcontent + rule + + + from + ^http://(www|boss)\.berlinonline\.de/ + to + https://$1.berlinonline.de/ + + + from + ^http://berlinonline\.de/ + to + https://www.berlinonline.de/ + + + securecookie + + + host + ^boss\.berlinonline\.de + name + .* + + + host + www\.berlinonline\.de + name + .* + + + target + + + host + www.berlinonline.de + + + host + boss.berlinonline.de + + + host + berlinonline.de + + + + + Bernal Bucks + + ruleset + + name + Bernal Bucks + rule + + from + ^http://(www\.)?bernalbucks\.org/ + to + https://$1bernalbucks.org/ + + securecookie + + host + ^\.?bernalbucks\.org$ + name + .+ + + target + + + host + bernalbucks.org + + + host + *.bernalbucks.org + + + + + Bernard Hodes Group (partial) + + ruleset + + name + Bernard Hodes Group (partial) + rule + + + from + ^http://(\w+)\.sc\.hodesdigital\.com/ + to + https://$1.sc.hodesdigital.com/ + + + from + ^http://jobmatcher\.hodesiq\.com/ + to + https://jobmatcher.hodesiq.com/ + + + securecookie + + host + ^.+\.sc\.hodesdigital\.com$ + name + .+ + + target + + + host + *.sc.hodesdigital.com + + + host + jobmatcher.hodesiq.com + + + + + BerryReview.com (false MCB) + + ruleset + + name + BerryReview.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?berryreview\.com/ + to + https://$1berryreview.com/ + + securecookie + + host + ^(?:\.?www\.)?berryreview\.com$ + name + .+ + + target + + + host + berryreview.com + + + host + *.berryreview.com + + + + + Bespied-ons-niet.nl + + ruleset + + name + Bespied-ons-niet.nl + rule + + from + ^http://(?:www\.)?bespied-ons-niet\.nl/ + to + https://bespied-ons-niet.nl/ + + target + + + host + bespied-ons-niet.nl + + + host + www.bespied-ons-niet.nl + + + + + Best Buy (partial) + + ruleset + + name + Best Buy (partial) + rule + + + from + ^http://bestbuy\.ugc\.bazaarvoice\.com/ + to + https://bestbuy.ugc.bazaarvoice.com/ + + + from + ^http://espanol\.bestbuy\.com/(?=favicon\.ico|img/|simages/) + to + https://a248.e.akamai.net/f/1135/3256/9/espanol.bestbuy.com/ + + + from + ^http://www-ssl\.bestbuy\.com/ + to + https://www-ssl.bestbuy.com/ + + + from + ^https?://images(?:-ssl)?.bestbuy.com/ + to + https://images-ssl.bestbuy.com/ + + + securecookie + + host + ^www-ssl\.bestbuy\.com$ + name + .+ + + target + + + host + bestbuy.ugc.bazaarvoice.com + + + host + *.bestbuy.com + + + + + Best Lawyers + + ruleset + + name + Best Lawyers + rule + + from + ^http://(?:www\.)?bestlawyers\.com/ + to + https://www.bestlawyers.com/ + + securecookie + + host + ^www\.bestlawyers\.com$ + name + .* + + target + + + host + bestlawyers.com + + + host + www.bestlawyers.com + + + + + Best Olive Oils (partial) + + ruleset + + name + Best Olive Oils (partial) + rule + + from + ^https?://\d\.bestoliveoils\.com/ + to + https://d2j28hyghlzp.cloudfront.net/ + + target + + host + *.bestoliveoils.com + + + + Best Practical.com (partial) + + ruleset + + name + Best Practical.com (partial) + rule + + from + ^http://(shop\.|www\.)?bestpractical\.com/ + to + https://$1bestpractical.com/ + + target + + + host + bestpractical.com + + + host + *.bestpractical.com + + + + + BestOfferBuy.com + + ruleset + + name + BestOfferBuy.com + rule + + from + ^http://(?:www\.)?bestofferbuy\.com/ + to + https://www.bestofferbuy.com/ + + securecookie + + host + ^\.(?:www\.)?bestofferbuy\.com$ + name + .+ + + target + + + host + bestofferbuy.com + + + host + *.bestofferbuy.com + + + + + Bestcovery.com (partial) + + ruleset + + name + Bestcovery.com (partial) + rule + + + from + ^http://(www\.)?bestcovery\.com/(aspect_js\.js|blog/wp-content/|ci/|sites/) + to + https://$1bestcovery.com/$2 + + + from + ^http://cdn[1-6]?\.bestcovery\.com/ + to + https://d20no9q7bar3sq.cloudfront.net/ + + + securecookie + + host + ^\.bestcovery\.com$ + name + ^__utm\w$ + + target + + + host + bestcovery.com + + + host + *.bestcovery.com + + + + + Bet555 + + ruleset + + name + Bet555 + rule + + from + ^http://(www\.)?bet555\.eu/ + to + https://$1bet555.eu/ + + securecookie + + host + ^(?:w*\.)?bet555\.eu$ + name + .+ + + target + + + host + bet555.eu + + + host + *.bet555.eu + + + + + Beta & Cie (partial) + + ruleset + + name + Beta & Cie (partial) + platform + mixedcontent + rule + + + from + ^http://cdn\.betacie\.(?:com|net)/ + to + https://cdn.betacie.net/ + + + from + ^http://cdn\d\.viedemerde\.fr/ + to + https://betacie.cachefly.net/ + + + from + ^http://(www\.)?viedemerde\.fr/ + to + https://$1viedemerde.fr/ + + + target + + + host + cdn.betacie.com + + + host + cdn.betacie.net + + + host + viedemerde.fr + + + host + *.viedemerde.fr + + + + + Betabeat.com + + ruleset + + name + Betabeat.com + rule + + from + ^http://(www\.)?betabeat\.com/ + to + https://$1betabeat.com/ + + securecookie + + host + ^\.betabeat\.com$ + name + .+ + + target + + + host + betabeat.com + + + host + *.betabeat.com + + + + + Bethsoft.com (false MCB) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?bethsoft\.com/(?:assets/|css/|favicon\.ico) + + + pattern + ^http://bgs\.bethsoft\.com/(?:[\w-]+\.css|favicon\.ico|images/) + + + pattern + ^http://(?:cdn|cdnstatic|content|fallout|geck|store)\. + + + pattern + ^http://forums\.bethsoft\.com/(?:cache/|favicon\.ico|public/|uploads/) + + + pattern + ^http://support\.bethsoft\.com/(?:assets/|favicon\.ico|themes/) + + + name + Bethsoft.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(\w+\.)?bethsoft\.com/ + to + https://$1bethsoft.com/ + + securecookie + + host + ^(?:.*\.)?bethsoft\.com$ + name + .+ + + target + + + host + bethsoft.com + + + host + *.bethsoft.com + + + + + Bethsoft.com (partial) + + ruleset + + exclusion + + + pattern + ^http://geck\. + + + pattern + ^http://(?:www\.)?bethsoft\.com/(?!assets/|css/|favicon\.ico) + + + pattern + ^http://bgs\.bethsoft\.com/(?![\w-]+\.css|favicon\.ico|images/) + + + pattern + ^http://forums\.bethsoft\.com/(?!cache/|favicon\.ico|public/|uploads/) + + + pattern + ^http://support\.bethsoft\.com/(?!assets/|favicon\.ico|themes/) + + + name + Bethsoft.com (partial) + rule + + + from + ^http://cdn\.bethsoft\.com/ + to + https://d1bjnur3wbumt5.cloudfront.net/ + + + from + ^http://cdnstatic\.bethsoft\.com/ + to + https://d1ys1uetzexz61.cloudfront.net/ + + + from + ^http://content\.bethsoft\.com/ + to + https://d3o0v0yx1apq2.cloudfront.net/ + + + from + ^http://(\w+\.)?bethsoft\.com/ + to + https://$1bethsoft.com/ + + + securecookie + + + host + ^\.bethsoft\.com$ + name + __u\w+$ + + + host + .+\.bethsoft\.com$ + name + .+ + + + target + + + host + bethsoft.com + + + host + *.bethsoft.com + + + + + Betnet.fr + + ruleset + + name + Betnet.fr + platform + firefox + rule + + from + ^http://(www\.)?betnet\.fr/ + to + https://www.betnet.fr/ + + securecookie + + + host + ^betnet\.fr$ + name + .+ + + + host + ^www\.betnet\.fr$ + name + .+ + + + target + + + host + betnet.fr + + + host + www.betnet.fr + + + + + Betram Trading (partial) + + ruleset + + name + Betram Trading (partial) + rule + + from + ^http://images\.bertrams\.com/ + to + https://images.bertrams.com/ + + target + + host + images.bertrams.com + + + + Better Business Bureau (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?dc\. + + + pattern + http://(?:www\.)?seflorida\. + + + name + Better Business Bureau (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?la\.?bbb\.org/ + to + https://www.labbb.org/ + + + from + ^http://bbb\.org/ + to + https://www.bbb.org/ + + + from + ^http://(?:www\.)?([\w\-]+)\.bbb\.org/ + to + https://$1.bbb.org/ + + + from + ^http://hurdman\.app\.bbb\.org/ + to + https://hurdman.app.bbb.org/ + + + from + ^https?://(?:www\.)?bbbonline\.org/cks\.asp\?id=(\d+) + to + https://www.bbb.org/us/bbb-online-business/?id=$1 + + + from + ^http://(www\.)?bbbsilicon\.org/ + to + https://$1bbbsilicon.org/ + + + from + ^https?://(?:www\.)?sanjose\.bbb\.org/ + to + https://bbbsilicon.org/ + + + securecookie + + + host + ^.*\.bbb\.org$ + name + .* + + + host + ^(.*\.)?bbbsilicon\.org$ + name + .* + + + host + ^www\.labbb\.org$ + name + .* + + + target + + + host + bbb.org + + + host + hurdman.app.bbb.org + + + host + *.bbb.org + + + host + www.*.bbb.org + + + host + bbbonline.org + + + host + www.bbbonline.org + + + host + bbbsilicon.org + + + host + www.bbbsilicon.org + + + host + labbb.org + + + host + www.labbb.org + + + + + BetterCrypto.org + + ruleset + + name + BetterCrypto.org + rule + + from + ^http://(www\.)?bettercrypto\.org/ + to + https://$1bettercrypto.org/ + + target + + + host + bettercrypto.org + + + host + www.bettercrypto.org + + + + + Beyond Security + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?beyondsecurity\.com/(?:.+\.html)?(?:$|\?) + + name + Beyond Security + rule + + from + ^http://(\w+\.)?beyondsecurity\.com/ + to + https://$1beyondsecurity.com/ + + securecookie + + host + ^.*\.beyondsecurity\.com$ + name + .* + + target + + + host + beyondsecurity.com + + + host + *.beyondsecurity.com + + + + + Bezeq International (partial) + + ruleset + + name + Bezeq International (partial) + rule + + from + ^http://online\.bezeqint\.net/ + to + https://online.bezeqint.net/ + + securecookie + + host + ^online\.bezeqint\.net$ + name + .+ + + target + + host + online.bezeqint.net + + + + Bezos Expeditions + + ruleset + + name + Bezos Expeditions + rule + + from + ^https?://(?:www\.)?bezosexpeditions\.com/ + to + https://www.bezosexpeditions.com/ + + target + + + host + bezosexpeditions.com + + + host + www.bezosexpeditions.com + + + + + Bhiab.se + + ruleset + + name + Bhiab.se + rule + + + from + ^http://www\.bhiab\.se/ + to + https://www.bhiab.se/ + + + from + ^http://bhiab\.se/ + to + https://bhiab.se/ + + + target + + + host + www.bhiab.se + + + host + bhiab.se + + + + + Biapy.fr + + ruleset + + name + Biapy.fr + rule + + from + ^http://((?:piwik|rss|www)\.)?biapy\.fr/ + to + https://$1biapy.fr/ + + target + + + host + biapy.fr + + + host + *.biapy.fr + + + + + BidBubble.com (false MCB) + + ruleset + + name + BidBubble.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(nz\.|www\.)?bidbubble\.com/ + to + https://$1bidbubble.com/ + + securecookie + + host + ^\.bidbubble\.com$ + name + .+ + + target + + + host + bidbubble.com + + + host + *.bidbubble.com + + + + + BidCactus.com + + ruleset + + name + BidCactus.com + rule + + from + ^http://(www\.)?bidcactus\.com/ + to + https://$1bidcactus.com/ + + securecookie + + host + ^\.bidcactus\.com$ + name + .+ + + target + + + host + bidcactus.com + + + host + *.bidcactus.com + + + + + BidItBob.com + + ruleset + + name + BidItBob.com + rule + + from + ^http://(www\.)?biditbob\.com/ + to + https://$1biditbob.com/ + + securecookie + + host + ^(?:w*\.)?biditbob\.com$ + name + .+ + + target + + + host + biditbob.com + + + host + *.biditbob.com + + + + + Biddeal + + ruleset + + name + Biddeal + rule + + from + ^http://www\.biddeal\.com/ + to + https://www.biddeal.com/ + + securecookie + + host + ^\.(?:www\.)?biddeal\.com$ + name + .+ + + target + + host + www.biddeal.com + + + + Bidz.com (partial) + + ruleset + + exclusion + + pattern + ^http://blog\. + + name + Bidz.com (partial) + rule + + + from + ^http://bidz\.com/ + to + https://www.bidz.com/ + + + from + ^http://(\w+)\.bidz\.com/ + to + https://$1.bidz.com/ + + + securecookie + + host + .*bidz\.com$ + name + .* + + target + + + host + bidz.com + + + host + *.bidz.com + + + + + Big Brother Watch + + ruleset + + name + Big Brother Watch + rule + + from + ^http://(?:www\.)?bigbrotherwatch\.org\.uk/ + to + https://www.bigbrotherwatch.org.uk/ + + securecookie + + host + ^(?:www)?\.bigbrotherwatch\.org\.uk$ + name + .+ + + target + + + host + bigbrotherwatch.org.uk + + + host + *.bigbrotherwatch.org.uk + + + + + Big Brother.se (partial) + + ruleset + + name + Big Brother.se (partial) + rule + + from + ^http://(secure\.)?bigbrother\.se/ + to + https://$1bigbrother.se/ + + securecookie + + host + ^\.bigbrother\.se$ + name + ^__cfduid$ + + target + + + host + bigbrother.se + + + host + *.bigbrother.se + + + + + Big Cartel (partial) + + ruleset + + name + Big Cartel (partial) + rule + + + from + ^http://assets(\d+)?\.bigcartel\.com/ + to + https://assets$1.bigcartel.com/ + + + from + ^https?://cache[01]\.bigcartel\.com/ + to + https://d3m7eij7f8iwln.cloudfront.net/ + + + target + + host + *.bigcartel.com + + + + Big Change + + ruleset + + name + Big Change + rule + + from + ^http://(www\.)?bigchangeuk\.co\.uk/ + to + https://$1bigchangeuk.co.uk/ + + securecookie + + host + ^\.bigchangeuk\.co\.uk$ + name + .* + + target + + + host + bigchangeuk.co.uk + + + host + *.bigchangeuk.co.uk + + + + + Big Concerts (partial) + + ruleset + + name + Big Concerts (partial) + rule + + from + ^http://(www\.)?bigconcerts\.co\.za/(account|media/|resource/|themes/|ui/|zpimages/) + to + https://$1bigconcerts.co.za/$2 + + target + + + host + bigconcerts.co.za + + + host + www.bigconcerts.co.za + + + + + Big Live.com + + ruleset + + name + Big Live.com + rule + + from + ^http://(www\.)?biglive\.com/ + to + https://$1biglive.com/ + + securecookie + + host + ^(?:www)?\.biglive\.com$ + name + .+ + + target + + + host + biglive.com + + + host + *.biglive.com + + + + + Big Nerd Ranch + + ruleset + + name + Big Nerd Ranch + rule + + from + ^https?://(?:www\.)?bignerdranch\.com/ + to + https://www.bignerdranch.com/ + + securecookie + + host + ^www\.bignerdranch\.com$ + name + .+ + + target + + + host + bignerdranch.com + + + host + www.bignerdranch.com + + + + + BigCommerce + + ruleset + + exclusion + + pattern + ^http://www\.mybigcommerce\.com/$ + + name + BigCommerce + rule + + + from + ^http://(?:my)?bigcommerce\.com/ + to + https://www.bigcommerce.com/ + + + from + ^http://(account|apps|cdn\d*|support|www)\.bigcommerce\.com/ + to + https://$1.bigcommerce.com/ + + + from + ^http://(?:www\.)?interspire\.com/ + to + https://www.interspire.com/ + + + from + ^http://([\w-]+)\.mybigcommerce\.com/ + to + https://$1.mybigcommerce.com/ + + + securecookie + + + host + ^(?:account|support|www)\.bigcommerce\.com$ + name + .+ + + + host + ^www\.interspire\.com$ + name + .+ + + + host + .*\.mybigcommerce\.com$ + name + .+ + + + target + + + host + bigcommerce.com + + + host + *.bigcommerce.com + + + host + interspire.com + + + host + www.interspire.com + + + host + mybigcommerce.com + + + host + *.mybigcommerce.com + + + + + BigHugeLabs + + ruleset + + name + BigHugeLabs + rule + + from + ^https?://(?:www\.)?bighugelabs\.com/ + to + https://bighugelabs.com/ + + securecookie + + host + ^\.bighugelabs\.com$ + name + .+ + + target + + + host + bighugelabs.com + + + host + *.bighugelabs.com + + + + + BigV.io (partial) + + ruleset + + name + BigV.io (partial) + rule + + + from + ^http://(www\.)?bigv\.io/ + to + https://www.bigv.io/ + + + from + ^http://manager\.bigv\.io/ + to + https://manager.bigv.io/ + + + target + + + host + bigv.io + + + host + www.bigv.io + + + host + manager.bigv.io + + + + + Bigboxsave.com + + ruleset + + name + Bigboxsave.com + rule + + from + ^http://(www\.)?bigboxsave\.com/ + to + https://$1bigboxsave.com/ + + securecookie + + host + ^.*\.bigboxsave\.com$ + name + .+ + + target + + + host + bigboxsave.com + + + host + *.bigboxsave.com + + + + + Bigdinosaur.org + + ruleset + + name + Bigdinosaur.org + rule + + + from + ^https?://(?:www\.)?bigdinosaur\.org/ + to + https://www.bigdinosaur.org/ + + + from + ^http://blog\.bigdinosaur\.org/ + to + https://blog.bigdinoosaur.org/ + + + target + + + host + bigdinosaur.org + + + host + *.bigdinosaur.org + + + + + Biggest Loser Club.com + + ruleset + + name + Biggest Loser Club.com + rule + + from + ^http://(?:www\.)?biggestloserclub\.com/ + to + https://www.biggestloserclub.com/ + + securecookie + + host + ^[.w]*\.biggestloserclub\.com$ + name + .+ + + target + + + host + biggestloserclub.com + + + host + *.biggestloserclub.com + + + + + Biglobe (partial) + + ruleset + + name + Biglobe (partial) + rule + + from + ^http://api\.sso\.biglobe\.ne\.jp/ + to + https://api.sso.biglobe.ne.jp/ + + target + + host + api.sso.biglobe.ne.jp + + + + Bigmirnet (partial) + + ruleset + + name + Bigmirnet (partial) + platform + mixedcontent + rule + + from + ^http://(auto|dnevnik|i|ivona)\.bigmir\.net/ + to + https://$1.bigmir.net/ + + target + + + host + auto.bigmir.net + + + host + dnevnik.bigmir.net + + + host + i.bigmir.net + + + host + ivona.bigmir.net + + + + + Bigstock (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?bigstockphoto\.com/(?!(?:cart|login|subscribe)(?:$|\?|/)|css/|files/|images/|javascript/|js_translation/|serverside/login\.php|thumbs/) + + name + Bigstock (partial) + rule + + + from + ^http://(www\.)?bigstockimages\.com/ + to + https://$1bigstockimages.com/ + + + from + ^http://(?:static\d*\.|(www\.))?bigstockphoto\.com/ + to + https://$1bigstockphoto.com/ + + + from + ^https?://help\.bigstockphoto\.com/(generated|system)/ + to + https://assets.zendesk.com/$1/ + + + securecookie + + host + ^\.bigstockimages\.com$ + name + .+ + + target + + + host + bigstockimages.com + + + host + *.bigstockimages.com + + + host + bigstockphoto.com + + + host + *.bigstockphoto.com + + + + + Bihira.com + + ruleset + + name + Bihira.com + rule + + from + ^http://(www\.)?bihira\.com/ + to + https://$1bihira.com/ + + securecookie + + host + ^www\.bihira\.com$ + name + .+ + + target + + + host + bihira.com + + + host + www.bihira.com + + + + + Bike24.de + + ruleset + + name + Bike24.de + rule + + from + ^http://(www\.)?bike24\.de/ + to + https://www.bike24.de/ + + target + + + host + bike24.de + + + host + www.bike24.de + + + + + Bild.de (partial) + + ruleset + + name + Bild.de (partial) + rule + + + from + ^http://(don|offer)\.bild\.de/ + to + https://$1.bild.de/ + + + from + ^http://email\.bild\.de/(?!/*host/) + to + https://www.fagms.net/ + + + target + + host + *.bild.de + + + + Bild.de (valid MCB) + + ruleset + + name + Bild.de (valid MCB) + platform + mixedcontent + rule + + from + ^http://email\.bild\.de/ + to + https://www.fagms.net/ + + target + + host + email.bild.de + + + + Bill Maher.com + + ruleset + + name + Bill Maher.com + rule + + from + ^http://(www\.)?billmaher\.com/ + to + https://$1billmaher.com/ + + target + + + host + billmaher.com + + + host + www.billmaher.com + + + + + Billy Creative + + ruleset + + name + Billy Creative + rule + + from + ^http://(www\.)?billycreative\.com/ + to + https://$1billycreative.com/ + + target + + + host + billycreative.com + + + host + www.billycreative.com + + + + + Bin-Store.com + + ruleset + + name + Bin-Store.com + rule + + from + ^http://(www\.)?(secure\.)?bin-store\.com/ + to + https://$1$2bin-store.com/ + + securecookie + + host + ^\.bin-store\.com$ + name + .+ + + target + + + host + bin-store.com + + + host + *.bin-store.com + + + + + BinSearch + + ruleset + + name + BinSearch + rule + + from + ^http://(www\.)?binsearch\.(?:info|net)/ + to + https://$1binsearch.info/ + + target + + + host + binsearch.info + + + host + www.binsearch.info + + + host + binsearch.net + + + host + www.binsearch.net + + + + + Binary Biz + + ruleset + + name + Binary Biz + rule + + + from + ^http://(www\.)?binarybiz\.com/ + to + https://$1binarybiz.com/ + + + from + ^http://(?:www\.)?totalrecall\.com/ + to + https://www.totalrecall.com/ + + + securecookie + + host + ^www\.(binarybiz|totalrecall)\.com$ + name + .* + + target + + + host + binarybiz.com + + + host + www.binarybiz.com + + + host + totalrecall.com + + + host + www.totalrecall.com + + + + + BinaryTurf + + ruleset + + name + BinaryTurf + rule + + + from + ^http://(?:www\.)?binaryturf\.com/ + to + https://www.binaryturf.com/ + + + from + ^http://forums\.binaryturf\.com/ + to + https://www.binaryturf.com/forum/ + + + securecookie + + host + ^(.+\.)?binaryturf\.com$ + name + .* + + target + + + host + binaryturf.com + + + host + www.binaryturf.com + + + host + forums.binaryturf.com + + + + + Binbox.io (partial) + + ruleset + + name + Binbox.io (partial) + rule + + from + ^http://(www\.)?binbox\.io/ + to + https://$1binbox.io/ + + securecookie + + host + ^binbox\.io$ + name + .+ + + target + + + host + binbox.io + + + host + www.binbox.io + + + + + Binero.se + + ruleset + + name + Binero.se + platform + mixedcontent + rule + + + from + ^http://binero\.se/ + to + https://www.binero.se/ + + + from + ^http://support\.binero\.se/ + to + https://support.binero.se/ + + + from + ^http://order\.binero\.se/ + to + https://order.binero.se/ + + + from + ^http://www\.binero\.se/ + to + https://www.binero.se/ + + + target + + host + binero.se + + + + Bing + + ruleset + + name + Bing + rule + + + from + ^http://((?:c|cn|h|ssl|testfamilysafety|udc|www)\.)?bing\.com/ + to + https://$1bing.com/ + + + from + ^http://([^/:@]*)\.mm\.bing\.net/ + to + https://$1.mm.bing.com/ + + + from + ^http://([^/:@]*)\.api\.bing\.net/ + to + https://$1.api.bing.com/ + + + securecookie + + host + .*\.bing\.com$ + name + .+ + + target + + + host + bing.com + + + host + *.bing.com + + + host + *.mm.bing.net + + + + + BioInfo.pl + + ruleset + + name + BioInfo.pl + rule + + + from + ^http://(?:www\.)?bioinfo\.pl/ + to + https://bioinfobank.com/ + + + from + ^http://(mail|thc)\.bioinfo\.pl/ + to + https://$1.bioinfo.pl/ + + + target + + + host + bioinfo.pl + + + host + *.bioinfo.pl + + + + + BioInfoBank.com (partial) + + ruleset + + name + BioInfoBank.com (partial) + rule + + from + ^http://bioinfobank\.com/ + to + https://bioinfobank.com/ + + target + + host + bioinfobank.com + + + + BioMed Central (false MCB) + + ruleset + + name + BioMed Central (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:w\d\d\.|(www\.))?biomedcentral\.com/ + to + https://$1biomedcentral.com/ + + + from + ^http://oas\.biomedcentral\.com/ + to + https://oasc-eu1.247realmedia.com/ + + + securecookie + + host + ^(?:.*\.)?biomedcentral\.com$ + name + .+ + + target + + + host + biomedcentral.com + + + host + *.biomedcentral.com + + + + + BioShock Infinite + + ruleset + + name + BioShock Infinite + rule + + + from + ^http://(www\.)?bioshockinfinite\.com/ + to + https://$1bioshockinfinite.com/ + + + from + ^http://finkmanufacturing\.com/(?:\?.*)?$ + to + https://www.finkmanufacturing.com/ + + + from + ^http://(www\.)?finkmanufacturing\.com/ + to + https://$1finkmanufacturing.com/ + + + securecookie + + + host + ^www\.bioshockinfinite\.com$ + name + .+ + + + host + ^(?:www\.)?finkmanufacturing\.com$ + name + .+ + + + target + + + host + bioshockinfinite.com + + + host + www.bioshockinfinite.com + + + host + finkmanufacturing.com + + + host + www.finkmanufacturing.com + + + + + BioWare (partial) + + ruleset + + name + BioWare (partial) + rule + + + from + ^https?://na\.llnet\.bioware\.cdn\.ea\.com/u/f/eagames/bioware/social/ + to + https://social.bioware.com/ + + + from + ^http://social\.bioware\.com/(images/|packer\.php|templates/) + to + https://social.bioware.com/$1 + + + from + ^https?://(?:www\.)?biowarestore\.com/ + to + https://biowarestore.com/ + + + securecookie + + host + ^\.biowarestore\.com$ + name + .+ + + target + + + host + na.llnet.bioware.cdn.ea.com + + + host + social.bioware.com + + + host + biowarestore.com + + + host + *.biowarestore.com + + + + + Biotrim Labs.com + + ruleset + + name + Biotrim Labs.com + rule + + from + ^http://(www\.)?biotrimlabs\.com/ + to + https://$1biotrimlabs.com/ + + securecookie + + host + ^(?:w*\.)?biotrimlabs\.com$ + name + .+ + + target + + + host + biotrimlabs.com + + + host + *.biotrimlabs.com + + + + + Bip.IO + + ruleset + + name + Bip.IO + rule + + from + ^http://(www\.)?bip\.io/ + to + https://$1bip.io/ + + securecookie + + host + ^(?:www\.)?bip\.io$ + name + .+ + + target + + + host + bip.io + + + host + www.bip.io + + + + + Bircko.com + + ruleset + + name + Bircko.com + rule + + from + ^http://(www\.)?bircko\.com/ + to + https://$1bircko.com/ + + securecookie + + host + ^(?:w*\.)?bircko\.com$ + name + .+ + + target + + + host + bircko.com + + + host + *.bircko.com + + + + + Birthday in a Box (partial) + + ruleset + + name + Birthday in a Box (partial) + rule + + from + ^https?://(?:www\.)?birthdayinabox\.com/(csc_inc|css|images) + to + https://www.birthdayinabox.com/$1/ + + target + + + host + birthdayinabox.com + + + host + www.birthdayinabox.com + + + + + Birthprint + + ruleset + + name + Birthprint + rule + + from + ^http://(www\.)?birthprint\.com/ + to + https://www.birthprint.com/ + + securecookie + + host + ^((www)?\.)?birthprint\.com + name + .+ + + target + + + host + birthprint.com + + + host + www.birthprint.com + + + + + Bishop Interactive + + ruleset + + name + Bishop Interactive + rule + + + from + ^http://(\w+\.)?bishopi\.com/ + to + https://$1bishopi.com/ + + + from + ^https?://(media\.|www\.)?bishopinteractive\.com/ + to + https://$1bishopi.com/ + + + from + ^http://cdn\.bishopinteractive\.com/ + to + https://cdn.bishopinteractive.com/ + + + securecookie + + host + ^(?:.+\.)?bishopi\.com$ + name + .+ + + target + + + host + bishopi.com + + + host + *.bishopi.com + + + host + bishopinteractive.com + + + host + *.bishopinteractive.com + + + + + Bit Stampede.com + + ruleset + + name + Bit Stampede.com + rule + + from + ^http://(www\.)?bitstampede\.com/ + to + https://$1bitstampede.com/ + + securecookie + + host + ^(?:www\.)?bitstampede\.com$ + name + .+ + + target + + + host + bitstampede.com + + + host + www.bitstampede.com + + + + + Bit9 (partial) + + ruleset + + name + Bit9 (partial) + rule + + from + ^http://(blog\.|www\.)?bit9\.com/ + to + https://$1bit9.com/ + + target + + + host + bit9.com + + + host + *.bit9.com + + + + + BitBalloon.com + + ruleset + + name + BitBalloon.com + rule + + from + ^http://(www\.)?bitballoon\.com/ + to + https://$1bitballoon.com/ + + target + + + host + bitballoon.com + + + host + www.bitballoon.com + + + + + BitBucket (partial) + + ruleset + + name + BitBucket (partial) + rule + + + from + ^http://(blog\.|www\.)?bitbucket\.org/ + to + https://$1bitbucket.org/ + + + from + ^http://status\.bitbucket\.org/ + to + https://bitbucket.statuspage.io/ + + + securecookie + + host + ^\.?bitbucket\.org$ + name + .+ + + target + + + host + bitbucket.org + + + host + *.bitbucket.org + + + + + BitCard + + ruleset + + name + BitCard + rule + + + from + ^http://bitcard\.org/ + to + https://bitcard.org/ + + + from + ^http://www\.bitcard\.org/ + to + https://www.bitcard.org/ + + + securecookie + + host + ^(?:www\.)?bitcard\.org$ + name + c + + target + + + host + bitcard.org + + + host + www.bitcard.org + + + + + BitCasa (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|developer\.blog|forums|l)\.bitcasa\.com/ + + name + BitCasa (partial) + rule + + + from + ^http://bitcasa\.com/ + to + https://bitcasa.com/ + + + from + ^http://([^/:@]*)\.bitcasa\.com/ + to + https://$1.bitcasa.com/ + + + securecookie + + host + ^(?:developer\.|www\.)?bitcasa\.com$ + name + .+ + + target + + + host + bitcasa.com + + + host + *.bitcasa.com + + + + + BitGravity (partial) + + ruleset + + name + BitGravity (partial) + rule + + from + ^http://dashboard\.bitgravity\.com/ + to + https://dashboard.bitgravity.com/ + + securecookie + + host + ^dashboard\.bitgravity\.com$ + name + .+ + + target + + host + dashboard.bitgravity.com + + + + BitInstant (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.bitinstant\.com/(?!contributor/|display/|layout/|storage/|universal/) + + name + BitInstant (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?bitinstant\.com/ + to + https://$1bitinstant.com/ + + securecookie + + host + ^\.bitinstant\.com$ + name + .+ + + target + + + host + bitinstant.com + + + host + *.bitinstant.com + + + + + BitMinter.com + + ruleset + + name + BitMinter.com + rule + + from + ^http://(www\.)?bitminter\.com/ + to + https://$1bitminter.com/ + + securecookie + + host + ^\.?bitminter\.com$ + name + .+ + + target + + + host + bitminter.com + + + host + *.bitminter.com + + + + + BitMissile (partial) + + ruleset + + name + BitMissile (partial) + rule + + from + ^http://(live\.)?bitmissile\.com/ + to + https://$1bitmissile.com/ + + securecookie + + host + ^.*\.bitmissile\.com$ + name + .* + + target + + + host + bitmissile.com + + + host + live.bitmissile.com + + + + + BitPay + + ruleset + + name + BitPay + rule + + from + ^http://(www\.)?bitpay\.com/ + to + https://$1bitpay.com/ + + securecookie + + host + ^\.?bitpay\.com$ + name + .+ + + target + + + host + bitpay.com + + + host + *.bitpay.com + + + + + BitRock (partial) + + ruleset + + name + BitRock (partial) + rule + + + from + ^http://www\.bitnamihosting\.com/ + to + https://app.bitnamihosting.com/ + + + from + ^http://(app\.)?bitnamihosting\.com/ + to + https://$1bitnamihosting.com/ + + + securecookie + + host + ^(app\.)?bitnamihosting\.com$ + name + .* + + target + + + host + bitnamihosting.com + + + host + *.bitnamihosting.com + + + + + BitTorrent (partial) + + ruleset + + exclusion + + pattern + ^http://live\.bittorrent\.com/(?!create|css/|img/|js/|login|styles/) + + name + BitTorrent (partial) + rule + + from + ^http://(forum|live|remote|torque)\.bittorrent\.com/ + to + https://$1.bittorrent.com/ + + securecookie + + host + ^forum\.bittorrent\.com$ + name + .+ + + target + + host + *.bittorrent.com + + + + BitVisor.org + + ruleset + + name + BitVisor.org + rule + + from + ^http://(www\.)?bitvisor\.org/ + to + https://$1bitvisor.org/ + + target + + + host + bitvisor.org + + + host + www.bitvisor.org + + + + + Bitch Magazine.org (partial) + + ruleset + + name + Bitch Magazine.org (partial) + rule + + from + ^http://(?:www\.)?bitchmagazine\.org/ + to + https://bitchmagazine.org/ + + securecookie + + host + ^\.bitchmagazine\.org$ + name + .+ + + target + + + host + bitchmagazine.org + + + host + *.bitchmagazine.org + + + + + Bitcoin + + ruleset + + name + Bitcoin + rule + + + from + ^http://(www\.)?bitcoin\.org/ + to + https://$1bitcoin.org/ + + + from + ^http://forum\.bitcoin\.org/ + to + https://bitcointalk.org/ + + + target + + + host + bitcoin.org + + + host + *.bitcoin.org + + + + + Bitcoin Armory.com + + ruleset + + name + Bitcoin Armory.com + rule + + from + ^http://(www\.)?bitcoinarmory\.com/ + to + https://$1bitcoinarmory.com/ + + securecookie + + host + ^\.bitcoinarmory\.com$ + name + .+ + + target + + + host + bitcoinarmory.com + + + host + *.bitcoinarmory.com + + + + + Bitcoin Börse + + ruleset + + name + Bitcoin Börse + rule + + from + ^http://(?:www\.)?mybitcointrade\.com/ + to + https://mybitcointrade.com/ + + securecookie + + host + ^mybitcointrade\.com$ + name + .* + + target + + + host + mybitcointrade.com + + + host + www.mybitcointrade.com + + + + + Bitcoin Charts + + ruleset + + name + Bitcoin Charts + platform + cacert + rule + + from + ^http://(api\.|www\.)?bitcoincharts\.com/ + to + https://$1bitcoincharts.com/ + + target + + + host + bitcoincharts.com + + + host + *.bitcoincharts.com + + + + + Bitcoin Forum + + ruleset + + name + Bitcoin Forum + rule + + from + ^http://(www\.)?bitcointalk\.org/ + to + https://$1bitcointalk.org/ + + securecookie + + host + ^bitcointalk\.org$ + name + .* + + target + + + host + bitcointalk.org + + + host + www.bitcointalk.org + + + + + Bitcoin Forum.com + + ruleset + + name + Bitcoin Forum.com + rule + + from + ^http://(www\.)?bitcoinforum\.com/ + to + https://$1bitcoinforum.com/ + + securecookie + + host + ^(?:www\.)?bitcoinforum\.com$ + name + .+ + + target + + + host + bitcoinforum.com + + + host + www.bitcoinforum.com + + + + + Bitcoin Foundation.org + + ruleset + + name + Bitcoin Foundation.org + rule + + from + ^http://(members\.|www\.)?bitcoinfoundation\.org/ + to + https://$1bitcoinfoundation.org/ + + securecookie + + host + ^(?:members)?\.bitcoinfoundation\.org$ + name + .+ + + target + + + host + bitcoinfoundation.org + + + host + *.bitcoinfoundation.org + + + + + Bitcoin Magazine.com (partial) + + ruleset + + name + Bitcoin Magazine.com (partial) + rule + + from + ^http://(www\.)?bitcoinmagazine\.com/(?=favicon\.ico|wp-content/|wp-includes/|x-myracloud-) + to + https://$1bitcoinmagazine.com/ + + target + + + host + bitcoinmagazine.com + + + host + www.bitcoinmagazine.com + + + + + Bitcoin Market 24 + + ruleset + + name + Bitcoin Market 24 + rule + + from + ^http://(www\.)?bitcoinmarket24\.com/ + to + https://$1bitcoinmarket24.com/ + + securecookie + + host + ^(www\.)?bitcoinmarket24\.com$ + name + .* + + target + + + host + bitcoinmarket24.com + + + host + www.bitcoinmarket24.com + + + + + Bitcoin VPS (partial) + + ruleset + + name + Bitcoin VPS (partial) + rule + + from + ^http://client\.bitvps\.com/ + to + https://client.bitvps.com/ + + target + + host + client.bitvps.com + + + + Bitcoin Wiki + + ruleset + + name + Bitcoin Wiki + rule + + + from + ^http://(www\.)?bitcoin\.(at|in)/ + to + https://$1bitcoin.$1/ + + + from + ^http://((?:dump|en|www)\.)?bitcoin\.it/ + to + https://$1bitcoin.it/ + + + securecookie + + host + .*\.bitcoin\.it$ + name + .* + + target + + + host + bitcoin.at + + + host + www.bitcoin.at + + + host + bitcoin.in + + + host + www.bitcoin.in + + + host + bitcoin.it + + + host + *.bitcoin.it + + + + + Bitcoin-Central + + ruleset + + name + Bitcoin-Central + rule + + from + ^http://(www\.)?bitcoin-central\.net/ + to + https://$1bitcoin-central.net/ + + target + + + host + bitcoin-central.net + + + host + www.bitcoin-central.net + + + + + Bitcoin.Co.th + + ruleset + + name + Bitcoin.Co.th + rule + + from + ^http://(www\.)?bitcoin\.co\.th/ + to + https://$1bitcoin.co.th/ + + securecookie + + host + ^bitcoin\.co\.th$ + name + .+ + + target + + + host + bitcoin.co.th + + + host + www.bitcoin.co.th + + + + + Bitcoin.com + + ruleset + + name + Bitcoin.com + rule + + from + ^http://(www\.)?bitcoin\.com/ + to + https://$1bitcoin.com/ + + securecookie + + host + ^\.bitcoin\.com$ + name + .+ + + target + + + host + bitcoin.com + + + host + *.bitcoin.com + + + + + Bitcoin.de + + ruleset + + name + Bitcoin.de + rule + + from + ^http://(blog\.|forum\.|www\.)?bitcoin\.de/ + to + https://$1bitcoin.de/ + + securecookie + + host + ^.*\.bitcoin\.de$ + name + .+ + + target + + + host + bitcoin.de + + + host + *.bitcoin.de + + + host + *.blog.bitcoin.de + + + + + BitcoinFunding.com + + ruleset + + name + BitcoinFunding.com + rule + + from + ^http://(www\.)?bitcoinfunding\.com/ + to + https://$1bitcoinfunding.com/ + + securecookie + + host + ^(?:www\.)?bitcoinfunding\.com$ + name + .+ + + target + + + host + bitcoinfunding.com + + + host + www.bitcoinfunding.com + + + + + BitcoinShop.US + + ruleset + + name + BitcoinShop.US + rule + + from + ^http://(www\.)?bitcoinshop\.us/ + to + https://$1bitcoinshop.us/ + + securecookie + + host + ^\.(?:www\.)?bitcoinshop\.us$ + name + .+ + + target + + + host + bitcoinshop.us + + + host + *.bitcoinshop.us + + + + + BitcoinStore.com + + ruleset + + name + BitcoinStore.com + rule + + from + ^http://(www\.)?bitcoinstore\.com/ + to + https://$1bitcoinstore.com/ + + securecookie + + host + ^\.www\.bitcoinstore\.com$ + name + .+ + + target + + + host + bitcoinstore.com + + + host + *.bitcoinstore.com + + + + + BitcoinWisdom.com + + ruleset + + name + BitcoinWisdom.com + rule + + from + ^http://(www\.)?bitcoinwisdom\.com/ + to + https://$1bitcoinwisdom.com/ + + securecookie + + host + ^(?:\.|www\.)?bitcoinwisdom\.com$ + name + .+ + + target + + + host + bitcoinwisdom.com + + + host + www.bitcoinwisdom.com + + + + + Bitcoinity.org + + ruleset + + name + Bitcoinity.org + rule + + from + ^http://((?:data|static|www)\.)?bitcoinity\.org/ + to + https://$1bitcoinity.org/ + + securecookie + + + host + ^(data\.|static\.|www\.)?bitcoinity\.org$ + name + ^_bitcoinity_session$ + + + host + ^(?:(?:data|static|www)\.)?bitcoinity\.org$ + name + .+ + + + target + + + host + bitcoinity.org + + + host + *.bitcoinity.org + + + + + Bitcoins il.co.il (false MCB) + + ruleset + + name + Bitcoins il.co.il (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?bitcoinsil\.co\.il/ + to + https://$1bitcoinsil.co.il/ + + securecookie + + host + ^\.bitcoinsil\.co\.il$ + name + .+ + + target + + + host + bitcoinsil.co.il + + + host + *.bitcoinsil.co.il + + + + + Bitcurex.com + + ruleset + + name + Bitcurex.com + rule + + from + ^http://(?:(eur\.|pln\.)|www\.)?bitcurex\.com/ + to + https://$1bitcurex.com/ + + securecookie + + host + ^(?:eur|pln)\.bitcurex\.com$ + name + .+ + + target + + + host + bitcurex.com + + + host + *.bitcurex.com + + + + + Bitdefender.com (partial) + + ruleset + + name + Bitdefender.com (partial) + rule + + from + ^http://my\.bitdefender\.com/ + to + https://my.bitdefender.com/ + + target + + host + my.bitdefender.com + + + + Bitlove + + ruleset + + name + Bitlove + rule + + from + ^https?://(?:t\.|(www\.))?bitlove\.org/ + to + https://$1bitlove.org/ + + target + + + host + bitlove.org + + + host + *.bitlove.org + + + + + Bitmask.net (partial) + + ruleset + + name + Bitmask.net (partial) + rule + + from + ^http://(demo\.|dl\.)?bitmask\.net/ + to + https://$1bitmask.net/ + + target + + + host + bitmask.net + + + host + *.bitmask.net + + + + + Bitme.com + + ruleset + + name + Bitme.com + rule + + from + ^http://(www\.)?bitme\.com/ + to + https://$1bitme.com/ + + securecookie + + host + ^\.bitme\.com$ + name + .+ + + target + + + host + bitme.com + + + host + *.bitme.com + + + + + Bitmessage + + ruleset + + name + Bitmessage + rule + + from + ^http://(www\.)?bitmessage\.org/ + to + https://$1bitmessage.org/ + + securecookie + + host + ^(?:www\.)?bitmessage\.org$ + name + .+ + + target + + + host + bitmessage.org + + + host + www.bitmessage.org + + + + + Bitmit + + ruleset + + name + Bitmit + rule + + from + ^http://(www\.)?bitmit\.net/ + to + https://$1bitmit.net/ + + securecookie + + host + \.bitmit\.net$ + name + .* + + target + + + host + bitmit.net + + + host + *.bitmit.net + + + + + Bitnami.com + + ruleset + + name + Bitnami.com + rule + + from + ^http://(?:((?:assets|google|wiki)\.)|www\.)?bitnami\.com/ + to + https://$1bitnami.com/ + + securecookie + + host + ^(?:google\.|www\.)?bitnami\.com$ + name + .+ + + target + + + host + bitnami.com + + + host + *.bitnami.com + + + + + Bitnik.org + + ruleset + + name + Bitnik.org + rule + + from + ^http://(www\.|wwwwwwwwwwwwwwwwwwwwww\.)?bitnik\.org/ + to + https://$1bitnik.org/ + + securecookie + + host + ^\.bitnik\.org$ + name + .+ + + target + + + host + bitnik.org + + + host + *.bitnik.org + + + + + Bitrig + + ruleset + + name + Bitrig + rule + + from + ^http://(www\.)?bitrig\.org/ + to + https://$1bitrig.org/ + + securecookie + + host + ^(www\.)?bitrig\.org$ + name + .* + + target + + + host + bitrig.org + + + host + www.bitrig.org + + + + + Bits of Freedom + + ruleset + + name + Bits of Freedom + rule + + from + ^http://(pim\.|www\.)?bof\.nl/ + to + https://$1bof.nl/ + + target + + + host + bof.nl + + + host + *.bof.nl + + + + + Bitstamp.net + + ruleset + + name + Bitstamp.net + rule + + from + ^http://(\w\w\.|www\.)?bitstamp\.net/ + to + https://$1bitstamp.net/ + + securecookie + + host + ^(?:\w\w|www)?\.bitstamp\.net$ + name + .+ + + target + + + host + bitstamp.net + + + host + *.bitstamp.net + + + + + Bittiraha.fi + + ruleset + + name + Bittiraha.fi + rule + + from + ^http://(forum\.|www\.)?bittiraha\.fi/ + to + https://$1bittiraha.fi/ + + securecookie + + host + ^\.bittiraha\.fi$ + name + .+ + + target + + + host + bittiraha.fi + + + host + *.bittiraha.fi + + + + + Bittit.info + + ruleset + + name + Bittit.info + rule + + from + ^http://bittit\.info/ + to + https://bittit.info/ + + target + + host + bittit.info + + + + Bittrex.com + + ruleset + + name + Bittrex.com + rule + + from + ^http://(www\.)?bittrex\.com/ + to + https://$1bittrex.com/ + + securecookie + + host + ^\.bittrex\.com$ + name + .+ + + target + + + host + bittrex.com + + + host + *.bittrex.com + + + + + Bitwig.com + + ruleset + + name + Bitwig.com + rule + + from + ^http://(www\.)?bitwig\.com/ + to + https://$1bitwig.com/ + + securecookie + + host + ^(?:www\.)?bitwig\.com$ + name + .+ + + target + + + host + bitwig.com + + + host + www.bitwig.com + + + + + Bivol + + ruleset + + name + Bivol + rule + + from + ^http://(www\.)?bivol\.bg/ + to + https://$1bivol.bg/ + + securecookie + + host + ^(?:www\.)?bivol\.bg$ + name + .+ + + target + + + host + bivol.bg + + + host + www.bivol.bg + + + + + Bizo + + ruleset + + name + Bizo + rule + + + from + ^http://accounts\.bizo\.com/ + to + https://accounts.bizo.com/ + + + from + ^http://(api|imp2|www)\.bizographics\.com/ + to + https://$1.bizographics.com/ + + + from + ^https?://s?js\.bizographics\.com/ + to + https://sjs.bizographics.com/ + + + securecookie + + host + ^\.bizographics\.com$ + name + .+ + + target + + + host + accounts.bizo.com + + + host + *.bizographics.com + + + + + Bizrate.com (partial) + + ruleset + + name + Bizrate.com (partial) + rule + + + from + ^http://about\.bizrate\.com/ + to + https://aboutbizrate.blazonco.com/ + + + from + ^http://(image|medal)s\.bizrate\.com/ + to + https://$1s.bizrate.com/ + + + from + ^http://im(?:age10|g)\.bizrate-images\.com/ + to + https://images.bizrate.com/ + + + target + + + host + *.bizrate.com + + + host + *.bizrate-images.com + + + + + Bizshark + + ruleset + + name + Bizshark + rule + + from + ^http://(www\.)?bizshark\.com/ + to + https://$1bizshark.com/ + + securecookie + + host + ^(?:www)?\.bizshark\.com$ + name + .+ + + target + + + host + bizshark.com + + + host + *.bizshark.com + + + + + Black Box.co.uk + + ruleset + + name + Black Box.co.uk + rule + + from + ^http://(?:www\.)?blackbox\.co\.uk/ + to + https://www.blackbox.co.uk/ + + securecookie + + host + ^www\.blackbox\.co\.uk$ + name + .+ + + target + + + host + blackbox.co.uk + + + host + www.blackbox.co.uk + + + + + Black Duck Software.com (partial) + + ruleset + + exclusion + + pattern + http://osdelivers\.blackducksoftware\.com/+(?!wp-content/|wp-includes/) + + name + Black Duck Software.com (partial) + rule + + + from + ^http://(?:www\.)?blackducksoftware\.com/ + to + https://www.blackducksoftware.com/ + + + from + ^http://(dev|osdelivers|stg)\.blackducksoftware\.com/ + to + https://$1.blackducksoftware.com/ + + + target + + + host + blackducksoftware.com + + + host + *.blackducksoftware.com + + + + + Black Lotus + + ruleset + + name + Black Lotus + rule + + from + ^http://(www\.)?blacklotus\.net/ + to + https://$1blacklotus.net/ + + target + + + host + blacklotus.net + + + host + www.blacklotus.net + + + + + Black Phone.ch + + ruleset + + name + Black Phone.ch + rule + + from + ^http://((?:agent|appstore|blog|store|support|www)\.)?blackphone\.ch/ + to + https://$1blackphone.ch/ + + securecookie + + host + ^(?:store\.|www\.)?blackphone\.ch$ + name + .+ + + target + + + host + blackphone.ch + + + host + *.blackphone.ch + + + + + BlackHat + + ruleset + + name + BlackHat + rule + + from + ^http://(?:www\.)?blackhat\.com/ + to + https://www.blackhat.com/ + + securecookie + + host + ^\.blackhat\.com$ + name + .+ + + target + + + host + blackhat.com + + + host + *.blackhat.com + + + + + BlackMesh.com + + ruleset + + name + BlackMesh.com + rule + + + from + ^http://(?:www\.)?blackmesh\.com/ + to + https://www.blackmesh.com/ + + + from + ^http://mail\.blackmesh\.com/ + to + https://mail.blackmesh.com/zimbra/ + + + from + ^http://(autodiscover|portal|webmail)\.blackmesh\.com/ + to + https://$1.blackmesh.com/ + + + securecookie + + host + ^(?:mail|portal|webmail|www)\.blackmesh\.com$ + name + .+ + + target + + + host + blackmesh.com + + + host + *.blackmesh.com + + + + + BlackSuit IT.com + + ruleset + + name + BlackSuit IT.com + rule + + from + ^http://(www\.)?blacksuitit\.com/ + to + https://$1blacksuitit.com/ + + securecookie + + host + ^\.blacksuitit\.com$ + name + .+ + + target + + + host + blacksuitit.com + + + host + *.blacksuitit.com + + + + + BlackTonic.com (partial) + + ruleset + + name + BlackTonic.com (partial) + rule + + from + ^http://(www\.)?blacktonic\.com/si(gnup(?:$|\?|/)|tes/) + to + https://$1blacktonic.com/si$2 + + target + + + host + blacktonic.com + + + host + www.blacktonic.com + + + + + Blackbaud (partial) + + ruleset + + name + Blackbaud (partial) + rule + + from + ^http://(www\.)?blackbaud\.com/ + to + https://$1blackbaud.com/ + + securecookie + + host + ^(?:.*\.)?blackbaud\.com$ + name + .+ + + target + + + host + blackbaud.com + + + host + *.blackbaud.com + + + + + Blackberry (partial) + + ruleset + + name + Blackberry (partial) + rule + + + from + ^http://((?:appworld|blackberryid|developer|global|www)\.)?blackberry\.com/ + to + https://$1blackberry.com/ + + + from + ^https?://supportforums\.blackberry\.com/ + to + https://rim.i.lithium.com/ + + + securecookie + + + host + ^\.blackberry\.com$ + name + ^s_\w+$ + + + host + ^.+\.blackberry\.com$ + name + .+ + + + target + + + host + blackberry.com + + + host + *.blackberry.com + + + + + Blackboard (partial) + + ruleset + + name + Blackboard (partial) + rule + + from + ^http://(safeassign\.|www\.)?blackboard\.com/ + to + https://$1blackboard.com/ + + securecookie + + host + ^(?:.*\.)?blackboard\.com$ + name + .+ + + target + + + host + blackboard.com + + + host + *.blackboard.com + + + + + Blackfoot.co.uk + + ruleset + + name + Blackfoot.co.uk + rule + + from + ^http://(www\.)?blackfoot\.co\.uk/ + to + https://$1blackfoot.co.uk/ + + target + + + host + blackfoot.co.uk + + + host + www.blackfoot.co.uk + + + + + Blacknight Internet Solutions (partial) + + ruleset + + name + Blacknight Internet Solutions (partial) + rule + + from + ^http://((?:altmail|cp|wiki|www)\.)?blacknight\.com/ + to + https://$1blacknight.com/ + + securecookie + + host + ^.*\.blacknight\.com$ + name + .* + + target + + + host + blacknight.com + + + host + *.blacknight.com + + + + + BlameStella + + ruleset + + name + BlameStella + rule + + from + ^http://(?:www\.)?blamestella\.com/ + to + https://www.blamestella.com/ + + securecookie + + host + ^(?:www\.)?blamestella\.com$ + name + .* + + target + + + host + blamestella.com + + + host + www.blamestella.com + + + + + Blau.de + + ruleset + + name + Blau.de + rule + + from + ^http://([^/:@]+\.)?blau\.de/ + to + https://$1blau.de/ + + securecookie + + host + ^(?:.+\.)?blau\.de$ + name + .+ + + target + + + host + blau.de + + + host + *.blau.de + + + + + Blazing Thyme + + ruleset + + name + Blazing Thyme + rule + + from + ^http://(www\.)?blazingthyme\.com/ + to + https://$1blazingthyme.com/ + + securecookie + + host + ^(www\.)?blazingthyme\.com$ + name + .* + + target + + + host + blazingthyme.com + + + host + www.blazingthyme.com + + + + + Blazonco.com + + ruleset + + name + Blazonco.com + rule + + from + ^http://([\w-]+\.)?blazonco\.com/ + to + https://$1blazonco.com/ + + securecookie + + host + ^(?:.*\.)?blazonco\.com$ + name + .+ + + target + + + host + blazonco.com + + + host + *.blazonco.com + + + + + Bleep.com + + ruleset + + name + Bleep.com + rule + + from + ^http://(www\.)?bleep\.com/ + to + https://$1bleep.com/ + + target + + + host + bleep.com + + + host + www.bleep.com + + + + + Blekko + + ruleset + + name + Blekko + rule + + from + ^http://(www\.)?blekko\.com/ + to + https://$1blekko.com/ + + target + + + host + blekko.com + + + host + www.blekko.com + + + + + Blender.org (partial) + + ruleset + + name + Blender.org (partial) + rule + + from + ^http://((?:www\.)?developer|projects)\.blender\.org/ + to + https://$1.blender.org/ + + target + + host + *.blender.org + + + + Bleutrade.com + + ruleset + + name + Bleutrade.com + rule + + from + ^http://(www\.)?bleutrade\.com/ + to + https://$1bleutrade.com/ + + securecookie + + host + ^\.bleutrade\.com$ + name + .+ + + target + + + host + bleutrade.com + + + host + *.bleutrade.com + + + + + Blinddesign.nl + + ruleset + + name + Blinddesign.nl + rule + + from + ^http://(www\.)?blinddesign\.nl/ + to + https://$1blinddesign.nl/ + + securecookie + + host + ^\.blinddesign\.nl$ + name + .+ + + target + + + host + blinddesign.nl + + + host + *.blinddesign.nl + + + + + Bling4cars + + ruleset + + name + Bling4cars + rule + + from + ^http://(www\.)?bling4cars\.com/ + to + https://$1bling4cars.com/ + + securecookie + + host + ^(?:.*\.)?bling4cars\.com$ + name + .+ + + target + + + host + bling4cars.com + + + host + *.bling4cars.com + + + + + Blipp.com + + ruleset + + name + Blipp.com + platform + mixedcontent + rule + + + from + ^http://www\.blipp\.com/ + to + https://blipp.com/ + + + from + ^http://vic20\.blipp\.com/ + to + https://vic20.blipp.com/ + + + from + ^http://blipp\.com/ + to + https://blipp.com/ + + + target + + + host + blipp.com + + + host + www.blipp.com + + + host + vic20.blipp.com + + + + + Block Metrics + + ruleset + + name + Block Metrics + rule + + from + ^http://(www\.)?blockmetrics\.com/ + to + https://$1blockmetrics.com/ + + securecookie + + host + ^(?:www\.)?blockmetrics\.com$ + name + .+ + + target + + + host + blockmetrics.com + + + host + www.blockmetrics.com + + + + + BlockBuster UK + + ruleset + + name + BlockBuster UK + platform + mixedcontent + rule + + from + ^http://(?:www\.)?blockbuster\.co\.uk/ + to + https://www.blockbuster.co.uk/ + + target + + + host + www.blockbuster.co.uk + + + host + blockbuster.co.uk + + + + + BlockExplorer.com + + ruleset + + name + BlockExplorer.com + rule + + from + ^http://(www\.)?blockexplorer\.com/ + to + https://$1blockexplorer.com/ + + securecookie + + host + ^\.blockexplorer\.com$ + name + .+ + + target + + + host + blockexplorer.com + + + host + *.blockexplorer.com + + + + + BlockScript + + ruleset + + name + BlockScript + rule + + from + ^http://(?:www\.)?blockscript\.com/ + to + https://www.blockscript.com/ + + securecookie + + host + ^www\.blockscript\.com$ + name + .* + + target + + + host + blockscript.com + + + host + www.blockscript.com + + + + + Blockchain.info + + ruleset + + name + Blockchain.info + rule + + from + ^http://((?:markets|static|www)\.)?blockchain\.info/ + to + https://$1blockchain.info/ + + securecookie + + host + ^(?:markets)?\.blockchain\.info$ + name + .+ + + target + + + host + blockchain.info + + + host + *.blockchain.info + + + + + Blocked.org.uk + + ruleset + + name + Blocked.org.uk + rule + + from + ^http://(www\.)?blocked\.org\.uk/ + to + https://$1blocked.org.uk/ + + target + + + host + blocked.org.uk + + + host + www.blocked.org.uk + + + + + Blocket.se + + ruleset + + name + Blocket.se + platform + mixedcontent + rule + + + from + ^http://blocket\.se/ + to + https://www.blocket.se/ + + + from + ^http://www\.blocket\.se/ + to + https://www.blocket.se/ + + + from + ^http://www2\.blocket\.se/ + to + https://www2.blocket.se/ + + + from + ^http://eas\.blocket\.se/ + to + https://eas.blocket.se/ + + + target + + + host + blocket.se + + + host + www.blocket.se + + + host + www2.blocket.se + + + host + eas.blocket.se + + + + + BlockitPocket.com + + ruleset + + name + BlockitPocket.com + rule + + from + ^http://(?:www\.)?blockitpocket\.com/ + to + https://www.blockitpocket.com/ + + securecookie + + host + ^www\.blockitpocket\.com$ + name + .+ + + target + + + host + blockitpocket.com + + + host + www.blockitpocket.com + + + + + Blockstream.com (false MCB) + + ruleset + + name + Blockstream.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?blockstream\.com/ + to + https://$1blockstream.com/ + + securecookie + + host + ^\.blockstream\.com$ + name + .+ + + target + + + host + blockstream.com + + + host + *.blockstream.com + + + + + Blockstream.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?blockstream\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Blockstream.com (partial) + rule + + from + ^http://(www\.)?blockstream\.com/ + to + https://$1blockstream.com/ + + target + + + host + blockstream.com + + + host + www.blockstream.com + + + + + Blog Automobile + + ruleset + + name + Blog Automobile + rule + + from + ^http://(cdn2?\.|www\.)?blogautomobile\.fr/ + to + https://$1blogautomobile.fr/ + + securecookie + + host + ^(?:www)?\.blogautomobile\.fr$ + name + .+ + + target + + + host + blogautomobile.fr + + + host + *.blogautomobile.fr + + + + + Blog Top Sites.com + + ruleset + + name + Blog Top Sites.com + rule + + from + ^http://(www\.)?blogtopsites\.com/ + to + https://$1blogtopsites.com/ + + securecookie + + host + ^\.blogtopsites\.com$ + name + .+ + + target + + + host + blogtopsites.com + + + host + *.blogtopsites.com + + + + + BlogCatalog + + ruleset + + name + BlogCatalog + rule + + + from + ^http://(www\.)?blogcatalog\.com/ + to + https://$1blogcatalog.com/ + + + from + ^https?://stats\.blogcatalog\.com/ + to + https://win.staticstuff.net/ + + + securecookie + + host + ^(www\.)?blogcatalog\.com$ + name + .* + + target + + + host + blogcatalog.com + + + host + *.blogcatalog.com + + + + + BlogTalkRadio + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?blogtalkradio\.com/(?![cC]ontent/|img/) + + name + BlogTalkRadio + rule + + from + ^https?://(?:secure\.|www\.)?blogtalkradio\.com/ + to + https://secure.blogtalkradio.com/ + + securecookie + + host + ^secure\.blogtalkradio\.com$ + name + .+ + + target + + + host + blogtalkradio.com + + + host + *.blogtalkradio.com + + + + + Blogger (partial) + + ruleset + + name + Blogger (partial) + rule + + + from + ^http://(img\d\.|www\.)?blogblog\.com/ + to + https://$1blogblog.com/ + + + from + ^http://((?:buttons|help|photos1|www2?)\.)?blogger\.com/ + to + https://$1blogger.com/ + + + from + ^http://(\w+\.)?blog(?:ger|spot)\.([\w.]{2,5})/favicon\.ico + to + https://$1blogger.$2/favicon.ico + + + from + ^http://(\d\.bp|bp\d)\.blogspot\.com/ + to + https://$1.blogspot.com/ + + + securecookie + + host + ^www2?\.blogger\.com$ + name + .+ + + target + + + host + blogblog.com + + + host + *.blogblog.com + + + host + blogger.co.uk + + + host + *.blogger.co.uk + + + host + blogger.com + + + host + *.blogger.com + + + host + blogspot.* + + + host + *.blogspot.be + + + host + *.blogspot.ca + + + host + blogspot.co.uk + + + host + *.blogspot.co.uk + + + host + *.blogspot.com + + + host + *.blogspot.de + + + host + *.blogspot.fi + + + host + *.blogspot.fr + + + host + *.blogspot.nl + + + host + *.blogspot.no + + + host + *.blogspot.se + + + + + Blogmark.me + + ruleset + + name + Blogmark.me + rule + + + from + ^http://(www\.)?blogmark\.me/ + to + https://$1blogmark.me/ + + + from + ^http://blog\.blogmark\.me/ + to + https://blogmark.me/blog/ + + + securecookie + + host + ^(?:www\.)?blogmark\.me$ + name + .+ + + target + + + host + blogmark.me + + + host + *.blogmark.me + + + + + Blognone.com + + ruleset + + name + Blognone.com + rule + + from + ^http://(www\.)?blognone\.com/ + to + https://www.blognone.com/ + + target + + + host + blognone.com + + + host + www.blognone.com + + + + + Bloodhound Gang.com + + ruleset + + name + Bloodhound Gang.com + rule + + + from + ^http://(?:www\.)?bloodhoundgang\.com/ + to + https://www.bloodhoundgang.com/ + + + from + ^http://(www\.)?stufftobuy\.bloodhoundgang\.com/ + to + https://$1stufftobuy.bloodhoundgang.com/ + + + securecookie + + host + ^\.(?:stufftobuy\.)?bloodhoundgang\.com$ + name + .+ + + target + + + host + bloodhoundgang.com + + + host + *.bloodhoundgang.com + + + + + Bloomberg (partial) + + ruleset + + exclusion + + pattern + ^http://(?:origin-www\.|www\.)?bloomberg\.com/+(?!favicon\.ico|images/|styles/) + + name + Bloomberg (partial) + rule + + + from + ^http://(?:www\.)?bloomberg\.com/ + to + https://www.bloomberg.com/ + + + from + ^http://(careers|origin-www|service)\.bloomberg\.com/ + to + https://$1.bloomberg.com/ + + + securecookie + + host + ^(?:careers|service)\.bloomberg\.com$ + name + .+ + + target + + + host + bloomberg.com + + + host + *.bloomberg.com + + + + + Bloomberg Sports.com + + ruleset + + name + Bloomberg Sports.com + rule + + from + ^http://(?:www\.)?bloombergsports\.com/ + to + https://www.bloombergsports.com/ + + securecookie + + host + ^\.bloombergsports\.com$ + name + .+ + + target + + + host + bloombergsports.com + + + host + *.bloombergsports.com + + + + + Bloomberg.net (partial) + + ruleset + + name + Bloomberg.net (partial) + rule + + from + ^http://(bba|n[jy]bba2csg)\.bloomberg\.net/ + to + https://$1.bloomberg.net/ + + securecookie + + host + ^bba\.bloomberg\.net$ + name + .+ + + target + + host + *.bloomberg.net + + + + Blot.im + + ruleset + + name + Blot.im + rule + + from + ^http://(www\.)?blot\.im/ + to + https://$1blot.im/ + + securecookie + + host + ^(?:www\.)?blot\.im$ + name + .+ + + target + + + host + blot.im + + + host + www.blot.im + + + + + Blue Jeans Cable.com + + ruleset + + name + Blue Jeans Cable.com + rule + + from + ^http://(www\.)?bluejeanscable\.com/ + to + https://$1bluejeanscable.com/ + + securecookie + + host + ^www\.bluejeanscable\.com$ + name + .+ + + target + + + host + bluejeanscable.com + + + host + www.bluejeanscable.com + + + + + Blue Man Ticketing (partial) + + ruleset + + name + Blue Man Ticketing (partial) + rule + + from + ^https?://(?:www\.)?bluemanticketing\.com/(buy/|get-show-dates/|myticketbooth/themes/) + to + https://www.bluemanticketing.com/$1 + + target + + + host + bluemanticketing.com + + + host + www.bluemanticketing.com + + + + + Blue Mountain + + ruleset + + name + Blue Mountain + rule + + from + ^http://(?:www\.)?bluemountain\.com/ + to + https://www.bluemountain.com/ + + securecookie + + host + ^\.bluemountain\.com$ + name + .+ + + target + + + host + bluemountain.com + + + host + *.bluemountain.com + + + + + Blue Movie (partial) + + ruleset + + name + Blue Movie (partial) + rule + + + from + ^https?://(?:www\.)?bluemovie\.eu/ + to + https://www.bluemovie.eu/ + + + from + ^http://(www\.)?bluemovie\.net/ + to + https://$1bluemovie.net/ + + + securecookie + + host + ^(www\.)?bluemovie\.net$ + name + .* + + target + + + host + bluemovie.eu + + + host + www.bluemovie.eu + + + host + bluemovie.net + + + host + www.bluemovie.net + + + + + Blue State Digital (partial) + + ruleset + + name + Blue State Digital (partial) + rule + + from + ^http://(www\.)?bluestatedigital\.com/ + to + https://$1bluestatedigital.com/ + + securecookie + + host + ^(?:\.|\.?www\.)?bluestatedigital\.com$ + name + .+ + + target + + + host + bluestatedigital.com + + + host + *.bluestatedigital.com + + + host + *.www.bluestatedigital.com + + + + + BlueCats.com (partial) + + ruleset + + name + BlueCats.com (partial) + rule + + from + ^http://app\.bluecats\.com/ + to + https://app.bluecats.com/ + + securecookie + + host + ^\.app\.bluecats\.com$ + name + .+ + + target + + host + *.bluecats.com + + + + BlueCava (partial) + + ruleset + + name + BlueCava (partial) + rule + + + from + ^http://((?:clients|vpn\.corp|ds|insight|lookup|platform|transfer|www)\.)?bluecava\.com/ + to + https://$1bluecava.com/ + + + from + ^http://(?:preferences\.bluecava|bcpd\.x7y24z365)\.com/ + to + https://bcpd.x7y24z365.com/ + + + securecookie + + + host + ^\.bluecava\.com$ + name + ^(?:d|e|g|machine|s)$ + + + host + ^(?:vpn\.corp|transfer)\.bluecava\.com$ + name + .+ + + + target + + + host + bluecava.com + + + host + *.bluecava.com + + + host + bcpd.x7y24z365.com + + + + + BlueCoat + + ruleset + + name + BlueCoat + rule + + from + ^http://www\.bluecoat\.com/ + to + https://www.bluecoat.com/ + + target + + host + www.bluecoat.com + + + + BlueGenio.com + + ruleset + + name + BlueGenio.com + rule + + from + ^http://(?:www\.)?bluegenio\.com/ + to + https://www.bluegenio.com/ + + securecookie + + host + ^(?:www)?\.bluegenio\.com$ + name + .+ + + target + + + host + bluegenio.com + + + host + *.bluegenio.com + + + + + BlueHost + + ruleset + + name + BlueHost + rule + + + from + ^http://(?:www\.)?bluehost\.com/ + to + https://www.bluehost.com/ + + + from + ^http://(box\d+|helpdesk|img|my|secure|tutorials)\.bluehost\.com/ + to + https://$1.bluehost.com/ + + + from + ^http://serverstatus\.bluehost\.com/$ + to + https://www.bluehost.com/cgi/serverstatus/ + + + securecookie + + host + ^(?:www)?\.bluehost\.com$ + name + .+ + + target + + + host + bluehost.com + + + host + *.bluehost.com + + + + + BlueHost clients + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)courtneyluv\.com/(?:~courtnk6/)?wp-content/uploads/ + + name + BlueHost clients + rule + + + from + ^https?://(?:www\.)?316space(?:\.harralmedia)?\.com/(?:~harralme/316space/)? + to + https://secure.bluehost.com/~harralme/316space/ + + + from + ^https?://(?:www\.)?courtneyluv\.com/(?:~courtnk6/)?wp-content/ + to + https://secure.bluehost.com/~courtnk6/wp-content/ + + + from + ^https?://(?:www\.)?kyleschaeffer\.com/wordpress/wp-content/ + to + https://secure.bluehost.com/~kylescha/wordpress/wp-content/ + + + from + ^https?://blog\.pressdisplay\.com/wp-(content|includes)/ + to + https://secure.bluehost.com/~pressdis/wp-$1/ + + + target + + + host + 316space.com + + + host + www.316space.com + + + host + courtneyluv.com + + + host + www.courtneyluv.com + + + host + 316space.harralmedia.com + + + host + www.316space.harralmedia.com + + + host + blog.pressdisplay.com + + + host + kyleschaeffer.com + + + host + www.kyleschaeffer.com + + + + + BlueKai (partial) + + ruleset + + name + BlueKai (partial) + rule + + + from + ^http://(tags|www)\.bkrtx\.com/ + to + https://$1.bkrtx.com/ + + + from + ^http://partner\.bluekai\.com/ + to + https://partner.bluekai.com/ + + + from + ^http://s?tags\.bluekai\.com/ + to + https://stags.bluekai.com/ + + + target + + + host + *.bkrtx.com + + + host + *.bluekai.com + + + + + BlueKrypt.com + + ruleset + + name + BlueKrypt.com + rule + + + from + ^http://(?:www\.)?bluekrypt\.be/[^?]* + to + https://www.bluekrypt.com/fr/ + + + from + ^http://(www\.)?bluekrypt\.com/ + to + https://$1bluekrypt.com/ + + + target + + + host + bluekrypt.be + + + host + www.bluekrypt.be + + + host + bluekrypt.com + + + host + www.bluekrypt.com + + + + + BlueSnap.com (partial) + + ruleset + + name + BlueSnap.com (partial) + rule + + from + ^http://(cp|sandbox)\.bluesnap\.com/ + to + https://$1.bluesnap.com/ + + securecookie + + host + ^sandbox\.bluesnap\.com$ + name + .+ + + target + + host + *.bluesnap.com + + + + BlueToad.com + + ruleset + + name + BlueToad.com + rule + + from + ^http://(www\.)?bluetoad\.com/ + to + https://$1bluetoad.com/ + + securecookie + + host + ^(?:www\.)?bluetoad\.com$ + name + .+ + + target + + + host + bluetoad.com + + + host + www.bluetoad.com + + + + + Bluechip (mixedcontent) + + ruleset + + name + Bluechip (mixedcontent) + rule + + from + ^http://www\.bluechip\.hu/ + to + https://www.bluechip.hu/ + + target + + host + www.bluechip.hu + + + + Bluefly (partial) + + ruleset + + name + Bluefly (partial) + rule + + from + ^https?://(?:cdn\.)?media\.bluefly\.com/ + to + https://media.bluefly.com/ + + target + + host + *.bluefly.com + + + + Bluegiga.com + + ruleset + + name + Bluegiga.com + rule + + from + ^http://(?:www\.)?bluegiga\.com/ + to + https://www.bluegiga.com/ + + target + + + host + bluegiga.com + + + host + www.bluegiga.com + + + + + Bluehost-CDN.com + + ruleset + + name + Bluehost-CDN.com + rule + + from + ^http://(cf\.)?bluehost-cdn\.com/ + to + https://$1bluehost-cdn.com/ + + securecookie + + host + ^\.bluehost-cdn\.com$ + name + .+ + + target + + + host + bluehost-cdn.com + + + host + *.bluehost-cdn.com + + + + + Blueseed.co + + ruleset + + name + Blueseed.co + platform + firefox + rule + + from + ^http://blueseed\.co/ + to + https://blueseed.co/ + + securecookie + + host + ^blueseed\.co$ + name + .+ + + target + + host + blueseed.co + + + + Bluetooth.org (partial) + + ruleset + + name + Bluetooth.org (partial) + rule + + from + ^http://(developer\.|www\.)?bluetooth\.org/ + to + https://$1bluetooth.org/ + + target + + + host + bluetooth.org + + + host + *.bluetooth.org + + + + + Bluewin HostCenter + + ruleset + + name + Bluewin HostCenter + rule + + from + ^http://(www\.)?hostcenter\.com/ + to + https://$1hostcenter.com/ + + target + + + host + hostcenter.com + + + host + www.hostcenter.com + + + + + Bluewin.ch (partial) + + ruleset + + name + Bluewin.ch (partial) + rule + + + from + ^http://(?:www\.)?bluewin\.ch/ + to + https://www.bluewin.ch/ + + + from + ^http://(pres|sam|www|xtrazone)\.sso\.bluewin\.ch/ + to + https://$1.sso.bluewin.ch/ + + + from + ^http://bluewin\.wemfbox\.ch/ + to + https://blue-ssl.wemfbox.ch/ + + + securecookie + + host + ^(?:(?:xtrazone|pres|sam|rich)\.sso|www)\.bluewin\.ch$ + name + .+ + + target + + + host + bluewin.ch + + + host + *.bluewin.ch + + + host + bluewin.wemfbox.ch + + + + + Blumenthals + + ruleset + + name + Blumenthals + rule + + from + ^http://(www\.)?blumenthals\.com/ + to + https://$1blumenthals.com/ + + securecookie + + host + ^blumenthals\.com$ + name + .+ + + target + + + host + blumenthals.com + + + host + www.blumenthals.com + + + + + Bmibaby.com + + ruleset + + name + Bmibaby.com + rule + + from + ^http://www\.bmibaby\.com/ + to + https://www.bmibaby.com/ + + target + + host + www.bmibaby.com + + + + Bmmetrix.com (partial) + + ruleset + + name + Bmmetrix.com (partial) + rule + + + from + ^http://(ie-stat|t)\.bmmetrix\.com/ + to + https://$1.bmmetrix.com/ + + + from + ^http://(?:www\.)?bmmetrix\.com/ + to + https://www.bmmetrix.com/ + + + securecookie + + host + .+\.bmmetrix\.com$ + name + .+ + + target + + + host + bmmetrix.com + + + host + *.bmmetrix.com + + + + + BoardGameGeek + + ruleset + + name + BoardGameGeek + rule + + + from + ^http://(www\.)?boardgamegeek\.com/ + to + https://boardgamegeek.com/ + + + from + ^http://(www\.)?rpggamegeek\.com/ + to + https://rpggamegeek.com/ + + + from + ^http://(www\.)?videogamegeek\.com/ + to + https://videogamegeek.com/ + + + target + + + host + boardgamegeek.com + + + host + www.boardgamegeek.com + + + host + rpggamegeek.com + + + host + www.rpggamegeek.com + + + host + videogamegeek.com + + + host + www.videogamegeek.com + + + + + BoardZoo.com + + ruleset + + name + BoardZoo.com + rule + + from + ^http://(www\.)?boardzoo\.com/ + to + https://$1boardzoo.com/ + + target + + + host + boardzoo.com + + + host + www.boardzoo.com + + + + + Boathouse Crew Shop + + ruleset + + name + Boathouse Crew Shop + rule + + from + ^http://(www\.)?boathousecrewshop\.com/ + to + https://$1boathousecrewshop.com/ + + securecookie + + host + ^\.www\.boathousecrewshop\.com$ + name + .+ + + target + + + host + boathousecrewshop.com + + + host + *.boathousecrewshop.com + + + + + Boba Family + + ruleset + + name + Boba Family + rule + + from + ^http://(store\.|www\.)?bobafamily\.com/ + to + https://$1bobafamily.com/ + + securecookie + + host + ^(?:.*\.)?bobafamily\.com$ + name + .+ + + target + + + host + bobafamily.com + + + host + *.bobafamily.com + + + host + *.store.bobafamily.com + + + + + Bobcares.com + + ruleset + + name + Bobcares.com + rule + + from + ^http://(www\.)?bobcares\.com/ + to + https://$1bobcares.com/ + + securecookie + + host + ^\.bobcares\.com$ + name + .+ + + target + + + host + bobcares.com + + + host + *.bobcares.com + + + + + Bodum + + ruleset + + name + Bodum + rule + + from + ^http://(?:www\.)?bodum\.com/ + to + https://www.bodum.com/ + + securecookie + + host + ^(.+\.)?bodum\.com$ + name + .* + + target + + + host + bodum.com + + + host + www.bodum.com + + + + + BodyBuilding.com (partial) + + ruleset + + exclusion + + pattern + ^http://my\.bodybuilding\.com/ + + name + BodyBuilding.com (partial) + rule + + + from + ^http://(common|store)\.bbcomcdn\.com/ + to + https://$1.bbcomcdn.com/ + + + from + ^http://(\w{2}\.|www\.)?bodybuilding\.com/store/(account/|commerce/cart\.jsp|orderstatus\.htm) + to + https://$1bodybuilding.com/store/$2 + + + from + ^http://(ad|assets|s)\.bodybuilding\.com/ + to + https://$1.bodybuilding.com/ + + + from + ^https?://imagecdn.bodybuilding.com/ + to + https://d1qro4ibhgqt8c.cloudfront.net/ + + + from + ^https?://n\.bodybuilding\.com/ + to + https://bodybuilding-com.112.2o7.net/ + + + securecookie + + host + ^ad\.bodybuilding\.com$ + name + .+ + + target + + + host + *.bbcomcdn.com + + + host + *.bodybuilding.com + + + + + Boe.es + + ruleset + + name + Boe.es + rule + + + from + ^http://boe\.es/ + to + https://www.boe.es/ + + + from + ^http://([^/:@\.]+)\.boe\.es/ + to + https://$1.boe.es/ + + + target + + + host + boe.es + + + host + *.boe.es + + + + + Boeing Employees Credit Union (partial) + + ruleset + + name + Boeing Employees Credit Union (partial) + rule + + + from + ^https?://becu\.org/ + to + https://www.becu.org/ + + + from + ^http://www\.becu\.org/($|contact-us\.aspx|css/|Default\.aspx|flash/|images/|js/|mobile-online-banking/|pdfsource/|who-is/becu-is-you\.aspx) + to + https://www.becu.org/$1s/ + + + from + ^http://accessassistant\.becu\.org/ + to + https://accessassistant.becu.org/ + + + from + ^http://(?:www\.)?becuonlinebanking\.org/ + to + https://www.becuonlinebanking.org/ + + + securecookie + + + host + ^\.becu\.org$ + name + ^(becuhome|s_\w+)$ + + + host + ^accessassistant\.becu\.org$ + name + .* + + + host + ^.*\.becuonlinebanking\.org$ + name + .* + + + target + + + host + becu.org + + + host + *.becu.org + + + host + becuonlinebanking.org + + + host + *.becuonlinebanking.org + + + + + Boell.de + + ruleset + + name + Boell.de + rule + + from + ^http://groupwise\.boell\.de/ + to + https://groupwise.boell.de/ + + target + + host + groupwise.boell.de + + + + Bohemia Interactive (partial) + + ruleset + + name + Bohemia Interactive (partial) + rule + + + from + ^http://(www\.)?bistudio\.com/ + to + https://www.bistudio.com/ + + + from + ^http://(www\.)?(community\.|store\.)?bistudio\.com/ + to + https://community.bistudio.com/ + + + securecookie + + host + ^(?:community|store)\.bistudio\.com$ + name + .+ + + target + + + host + bistudio.com + + + host + www.bistudio.com + + + host + community.bistudio.com + + + host + store.bistudio.com + + + + + Boing Boing Shop + + ruleset + + name + Boing Boing Shop + rule + + + from + ^http://media\.boingboing\.net/ + to + https://boingboing.cachefly.net/ + + + from + ^http://shop\.boingboing\.net/ + to + https://shop.boingboing.net/ + + + securecookie + + host + ^\.shop\.boingboing\.net$ + name + .* + + target + + + host + *.boingboing.net + + + host + *.shop.boingboing.net + + + + + Boingo + + ruleset + + name + Boingo + rule + + + from + ^https?://boingo\.com/ + to + https://www.boingo.com/ + + + from + ^http://([^/:@]+)?\.boingo\.com/ + to + https://$1.boingo.com/ + + + from + ^https?://boingo\.net/ + to + https://www.boingo.net/ + + + from + ^http://([^/:@]+)?\.boingohotspot\.net/ + to + https://$1.boingohotspot.net/ + + + target + + + host + boingo.com + + + host + *.boingo.com + + + host + boingohotspot.net + + + host + *.boingohotspot.net + + + + + Bokborgen.se + + ruleset + + name + Bokborgen.se + rule + + + from + ^http://www\.bokborgen\.se/ + to + https://bokborgen.se/ + + + from + ^http://bokborgen\.se/ + to + https://bokborgen.se/ + + + target + + + host + www.bokborgen.se + + + host + bokborgen.se + + + + + Bokelskere + + ruleset + + name + Bokelskere + platform + mixedcontent + rule + + + from + ^http://bokelskere\.no/ + to + https://bokelskere.no/ + + + from + ^http://www\.bokelskere\.no/ + to + https://www.bokelskere.no/ + + + target + + + host + bokelskere.no + + + host + www.bokelskere.no + + + + + Bolagsverket.se + + ruleset + + name + Bolagsverket.se + platform + mixedcontent + rule + + + from + ^http://bolagsverket\.se/ + to + https://www.bolagsverket.se/ + + + from + ^http://www\.bolagsverket\.se/ + to + https://www.bolagsverket.se/ + + + target + + + host + bolagsverket.se + + + host + www.bolagsverket.se + + + + + BoldChat.com (partial) + + ruleset + + name + BoldChat.com (partial) + rule + + + from + ^http://(www\.)?boldchat\.com/ + to + https://$1boldchat.com/ + + + from + ^http://(blog|cbi|hometab|images|livechat|my|reports?|setup|test|vmss?|web)\.boldchat\.com/ + to + https://$1.boldchat.com/ + + + from + ^http://autodiscover\.boldchat\.com/.* + to + https://autodiscover.mex07a.emailsrvr.com/autodiscover/autodiscover.xml + + + securecookie + + host + ^(?:.*\.)?boldchat\.com$ + name + .+ + + target + + + host + boldchat.com + + + host + *.boldchat.com + + + + + BolehVPN.net (partial) + + ruleset + + name + BolehVPN.net (partial) + rule + + from + ^http://portal\.bolehvpn\.net/ + to + https://portal.bolehvpn.net/ + + securecookie + + host + ^portal\.bolehvpn\.net$ + name + .+ + + target + + host + portal.bolehvpn.net + + + + Bolo's Computer Museum + + ruleset + + name + Bolo's Computer Museum + rule + + from + ^http://(www\.)?abcm\.ch/ + to + https://$1abcm.ch/ + + target + + + host + abcm.ch + + + host + www.abcm.ch + + + + + Boltbus.com + + ruleset + + name + Boltbus.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?boltbus\.com/ + to + https://www.boltbus.com/ + + target + + + host + boltbus.com + + + host + www.boltbus.com + + + + + BoneBlast.com (false MCB) + + ruleset + + name + BoneBlast.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?boneblast\.com/ + to + https://$1boneblast.com/ + + securecookie + + host + ^\.boneblast\.com$ + name + .+ + + target + + + host + boneblast.com + + + host + *.boneblast.com + + + + + BoneBlast.com (partial) + + ruleset + + name + BoneBlast.com (partial) + rule + + from + ^http://(www\.)?boneblast\.com/(?=images/|landpage/img/|wp-content/|wp-includes/) + to + https://$1boneblast.com/ + + target + + + host + boneblast.com + + + host + www.boneblast.com + + + + + Bonneville Power Administration (partial) + + ruleset + + name + Bonneville Power Administration (partial) + rule + + + from + ^http://(customerportal\.|www\.)?bpa\.gov/ + to + https://$1bpa.gov/ + + + from + ^https?://(?:www\.)?(careers|efw|jobs)\.bpa\.gov/ + to + https://$1.bpa.gov/ + + + securecookie + + host + ^.*\.bpa\.gov$ + name + .+ + + target + + + host + bpa.gov + + + host + *.bpa.gov + + + + + BookMyName + + ruleset + + name + BookMyName + rule + + from + ^http://(?:www\.)?bookmyname\.com/ + to + https://www.bookmyname.com/ + + target + + + host + www.bookmyname.com + + + host + bookmyname.com + + + + + Bookacourse (partial) + + ruleset + + name + Bookacourse (partial) + rule + + from + ^http://(www\.)?bookacourse\.com/(?!content) + to + https://$1bookacourse.com/ + + target + + + host + bookacourse.com + + + host + www.bookacourse.com + + + + + Booking.com + + ruleset + + name + Booking.com + rule + + + from + ^http://(?:www\.)?booking\.com/ + to + https://www.booking.com/ + + + from + ^http://(admin|bookingbutton|distribution-xml|join|mobile|secure|xml)\.booking\.com/ + to + https://$1.booking.com/ + + + from + ^http://(\w)\.bstatic\.com/ + to + https://$1.bstatic.com/ + + + securecookie + + host + ^\.booking\.com$ + name + .+ + + target + + + host + booking.com + + + host + *.booking.com + + + host + *.bstatic.com + + + + + Booklog.jp + + ruleset + + name + Booklog.jp + rule + + from + ^http://(?:www\.)?booklog\.jp/ + to + https://www.booklog.jp/ + + target + + + host + booklog.jp + + + host + www.booklog.jp + + + + + Bookshare + + ruleset + + name + Bookshare + rule + + from + ^https?://(?:www\.)?bookshare\.org/ + to + https://www.bookshare.org/ + + securecookie + + host + ^www\.bookshare\.org$ + name + .+ + + target + + + host + bookshare.org + + + host + www.bookshare.org + + + + + Bookworm + + ruleset + + name + Bookworm + rule + + from + ^http://bookworm\.oreilly\.com/ + to + https://bookworm.oreilly.com/ + + securecookie + + host + ^bookworm\.oreilly\.com$ + name + .* + + target + + host + bookworm.oreilly.com + + + + Boomerang (partial) + + ruleset + + name + Boomerang (partial) + rule + + from + ^http://(imagestore2?\.|ss\.|www\.)?boomerang\.com/ + to + https://$1boomerang.com/ + + securecookie + + host + ^ss\.boomerang\.com$ + name + .* + + target + + + host + boomerang.com + + + host + *.boomerang.com + + + + + Boost by Benz.com + + ruleset + + name + Boost by Benz.com + rule + + from + ^http://(www\.)?boostbybenz\.com/ + to + https://$1boostbybenz.com/ + + target + + + host + boostbybenz.com + + + host + www.boostbybenz.com + + + + + Boots Thai.com + + ruleset + + name + Boots Thai.com + rule + + from + ^http://www\.bootsthai\.com/ + to + https://www.bootsthai.com/ + + target + + host + www.bootsthai.com + + + + Boots.com (partial) + + ruleset + + name + Boots.com (partial) + rule + + + from + ^http://(?:www\.)?boots\.com/ + to + https://www.boots.com/ + + + from + ^http://www\.international\.boots\.com/ + to + https://www.international.boots.com/ + + + from + ^http://(?:www\.)?th\.boots\.com/ + to + https://www.bootsthai.com/ + + + from + ^http://(www\.)?shopbootsusa\.com/webstore/(?=a4j/|login\.do) + to + https://$1shopbootsusa.com/webstore/ + + + from + ^http://images\.shopbootsusa\.com/ + to + https://images.shopbootsusa.com/ + + + securecookie + + host + ^(?:.*\.)?boots\.com$ + name + .+ + + target + + + host + boots.com + + + host + *.boots.com + + + host + shopbootsusa.com + + + host + *.shopbootsusa.com + + + + + Boots.ie + + ruleset + + name + Boots.ie + rule + + from + ^http://(?:www\.)?boots\.ie/ + to + https://www.boots.ie/ + + securecookie + + host + ^www\.boots\.ie$ + name + .+ + + target + + + host + boots.ie + + + host + www.boots.ie + + + + + Boots.no + + ruleset + + name + Boots.no + rule + + from + ^http://(?:www\.)?boots\.no/ + to + https://www.boots.no/ + + securecookie + + host + .*\.boots\.no$ + name + .+ + + target + + + host + boots.no + + + host + *.boots.no + + + + + BootstrapCDN (partial) + + ruleset + + name + BootstrapCDN (partial) + rule + + + from + ^https?://(?:netdna\.|www\.)?bootstrapcdn\.com/ + to + https://netdna.bootstrapcdn.com/ + + + from + ^http://maxcdn\.bootstrapcdn\.com/ + to + https://maxcdn.bootstrapcdn.com/ + + + target + + + host + bootstrapcdn.com + + + host + *.bootstrapcdn.com + + + + + Boounce + + ruleset + + name + Boounce + rule + + from + ^http://(forums\.|www\.)?boounce\.com/ + to + https://$1boounce.com/ + + securecookie + + host + ^forums\.boounce\.com$ + name + .+ + + target + + + host + boounce.com + + + host + *.boounce.com + + + + + Booz Allen.com (partial) + + ruleset + + name + Booz Allen.com (partial) + rule + + from + ^http://((?:cybertab|mena|www)\.)?boozallen\.com/ + to + https://$1boozallen.com/ + + securecookie + + host + ^cybertab\.boozallen\.com$ + name + .+ + + target + + + host + boozallen.com + + + host + *.boozallen.com + + + + + Bored to Death + + ruleset + + name + Bored to Death + rule + + from + ^http://(www\.)?boredtodeath\.me/ + to + https://$1boredtodeath.me/ + + securecookie + + host + ^(?:w*\.)?boredtodeath\.me$ + name + .+ + + target + + + host + boredtodeath.me + + + host + *.boredtodeath.me + + + + + Born This Way Foundation (partial) + + ruleset + + name + Born This Way Foundation (partial) + rule + + + from + ^https?://(?:action\.|www\.)?bornthiswayfoundation\.org/page/-/img/ + to + https://dnwssx4l7gl7s.cloudfront.net/bway/default/page/-/img/ + + + from + ^http://secure\.bornthiswayfoundation\.org/ + to + https://secure.bornthiswayfoundation.org/ + + + securecookie + + host + ^\.?secure\.bornthiswayfoundation\.org$ + name + .+ + + target + + + host + bornthiswayfoundation.org + + + host + *.bornthiswayfoundation.org + + + + + Bortársaság + + ruleset + + name + Bortársaság + rule + + from + ^http://(www\.)?bortarsasag\.hu/ + to + https://www.bortarsasag.hu/ + + securecookie + + host + ^www\.bortarsasag\.hu$ + name + .* + + target + + + host + bortarsasag.hu + + + host + www.bortarsasag.hu + + + + + Bose + + ruleset + + name + Bose + rule + + + from + ^https?://bose\.co\.uk/ + to + https://www.bose.co.uk/ + + + from + ^http://([^/:@]+)\.bose\.co\.uk/ + to + https://$1.bose.co.uk/ + + + securecookie + + host + ^(.*\.)?bose\.co\.uk$ + name + .* + + target + + + host + bose.co.uk + + + host + www.bose.co.uk + + + + + Boston Review.com + + ruleset + + name + Boston Review.com + rule + + from + ^http://(www\.)?bostonreview\.net/ + to + https://$1bostonreview.net/ + + securecookie + + host + ^(?:w*\.)?bostonreview\.net$ + name + .+ + + target + + + host + bostonreview.net + + + host + *.bostonreview.net + + + + + Boston University (partial) + + ruleset + + name + Boston University (partial) + rule + + + from + ^https?://(?:www\.)?bu\.edu/ + to + https://www.bu.edu/ + + + from + ^http://tandem\.bu\.edu/ + to + https://tandem.bu.edu/ + + + securecookie + + host + ^(?:www)?\.bu\.edu$ + name + .+ + + target + + + host + bu.edu + + + host + *.bu.edu + + + + + Boston.com (partial) + + ruleset + + name + Boston.com (partial) + rule + + + from + ^http://(?:www\.)?boston\.com/ + to + https://www.boston.com/ + + + from + ^http://(?:cache|graphics)\.boston\.com/ + to + https://graphics.boston.com/ + + + from + ^http://deals\.boston\.com/+ + to + https://finds.boston.com/ + + + from + ^http://weather\.boston\.com/ + to + https://www.boston.com/weather/ + + + securecookie + + host + ^(?:.*\.)?boston\.com$ + name + .+ + + target + + + host + boston.com + + + host + *.boston.com + + + + + BotBot.me + + ruleset + + name + BotBot.me + rule + + from + ^http://(www\.)?botbot\.me/ + to + https://$1botbot.com/ + + target + + + host + botbot.me + + + host + www.botbot.me + + + + + Botfrei.de (partial) + + ruleset + + name + Botfrei.de (partial) + rule + + from + ^http://(www\.)?botfrei\.de/ + to + https://$1botfrei.de/ + + target + + + host + botfrei.de + + + host + www.botfrei.de + + + + + Bothar + + ruleset + + name + Bothar + rule + + from + ^http://(?:www\.)?bothar\.ie/ + to + https://$1bothar.ie/ + + target + + + host + www.bothar.ie + + + host + bothar.ie + + + + + Bounce.io + + ruleset + + name + Bounce.io + rule + + from + ^http://(?:www\.)?bounce\.io/ + to + https://bounce.io/ + + target + + + host + bounce.io + + + host + *.bounce.io + + + + + Bouncer Station.com + + ruleset + + name + Bouncer Station.com + rule + + from + ^http://(www\.)?bouncerstation\.com/ + to + https://$1bouncerstation.com/ + + target + + + host + bouncerstation.com + + + host + www.bouncerstation.com + + + + + Bouncy Balls.org + + ruleset + + name + Bouncy Balls.org + rule + + from + ^http://(www\.)?bouncyballs\.org/ + to + https://$1bouncyballs.org/ + + securecookie + + host + ^\.bouncyballs\.org$ + name + .+ + + target + + + host + bouncyballs.org + + + host + *.bouncyballs.org + + + + + Bouncy Castle.org (partial) + + ruleset + + name + Bouncy Castle.org (partial) + rule + + from + ^http://(www\.)?bouncycastle\.org/ + to + https://$1bouncycastle.org/ + + securecookie + + host + ^(?:www\.)?bouncycastle\.org$ + name + .+ + + target + + + host + bouncycastle.org + + + host + www.bouncycastle.org + + + + + BountyOSS.com + + ruleset + + name + BountyOSS.com + rule + + from + ^http://(www\.)?bountyoss\.com/ + to + https://$1bountyoss.com/ + + securecookie + + host + ^bountyoss\.com$ + name + .+ + + target + + + host + bountyoss.com + + + host + www.bountyoss.com + + + + + Bountysource.com (partial) + + ruleset + + name + Bountysource.com (partial) + rule + + from + ^http://(www\.)?bountysource\.com/ + to + https://$1bountysource.com/ + + target + + + host + bountysource.com + + + host + www.bountysource.com + + + + + Bourgeois.me + + ruleset + + name + Bourgeois.me + rule + + from + ^http://(www\.)?bourgeois\.me/ + to + https://$1bourgeois.me/ + + securecookie + + host + ^\.bourgeois\.me$ + name + .+ + + target + + + host + bourgeois.me + + + host + *.bourgeois.me + + + + + Box (partial) + + ruleset + + exclusion + + pattern + ^http://opensource\.box\.com/ + + name + Box (partial) + rule + + + from + ^http://forum\.developers\.box\.com/ + to + https://getsatisfaction.com/ + + + from + ^http://([\w\.-]+\.)?box\.com/ + to + https://$1box.com/ + + + from + ^http://(e[123]|s5)\.boxcdn\.net/ + to + https://$1.boxcdn.net/ + + + securecookie + + host + .*\.box\.com$ + name + .+ + + target + + + host + box.com + + + host + *.box.com + + + host + *.boxcdn.net + + + + + BoxOffice (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?boxoffice\.com/(?:$|\?|/) + + name + BoxOffice (partial) + rule + + from + ^http://(www\.)?boxoffice\.com/ + to + https://$1boxoffice.com/ + + target + + + host + boxoffice.com + + + host + www.boxoffice.com + + + + + BoxUK + + ruleset + + name + BoxUK + platform + mixedcontent + rule + + from + ^http://(?:www\.)?boxuk\.com/ + to + https://www.boxuk.com/ + + securecookie + + host + ^(?:www\.)?boxuk\.com$ + name + .* + + target + + + host + www.boxuk.com + + + host + boxuk.com + + + + + Boxee.tv (partial) + + ruleset + + name + Boxee.tv (partial) + rule + + from + ^http://((?:account|app|assets|www)\.)?boxee\.tv/ + to + https://$1boxee.tv/ + + securecookie + + host + ^(?:\w+\.)?boxee\.tv$ + name + .+ + + target + + + host + boxee.tv + + + host + *.boxee.tv + + + + + Boxpn.com + + ruleset + + name + Boxpn.com + rule + + from + ^http://(www\.)?boxpn\.com/ + to + https://$1boxpn.com/ + + securecookie + + host + ^(?:www)?\.boxpn\.com$ + name + .+ + + target + + + host + boxpn.com + + + host + *.boxpn.com + + + + + Boxwood Technology + + ruleset + + name + Boxwood Technology + rule + + from + ^http://(secure\.|www\.)?boxwoodtech\.com/ + to + https://$1boxwoodtech.com/ + + securecookie + + host + ^(?:.+\.)?boxwoodtech\.com$ + name + .+ + + target + + + host + boxwoodtech.com + + + host + *.boxwoodtech.com + + + + + Brabysads.com (partial) + + ruleset + + name + Brabysads.com (partial) + rule + + from + ^http://(www\.)?brabysads\.com/ + to + https://$1brabysads.com/ + + securecookie + + host + ^(?:www\.)?brabysads\.com$ + name + .+ + + target + + + host + brabysads.com + + + host + www.brabysads.com + + + + + Brainbench + + ruleset + + name + Brainbench + platform + mixedcontent + rule + + from + ^http://(?:www\.)?brainbench\.com/ + to + https://www.brainbench.com/ + + target + + + host + www.brainbench.com + + + host + brainbench.com + + + + + Brainshark + + ruleset + + name + Brainshark + platform + mixedcontent + rule + + + from + ^https?://presentation.brainshark.com/company/contact_us\.(?:aspx|php)(?:$|\?.*) + to + https://www.brainshark.com/contact-us + + + from + ^https?://presentation\.brainshark\.com/privacy_policy/privacy_policy\.(?:aspx|php)(?:$|\?.*) + to + https://www.brainshark.com/company/privacy-policy.aspx + + + from + ^http://(?:presentation\.|www\.)?brainshark\.com/ + to + https://www.brainshark.com/ + + + securecookie + + host + ^(.*\.)?brainshark\.com$ + name + .* + + target + + + host + brainshark.com + + + host + www.brainshark.com + + + + + Brainsonic (partial) + + ruleset + + name + Brainsonic (partial) + rule + + + from + ^http://(?:www\.)?brainsonic\.com/wp-content/ + to + https://www.brainsonic.com/wp-content/ + + + from + ^http://(live2|live-secure|francetv\.motscroises\.pad)\.brainsonic\.com/ + to + https://$1.brainsonic.com/ + + + target + + + host + brainsonic.com + + + host + *.brainsonic.com + + + + + Brainstorage.me (partial) + + ruleset + + name + Brainstorage.me (partial) + rule + + from + ^http://(?:www\.)?brainstorage\.me/(?=assets/) + to + https://brainstorage.me/ + + target + + + host + brainstorage.me + + + host + www.brainstorage.me + + + + + Braintreegateway.com + + ruleset + + name + Braintreegateway.com + platform + firefox + rule + + from + ^http://braintreegateway\.com/ + to + https://braintreegateway.com/ + + securecookie + + host + ^braintreegateway\.com$ + name + .+ + + target + + host + braintreegateway.com + + + + Braintreepayments.com + + ruleset + + name + Braintreepayments.com + rule + + + from + ^http://((?:apply|developers|status|support|www)\.)?braintreepayments\.com/ + to + https://$1braintreepayments.com/ + + + from + ^http://(www\.)?braintreepaymentsolutions\.com/ + to + https://$1braintreepaymentsolutions.com/ + + + securecookie + + host + ^(?:(?:apply|developers|www)\.)?braintreepayments\.com$ + name + .+ + + target + + + host + braintreepayments.com + + + host + *.braintreepayments.com + + + host + braintreepaymentsolutions.com + + + host + www.braintreepaymentsolutions.com + + + + + BrainyQuote.com + + ruleset + + name + BrainyQuote.com + rule + + from + ^http://((?:i|mobile|www)\.)?brainyquote\.com/ + to + https://$1brainyquote.com/ + + securecookie + + host + ^(?:www)?\.brainyquote\.com$ + name + .+ + + target + + + host + brainyquote.com + + + host + *.brainyquote.com + + + + + Branch + + ruleset + + name + Branch + rule + + + from + ^https?://(?:secure\.|www\.)?branch\.com/ + to + https://secure.branch.com/ + + + from + ^https?://static\.branch\.com/ + to + https://d3sipcemvmkij2.cloudfront.net/ + + + securecookie + + host + ^\.branch\.com$ + name + .+ + + target + + + host + branch.com + + + host + *.branch.com + + + + + Branchable.com + + ruleset + + name + Branchable.com + rule + + from + ^http://([\w-]+\.)?branchable\.com/ + to + https://$1branchable.com/ + + securecookie + + host + .+\.branchable\.com$ + name + .+ + + target + + + host + branchable.com + + + host + *.branchable.com + + + + + Brand Embassy (partial) + + ruleset + + name + Brand Embassy (partial) + rule + + from + ^http://(engager|ui)\.brandembassy\.com/ + to + https://$1.brandembassy.com/ + + securecookie + + host + ^(?:engager|ui)\.brandembassy\.com$ + name + .+ + + target + + host + *.brandembassy.com + + + + Brand New Booty + + ruleset + + name + Brand New Booty + rule + + from + ^http://(www\.)?brandnewbooty\.com/ + to + https://$1brandnewbooty.com/ + + securecookie + + host + ^(?:www)?\.brandnewbooty\.com$ + name + .+ + + target + + + host + brandnewbooty.com + + + host + *.brandnewbooty.com + + + + + Brandify (partial) + + ruleset + + name + Brandify (partial) + rule + + from + ^http://secure\.brandify\.com\.au/ + to + https://secure.brandify.com.au/ + + target + + host + secure.brandify.com.au + + + + Branson Zipline (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?bransonzipline\.com/(?!public/) + + name + Branson Zipline (partial) + rule + + + from + ^http://(secure\.|www\.)?bransonzipline\.com/ + to + https://$1bransonzipline.com/ + + + from + ^http://(?:css|img)\.bzimages\.com/ + to + https://www.bransonzipline.com/ + + + securecookie + + host + ^secure\.bransonzipline\.com$ + name + .+ + + target + + + host + bransonzipline.com + + + host + *.bransonzipline.com + + + host + img.bzimages.com + + + + + Brashear.me + + ruleset + + name + Brashear.me + rule + + from + ^http://(www\.)?brashear\.me/ + to + https://brashear.me/ + + target + + + host + brashear.me + + + host + www.brashear.me + + + + + Brasil 24/7 + + ruleset + + name + Brasil 24/7 + rule + + from + ^http://(publicidade\.|www\.)?brasil247\.com/ + to + https://$1brasil247.com/ + + securecookie + + host + .*\.brasil247\.com$ + name + .+ + + target + + + host + brasil247.com + + + host + *.brasil247.com + + + + + Braunschweig + + ruleset + + name + Braunschweig + platform + mixedcontent + rule + + from + ^http://(?:www\.)?braunschweig\.de/ + to + https://www.braunschweig.de/ + + target + + + host + www.braunschweig.de + + + host + braunschweig.de + + + + + Bravely Onward.com + + ruleset + + name + Bravely Onward.com + rule + + from + ^http://(www\.)?bravelyonward\.com/ + to + https://$1bravelyonward.com/ + + securecookie + + host + ^\.bravelyonward\.com$ + name + .+ + + target + + + host + bravelyonward.com + + + host + *.bravelyonward.com + + + + + Bravenet Media (partial) + + ruleset + + name + Bravenet Media (partial) + rule + + from + ^http://redvase\.bravenet\.com/ + to + https://redvase.bravenet.com/ + + securecookie + + host + ^redvase\.bravenet\.com$ + name + .+ + + target + + host + redvase.bravenet.com + + + + BreNet (partial) + + ruleset + + name + BreNet (partial) + rule + + from + ^http://(www\.)?brenet\.de(:8443)?/ + to + https://$1brenet.de$2/ + + securecookie + + host + ^(.*\.)?brenet\.de$ + name + .* + + target + + + host + brenet.de + + + host + *.brenet.de + + + host + *.webmail.brenet.de + + + + + Breakfast Quay (partial) + + ruleset + + name + Breakfast Quay (partial) + rule + + from + ^http://code\.breakfastquay\.com/ + to + https://code.breakfastquay.com/ + + securecookie + + host + ^code\.breakfastquay\.com$ + name + .* + + target + + host + code.breakfastquay.com + + + + BreakoutBand.com + + ruleset + + name + BreakoutBand.com + rule + + from + ^http://(www\.)?breakoutband\.com/ + to + https://$1breakoutband.com/ + + securecookie + + host + ^www\.breakoutband\.com$ + name + .+ + + target + + + host + breakoutband.com + + + host + www.breakoutband.com + + + + + Bremer Bank + + ruleset + + name + Bremer Bank + rule + + + from + ^(http://(www\.)?|https://)bremer\.com/ + to + https://www.bremer.com/ + + + from + ^http://(careers|each|mortgageapplication|ob|obfb|rdc|rdpass)\.bremer\.com/ + to + https://$1.bremer.com/ + + + from + ^https?://ebank\.bremer\.com/(.*) + to + https://ob.bremer.com/ + + + securecookie + + host + ^(careers|each|mortgageapplication|ob|obfb|rdc|rdpass|www)\.bremer\.com$ + name + .+ + + target + + + host + bremer.com + + + host + careers.bremer.com + + + host + each.bremer.com + + + host + ebank.bremer.com + + + host + mortgageapplication.bremer.com + + + host + ob.bremer.com + + + host + obfb.bremer.com + + + host + rdc.bremer.com + + + host + rdpass.bremer.com + + + host + www.bremer.com + + + + + Brendan Eich + + ruleset + + name + Brendan Eich + rule + + from + ^http://(www\.)?brendaneich\.com/ + to + https://$1brendaneich.com/ + + target + + + host + brendaneich.com + + + host + www.brendaneich.com + + + + + Brennan Center.org + + ruleset + + name + Brennan Center.org + rule + + from + ^http://(www\.)?brennancenter\.org/ + to + https://$1brennancenter.org/ + + target + + + host + brennancenter.org + + + host + www.brennancenter.org + + + + + Breuninger (partial) + + ruleset + + name + Breuninger (partial) + rule + + from + ^https?://(?:www\.)?breuninger.com/(_css/|_media/|e/|(?:login|register)Page\.cmd|medias/) + to + https://www.breuninger.com/$1 + + target + + + host + breuninger.com + + + host + www.breuninger.com + + + + + Brew Your Own + + ruleset + + name + Brew Your Own + platform + mixedcontent + rule + + from + ^http://(www\.)?byo\.com/ + to + https://$1byo.com/ + + securecookie + + host + ^(www\.)?byo\.com$ + name + .* + + target + + + host + byo.com + + + host + www.byo.com + + + + + Brian Smith.org + + ruleset + + name + Brian Smith.org + rule + + from + ^http://(?:www\.)?briansmith\.org/ + to + https://briansmith.org/ + + securecookie + + host + ^\.briansmith\.org$ + name + .+ + + target + + + host + briansmith.org + + + host + *.briansmith.org + + + + + BrickLink + + ruleset + + name + BrickLink + rule + + from + ^http://(?:www\.)?bricklink\.com/ + to + https://www.bricklink.com/ + + securecookie + + host + ^www\.bricklink\.com$ + name + .+ + + target + + + host + bricklink.com + + + host + www.bricklink.com + + + + + Bridgeways.com + + ruleset + + name + Bridgeways.com + rule + + from + ^http://(www\.)?bridgeways\.com/ + to + https://$1bridgeways.com/ + + securecookie + + host + ^(?:\.|www\.)?bridgeways\.com$ + name + .+ + + target + + + host + bridgeways.com + + + host + *.bridgeways.com + + + + + Briggs and Riley + + ruleset + + name + Briggs and Riley + rule + + + from + ^https?://briggs-riley\.com/ + to + https://www.briggs-riley.com/ + + + from + ^http://([^/:@]+)?\.briggs-riley\.com/ + to + https://$1.briggs-riley.com/ + + + target + + + host + briggs-riley.com + + + host + *.briggs-riley.com + + + + + Brigham Young University (partial) + + ruleset + + exclusion + + + pattern + ^http://cpms\.byu\.edu/(content/|ESM($|/)|newsletters/StudentNews/) + + + pattern + ^http://(www\.)?byu\.edu/(family|o(n|ff)campus)?housing($|/) + + + pattern + ^http://www\.physics\.byu\.edu/Graduate(/?$|/[dD]efault\.aspx(\?|$)) + + + name + Brigham Young University (partial) + platform + mixedcontent + rule + + + from + ^http(?:://(?:www\.)?|s://www\.)(alumni[23]|animation|asme|assess|at|barbershop|blackboard|bookexchange|booklist|byuems|byusa|cac|calendar|ccr|cheme|chemicalengineering|cles|clsupport|comd|cougarprints|coursemanagement|cpms|creativeworks|(?:(?:(?:accounts|docs|faculty|facwiki|help|labs|students|tick)\.)?cs)|delegate|developer|education|edward|eroom|(?:(?:org|pml)\.et)|events|examstat|facultyprofile|finserve|finserve-dev|gamescenter|gamma|gamma-stg|gardner|globalcareer|go|gradebook|home|honorcode|hrms|inshop|internationalservices|irbtutorial|it|itmedia|ittest|jobs|kennedy|kronprod|lambda|leadershiped|lockers|lodges|login|map|marylou|(?:mail01\.)?math|mathed|multicultural|news|newsnet|oit|online[12]?|orca|(?:mail\.physics)|pmpc|pmpcapps|police|printandmail|purchasing|redefineservice|remedy|risk|ry|sa|saas|sasapps|scheduling|software|spiral|stab|stleader|stokes|studentratings|testing|tutoring|uac|unicomm|volta|webmail|wilk|www|y|yfacts|yjobs|yscience)\.byu\.edu/ + to + https://$1.byu.edu/ + + + from + ^http(?:://(?:www\.)?|s://)((?:acerc|et|chem|physics)\.)?byu\.edu/ + to + https://www.$1byu.edu/ + + + from + ^http://((?:secure\.chem)|(?:support\.cheme)|(?:(?:contentdm|listserver)\.lib))\.byu\.edu/ + to + https://$1.byu.edu/ + + + from + ^http://([a-zA-Z\d\-]+)\.groups\.et\.byu\.net/ + to + https://$1.groups.et.byu.net/ + + + target + + + host + byu.edu + + + host + *.byu.edu + + + host + *.groups.et.byu.net + + + + + Bright Hub.com (partial) + + ruleset + + name + Bright Hub.com (partial) + rule + + + from + ^http://(?:www\.)?brighthub\.com/favicon\.ico + to + https://a248.e.akamai.net/f/1107/726/f/www.brighthub.com/favicon.ico + + + from + ^http://images\.brighthub\.com/ + to + https://a248.e.akamai.net/f/1560/24/4/images.brighthub.com/ + + + from + ^http://s\.brighthub\.com/s/css/ + to + https://ss.brighthub.com/s/css/ + + + from + ^http://s\.brighthub\.com/ + to + https://a248.e.akamai.net/f/938/158/8/s.brighthub.com + + + from + ^http://ss\.brighthub\.com/ + to + https://ss.brighthub.com/ + + + target + + + host + brighthub.com + + + host + *.brighthub.com + + + + + Bright Kids NYC + + ruleset + + name + Bright Kids NYC + rule + + from + ^https?://(?:www\.)?brightkidsnyc\.com/ + to + https://www.brightkidsnyc.com/ + + securecookie + + host + ^(?:www)?\.brightkidsnyc.com$ + name + .+ + + target + + + host + brightkidsnyc.com + + + host + *.brightkidsnyc.com + + + + + Bright-Things.com + + ruleset + + name + Bright-Things.com + rule + + from + ^http://(www\.)?bright-things\.com/ + to + https://$1bright-things.com/ + + target + + + host + bright-things.com + + + host + www.bright-things.com + + + + + BrightContext.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.brightcontext\.com/(?!favicon\.ico|wp-content/|wp-includes/) + + name + BrightContext.com (partial) + rule + + + from + ^http://(mgr\.)?brightcontext\.com/ + to + https://$1brightcontext.com/ + + + from + ^http://www\.brightcontext\.com/ + to + https://d21tvy0y59wl26.cloudfront.net/ + + + securecookie + + host + ^mgr\.brightcontext\.com$ + name + .+ + + target + + + host + brightcontext.com + + + host + *.brightcontext.com + + + + + BrightFort.com (partial) + + ruleset + + name + BrightFort.com (partial) + rule + + from + ^http://(www\.)?brightfort\.com/ + to + https://$1brightfort.com/ + + target + + + host + brightfort.com + + + host + www.brightfort.com + + + + + BrightRoll (partial) + + ruleset + + name + BrightRoll (partial) + rule + + + from + ^https?://cache\.btrll\.com/ + to + https://d1ibts9hn2apvm.cloudfront.net/ + + + from + ^http://(s)?segs\.btrll\.com/ + to + https://$1segs.btrll.com/ + + + securecookie + + host + ^\.btrll\.com$ + name + .+ + + target + + host + *.btrll.com + + + + BrightTag (partial) + + ruleset + + name + BrightTag (partial) + rule + + + from + ^http://(s|s-eu|t)\.btstatic\.com/ + to + https://$1.btstatic.com/ + + + from + ^http://(api|control|s|s-eu|t|u)\.thebrighttag\.com/ + to + https://$1.thebrighttag.com/ + + + from + ^http://[ab]\.s\.thebrighttag\.com/ + to + https://s.thebrighttag.com/ + + + securecookie + + host + ^(?:\.?control|\.s)\.thebrighttag\.com$ + name + .+ + + target + + + host + *.btstatic.com + + + host + *.thebrighttag.com + + + + + Brightcove (partial) + + ruleset + + exclusion + + + pattern + ^http://admin\.brightcove\.com/crossdomain\.xml + + + pattern + ^https://secure.brightcove.com/services/viewer/ + + + pattern + ^http://admin\.brightcove\.com/viewer/us20[\d\.]+/BrightcoveBootloader\.swf(?:\?|$) + + + pattern + ^http://admin\.brightcove\.com/viewer/.+\.swf(?:\?|$) + + + name + Brightcove (partial) + rule + + + from + ^http://c\.brightcove\.com/services/viewer/ + to + https://secure.brightcove.com/services/viewer/ + + + from + ^http://((?:api|(?:read\.|transcode\.|write\.)?appcloud|blog|brightcove01-secure|docs|files|images\.gallery|goku|img|link|metrics|my|register|secure|services|signin|solutions|support|videocloud|www)\.)?brightcove\.com/ + to + https://$1brightcove.com/ + + + from + ^http://brightcove01\.brightcove\.com/(?=.+\.jpg(?:$|\?)) + to + https://a248.e.akamai.net/f/948/9820/10/brightcove01.brightcove.com/ + + + from + ^http://brightcove01\.brightcove\.com/ + to + https://brightcove01-secure.brightcove.com/ + + + from + ^https?://s?admin\.brightcove\.com/ + to + https://sadmin.brightcove.com/ + + + from + ^http://opensource\.brightcove\.com/+[^?]* + to + https://docs.brightcove.com/en/video-cloud/open-source/ + + + securecookie + + host + ^\w.*\.brightcove\.com$ + name + .+ + + target + + host + *.brightcove.com + + + + Brightidea (partial) + + ruleset + + name + Brightidea (partial) + rule + + + from + ^https?://(?:www\.)?brightidea\.com/ + to + https://www.brightidea.com/ + + + from + ^http://(images|na2)\.brightidea\.com/ + to + https://$1.brightidea.com/ + + + from + ^https?://support\.brightidea\.com/(generated|system)/ + to + https://assets.zendesk.com/$1/ + + + securecookie + + host + ^www\.brightidea\.com$ + name + .+ + + target + + + host + brightidea.com + + + host + *.brightidea.com + + + + + Brighton (partial) + + ruleset + + name + Brighton (partial) + rule + + + from + ^http://(www\.)?brighton\.com/(content/|css/|Public/|Shop/Customer(?:$|\?|/)|store_image/|Styles/) + to + https://$1brighton.com/$2 + + + from + ^http://(www\.)?brightoncollectibles\.com/ + to + https://$1brightoncollectibles.com/ + + + securecookie + + host + \.brightoncollectibles\.com$ + name + .+ + + target + + + host + brighton.com + + + host + www.brighton.com + + + host + brightoncollectibles.com + + + host + *.brightoncollectibles.com + + + + + Brilig (partial) + + ruleset + + name + Brilig (partial) + rule + + + from + ^http://js\.brilig\.com/ + to + https://p.brilig.com/ + + + from + ^http://((?:marketplace|p|www)\.)?brilig\.com/ + to + https://$1brilig.com/ + + + securecookie + + host + ^.*\.brilig\.com$ + name + .* + + target + + + host + brilig.com + + + host + *.brilig.com + + + + + Bring the Gig + + ruleset + + name + Bring the Gig + rule + + from + ^http://(www\.)?bringthegig\.com/ + to + https://$1bringthegig.com/ + + securecookie + + host + ^\.bringthegig\.com$ + name + .+ + + target + + + host + bringthegig.com + + + host + *.bringthegig.com + + + + + Brinkster.com + + ruleset + + name + Brinkster.com + rule + + from + ^http://((?:help|secure|webmail|www)\.)?brinkster\.com/ + to + https://$1brinkster.com/ + + securecookie + + host + ^(?:webmail)?\.brinkster\.com$ + name + .+ + + target + + + host + brinkster.com + + + host + *.brinkster.com + + + + + Britannica.com (partial) + + ruleset + + name + Britannica.com (partial) + rule + + + from + ^http://(?:www\.)?britannica\.com/ + to + https://www.britannica.com/ + + + from + ^http://safe(1)?\.britannica\.com/ + to + https://safe$1.britannica.com/ + + + securecookie + + host + ^(?:safe1|www)?\.britannica\.com$ + name + .+ + + target + + + host + britannica.com + + + host + *.britannica.com + + + + + Britcoin.co.uk + + ruleset + + name + Britcoin.co.uk + rule + + from + ^http://(?:www\.)?britcoin\.co\.uk/ + to + https://www.britcoin.co.uk/ + + target + + + host + britcoin.co.uk + + + host + www.britcoin.co.uk + + + + + British Airline Pilots Association + + ruleset + + name + British Airline Pilots Association + rule + + + from + ^https?://balpa\.org/ + to + https://www.balpa.org/ + + + from + ^http://([^/:@]+)?\.balpa\.org/ + to + https://$1.balpa.org/ + + + target + + + host + balpa.org + + + host + *.balpa.org + + + + + British Gas (partial) + + ruleset + + name + British Gas (partial) + rule + + + from + ^http://88\.208\.232\.88/wp-content/ + to + https://www.britishgas.co.uk/business/blog/wp-content/ + + + from + ^http://(?:www\.)?britishgas\.co\.uk/GetAQuote(\?.*)?$ + to + https://www.britishgas.co.uk/GetAQuote/$1 + + + from + ^http://(?:www\.)?britishgas\.co\.uk/(apps/|content/|etc/|(?:BGBOnline|business/(?:blog/(?:scripts|wp-content)/|ManageAccount||manage-account|QuerryManageMent)|GetAQuote|HelpAndAdvice|HomeMove|Login|Registration|ViewQuoteDetails|Your_Account)(?:$|\?|/)|images/|libs/|script/|style/) + to + https://www.britishgas.co.uk/$1 + + + target + + + host + 88.208.232.88 + + + host + britishgas.co.uk + + + host + www.britishgas.co.uk + + + + + British Library (partial) + + ruleset + + name + British Library (partial) + rule + + from + ^http://pressandpolicy\.bl\.uk/ + to + https://pressandpolicy.bl.uk/ + + securecookie + + host + ^pressandpolicy\.bl\.uk$ + name + .+ + + target + + host + pressandpolicy.bl.uk + + + + British National Formulary (partial) + + ruleset + + name + British National Formulary (partial) + rule + + from + ^http://(?:www\.)?bnf\.org/bnf/((?:account|login|password|request_registration)\.htm|images/|style/|theme/) + to + https://www.bnf.org/bnf/$1 + + target + + + host + bnf.org + + + host + www.bnf.org + + + + + British Red Cross (partial) + + ruleset + + exclusion + + pattern + ^http://(?:m\.|www\.)?redcross\.org\.uk/(?!(?:[\w/-]+/)?~/media/|css/|images/) + + name + British Red Cross (partial) + rule + + + from + ^http://(?:www\.)?redcross\.org\.uk/ + to + https://www.redcross.org.uk/ + + + from + ^http://(?:www\.)?giftshop\.redcross\.org\.uk/ + to + https://giftshop.redcross.org.uk/ + + + from + ^http://((?:www\.)?everydayfirstaid|m)\.redcross\.org\.uk/ + to + https://$1.redcross.org.uk/ + + + securecookie + + host + ^\.?giftshop\.redcross\.org\.uk$ + name + .+ + + target + + + host + redcross.org.uk + + + host + *.redcross.org.uk + + + + + BritishAirways + + ruleset + + name + BritishAirways + platform + mixedcontent + rule + + + from + ^http://shopping\.ba\.com/ + to + https://www.britishairways.com/ + + + from + ^http://(?:www\.)?britishairways\.com/ + to + https://www.britishairways.com/ + + + securecookie + + host + ^(.*\.)?britishairways.com$ + name + .* + + target + + + host + shopping.ba.com + + + host + britishairways.com + + + host + www.britishairways.com + + + + + Brixwork.com (partial) + + ruleset + + name + Brixwork.com (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?brixwork\.com/ + to + https://$1brixwork.com/ + + securecookie + + host + ^www\.brixwork\.com$ + name + .+ + + target + + + host + brixwork.com + + + host + www.brixwork.com + + + + + Bro.org (partial) + + ruleset + + name + Bro.org (partial) + rule + + from + ^http://(tracker\.|www\.)?bro\.org/ + to + https://$1bro.org/ + + target + + + host + bro.org + + + host + *.bro.org + + + + + Broad Institute + + ruleset + + name + Broad Institute + rule + + from + ^https?://(?:www\.)?broadinstitute\.org/ + to + https://www.broadinstitute.org/ + + securecookie + + host + (?:www)?\.broadinstitute\.org$ + name + .* + + target + + + host + broadinstitute.org + + + host + *.broadinstitute.org + + + + + Broadband Convergent + + ruleset + + name + Broadband Convergent + rule + + from + ^http://(www\.)?broadbandconvergent\.com/ + to + https://$1broadbandconvergent.com/ + + securecookie + + host + ^www\.broadbandconvergent\.com$ + name + .+ + + target + + + host + broadbandconvergent.com + + + host + www.broadbandconvergent.com + + + + + Broadband Reports + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?(?:broadband|dsl)reports\.com/forum/[a-qs-z][_a-z]+(?:,[a-z]+|,?\d+)?(?:~[=a-z]+)?$ + + + pattern + ^http://(?:www\.)?(?:broadband|dsl)reports\.com/forum/r[a-df-z][_a-z]+(?:,[a-z]+|,?\d+)?(?:~[=a-z]+)?$ + + + name + Broadband Reports + rule + + + from + ^http://(?:www\.|secure\.)?(?:broadband|dsl)reports\.com/forum/remark,(\d+)(~[=a-z]+)?$ + to + https://secure.dslreports.com/forum/r$1-$2 + + + from + ^http://(?:www\.|secure\.)?(?:broadband|dsl)reports\.com/ + to + https://secure.dslreports.com/ + + + from + ^http://i\.dslr\.net/ + to + https://i.dslr.net/ + + + securecookie + + host + ^\.dslr\.net$ + name + .+ + + target + + + host + broadbandreports.com + + + host + www.broadbandreports.com + + + host + *.dslr.net + + + host + dslreports.com + + + host + *.dslreports.com + + + + + BroadcasTheNet + + ruleset + + name + BroadcasTheNet + rule + + from + ^http://(?:(cdn\.)|www\.)?broadcasthe\.net/ + to + https://$1broadcasthe.net/ + + securecookie + + host + ^(.*\.)?broadcastthe\.net$ + name + .* + + target + + + host + broadcasthe.net + + + host + *.broadcasthe.net + + + + + BroadcastJobs.co.uk (partial) + + ruleset + + name + BroadcastJobs.co.uk (partial) + rule + + from + ^http://rs\.broadcastjobs\.co\.uk/ + to + https://rs.broadcastjobs.co.uk/ + + securecookie + + host + ^rs\.broadcastjobs\.co\.uk$ + name + .+ + + target + + host + rs.broadcastjobs.co.uk + + + + Broadcom + + ruleset + + name + Broadcom + rule + + + from + ^http://(?:www\.)?broadcom\.com/ + to + https://www.broadcom.com/ + + + from + ^http://blog\.broadcom\.com/ + to + https://blog.broadcom.com/ + + + from + ^http://jobs\.broadcom\.com/(?=css/|sites/|view/) + to + https://broadcom.jobs2web.com/ + + + securecookie + + host + ^blog\.broadcom\.com$ + name + .+ + + target + + + host + broadcom.com + + + host + *.broadcom.com + + + + + Broadcom Foundation.org + + ruleset + + name + Broadcom Foundation.org + rule + + from + ^https?://(?:www\.)?broadcomfoundation\.org/ + to + https://www.broadcomfoundation.org/ + + target + + + host + broadcomfoundation.org + + + host + www.broadcomfoundation.org + + + + + Brockman + + ruleset + + name + Brockman + rule + + from + ^http://(?:www\.)?brockman\.com/ + to + https://www.brockman.com/ + + target + + + host + brockman.com + + + host + www.brockman.com + + + + + Brokenman + + ruleset + + name + Brokenman + rule + + from + ^http://(www\.)?brokenman\.co/ + to + https://$1brokenman.co/ + + target + + + host + brokenman.co + + + host + www.brokenman.co + + + + + Bromley.gov.uk + + ruleset + + name + Bromley.gov.uk + rule + + + from + ^http://(?:www\.)?bromley\.gov\.uk/ + to + https://www.bromley.gov.uk/ + + + from + ^http://fix\.bromley\.gov\.uk/ + to + https://fix.bromley.gov.uk/ + + + securecookie + + host + ^\.?www\.bromley\.gov\.uk$ + name + .+ + + target + + + host + bromley.gov.uk + + + host + *.bromley.gov.uk + + + + + Bronto Software (partial) + + ruleset + + name + Bronto Software (partial) + rule + + + from + ^http://(\w+)\.bm23\.com/ + to + https://$1.bm23.com/ + + + from + ^http://(app|appstatic|content\d*|hosting|static)\.bronto\.com/ + to + https://$1.bronto.com/ + + + from + ^http://mkto\.bronto\.com/(cs|image|j|r)s/ + to + https://na-c.marketo.com/$1s/ + + + from + ^http://(?:www\.)?fyleio\.com/(?:\?.*)?$ + to + https://app.bronto.com/login/index/login/ + + + from + ^http://hosting\.fyleio\.com/ + to + https://hosting.fyleio.com/ + + + securecookie + + + host + ^\.(?:bm23|fyleio)\.com$ + name + ^CISFOR$ + + + host + ^\.app\.bronto\.com$ + name + .+ + + + target + + + host + *.bm23.com + + + host + bronto.com + + + host + *.bronto.com + + + host + *.fyleio.com + + + + + Brookings Institution (partial + + ruleset + + name + Brookings Institution (partial + rule + + from + ^http://support\.brookings\.edu/ + to + https://support.brookings.edu/ + + securecookie + + host + ^support\.brookings\.edu$ + name + .+ + + target + + host + support.brookings.edu + + + + Brookline College.edu + + ruleset + + name + Brookline College.edu + rule + + from + ^http://((?:apply|fa|fbapp|mysite|www)\.)?brooklinecollege\.edu/ + to + https://$1brooklinecollege.edu/ + + securecookie + + host + ^\.?brooklinecollege\.edu$ + name + .+ + + target + + + host + brooklinecollege.edu + + + host + *.brooklinecollege.edu + + + + + Brookside Capital + + ruleset + + name + Brookside Capital + rule + + from + ^http://(www\.)?brooksidefund\.com/ + to + https://$1brooksidefund.com/ + + securecookie + + host + ^(?:.*\.)?brooksidefund\.com$ + name + .+ + + target + + + host + brooksidefund.com + + + host + *.brooksidefund.com + + + + + Broome Community College + + ruleset + + name + Broome Community College + platform + ipsca mixedcontent + rule + + from + ^http://(www\.)?sunybroome\.edu/ + to + https://sunybroome.edu/ + + target + + + host + www.sunybroome.edu + + + host + sunybroome.edu + + + + + Brown Paper Tickets (partial) + + ruleset + + exclusion + + + pattern + ^http://community\. + + + pattern + ^http://(www\.)?brownpapertickets\.com/event/ + + + name + Brown Paper Tickets (partial) + rule + + + from + ^http://(?:www\.)?bpt\.(?:bz|me)/ + to + https://www.brownpapertickets.com/ + + + from + ^http://m\.bpt\.(?:bz|me)/ + to + https://m.bpt.me/ + + + from + ^http://brownpapertickets\.com/ + to + https://www.brownpapertickets.com/ + + + from + ^http://(\w+)\.brownpapertickets\.com/ + to + https://$1.brownpapertickets.com/ + + + securecookie + + + host + ^m\.bpt\.me$ + name + .* + + + host + ^(.*\.)?brownpapertickets\.com$ + name + .* + + + target + + + host + bpt.bz + + + host + *.bpt.bz + + + host + bpt.me + + + host + *.bpt.me + + + host + brownpapertickets.com + + + host + *.brownpapertickets.com + + + + + Brown University (partial) + + ruleset + + name + Brown University (partial) + rule + + + from + ^http://((?:blogs|dl\.lib|library|news|software|webapps|wiki|www)\.)?brown\.edu/ + to + https://$1brown.edu/ + + + from + ^https?://(?:www\.)?research\.brown\.edu/ + to + https://research.brown.edu/ + + + securecookie + + host + ^.+\.brown\.edu$ + name + .+ + + target + + + host + brown.edu + + + host + *.brown.edu + + + + + BrowseAloud.com + + ruleset + + name + BrowseAloud.com + rule + + from + ^http://(www\.)?browsealoud\.com/ + to + https://$1browsealoud.com/ + + securecookie + + host + ^(?:www\.)?browsealoud\.com$ + name + .+ + + target + + + host + browsealoud.com + + + host + www.browsealoud.com + + + + + BrowserID + + ruleset + + name + BrowserID + rule + + from + ^http://(www\.)?browserid\.org/ + to + https://$1browserid.org/ + + securecookie + + host + ^(www\.)?browserid\.org$ + name + .+ + + target + + + host + browserid.org + + + host + www.browserid.org + + + + + BrowserLeaks + + ruleset + + name + BrowserLeaks + rule + + from + ^http://(www\.)?browserleaks\.com/ + to + https://$1browserleaks.com/ + + target + + + host + browserleaks.com + + + host + www.browserleaks.com + + + + + BrowserShots + + ruleset + + name + BrowserShots + platform + mixedcontent + rule + + from + ^http://(?:www\.)?browsershots\.org/ + to + https://browsershots.org/ + + securecookie + + host + ^(.+\.)?browsershots\.org$ + name + .* + + target + + + host + browsershots.org + + + host + www.browsershots.org + + + + + Bruce Perens + + ruleset + + name + Bruce Perens + rule + + from + ^http://(www\.)?perens\.com/ + to + https://$1perens.com/ + + securecookie + + host + ^(?:w*\.)?perens\.com$ + name + .+ + + target + + + host + perens.com + + + host + *.perens.com + + + + + Bruteforce.gr (Partial) + + ruleset + + name + Bruteforce.gr (Partial) + rule + + from + ^http://(www\.)?bruteforce\.gr/ + to + https://bruteforce.gr/ + + target + + + host + bruteforce.gr + + + host + www.bruteforce.gr + + + + + Bter.com + + ruleset + + name + Bter.com + rule + + from + ^http://(www\.)?bter\.com/ + to + https://$1bter.com/ + + securecookie + + host + ^\.?bter\.com$ + name + .+ + + target + + + host + bter.com + + + host + *.bter.com + + + + + Bucket Explorer.com (partial) + + ruleset + + name + Bucket Explorer.com (partial) + rule + + + from + ^http://(?:www\.)?bucketexplorer\.com/favicon\.ico + to + https://d1davc07w1ubq9.cloudfront.net/favicon.ico + + + from + ^http://coppermine\.bucketexplorer\.com/ + to + https://s3.amazonaws.com/coppermine.bucketexplorer.com/ + + + from + ^http://images\.bucketexplorer\.com/ + to + https://d1davc07w1ubq9.cloudfront.net/ + + + target + + + host + bucketexplorer.com + + + host + *.bucketexplorer.com + + + + + BucketListly.com (partial) + + ruleset + + name + BucketListly.com (partial) + rule + + from + ^http://(?:www\.)?bucketlistly\.com/(?=favicon\.ico|users/new(?:$|[?/])) + to + https://www.bucketlistly.com/ + + target + + + host + bucketlistly.com + + + host + www.bucketlistly.com + + + + + Bucknell University (partial) + + ruleset + + name + Bucknell University (partial) + rule + + from + ^http://(www\.)?bucknell\.edu/ + to + https://$1bucknell.edu/ + + securecookie + + host + ^(?:www\.)?bucknell\.edu$ + name + .+ + + target + + + host + bucknell.edu + + + host + www.bucknell.edu + + + + + Buckyballs + + ruleset + + name + Buckyballs + rule + + from + ^http://(?:www\.)?getbuckyballs\.com/ + to + https://www.getbuckyballs.com/ + + target + + + host + getbuckyballs.com + + + host + www.getbuckyballs.com + + + + + Bucyrus Telegraph Forum + + ruleset + + name + Bucyrus Telegraph Forum + rule + + from + ^https?://(?:cmsimg\.|www\.)?bucyrustelegraphforum\.com/ + to + https://www.bucyrustelegraphforum.com/ + + securecookie + + host + ^www\.bucyrustelegraphforum\.com$ + name + .+ + + target + + + host + bucyrustelegraphforum.com + + + host + *.bucyrustelegraphforum.com + + + + + BuddyCube.com + + ruleset + + name + BuddyCube.com + rule + + from + ^http://(www\.)?buddycube\.com/ + to + https://$1buddycube.com/ + + securecookie + + host + ^(?:www\.)?buddycube\.com$ + name + .+ + + target + + + host + buddycube.com + + + host + www.buddycube.com + + + + + BuddyPress.org + + ruleset + + name + BuddyPress.org + rule + + from + ^http://(\w+\.)?buddypress\.org/ + to + https://$1buddypress.org/ + + target + + + host + buddypress.org + + + host + *.buddypress.org + + + + + Budget Insurance + + ruleset + + name + Budget Insurance + rule + + + from + ^https?://(?:www\.)?budgetinsurance\.com/ + to + https://www.budgetinsurance.com/ + + + from + ^http://secure\.budgetinsurance\.com/ + to + https://secure.budgetinsurance.com/ + + + securecookie + + host + ^.+\.budgetinsurance\.com$ + name + .+ + + target + + + host + budgetinsurance.com + + + host + *.budgetinsurance.com + + + host + *.www.budgetinsurance.com + + + + + Budgetgolf.se + + ruleset + + name + Budgetgolf.se + rule + + + from + ^http://www\.budgetgolf\.se/ + to + https://www.budgetgolf.se/ + + + from + ^http://budgetgolf\.se/ + to + https://www.budgetgolf.se/ + + + target + + + host + www.budgetgolf.se + + + host + budgetgolf.se + + + + + Buds Gun Shop + + ruleset + + name + Buds Gun Shop + rule + + from + ^http://(www\.)?budsgunshop\.com/ + to + https://$1budsgunshop.com/ + + securecookie + + host + ^\.budsgunshop\.com$ + name + .+ + + target + + + host + budsgunshop.com + + + host + *.budsgunshop.com + + + + + Buffalo State College (partial) + + ruleset + + name + Buffalo State College (partial) + rule + + + from + ^http://((?:bscintra|bsclib01|catalog|chngpwd|giving|newsandevents|owa|president|sharepoint|www|wwwprod)\.)?buffalostate\.edu/ + to + https://$1buffalostate.edu/ + + + from + ^https?://email\.buffalostate\.edu/(?:.*) + to + https://owa.buffalostate.edu/owa/ + + + securecookie + + host + ^.+\.buffalostate\.edu$ + name + .+ + + target + + + host + buffalostate.edu + + + host + *.buffalostate.edu + + + host + *.giving.buffalostate.edu + + + host + *.newsandevents.buffalostate.edu + + + + + Buffer (partial) + + ruleset + + name + Buffer (partial) + rule + + from + ^http://((?:api|blog|cibot|growth|happiness|open|overflow|static|widgets|www)\.)?bufferapp\.com/ + to + https://$1bufferapp.com/ + + securecookie + + host + ^(?:(?:cibot|happiness|widgets|www)\.)?bufferapp\.com$ + name + .+ + + target + + + host + bufferapp.com + + + host + *.bufferapp.com + + + + + Bufferbloat + + ruleset + + name + Bufferbloat + rule + + from + ^http://(lists\.|www\.)?bufferbloat\.net/ + to + https://$1bufferbloat.net/ + + securecookie + + host + ^www\.bufferbloat\.net$ + name + .* + + target + + + host + bufferbloat.net + + + host + *.bufferbloat.net + + + + + BugMeNot.com + + ruleset + + name + BugMeNot.com + rule + + from + ^http://(www\.)?bugmenot\.com/ + to + https://$1bugmenot.com/ + + securecookie + + host + ^\.?bugmenot\.com$ + name + .+ + + target + + + host + bugmenot.com + + + host + *.bugmenot.com + + + + + Bugzilla (partial) + + ruleset + + name + Bugzilla (partial) + rule + + from + ^http://l(andfill|ists)\.bugzilla\.org/ + to + https://l$1.bugzilla.org/ + + target + + host + *.bugzilla.org + + + + BulbMan + + ruleset + + name + BulbMan + rule + + from + ^http://(?:www\.)?bulbman\.com/ + to + https://www.bulbman.com/ + + target + + + host + bulbman.com + + + host + www.bulbman.com + + + + + BulkSMS + + ruleset + + name + BulkSMS + rule + + from + ^http://(?:www\.)?bulksms\.co\.uk/ + to + https://www.bulksms.co.uk/ + + securecookie + + host + ^(.+\.)?bulksms\.co\.uk$ + name + .* + + target + + + host + bulksms.co.uk + + + host + www.bulksms.co.uk + + + + + Bulletin Messenger.net + + ruleset + + name + Bulletin Messenger.net + rule + + + from + ^http://(?:www\.)?bulletinmessenger\.net/ + to + https://www.bulletinmessenger.net/ + + + from + ^http://m\.bulletinmessenger\.net/ + to + https://m.bulletinmessenger.net/ + + + securecookie + + host + ^m\.bulletinmessenger\.net$ + name + .+ + + target + + + host + bulletinmessenger.net + + + host + *.bulletinmessenger.net + + + + + Bulletin.net + + ruleset + + name + Bulletin.net + rule + + from + ^http://(www\.)?bulletin\.net/ + to + https://$1bulletin.net/ + + securecookie + + host + ^(?:www)?\.bulletin\.net$ + name + .+ + + target + + + host + bulletin.net + + + host + *.bulletin.net + + + + + Bulletproof Exec.com (partial) + + ruleset + + name + Bulletproof Exec.com (partial) + rule + + + from + ^http://(www\.)?bulletproofexec\.com/(?!/*(?:$|\?)|(?:category/podcasts|contact|have-dave-asprey-speak-at-your-next-event|upgraded-whey)(?:$|[?/])) + to + https://$1bulletproofexec.com/ + + + from + ^http://support\.bulletproofexec\.com/favicon\.ico + to + https://bulletproofexec.zendesk.com/favicon.ico + + + target + + + host + bulletproofexec.com + + + host + www.bulletproofexec.com + + + + + Bullguard + + ruleset + + name + Bullguard + rule + + + from + ^http://www\.bullguard\.com/ + to + https://www.bullguard.com/ + + + from + ^http://bullguard\.com/ + to + https://www.bullguard.com/ + + + target + + + host + bullguard.com + + + host + www.bullguard.com + + + + + Bullock Inc.com + + ruleset + + name + Bullock Inc.com + rule + + from + ^http://(www\.)?bullockinc\.com/ + to + https://$1bullockinc.com/ + + securecookie + + host + ^(?:www\.)?bullockinc\.com$ + name + .+ + + target + + + host + bullockinc.com + + + host + www.bullockinc.com + + + + + Bunchball (partial) + + ruleset + + name + Bunchball (partial) + rule + + from + ^http://(www\.)?bunchball\.net/ + to + https://$1bunchball.net/ + + target + + + host + bunchball.net + + + host + www.bunchball.net + + + + + Bundanon Trust + + ruleset + + name + Bundanon Trust + rule + + from + ^http://(?:www\.)?bundanon\.com\.au/ + to + https://www.bundanon.com.au/ + + target + + + host + bundanon.com.au + + + host + *.bundanon.com.au + + + + + Bundesamt für Verfassungsschutz + + ruleset + + name + Bundesamt für Verfassungsschutz + rule + + + from + ^https?://verfassungsschutz\.de/ + to + https://www.verfassungsschutz.de/ + + + from + ^http://([^/:@]+)?\.verfassungsschutz\.de/ + to + https://$1.verfassungsschutz.de/ + + + target + + + host + verfassungsschutz.de + + + host + www.verfassungsschutz.de + + + + + Bundeskanzlerin + + ruleset + + name + Bundeskanzlerin + rule + + + from + ^https?://bundeskanzlerin\.de/ + to + https://www.bundeskanzlerin.de/ + + + from + ^http://([^/:@]+)?\.bundeskanzlerin\.de/ + to + https://$1.bundeskanzlerin.de/ + + + target + + + host + bundeskanzlerin.de + + + host + *.bundeskanzlerin.de + + + + + Bundesministerium des Innern + + ruleset + + name + Bundesministerium des Innern + rule + + + from + ^https?://bmi\.bund\.de/ + to + https://www.bmi.bund.de/ + + + from + ^http://([^/:@]+)?\.bmi\.bund\.de/ + to + https://$1.bmi.bund.de/ + + + target + + + host + bmi.bund.de + + + host + www.bmi.bund.de + + + + + Bundesnachrichtendienst + + ruleset + + name + Bundesnachrichtendienst + rule + + + from + ^https?://bnd\.bund\.de/ + to + https://www.bnd.bund.de/ + + + from + ^http://([^/:@]+)?\.bnd\.bund\.de/ + to + https://$1.bnd.bund.de/ + + + target + + + host + bnd.bund.de + + + host + www.bnd.bund.de + + + + + Bundesnetzagentur + + ruleset + + name + Bundesnetzagentur + rule + + from + ^http://(?:www\.)?bundesnetzagentur\.de/ + to + https://www.bundesnetzagentur.de/ + + securecookie + + host + ^www\.bundesnetzagentur\.de$ + name + .* + + target + + + host + bundesnetzagentur.de + + + host + www.bundesnetzagentur.de + + + + + Bundespolizei + + ruleset + + name + Bundespolizei + rule + + + from + ^https?://bundespolizei\.de/ + to + https://www.bundespolizei.de/ + + + from + ^http://([^/:@]+)?\.bundespolizei\.de/ + to + https://$1.bundespolizei.de/ + + + target + + + host + bundespolizei.de + + + host + *.bundespolizei.de + + + + + Bundesverfassungsgericht + + ruleset + + name + Bundesverfassungsgericht + rule + + + from + ^http://(www\.)?bundesverfassungsgericht\.de/ + to + https://www.bundesverfassungsgericht.de/ + + + from + ^http://(www\.)?bverfg\.de/ + to + https://www.bundesverfassungsgericht.de/ + + + target + + + host + www.bundesverfassungsgericht.de + + + host + bundesverfassungsgericht.de + + + host + www.bverfg.de + + + host + bverfg.de + + + + + Bungie + + ruleset + + name + Bungie + rule + + from + ^http://(?:www\.)?bungie\.net/ + to + https://www.bungie.net/ + + target + + + host + www.bungie.net + + + host + bungie.net + + + + + Bunkus.org + + ruleset + + name + Bunkus.org + platform + mixedcontent + rule + + from + ^http://(trac\.|www\.)?bunkus\.org/ + to + https://$1bunkus.org/ + + securecookie + + host + ^(?:trac\.)?bunkus\.org$ + name + .+ + + target + + + host + bunkus.org + + + host + *.bunkus.org + + + + + Bupa + + ruleset + + name + Bupa + rule + + from + ^http://(?:www\.)?bupa\.com/ + to + https://www.bupa.com/ + + securecookie + + host + ^www\.bupa\.com$ + name + .+ + + target + + + host + bupa.com + + + host + www.bupa.com + + + + + Bureau of Infrastructure, Transport and Regional Economics + + ruleset + + name + Bureau of Infrastructure, Transport and Regional Economics + rule + + from + ^http://(?:www\.)?bitre\.gov\.au/ + to + https://www.bitre.gov.au/ + + target + + + host + bitre.gov.au + + + host + *.bitre.gov.au + + + + + Burlington Free Press + + ruleset + + name + Burlington Free Press + rule + + from + ^https?://(?:cmsimg\.|www\.)?burlingtonfreepress\.com/ + to + https://www.burlingtonfreepress.com/ + + securecookie + + host + ^www\.burlingtonfreepress\.com$ + name + .+ + + target + + + host + burlingtonfreepress.com + + + host + *.burlingtonfreepress.com + + + + + Burning Shed + + ruleset + + name + Burning Shed + rule + + from + ^http://(www\.)?burningshed\.co(m|(\.uk))/ + to + https://$1burningshed.co$2/ + + securecookie + + host + ^(www\.)?burningshed\.co(m|(\.uk))$ + name + .+ + + target + + + host + burningshed.co.uk + + + host + www.burningshed.co.uk + + + host + burningshed.com + + + host + www.burningshed.com + + + + + Burst Media + + ruleset + + name + Burst Media + rule + + from + ^http://(?:www\.)?burstmedia\.co(\.uk|m)/ + to + https://www.burstmedia.co$1/ + + securecookie + + host + ^(?:www)?\.burstmedia\.co(?:\.uk|m)$ + name + .+ + + target + + + host + burstmedia.co.uk + + + host + www.burstmedia.co.uk + + + host + burstmedia.com + + + host + *.burstmedia.com + + + + + BurstNET (partial) + + ruleset + + name + BurstNET (partial) + platform + mixedcontent + rule + + + from + ^http://(service\.|support\.|www\.)?burst\.net/ + to + https://$1burst.net/ + + + from + ^http://(service\.|www\.)?burstnet\.eu/ + to + https://$1burstnet.eu/ + + + securecookie + + host + ^.+\.burst(?:\.net|net\.eu)$ + name + .+ + + target + + + host + burst.net + + + host + *.burst.net + + + host + burstnet.eu + + + host + *.burstnet.eu + + + + + Burstnet + + ruleset + + name + Burstnet + rule + + from + ^http://www\.burstnet\.com/ + to + https://www.burstnet.com/ + + securecookie + + host + ^\.burstnet\.com$ + name + ^BI\d+$ + + target + + host + *.burstnet.com + + + + Burt (partial) + + ruleset + + name + Burt (partial) + rule + + from + ^https?://measure.richmetrics.com/ + to + https://d3q6px0y2suh5n.cloudfront.net/ + + target + + host + measure.richmetrics.com + + + + Burt hub.com + + ruleset + + name + Burt hub.com + rule + + from + ^http://(help\.|www\.)?burthub\.com/ + to + https://$1burthub.com/ + + securecookie + + host + ^\.burthub\.com$ + name + .+ + + target + + + host + burthub.com + + + host + *.burthub.com + + + + + Burt.io (partial) + + ruleset + + name + Burt.io (partial) + rule + + from + ^http://m\.burt\.io/ + to + https://m.burt.io/ + + target + + host + m.burt.io + + + + Business 2 Community (partial) + + ruleset + + name + Business 2 Community (partial) + rule + + from + ^http://cdn\d?\.business2community\.com/ + to + https://a413375ddb981b128589-d09eee90a0d59eeeae019b649aa3ca91.ssl.cf2.rackcdn.com/ + + target + + host + *.business2community.com + + + + Business Catalyst.com (partial) + + ruleset + + name + Business Catalyst.com (partial) + rule + + from + ^http://musecdn2\.businesscatalyst\.com/ + to + https://d35mridaos0l3l.cloudfront.net/ + + target + + host + musecdn2.businesscatalyst.com + + + + BusinessAU + + ruleset + + name + BusinessAU + rule + + + from + ^http://(?:www\.)?abr\.business\.gov\.au/ + to + https://abr.business.gov.au/ + + + from + ^http://(?:www\.)?ablis\.business\.gov\.au/ + to + https://ablis.business.gov.au/ + + + target + + + host + business.gov.au + + + host + *.business.gov.au + + + + + BusinessInsider (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?businessinsider\.com/(?!account|assets/|favicon\.ico|login|register) + + + pattern + ^http://au\.businessinsider\.com/(?!image/) + + + name + BusinessInsider (partial) + rule + + + from + ^http://((?:au|insider|oascentral|static\d?|static-ssl|www)\.)?businessinsider\.com/ + to + https://$1businessinsider.com/ + + + from + ^http://jobs\.businessinsider\.com/c/ + to + https://businessinsider.jobamatic.com/c/ + + + securecookie + + + host + ^\.businessinsider\.com$ + name + ^OAX$ + + + host + ^oascentral\.businessinsider\.com$ + name + .+ + + + target + + + host + businessinsider.com + + + host + *.businessinsider.com + + + + + BusinessWeek.com (partial) + + ruleset + + name + BusinessWeek.com (partial) + rule + + from + ^http://bx\.businessweek\.com/ + to + https://bx.businessweek.com/ + + target + + host + bx.businessweek.com + + + + Bussgods.se + + ruleset + + name + Bussgods.se + rule + + from + ^http://(www\.)?bussgods\.se/ + to + https://www.bussgods.se/ + + target + + + host + bussgods.se + + + host + www.bussgods.se + + + + + Butterfly Labs.com (partial) + + ruleset + + name + Butterfly Labs.com (partial) + rule + + from + ^http://(forum|product)s\.butterflylabs\.com/ + to + https://$1s.butterflylabs.com/ + + securecookie + + host + ^(?:forum|product)s\.butterflylabs\.com$ + name + .+ + + target + + host + *.butterflylabs.com + + + + Buy Premium Tech (partial) + + ruleset + + name + Buy Premium Tech (partial) + rule + + from + ^http://secure\.buypremiumtech\.net/ + to + https://secure.buypremiumtech.net/ + + securecookie + + host + ^secure\.buypremiumtech\.net$ + name + .* + + target + + host + secure.buypremiumtech.net + + + + Buy Veteran (partial) + + ruleset + + name + Buy Veteran (partial) + rule + + from + ^http://(www\.)?buyveteran\.com/([aA]bout\.aspx|[aA]pp_[tT]hemes/|BuyVeteran\.ico|[gG]ift|[iI]mages/|Join_Step1\.aspx|[pP]artner|[pP]ress|[sS]tore|[tT]estimonials\.aspx) + to + https://$1buyveteran.com/$2 + + target + + + host + buyveteran.com + + + host + www.buyveteran.com + + + + + BuyBoard (partial) + + ruleset + + exclusion + + pattern + ^http://vendor\. + + name + BuyBoard (partial) + rule + + from + ^http://(\w+\.)?buyboard\.com/ + to + https://$1buyboard.com/ + + securecookie + + host + ^.*\.buyboard\.com$ + name + .* + + target + + + host + buyboard.com + + + host + *.buyboard.com + + + + + BuySellAds (partial) + + ruleset + + name + BuySellAds (partial) + rule + + + from + ^http://(www\.)?buysellads\.com/(favicon\.ico|images/|stuff/|users(?:$|\?|/)) + to + https://$1buysellads.com/$2 + + + from + ^http://s3\.buysellads\.com/ + to + https://s3.buysellads.com/ + + + target + + + host + buysellads.com + + + host + *.buysellads.com + + + + + Buycraft.net + + ruleset + + name + Buycraft.net + rule + + from + ^http://(server\.|www\.)?buycraft\.net/ + to + https://$1buycraft.net/ + + securecookie + + host + ^(?:server\.|www\.|\.)?buycraft\.net$ + name + .+ + + target + + + host + buycraft.net + + + host + *.buycraft.net + + + + + Buzillions.com (partial) + + ruleset + + name + Buzillions.com (partial) + rule + + from + ^http://(cdn|images)\.buzzillions\.com/ + to + https://a248.e.akamai.net/f/1890/3723/7/$1.buzzillions.com/ + + target + + host + *.buzzillions.com + + + + Buzz VPN + + ruleset + + name + Buzz VPN + rule + + from + ^http://(www\.)?buzzvpn\.com/ + to + https://$1buzzvpn.com/ + + target + + + host + buzzvpn.com + + + host + www.buzzvpn.com + + + + + Buzzbytes.net + + ruleset + + name + Buzzbytes.net + rule + + from + ^http://(buzzworthy\.|www\.)?buzzbytes\.net/ + to + https://$1buzzbytes.net/ + + securecookie + + host + ^\.buzzbytes\.net$ + name + .+ + + target + + + host + buzzbytes.net + + + host + *.buzzbytes.net + + + + + Buzzdock (partial) + + ruleset + + name + Buzzdock (partial) + rule + + + from + ^https?://(?:www\.)?buzzdock\.com/ + to + https://www.buzzdock.com/ + + + from + ^http://edge\.buzzdock\.com/ + to + https://edge.buzzdock.com/ + + + target + + + host + buzzdock.com + + + host + *.buzzdock.com + + + + + Buzzhosting.org + + ruleset + + name + Buzzhosting.org + rule + + from + ^http://(?:www\.)?buzzhosting\.org/ + to + https://www.buzzhosting.org/ + + target + + + host + buzzhosting.org + + + host + www.buzzhosting.org + + + + + Buzzurl + + ruleset + + name + Buzzurl + rule + + + from + ^https?://(?:api\.|cdn\.)?buzzurl.jp/ + to + https://buzzurl.jp/ + + + from + ^https?://buzzurl\.jp\.eimg\.jp/ + to + https://buzzurl.jp/ + + + securecookie + + host + ^\.?buzzurl\.jp$ + name + .+ + + target + + + host + buzzurl.jp + + + host + *.buzzurl.jp + + + host + buzzurl.jp.eimg.jp + + + + + By Cupón + + ruleset + + name + By Cupón + rule + + from + ^http://(www\.)?bycupon\.com/ + to + https://$1bycupon.com/ + + securecookie + + host + (?:w*\.)?bycupon\.com$ + name + .+ + + target + + + host + bycupon.com + + + host + *.bycupon.com + + + + + Byteark.com (partial) + + ruleset + + name + Byteark.com (partial) + rule + + from + ^http://(\w+\.(?:cdn|s3)|s3)\.byteark\.com/ + to + https://$1.byteark.com/ + + target + + host + *.byteark.com + + + + Bytemark.co.uk (partial) + + ruleset + + name + Bytemark.co.uk (partial) + rule + + + from + ^http://(www\.)?bytemark\.co\.uk/ + to + https://www.bytemark.co.uk/ + + + from + ^http://(blog|forum|order20\d\d|panel|panel-beta)\.bytemark\.co\.uk/ + to + https://$1.bytemark.co.uk/ + + + securecookie + + host + .+\.bytemark\.co\.uk$ + name + .+ + + target + + + host + bytemark.co.uk + + + host + *.bytemark.co.uk + + + + + Börse Frankfurt + + ruleset + + name + Börse Frankfurt + rule + + + from + ^https?://boerse-frankfurt\.de/ + to + https://www.boerse-frankfurt.de/ + + + from + ^http://([^/:@]+)?\.boerse-frankfurt\.de/ + to + https://$1.boerse-frankfurt.de/ + + + target + + + host + boerse-frankfurt.de + + + host + www.boerse-frankfurt.de + + + + + Bürger-CERT + + ruleset + + name + Bürger-CERT + rule + + + from + ^https?://buerger-cert\.de/ + to + https://www.buerger-cert.de/ + + + from + ^http://([^/:@]+)?\.buerger-cert\.de/ + to + https://$1.buerger-cert.de/ + + + securecookie + + host + ^(.*\.)?buerger-cert\.de$ + name + .+ + + target + + + host + buerger-cert.de + + + host + *.buerger-cert.de + + + + + C-Base + + ruleset + + name + C-Base + platform + cacert mixedcontent + rule + + + from + ^http://(?:www\.)?c-base\.org/ + to + https://www.c-base.org/ + + + from + ^http://(logbuch|wiki)\.c-base\.org/ + to + https://$1.c-base.org/ + + + target + + + host + www.c-base.org + + + host + c-base.org + + + host + logbuch.c-base.org + + + host + wiki.c-base.org + + + + + C-SPAN Video.org (false MCB) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?c-spanvideo\.org/(?:favicon\.ico|videoLibrary/(?:ajax/|assets/|drawMathQuestion\.php)) + + name + C-SPAN Video.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?c-spanvideo\.org/ + to + https://www.c-spanvideo.org/ + + securecookie + + host + ^www\.c-spanvideo\.org$ + name + .+ + + target + + + host + c-spanvideo.org + + + host + www.c-spanvideo.org + + + + + C-SPAN Video.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?c-spanvideo\.org/(?!favicon\.ico|videoLibrary/(?:ajax/|assets/|drawMathQuestion\.php)) + + name + C-SPAN Video.org (partial) + rule + + + from + ^http://(?:www\.)?c-spanvideo\.org/ + to + https://www.c-spanvideo.org/ + + + from + ^http://images\.c-spanvideo\.org/ + to + https://d1k1xzqsosjdry.cloudfront.net/ + + + from + ^http://static\.c-spanvideo\.org/ + to + https://d29dpj283v14nc.cloudfront.net/ + + + target + + + host + c-spanvideo.org + + + host + *.c-spanvideo.org + + + + + C3S.cc + + ruleset + + name + C3S.cc + rule + + from + ^http://(archive\.|www\.)?c3s\.cc/ + to + https://$1c3s.cc/ + + target + + + host + c3s.cc + + + host + *.c3s.cc + + + + + C3tag.com + + ruleset + + name + C3tag.com + rule + + from + ^http://(www\.)?c3tag\.com/ + to + https://$1c3tag.com/ + + securecookie + + host + ^(?:www\.)?c3tag\.com$ + name + .+ + + target + + + host + c3tag.com + + + host + www.c3tag.com + + + + + CA Security Council + + ruleset + + name + CA Security Council + rule + + from + ^http://(www\.)?casecurity\.org/ + to + https://$1casecurity.org/ + + target + + + host + casecurity.org + + + host + www.casecurity.org + + + + + CA Technologies + + ruleset + + name + CA Technologies + rule + + from + ^http://cloudmonitor\.nimsoft\.com/ + to + https://cloudmonitor.nimsoft.com/ + + target + + host + cloudmonitor.nimsoft.com + + + + CA-PCR.fr + + ruleset + + name + CA-PCR.fr + rule + + from + ^http://(?:www\.)?ca-pca\.fr/ + to + https://www.ca-pca.fr/ + + target + + + host + www.ca-pca.fr + + + host + ca-pca.fr + + + + + CA-mpr.jp + + ruleset + + name + CA-mpr.jp + rule + + from + ^http://ot\.ca-mpr\.jp/ + to + https://ot.ca-mpr.jp/ + + target + + host + ot.ca-mpr.jp + + + + CA/Browser Forum + + ruleset + + name + CA/Browser Forum + rule + + from + ^http://(www\.)?cabforum\.org/ + to + https://$1cabforum.org/ + + target + + + host + cabforum.org + + + host + www.cabforum.org + + + + + CACert.org (CAcert) + + ruleset + + exclusion + + + pattern + \.crt + + + pattern + \.crl + + + pattern + ocsp\. + + + pattern + ^http://cats\.cacert\.org/ + + + name + CACert.org (CAcert) + platform + cacert + rule + + + from + ^http://cacert\.org/ + to + https://www.cacert.org/ + + + from + ^http://([^/:@\.]+)\.cacert\.org/ + to + https://$1.cacert.org/ + + + target + + + host + cacert.org + + + host + *.cacert.org + + + + + CADSI + + ruleset + + name + CADSI + rule + + from + ^http://(www\.)?defenceandsecurity\.ca/ + to + https://$1defenceandsecurity.ca/ + + securecookie + + host + ^(?:www\.)?defenceandsecurity\.ca$ + name + .+ + + target + + + host + defenceandsecurity.ca + + + host + www.defenceandsecurity.ca + + + + + CAGW.org (partial) + + ruleset + + name + CAGW.org (partial) + rule + + from + ^http://secure\.cagw\.org/ + to + https://secure.cagw.org/ + + securecookie + + host + ^\.?secure\.cagw\.org$ + name + .+ + + target + + host + *.cagw.org + + + + CAIR.com (partial) + + ruleset + + name + CAIR.com (partial) + rule + + from + ^http://(www\.)?cair\.com/ + to + https://$1cair.com/ + + securecookie + + host + ^(?:w*\.)?cair\.com$ + name + .+ + + target + + + host + cair.com + + + host + *.cair.com + + + + + CANNEX + + ruleset + + name + CANNEX + rule + + from + ^https?://(?:www\.)?cannex\.com/ + to + https://www.cannex.com/ + + target + + + host + cannex.com + + + host + www.cannex.com + + + + + CAREpackage (partial) + + ruleset + + name + CAREpackage (partial) + rule + + + from + ^http://(?:www\.)?carepackage\.org/(careajax|sites)/ + to + https://www.carepackage.org/$1/ + + + from + ^http://stage\.carepackage\.org/sites/ + to + https://stage.carepackage.org/sites/ + + + target + + + host + carepackage.org + + + host + *.carepackage.org + + + + + CARI.net (partial) + + ruleset + + name + CARI.net (partial) + rule + + from + ^http://(chat\.|www\.)?cari\.net/ + to + https://$1cari.net/ + + securecookie + + host + ^(.*\.)?cari\.net$ + name + .* + + target + + + host + cari.net + + + host + *.cari.net + + + + + CBC Blueprint + + ruleset + + name + CBC Blueprint + rule + + from + ^http://(?:www\.)?cbcblueprint\.com/ + to + https://www.cbcblueprint.com/ + + securecookie + + host + ^www\.cbcblueprint\.com$ + name + .+ + + target + + + host + cbcblueprint.com + + + host + www.cbcblueprint.com + + + + + CBP.net.br + + ruleset + + name + CBP.net.br + rule + + from + ^http://(www\.)?cbp\.net\.br/ + to + https://$1cbp.net.br/ + + target + + + host + cbp.net.br + + + host + www.cbp.net.br + + + + + CBS (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?cbs\.com/(?!assets/|base/files/|Common/|favicon\.ico|thumbnails/|user(?:$|\?|/)) + + name + CBS (partial) + rule + + + from + ^http://(www\.)?cbs\.com/user/?(?:\?.*)?$ + to + https://$1cbs.com/user/settings/ + + + from + ^http://(fileupload\.intl\.|www\.)?cbs\.com/ + to + https://$1cbs.com/ + + + from + ^http://wwwimage\.cbs\.com/ + to + https://www.cbs.com/ + + + from + ^http://markets\.cbsnews\.com/$ + to + https://markets.financialcontent.com/cbsnews + + + from + ^http://markets\.cbsnews\.com/ + to + https://markets.financialcontent.com/ + + + from + ^http://www(?:image)?\.cbsstatic\.com/ + to + https://www.cbs.com/ + + + from + ^http://om\.cnet\.com\.au/ + to + https://zdau-cnet.122.2o7.net/ + + + from + ^http://dw\.com\.com/ + to + https://dw.com.com/ + + + target + + + host + cbs.com + + + host + *.cbs.com + + + host + *.cbsnews.com + + + host + *.cbsstatic.com + + + host + om.cnet.com.au + + + host + dw.com.com + + + + + CBS Store + + ruleset + + name + CBS Store + rule + + from + ^http://(?:secure\.|www\.)?cbsstore\.com/ + to + https://secure.cbsstore.com/ + + securecookie + + host + ^\.cbsstore\.com$ + name + .+ + + target + + + host + cbsstore.com + + + host + *.cbsstore.com + + + + + CBSI.com (partial) + + ruleset + + name + CBSI.com (partial) + rule + + from + ^http://dw\.cbsi\.com/ + to + https://dw.cbsi.com/ + + securecookie + + host + ^dw\.cbsi\.com$ + name + .+ + + target + + host + dw.cbsi.com + + + + CBSIstatic.com (partial) + + ruleset + + name + CBSIstatic.com (partial) + rule + + from + ^http://tr(1|2)\.cbsistatic\.com/(?!fly/) + to + https://a248.e.akamai.net/=/1531/5129/6/tr$1.cbsistatic.com/ + + target + + host + *.cbsistatic.com + + + + CCAvenue + + ruleset + + name + CCAvenue + rule + + + from + ^https?://(?:www\.)?ccavenue\.com/ + to + https://www.ccavenue.com/ + + + from + ^http://(mars|world)\.ccavenue\.com/ + to + https://$1.ccavenue.com/ + + + securecookie + + host + ^.+\.ccavenue\.com$ + name + .+ + + target + + + host + ccavenue.com + + + host + *.ccavenue.com + + + + + CCC cloud.com + + ruleset + + name + CCC cloud.com + rule + + from + ^http://((?:istore|login|monitor|onlinestore|store|www)\.)?ccccloud\.com/ + to + https://$1ccccloud.com/ + + securecookie + + host + ^(?:.*\.)?ccccloud\.com$ + name + .+ + + target + + + host + ccccloud.com + + + host + *.ccccloud.com + + + + + CCC.co.il + + ruleset + + name + CCC.co.il + rule + + from + ^http://(www\.)?ccc\.co\.il/ + to + https://$1ccc.co.il/ + + securecookie + + host + ^\.ccc\.co\.il$ + name + .+ + + target + + + host + ccc.co.il + + + host + *.ccc.co.il + + + + + CCCure.com + + ruleset + + name + CCCure.com + rule + + from + ^http://(www\.)?cccure\.com/ + to + https://$1cccure.com/ + + target + + + host + cccure.com + + + host + www.cccure.com + + + + + CCCure.org + + ruleset + + name + CCCure.org + rule + + from + ^http://(www\.)?cccure\.org/ + to + https://$1cccure.org/ + + target + + + host + cccure.org + + + host + www.cccure.org + + + + + CCCure.training (false MCB) + + ruleset + + name + CCCure.training (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?cccure\.training/ + to + https://$1cccure.training/ + + target + + + host + cccure.training + + + host + www.cccure.training + + + + + CCCure.training (partial) + + ruleset + + name + CCCure.training (partial) + rule + + from + ^http://(www\.)?cccure\.training/(?=banners/|gzip_loader\.php|media/|modules/|templates/) + to + https://$1cccure.training/ + + target + + + host + cccure.training + + + host + www.cccure.training + + + + + CCDCoE + + ruleset + + name + CCDCoE + rule + + from + ^http://(www\.)?ccdcoe\.org/ + to + https://$1ccdcoe.org/ + + target + + + host + ccdcoe.org + + + host + www.ccdcoe.org + + + + + CCH + + ruleset + + name + CCH + rule + + + from + ^http://(www\.)?cch\.com/ + to + https://$1cch.com/ + + + from + ^http://(?:www\.)?support\.cch\.com/ + to + https://support.cch.com/ + + + from + ^http://(?:www\.)?cchgroup\.com/ + to + https://www.cchgroup.com/ + + + from + ^http://(?:www\.)?tax\.cchgroup\.com/ + to + https://tax.cchgroup.com/ + + + from + ^http://(stage\.)?prosystemfxsupport\.tax\.cchgroup\.com/ + to + https://$1prosystemfxsupport.tax.cchgroup.com/ + + + securecookie + + host + .*\.cch(?:group)?\.com$ + name + .+ + + target + + + host + cch.com + + + host + *.cch.com + + + host + cchgroup.com + + + host + *.cchgroup.com + + + + + CCH Information Solutions + + ruleset + + name + CCH Information Solutions + rule + + from + ^http://(www\.)?cchcatalog\.com/ + to + https://$1cchcatalog.com/ + + securecookie + + host + ^(?:w*\.)?cchcatalog\.com$ + name + .+ + + target + + + host + cchcatalog.com + + + host + *.cchcatalog.com + + + + + CCIA + + ruleset + + name + CCIA + rule + + from + ^http://(www\.)?ccianet\.org/ + to + https://$1ccianet.org/ + + securecookie + + host + ^(?:www\.)?ccianet\.org$ + name + .+ + + target + + + host + ccianet.org + + + host + www.ccianet.org + + + + + CCS (partial) + + ruleset + + name + CCS (partial) + rule + + + from + ^https?://(?:www\.)?ccs\.com/ + to + https://www.ccs.com/ + + + from + ^https?://ebm\.e\.ccs\.com/ + to + https://ebm.cheetahmail.com/ + + + from + ^https?://f\.e\.ccs\.com/ + to + https://f.chtah.com/ + + + from + ^http://(images|m|shop)\.ccs\.com/ + to + https://$1.ccs.com/ + + + securecookie + + host + ^.*\.ccs\.com$ + name + .+ + + target + + + host + ccs.com + + + host + *.ccs.com + + + host + *.e.ccs.com + + + host + *.shop.ccs.com + + + + + CD Universe (partial) + + ruleset + + exclusion + + + pattern + ^http://g\.cduniverse\.com/Default\.asp + + + pattern + ^http://www\.cduniverse\.com/(?!checkout/(?:account|allorderdisp|changepassword|orderstatus)\.asp|favicon\.ico|FooterIFrame\.asp|footer/footermusic\.html|help/contact\.asp|(?:\w+/)?images/|login\.asp|partner/(?:menu|partner)form\.asp|stylesheet\.css|wishlist\.asp) + + + name + CD Universe (partial) + rule + + + from + ^http://(g\.|www\.)?cduniverse\.com/ + to + https://$1cduniverse.com/ + + + from + ^http://c3\.cduniverse\.ws/ + to + https://c3.cduniverse.ws/ + + + from + ^http://i\.cduniverse\.ws/ + to + https://www.cduniverse.com/ + + + securecookie + + host + ^g\.cduniverse\.com$ + name + .+ + + target + + + host + cduniverse.com + + + host + *.cduniverse.com + + + host + *.cduniverse.ws + + + + + CDN Instagram.com + + ruleset + + name + CDN Instagram.com + rule + + from + ^http://scontent-(a|b)\.cdninstagram\.com/ + to + https://scontent-$1.cdninstagram.com/ + + target + + host + *.cdninstagram.com + + + + CDN-Seeking Alpha.com + + ruleset + + name + CDN-Seeking Alpha.com + rule + + from + ^http://static([1-3])?\.cdn-seekingalpha\.com/ + to + https://a248.e.akamai.net/f/248/1/1/static$1.cdn-seekingalpha.com/ + + target + + host + *.cdn-seekingalpha.com + + + + CDN77.com (partial) + + ruleset + + name + CDN77.com (partial) + rule + + + from + ^http://client\.cdn77\.com/ + to + https://client.cdn77.com/ + + + from + ^http://([\w-]+)\.r\.worldssl\.net/ + to + https://$1.r.worldssl.net/ + + + target + + + host + client.cdn77.com + + + host + *.r.worldssl.net + + + + + CDNetworks (partial) + + ruleset + + name + CDNetworks (partial) + rule + + + from + ^http://ssl(2)?\.cdngc\.net/ + to + https://ssl$1.cdngc.net/ + + + from + ^http://cdnetworks\.co\.jp/$ + to + https://www.cdnetworks.co.jp/ + + + from + ^http://pantherportal\.cdnetworks\.com/ + to + https://pantherportal.cdnetworks.com/ + + + from + ^http://([\w-]+)\.sslcs\.cdngc\.net/ + to + https://$1.sslcs.cdngc.net/ + + + from + ^http://(www\.)?pantherexpress\.net/ + to + https://$1pantherexpress.net/ + + + from + ^http://([\w\-]+)\.pantherssl\.com/ + to + https://$1.pantherssl.com/ + + + securecookie + + host + ^pantherportal\.cdnetworks\.com$ + name + .* + + target + + + host + ssl.cdngc.net + + + host + ssl2.cdngc.net + + + host + pantherportal.cdnetworks.com + + + host + cdnetworks.co.jp + + + host + *.sslcs.cdngc.net + + + host + pantherexpress.net + + + host + www.pantherexpress.net + + + host + *.pantherssl.com + + + + + CDON.COM + + ruleset + + name + CDON.COM + platform + mixedcontent + rule + + + from + ^http://(?:www)?cdon\.(dk|eu|fi|no|se)/ + to + https://cdon.$1/ + + + from + ^http://s\.cdon\.com/ + to + https://s.cdon.com/ + + + securecookie + + host + ^cdon\.(?:dk|eu|fi|no|se)$ + name + .+ + + target + + + host + cdon.dk + + + host + www.cdon.dk + + + host + cdon.eu + + + host + www.cdon.eu + + + host + cdon.fi + + + host + www.cdon.fi + + + host + cdon.no + + + host + www.cdon.no + + + host + cdon.se + + + host + www.cdon.se + + + host + s.cdon.com + + + + + CDS Global (partial) + + ruleset + + name + CDS Global (partial) + rule + + + from + ^http://w1\.buysub\.com/ + to + https://w1.buysub.com/ + + + from + ^https?://mycdsglobal\.com/ + to + https://www.mycdsglobal.com// + + + from + ^http://(sso|www)\.mycdsglobal\.com/ + to + https://$1.mycdsglobal.com/ + + + securecookie + + + host + ^w1\.buysub\.com$ + name + .* + + + host + ^(sso)?\.mycdsglobal\.com$ + name + .* + + + target + + + host + w1.buysub.com + + + host + mycdsglobal.com + + + host + *.mycdsglobal.com + + + + + CDW and CDW-G + + ruleset + + name + CDW and CDW-G + rule + + from + ^http://(?:www\.)?cdw(g)?\.com/ + to + https://www.cdw$1.com/ + + target + + + host + www.cdwg.com + + + host + www.cdw.com + + + host + cdwg.com + + + host + cdw.com + + + + + CERIT-SC.cz + + ruleset + + name + CERIT-SC.cz + rule + + from + ^http://(docs\.|www\.)?cerit-sc\.cz/ + to + https://$1cerit-sc.cz/ + + target + + + host + cerit-sc.cz + + + host + *.cerit-sc.cz + + + + + CERIT.cz + + ruleset + + name + CERIT.cz + rule + + from + ^http://(prototyp\.|www\.)?cerit\.cz/ + to + https://$1cerit.cz/ + + target + + + host + cerit.cz + + + host + *.cerit.cz + + + + + CERN (partial) + + ruleset + + exclusion + + pattern + ^http://linux\.web\.cern\.ch/(?!.+(?:css|jpg|png)$|linux/layout/) + + name + CERN (partial) + rule + + + from + ^http://((?:association|bulletin|cds|cdsmedia|cdsweb|edms|ert|espace|indico|login|mtf|savannah|(?:(?:ab-dep-op-elogbook|atlas|committees|education|egee-uig|environmental-impact|framework|hie-isolde|hr-dept|hr-info|hr-recruit|indico|isolde(?:-project-rilis)?|job|linux|oraweb|outreach|press|project-voisins|public|service-portal|simba3|user|webservices)\.)?web|www)\.)?cern\.ch/ + to + https://$1cern.ch/ + + + from + ^https?://listboxservices\.web\.cern\.ch/listboxservices/simba2/ + to + https://simba3.web.cern.ch/simba3/simba2/ + + + downgrade + 1 + from + ^https://home\.web\.cern\.ch/ + to + http://home.web.cern.ch/ + + + securecookie + + host + .*\.cern\.ch$ + name + .+ + + target + + + host + cern.ch + + + host + *.cern.ch + + + + + CERT + + ruleset + + name + CERT + rule + + from + ^http://((?:forms|www\.kb|(?:www\.)?securecoding|www)\.)?cert\.org/ + to + https://$1cert.org/ + + securecookie + + host + ^(?:.+\.)?cert\.org$ + name + .+ + + target + + + host + cert.org + + + host + *.cert.org + + + + + CERT Polska + + ruleset + + name + CERT Polska + rule + + from + ^http://(www\.)?cert\.pl/ + to + https://$1cert.pl/ + + securecookie + + host + ^(.*\.)?cert\.pl$ + name + .* + + target + + + host + cert.pl + + + host + *.cert.pl + + + host + *.www.cert.pl + + + + + CERT-Bund + + ruleset + + name + CERT-Bund + rule + + + from + ^https?://cert-bund\.de/ + to + https://www.cert-bund.de/ + + + from + ^http://([^/:@]+)?\.cert-bund\.de/ + to + https://$1.cert-bund.de/ + + + securecookie + + host + ^(.*\.)?cert-bund\.de$ + name + .+ + + target + + + host + cert-bund.de + + + host + *.cert-bund.de + + + + + CERT-UK + + ruleset + + name + CERT-UK + rule + + + from + ^https?://cert\.gov\.uk/ + to + https://www.cert.gov.uk/ + + + from + ^http://([^/:@]+)?\.cert\.gov\.uk/ + to + https://$1.cert.gov.uk/ + + + securecookie + + host + ^(.*\.)?cert\.gov\.uk$ + name + .+ + + target + + + host + cert.gov.uk + + + host + *.cert.gov.uk + + + + + CERT-Verbund + + ruleset + + name + CERT-Verbund + rule + + + from + ^https?://cert-verbund\.de/ + to + https://www.cert-verbund.de/ + + + from + ^http://([^/:@]+)?\.cert-verbund\.de/ + to + https://$1.cert-verbund.de/ + + + securecookie + + host + ^(.*\.)?cert-verbund\.de$ + name + .+ + + target + + + host + cert-verbund.de + + + host + *.cert-verbund.de + + + + + CERT.at + + ruleset + + name + CERT.at + rule + + + from + ^https?://cert\.at/ + to + https://www.cert.at/ + + + from + ^http://([^/:@]+)?\.cert\.at/ + to + https://$1.cert.at/ + + + securecookie + + host + ^(.*\.)?cert\.at$ + name + .+ + + target + + + host + cert.at + + + host + *.cert.at + + + + + CERT.fi + + ruleset + + name + CERT.fi + rule + + from + ^http://(?:www\.)?cert\.fi/ + to + https://www.cert.fi/ + + securecookie + + host + ^www\.cert\.fi$ + name + .+ + + target + + + host + cert.fi + + + host + www.cert.fi + + + + + CERT.se + + ruleset + + name + CERT.se + rule + + + from + ^http://www\.cert\.se/ + to + https://www.cert.se/ + + + from + ^http://cert\.se/ + to + https://www.cert.se/ + + + target + + + host + www.cert.se + + + host + cert.se + + + + + CESG + + ruleset + + name + CESG + rule + + + from + ^https?://cesg\.gov\.uk/ + to + https://www.cesg.gov.uk/ + + + from + ^http://([^/:@]+)?\.cesg\.gov\.uk/ + to + https://$1.cesg.gov.uk/ + + + target + + + host + cesg.gov.uk + + + host + www.cesg.gov.uk + + + + + CESNET (partial) + + ruleset + + name + CESNET (partial) + rule + + from + ^http://(csirt|registration|whoami)\.cesnet\.cz/ + to + https://$1.cesnet.cz/ + + securecookie + + host + ^whoami\.cesnet\.cz$ + name + .+ + + target + + host + *.cesnet.cz + + + + CEX.IO (partial) + + ruleset + + name + CEX.IO (partial) + rule + + from + ^http://((?:exchange|mining|support|trade|ws|www)\.)?cex\.io/ + to + https://$1cex.io/ + + securecookie + + host + ^\.cex\.io$ + name + .+ + + target + + + host + cex.io + + + host + *.cex.io + + + + + CEntrance (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?centrance\.com/store/cart\.php(?!\?target=(?:cart&action=(?:add|delete)|profile)) + + name + CEntrance (partial) + rule + + from + ^http://(www\.)?centrance\.com/ + to + https://$1centrance.com/ + + target + + + host + centrance.com + + + host + www.centrance.com + + + + + CFEngine + + ruleset + + name + CFEngine + rule + + from + ^http://(?:www\.)?cfengine\.com/ + to + https://cfengine.com/ + + securecookie + + host + ^(?:www\.)?cfengine\.com$ + name + .+ + + target + + + host + cfengine.com + + + host + www.cfengine.com + + + + + CHIP Online (partial) + + ruleset + + name + CHIP Online (partial) + rule + + from + ^https?://omniture\.chip\.eu/ + to + https://chipxonioonlinegmbh.d1.sc.omtrdc.net/ + + target + + host + omniture.chip.eu + + + + CHIP-Digital.de + + ruleset + + name + CHIP-Digital.de + rule + + from + ^http://(?:www\.)?chip-digital\.de/ + to + https://www.chip-digital.de/ + + securecookie + + host + ^www\.chip-digital\.de$ + name + .+ + + target + + + host + chip-digital.de + + + host + www.chip-digital.de + + + + + CHIP-Kiosk.de + + ruleset + + name + CHIP-Kiosk.de + rule + + + from + ^http://(?:www\.)?chip-app\.de/+(?:$|\?.*) + to + https://www.chip-kiosk.de/chip#chip-tablet-edition + + + from + ^http://(?:www\.)?chip-kiosk\.de/ + to + https://www.chip-kiosk.de/ + + + securecookie + + host + ^\.www\.chip-kiosk\.de$ + name + .+ + + target + + + host + chip-app.de + + + host + www.chip-app.de + + + host + chip-kiosk.de + + + host + *.chip-kiosk.de + + + + + CHL.it + + ruleset + + name + CHL.it + platform + mixedcontent + rule + + from + ^http://(www\.)?chl\.it/ + to + https://www.chl.it/ + + target + + + host + www.chl.it + + + host + chl.it + + + + + CIA Cybersurf + + ruleset + + name + CIA Cybersurf + rule + + from + ^http://([^/:@\.]+)\.cia\.com/ + to + https://$1.cia.com/ + + target + + + host + cia.com + + + host + *.cia.com + + + + + CIBC + + ruleset + + name + CIBC + rule + + from + ^http://([^/:@\.]+)\.cibc\.com/ + to + https://$1.cibc.com/ + + target + + + host + cibc.com + + + host + *.cibc.com + + + + + CIO.com (partial) + + ruleset + + name + CIO.com (partial) + rule + + + from + ^http://council\.cio\.com/ + to + https://council.cio.com/ + + + from + ^http://itjobs\.cio\.com/c/ + to + https://computerworld.jobamatic.com/c/ + + + target + + host + *.cio.com + + + + CIO.com.au + + ruleset + + name + CIO.com.au + platform + mixedcontent + rule + + from + ^http://(?:www\.)?cio\.com\.au/ + to + https://www.cio.com.au/ + + target + + + host + cio.com.au + + + host + www.cio.com.au + + + + + CIR Online.org (partial) + + ruleset + + exclusion + + pattern + ^http://cironline\.org/+(?!sites/) + + name + CIR Online.org (partial) + rule + + from + ^http://(beta\.|www\.)?cironline\.org/ + to + https://$1cironline.org/ + + target + + + host + cironline.org + + + host + *.cironline.org + + + + + CIRT.net + + ruleset + + name + CIRT.net + rule + + from + ^http://(www\.)?cirt\.net/ + to + https://$1cirt.net/ + + target + + + host + cirt.net + + + host + www.cirt.net + + + + + CISOfy.com (partial) + + ruleset + + name + CISOfy.com (partial) + rule + + + from + ^http://cisofy\.com/(?!/*(?:$|\?)) + to + https://cisofy.com/ + + + from + ^http://www\.cisofy\.com/.* + to + https://cisofy.com/ + + + target + + + host + cisofy.com + + + host + www.cisofy.com + + + + + CJS-CDKeys.com + + ruleset + + name + CJS-CDKeys.com + rule + + from + ^http://(www\.)?cjs-cdkeys\.com/ + to + https://$1cjs-cdkeys.com/ + + securecookie + + host + ^\.cjs-cdkeys\.com$ + name + .+ + + target + + + host + cjs-cdkeys.com + + + host + *.cjs-cdkeys.com + + + + + CKEditor.com (partial) + + ruleset + + name + CKEditor.com (partial) + rule + + from + ^http://s1\.ckeditor\.com/ + to + https://d3j1vh5wu7c1yu.cloudfront.net/ + + target + + host + s1.ckeditor.com + + + + CLAS Consultants + + ruleset + + name + CLAS Consultants + rule + + + from + ^https?://clasconsultants\.net/ + to + https://www.clasconsultants.net/ + + + from + ^http://([^/:@]+)?\.clasconsultants\.net/ + to + https://$1.clasconsultants.net/ + + + securecookie + + host + ^(.*\.)?clasconsultants\.net$ + name + .+ + + target + + + host + clasconsultants.net + + + host + *.clasconsultants.net + + + + + CLTglobal.com + + ruleset + + name + CLTglobal.com + rule + + from + ^http://(www\.)?cltglobal\.com/ + to + https://$1cltglobal.com/ + + securecookie + + host + ^\.cltglobal\.com$ + name + .+ + + target + + + host + cltglobal.com + + + host + *.cltglobal.com + + + + + CM Dev.com + + ruleset + + name + CM Dev.com + rule + + from + ^http://(www\.)?cmdev\.com/ + to + https://$1cmdev.com/ + + target + + + host + cmdev.com + + + host + www.cmdev.com + + + + + CMGdigital.com + + ruleset + + name + CMGdigital.com + rule + + from + ^http://media\.cmgdigital\.com/ + to + https://a248.e.akamai.net/f/1726/3609/1m/media.cmgdigital.com/ + + target + + host + media.cmgdigital.com + + + + CMP + + ruleset + + name + CMP + rule + + + from + ^http://(?:cookies|i)\.cmpnet\.com/ + to + https://i.cmpnet.com/ + + + from + ^http://(?:www\.)?cmpadministration\.com/ + to + https://www.cmpadministration.com/ + + + securecookie + + host + ^www\.cmpadministration\.com$ + name + .* + + target + + + host + *.cmpnet.com + + + host + cmpadministration.com + + + host + www.cmpadministration.com + + + + + CMPXCHG8B + + ruleset + + name + CMPXCHG8B + rule + + from + ^http://(lock\.|www\.)?cmpxchg8b\.com/ + to + https://lock.cmpxchg8b.com/ + + target + + + host + cmpxchg8b.com + + + host + *.cmpxchg8b.com + + + + + CMSWire + + ruleset + + name + CMSWire + platform + mixedcontent + rule + + from + ^http://(www\.)?cmswire\.com/ + to + https://www.cmswire.com/ + + target + + + host + www.cmswire.com + + + host + cmswire.com + + + + + CNBC (mixed content) + + ruleset + + name + CNBC (mixed content) + platform + mixedcontent + rule + + from + ^http://data\.cnbc\.com/ + to + https://data.cnbc.com/ + + target + + host + data.cnbc.com + + + + CNBC (partial) + + ruleset + + name + CNBC (partial) + rule + + from + ^http://((?:fm|login|pro|register|www)\.)?cnbc\.com/ + to + https://$1cnbc.com/ + + securecookie + + host + ^(?:login|pro|register|www)\.cnbc\.com$ + name + .+ + + target + + + host + cnbc.com + + + host + *.cnbc.com + + + + + CNET content.com + + ruleset + + name + CNET content.com + rule + + from + ^http://ws\.cnetcontent\.com/ + to + https://ws.cnetcontent.com/ + + securecookie + + host + ^ws\.cnetcontent\.com$ + name + .+ + + target + + host + ws.cnetcontent.com + + + + CNN.com (partial) + + ruleset + + name + CNN.com (partial) + rule + + + from + ^http://(audience|(?:markets|portfolio)\.money)\.cnn\.com/ + to + https://$1.cnn.com/ + + + from + ^http://jobsearch\.money\.cnn\.com/(c/|favicon\.ico) + to + https://cnnmoney.jobamatic.com/$1 + + + securecookie + + host + ^(?:audience|markets\.money)\.cnn\.com$ + name + .+ + + target + + host + *.cnn.com + + + + COLLADA + + ruleset + + name + COLLADA + rule + + from + ^http://(?:www\.)?collada\.org/ + to + https://collada.org/ + + securecookie + + host + ^collada\.org$ + name + .+ + + target + + + host + collada.org + + + host + www.collada.org + + + + + COLLEGEclubLIFE.com + + ruleset + + name + COLLEGEclubLIFE.com + rule + + from + ^http://(www\.)?collegeclublife\.com/ + to + https://$1collegeclublife.com/ + + securecookie + + host + ^(?:.*\.)?collegeclublife\.com$ + name + .+ + + target + + + host + collegeclublife.com + + + host + *.collegeclublife.com + + + + + COMNAP.aq + + ruleset + + name + COMNAP.aq + rule + + from + ^http://(www\.)?comnap\.aq/ + to + https://$1comnap.aq/ + + target + + + host + comnap.aq + + + host + www.comnap.aq + + + + + CONVAR (partial) + + ruleset + + exclusion + + pattern + ^http://(jas|repairservice|sam)\.convar\.com/ + + name + CONVAR (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?convar\.de/([\w\W]+) + to + https://$1convar.com/$2?language=2 + + + from + ^http://(shop\.|www\.)?convar\.com/ + to + https://$1convar.com/ + + + from + ^http://(www\.)?datenretter\.de/ + to + https://$1datenretter.de/ + + + from + ^http://(?:www\.)?tuv\.com/media/ + to + https://www.tuv.com/media/ + + + from + ^http://(?:www\.)?tuvdotcom\.com/ + to + https://www.tuvdotcom.com/ + + + securecookie + + + host + ^(.*\.)?(convar|tuvdotcom)\.com$ + name + .* + + + host + ^(.*\.)?datenretter\.de$ + name + .* + + + target + + + host + convar.com + + + host + *.convar.com + + + host + convar.de + + + host + *.convar.de + + + host + datenretter.de + + + host + *.datenretter.de + + + host + tuv.com + + + host + www.tuv.com + + + host + tuvdotcom.com + + + host + www.tuvdotcom.com + + + + + COSMOS magazine (partial) + + ruleset + + name + COSMOS magazine (partial) + rule + + from + ^https?://cdn\d\.cosmosmagazine\.com/ + to + https://d1dop0qewlixo7.cloudfront.net/ + + target + + host + *.cosmosmagazine.com + + + + COZmedics.com.au + + ruleset + + name + COZmedics.com.au + rule + + from + ^http://(www\.)?cozmedics\.com\.au/ + to + https://$1cozmedics.com.au/ + + target + + + host + cozmedics.com.au + + + host + www.cozmedics.com.au + + + + + CPJ + + ruleset + + name + CPJ + rule + + from + ^http://(www\.)?cpj\.org/ + to + https://$1cpj.org/ + + target + + + host + www.cpj.org + + + host + cpj.org + + + + + CPM Rocket.com (partial) + + ruleset + + name + CPM Rocket.com (partial) + rule + + from + ^http://adk2cdn\.cpmrocket\.com/ + to + https://d38cp5x90nxyo0.cloudfront.net/ + + target + + host + adk2cdn.cpmrocket.com + + + + CPMStar + + ruleset + + name + CPMStar + rule + + + from + ^http://(www\.)?(server\.)?cpmstar\.com/ + to + https://$1$2cpmstar.com/ + + + from + ^http://cdn\.cpmstar\.com/ + to + https://server.cpmstar.com/ + + + target + + + host + cpmstar.com + + + host + *.cpmstar.com + + + host + www.server.cpmstar.com + + + + + CPSC.gov + + ruleset + + name + CPSC.gov + platform + mixedcontent + rule + + from + ^http://(?:www\.)?cpsc\.gov/ + to + https://www.cpsc.gov/ + + securecookie + + + host + ^\.cpsc\.gov$ + name + ^ZNPCQ003-\d{8}$ + + + host + ^www\.cpsc\.gov$ + name + .+ + + + target + + + host + cpsc.gov + + + host + *.cpsc.gov + + + + + CPU Benchmark.net + + ruleset + + name + CPU Benchmark.net + rule + + from + ^http://(www\.)?cpubenchmark\.net/ + to + https://$1cpubenchmark.net/ + + securecookie + + host + ^(?:www\.)?cpubenchmark\.net$ + name + .+ + + target + + + host + cpubenchmark.net + + + host + www.cpubenchmark.net + + + + + CQ Roll Call (partial) + + ruleset + + name + CQ Roll Call (partial) + rule + + from + ^http://secure\.cqrollcall\.com/ + to + https://secure.cqrollcall.com/ + + securecookie + + host + ^secure\.cqrollcall\.com$ + name + .+ + + target + + host + secure.cqrollcall.com + + + + CREW (partial) + + ruleset + + name + CREW (partial) + rule + + from + ^http://(www\.)?secure\.citizensforethics\.org/ + to + https://$1secure.citizensforethics.org/ + + securecookie + + host + ^\.?secure\.citizensforethics\.org$ + name + .+ + + target + + host + *.citizensforethics.org + + + + CRM Metrix + + ruleset + + name + CRM Metrix + rule + + from + ^http://(?:www\.)?crm-metrix\.com/ + to + https://www.crm-metrix.com/ + + target + + + host + www.crm-metrix.com + + + host + crm-metrix.com + + + + + CRN + + ruleset + + name + CRN + platform + mixedcontent + rule + + + from + ^http://(i\.|signin\.|www\.)?crn\.com/ + to + https://$1crn.com/ + + + from + ^http://crn\.verticalsearchworks\.com/ + to + https://ad-secure.firstlightera.com/ + + + securecookie + + host + ^.*\.crn\.com$ + name + .+ + + target + + + host + crn.com + + + host + *.crn.com + + + host + crn.verticalsearchworks.com + + + + + CS-Cart + + ruleset + + name + CS-Cart + rule + + from + ^http://(www\.)?cs-cart\.com/ + to + https://$1cs-cart.com/ + + securecookie + + host + ^\.cs-cart\.com$ + name + .+ + + target + + + host + cs-cart.com + + + host + *.cs-cart.com + + + + + CSBA Academy.com (partial) + + ruleset + + name + CSBA Academy.com (partial) + rule + + + from + ^http://(www\.)?csbaacademy\.com/(?=login\.php|_scripts/) + to + https://$1csbaacademy.com/ + + + from + ^http://(www\.)?csbaacademy\.com/login/?(?=$|\?) + to + https://$1csbaacademy.com/login.php + + + from + ^http://(www\.)?csbaacademy\.com/register\.php(?=$|\?) + to + https://$1csbaacademy.com/register/ + + + target + + + host + csbaacademy.com + + + host + www.csbaacademy.com + + + + + CSC (partial) + + ruleset + + exclusion + + pattern + ^http://(?:staging\.|www\.)?csc\.com/(?!favicon\.ico|images/|stylesheets/) + + name + CSC (partial) + rule + + + from + ^http://(?:www\.)?csc\.com/ + to + https://www.csc.com/ + + + from + ^http://(assets[1-4]|qa|staging)\.csc\.com/ + to + https://$1.csc.com/ + + + from + ^http://assetsdev1\.csc\.com/ + to + https://s3.amazonaws.com/assetsdev1.csc.com/ + + + from + ^http://assetsdev2\.csc\.com/ + to + https://d22z1n4koknpni.cloudfront.net/ + + + from + ^http://assetsdev3\.csc\.com/ + to + https://d2vblp5odpf1nm.cloudfront.net/ + + + from + ^http://assetsdev4\.csc\.com/ + to + https://dkoz0rlg89gph.cloudfront.net/ + + + target + + + host + csc.com + + + host + *.csc.com + + + + + CSC Visa Information Service + + ruleset + + name + CSC Visa Information Service + rule + + from + ^http://(www\.)?usvisa-info\.com/ + to + https://$1usvisa-info.com/ + + securecookie + + host + ^(.*\.)usvisa-info.com$ + name + .* + + target + + + host + usvisa-info.com + + + host + *.usvisa-info.com + + + + + CSCtrustedsecure.com + + ruleset + + name + CSCtrustedsecure.com + rule + + from + ^http://(www\.)?csctrustedsecure\.com/ + to + https://$1csctrustedsecure.com/ + + target + + + host + csctrustedsecure.com + + + host + www.csctrustedsecure.com + + + + + CSIRO (partial) + + ruleset + + name + CSIRO (partial) + rule + + + from + ^http://(?:www\.)?atnf\.csiro\.au/ + to + https://www.atnf.csiro.au/ + + + from + ^http://(?:www\.)?outreach\.atnf\.csiro\.au/ + to + https://outreach.atnf.csiro.au/ + + + target + + + host + csiro.au + + + host + *.csiro.au + + + + + CSIRT.CZ + + ruleset + + name + CSIRT.CZ + rule + + from + ^http://(www\.)?csirt\.cz/ + to + https://$1csirt.cz/ + + target + + + host + csirt.cz + + + host + www.csirt.cz + + + + + CSIS.dk + + ruleset + + name + CSIS.dk + rule + + from + ^http://(tdg\.|www\.)?csis\.dk/ + to + https://$1csis.dk/ + + securecookie + + host + ^\.csis\.dk$ + name + .* + + target + + + host + csis.dk + + + host + *.csis.dk + + + + + CSIS.org + + ruleset + + name + CSIS.org + rule + + from + ^http://(?:(my\.)|www\.)?csis\.org/ + to + https://$1csis.org/ + + target + + + host + csis.org + + + host + *.csis.org + + + + + CSP Forum.eu + + ruleset + + name + CSP Forum.eu + rule + + from + ^http://(?:www\.)?cspforum\.eu/ + to + https://www.cspforum.eu/ + + securecookie + + host + ^\.www\.cspforum\.eu$ + name + .+ + + target + + + host + cspforum.eu + + + host + *.cspforum.eu + + + + + CSPInet.org + + ruleset + + name + CSPInet.org + rule + + from + ^http://(orders\.|www\.)?cspinet\.org/ + to + https://$1cspinet.org/ + + securecookie + + host + ^order\.cspinet\.org$ + name + .+ + + target + + + host + cspinet.org + + + host + *.cspinet.org + + + + + CSRSupport.com + + ruleset + + name + CSRSupport.com + rule + + + from + ^http://www\.csrsupport\.com/ + to + https://www.csrsupport.com/ + + + from + ^http://csrsupport\.com/ + to + https://www.csrsupport.com/ + + + target + + + host + www.csrsupport.com + + + host + csrsupport.com + + + + + CSdata1.com + + ruleset + + name + CSdata1.com + rule + + from + ^http://dsa\.csdata1\.com/ + to + https://dsa.csdata1.com/ + + target + + host + dsa.csdata1.com + + + + CTERA Networks + + ruleset + + name + CTERA Networks + platform + mixedcontent + rule + + from + ^http://(www\.)?ctera\.com/ + to + https://$1ctera.com/ + + securecookie + + host + ^(www\.)?ctera\.com$ + name + .* + + target + + + host + ctera.com + + + host + www.ctera.com + + + + + CTFtime.org + + ruleset + + name + CTFtime.org + rule + + from + ^http://(www\.)?ctftime\.org/ + to + https://$1ctftime.org/ + + target + + + host + ctftime.org + + + host + www.ctftime.org + + + + + CTS Wholesale Sunglasses + + ruleset + + name + CTS Wholesale Sunglasses + rule + + from + ^http://(www\.)?ctswholesalesunglasses\.com/ + to + https://$1ctswholesalesunglasses.com/ + + securecookie + + host + ^\.ctswholesalesunglasses.com$ + name + .+ + + target + + + host + ctswholesalesunglasses.com + + + host + *.ctswholesalesunglasses.com + + + + + CTunnel + + ruleset + + name + CTunnel + platform + mixedcontent + rule + + from + ^http://(?:www\.)?ctunnel\.com/ + to + https://ctunnel.com/ + + securecookie + + host + ^(.+\.)?ctunnel\.com$ + name + .* + + target + + + host + ctunnel.com + + + host + www.ctunnel.com + + + + + CUPS.org + + ruleset + + name + CUPS.org + rule + + from + ^http://(www\.)?cups\.org/ + to + https://$1cups.org/ + + target + + + host + cups.org + + + host + www.cups.org + + + + + CVI Melles Griot + + ruleset + + name + CVI Melles Griot + platform + mixedcontent + rule + + from + ^http://(?:www\.)?cvimellesgriot\.com/ + to + https://www.cvimellesgriot.com/ + + target + + + host + www.cvimellesgriot.com + + + host + cvimellesgriot.com + + + + + CWSPOD Music (partial) + + ruleset + + name + CWSPOD Music (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?cwspodmusic\.com/ + to + https://$1cwspodmusic.com/ + + securecookie + + host + ^\.cwspodmusic.com$ + name + .+ + + target + + + host + cwspodmusic.com + + + host + *.cwspodmusic.com + + + + + CYBERsitter + + ruleset + + name + CYBERsitter + rule + + from + ^http://(www\.)?cybersitter\.com/ + to + https://$1cybersitter.com/ + + securecookie + + host + ^(?:www\.)?cybersitter\.com$ + name + .+ + + target + + + host + cybersitter.com + + + host + www.cybersitter.com + + + + + CZ.NIC + + ruleset + + name + CZ.NIC + rule + + from + ^http://((?:www|labs|git|blog|knihy|(?:gitlab|jenkins)\.labs|lists|piwik|podpora)\.)?nic\.cz/ + to + https://$1nic.cz/ + + securecookie + + host + ^((?:www|labs|git|blog)?\.)?nic\.cz$ + name + .+ + + target + + + host + nic.cz + + + host + *.nic.cz + + + + + CZshare.com (partial) + + ruleset + + name + CZshare.com (partial) + rule + + from + ^http://(www\.)?czshare\.com/ + to + https://$1czshare.com/ + + securecookie + + host + ^czshare\.com$ + name + .+ + + target + + + host + czshare.com + + + host + www.czshare.com + + + + + Cabal WS (partial) + + ruleset + + name + Cabal WS (partial) + rule + + from + ^http://(www\.)?cabal\.ws/(addons|img|slider)/ + to + https://$1cabal.ws/$2/ + + target + + + host + cabal.ws + + + host + www.cabal.ws + + + + + Cabinet Office + + ruleset + + name + Cabinet Office + rule + + + from + ^https?://(?:update\.|www\.)?cabinet-?office\.gov\.uk/ + to + https://update.cabinetoffice.gov.uk/ + + + from + ^http://s-ff0102-4f9172bc8a1062097406d809-0\.yottaa\.net/ + to + https://s-ff0102-4f9172bc8a1062097406d809-0.yottaa.net/ + + + target + + + host + cabinetoffice.gov.uk + + + host + *.cabinetoffice.gov.uk + + + host + www.cabinet-office.gov.uk + + + host + s-ff0102-4f9172bc8a1062097406d809-0.yottaa.net + + + + + Cables.com + + ruleset + + name + Cables.com + rule + + from + ^http://(?:www\.)?cables\.com/ + to + https://www.cables.com/ + + securecookie + + host + ^(?:www)?\.cables\.com$ + name + .+ + + target + + + host + cables.com + + + host + *.cables.com + + + + + CaceTech + + ruleset + + name + CaceTech + rule + + from + ^http://(?:www\.)?cacetech\.com/ + to + https://www.cacetech.com/ + + target + + + host + www.cacetech.com + + + host + cacetech.com + + + + + CacheFly (partial) + + ruleset + + exclusion + + + pattern + ^https?://cachefly\.cachefly\.net/(?:speedtest/|.+\.test) + + + pattern + ^https?://topix\.cachefly\.net + + + name + CacheFly (partial) + rule + + + from + ^http://portal\.cachefly\.com/ + to + https://portal.cachefly.com/ + + + from + ^https?://(?:\d\.)?([^@:/\.]+)\.cachefly\.net/ + to + https://$1.cachefly.net/ + + + securecookie + + host + ^portal\.cachefly\.com$ + name + .+ + + target + + + host + portal.cachefly.com + + + host + *.cachefly.net + + + + + Cactus Complete Commerce (partial) + + ruleset + + name + Cactus Complete Commerce (partial) + rule + + from + ^http://app\.cactuscompletecommerce\.com/ + to + https://app.cactuscompletecommerce.com/ + + securecookie + + host + ^app\.cactuscompletecommerce\.com$ + name + .+ + + target + + host + app.cactuscompletecommerce.com + + + + CadSoft + + ruleset + + name + CadSoft + rule + + from + ^https?://(?:www\.)?cadsoft\.de/ + to + https://www.cadsoft.de/ + + securecookie + + host + ^\.?www\.cadsoft\.de$ + name + .* + + target + + + host + cadsoft.de + + + host + www.cadsoft.de + + + host + *.www.cadsoft.de + + + + + Cadence Design Systems (partial) + + ruleset + + name + Cadence Design Systems (partial) + rule + + from + ^https?://(?:www\.)?cadence\.com/(_layouts/|misc_pages/|pages/(?:login|registration)\.aspx|Pub/|rl/Resources/|usercontrols/) + to + https://www.cadence.com/$1 + + target + + + host + cadence.com + + + host + www.cadence.com + + + + + Cadetnet + + ruleset + + name + Cadetnet + rule + + from + ^http://(?:www\.)?cadetnet\.gov\.au/ + to + https://www.cadetnet.gov.au/ + + target + + + host + cadetnet.gov.au + + + host + *.cadetnet.gov.au + + + + + Cadw (partial) + + ruleset + + name + Cadw (partial) + rule + + from + ^http://cadw\.wales\.gov\.uk/cbin/ + to + https://cadw.wales.gov.uk/cbin/ + + target + + host + cadw.wales.gov.uk + + + + CafePress (partial) + + ruleset + + name + CafePress (partial) + rule + + + from + ^http://(?:www\.)?cafepress\.co(m|\.uk)/content/ + to + https://www.cafepress.co$1/content/ + + + from + ^http://(content|members)\.cafepress\.co(m|\.uk)/ + to + https://$1.cafepress.co$2/ + + + from + ^http://shop\.cafepress\.com/$ + to + https://shop.cafepress.com/ + + + from + ^http://help\.cafepress\.com/hc/ + to + https://server.iad.liveperson.net/hc/ + + + from + ^http://content\d?\.cpcache\.com/ + to + https://content.cafepress.com/ + + + from + ^https://server\.iad\.liveperson\.net/make/ + to + https://www.cafepress.com/make/ + + + target + + + host + cafepress.com + + + host + *.cafepress.com + + + host + cafepress.co.uk + + + host + *.cafepress.co.uk + + + host + *.cpcache.com + + + host + server.iad.liveperson.net + + + + + Cafemakers + + ruleset + + name + Cafemakers + rule + + from + ^http://(www\.)?cafemakers\.com/ + to + https://$1cafemakers.com/ + + securecookie + + host + ^\.cafemakers\.com$ + name + .+ + + target + + + host + cafemakers.com + + + host + www.cafemakers.com + + + + + CainTV (partial) + + ruleset + + name + CainTV (partial) + rule + + from + ^http://static\d?\.caintvnetwork\.com/ + to + https://d19kb9pin9tdml.cloudfront.net/ + + target + + host + *.caintvnetwork.com + + + + Caisse d'Epargne + + ruleset + + name + Caisse d'Epargne + rule + + from + ^http://(?:www\.)?caisse-epargne\.fr/ + to + https://www.caisse-epargne.fr/ + + target + + + host + www.caisse-epargne.fr + + + host + caisse-epargne.com + + + + + Cake Central.com (partial) + + ruleset + + name + Cake Central.com (partial) + rule + + from + ^http://cdn\.cakecentral\.com/ + to + https://d2r287735ijf1o.cloudfront.net/ + + target + + host + cdn.cakecentral.com + + + + Cal State.edu (partial) + + ruleset + + name + Cal State.edu (partial) + rule + + from + ^http://sdsu-dspace\.calstate\.edu/ + to + https://sdsu-dspace.calstate.edu/ + + target + + host + sdsu-dspace.calstate.edu + + + + Cal.net + + ruleset + + name + Cal.net + rule + + from + ^http://(?:www\.)?cal\.net/ + to + https://cal.net/ + + target + + + host + cal.net + + + host + www.cal.net + + + + + Calameo.com (partial) + + ruleset + + name + Calameo.com (partial) + rule + + from + ^http://v\.calameo\.com/ + to + https://v.calameo.com/ + + target + + host + v.calameo.com + + + + Calendario.cc + + ruleset + + name + Calendario.cc + rule + + from + ^http://(www\.)?calendario\.cc/ + to + https://$1calendario.cc/ + + target + + + host + calendario.cc + + + host + www.calendario.cc + + + + + Calendars.com (partial) + + ruleset + + name + Calendars.com (partial) + rule + + from + ^http://(www\.)?calendars\.com/(css/|img/|user) + to + https://$1calendars.com/$1 + + target + + + host + calendars.com + + + host + www.calendars.com + + + + + Calguns Foundation.org + + ruleset + + name + Calguns Foundation.org + rule + + from + ^http://(store\.|www\.)?calgunsfoundation\.org/ + to + https://$1calgunsfoundation.org/ + + securecookie + + host + ^(?:store\.|www\.)?calgunsfoundation\.org$ + name + .+ + + target + + + host + calgunsfoundation.org + + + host + *.calgunsfoundation.org + + + + + California Department of Justice + + ruleset + + name + California Department of Justice + rule + + from + ^http://(www\.)?oag\.ca\.gov/ + to + https://$1oag.ca.gov/ + + target + + + host + oag.ca.gov + + + host + www.oag.ca.gov + + + + + California Department of Motor Vehicles + + ruleset + + name + California Department of Motor Vehicles + rule + + from + ^https?://(?:www\.)?dmv\.ca\.gov/ + to + https://www.dmv.ca.gov/ + + target + + + host + dmv.ca.gov + + + host + www.dmv.ca.gov + + + + + California Franchise Tax Board + + ruleset + + name + California Franchise Tax Board + rule + + from + ^http://((stats|webapp|www)\.)?ftb\.ca\.gov/ + to + https://$1ftb.ca.gov/ + + securecookie + + host + ^((stats|webapp|www)\.)?ftb\.ca\.gov$ + name + .+ + + target + + + host + ftb.ca.gov + + + host + stats.ftb.ca.gov + + + host + webapp.ftb.ca.gov + + + host + www.ftb.ca.gov + + + + + California Legislative Information + + ruleset + + name + California Legislative Information + rule + + from + ^http://leginfo\.legislature\.ca\.gov/ + to + https://leginfo.legislature.ca.gov/ + + securecookie + + host + ^leginfo\.legislature\.ca\.gov$ + name + .+ + + target + + host + leginfo.legislature.ca.gov + + + + California Polytechnic State University (partial) + + ruleset + + exclusion + + pattern + ^http://[\w-]+\.wcms\.calpoly\.edu/(?!sites/) + + name + California Polytechnic State University (partial) + rule + + + from + ^http://(?:www\.)?(academic-personnel|aged|alumni|careerservices|drupal|hcs|housing(?:-test)?|ipa|polycard|polydata|registrar|servicedesk|soe|studentaffairs)\.calpoly\.edu/sites/ + to + https://$1.wcms.calpoly.edu/sites/ + + + from + ^http://(webresource\.its|(?:www\.)?lib|hagrid\.libart|myportal|[\w-]+\.wcms|xerxes)\.calpoly\.edu/ + to + https://$1.calpoly.edu/ + + + from + ^http://(?:www\.)?(my|wireless)\.calpoly\.edu/ + to + https://$1.calpoly.edu/ + + + securecookie + + host + ^(?:my|myportal|xerxes)\.calpoly\.edu$ + name + .+ + + target + + host + *.calpoly.edu + + + + California Polytechnic State University, Ponoma (partial) + + ruleset + + name + California Polytechnic State University, Ponoma (partial) + rule + + + from + ^http://(autodiscover|bbcollab|blackboard|broncodirect\.cms|ehousing|exchange|ehelp\.wiki|www)\.csupomona\.edu/ + to + https://$1.csupomona.edu/ + + + from + ^http://(?:www\.)?dsa\.csupomona\.edu/ + to + https://dsa.csupomona.edu/ + + + securecookie + + host + ^(?:bbcollab|blackboard|broncodirect\.cms|dsa|housing|ehelp\.wiki)\.csupomona\.edu$ + name + .+ + + target + + host + *.csupomona.edu + + + + California STD/HIV Prevention Training Center (partial) + + ruleset + + name + California STD/HIV Prevention Training Center (partial) + rule + + from + ^((http://(?:www\.)?)|https://)stdhivtraining\.org/ + to + https://www.stdhivtraining.org/ + + target + + + host + stdhivtraining.org + + + host + www.stdhivtraining.org + + + + + California State Board of Equalization + + ruleset + + name + California State Board of Equalization + rule + + + from + ^(http://(www\.)?|https://)boe\.ca\.gov/ + to + https://www.boe.ca.gov/ + + + from + ^http://efile\.boe\.ca\.gov/ + to + https://efile.boe.ca.gov/ + + + securecookie + + host + ^(efile|www)\.boe\.ca\.gov$ + name + .+ + + target + + + host + boe.ca.gov + + + host + efile.boe.ca.gov + + + host + www.boe.ca.gov + + + + + California State University (partial) + + ruleset + + name + California State University (partial) + rule + + from + ^http://(?:www2?\.)?csulb\.edu/ + to + https://www.csulb.edu/ + + securecookie + + host + ^(.*\.)?csulb\.edu$ + name + .* + + target + + + host + csulb.edu + + + host + *.csulb.edu + + + + + California United Bank + + ruleset + + name + California United Bank + rule + + + from + ^http://(www\.)?c(aliforniaunitedbank|unb)\.com/ + to + https://$1c$2.com/ + + + from + ^http://(?:www\.)?pcboc\.com/ + to + https://pcboc.com/ + + + securecookie + + host + ^(?:w*\.)?(?:californiaunitedbank|cunb|pcboc)\.com$ + name + .+ + + target + + + host + californiaunitedbank.com + + + host + *.californiaunitedbank.com + + + host + cunb.com + + + host + *.cunb.com + + + host + pcboc.com + + + host + *.pcboc.com + + + + + California Walk In Tub Company.com + + ruleset + + name + California Walk In Tub Company.com + rule + + from + ^http://(www\.)?californiawalkintubcompany\.com/ + to + https://$1californiawalkintubcompany.com/ + + securecookie + + host + ^(?:\.|www\.)?californiawalkintubcompany\.com$ + name + .+ + + target + + + host + californiawalkintubcompany.com + + + host + *.californiawalkintubcompany.com + + + + + Calispora + + ruleset + + name + Calispora + rule + + from + ^http://(www\.)?calispora\.org/ + to + https://calispora.org/ + + target + + + host + calispora.org + + + host + www.calispora.org + + + + + Caller.com (partial) + + ruleset + + name + Caller.com (partial) + rule + + + from + ^http://(?:www\.)?caller\.com/ + to + https://www.caller.com/ + + + from + ^http://jobs\.caller\.com/.* + to + https://www.caller.com/hotjobs + + + from + ^http://login\.caller\.com/ + to + https://login.caller.com/ + + + from + ^http://media\.caller\.com/ + to + https://a248.e.akamai.net/f/1263/6469/4m/media.caller.com/ + + + from + ^http://web\.caller\.com/ + to + https://a248.e.akamai.net/f/1672/4197/3m/web.caller.com/ + + + securecookie + + host + ^(?:login)?\.caller\.com$ + name + .+ + + target + + + host + caller.com + + + host + *.caller.com + + + + + Calligra.org + + ruleset + + name + Calligra.org + rule + + from + ^http://(www\.)?calligra(-suite)?\.org/ + to + https://$1calligra$2.org/ + + target + + + host + calligra.org + + + host + www.calligra.org + + + host + calligra-suite.org + + + host + www.calligra-suite.org + + + + + Calomel.org + + ruleset + + name + Calomel.org + rule + + from + ^http://(www\.)?calomel\.org/ + to + https://$1calomel.org/ + + target + + + host + calomel.org + + + host + www.calomel.org + + + + + Caltech + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?gps\.caltech\.edu/(?!pics/|stylesheets/|uploads/) + + name + Caltech + rule + + + from + ^http://(?:www\.)?caltech\.edu/ + to + https://www.caltech.edu/ + + + from + ^https?://imss-test-storage\.ads\.caltech\.edu\.s3\.amazonaws.com/ + to + https://s3-us-west-1.amazonaws.com/imss-test-storage.ads.caltech.edu/ + + + from + ^https?://www-prod-storage\.cloud\.caltech\.edu\.s3\.amazonaws\.com/ + to + https://s3-us-west-1.amazonaws.com/www-prod-storage.cloud.caltech.edu/ + + + from + ^http://(?:www\.)?access\.caltech\.edu/ + to + https://access.caltech.edu/ + + + from + ^http://(odb\.acs|mail\.alumni|www\.cco|(?:www\.)?imss|insecure|(?:irsa|koa|ned)\.ipac|(?:utils\.|www\.)?its|pcard|scriptor|techne1|x-tmt-web1\.tmt|tqfr|web|webmail|webvpn)\.caltech\.edu/ + to + https://$1.caltech.edu/ + + + from + ^http://business-query\.caltech\.edu:8181/ + to + https://business-query.caltech.edu:8181/ + + + from + ^https?://imss-website-storage\.cloud\.caltech\.edu/ + to + https://s3-us-west-1.amazonaws.com/imss-website-storage.cloud.caltech.edu/ + + + from + ^http://(?:courses|moodle)\.caltech\.edu/ + to + https://courses.caltech.edu/ + + + from + ^http://(?:www\.)?gps\.caltech\.edu/ + to + https://www.gps.caltech.edu/ + + + from + ^http://nassau\.caltech\.edu:4444/ + to + https://nassau.caltech.edu:4444/ + + + securecookie + + host + ^.+\.caltech\.edu$ + name + .+ + + target + + + host + imss-test-storage.ads.caltech.edu.s3.amazonaws.com + + + host + www-prod-storage.cloud.caltech.edu.s3.amazonaws.com + + + host + caltech.edu + + + host + *.caltech.edu + + + + + Calvin College (partial) + + ruleset + + name + Calvin College (partial) + rule + + from + ^http://ulysses\.calvin\.edu/ + to + https://ulysses.calvin.edu/ + + securecookie + + host + ^ulysses\.calvin\.edu$ + name + .+ + + target + + host + ulysses.calvin.edu + + + + Calyx Institute + + ruleset + + name + Calyx Institute + rule + + from + ^http://(?:www\.)?calyxinstitute\.org/ + to + https://www.calyxinstitute.org/ + + securecookie + + host + ^(.*\.)?calyxinstitute\.org$ + name + .* + + target + + + host + calyxinstitute.org + + + host + *.calyxinstitute.org + + + + + Cambey & West (partial) + + ruleset + + name + Cambey & West (partial) + rule + + from + ^http://(www\.)?cambeywest\.com/ + to + https://$1cambeywest.com/ + + securecookie + + host + ^(www\.)?cambeywest\.com$ + name + .* + + target + + + host + cambeywest.com + + + host + www.cambeywest.com + + + + + Cambridge Journals + + ruleset + + name + Cambridge Journals + platform + mixedcontent + rule + + from + ^http://journals\.cambridge\.org/ + to + https://journals.cambridge.org/ + + securecookie + + host + ^journals\.cambridge\.org$ + name + .* + + target + + host + journals.cambridge.org + + + + Cambridge University Press (partial) + + ruleset + + name + Cambridge University Press (partial) + rule + + + from + ^https?://(?:www\.)?cambridge\.org/((?:generated|other)_files/|login(?:$|[/\?])) + to + https://www.cambridge.org/$1 + + + from + ^http://(assets|dictionary)\.cambridge\.org/ + to + https://$1.cambridge.org/ + + + securecookie + + host + ^(?:assets|dictionary)\.cambridge\.org$ + name + .* + + target + + + host + cambridge.org + + + host + *.cambridge.org + + + + + CamelHost.net (partial) + + ruleset + + name + CamelHost.net (partial) + rule + + from + ^http://billing\.camelhost\.net/ + to + https://billing.camelhost.net/ + + target + + host + billing.camelhost.net + + + + Camp Staff USA + + ruleset + + name + Camp Staff USA + rule + + + from + ^https?://(?:www\.)?campstaffusa.com/ + to + https://campstaffusa.com/ + + + from + ^http://(www\.)?jorsika\.com/ + to + https://$1jorsika.com/ + + + securecookie + + + host + ^\.campstaffusa\.com$ + name + .+ + + + host + ^\.?jorsika\.com$ + name + .+ + + + target + + + host + campstaffusa.com + + + host + *.campstaffusa.com + + + host + jorsika.com + + + host + *.jorsika.com + + + + + CampBX.com + + ruleset + + name + CampBX.com + rule + + from + ^http://(www\.)?campbx\.com/ + to + https://$1campbx.com/ + + securecookie + + host + ^\.campbx\.com$ + name + .+ + + target + + + host + campbx.com + + + host + *.campbx.com + + + + + Campact.de + + ruleset + + name + Campact.de + rule + + from + ^http://(www\.)?campact\.de/ + to + https://www.campact.de/ + + target + + + host + www.campact.de + + + host + campact.de + + + + + CampaignEQ.com + + ruleset + + name + CampaignEQ.com + rule + + + from + ^http://(www\.)?campaigneq\.com/ + to + https://$1campaigneq.com/ + + + from + ^http://(?:go|track)\.campaigneq\.com/ + to + https://track.campaigneq.com/ + + + securecookie + + host + ^(?:\.|www\.)?campaigneq\.com$ + name + .+ + + target + + + host + campaigneq.com + + + host + *.campaigneq.com + + + + + Campaigner (partial) + + ruleset + + name + Campaigner (partial) + rule + + + from + ^http://(?:www\.)?campaigner\.com/ + to + https://www.campaigner.com/ + + + from + ^http://(media|secure)\.campaigner\.com/ + to + https://$1.campaigner.com/ + + + securecookie + + host + .*\.campaigner\.com$ + name + .+ + + target + + + host + campaigner.com + + + host + *.campaigner.com + + + + + CampaignerCRM.com + + ruleset + + name + CampaignerCRM.com + rule + + + from + ^http://(?:www\.)?campaignercrm\.com/ + to + https://www.campaignercrm.com/ + + + from + ^http://(go|home)\.campaignercrm\.com/ + to + https://$1.campaignercrm.com/ + + + securecookie + + host + ^\.campaignercrm\.com$ + name + .+ + + target + + + host + campaignercrm.com + + + host + *.campaignercrm.com + + + + + Campina (partial) + + ruleset + + name + Campina (partial) + platform + mixedcontent + rule + + + from + ^http://campinaopschool\.nl/(error(%20pages/|page\.htm$)|images/errorpage/) + to + https://campinaopschool.nl/$1 + + + from + ^http://www\.campinaopschool\.nl/ + to + https://www.campinaopschool.nl/ + + + from + ^http://(www\.)?connecthr\.nl/ + to + https://www.connecthr.nl/ + + + from + ^http://intern\.connecthr\.nl/ + to + https://intern.connecthr.nl/ + + + from + ^http://(academy|m(elk|ilch)web)\.frieslandcampina\.com/ + to + https://$1.frieslandcampina.com/ + + + from + ^http://(www\.)landliebe\.de/ + to + https://landliebe.de/ + + + from + ^http://(www\.)?melkweb\.com/ + to + https://melkweb.frieslandcampina.com/ + + + from + ^http://edixml\.m(elkweb|ycampina)\.com/ + to + https://edixml.m$1.com/ + + + from + ^http://(www\.)?mycampina\.com/ + to + https://www.mycampina.com/ + + + securecookie + + + host + ^(www\.)campinaopschool\.nl$ + name + .* + + + host + ^www\.connecthr\.nl$ + name + .* + + + host + ^me(elk|ilch)web\.frieslandcampina\.com$ + name + .* + + + host + ^www\.landliebe\.de$ + name + .* + + + host + ^edixml\.melkweb\.com$ + name + .* + + + target + + + host + campinaopschool.nl + + + host + www.campinaopschool.nl + + + host + connecthr.nl + + + host + intern.connecthr.nl + + + host + www.connecthr.nl + + + host + academy.frieslandcampina.com + + + host + melkweb.frieslandcampina.com + + + host + milchweb.frieslandcampina.com + + + host + landliebe.de + + + host + www.landliebe.de + + + host + melkweb.com + + + host + edixml.melkweb.com + + + host + www.melkweb.com + + + host + mycampina.com + + + host + edixml.mycampina.com + + + host + www.mycampina.com + + + + + Campus Pack (partial) + + ruleset + + exclusion + + pattern + ^http://www\.campuspack\.net/ + + name + Campus Pack (partial) + rule + + + from + ^http://([\w\-]+\.)?campuspack\.eu/ + to + https://$1campuspack.eu/ + + + from + ^http://([\w\-]+)\.campuspack\.net/(Domain/|static)/ + to + https://$1.campuspack.net/$2/ + + + securecookie + + host + ^(?:.+\.)?campuspack\.eu$ + name + .+ + + target + + + host + campuspack.eu + + + host + *.campuspack.eu + + + host + *.campuspack.net + + + + + Cams.com (partial) + + ruleset + + name + Cams.com (partial) + rule + + from + ^http://(?:graphic|photo)s\.cams\.com/ + to + https://secureimage.securedataimages.com/ + + securecookie + + host + ^\.cams\.com$ + name + ^(?:AB_TRACKING|cams_tr|click_id_time|HISTORY|IP_COUNTRY|LOCATION_FROM_IP|REFERRAL_URL)$ + + target + + host + *.cams.com + + + + CanLII + + ruleset + + name + CanLII + rule + + from + ^http://(www\.)?canlii\.org/ + to + https://$1canlii.org/ + + securecookie + + host + ^(?:www\.)?canlii\.org$ + name + .+ + + target + + + host + canlii.org + + + host + www.canlii.org + + + + + CanSecWest + + ruleset + + name + CanSecWest + rule + + from + ^http://(?:www\.)?cansecwest\.com/ + to + https://cansecwest.com/ + + securecookie + + host + ^\.cansecwest\.com$ + name + .* + + target + + + host + cansecwest.com + + + host + *.cansecwest.com + + + + + Canada Post + + ruleset + + name + Canada Post + rule + + from + ^http://([^/:@\.]+)\.canadapost\.ca/ + to + https://$1.canadapost.ca/ + + target + + + host + canadapost.ca + + + host + *.canadapost.ca + + + + + CanadaHelps (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?canadahelps\.org/(?:GivingPages/GivingPages|Home|InfoPages/AboutUsOverview|.+/Default)\.aspx + + + pattern + ^http://(?:www\.)?canadahelps\.org/database/files/ + + + name + CanadaHelps (partial) + rule + + from + ^http://(?:www\.)?canadahelps\.org/ + to + https://www.canadahelps.org/ + + target + + + host + canadahelps.org + + + host + www.canadahelps.org + + + + + Canadian Broadcasting Corporation (mixed content) + + ruleset + + exclusion + + pattern + ^http://music\.cbc\.ca/(?:config/|images/|(?:.+/)?(?:j|service)s/|lib/|modules/|(?:Web|Script)Resource\.axd/|stats/) + + name + Canadian Broadcasting Corporation (mixed content) + platform + mixedcontent + rule + + from + ^http://music\.cbc\.ca/ + to + https://music.cbc.ca/ + + target + + host + music.cbc.ca + + + + Canadian Broadcasting Corporation (partial) + + ruleset + + exclusion + + pattern + ^http://music\.cbc\.ca/(?!config/|images/|(?:.+/)?(?:j|service)s/|lib/|modules/|(?:Web|Script)Resource\.axd/|stats/) + + name + Canadian Broadcasting Corporation (partial) + rule + + from + ^http://(music|sso)\.cbc\.ca/ + to + https://$1.cbc.ca/ + + target + + host + *.cbc.ca + + + + Canadian Institute of Chartered Accountants (partial) + + ruleset + + name + Canadian Institute of Chartered Accountants (partial) + rule + + from + ^http://secure\.cica\.ca/ + to + https://secure.cica.ca/ + + securecookie + + host + ^secure\.cica\.ca$ + name + .+ + + target + + host + secure.cica.ca + + + + Canadian Light Source (partial) + + ruleset + + name + Canadian Light Source (partial) + rule + + from + ^http://user\.lightsource\.ca/ + to + https://user.lightsource.ca/ + + securecookie + + host + ^user\.lightsource\.ca$ + name + .+ + + target + + host + user.lightsource.ca + + + + Canadian Lung Association + + ruleset + + name + Canadian Lung Association + rule + + from + ^http://(?:www\.)?lung\.ca/ + to + https://www.lung.ca/ + + target + + + host + lung.ca + + + host + www.lung.ca + + + + + Canadian Security Intelligence Service + + ruleset + + name + Canadian Security Intelligence Service + rule + + + from + ^https?://csis\.gc\.ca/ + to + https://www.csis.gc.ca/ + + + from + ^http://([^/:@]+)?\.csis\.gc\.ca/ + to + https://$1.csis.gc.ca/ + + + from + ^https?://scrs\.gc\.ca/ + to + https://www.csis.gc.ca/ + + + from + ^http://([^/:@]+)?\.scrs\.gc\.ca/ + to + https://$1.csis.gc.ca/ + + + from + ^https?://csis-scrs\.gc\.ca/ + to + https://www.csis.gc.ca/ + + + from + ^http://([^/:@]+)?\.csis-scrs\.gc\.ca/ + to + https://$1.csis.gc.ca/ + + + target + + + host + csis.gc.ca + + + host + *.csis.gc.ca + + + host + scrs.gc.ca + + + host + *.scrs.gc.ca + + + host + csis-scrs.gc.ca + + + host + *.csis-scrs.gc.ca + + + + + Canadian Web Hosting (partial) + + ruleset + + name + Canadian Web Hosting (partial) + rule + + from + ^http://(helpdesk\.|www\.)?canadianwebhosting\.com/ + to + https://$1canadianwebhosting.com/ + + securecookie + + host + ^(?:.*\.)?canadianwebhosting\.com$ + name + .+ + + target + + + host + canadianwebhosting.com + + + host + *.canadianwebhosting.com + + + + + CanalDigital + + ruleset + + name + CanalDigital + platform + mixedcontent + rule + + from + ^http://((?:www|erhverv|foreninger|iptv|kabel|parabol|selger)\.)?canaldigital\.(dk|no|se)/ + to + https://$1canaldigital.$2/ + + target + + + host + canaldigital.dk + + + host + www.canaldigital.dk + + + host + erhverv.canaldigital.dk + + + host + foreninger.canaldigital.dk + + + host + iptv.canaldigital.dk + + + host + kabel.canaldigital.no + + + host + parabol.canaldigital.no + + + host + selger.canaldigital.no + + + host + canaldigital.se + + + host + www.canaldigital.se + + + host + kabel.canaldigital.se + + + + + CandH Lures.com (partial) + + ruleset + + name + CandH Lures.com (partial) + rule + + from + ^http://(?:www\.)?candhlures\.com/(?=cdn-cgi/|css/|javascript/) + to + https://www.candhlures.com/ + + target + + + host + candhlures.com + + + host + www.candhlures.com + + + + + Canlı Alem + + ruleset + + name + Canlı Alem + rule + + from + ^http://(www\.)?canlialem\.com/ + to + https://$1canlialem.com/ + + securecookie + + host + ^\.?canlialem\.com$ + name + .+ + + target + + + host + canlialem.com + + + host + *.canlialem.com + + + + + Canon + + ruleset + + name + Canon + rule + + + from + ^http://(de|fr)\.canon\.ch/ + to + https://$1.canon.ch/ + + + from + ^http://(nl|fr)\.canon\.be/ + to + https://$1.canon.be/ + + + from + ^http://www\.canon\.(dk|no|se|fi|nl|lu|fr|de|ru|ba|es|si|sk|at|it|ie|pt|lv|lt|ee)/ + to + https://www.canon.$1/ + + + from + ^http://www\.canon\.co\.(uk|nz)/ + to + https://www.canon.co.$1/ + + + from + ^http://www\.canon\.com\.(cn|au|tr|mk)/ + to + https://www.canon.com.$1/ + + + from + ^http://www\.usa\.canon\.com/ + to + https://www.usa.canon.com/ + + + target + + + host + www.canon-europe.com + + + host + www.usa.canon.com + + + host + www.canon.dk + + + host + www.canon.no + + + host + www.canon.se + + + host + www.canon.fi + + + host + www.canon.nl + + + host + www.canon.lu + + + host + nl.canon.be + + + host + fr.canon.be + + + host + www.canon.co.uk + + + host + www.canon.fr + + + host + www.canon.de + + + host + de.canon.ch + + + host + fr.canon.ch + + + host + www.canon.es + + + host + www.canon.si + + + host + www.canon.sk + + + host + www.canon.ba + + + host + www.canon.at + + + host + www.canon.it + + + host + www.canon.ie + + + host + www.canon.pt + + + host + www.canon.lv + + + host + www.canon.lt + + + host + www.canon.ee + + + host + www.canon.com.mk + + + host + www.canon.com.au + + + host + www.canon.co.nz + + + host + www.canon.com.cn + + + host + www.canon.com.tr + + + host + www.canon.ru + + + + + Canonical (false MCB) + + ruleset + + name + Canonical (false MCB) + platform + mixedcontent + rule + + from + ^http://design\.canonical\.com/(?!favicon\.ico|wp-content/) + to + https://design.canonical.com/ + + target + + host + design.canonical.com + + + + Canonical (partial) + + ruleset + + exclusion + + pattern + ^http://design\.ubuntu\.com/(?!favicon\.ico|wp-content/) + + name + Canonical (partial) + rule + + from + ^http://(blog\.bazaar|certification|design|forms|irclogs|landscape|shop|support)\.canonical\.com/ + to + https://$1.canonical.com/ + + securecookie + + host + ^(?:certification|irclogs|shop)\.canonical\.com$ + name + .+ + + target + + host + *.canonical.com + + + + Canvas + + ruleset + + name + Canvas + rule + + + from + ^http://(www\.)?canv\.as/ + to + https://$1canv.as/ + + + from + ^http://i\.canvasugc\.com/ + to + https://i.canvasugc.com/ + + + from + ^http://rt_(\d)\.canv\.as/ + to + https://rt_$1.canv.as/ + + + securecookie + + host + ^(?:.*\.)?canv\.as + name + .+ + + target + + + host + canv.as + + + host + *.canv.as + + + host + i.canvasugc.com + + + + + Canvas n decor.com + + ruleset + + name + Canvas n decor.com + rule + + from + ^http://(www\.)?canvasndecor\.com/ + to + https://$1canvasndecor.com/ + + securecookie + + host + ^\.canvasndecor\.com$ + name + .+ + + target + + + host + canvasndecor.com + + + host + *.canvasndecor.com + + + + + Capistrano + + ruleset + + name + Capistrano + rule + + from + ^http://(?:www\.)?capify\.org/ + to + https://github.com/capistrano/capistrano/wiki/Documentation-v2.x + + target + + + host + capify.org + + + host + www.capify.org + + + + + Capital One Connect + + ruleset + + name + Capital One Connect + rule + + from + ^https?://(?:www\.)?capitaloneconnect\.(biz|com|info|net|org)/ + to + https://www.capitaloneconnect.$1/ + + securecookie + + host + ^www\.capitaloneconnect\.\w{3,4}$ + name + .* + + target + + + host + capitaloneconnect.* + + + host + www.capitaloneconnect.* + + + + + Captura Group (partial) + + ruleset + + name + Captura Group (partial) + platform + mixedcontent + rule + + + from + ^http://cdn\.measuredvoice\.com/ + to + https://s3.amazonaws.com/cdn.measuredvoice.com/ + + + from + ^http://(www\.)?measuredvoice\.com/(favicon\.ico|img/|wp-content/) + to + https://$1measuredvoice.com/$2 + + + securecookie + + host + ^(www\.)?measuredvoice\.com$ + name + .* + + target + + + host + measuredvoice.com + + + host + www.measuredvoice.com + + + + + CarAdvice + + ruleset + + name + CarAdvice + rule + + from + ^https?://(?:cdn\.|(www\.))?caradvice\.com\.au/ + to + https://$1caradvice.com.au/ + + target + + + host + caradvice.com.au + + + host + *.caradvice.com.au + + + + + CarProMods.com + + ruleset + + name + CarProMods.com + rule + + from + ^http://(?:www\.)?carpromods\.com/ + to + https://www.carpromods.com/ + + securecookie + + host + ^(?:www)?\.carpromods\.com$ + name + .+ + + target + + + host + carpromods.com + + + host + *.carpromods.com + + + + + Carbonfund.org + + ruleset + + name + Carbonfund.org + rule + + from + ^http://(www\.)?carbonfund\.org/ + to + https://$1carbonfund.org/ + + securecookie + + host + ^(?:www\.)?carbonfund\.org$ + name + .+ + + target + + + host + carbonfund.org + + + host + www.carbonfund.org + + + + + Carbonmade (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?carbonmade\.com/(?:$|\?|about|portfolio|terms) + + name + Carbonmade (partial) + rule + + + from + ^http://(www\.)?carbonmade\.com/ + to + https://$1carbonmade.com/ + + + from + ^https?://media\.cmcdn\.net/ + to + https://d2tbi97h020xxe.cloudfront.net/ + + + from + ^https?://s\.cmcdn\.net/ + to + https://d1gyuuidj3lauh.cloudfront.net/ + + + target + + + host + carbonmade.com + + + host + www.carbonmade.com + + + host + *.cmcdn.net + + + + + Carbonwind.net + + ruleset + + name + Carbonwind.net + platform + mixedcontent + rule + + from + ^http://(www\.)?carbonwind\.net/ + to + https://$1carbonwind.net/ + + target + + + host + carbonwind.net + + + host + www.carbonwind.net + + + + + CardCash.com + + ruleset + + name + CardCash.com + rule + + from + ^http://(www\.)?cardcash\.com/ + to + https://$1cardcash.com/ + + securecookie + + host + ^\.(?:www\.)?cardcash\.com$ + name + .+ + + target + + + host + cardcash.com + + + host + *.cardcash.com + + + + + Cardiff University (partial) + + ruleset + + name + Cardiff University (partial) + rule + + + from + ^https?://www\.astro\.c(?:ardif)?f\.ac\.uk/ + to + https://www.astro.cf.ac.uk/ + + + from + ^http://library\.cardiff\.ac\.uk/ + to + https://library.cardiff.ac.uk/ + + + from + ^https?://(?:www\.)?surveys\.cardiff\.ac\.uk/ + to + https://www.surveys.cardiff.ac.uk/ + + + from + ^http://(cardiffmail|claws|webmail\.cs|lawstudent|portal|pwm-mwe|static)\.cf\.ac\.uk/ + to + https://$1.cf.ac.uk/ + + + from + ^https?://(?:www\.)?(cardiffnetwork|cs|engin)\.cf\.ac\.uk/ + to + https://www.$1.cf.ac.uk/ + + + from + ^https?://learningcentral\.c(?:ardif)?f\.ac\.uk/ + to + https://learningcentral.cf.ac.uk/ + + + securecookie + + host + ^\w[\w\.]+\.c(ardif?)f\.ac\.uk$ + name + .* + + target + + + host + *.cardiff.ac.uk + + + host + www.*.cardiff.ac.uk + + + host + *.cf.ac.uk + + + host + www.*.cf.ac.uk + + + host + *.cs.cf.ac.uk + + + + + Care Net + + ruleset + + name + Care Net + rule + + from + ^(http://(www\.)?|https://)care-net\.org/ + to + https://www.care-net.org/ + + securecookie + + host + ^www\.care-net\.org$ + name + .+ + + target + + + host + care-net.org + + + host + www.care-net.org + + + + + Care2.com + + ruleset + + name + Care2.com + rule + + + from + ^http://(?:www\.)?care2\.com/ + to + https://www.care2.com/ + + + from + ^http://dingo\.care2\.com/ + to + https://dingo.care2.com/ + + + from + ^http://jobs\.care2\.com/ + to + https://care2.jobamatic.com/ + + + from + ^http://passport\.care2\.com/login\.html + to + https://www.care2.com/login.html + + + from + ^http://passport\.care2\.com/ + to + https://www.care2.com/accounts/ + + + from + ^http://volunteer\.care2\.com/[^\?]*(\?.*)? + to + https://www.care2.com/volunteer$1 + + + securecookie + + host + ^(?:www)?\.care2\.com$ + name + .+ + + target + + + host + care2.com + + + host + *.care2.com + + + + + Carecareers.com.au (partial) + + ruleset + + name + Carecareers.com.au (partial) + rule + + from + ^http://jobs\.carecareers\.com\.au/ + to + https://jobs.carecareers.com.au/ + + securecookie + + host + ^jobs\.carecareers\.com\.au$ + name + .+ + + target + + host + jobs.carecareers.com.au + + + + CareerBuilder (partial) + + ruleset + + name + CareerBuilder (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?careerbuilder\.com/ + to + https://$1careerbuilder.com/ + + + from + ^http://(\w+)\.careerbuilder\.co\.uk/ + to + https://$1.careerbuilder.co.uk/ + + + from + ^http://(?:img|secure)\.icbdr\.com/ + to + https://secure.icbdr.com/ + + + securecookie + + host + ^\.careerbuilder\.co\.uk$ + name + .+ + + target + + + host + careerbuilder.com + + + host + www.careerbuilder.com + + + host + *.careerbuilder.co.uk + + + host + *.icbdr.com + + + + + CareerPerfect + + ruleset + + name + CareerPerfect + rule + + + from + ^http://(?:secure\.|www\.)?careerperfect\.com/ + to + https://secure.careerperfect.com/ + + + from + ^http://monsterres\.careerperfect\.com/(brands|content/(\d{4}\w?|images|trk-v1))/ + to + https://secure.careerperfect.com/$1/ + + + securecookie + + host + ^\.careerperfect\.com$ + name + .* + + target + + + host + careerperfect.com + + + host + *.careerperfect.com + + + + + Careers.fi + + ruleset + + name + Careers.fi + rule + + from + ^http://(www\.)?careers\.fi/ + to + https://careers.fi/ + + target + + + host + careers.fi + + + host + www.careers.fi + + + + + Carekris.com + + ruleset + + name + Carekris.com + rule + + from + ^http://(www\.)?carekris\.com/ + to + https://$1carekris.com/ + + securecookie + + host + ^\.carekris\.com$ + name + .+ + + target + + + host + carekris.com + + + host + *.carekris.com + + + + + Carestream.com + + ruleset + + name + Carestream.com + rule + + from + ^http://(?:www\.)?carestream\.com/ + to + https://www.carestream.com/ + + securecookie + + host + ^(?:www)?\.carestream\.com$ + name + .+ + + target + + + host + carestream.com + + + host + *.carestream.com + + + + + Carezone.com + + ruleset + + name + Carezone.com + platform + firefox + rule + + from + ^http://carezone\.com/ + to + https://carezone.com/ + + securecookie + + host + ^carezone\.com$ + name + .+ + + target + + host + carezone.com + + + + Cargo (partial) + + ruleset + + name + Cargo (partial) + rule + + + from + ^http://(www\.)?cargocollective\.com/(?=_css/|favicon\.ico|_gfx/|stylesheet/) + to + https://$1cargocollective.com/ + + + from + ^http://media\.cargocollective\.com/ + to + https://c3434167.ssl.cf0.rackcdn.com/ + + + from + ^http://payload\.cargocollective\.com/ + to + https://c573862.ssl.cf0.rackcdn.com/ + + + from + ^http://payload50\.cargocollective\.com/ + to + https://c3426892.ssl.cf0.rackcdn.com/ + + + from + ^http://payload54\.cargocollective\.com/ + to + https://c3426897.ssl.cf0.rackcdn.com/ + + + from + ^http://payload56\.cargocollective\.com/ + to + https://c3426899.ssl.cf0.rackcdn.com/ + + + from + ^http://payload57\.cargocollective\.com/ + to + https://c3426900.ssl.cf0.rackcdn.com/ + + + from + ^http://payload93\.cargocollective\.com/ + to + https://c3452614.ssl.cf0.rackcdn.com/ + + + from + ^http://payload100\.cargocollective\.com/ + to + https://c3452621.ssl.cf0.rackcdn.com/ + + + from + ^http://payload120\.cargocollective\.com/ + to + https://a506586f092ca126898c-4779b67baf4ae2f3b1add8bb236f618f.ssl.cf1.rackcdn.com/ + + + from + ^http://payload141\.cargocollective\.com/ + to + https://7886f778086c061c4ea7-c166c3974f4551941b1742539f87878f.ssl.cf1.rackcdn.com/ + + + from + ^http://payload162\.cargocollective\.com/ + to + https://5365791d8e35e1727236-7f9dfcc055df093645758908fe06f705.ssl.cf1.rackcdn.com/ + + + from + ^http://payload169\.cargocollective\.com/ + to + https://612d1a71230523df4fe9-4ee8e300510bcfe4f6b35103392d0b2b.ssl.cf1.rackcdn.com/ + + + from + ^http://payload174\.cargocollective\.com/ + to + https://d12d30d30b94662cf1bf-d730a381cec30b09b6ffdde13fb218a6.ssl.cf1.rackcdn.com/ + + + from + ^http://payload180\.cargocollective\.com/ + to + https://a4ce430392986aec9cfc-443e219c85814104c662bd85fe98ae82.ssl.cf1.rackcdn.com/ + + + from + ^http://payload203\.cargocollective\.com/ + to + https://4716a3e1207fa032eadf-9086378b72655457e586fa5056c9274c.ssl.cf1.rackcdn.com/ + + + from + ^http://payload200\.cargocollective\.com/ + to + https://7e88561f37b025b9959e-f9c813036f1357060526fbfc879ecc04.ssl.cf1.rackcdn.com/ + + + from + ^http://payload215\.cargocollective\.com/ + to + https://e2f0d7e1fc4fd5d3636b-5c5fc32a9669fba64977478aa8802799.ssl.cf1.rackcdn.com/ + + + from + ^http://payload216\.cargocollective\.com/ + to + https://c961e2a037a0257122b6-069ed874dcd6a73d3851c1620da864a4.ssl.cf1.rackcdn.com/ + + + from + ^http://payload246\.cargocollective\.com/ + to + https://3ee99a4d99cc6612cec3-afe7421badd138b05a2309c5cb228ad8.ssl.cf1.rackcdn.com/ + + + from + ^http://payload250\.cargocollective\.com/ + to + https://79374de44d5e7ecaf88a-2ad9d41db9c7ba36604c9612b6f92488.ssl.cf1.rackcdn.com/ + + + from + ^http://payload258\.cargocollective\.com/ + to + https://4cb35411cb45cfd77b32-f5d733f446c8fd08907dcac084aa95a3.ssl.cf1.rackcdn.com/ + + + from + ^http://payload263\.cargocollective\.com/ + to + https://9f20954c27db5d99940c-223557c9acb55198baff86c90a7b5e16.ssl.cf1.rackcdn.com/ + + + from + ^http://payload271\.cargocollective\.com/ + to + https://7f110843eca5c0d3e385-4e08e849f3eae91ecc5304ca7a022f60.ssl.cf1.rackcdn.com/ + + + from + ^http://payload277\.cargocollective\.com/ + to + https://17c03ece40efdab208da-3a9b57b1b9597fd75dd50c1708c7fa0c.ssl.cf1.rackcdn.com/ + + + from + ^http://payload280\.cargocollective\.com/ + to + https://5e5d49cfdb379ce0c937-5f37aeb368ece0460243e4e3c4a03111.ssl.cf1.rackcdn.com/ + + + from + ^http://payload282\.cargocollective\.com/ + to + https://7c6429bafe722da2753b-014553dd10402f2cae583d2fc431df61.ssl.cf1.rackcdn.com/ + + + from + ^http://payload287\.cargocollective\.com/ + to + https://dcac8aac4b6120e78f70-4816ed90d4cd9717520c758b10641d4f.ssl.cf1.rackcdn.com/ + + + from + ^http://payload288\.cargocollective\.com/ + to + https://d7b28b377c20485bcd1e-17badbe9072beed4090a37cfee2aeb9d.ssl.cf1.rackcdn.com/ + + + from + ^http://payload291\.cargocollective\.com/ + to + https://9817d040c26c7fc91c86-7067033f01f8681d3d26db1b869e7c13.ssl.cf1.rackcdn.com/ + + + from + ^http://payload294\.cargocollective\.com/ + to + https://aa0c5e4ad94186b7d1ff-c47c05f42ae1f5ff6f44beac40165734.ssl.cf1.rackcdn.com/ + + + from + ^http://payload295\.cargocollective\.com/ + to + https://d3f85a14b915f530cfd8-341bc7b6089f1bf517cb1eb7488d0cf3.ssl.cf1.rackcdn.com/ + + + from + ^http://payload296\.cargocollective\.com/ + to + https://14dc5f4076479b5cedab-94c4d07712ffb0415e1a5357e32aaf70.ssl.cf1.rackcdn.com/ + + + target + + + host + cargocollective.com + + + host + *.cargocollective.com + + + + + Carl Zeiss (partial) + + ruleset + + name + Carl Zeiss (partial) + rule + + + from + ^http://(corporate|meditec|microscopy|www)\.zeiss\.com/ + to + https://$1.zeiss.com/ + + + from + ^https?://applications\.zeiss\.com/\??$ + to + https://corporate.zeiss.com/gateway/en_de/home.html + + + from + ^https?://applications\.zeiss\.com/(\w{16})/Index\?ReadForm + to + https://www.zeiss.com/$1/Index?ReadForm + + + securecookie + + host + ^.+\.zeiss\.com$ + name + .+ + + target + + host + *.zeiss.com + + + + Carleton College + + ruleset + + name + Carleton College + rule + + + from + ^http://carleton\.edu/ + to + https://www.carleton.edu/ + + + from + ^http://(webapps\.acs|apps|www)\.carleton\.edu/ + to + https://$1.carleton.edu/ + + + securecookie + + host + ^apps\.carleton\.edu$ + name + .+ + + target + + + host + carleton.edu + + + host + *.carleton.edu + + + + + Carleton.ca (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:alumni|graduate|newsroom|sprott)\.carleton\.ca/(?!wp-content/|wp-includes/) + + + pattern + ^http://events\.carleton\.ca/(?!cu_global/|wp-content/|wp-includes/) + + + pattern + ^http://researchworks\.carleton\.ca/(?!cu/wp-content/|cu/wp-includes/) + + + name + Carleton.ca (partial) + rule + + + from + ^http://(?:www\.)?(ccsl|library)\.carleton\.ca/ + to + https://$1.carleton.ca/ + + + from + ^http://((?:admissions|alumni|apply|events|forms|giving|goravens|graduate|gsapplications|newsroom|researchworks|science|(?:www\.)?scs|sprott|students|www[12]?)\.)?carleton\.ca/ + to + https://$1carleton.ca/ + + + securecookie + + host + ^(?:events|gsapplications)\.carleton\.ca$ + name + .+ + + target + + + host + carleton.ca + + + host + *.carleton.ca + + + + + CarltonBale.com (partial) + + ruleset + + name + CarltonBale.com (partial) + rule + + from + ^https?://s3\.carltonbale\.com/ + to + https://d18oqavmcmo3u.cloudfront.net/ + + target + + host + s3.carltonbale.com + + + + Carnegie Institution for Science + + ruleset + + name + Carnegie Institution for Science + rule + + + from + ^http://((?:board|hr|vpn|www)\.)?carnegiescience\.edu/ + to + https://$1carnegiescience.edu/ + + + from + ^https?://(?:www\.)?ciw\.edu/ + to + https://carnegiescience.edu/ + + + from + ^http://(hazen|people|www)\.gl\.ciw\.edu/ + to + https://$1.gl.ciw.edu/ + + + from + ^http://mail\.ciw\.edu/ + to + https://mail.ciw.edu/ + + + securecookie + + + host + ^.*\.carnegiescience\.edu$ + name + .* + + + host + ^(\.hazen\.gl|mail)\.ciw\.edu$ + name + .* + + + host + ^\.gl\.ciw\.edu$ + name + .+ + + + target + + + host + carnegiescience.edu + + + host + *.carnegiescience.edu + + + host + *.board.carnegiescience.edu + + + host + *.hr.carnegiescience.edu + + + host + ciw.edu + + + host + *.ciw.edu + + + host + hazen.gl.ciw.edu + + + host + *.hazen.gl.ciw.edu + + + + + Carnegie Mellon University (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?heinz\.cmu\.edu/(?!image).+\.aspx(?:$|\?) + + name + Carnegie Mellon University (partial) + rule + + + from + ^http://(www\.)?cmu\.edu/ + to + https://$1cmu.edu/ + + + from + ^http://(www\.)?((?:directory\.|webiso\.)?andrew|cylab|ece|(?:sparrow|users)\.ece|(?:(?:calendar|ccc12|csadmins|cleese|www-dev\.csd|cups|fac|heinz|link|lti|ath-live\.mts|news|(?:dev\.|wonderwoman\.)?olympus|origami\.qolt|sites|(?:antman|gambit|innovation|mailman|webbuild-web1)\.srv|trust|(?:ptest[1-4]-userpool|webbuild)\.web|webapps|wiki|women|www-2|www-dev|xia)\.)?cs|lunchdelivery\.hcii|libwebspace\.library|my|ri|(?:resources\.|www\.)?sei|studentaffairs)\.cmu\.edu/ + to + https://$1$2.cmu.edu/ + + + from + ^https?://webuild-web2\.srv\.cs\.cmu\.edu/ + to + https://webuild-web1.srv.cs.cmu.edu/ + + + from + ^https?://(?:www\.)?etc\.cmu\.edu/ + to + https://www.etc.cmu.edu/ + + + securecookie + + host + ^.*\.cmu\.edu$ + name + .* + + target + + + host + cmu.edu + + + host + *.cmu.edu + + + + + CarterCenter.org + + ruleset + + name + CarterCenter.org + platform + mixedcontent + rule + + + from + ^http://(www\.)?cartercenter\.org/ + to + https://$1cartercenter.org/ + + + from + ^http://donate\.cartercenter\.org/(?:site/PageServer)?(?:\?.*)?$ + to + https://cartercenter.org/ + + + securecookie + + host + ^(?:www\.)?cartercenter\.org$ + name + .+ + + target + + + host + cartercenter.org + + + host + *.cartercenter.org + + + + + Casaar.com (false MCB) + + ruleset + + name + Casaar.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?casaar\.com/ + to + https://$1casaar.com/ + + securecookie + + host + ^(?:w*\.)?casaar\.com$ + name + .+ + + target + + + host + casaar.com + + + host + *.casaar.com + + + + + Casaar.com (partial) + + ruleset + + name + Casaar.com (partial) + rule + + from + ^http://(www\.)?casaar\.com/(?=cache/|data/|favicons/|images/|uploads/|usernoise/) + to + https://$1casaar.com/ + + target + + + host + casaar.com + + + host + www.casaar.com + + + + + Casale Media (partial) + + ruleset + + name + Casale Media (partial) + rule + + from + ^http://(as-sec|dsum-sec|js-sec|r|r-sec|ssum-sec|system)\.casalemedia\.com/ + to + https://$1.casalemedia.com/ + + securecookie + + host + .*\.casalemedia\.com$ + name + .+ + + target + + host + *.casalemedia.com + + + + Casascius + + ruleset + + name + Casascius + rule + + from + ^http://(www\.)?casascius\.com/ + to + https://$1casascius.com/ + + target + + + host + casascius.com + + + host + www.casascius.com + + + + + Caschys Blog + + ruleset + + name + Caschys Blog + rule + + + from + ^http://m\.stadt-bremerhaven\.de/ + to + https://m.stadt-bremerhaven.de/ + + + from + ^http://(www\.)?stadt-bremerhaven\.de/ + to + https://stadt-bremerhaven.de/ + + + target + + + host + stadt-bremerhaven.de + + + host + *.stadt-bremerhaven.de + + + + + Case Western Reserve University (partial) + + ruleset + + name + Case Western Reserve University (partial) + rule + + + from + ^http://tiswww\.c(ase|wru)\.edu/ + to + https://tiswww.c$1.edu/ + + + from + ^http://cnswww\.cns\.cwru\.edu/ + to + https://cnswww.cns.cwru.edu/ + + + target + + + host + tiswww.case.edu + + + host + *.cwru.edu + + + + + Case's Ladder + + ruleset + + name + Case's Ladder + rule + + from + ^http://((?:cdn-img|cgi\d?|img|plus\d|users|www)\.)?igl\.net/ + to + https://$1igl.net/ + + target + + + host + igl.net + + + host + *.igl.net + + + + + Caseking.biz + + ruleset + + name + Caseking.biz + rule + + from + ^http://(www\.)?caseking\.biz/ + to + https://www.caseking.biz/ + + target + + + host + caseking.biz + + + host + www.caseking.biz + + + + + Caseking.de + + ruleset + + name + Caseking.de + rule + + from + ^http://(?:www\.)?caseking\.de/ + to + https://www.caseking.de/ + + securecookie + + host + ^(?:www)?\.caseking\.de$ + name + .+ + + target + + + host + caseking.de + + + host + *.caseking.de + + + + + Cashback.co.uk (partial) + + ruleset + + exclusion + + pattern + http://www\.cashback\.co\.uk/$ + + name + Cashback.co.uk (partial) + rule + + + from + ^http://(secure\.|www\.)?cashback\.co\.uk/ + to + https://$1cashback.co.uk/ + + + from + ^https://secure\.cashback\.co\.uk/$ + to + https://www.cashback.co.uk/ + + + target + + + host + cashback.co.uk + + + host + *.cashback.co.uk + + + + + CasinoAffiliatePrograms.com + + ruleset + + name + CasinoAffiliatePrograms.com + rule + + from + ^http://(www\.)?casinoaffiliateprograms\.com/ + to + https://casinoaffiliateprograms.com/ + + securecookie + + host + ^www\.casinoaffiliateprograms\.com$ + name + .* + + target + + + host + casinoaffiliateprograms.com + + + host + www.casinoaffiliateprograms.com + + + + + CasinoEstrella.com + + ruleset + + name + CasinoEstrella.com + rule + + from + ^http://(www\.)?casinoestrella\.com/ + to + https://$1casinoestrella.com/ + + securecookie + + host + ^(?:www)?\.casinoestrella\.com$ + name + .+ + + target + + + host + casinoestrella.com + + + host + *.casinoestrella.com + + + + + Casper og Frank.de (false MCB) + + ruleset + + name + Casper og Frank.de (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?casperogfrank\.dk/ + to + https://$1casperogfrank.dk/ + + securecookie + + host + ^\.casperogfrank\.dk$ + name + .+ + + target + + + host + casperogfrank.dk + + + host + *.casperogfrank.dk + + + + + Casro (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?casro\.org/(?:index\.cfm)?(?:$|\?) + + name + Casro (partial) + rule + + from + ^https?://(?:www\.)?casro\.org/ + to + https://www.casro.org/ + + target + + + host + casro.org + + + host + www.casro.org + + + + + CassinoEstrela + + ruleset + + name + CassinoEstrela + rule + + from + ^http://(www\.)?cassinoestrela\.com/ + to + https://$1cassinoestrela.com/ + + securecookie + + host + ^(?:www)?\.cassinoestrela\.com$ + name + .+ + + target + + + host + cassinoestrela.com + + + host + *.cassinoestrela.com + + + + + CastRoller (partial) + + ruleset + + name + CastRoller (partial) + rule + + from + ^http://s\.cstrlr\.com/ + to + https://d231qji2e2hste.cloudfront.net/ + + target + + host + s.cstrlr.com + + + + Castel-Bayart + + ruleset + + name + Castel-Bayart + rule + + from + ^http://(?:www\.)?castel-bayart\.com/ + to + https://www.castel-bayart.com/ + + securecookie + + host + ^w*\.castel-bayart\.com$ + name + .+ + + target + + + host + castel-bayart.com + + + host + *.castel-bayart.com + + + + + Castle-Technology.co.uk + + ruleset + + name + Castle-Technology.co.uk + rule + + from + ^http://(www\.)?castle-technology\.co\.uk/ + to + https://$1castle-technology.co.uk/ + + securecookie + + host + ^\.www\.castle-technology\.co\.uk$ + name + .+ + + target + + + host + castle-technology.co.uk + + + host + *.castle-technology.co.uk + + + + + CatN.com + + ruleset + + name + CatN.com + rule + + from + ^http://(cp\.c4\.|www\.)?catn\.com/ + to + https://$1catn.com/ + + securecookie + + host + ^cp\.c4\.catn\.com$ + name + .+ + + target + + + host + catn.com + + + host + *.catn.com + + + + + Catalog of Domestic Federal Assistance + + ruleset + + name + Catalog of Domestic Federal Assistance + rule + + from + ^https?://(?:www\.)?cfda\.gov/ + to + https://www.cfda.gov/ + + securecookie + + host + ^.*\.cfda\.gov$ + name + .* + + target + + + host + cfda.gov + + + host + *.cfda.gov + + + host + *.www.cfda.gov + + + + + Catalysis (partial) + + ruleset + + name + Catalysis (partial) + rule + + from + ^http://winhardware\.catalysis\.com/ + to + https://winhardware.catalysis.com/ + + target + + host + winhardware.catalysis.com + + + + Catalyst Host.com + + ruleset + + name + Catalyst Host.com + rule + + from + ^http://(?:(cp\.|portal\.)|www\.)?catalysthost\.com/ + to + https://$1catalysthost.com/ + + securecookie + + host + ^(?:cp|portal)?\.catalysthost\.com$ + name + .+ + + target + + + host + catalysthost.com + + + host + *.catalysthost.com + + + + + Catalyst IT (partial) + + ruleset + + name + Catalyst IT (partial) + rule + + from + ^http://wrms\.catalyst\.net\.nz/ + to + https://wrms.catalyst.net.nz/ + + securecookie + + host + ^wrms\.catalyst\.net\.nz$ + name + .* + + target + + host + wrms.catalyst.net.nz + + + + Catalyst Technology Group + + ruleset + + name + Catalyst Technology Group + rule + + from + ^http://(forums\.|www\.)?catalysttg\.com/ + to + https://$1catalysttg.com/ + + securecookie + + host + ^(?:.+\.)?catalysttg\.com$ + name + .+ + + target + + + host + catalysttg.com + + + host + *.catalysttg.com + + + + + Caters News Agency (partial) + + ruleset + + name + Caters News Agency (partial) + rule + + from + ^http://(www\.)?catersnews\.com/ + to + https://$1catersnews.com/ + + target + + + host + catersnews.com + + + host + www.catersnews.com + + + + + CatinCan + + ruleset + + name + CatinCan + rule + + from + ^http://(www\.)?catincan\.com/ + to + https://$1catincan.com/ + + target + + + host + catincan.com + + + host + www.catincan.com + + + + + Catlin Sea Survey + + ruleset + + name + Catlin Sea Survey + rule + + from + ^http://(www\.)?catlinseaviewsurvey\.com/ + to + https://$1catlinseaviewsurvey.com/ + + securecookie + + host + ^(?:.*\.)?catlinseaviewsurvey\.com$ + name + .+ + + target + + + host + catlinseaviewsurvey.com + + + host + *.catlinseaviewsurvey.com + + + + + Cato Institute (partial) + + ruleset + + name + Cato Institute (partial) + rule + + from + ^http://secure\.cato\.org/ + to + https://secure.cato.org/ + + target + + host + secure.cato.org + + + + Causes (partial) + + ruleset + + name + Causes (partial) + rule + + + from + ^http://s2\.causes\.com/ + to + https://www.causes.com/ + + + from + ^http://([^s][\w\-]*\.)?causes\.com/ + to + https://$1causes.com/ + + + from + ^http://support\.causes\.com/(assets|generated|images|system)/ + to + https://causes.zendesk.com/$1/ + + + from + ^https?://causes\.presscdn\.com/ + to + https://exchange.causes.com/ + + + securecookie + + host + ^(([^s]\w*)?\.)?causes\.com$ + name + .* + + target + + + host + causes.com + + + host + *.causes.com + + + host + causes.presscdn.com + + + + + Cavium.org + + ruleset + + name + Cavium.org + rule + + from + ^http://(www\.)?cavium\.org/ + to + https://$1cavium.org/ + + target + + + host + cavium.org + + + host + www.cavium.org + + + + + Cbb.dk + + ruleset + + name + Cbb.dk + rule + + from + ^http://(www\.)?cbb\.dk/ + to + https://www.cbb.dk/ + + target + + + host + cbb.dk + + + host + www.cbb.dk + + + + + CeBIT.de (partial) + + ruleset + + name + CeBIT.de (partial) + rule + + from + ^http://(?:www\.)?cebit\.de/(?=(?:de|en)/applikation/secure/|meinemesse/login(?:$|\?)) + to + https://www.cebit.de/ + + target + + + host + cebit.de + + + host + www.cebit.de + + + + + Cedexis (partial) + + ruleset + + name + Cedexis (partial) + rule + + from + ^http://portal\.cedexis\.com/ + to + https://portal.cedexis.com/ + + target + + host + portal.cedexis.com + + + + CeeJay.net (partial) + + ruleset + + name + CeeJay.net (partial) + rule + + from + ^http://(crashplan|support)\.ceejay\.net(:4285)?/ + to + https://$1.ceejay.net$2/ + + securecookie + + host + ^(?:crashplan|support)\.ceejay\.net$ + name + .+ + + target + + host + *.ceejay.net + + + + Celartem (partial) + + ruleset + + name + Celartem (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?lizardtech\.com/ + to + https://lizardtech.com/ + + target + + + host + lizardtech.com + + + host + www.lizardtech.com + + + + + Celiac Disease Foundation + + ruleset + + name + Celiac Disease Foundation + platform + mixedcontent + rule + + from + ^http://(?:www\.)?celiac\.org/ + to + https://www.celiac.org/ + + target + + + host + celiac.org + + + host + www.celiac.org + + + + + Cengage (partial) + + ruleset + + name + Cengage (partial) + platform + mixedcontent + rule + + + from + ^http://serviceplus\.cengage\.com/ + to + https://serviceplus.cengage.com/ + + + from + ^http://assets\.cengagebrain\.com/ + to + https://assets.cengagebrain.com/ + + + from + ^http://(www\.)?cengagebrain\.co(m|\.uk)/ + to + https://$1cengagebrain.co$2/ + + + from + ^http://(www\.)?ed2go\.com/ + to + https://$1ed2go.com/ + + + from + ^http://hbb\.hbrstatic\.com/ + to + https://business.highbeam.com/ + + + from + ^http://hbr\.hbrstatic\.com/ + to + https://highbeam.com/ + + + from + ^http://(www\.)?highbeam\.com/(Account/|combres\.axd/|[cC]ontent/|favicon\.ico|Img/|Login|Registration/) + to + https://$1highbeam.com/$2 + + + from + ^http://business\.highbeam\.com/(Content/|favicon2\.ico|iframead/) + to + https://business.highbeam.com/$1 + + + from + ^http://(?:www\.)?multivu\.com/ + to + https://www.multivu.com/ + + + from + ^http://(www\.)?ordercourses\.com/ + to + https://$1ordercourses.com/ + + + securecookie + + + host + ^(.*\.)?(ed2go|ordercourses).com$ + name + .* + + + host + ^serviceplus\.cengage\.com$ + name + .* + + + host + ^(.*\.)?cengagebrain\.co(m|\.uk)$ + name + .* + + + target + + + host + serviceplus.cengage.com + + + host + cengagebrain.com + + + host + *.cengagebrain.com + + + host + cengagebrain.co.uk + + + host + *.cengagebrain.co.uk + + + host + ed2go.com + + + host + *.ed2go.com + + + host + *.hbrstatic.com + + + host + highbeam.com + + + host + *.highbeam.com + + + host + multivu.com + + + host + www.multivu.com + + + host + ordercourses.com + + + host + www.ordercourses.com + + + + + Cenowarka.pl + + ruleset + + name + Cenowarka.pl + rule + + from + ^http://(www\.)?cenowarka\.pl/ + to + https://$1cenowarka.pl/ + + target + + + host + cenowarka.pl + + + host + www.cenowarka.pl + + + + + Censorship.govt.nz + + ruleset + + name + Censorship.govt.nz + platform + mixedcontent + rule + + + from + ^http://www\.censorship\.govt\.nz/ + to + https://www.censorship.govt.nz/ + + + from + ^http://censorship\.govt\.nz/ + to + https://www.censorship.govt.nz/ + + + target + + + host + censorship.govt.nz + + + host + www.censorship.govt.nz + + + + + CentOS.org (partial) + + ruleset + + name + CentOS.org (partial) + rule + + from + ^http://((?:bugs|git|projects|wiki|www)\.)?centos\.org/ + to + https://$1centos.org/ + + securecookie + + host + ^(?:git\.|www\.)?centos\.org$ + name + .+ + + target + + + host + centos.org + + + host + *.centos.org + + + + + Center for American Progress (partial) + + ruleset + + exclusion + + pattern + ^http://thinkprogress\.com/+(?!wp-content/|wp-includes/) + + name + Center for American Progress (partial) + rule + + from + ^http://(www\.)?thinkprogress\.org/ + to + https://$1thinkprogress.org/ + + target + + + host + thinkprogress.org + + + host + www.thinkprogress.org + + + + + Center for Constitutional Rights + + ruleset + + name + Center for Constitutional Rights + rule + + from + ^http://(www\.)?ccrjustice\.org/ + to + https://$1ccrjustice.org/ + + securecookie + + host + ^(?:w*\.)?ccrjustice\.org$ + name + .+ + + target + + + host + ccrjustice.org + + + host + *.ccrjustice.org + + + + + Center for Democracy & Technology + + ruleset + + name + Center for Democracy & Technology + rule + + + from + ^http://(www\.)?cdt\.org/ + to + https://$1cdt.org/ + + + from + ^http://(www\.)?notwithoutawarrant\.com/ + to + https://$1notwithoutawarrant.com/ + + + securecookie + + host + ^\.cdt\.org$ + name + .* + + target + + + host + cdt.org + + + host + *.cdt.org + + + host + notwithoutawarrant.com + + + host + www.notwithoutawarrant.com + + + + + Center for Early Childhood Professional Development + + ruleset + + name + Center for Early Childhood Professional Development + rule + + from + ^http://(www\.)?cecpdonline\.org/ + to + https://$1cecpdonline.org/ + + securecookie + + host + ^(?:w*\.)?cecpdonline\.org$ + name + .+ + + target + + + host + cecpdonline.org + + + host + *.cecpdonline.org + + + + + Center for Individual Freedom (partial) + + ruleset + + name + Center for Individual Freedom (partial) + rule + + from + ^http://(vs\.|www\.)?cfif\.org/ + to + https://$1cfif.org/ + + securecookie + + host + ^(?:www\.)?cfif\.org$ + name + .+ + + target + + + host + cfif.org + + + host + *.cfif.org + + + + + Center for Responsive Politics (partial) + + ruleset + + name + Center for Responsive Politics (partial) + rule + + + from + ^http://(?:www\.)?opensecrets\.org/ + to + https://www.opensecrets.org/ + + + from + ^http://(asset|image)s\.opensecrets\.org/ + to + https://s3.amazonaws.com/$1s.opensecrets.org/ + + + securecookie + + host + ^(.*\.)?opensecrets\.org$ + name + .* + + target + + + host + opensecrets.org + + + host + *.opensecrets.org + + + + + Center for Rights + + ruleset + + name + Center for Rights + rule + + + from + ^https?://(?:www\.)?thecenterforrights\.org/ + to + https://centerforrights.heroku.com/ + + + from + ^https?://(?:www\.)?internetvotes\.org/ + to + https://internetvotes.herokuapp.com/ + + + target + + + host + centerforrights.org + + + host + www.centerforrights.org + + + host + internetvotes.org + + + host + www.internetvotes.org + + + + + Centerline Digital (partial) + + ruleset + + name + Centerline Digital (partial) + rule + + from + ^http://(www\.)?centerlinebeta\.net/ + to + https://$1centerlinebeta.net/ + + target + + + host + centerlinebeta.net + + + host + www.centerlinebeta.net + + + + + Central Computers.com + + ruleset + + name + Central Computers.com + rule + + from + ^http://(www\.)?centralcomputers\.com/ + to + https://$1centralcomputers.com/ + + target + + + host + centralcomputers.com + + + host + www.centralcomputers.com + + + + + Central Intelligence Agency + + ruleset + + name + Central Intelligence Agency + rule + + from + ^https?://(?:www\.)?cia\.gov/ + to + https://www.cia.gov/ + + target + + + host + cia.gov + + + host + www.cia.gov + + + + + Centre for the Protection of National Infrastructure (CPNI) + + ruleset + + name + Centre for the Protection of National Infrastructure (CPNI) + rule + + + from + ^https?://cpni\.gov\.uk/ + to + https://www.cpni.gov.uk/ + + + from + ^http://([^/:@]+)?\.cpni\.gov\.uk/ + to + https://$1.cpni.gov.uk/ + + + securecookie + + host + ^(.*\.)?cpni\.gov\.uk$ + name + .+ + + target + + + host + cpni.gov.uk + + + host + *.cpni.gov.uk + + + + + Centrum Wiskunde & Informatica + + ruleset + + name + Centrum Wiskunde & Informatica + rule + + from + ^http://(?:www\.)?cwi\.nl/ + to + https://www.cwi.nl/ + + securecookie + + host + ^\.cwi\.nl$ + name + .* + + target + + + host + cwi.nl + + + host + *.cwi.nl + + + + + Centrum.sk_cz (partial) + + ruleset + + name + Centrum.sk_cz (partial) + rule + + + from + ^http://(reg|user|heslo)\.centrum\.(cz|sk)/ + to + https://$1.centrum.$2/ + + + from + ^http://mail\.centrum\.cz/ + to + https://mail.centrum.cz/ + + + target + + + host + *.centrum.sk + + + host + *.centrum.cz + + + + + Centzy + + ruleset + + name + Centzy + rule + + from + ^http://(m\.|www\.)?centzy\.com/ + to + https://$1centzy.com/ + + securecookie + + host + ^(?:m\.)?centzy\.com$ + name + .+ + + target + + + host + centzy.com + + + host + *.centzy.com + + + + + Certible + + ruleset + + name + Certible + rule + + from + ^http://(www\.)?certible\.com/ + to + https://$1certible.com/ + + target + + + host + certible.com + + + host + www.certible.com + + + + + Certified Secure.com + + ruleset + + name + Certified Secure.com + rule + + from + ^http://(?:www\.)?certifiedsecure\.com/ + to + https://www.certifiedsecure.com/ + + securecookie + + host + ^\.www\.certifiedsecure\.com$ + name + .+ + + target + + + host + certifiedsecure.com + + + host + *.certifiedsecure.com + + + + + Certigna.fr (partial) + + ruleset + + name + Certigna.fr (partial) + rule + + + from + ^http://(?:www\.)?certigna\.fr/ + to + https://www.certigna.fr/ + + + from + ^http://v1\.certigna\.fr/ + to + https://v1.certigna.fr/ + + + securecookie + + host + ^www\.certigna\.fr$ + name + .+ + + target + + + host + certigna.fr + + + host + *.certigna.fr + + + + + Certona (partial) + + ruleset + + name + Certona (partial) + rule + + from + ^http://(www\.)?res-x\.com/ + to + https://$1res-x.com/ + + target + + + host + res-x.com + + + host + www.res-x.com + + + + + Chainlove.com + + ruleset + + name + Chainlove.com + rule + + + from + ^http://(www\.)?chainlove\.com/ + to + https://$1chainlove.com/ + + + from + ^https?://images\.chainlove\.com/ + to + https://www.chainlove.com/ + + + target + + + host + chainlove.com + + + host + *.chainlove.com + + + + + Chakas Mmm.com (partial) + + ruleset + + name + Chakas Mmm.com (partial) + rule + + from + ^http://(www\.)?chakasmmm\.com/(?=favicon\.ico|shop/(?:checkout|login|register|your-account)(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1chakasmmm.com/ + + target + + + host + chakasmmm.com + + + host + www.chakasmmm.com + + + + + ChallengePost (partial) + + ruleset + + name + ChallengePost (partial) + rule + + + from + ^http://((?:forexfreestyle|nycschools|secure|www)\.)?challengepost\.com/ + to + https://$1challengepost.com/ + + + from + ^https?://(?:www\.)?assetspost\.com/assets/ + to + https://www.assetspost.com/assets/ + + + from + ^https?://challengepost\d?\.assetspost\.com/ + to + https://challengepost-challengepost.netdna-ssl.com/ + + + securecookie + + host + ^(?:.+\.)?challengepost\.com$ + name + .+ + + target + + + host + challengepost.com + + + host + *.challengepost.com + + + host + assetspost.com + + + host + *.assetspost.com + + + + + Chalmers + + ruleset + + name + Chalmers + rule + + from + ^http://(www\.)?(admin\.)?chalmers\.se/ + to + https://$1$2chalmers.se/ + + securecookie + + host + ^(?:www\.)?chalmers\.se$ + name + .+ + + target + + + host + chalmers.se + + + host + *.chalmers.se + + + + + Chambal (partial) + + ruleset + + name + Chambal (partial) + rule + + + from + ^http://accounts\.chambal\.com/ + to + https://accounts.chambal.com/ + + + from + ^http://images\.chambal\.com/ + to + https://d1tk5j9aunjut2.cloudfront.net/ + + + securecookie + + host + ^accounts\.chambal\.com$ + name + .+ + + target + + host + *.chambal.com + + + + ChampionCasino.net (partial) + + ruleset + + name + ChampionCasino.net (partial) + rule + + from + ^http://(cdn1|pay|sec)\.championcasino\.net/ + to + https://$1.championcasino.net/ + + securecookie + + host + ^.+\.championcasino\.net$ + name + .+ + + target + + host + *.championcasino.net + + + + Champions of Regnum.com + + ruleset + + name + Champions of Regnum.com + rule + + from + ^http://(?:www\.)?championsofregnum\.com/ + to + https://www.championsofregnum.com/ + + securecookie + + host + ^www\.championsofregnum\.com$ + name + .+ + + target + + + host + championsofregnum.com + + + host + www.championsofregnum.com + + + + + Champs Sports (partial) + + ruleset + + name + Champs Sports (partial) + rule + + + from + ^https?://(?:www\.)?champssports\.com/ + to + https://www.champssports.com/ + + + from + ^https?://ebm\.e\.champssports\.com/ + to + https://ebm.cheetahmail.com/ + + + from + ^https?://f\.e\.champssports\.com/ + to + https://f.chtah.com/ + + + from + ^http://(images|m)\.champssports\.com/ + to + https://$1.champssports.com/ + + + securecookie + + host + ^.*\.champssports\.com$ + name + .+ + + target + + + host + champssports.com + + + host + *.champssports.com + + + host + *.e.champssports.com + + + host + *.www.champssports.com + + + + + Change.org + + ruleset + + name + Change.org + rule + + + from + ^http://(www\.)?change\.org/ + to + https://$1change.org/ + + + from + ^https?://helpdesk\.change\.org/(generated|images|system)/ + to + https://change.zendesk.com/$1/ + + + securecookie + + host + ^.*\.change\.org$ + name + .* + + target + + + host + change.org + + + host + *.change.org + + + + + ChangeTip.com + + ruleset + + name + ChangeTip.com + rule + + from + ^http://(?:www\.)?changetip\.com/ + to + https://www.changetip.com/ + + securecookie + + host + ^\.changetip\.com$ + name + .+ + + target + + + host + changetip.com + + + host + www.changetip.com + + + + + Changemakers + + ruleset + + name + Changemakers + rule + + from + ^http://(cdn\.|www\.)?changemakers\.com/ + to + https://www.changemakers.com/ + + target + + + host + changemakers.com + + + host + www.changemakers.com + + + + + Chango + + ruleset + + name + Chango + rule + + + from + ^http://ads\.chango\.ca/ + to + https://as.chango.com/ + + + from + ^http://(?:www\.)?chango\.com/ + to + https://www.chango.com/ + + + from + ^http://(as|cc|dashboard|z)\.chango\.com/ + to + https://$1.chango.com/ + + + securecookie + + + host + ^\.chango\.com$ + name + ^(?:_i_cw|_i_lj|_t|_v?t)$ + + + host + ^dashboard\.chango\.com$ + name + .* + + + target + + + host + ads.chango.ca + + + host + chango.com + + + host + *.chango.com + + + + + Channel 4 (false MCB) + + ruleset + + name + Channel 4 (false MCB) + platform + mixedcontent + rule + + from + ^http://mailing\.channel4\.com/public/snowmail/remotebox\.jsp + to + https://mailing.channel4.com/public/snowmail/remotebox.jsp + + target + + host + mailing.channel4.com + + + + Channel 4 (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?channel4\.com/(?!4me(?:$|[?/])|static/) + + + pattern + ^http://mailing\.channel4\.com/public/snowmail/remotebox\.jsp + + + name + Channel 4 (partial) + rule + + + from + ^http://((?:4id|ais|mailing|test|www)\.)?channel4\.com/ + to + https://$1channel4.com/ + + + from + ^https?://realmedia\.channel4\.com/ + to + https://2a7e9.v.fwmrm.net/ + + + target + + + host + channel4.com + + + host + *.channel4.com + + + + + Channel 5 + + ruleset + + name + Channel 5 + platform + mixedcontent + rule + + + from + ^http://oas\.five\.tv/ + to + https://oasc07.247realmedia.com/ + + + from + ^http://(www\.)?channel5\.com/(assets|images|stylesheets)/ + to + https://$1channel5.com/$2/ + + + from + ^http://fwd(?:cdn)?\.channel5\.com/ + to + https://fwd.channel5.com/ + + + from + ^http://sso\.(?:channel5\.com|five\.tv)/ + to + https://sso.channel5.com/ + + + from + ^http://wwwcdn\.channel5\.com/ + to + https://wwwcdn.channel5.com/ + + + securecookie + + host + ^fwd\.channel5\.com$ + name + .* + + target + + + host + channel5.com + + + host + fwd.channel5.com + + + host + fwdcdn.channel5.com + + + host + sso.channel5.com + + + host + www.channel5.com + + + host + wwwcdn.channel5.com + + + host + oas.five.tv + + + host + sso.five.tv + + + + + ChannelAdvisor.com (partial) + + ruleset + + name + ChannelAdvisor.com (partial) + rule + + from + ^http://t\.channeladvisor\.com/ + to + https://t.channeladvisor.com/ + + target + + host + t.channeladvisor.com + + + + ChannelIntelligence.com (partial) + + ruleset + + name + ChannelIntelligence.com (partial) + rule + + from + ^http://cts(?:-secure)?\.channelintelligence\.com/ + to + https://cts-secure.channelintelligence.com/ + + target + + host + *.channelintelligence.com + + + + Chapman.edu + + ruleset + + name + Chapman.edu + rule + + from + ^http://((?:blogs|inside|social|www)\.)?chapman\.edu/ + to + https://$1chapman.edu/ + + target + + + host + chapman.edu + + + host + *.chapman.edu + + + + + Charity Navigator (false MCB) + + ruleset + + name + Charity Navigator (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?charitynavigator\.org/ + to + https://$1charitynavigator.org/ + + securecookie + + host + ^(?:w*\.)?charitynavigator\.org$ + name + .+ + + target + + + host + charitynavigator.org + + + host + *.charitynavigator.org + + + + + Charity Wings + + ruleset + + name + Charity Wings + platform + mixedcontent + rule + + from + ^http://(www\.)?scrapbookroyalty\.org/ + to + https://www.scrapbookroyalty.org/ + + securecookie + + host + ^((www)?\.)?scrapbookroyalty\.org$ + name + .+ + + target + + + host + scrapbookroyalty.org + + + host + www.scrapbookroyalty.org + + + + + CharityWeb (partial) + + ruleset + + name + CharityWeb (partial) + rule + + from + ^http://ssl\.charityweb\.net/ + to + https://ssl.charityweb.net/ + + securecookie + + host + ^\.charityweb\.net$ + name + ^/globalcompactfoundation/.*$ + + target + + host + *.charityweb.net + + + + Charlotte Nature Museum + + ruleset + + name + Charlotte Nature Museum + rule + + from + ^http://(?:www\.)?charlottenaturemuseum\.org/ + to + https://www.charlottenaturemuseum.org/ + + target + + + host + charlottenaturemuseum.org + + + host + www.charlottenaturemuseum.org + + + + + Chartbeat (partial) + + ruleset + + name + Chartbeat (partial) + rule + + + from + ^http://(static2?\.|www\.)?chartbeat\.com/ + to + https://$1chartbeat.com/ + + + from + ^http://support\.chartbeat\.com/(assets|generated|images|system)/ + to + https://assets.zendesk.com/$1/ + + + from + ^http://([\w-]+)\.chartbeat\.net/ + to + https://$1.chartbeat.net/ + + + target + + + host + chartbeat.com + + + host + *.chartbeat.com + + + host + *.chartbeat.net + + + + + Chartio.com + + ruleset + + name + Chartio.com + rule + + from + ^http://(www\.)?chartio\.com/ + to + https://$1chartio.com/ + + securecookie + + host + ^(?:www\.)?chartio\.com$ + name + .+ + + target + + + host + chartio.com + + + host + www.chartio.com + + + + + Charts in France + + ruleset + + name + Charts in France + rule + + from + ^http://(www\.)?chartsinfrance\.net/ + to + https://$1chartsinfrance.net/ + + securecookie + + host + ^(?:www\.)?chartsinfrance\.net$ + name + .+ + + target + + + host + chartsinfrance.net + + + host + www.chartsinfrance.net + + + + + Chase + + ruleset + + name + Chase + rule + + from + ^http://((?:apply|banking|cards|chaseonline|creditcards|deposits|investments|jpmorgan|locator|mfasa|mobilebanking|payments|privateclient|resources|servicing|stmts|ultimaterewards|www)\.)?chase\.com/ + to + https://$1chase.com/ + + securecookie + + host + ^(?:\.mfasa|privateclient)?\.chase\.com$ + name + .+ + + target + + + host + chase.com + + + host + *.chase.com + + + + + Chase Paymentech.com + + ruleset + + name + Chase Paymentech.com + rule + + from + ^http://(?:www\.)?chasepaymentech\.com/ + to + https://www.chasepaymentech.com/ + + target + + + host + chasepaymentech.com + + + host + www.chasepaymentech.com + + + + + ChatMe.im (partial) + + ruleset + + name + ChatMe.im (partial) + rule + + + from + ^http://((?:cdn|webchat|www)\.)?chatme\.im/ + to + https://$1chatme.im/ + + + from + ^http://support\.chatme\.im/.* + to + https://chatme.im/wp-signup.php?new=support + + + securecookie + + host + ^\.?chatme\.im$ + name + .+ + + target + + + host + chatme.im + + + host + *.chatme.im + + + + + ChatON + + ruleset + + name + ChatON + rule + + + from + ^https?://(?:www\.)?chaton\.com/ + to + https://web.samsungchaton.com/ + + + from + ^https?://(?:adminfront|mobileweb)\.chaton\.com/ + to + https://smm.samsung.com/ + + + from + ^http://(i|s)0\.chatoncdn\.com/ + to + https://$10.chatoncdn.com/ + + + from + ^http://(livemw|web)\.samsungchaton\.com/ + to + https://$1.samsungchaton.com/ + + + securecookie + + host + ^web\.samsungchaton\.com$ + name + .+ + + target + + + host + chaton.com + + + host + *.chaton.com + + + host + *.chatoncdn.com + + + host + *.samsungchaton.com + + + + + ChatSecure + + ruleset + + name + ChatSecure + rule + + from + ^http://(www\.)?chatsecure\.org/ + to + https://$1chatsecure.org/ + + target + + + host + chatsecure.org + + + host + www.chatsecure.org + + + + + Chatango.com + + ruleset + + name + Chatango.com + rule + + from + ^http://([\w-]+\.|(?:www\.)?secure\.)?chatango\.com/ + to + https://$1chatango.com/ + + securecookie + + host + ^\.chatango\.com$ + name + .+ + + target + + + host + chatango.com + + + host + *.chatango.com + + + + + Chatter + + ruleset + + name + Chatter + rule + + + from + ^https?://(?:www\.)?chatter\.com/ + to + https://www.chatter.com/ + + + from + ^http://community\.chatter\.com/ + to + https://community.chatter.com/ + + + securecookie + + host + ^.+\.chatter\.com$ + name + .+ + + target + + + host + chatter.com + + + host + *.chatter.com + + + + + Chaturbate.com (partial) + + ruleset + + name + Chaturbate.com (partial) + rule + + from + ^http://((?:ar|de|ei|en|es|fr|hi|it|jp|ko|nl|pt|ru|tr|www|zh)\.)?chaturbate\.com/ + to + https://$1chaturbate.com/ + + target + + + host + chaturbate.com + + + host + *.chaturbate.com + + + + + Cheap Airport Parking + + ruleset + + name + Cheap Airport Parking + rule + + from + ^http://(www\.)?cheapairportparkingbirmingham\.com/ + to + https://$1cheapairportparkingbirmingham.com/ + + securecookie + + host + ^\.cheapairportparkingbirmingham.com$ + name + .+ + + target + + + host + cheapairportparkingbirmingham.com + + + host + *.cheapairportparkingbirmingham.com + + + + + CheapSSL.com + + ruleset + + name + CheapSSL.com + rule + + + from + ^http://(?:www\.)?cheapssl\.com/[^?]*\??$ + to + https://www.cheapssls.com/?from=www.cheapssl + + + from + ^http://(?:www\.)?cheapssl\.com/[^?]*\?= + to + https://www.cheapssls.com/?from=www.cheapssl& + + + from + ^http://support\.cheapssl\.com/ + to + https://support.cheapssl.com/ + + + securecookie + + host + ^support\.cheapssl\.com$ + name + .+ + + target + + + host + cheapssl.com + + + host + *.cheapssl.com + + + + + CheapSSLs + + ruleset + + name + CheapSSLs + rule + + from + ^http://(?:www\.)?cheapssls\.com/ + to + https://www.cheapssls.com/ + + target + + + host + www.cheapssls.com + + + host + cheapssls.com + + + + + Cheapass Fiction.com + + ruleset + + name + Cheapass Fiction.com + rule + + from + ^http://(?:www\.)?cheapassfiction\.com/ + to + https://cheapassfiction.com/ + + target + + + host + cheapassfiction.com + + + host + www.cheapassfiction.com + + + + + Check Point (partial) + + ruleset + + name + Check Point (partial) + rule + + + from + ^https?://(?:www\.)?checkpoint\.com/ + to + https://www.checkpoint.com/ + + + from + ^http://(careers|dl3|downloads|forums|sc1|store|supportcenter|usercenter)\.checkpoint\.com/ + to + https://$1.checkpoint.com/ + + + securecookie + + host + ^.+\.checkpoint\.com$ + name + .+ + + target + + + host + checkpoint.com + + + host + *.checkpoint.com + + + + + Check24.de + + ruleset + + name + Check24.de + rule + + + from + ^http://check24\.de/ + to + https://check24.de/ + + + from + ^http://([^/:@]*)\.check24\.de/ + to + https://$1.check24.de/ + + + target + + + host + check24.de + + + host + *.check24.de + + + + + CheckM8 (partial) + + ruleset + + exclusion + + pattern + ^http://(support|www)\. + + name + CheckM8 (partial) + rule + + from + ^http://(\w+)\.checkm8\.com/ + to + https://$1.checkm8.com/ + + target + + host + *.checkm8.com + + + + Checkdomain + + ruleset + + name + Checkdomain + rule + + from + ^http://(www\.)?checkdomain\.de/ + to + https://$1checkdomain.de/ + + securecookie + + host + ^\.www\.checkdomain\.de$ + name + .* + + target + + + host + checkdomain.de + + + host + www.checkdomain.de + + + host + *.www.checkdomain.de + + + + + Checkmarx.com (partial) + + ruleset + + name + Checkmarx.com (partial) + rule + + from + ^http://(www\.)?checkmarx\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1checkmarx.com/ + + target + + + host + checkmarx.com + + + host + www.checkmarx.com + + + + + Checktls.com + + ruleset + + name + Checktls.com + rule + + from + ^http://(www\.)?checktls\.com/ + to + https://www.checktls.com/ + + target + + + host + www.checktls.com + + + host + checktls.com + + + + + CheetahMail + + ruleset + + name + CheetahMail + rule + + + from + ^https?://(?:www\.)?cheetahmail\.com/ + to + https://www.experian.com/cheetahmail/ + + + from + ^http://ebm\.cheetahmail\.com/ + to + https://ebm.cheetahmail.com/ + + + from + ^http://(f\.)?chtah\.com/ + to + https://$1chtah.com/ + + + target + + + host + cheetahmail.com + + + host + *.cheetahmail.com + + + host + chtah.com + + + host + f.chtah.com + + + + + Cheezburger + + ruleset + + exclusion + + + pattern + ^http://(?:advertising|blog|corp|feedback|jobs|sites)\.cheezburger\.com/ + + + pattern + ^https://corp\.cheezburger\.com/(?!(?:copyright-infringement-notification|privacy-policy|terms-of-service)/$) + + + name + Cheezburger + platform + mixedcontent + rule + + + from + ^http://images\.cheezburger\.com/ + to + https://i.chzbgr.com/ + + + from + ^http://support\.cheezburger\.com/ + to + https://cheezburger.support.com/ + + + from + ^http://([\w-]+\.)?cheezburger\.com/ + to + https://$1cheezburger.com/ + + + from + ^https?://chzb\.gr/ + to + https://bit.ly/ + + + from + ^http://(i|s|t)\.chzbgr\.com/ + to + https://$1.chzbgr.com/ + + + downgrade + 1 + from + ^https://(advertising|blog|corp|feedback|jobs|sites)\.cheezburger\.com/?$ + to + http://$1.cheezburger.com/ + + + securecookie + + host + ^www\.cheezburger\.com$ + name + .+ + + target + + + host + cheezburger.com + + + host + *.cheezburger.com + + + host + chzb.gr + + + host + *.chzbgr.com + + + + + Chemical Abstracts Service (partial) + + ruleset + + name + Chemical Abstracts Service (partial) + platform + mixedcontent + rule + + + from + ^https?://cas\.org/ + to + https://www.cas.org/ + + + from + ^http://(my|scifinder|stneasy(?:-japan)?|www)\.cas\.org/ + to + https://$1.cas.org/ + + + securecookie + + host + ^www\.cas\.org$ + name + .+ + + target + + + host + cas.org + + + host + *.cas.org + + + + + Cherenkov Telescope Array + + ruleset + + name + Cherenkov Telescope Array + rule + + from + ^http://www\.cta-observatory\.org/ + to + https://www.cta-observatory.org/ + + securecookie + + host + ^\.www\.cta-observatory\.org$ + name + .+ + + target + + + host + www.cta-observatory.org + + + host + *.www.cta-observatory.org + + + + + Cherry.de + + ruleset + + name + Cherry.de + rule + + from + ^http://(wt\.|www\.)?cherry\.de/ + to + https://$1cherry.de/ + + securecookie + + host + ^(?:www\.)?cherry\.de$ + name + .+ + + target + + + host + cherry.de + + + host + *.cherry.de + + + + + ChessBase-shop.com (partial) + + ruleset + + name + ChessBase-shop.com (partial) + rule + + from + ^http://(www\.)?chessbase-shop\.com/(?=cbshop\.css|pics/|res/|xamlrender) + to + https://$1chessbase-shop.com/ + + target + + + host + chessbase-shop.com + + + host + www.chessbase-shop.com + + + + + Chevronwp7 Labs + + ruleset + + name + Chevronwp7 Labs + rule + + from + ^http://labs\.chevronwp7\.com/ + to + https://labs.chevronwp7.com/ + + securecookie + + host + ^labs\.chevronwp7\.com + name + .* + + target + + host + labs.chevronwp7.com + + + + Chicago Tribune (partial) + + ruleset + + name + Chicago Tribune (partial) + rule + + from + ^http://((?:www\.)?advertise|members|myaccount2)\.chicagotribune\.com/ + to + https://$1.chicagotribune.com/ + + securecookie + + host + ^myaccount2\.chicagotribune\.com$ + name + .+ + + target + + host + *.chicagotribune.com + + + + Chicken Soup for the Soul + + ruleset + + name + Chicken Soup for the Soul + rule + + from + ^http://(www\.)?chickensoup\.com/ + to + https://$1chickensoup.com/ + + securecookie + + host + ^(?:www)?\.chickensoup\.com$ + name + .+ + + target + + + host + chickensoup.com + + + host + *.chickensoup.com + + + + + ChiliProject.org (partial) + + ruleset + + name + ChiliProject.org (partial) + rule + + from + ^http://(www\.)?chiliproject\.org/ + to + https://$1chiliproject.org/ + + securecookie + + host + ^www\.chiliproject\.org$ + name + .+ + + target + + + host + chiliproject.org + + + host + www.chiliproject.org + + + + + Chillicothe Gazette + + ruleset + + name + Chillicothe Gazette + rule + + from + ^https?://(?:cmsimg\.|www\.)?chillicothegazette\.com/ + to + https://www.chillicothegazette.com/ + + securecookie + + host + ^www\.chillicothegazette\.com$ + name + .+ + + target + + + host + chillicothegazette.com + + + host + *.chillicothegazette.com + + + + + ChillingEffects + + ruleset + + name + ChillingEffects + rule + + from + ^http://(images\.|www\.)?chillingeffects\.org/ + to + https://$1chillingeffects.org/ + + target + + + host + chillingeffects.org + + + host + *.chillingeffects.org + + + + + Chime.in + + ruleset + + name + Chime.in + rule + + + from + ^http://(www\.)?chime\.in/ + to + https://$1chime.in/ + + + from + ^http://support\.chime\.in/(assets|external|generated|images|registration|system)/ + to + https://chime.zendesk.com/$2/ + + + securecookie + + host + ^(www\.)?chime\.in$ + name + .* + + target + + + host + chime.in + + + host + *.chime.in + + + + + China Labor Watch + + ruleset + + name + China Labor Watch + rule + + from + ^https?://(?:www\.)?chinalaborwatch\.org/ + to + https://www.chinalaborwatch.org/ + + target + + + host + chinalaborwatch.org + + + host + www.chinalaborwatch.org + + + + + China Payment Services + + ruleset + + name + China Payment Services + rule + + + from + ^https?://(?:www\.)?chinapaymentservices\.com/ + to + https://chinapaymentservices.com/ + + + from + ^http://sales\.chinapaymentservices\.com/ + to + https://sales.chinapaymentservices.com/ + + + securecookie + + host + ^(.*\.)?chinapaymentservices\.com$ + name + .* + + target + + + host + chinapaymentservices.com + + + host + *.chinapaymentservices.com + + + + + ChipIn (partial) + + ruleset + + name + ChipIn (partial) + rule + + from + ^http://(www\.)?chipin\.com/(cs|image)s/ + to + https://$1chipin.com/$2s/ + + target + + + host + chipin.com + + + host + www.chipin.com + + + + + ChipLand.hu + + ruleset + + name + ChipLand.hu + rule + + from + ^http://www\.chipland\.hu/ + to + https://www.chipland.hu/ + + securecookie + + host + ^www\.chipland\.hu$ + name + .+ + + target + + host + www.chipland.hu + + + + Chipworks + + ruleset + + name + Chipworks + rule + + from + ^http://(drm\.|www\.)?chipworks\.com/ + to + https://$1chipworks.com/ + + securecookie + + host + ^www\.chipworks\.com$ + name + .+ + + target + + + host + chipworks.com + + + host + *.chipworks.com + + + + + Chistes Cortos Buenos.com (partial) + + ruleset + + name + Chistes Cortos Buenos.com (partial) + rule + + + from + ^http://css\.chistescortosbuenos\.com/ + to + https://d3ju1pxrijkg8e.cloudfront.net/ + + + from + ^http://images\.chistescortosbuenos\.com/ + to + https://dvlos4rx2v54l.cloudfront.net/ + + + target + + host + *.chistescortosbuenos.com + + + + Chitika (partial) + + ruleset + + name + Chitika (partial) + rule + + + from + ^http://(www\.)?chitika\.com/ + to + https://$1chitika.com/ + + + from + ^http://(affiliate|blog|publishers)\.chitika\.com/ + to + https://$1.chitika.com/ + + + securecookie + + host + ^(?:.*\.)?chitika\.com$ + name + .* + + target + + + host + chitika.com + + + host + *.chitika.com + + + + + Chitika.net (partial) + + ruleset + + name + Chitika.net (partial) + rule + + + from + ^https?://(www\.)?chitika\.net/ + to + https://$1chitika.com/ + + + from + ^http://(images|scripts)\.chitika\.net/ + to + https://$1.chitika.net/ + + + target + + + host + chitika.net + + + host + *.chitika.net + + + + + Chlomo.org (partial) + + ruleset + + name + Chlomo.org (partial) + rule + + from + ^http://(www\.)?chlomo\.org/(?=chan/(?:\w+/thumb/|favicon-v2\.png|img/|static/|stylesheets/)|favicon\.ico) + to + https://$1chlomo.org/ + + target + + + host + chlomo.org + + + host + www.chlomo.org + + + + + Chocolatey.org + + ruleset + + name + Chocolatey.org + rule + + from + ^http://(www\.)?chocolatey\.org/ + to + https://$1chocolatey.org/ + + securecookie + + host + ^chocolatey\.org$ + name + .+ + + target + + + host + chocolatey.org + + + host + www.chocolatey.org + + + + + Choopa.com + + ruleset + + name + Choopa.com + rule + + + from + ^http://(?:www\.)?choopa\.com/ + to + https://www.choopa.com/ + + + from + ^http://my\.choopa\.com/ + to + https://my.choopa.com/ + + + securecookie + + host + ^(?:my|www)\.choopa\.com$ + name + .+ + + target + + + host + choopa.com + + + host + *.choopa.com + + + + + Chris Coyne.com + + ruleset + + name + Chris Coyne.com + rule + + from + ^http://(www\.)?chriscoyne\.com/ + to + https://$1chriscoyne.com/ + + target + + + host + chriscoyne.com + + + host + www.chriscoyne.com + + + + + Chris Newland.com + + ruleset + + name + Chris Newland.com + rule + + from + ^http://(www\.)?chrisnewland\.com/ + to + https://$1chrisnewland.com/ + + securecookie + + host + ^(?:www\.)?chrisnewland\.com$ + name + .+ + + target + + + host + chrisnewland.com + + + host + www.chrisnewland.com + + + + + Chris-Lamb.co.uk + + ruleset + + name + Chris-Lamb.co.uk + rule + + from + ^http://(www\.)?chris-lamb\.co\.uk/ + to + https://$1chris-lamb.co.uk/ + + target + + + host + chris-lamb.co.uk + + + host + www.chris-lamb.co.uk + + + + + Chris.lu + + ruleset + + name + Chris.lu + rule + + from + ^http://(www\.)?chris\.lu/ + to + https://$1chris.lu/ + + target + + + host + chris.lu + + + host + www.chris.lu + + + + + Chrisanthemums + + ruleset + + name + Chrisanthemums + rule + + from + ^http://(?:www\.)?chrisanthemums\.com/ + to + https://www.chrisanthemums.com/ + + securecookie + + host + ^(?:www)?\.chrisanthemums\.com$ + name + .+ + + target + + + host + chrisanthemums.com + + + host + *.chrisanthemums.com + + + + + Christian Prayer Center + + ruleset + + name + Christian Prayer Center + platform + mixedcontent + rule + + from + ^http://(www\.)?christianprayercenter\.com/ + to + https://$1christianprayercenter.com/ + + target + + + host + christianprayercenter.com + + + host + www.christianprayercenter.com + + + + + ChristianGale.com + + ruleset + + name + ChristianGale.com + rule + + from + ^http://(www\.)?christiangale\.com/ + to + https://$1christiangale.com/ + + securecookie + + host + ^(?:w*\.)?christiangale\.com$ + name + .+ + + target + + + host + christiangale.com + + + host + *.christiangale.com + + + + + Chrome Data + + ruleset + + name + Chrome Data + rule + + + from + ^http://login\.carbook\.com/ + to + https://login.carbook.com/ + + + from + ^http://((?:autodiscover|mail|mopar|webmail|www)\.)?chromedata\.com/ + to + https://$1chromedata.com/ + + + securecookie + + + host + ^login\.carbook\.com$ + name + .+ + + + host + ^.+\.chromedata\.com$ + name + .+ + + + target + + + host + login.carbook.com + + + host + chromedata.com + + + host + *.chromedata.com + + + + + Chrome Rooms.com + + ruleset + + name + Chrome Rooms.com + rule + + from + ^http://(www\.)?chromerooms\.com/ + to + https://$1chromerooms.com/ + + target + + + host + chromerooms.com + + + host + www.chromerooms.com + + + + + Chrome Spinners + + ruleset + + name + Chrome Spinners + rule + + from + ^http://(www\.)?chromespinners\.com/ + to + https://$1chromespinners.com/ + + securecookie + + host + ^(?:.*\.)?chromespinners\.com$ + name + .+ + + target + + + host + chromespinners.com + + + host + *.chromespinners.com + + + + + Chrome Status.com + + ruleset + + name + Chrome Status.com + rule + + from + ^http://(?:www\.)?chromestatus\.com/ + to + https://www.chromestatus.com/ + + target + + + host + chromestatus.com + + + host + www.chromestatus.com + + + + + Chrome.com (partial) + + ruleset + + name + Chrome.com (partial) + rule + + from + ^http://developer\.chrome\.com/ + to + https://developer.chrome.com/ + + target + + host + developer.chrome.com + + + + Chromium.org + + ruleset + + name + Chromium.org + rule + + + from + ^http://(?:www\.)?chromium\.org/ + to + https://www.chromium.org/ + + + from + ^http://(blog|bugs|build|codereview|codesearch|cs|dev|developer|gerrit|git|planet|src)\.chromium\.org/ + to + https://$1.chromium.org/ + + + from + ^http://(www\.)?cr(bug|rev)\.com/ + to + https://$1cr$2.com/ + + + securecookie + + host + ^codereview\.chromium\.org$ + name + .+ + + target + + + host + chromium.org + + + host + *.chromium.org + + + host + crbug.com + + + host + www.crbug.com + + + host + crrev.com + + + host + www.crrev.com + + + + + ChroniX Radio.com + + ruleset + + name + ChroniX Radio.com + rule + + from + ^http://(www\.)?chronixradio\.com/ + to + https://$1chronixradio.com/ + + securecookie + + host + ^\.chronixradio\.com$ + name + .+ + + target + + + host + chronixradio.com + + + host + *.chronixradio.com + + + + + Chronicle + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?chronicle\.com/blognetwork/ + + name + Chronicle + rule + + from + ^http://(?:www\.)?chronicle\.com/ + to + https://chronicle.com/ + + securecookie + + host + ^(?:www\.)?chronicle\.com$ + name + .+ + + target + + + host + chronicle.com + + + host + www.chronicle.com + + + + + Church Hill Classics (partial) + + ruleset + + name + Church Hill Classics (partial) + rule + + from + ^http://(www\.)?diplomaframe\.com/(DesktopModules/|home/login|images/|js/|Portals/|Resources/|(?:Script|Web)Resource\.axd) + to + https://$1diplomaframe.com/$1 + + target + + + host + diplomaframe.com + + + host + www.diplomaframe.com + + + + + Ciao (partial) + + ruleset + + name + Ciao (partial) + rule + + + from + ^http://(de|uk)-img([12])\.ciao\.com/ + to + https://$1-img$2.ciao.com/ + + + from + ^http://(www\.)?ciao\.co\.uk/(captcha/|efb_[\d_]+/|login\.php|reg\.php) + to + https://$1ciao.co.uk/$2 + + + from + ^http://(www\.)?ciao\.de/([\w/]+/css/|favicon\.ico) + to + https://$1ciao.de/$1 + + + target + + + host + *.ciao.com + + + host + ciao.de + + + host + www.ciao.de + + + + + Cihar.com (partial) + + ruleset + + name + Cihar.com (partial) + rule + + from + ^http://(blog|stats)\.cihar\.com/ + to + https://$1.cihar.com/ + + target + + host + *.cihar.com + + + + Cilk Plus.org + + ruleset + + name + Cilk Plus.org + rule + + from + ^http://(?:www\.)?cilkplus\.org/ + to + https://www.cilkplus.org/ + + target + + + host + cilkplus.org + + + host + www.cilkplus.org + + + + + Cincinnati.com (partial) + + ruleset + + name + Cincinnati.com (partial) + rule + + + from + ^http://((?:classifiedads|local|nky|secure|www)\.)?cincinnati\.com/ + to + https://$1cincinnati.com/ + + + from + ^http://(?:cinweekly|rodeo)\.cincinnati\.com/+(?:\?.*)?$ + to + https://cincinnati.com/thingstodo/ + + + from + ^http://(?:cmsimg|news)\.cincinnati\.com/ + to + https://news.cincinnati.com/ + + + from + ^http://deals\.cincinnati\.com/+(?:\?.*)?$ + to + https://cin.planetdiscover.com/sp?aff=1180 + + + from + ^http://deals\.cincinnati\.com/ + to + https://cin.planetdiscover.com/ + + + from + ^http://finance\.cincinnati\.com/+(?:\?.*)?$ + to + https://studio-5.financialcontent.com/gannett.theenquirer + + + from + ^http://finance\.cincinnati\.com/ + to + https://studio-5.financialcontent.com/ + + + from + ^http://rodeo\.cincinnati\.com/getlocal/all\.aspx + to + https://local.cincinnati.com/community/ + + + from + ^http://rodeo\.cincinnati\.com/re/+(?:\?.*)?$ + to + https://local.cincinnati.com/realestatenews/ + + + securecookie + + host + ^(?:classifiedads|local)\.cincinnati\.com$ + name + .+ + + target + + + host + cincinnati.com + + + host + *.cincinnati.com + + + + + Cinder (partial) + + ruleset + + name + Cinder (partial) + rule + + from + ^http://forum\.libcinder\.org/ + to + https://forum.libcinder.org/ + + securecookie + + host + ^forum\.libcinder\.org$ + name + .+ + + target + + host + forum.libcinder.org + + + + CineMovies + + ruleset + + name + CineMovies + rule + + + from + ^https?://(?:www\.)?cinemovies\.fr/ + to + https://www.cinemovies.fr/ + + + from + ^http://static1\.(cinemovies|purecine)\.fr/ + to + https://static1.$1.fr/ + + + from + ^https?://(?:www\.)?purecine\.fr/(?:\?.*)? + to + https://www.cinemovies.fr/ + + + securecookie + + host + ^\.cinemovies\.fr$ + name + .+ + + target + + + host + cinemovies.fr + + + host + *.cinemovies.fr + + + host + purecine.fr + + + host + *.purecine.fr + + + + + CineStar + + ruleset + + name + CineStar + rule + + from + ^http://(www\.)?cinestar\.de/ + to + https://www.cinestar.de/ + + target + + + host + cinestar.de + + + host + www.cinestar.de + + + + + Cineclick.com.br (partial) + + ruleset + + name + Cineclick.com.br (partial) + rule + + from + ^http://static\.cineclick\.com\.br/ + to + https://static.cineclick.com.br/ + + target + + host + static.cineclick.com.br + + + + CinemaNow (partial) + + ruleset + + name + CinemaNow (partial) + rule + + + from + ^https?://(?:www\.)?cinemanow\.com/ + to + https://www.cinemanow.com/ + + + from + ^http://cache\.cinemanow\.com/ + to + https://cache.cinemanow.com/ + + + securecookie + + host + ^www\.cinemanow\.com$ + name + .+ + + target + + + host + cinemanow.com + + + host + *.cinemanow.com + + + + + Cinfu.com (partial) + + ruleset + + name + Cinfu.com (partial) + rule + + from + ^http://(panel\.)?cinfu\.com/ + to + https://$1cinfu.com/ + + securecookie + + host + ^\.?panel\.cinfu\.com$ + name + .+ + + target + + + host + cinfu.com + + + host + *.cinfu.com + + + + + CipherLaw + + ruleset + + name + CipherLaw + rule + + from + ^http://(www\.)?cipherlawgroup\.com/ + to + https://$1cipherlawgroup.com/ + + securecookie + + host + ^(?:www\.)?cipherlawgroup\.com$ + name + .+ + + target + + + host + cipherlawgroup.com + + + host + www.cipherlawgroup.com + + + + + CipherShed.org + + ruleset + + name + CipherShed.org + rule + + from + ^http://((?:forum|lists|wiki|www)\.)?ciphershed\.org/ + to + https://$1ciphershed.org/ + + target + + + host + ciphershed.org + + + host + *.ciphershed.org + + + + + Cipherli.st + + ruleset + + name + Cipherli.st + rule + + from + ^http://cipherli\.st/ + to + https://cipherli.st/ + + target + + host + cipherli.st + + + + Cir.ca + + ruleset + + name + Cir.ca + rule + + from + ^http://((?:backupblog|blog|help|www)\.)?cir\.ca/ + to + https://$1cir.ca/ + + securecookie + + host + ^(?:\.|www\.)?cir\.ca$ + name + .+ + + target + + + host + cir.ca + + + host + *.cir.ca + + + + + Circle of Moms + + ruleset + + name + Circle of Moms + rule + + + from + ^https?://(?:www\.)?circleofmoms\.com/ + to + https://www.circleofmoms.com/ + + + from + ^https?://imagelib4\.circleofmoms\.com/ + to + https://dx7naiqi3v8zr.cloudfront.net/ + + + from + ^https?://images3\.circleofmoms\.com/ + to + https://d2sshc984jwlg9.cloudfront.net/ + + + securecookie + + host + ^www\.circleofmoms\.com$ + name + .+ + + target + + + host + circleofmoms.com + + + host + *.circleofmoms.com + + + + + Circuitspro.name + + ruleset + + name + Circuitspro.name + rule + + from + ^http://(www\.)?circuitspro\.name/ + to + https://$1circuitspro.com/ + + securecookie + + host + ^(?:\.|www\.)?circuitspro\.name$ + name + .+ + + target + + + host + circuitspro.name + + + host + *.circuitspro.name + + + + + Circular Hub + + ruleset + + name + Circular Hub + rule + + + from + ^https?://(?:www\.)?circularhub\.com/ + to + https://www.circularhub.com/ + + + from + ^http://(?:api|editorials)\.circularhub\.com/ + to + https://editorials.merchants.wishabi.ca/ + + + securecookie + + host + ^www\.circularhub\.com$ + name + .+ + + target + + + host + circularhub.com + + + host + *.circularhub.com + + + + + Cirrus Media.com.au (partial) + + ruleset + + name + Cirrus Media.com.au (partial) + rule + + from + ^http://(ccbnstatic|media)\.cirrusmedia\.com\.au/ + to + https://$1.cirrusmedia.com.au/ + + target + + host + *.cirrusmedia.com.au + + + + Cirtex Hosting.com + + ruleset + + name + Cirtex Hosting.com + rule + + from + ^http://(www\.)?cirtexhosting\.com/ + to + https://$1cirtexhosting.com/ + + target + + + host + cirtexhosting.com + + + host + www.cirtexhosting.com + + + + + Cisco Learning System.com + + ruleset + + name + Cisco Learning System.com + rule + + from + ^http://www\.ciscolearningsystem\.com/ + to + https://www.ciscolearningsystem.com/ + + securecookie + + host + ^www\.ciscolearningsystem\.com$ + name + .+ + + target + + host + www.ciscolearningsystem.com + + + + Cisco.mobi (partial) + + ruleset + + name + Cisco.mobi (partial) + rule + + from + ^http://cln\.cisco\.mobi/ + to + https://cln.cisco.mobi/ + + securecookie + + host + ^(?:cln)?\.cisco\.mobi$ + name + .+ + + target + + host + cln.cisco.mobi + + + + Citadium.com (partial) + + ruleset + + name + Citadium.com (partial) + rule + + + from + ^http://citadium\.com/.* + to + https://www.citadium.com/ + + + from + ^http://www\.citadium\.com/(?=elmt/|favicon\.ico|js/|login(?:$|[?/])|medias/|spinner\.gif|_ui/) + to + https://www.citadium.com/ + + + securecookie + + host + ^\.citadium\.com$ + name + ^__utm\w$ + + target + + + host + citadium.com + + + host + *.citadium.com + + + + + CiteULike + + ruleset + + name + CiteULike + rule + + + from + ^http://citeulike\.org/ + to + https://www.citeulike.org/ + + + from + ^http://www\.citeulike\.org/(login|register|static/) + to + https://www.citeulike.org/$1 + + + target + + + host + citeulike.org + + + host + www.citeulike.org + + + + + Citi Alumni Network + + ruleset + + name + Citi Alumni Network + rule + + from + ^http://(?:www\.)?citialumninetwork\.com/ + to + https://www.citialumninetwork.com/ + + securecookie + + host + ^www\.citialumninetwork\.com$ + name + .+ + + target + + + host + citialumninetwork.com + + + host + www.citialumninetwork.com + + + + + Citi.com + + ruleset + + name + Citi.com + rule + + + from + ^http://((?:creditcards|chat\.online|www)\.)?citi\.com/ + to + https://$1citi.com/ + + + from + ^http://thankyoucard\.citi\.com/(\?.*)?$ + to + https://online.citibank.com/US/JRS/portal/template.do?ID=ThankYouCards$1 + + + securecookie + + + host + ^\.citi\.com$ + name + ^(?:mbox|ss_pers|ss_sess)$ + + + host + ^(?:(?:chat\.online|creditcards|www)\.)?citi\.com$ + name + .+ + + + target + + + host + citi.com + + + host + *.citi.com + + + + + Citigroup (partial) + + ruleset + + name + Citigroup (partial) + rule + + from + ^http://jobs\.citigroup\.com/ + to + https://jobs.citigroup.com/ + + securecookie + + host + ^jobs\.citigroup\.com$ + name + .+ + + target + + host + jobs.citigroup.com + + + + Citizenfour Film.com + + ruleset + + name + Citizenfour Film.com + rule + + from + ^http://(www\.)?citizenfourfilm\.com/ + to + https://$1citizenfourfilm.com/ + + securecookie + + host + ^citizenfourfilm\.com$ + name + .+ + + target + + + host + citizenfourfilm.com + + + host + www.citizenfourfilm.com + + + + + CitizensInformation + + ruleset + + name + CitizensInformation + rule + + from + ^http://(?:www\.)?citizensinformation\.ie/ + to + https://www.citizensinformation.ie/ + + target + + + host + www.citizensinformation.ie + + + host + citizensinformation.ie + + + + + Citrix (partial) + + ruleset + + exclusion + + pattern + ^http://search\.citrix\.com/(?!favicon\.ico) + + name + Citrix (partial) + rule + + + from + ^http://(?:www\.)?citrix\.com/ + to + https://www.citrix.com/ + + + from + ^http://(blogs|eu|search|support)\.citrix\.com/ + to + https://$1.citrix.com/ + + + from + ^http://hdx\.citrix\.com/$ + to + https://www.citrix.com/products/xendesktop/features/high-def-experience.html + + + from + ^http://cdn\.ws\.citrix\.com/ + to + https://c558080.ssl.cf2.rackcdn.com/ + + + from + ^http://(news|support)\.citrixonline\.com/ + to + https://$1.citrixonline.com/ + + + from + ^http://www\.gotoassist\.com/ + to + https://www.gotoassist.com/ + + + from + ^http://(?:www\.)?gotomeeting\.com/(default|images)/ + to + https://www3.gotomeeting.com/$1/ + + + from + ^http://www([1-4])\.gotomeeting\.com/ + to + https://www$1.gotomeeting.com/ + + + from + ^http://student\.gototraining\.com/ + to + https://student.gototraining.com/ + + + from + ^http://(?:www\.)?gotowebinar\.com/ + to + https://www.gotowebinar.com/ + + + from + ^http://attendee\.gotowebinar\.com/ + to + https://attendee.gotowebinar.com/ + + + securecookie + + + host + ^(?:.*\.)?citrix\.com$ + name + .+ + + + host + ^www[1-4]gotomeeting\.com$ + name + .+ + + + host + .*\.gototraining\.com$ + name + .+ + + + host + ^attendee\.gotowebinar\.com$ + name + .+ + + + target + + + host + citrix.com + + + host + *.citrix.com + + + host + *.citrixonline.com + + + host + www.gotoassist.com + + + host + gotomeeting.com + + + host + *.gotomeeting.com + + + host + *.gototraining.com + + + host + gotowebinar.com + + + host + *.gotowebinar.com + + + + + Citrusbyte.com + + ruleset + + name + Citrusbyte.com + rule + + from + ^http://(?:www\.)?citrusbyte\.com/ + to + https://citrusbyte.com/ + + securecookie + + host + ^(?:www\.)?citrusbyte\.com$ + name + .+ + + target + + + host + citrusbyte.com + + + host + www.citrusbyte.com + + + + + City Link + + ruleset + + name + City Link + platform + mixedcontent + rule + + from + ^http://(www\.)?city-link\.co\.uk/ + to + https://www.city-link.co.uk/ + + target + + + host + city-link.co.uk + + + host + www.city-link.co.uk + + + + + City Mail + + ruleset + + name + City Mail + rule + + from + ^http://(www\.)?citymail\.com/ + to + https://$1citymail.com/ + + securecookie + + host + ^(www\.)?cityemail\.com$ + name + .* + + target + + + host + cityemail.com + + + host + www.cityemail.com + + + + + City University London + + ruleset + + name + City University London + rule + + + from + ^https?://(?:www\.)?(soi\.)?city\.ac\.uk/ + to + https://www.$1city.ac.uk/ + + + from + ^http://s1\.city\.ac\.uk/ + to + https://s1.city.ac.uk/ + + + securecookie + + host + ^\.www\.city\.ac\.uk$ + name + .+ + + target + + + host + city.ac.uk + + + host + *.city.ac.uk + + + host + www.soi.city.ac.uk + + + host + *.www.city.ac.uk + + + + + City University of New York (partial) + + ruleset + + name + City University of New York (partial) + rule + + from + ^http://(www\.)?cuny\.edu/ + to + https://$1cuny.edu/ + + securecookie + + host + ^\.cuny\.edu$ + name + ^__utm\w$ + + target + + + host + cuny.edu + + + host + *.cuny.edu + + + + + City of Chicago + + ruleset + + name + City of Chicago + platform + mixedcontent + rule + + + from + ^https?://(cityof|explore)chicago\.org/ + to + https://www.$1chicago.org/ + + + from + ^https?://mayor\.cityofchicago\.org/ + to + https://www.cityofchicago.org/content/city/en/depts/mayor.html + + + from + ^http://(data|www)\.cityofchicago\.org/ + to + https://$1.cityofchicago.org/ + + + from + ^http://www\.explorechicago\.com/ + to + https://www.explorechicago.com/ + + + securecookie + + host + ^.*\.(cityof|explore)chicago\.org$ + name + .* + + target + + + host + cityofchicago.org + + + host + *.cityofchicago.org + + + host + explorechicago.org + + + host + *.explorechicago.org + + + + + City of Mountain View (partial) + + ruleset + + name + City of Mountain View (partial) + rule + + from + ^https?://(?:www\.)?mountainview\.gov/ + to + https://www.mountainview.gov/ + + securecookie + + host + ^www\.mountainview\.gov$ + name + .+ + + target + + + host + mountainview.gov + + + host + www.mountainview.gov + + + + + City of Portland, OR + + ruleset + + name + City of Portland, OR + rule + + from + ^http://(?:www\.)?portlandonline\.com/ + to + https://www.portlandonline.com/ + + target + + + host + www.portlandonline.com + + + host + portlandonline.com + + + + + City of Seattle (partial) + + ruleset + + name + City of Seattle (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?seattle\.gov/ + to + https://www.seattle.gov/ + + + from + ^https?://citylink\.seattle\.gov/ + to + https://www.seattle.gov/citylink/ + + + from + ^http://(data|my|wald1|web1)\.seattle\.gov/ + to + https://$1.seattle.gov/ + + + from + ^https?://web[56]\.seattle\.gov/ + to + https://web6.seattle.gov/ + + + securecookie + + host + ^.+\.seattle\.gov$ + name + .+ + + target + + + host + seattle.gov + + + host + *.seattle.gov + + + + + City of Sedona (partial) + + ruleset + + name + City of Sedona (partial) + rule + + from + ^https?://(?:www\.)?sedonaaz\.gov/([sS]edonacms/(?:\w+\.css$|_gfx/|Modules/)) + to + https://www.sedonaaz.gov/$1 + + target + + + host + sedonaaz.gov + + + host + www.sedonaaz.gov + + + + + City.com.ua + + ruleset + + name + City.com.ua + rule + + from + ^http://(www\.)?city\.com\.ua/ + to + https://$1city.com.ua/ + + securecookie + + host + ^\.?city\.com\.ua$ + name + .+ + + target + + + host + city.com.ua + + + host + *.city.com.ua + + + + + Citypaketet (partial) + + ruleset + + name + Citypaketet (partial) + rule + + from + ^https?://sifomedia\.citypaketet\.se/ + to + https://ssl.sifomedia.se/ + + securecookie + + host + ^ssl\.sifomedia\.se$ + name + .* + + target + + host + sifomedia.citypaketet.se + + + + Citywerkz.com + + ruleset + + name + Citywerkz.com + rule + + from + ^http://(www\.)?citywerkz\.com/ + to + https://$1citywerkz.com/ + + securecookie + + host + ^(?:www)?\.citywerkz\.com$ + name + .+ + + target + + + host + citywerkz.com + + + host + *.citywerkz.com + + + + + Ciuvo.com + + ruleset + + name + Ciuvo.com + rule + + from + ^http://((?:api|secure|www)\.)?ciuvo\.com/ + to + https://$1ciuvo.com/ + + target + + + host + ciuvo.com + + + host + *.ciuvo.com + + + + + CiviCRM + + ruleset + + name + CiviCRM + rule + + from + ^http://(www\.)?civicrm\.org/ + to + https://$1civicrm.org/ + + securecookie + + host + ^\.civicrm\.org$ + name + .+ + + target + + + host + civicrm.org + + + host + *.civicrm.org + + + + + CivicScience (partial) + + ruleset + + name + CivicScience (partial) + rule + + + from + ^http://(beta\.|www\.)?civicscience\.com/ + to + https://$1civicscience.com/ + + + from + ^http://blog\.civicscience\.com/(display/|favicon\.ico|layout/|storage/|universal/) + to + https://civicscience.squarespace.com/$1 + + + target + + + host + civicscience.com + + + host + *.civicscience.com + + + + + Civil Aviation Authority + + ruleset + + name + Civil Aviation Authority + rule + + from + ^http://(www\.)?caa\.co\.uk/ + to + https://$1caa.co.uk/ + + target + + + host + caa.co.uk + + + host + www.caa.co.uk + + + + + Cl.ly (partial) + + ruleset + + name + Cl.ly (partial) + rule + + + from + ^http://((?:api|my|www)\.)?cl\.ly/ + to + https://$1cl.ly/ + + + from + ^http://f\.cl\.ly/ + to + https://s3.amazonaws.com/f.cl.ly/ + + + from + ^http://(api|my)\.cld\.me/ + to + https://$1.cld.me/ + + + from + ^http://assets\.my\.cld\.me/ + to + https://d9yac136u048z.cloudfront.net/ + + + securecookie + + host + ^my\.cl(?:\.ly|d\.me)$ + name + .+ + + target + + + host + cl.ly + + + host + *.cl.ly + + + host + *.cld.me + + + + + Claim Forms Plus + + ruleset + + name + Claim Forms Plus + rule + + from + ^http://(www\.)?claimformsplus\.com/ + to + https://$1claimformsplus.com/ + + securecookie + + host + ^\.claimformsplus\.com$ + name + .+ + + target + + + host + claimformsplus.com + + + host + *.claimformsplus.com + + + + + ClamAV.net (partial) + + ruleset + + name + ClamAV.net (partial) + rule + + from + ^http://bugzilla\.clamav\.net/ + to + https://bugzilla.clamav.net/ + + target + + host + bugzilla.clamav.net + + + + Claranet (partial) + + ruleset + + name + Claranet (partial) + rule + + + from + ^http://(corporate|customer|webmail(\.bln\.de)?|(nswebmail|portal)\.uk)\.clara\.net/ + to + https://$1.clara.net/ + + + from + ^http://admin\.clarahost\.co\.uk/ + to + https://admin.clarahost.co.uk/ + + + from + ^http://pop\.claranet\.de/ + to + https://pop.claranet.de/ + + + from + ^http://webmail\.claranet\.(nl|pt)/ + to + https://webmail.claranet.$1/ + + + from + ^http://servicecenter\.claranet\.nl/ + to + https://servicecenter.claranet.nl/ + + + from + ^http://secure\.claranetsoho\.co\.uk/ + to + https://secure.claranetsoho.co.uk/ + + + securecookie + + + host + ^(.*\.)?clara\.net$ + name + .* + + + host + ^admin\.clarahost\.co\.uk$ + name + .* + + + host + ^pop\.claranet\.de$ + name + .* + + + host + ^(.*\.)?claranet\.nl$ + name + .* + + + host + ^webmail\.claranet\.pt$ + name + .* + + + host + ^secure\.claranetsoho\.co\.uk$ + name + .* + + + target + + + host + *.clara.net + + + host + webmail.bln.de.clara.net + + + host + nswebmail.uk.clara.net + + + host + portal.uk.clara.net + + + host + admin.clarahost.co.uk + + + host + pop.claranet.de + + + host + *.claranet.nl + + + host + webmail.claranet.pt + + + host + secure.claranetsoho.co.uk + + + + + Clarion-Ledger + + ruleset + + name + Clarion-Ledger + rule + + from + ^https?://(?:cmsimg\.|www\.)?clarionledger\.com/ + to + https://www.clarionledger.com/ + + securecookie + + host + ^www\.clarionledger\.com$ + name + .+ + + target + + + host + clarionledger.com + + + host + *.clarionledger.com + + + + + ClarityRay (partial) + + ruleset + + name + ClarityRay (partial) + rule + + from + ^http://(www\.)?clarityray\.com/ + to + https://$1clarityray.com/ + + target + + + host + clarityray.com + + + host + www.clarityray.com + + + + + Class-Central.com + + ruleset + + name + Class-Central.com + rule + + from + ^http://(?:www\.)?class-central\.com/ + to + https://www.class-central.com/ + + securecookie + + host + ^www\.class-centra\.com$ + name + .+ + + target + + + host + class-central.com + + + host + www.class-central.com + + + + + ClassZone.com + + ruleset + + name + ClassZone.com + rule + + from + ^http://(www\.)?classzone\.com/ + to + https://classzone.com/ + + target + + + host + www.classzone.com + + + host + classzone.com + + + + + Classmates + + ruleset + + name + Classmates + rule + + from + ^http://secure\.classmates\.com/ + to + https://secure.classmates.com/ + + target + + host + secure.classmates.com + + + + Clean Energy Experts + + ruleset + + name + Clean Energy Experts + rule + + from + ^http://(clients\.|www\.)?cleanenergyexperts\.com/ + to + https://$1cleanenergyexperts.com/ + + securecookie + + host + ^(.*\.)?cleanenergyexperts\.com$ + name + .* + + target + + + host + cleanenergyexperts.com + + + host + *.cleanenergyexperts.com + + + + + Clean Energy Finance Corporation + + ruleset + + name + Clean Energy Finance Corporation + rule + + from + ^http://(?:www\.)?cleanenergyfinancecorp\.com\.au/ + to + https://www.cleanenergyfinancecorp.com.au/ + + target + + + host + cleanenergyfinancecorp.com.au + + + host + *.cleanenergyfinancecorp.com.au + + + + + Clean Energy Regulator + + ruleset + + name + Clean Energy Regulator + rule + + from + ^http://((?:www|ret)\.)?cleanenergyregulator\.gov\.au/ + to + https://$1cleanenergyregulator.gov.au/ + + target + + + host + cleanenergyregulator.gov.au + + + host + *.cleanenergyregulator.gov.au + + + + + CleanPrint.net + + ruleset + + name + CleanPrint.net + rule + + + from + ^http://(www\.)?cleanprint\.net/ + to + https://$1cleanprint.net/ + + + from + ^http://cache-02\.cleanprint\.net/ + to + https://cache-02.cleanprint.net/ + + + target + + + host + cleanprint.net + + + host + *.cleanprint.net + + + + + Clear-Code.org + + ruleset + + name + Clear-Code.org + platform + cacert + rule + + from + ^http://(?:www\.)?clear-code\.com/ + to + https://www.clear-code.com/ + + target + + + host + clear-code.com + + + host + www.clear-code.com + + + + + Clear-link.com + + ruleset + + name + Clear-link.com + rule + + + from + ^http://(?:www\.)?clear-link\.com/+ + to + https://www.clearlink.com/ + + + from + ^http://cms\.clear-link\.com/ + to + https://cms.clear-link.com/ + + + target + + + host + clear-link.com + + + host + *.clear-link.com + + + + + ClearCenter.com (partial) + + ruleset + + name + ClearCenter.com (partial) + rule + + from + ^http://secure\.clearcenter\.com/ + to + https://secure.clearcenter.com/ + + securecookie + + host + ^secure\.clearcenter\.com$ + name + .+ + + target + + host + secure.clearcenter.com + + + + ClearChain + + ruleset + + name + ClearChain + platform + cacert + rule + + from + ^http://(?:www\.)?clearchain\.com/ + to + https://www.clearchain.com/ + + securecookie + + host + ^www\.clearchain\.com$ + name + .* + + target + + + host + clearchain.com + + + host + www.clearchain.com + + + + + Clearlink.com + + ruleset + + name + Clearlink.com + rule + + from + ^http://(www\.)?clearlink\.com/ + to + https://$1clearlink.com/ + + target + + + host + clearlink.com + + + host + www.clearlink.com + + + + + Click and Pledge.com + + ruleset + + name + Click and Pledge.com + rule + + from + ^http://((?:co|forums|portal|www)\.)?clickandpledge\.com/ + to + https://$1clickandpledge.com/ + + securecookie + + host + ^(?:.+\.)?clickandpledge\.com$ + name + .+ + + target + + + host + clickandpledge.com + + + host + *.clickandpledge.com + + + + + Click-Sec.com + + ruleset + + name + Click-Sec.com + rule + + from + ^http://((?:sec-sso|support|www)\.)?click-sec\.com/ + to + https://$1click-sec.com/ + + securecookie + + host + ^support\.click-sec\.com$ + name + .+ + + target + + + host + click-sec.com + + + host + *.click-sec.com + + + + + ClickBank + + ruleset + + name + ClickBank + rule + + + from + ^http://((?:accounts|support|www)\.)?clickbank\.com/ + to + https://$1clickbank.com/ + + + from + ^http://www\.clickbank\.net/+\??$ + to + https://www.clickbank.com/ + + + from + ^http://(?:www\.)?clickbank\.net/.* + to + https://www.clickbank.com/network_abuse.html + + + from + ^http://ssl\.clickbank\.net/ + to + https://ssl.clickbank.net/ + + + securecookie + + + host + ^(?:\.accounts|www)?\.clickbank\.com$ + name + .+ + + + host + ^(?:ssl)?\.clickbank\.net$ + name + .+ + + + target + + + host + clickbank.com + + + host + *.clickbank.com + + + host + clickbank.net + + + host + *.clickbank.net + + + + + ClickEquations.net + + ruleset + + name + ClickEquations.net + rule + + from + ^http://((?:beacon|js|www)\.)?clickequations\.net/ + to + https://$1clickequations.net/ + + securecookie + + host + ^(?:w*\.)?clickequations\.net$ + name + .+ + + target + + + host + clickequations.net + + + host + *.clickequations.net + + + + + ClickFuse + + ruleset + + name + ClickFuse + rule + + from + ^http://srv\.clickfuse\.com/ + to + https://srv.clickfuse.com/ + + target + + host + srv.clickfuse.com + + + + ClickMotive (partial) + + ruleset + + name + ClickMotive (partial) + rule + + + from + ^http://(?:(origin-)|secure)?assets\.clickmotive\.com/ + to + https://$1assets.clickmotive.com/ + + + from + ^http://fusiontools\.clickmotive\.com/ + to + https://fusiontools.clickmotive.com/ + + + target + + host + *.clickmotive.com + + + + ClickOn + + ruleset + + name + ClickOn + rule + + from + ^http://(static\.|www\.)?clickon\.com\.ar/ + to + https://$1clickon.com.ar/ + + securecookie + + host + ^(?:www\.)?clickon\.com\.ar$ + name + .+ + + target + + + host + clickon.com.ar + + + host + *.clickon.com.ar + + + + + ClickPath (partial) + + ruleset + + name + ClickPath (partial) + rule + + from + ^http://analyticssl\.clickpathmedia\.com/ + to + https://analyticssl.clickpathmedia.com/ + + target + + host + analyticssl.clickpathmedia.com + + + + ClickSSL.com + + ruleset + + name + ClickSSL.com + rule + + from + ^http://(www\.)?clickssl\.com/ + to + https://$1clickssl.com/ + + securecookie + + host + ^www\.clickssl\.com$ + name + .+ + + target + + + host + clickssl.com + + + host + www.clickssl.com + + + + + ClickTale + + ruleset + + name + ClickTale + rule + + + from + ^http://(?:www\.)?clicktale\.com/ + to + https://www.clicktale.com/ + + + from + ^http://((?:login|subs)\.app|blog)\.clicktale\.com/ + to + https://$1.clicktale.com/ + + + from + ^http://s\.clicktale\.net/ + to + https://clicktale.pantherssl.com/ + + + from + ^http://cdn\.clicktale\.net/ + to + https://clicktalecdn.sslcs.cdngc.net/ + + + from + ^http://www(07)?\.clicktale\.net/ + to + https://www$1.clicktale.net/ + + + securecookie + + host + .*\.clicktale\.(?:com|net)$ + name + .+ + + target + + + host + clicktale.com + + + host + *.clicktale.com + + + host + *.clicktale.net + + + + + Clickdelivery.gr + + ruleset + + name + Clickdelivery.gr + rule + + from + ^http://(www\.)?clickdelivery\.gr/ + to + https://$1clickdelivery.gr/ + + securecookie + + host + ^(www\.)?clickdelivery\.gr$ + name + .* + + target + + + host + clickdelivery.gr + + + host + *.clickdelivery.gr + + + + + Clickdensity (partial) + + ruleset + + name + Clickdensity (partial) + rule + + from + ^http://j\.clickdensity\.com/ + to + https://j.clickdensity.com/ + + target + + host + j.clickdensity.com + + + + Clickfun Casino + + ruleset + + name + Clickfun Casino + rule + + from + ^http://(cdn77\.|www\.)?clickfun(casino)?\.com/ + to + https://$1clickfun$2.com/ + + securecookie + + host + ^(?:.*\.)?clickfun(?:casino)?\.com$ + name + .+ + + target + + + host + clickfun.com + + + host + *.clickfun.com + + + host + clickfuncasino.com + + + host + *.clickfuncasino.com + + + + + Clicklivechat.com + + ruleset + + name + Clicklivechat.com + rule + + from + ^http://(www\.)?clicklivechat\.com/ + to + https://$1clicklivechat.com/ + + securecookie + + host + ^\.clicklivechat\.com$ + name + .+ + + target + + + host + clicklivechat.com + + + host + *.clicklivechat.com + + + + + Clicksor.com (partial) + + ruleset + + name + Clicksor.com (partial) + rule + + + from + ^http://(admin|ads|serw|signup)\.clicksor\.com/ + to + https://$1.clicksor.com/ + + + from + ^http://pub\.clicksor\.net/ + to + https://ads.clicksor.com/ + + + securecookie + + host + ^\.clicksor\.com$ + name + .+ + + target + + host + *.clicksor.com + + + + Clicktools + + ruleset + + name + Clicktools + rule + + from + ^http://((?:app|mktg|web|www)\.)?clicktools\.com/ + to + https://$1clicktools.com/ + + securecookie + + host + ^(?:.+\.)?clicktools\.com$ + name + .+ + + target + + + host + clicktools.com + + + host + *.clicktools.com + + + + + Climate Central + + ruleset + + name + Climate Central + rule + + from + ^http://(www\.)?climatecentral\.org/ + to + https://$1climatecentral.org/ + + securecookie + + host + ^www\.climatecentral\.org$ + name + .* + + target + + + host + climatecentral.org + + + host + www.climatecentral.org + + + + + ClinicalTrials.gov + + ruleset + + name + ClinicalTrials.gov + rule + + from + ^http://(www\.)?clinicaltrials\.gov/ + to + https://$1clinicaltrials.gov/ + + target + + + host + clinicaltrials.gov + + + host + www.clinicaltrials.gov + + + + + Clinkle.com + + ruleset + + name + Clinkle.com + rule + + from + ^http://(www\.)?clinkle\.com/ + to + https://$1clinkle.com/ + + target + + + host + clinkle.com + + + host + www.clinkle.com + + + + + Clipperz.is + + ruleset + + name + Clipperz.is + rule + + from + ^http://(www\.)?clipperz\.is/ + to + https://$1clipperz.is/ + + target + + + host + clipperz.is + + + host + www.clipperz.is + + + + + Clockworkmod.com + + ruleset + + name + Clockworkmod.com + rule + + from + ^http://(www\.)?clockworkmod\.com/ + to + https://www.clockworkmod.com/ + + target + + + host + www.clockworkmod.com + + + host + clockworkmod.com + + + + + Closerware (partial) + + ruleset + + name + Closerware (partial) + rule + + from + ^http://admin\.closerware\.net/ + to + https://admin.closerware.net/ + + target + + host + admin.closerware.net + + + + Clothing at Tesco.com + + ruleset + + name + Clothing at Tesco.com + rule + + from + ^http://(?:www\.)?clothingattesco\.com/ + to + https://www.clothingattesco.com/ + + securecookie + + host + ^[w.]*\.clothingattesco\.com$ + name + .+ + + target + + + host + clothingattesco.com + + + host + *.clothingattesco.com + + + + + Cloud Access.net (partial) + + ruleset + + name + Cloud Access.net (partial) + rule + + + from + ^https?://(?:www\.)?cloudaccess\.net/ + to + https://www.cloudaccess.net/ + + + from + ^http://billing\.cloudaccess\.net/ + to + https://billing.cloudaccess.net/ + + + securecookie + + host + ^.*\.cloudaccess\.net$ + name + .* + + target + + + host + cloudaccess.net + + + host + *.cloudaccess.net + + + + + Cloud Foundry (partial) + + ruleset + + exclusion + + pattern + ^http://support\.cloudfoundry\.com/(?!generated/|system/) + + name + Cloud Foundry (partial) + rule + + + from + ^http://blog\.cloudfoundry\.com/wp-content/(.+\.(?:jp|pn))g$ + to + https://i0.wp.com/blog.cloudfoundry.com/wp-content/$1g + + + from + ^http://((?:core|support|www)\.)?cloudfoundry\.com/ + to + https://$1cloudfoundry.com/ + + + securecookie + + host + ^core\.cloudfoundry\.com$ + name + .+ + + target + + + host + cloudfoundry.com + + + host + *.cloudfoundry.com + + + + + Cloud Privacy (partial) + + ruleset + + name + Cloud Privacy (partial) + rule + + from + ^https?://files\.cloudprivacy\.net/ + to + https://s3.amazonaws.com/files.cloudprivacy.net/ + + target + + host + files.cloudprivacy.net + + + + Cloud Proven.net + + ruleset + + name + Cloud Proven.net + rule + + from + ^http://(www\.)?cloudproven\.net/ + to + https://$1cloudproven.net/ + + securecookie + + host + ^(?:www)?\.cloudproven\.net$ + name + .+ + + target + + + host + cloudproven.net + + + host + *.cloudproven.net + + + + + Cloud9 + + ruleset + + name + Cloud9 + rule + + from + ^https?://c9\.io/ + to + https://c9.io/ + + securecookie + + host + ^(.*\.)?c9\.io$ + name + .+ + + target + + host + c9.io + + + + CloudAfrica.net + + ruleset + + name + CloudAfrica.net + rule + + from + ^http://(www\.)?cloudafrica\.net/ + to + https://$1cloudafrica.net/ + + securecookie + + host + ^(?:www\.)?cloudafrica\.net$ + name + .+ + + target + + + host + cloudafrica.net + + + host + www.cloudafrica.net + + + + + CloudCracker + + ruleset + + name + CloudCracker + rule + + from + ^http://(www\.)?(cloud|wpa)cracker\.com/ + to + https://$1$2cracker.com/ + + target + + + host + cloudcracker.com + + + host + www.cloudcracker.com + + + host + wpacracker.com + + + host + www.wpacracker.com + + + + + CloudFlare + + ruleset + + name + CloudFlare + rule + + from + ^http://((?:ajax|ar|blog|cdnjs|cdn-static|cfdnscheck|cn|de|developers|es|fr|hu|id|it|jp|nl|no|pl|pt|pt-br|ru|support|sv|tr|www|zh)\.)?cloudflare\.com/ + to + https://$1cloudflare.com/ + + securecookie + + host + ^(?:.*\.)?cloudflare\.com$ + name + .+ + + target + + + host + cloudflare.com + + + host + *.cloudflare.com + + + + + CloudFlare Challenge.com + + ruleset + + name + CloudFlare Challenge.com + rule + + from + ^http://(www\.)?cloudflarechallenge\.com/ + to + https://$1cloudflarechallenge.com/ + + target + + + host + cloudflarechallenge.com + + + host + www.cloudflarechallenge.com + + + + + CloudForge (partial) + + ruleset + + name + CloudForge (partial) + rule + + from + ^http://((?:app|help|www)\.)?cloudforge\.com/ + to + https://$1cloudforge.com/ + + securecookie + + host + ^(?:ap|hel)p\.cloudforge\.com$ + name + .+ + + target + + + host + cloudforge.com + + + host + *.cloudforge.com + + + + + CloudNS.com.au + + ruleset + + name + CloudNS.com.au + rule + + from + ^http://(?:(my\.)|www\.)?cloudns\.com\.au/ + to + https://$1cloudns.com.au/ + + securecookie + + host + ^cloudns\.com\.au$ + name + .+ + + target + + + host + cloudns.com.au + + + host + *.cloudns.com.au + + + + + CloudSigma + + ruleset + + name + CloudSigma + rule + + + from + ^http://((?:autodetect|www|zrh|gui\.zrh)\.)?cloudsigma\.com/ + to + https://$1cloudsigma.com/ + + + from + ^http://status\.cloudsigma\.com/ + to + https://cloudsigma.statuspage.io/ + + + securecookie + + host + ^(?:.*\.)?cloudsigma\.com$ + name + .+ + + target + + + host + cloudsigma.com + + + host + *.cloudsigma.com + + + + + CloudSleuth + + ruleset + + name + CloudSleuth + rule + + from + ^http://(www\.)?cloudsleuth\.net/ + to + https://$1cloudsleuth.net/ + + securecookie + + host + ^www\.cloudsleuth\.net$ + name + .+ + + target + + + host + cloudsleuth.net + + + host + www.cloudsleuth.net + + + + + CloudSponge (partial) + + ruleset + + name + CloudSponge (partial) + rule + + + from + ^https?://(?:www\.)?cloudsponge\.com/(image|javascript|stylesheet)s/ + to + https://www.cloudsponge.com/$1s/ + + + from + ^http://api\.cloudsponge\.com/ + to + https://api.cloudponge.com/ + + + securecookie + + host + ^api\.cloudsponge\.com$ + name + .+ + + target + + + host + cloudsponge.com + + + host + *.cloudsponge.com + + + + + CloudSwitch + + ruleset + + name + CloudSwitch + rule + + from + ^http://(\w+\.)?cloudswitch\.com/ + to + https://$1cloudswitch.com/ + + securecookie + + host + .*cloudswitch\.com$ + name + .* + + target + + + host + cloudswitch.com + + + host + *.cloudswitch.com + + + + + CloudTrax.com + + ruleset + + name + CloudTrax.com + rule + + from + ^http://(help\.|www\.)?cloudtrax\.com/ + to + https://$1cloudtrax.com/ + + target + + + host + cloudtrax.com + + + host + *.cloudtrax.com + + + + + Cloudera.com + + ruleset + + exclusion + + pattern + ^http://blog\.cloudera\.org/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Cloudera.com + rule + + + from + ^http://((?:blog|ccp|community|university|www)\.)?cloudera\.com/ + to + https://$1cloudera.com/ + + + from + ^http://files\.cloudera\.com/ + to + https://s3.amazonaws.com/files.cloudera.com/ + + + from + ^http://images\.go\.cloudera\.com/ + to + https://secure.eloqua.com/ + + + securecookie + + host + ^(?:\.|ccp\.|university\.|www\.)?cloudera\.com$ + name + .+ + + target + + + host + cloudera.com + + + host + *.cloudera.com + + + + + Cloudforce.com + + ruleset + + exclusion + + pattern + ^http://cloudforce\.com/.+ + + name + Cloudforce.com + rule + + + from + ^http://(?:www\.)?cloudforce\.com/.* + to + https://www.salesforce.com/events/ + + + from + ^http://([\w-]+)\.cloudforce\.com/ + to + https://$1.cloudforce.com/ + + + securecookie + + host + ^$ + name + .+ + + target + + + host + cloudforce.com + + + host + *.cloudforce.com + + + + + Cloudfront + + ruleset + + exclusion + + + pattern + ^http://(?:[^/:@\.]+)\.cloudfront\.net/crossdomain\.xml + + + pattern + &Signature= + + + name + Cloudfront + rule + + from + ^http://([^/:@\.]+)\.cloudfront\.net/ + to + https://$1.cloudfront.net/ + + target + + + host + *.cloudfront.net + + + host + www.cloudfront.net + + + + + Cloudhexa Network + + ruleset + + name + Cloudhexa Network + rule + + + from + ^http://www\.cloudhexa\.com/ + to + https://www.cloudhexa.com/ + + + from + ^https?://support\.cloudhexa\.com/ + to + https://cloudhexa.zendesk.com/ + + + securecookie + + host + ^\.(?:www\.)?cloudhexa\.com$ + name + .+ + + target + + + host + *.cloudhexa.com + + + host + *.www.cloudhexa.com + + + + + Cloudinary (partial) + + ruleset + + name + Cloudinary (partial) + rule + + + from + ^http://(www\.)?cloudinary\.com/ + to + https://$1cloudinary.com/ + + + from + ^http://demo-res\.cloudinary\.com/ + to + https://d1c4ogak0lt2ja.cloudfront.net/ + + + from + ^http://(a\d\.)?res\.cloudinary\.com/ + to + https://a248.e.akamai.net/f/1165/1/5m/$1res.cloudinary.com/ + + + from + ^http://support\.cloudinary\.com/(generated|system)/ + to + https://assets.zendesk.com/$1/ + + + securecookie + + host + ^cloudinary\.com$ + name + .+ + + target + + + host + cloudinary.com + + + host + *.cloudinary.com + + + + + Cloudmark + + ruleset + + name + Cloudmark + rule + + from + ^http://(www\.)?cloudmark\.com/ + to + https://cloudmark.com/ + + securecookie + + host + ^(www\.)?cloudmark\.com$ + name + .* + + target + + + host + cloudmark.com + + + host + www.cloudmark.com + + + + + Cloudscaling.com + + ruleset + + name + Cloudscaling.com + rule + + from + ^http://(engineering\.|www\.)?cloudscaling\.com/ + to + https://$1cloudscaling.com/ + + securecookie + + host + ^(?:w*\.)?cloudscaling\.com$ + name + .+ + + target + + + host + cloudscaling.com + + + host + *.cloudscaling.com + + + + + Cloudsecurityalliance.org + + ruleset + + name + Cloudsecurityalliance.org + rule + + from + ^http://((?:blog|ccsk-es|local-cdn|nexus|www)\.)?cloudsecurityalliance\.org/ + to + https://$1cloudsecurityalliance.org/ + + securecookie + + host + ^(?:.*\.)?cloudsecurityalliance\.org$ + name + .+ + + target + + + host + cloudsecurityalliance.org + + + host + *.cloudsecurityalliance.org + + + + + Cloudup.com + + ruleset + + name + Cloudup.com + rule + + from + ^http://((?:i|io6|www)\.)?cloudup\.com/ + to + https://$1cloudup.com/ + + securecookie + + host + ^\.cloudup\.com$ + name + .+ + + target + + + host + cloudup.com + + + host + *.cloudup.com + + + + + Cloudwear.com + + ruleset + + name + Cloudwear.com + rule + + from + ^http://(www\.)?cloudwear\.com/ + to + https://$1cloudwear.com/ + + securecookie + + host + ^(?:w*\.)?cloudwear\.com$ + name + .+ + + target + + + host + cloudwear.com + + + host + *.cloudwear.com + + + + + Club Red Gaming.com (partial) + + ruleset + + name + Club Red Gaming.com (partial) + rule + + from + ^http://lobby\.clubredgaming\.com/ + to + https://lobby.clubredgaming.com/ + + target + + host + lobby.clubredgaming.com + + + + ClubCompy + + ruleset + + name + ClubCompy + rule + + from + ^http://(www\.)?clubcompy\.com/ + to + https://$1clubcompy.com/ + + securecookie + + host + ^clubcompy\.com$ + name + .* + + target + + + host + clubcompy.com + + + host + www.clubcompy.com + + + + + Cluster Connection.com (partial) + + ruleset + + name + Cluster Connection.com (partial) + rule + + from + ^http://(www\.)?clusterconnection\.com/(?=favicon\.ico|(?:members|register)(?:$|[?/])|wordpress/) + to + https://$1clusterconnection.com/ + + target + + + host + clusterconnection.com + + + host + www.clusterconnection.com + + + + + Clusters.de + + ruleset + + name + Clusters.de + rule + + from + ^http://((?:customer|domain|www)\.)?clusters\.de/ + to + https://$1clusters.de/ + + securecookie + + host + ^(?:customer|domain)\.clusters\.de$ + name + .+ + + target + + + host + clusters.de + + + host + *.clusters.de + + + + + Co.uk + + ruleset + + name + Co.uk + platform + firefox + rule + + + from + ^http://carlolly\.co\.uk/ + to + https://carlolly.co.uk/ + + + from + ^http://saturngames\.co\.uk/ + to + https://saturngames.co.uk/ + + + securecookie + + + host + ^carlolly\.co\.uk$ + name + .+ + + + host + ^saturngames\.co\.uk$ + name + .+ + + + target + + + host + carlolly.co.uk + + + host + saturngames.co.uk + + + + + Co3 Sys.com + + ruleset + + name + Co3 Sys.com + rule + + + from + ^http://(?:www\.)?co3sys\.com/ + to + https://www.co3sys.com/ + + + from + ^http://app\.co3sys\.com/ + to + https://app.co3sys.com/ + + + securecookie + + host + ^app\.co3sys\.com$ + name + .+ + + target + + + host + co3sys.com + + + host + *.co3sys.com + + + + + CoNetrix + + ruleset + + name + CoNetrix + rule + + from + ^http://(www\.)?conetrix\.com/ + to + https://$1conetrix.com/ + + securecookie + + host + ^(?:www)?\.conetrix\.com$ + name + .+ + + target + + + host + conetrix.com + + + host + *.conetrix.com + + + + + Coast Digital + + ruleset + + name + Coast Digital + rule + + from + ^http://(www\.)?coastdigital\.co\.uk/ + to + https://coastdigital.co.uk/ + + securecookie + + host + ^(www\.)?coastdigital\.co\.uk$ + name + .* + + target + + + host + coastdigital.co.uk + + + host + www.coastdigital.co.uk + + + + + Coastal Micro Supply (partial) + + ruleset + + name + Coastal Micro Supply (partial) + rule + + from + ^http://(www\.)?coastalmicrosupply\.com/($|catalog\.html|images/|index\.php\?target=auth|skins/) + to + https://$1coastalmicrosupply.com/$2 + + target + + + host + coastalmicrosupply.com + + + host + www.coastalmicrosupply.com + + + + + Cobalt Mania.com + + ruleset + + name + Cobalt Mania.com + rule + + from + ^http://(?:www\.)?cobaltmania\.com/ + to + https://www.cobaltmania.com/ + + securecookie + + host + ^(?:www)?\.cobaltmania.com$ + name + .+ + + target + + + host + cobaltmania.com + + + host + *.cobaltmania.com + + + + + Coclico Project (partial) + + ruleset + + name + Coclico Project (partial) + rule + + from + ^http://forge\.projet-coclico\.org/ + to + https://forge.projet-coclico.org/ + + securecookie + + host + ^forge\.projet-coclico\.org$ + name + .* + + target + + host + forge.projet-coclico.org + + + + Code School.com (partial) + + ruleset + + name + Code School.com (partial) + rule + + from + ^http://(www\.)?codeschool\.com/ + to + https://$1codeschool.com/ + + target + + + host + codeschool.com + + + host + www.codeschool.com + + + + + Code as Craft.com + + ruleset + + name + Code as Craft.com + rule + + from + ^http://(www\.)?codeascraft\.com/ + to + https://$1codeascraft.com/ + + target + + + host + codeascraft.com + + + host + www.codeascraft.com + + + + + Code of Honor + + ruleset + + name + Code of Honor + rule + + from + ^http://(www\.)?codeofhonor\.com/ + to + https://$1codeofhonor.com/ + + target + + + host + codeofhonor.com + + + host + www.codeofhonor.com + + + + + Code.org + + ruleset + + name + Code.org + rule + + from + ^http://((?:forums|learn|support|www)\.)?code\.org/ + to + https://$1code.org/ + + securecookie + + host + ^\.code\.org$ + name + .+ + + target + + + host + code.org + + + host + *.code.org + + + + + Code42.com + + ruleset + + name + Code42.com + rule + + from + ^http://(www\.)?code42\.com/ + to + https://$1code42.com/ + + target + + + host + code42.com + + + host + www.code42.com + + + + + CodeAurora + + ruleset + + name + CodeAurora + rule + + from + ^https?://(?:www\.)?codeaurora\.org/ + to + https://www.codeaurora.org/ + + securecookie + + host + ^\.codeaurora\.org$ + name + .* + + target + + + host + codeaurora.org + + + host + *.codeaurora.org + + + + + CodeHS.com + + ruleset + + name + CodeHS.com + rule + + from + ^http://(www\.)?codehs\.com/ + to + https://$1codehs/ + + target + + + host + codehs.com + + + host + www.codehs.com + + + + + CodePen.io (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:assets|s)\.codepen\.io/+(?:$|\?) + + + pattern + ^http://(?:www\.)?codepen\.io/+(?!favicon\.ico|(?:login|signup)(?:$|[?/])) + + + name + CodePen.io (partial) + rule + + from + ^http://((?:assets|s|www)\.)?codepen\.io/ + to + https://$1codepen.io/ + + target + + + host + codepen.io + + + host + *.codepen.io + + + + + CodeWeavers (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?codeweavers\.(?:com|fr)/(?!(?:about/\w+|login|services/\w+|store)(?:$|\?|/)|css/|images/|js/) + + name + CodeWeavers (partial) + rule + + + from + ^http://(www\.)?codeweavers\.com/ + to + https://$1codeweavers.com/ + + + from + ^http://(?:www\.)?codeweavers\.fr/ + to + https://www.codeweavers.fr/ + + + target + + + host + codeweavers.* + + + host + www.codeweavers.* + + + + + Codebase HQ.com (partial) + + ruleset + + name + Codebase HQ.com (partial) + rule + + from + ^http://(www\.)?codebasehq\.com/(?=favicon\.ico|images/|login(?:$|[?/])|stylesheets/) + to + https://$1codebasehq.com/ + + target + + + host + codebasehq.com + + + host + www.codebasehq.com + + + + + Codecoop (CAcert) + + ruleset + + name + Codecoop (CAcert) + platform + cacert + rule + + + from + ^http://codecoop\.org/ + to + https://codecoop.org/ + + + from + ^http://([^/:@]*)\.codecoop\.org/ + to + https://$1.codecoop.org/ + + + target + + + host + codecoop.org + + + host + *.codecoop.org + + + + + Codecov + + ruleset + + name + Codecov + rule + + from + ^http://(?:www\.)?codecov\.io/ + to + https://codecov.io/ + + target + + + host + codecov.io + + + host + *.codecov.io + + + + + Codefuel.com (partial) + + ruleset + + name + Codefuel.com (partial) + rule + + from + ^http://(accounts|sso)\.codefuel\.com/ + to + https://$1.codefuel.com/ + + securecookie + + + host + ^\.codefuel.com$ + name + ^(?:PERSISTENT_REFERRER_URL|REFERRER_URL|REFID)$ + + + host + ^(?:accounts|sso)\.codefuel.com$ + name + .+ + + + target + + host + *.codefuel.com + + + + Codehaus.org (partial) + + ruleset + + name + Codehaus.org (partial) + rule + + from + ^http://docs\.codehaus\.org/ + to + https://docs.codehaus.org/ + + securecookie + + host + ^docs\.codehaus\.org$ + name + .+ + + target + + host + docs.codehaus.org + + + + Codeplex + + ruleset + + exclusion + + pattern + ^http://(?:download|i[123])\.codeplex\.com/ + + name + Codeplex + rule + + from + ^http://([^/:@\.]+\.)?codeplex\.com/ + to + https://$1codeplex.com/ + + securecookie + + host + ^(?:.*\.)?codeplex\.com$ + name + .+ + + target + + + host + codeplex.com + + + host + *.codeplex.com + + + + + CodersClan.net + + ruleset + + name + CodersClan.net + rule + + from + ^http://(www\.)?codersclan\.net/ + to + https://$1codersclan.net/ + + securecookie + + host + ^(?:www\.)?codersclan\.net$ + name + .+ + + target + + + host + codersclan.net + + + host + www.codersclan.net + + + + + Coderwall + + ruleset + + name + Coderwall + rule + + + from + ^http://(www\.)?coderwall\.com/ + to + https://$1coderwall.com/ + + + from + ^https?://cdn\.coderwall\.com/ + to + https://d2h0j0bhq7ad3b.cloudfront.net/ + + + securecookie + + host + ^(?:www\.)?coderwall\.com$ + name + .+ + + target + + + host + coderwall.com + + + host + *.coderwall.com + + + + + Codesion (partial) + + ruleset + + name + Codesion (partial) + rule + + + from + ^http://(ap|hel)p\.codesion\.com/ + to + https://$1p.codesion.com/ + + + from + ^https?://blog\.codesion\.com/ + to + https://blog.collab.net/ + + + securecookie + + host + ^(?:ap|hel)p\.codesion\.com$ + name + .+ + + target + + + host + app.codesion.com + + + host + blog.codesion.com + + + host + help.codesion.com + + + + + CogMatch.net + + ruleset + + name + CogMatch.net + rule + + from + ^http://s-js\.cogmatch\.net/ + to + https://s-js.cogmatch.net/ + + target + + host + s-js.cogmatch.net + + + + Cogen Media (partial) + + ruleset + + name + Cogen Media (partial) + platform + mixedcontent + rule + + + from + ^http://degica\.com/ + to + https://degica.com/ + + + from + ^http://([\w-]+-cart|dl)\.degica\.com/ + to + https://$1.degica.com/ + + + securecookie + + host + ^\.?[\w-]+-cart\.degica\.com$ + name + .+ + + target + + + host + degica.com + + + host + *.degica.com + + + + + Cognesia.net + + ruleset + + name + Cognesia.net + rule + + from + ^http://www\.cognesia\.net/ + to + https://www.cognesia.net/ + + securecookie + + host + ^(?:resources|www)\.cognesia\.net$ + name + .+ + + target + + host + *.cognesia.net + + + + CohnReznick.com + + ruleset + + name + CohnReznick.com + rule + + from + ^http://(www\.)?cohnreznick\.com/ + to + https://$1cohnreznick.com/ + + target + + + host + cohnreznick.com + + + host + www.cohnreznick.com + + + + + CoinAxis.com + + ruleset + + name + CoinAxis.com + rule + + from + ^http://(www\.)?coinaxis\.com/ + to + https://$1coinaxis.com/ + + securecookie + + host + ^\.?coinaxis\.com$ + name + .+ + + target + + + host + coinaxis.com + + + host + *.coinaxis.com + + + + + CoinDL + + ruleset + + name + CoinDL + rule + + from + ^http://(www\.)?coindl\.com/ + to + https://$1coindl.com/ + + securecookie + + host + ^\.?www\.coindl\.com$ + name + .* + + target + + + host + coindl.com + + + host + www.coindl.com + + + host + *.www.coindl.com + + + + + CoinURL.com + + ruleset + + name + CoinURL.com + rule + + from + ^http://(?:www\.)?coinurl\.com/ + to + https://coinurl.com/ + + securecookie + + host + ^coinurl\.com$ + name + .+ + + target + + + host + coinurl.com + + + host + www.coinurl.com + + + + + Coinbase (partial) + + ruleset + + name + Coinbase (partial) + rule + + + from + ^http://(translate\.|www\.)?coinbase\.com/ + to + https://$1coinbase.com/ + + + from + ^http://status\.coinbase\.com/ + to + https://coinbase.statuspage.io/ + + + securecookie + + host + ^\.?coinbase\.com$ + name + .+ + + target + + + host + coinbase.com + + + host + *.coinbase.com + + + + + Coke CCE.com + + ruleset + + name + Coke CCE.com + rule + + from + ^http://(www\.)?cokecce\.com/ + to + https://$1cokecce.com/ + + target + + + host + cokecce.com + + + host + www.cokecce.com + + + + + ColaHotel + + ruleset + + name + ColaHotel + rule + + from + ^http://(ise\.|www\.)?cola-hotel\.net/ + to + https://$1cola-hotel.net/ + + securecookie + + host + ^(?:.*\.)?cola-hotel\.net$ + name + .+ + + target + + + host + cola-hotel.net + + + host + *.cola-hotel.net + + + + + Colbert Nation (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?colbertnation\.com/(?!favicon\.ico|media/|sitewide/) + + + pattern + ^http://(?:www\.)?colbertnation\.com/media/styles\.css + + + name + Colbert Nation (partial) + rule + + from + ^http://(?:www\.)?colbertnation\.com/ + to + https://a248.e.akamai.net/f/1054/3100/3f/www.colbertnation.com/ + + target + + + host + colbertnation.com + + + host + www.colbertnation.com + + + + + Colin Leroy + + ruleset + + name + Colin Leroy + rule + + from + ^http://(www\.)?colino\.net/ + to + https://$1colino.net/ + + target + + + host + colino.net + + + host + www.colino.net + + + + + CollabNet + + ruleset + + name + CollabNet + rule + + + from + ^http://((?:blog|git\.help|forums\.open|www)\.)?collab\.net/ + to + https://$1collab.net/ + + + from + ^http://(?:www\.)?open\.collab\.net/ + to + https://www.open.collab.net/ + + + from + ^http://visit\.collab\.net/(?=css/|images/|js/|rs/) + to + https://na-aba.collab.net/ + + + securecookie + + host + ^\.collab\.net$ + name + .+ + + target + + + host + collab.net + + + host + *.collab.net + + + + + Collabora (partial) + + ruleset + + name + Collabora (partial) + rule + + from + ^http://(trac\.|www\.)?collabora\.co(\.uk|m)/ + to + https://$1collabora.co$2/ + + target + + + host + collabora.co.uk + + + host + *.collabora.co.uk + + + host + collabora.com + + + host + www.collabora.com + + + + + Collateral Murder + + ruleset + + name + Collateral Murder + rule + + from + ^http://(www\.)?collateralmurder\.com/ + to + https://$1collateralmurder.com/ + + securecookie + + host + ^\.collateralmurder\.com$ + name + .+ + + target + + + host + collateralmurder.com + + + host + *.collateralmurder.com + + + + + Collective Media (partial) + + ruleset + + name + Collective Media (partial) + rule + + + from + ^http://amp\.collective\.com/ + to + https://amp.collective.com/ + + + from + ^http://(a|origin)\.collective-media\.net/ + to + https://$1.collective-media.net/ + + + securecookie + + host + ^\.collective-media\.net$ + name + .+ + + target + + + host + amp.collective.com + + + host + *.collective-media.net + + + + + College of Nurses of Ontario (partial) + + ruleset + + name + College of Nurses of Ontario (partial) + rule + + + from + ^http://(www\.)?cno\.org/(CNO|Global|login)/ + to + https://www.cno.org/$2/ + + + from + ^http://flo\.cno\.org/ + to + https://flo.cno.org/ + + + target + + + host + cno.org + + + host + flo.cno.org + + + host + www.cno.org + + + + + CollegeBoundfund (partial) + + ruleset + + name + CollegeBoundfund (partial) + rule + + + from + ^http://(corporate\.|www\.)?collegeboundfund\.com/ + to + https://$1collegeboundfund.com/ + + + from + ^https?://ri\.collegeboundfund\.com/(\?.*)?$ + to + https://www.collegeboundfund.com/ri/home.aspx$1 + + + from + ^https?://ri\.collegeboundfund\.com/CmsObjectRICBF/ + to + https://corporate.collegeboundfund.com/CmsObjectRICBF/ + + + securecookie + + host + ^(?:.+\.)?collegeboundfund\.com$ + name + .+ + + target + + + host + collegeboundfund.com + + + host + *.collegeboundfund.com + + + + + Collegiate Peaks Bank + + ruleset + + name + Collegiate Peaks Bank + rule + + + from + ^http://(www\.)?collegiatepeaksbank\.com/ + to + https://www.collegiatepeaksbank.com/ + + + from + ^(http://(www\.)?|https://)cpbonlinebanking\.com/ + to + https://www.cpbonlinebanking.com/ + + + from + ^http://12\.191\.21\.228/Portals/117/lock\.gif + to + https://www.collegiatepeaksbank.com/Portals/117/lock.gif + + + securecookie + + + host + (^|\.)collegiatepeaksbank\.com$ + name + .+ + + + host + (^|\.)cpbonlinebanking\.com$ + name + .+ + + + target + + + host + collegiatepeaksbank.com + + + host + www.collegiatepeaksbank.com + + + host + cpbonlinebanking.com + + + host + www.cpbonlinebanking.com + + + host + 12.191.21.228 + + + + + CollegiateLink (partial) + + ruleset + + exclusion + + pattern + ^http://((www[0-9]?)\.)?collegiatelink\.net/ + + name + CollegiateLink (partial) + rule + + from + ^http://([a-zA-Z0-9\-]+)\.collegiatelink\.net/ + to + https://$1.collegiatelink.net/ + + target + + host + *.collegiatelink.net + + + + Colocation America.com + + ruleset + + name + Colocation America.com + rule + + from + ^http://(www\.)?colocationamerica\.com/ + to + https://$1colocationamerica.com/ + + securecookie + + host + ^(?:www)?\.colocationamerica\.com$ + name + .+ + + target + + + host + colocationamerica.com + + + host + *.colocationamerica.com + + + + + CologneFurdance + + ruleset + + name + CologneFurdance + rule + + from + ^http://reg\.cologne-cfd\.de/ + to + https://reg.cologne-cfd.de/ + + securecookie + + host + ^reg\.cologne-cfd\.de$ + name + .+ + + target + + host + reg.cologne-cfd.de + + + + Coloman.nl + + ruleset + + name + Coloman.nl + rule + + from + ^http://(www\.)?coloman\.nl/ + to + https://$1coloman.nl/ + + securecookie + + host + ^www\.coloman\.nl$ + name + .+ + + target + + + host + coloman.nl + + + host + www.coloman.nl + + + + + Colorado Captures + + ruleset + + name + Colorado Captures + rule + + from + ^http://(www\.)?coloradocaptures\.com/ + to + https://$1coloradocaptures.com/ + + securecookie + + host + ^\.(?:www\.)?coloradocaptures\.com$ + name + .+ + + target + + + host + coloradocaptures.com + + + host + *.coloradocaptures.com + + + + + Colorado Secretary of State (partial) + + ruleset + + name + Colorado Secretary of State (partial) + rule + + from + ^https?://(?:www\.)sos\.state\.co\.us/pubs/ + to + https://$1sos.state.co.us/pubs/ + + target + + + host + sos.state.co.us + + + host + www.sos.state.co.us + + + + + Colorado State Attorney General + + ruleset + + name + Colorado State Attorney General + rule + + from + ^http://(?:www\.)?coloradoattorneygeneral\.gov/ + to + https://www.coloradoattorneygeneral.gov/ + + target + + + host + coloradoattorneygeneral.gov + + + host + www.coloradoattorneygeneral.gov + + + + + Colossal.jp (partial) + + ruleset + + name + Colossal.jp (partial) + rule + + from + ^http://(www\.)?colossal\.jp/ + to + https://$1colossal.jp/ + + securecookie + + host + ^(?:www\.)?colossal\.jp$ + name + .+ + + target + + + host + colossal.jp + + + host + www.colossal.jp + + + + + Columbia University (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.cs\.columbia\.edu/(?!icons/) + + + pattern + ^http://www\.giving\.columbia\.edu/(?!$|ccvolunteers/(?:App_Themes/|Telerik\.Web\.UI\.WebResource\.axd)|volunteer/) + + + pattern + ^http://gs\.columbia\.edu/(?!files/|misc/|sites/) + + + pattern + ^http://library\.columbia\.edu/(?!apps/|content/|etc/) + + + pattern + ^http://procurement\.columbia\.edu/(?!modules/|sites/) + + + name + Columbia University (partial) + rule + + + from + ^http://(?:www\.)?columbia\.edu/cuit/index\.html($|\?.*) + to + https://cuit.columbia.edu/$1 + + + from + ^http://(www\.ais|cas|(?:cubemail|ingo|rascalprod|uniapp)\.cc|www\.college|(?:mice|www)\.cs|wikis\.cuit|(?:haydn|roomreservations|scholcomm-dev)\.cul|www\.facil|forms\.finance|admissions\.gs|(?:apply|gsas-2l12p-01)\.gsas|(?:apply|gear|www[024678]|www-1)\.gsb|housingportal|isso|www\.law|lexington|alumni-friends\.library|newcourseworks|portal\.seas|(?:www\.)?procurement|ssol|(?:undergraduate-admissions\.|www\.)?studentaffairs|(?:auth|careers|my)\.tc|wind|www1)\.columbia\.edu/ + to + https://$1.columbia.edu/ + + + from + ^https?://(?:www\.)?alice\.columbia\.edu/(?:.*) + to + https://health.columbia.edu/services/alice + + + from + ^http://(?:www\.)?(alumni(?:clubs)?|arch|arts|bme|communityservice|courseworks|cuit|cuitalerts|cup|directory|engineering|eoaa|evpr|facets|facilities|facultyhouse|finance|giving|goaskalice|gs|health|housingservices|hr|library|mail|my|news|policylibrary|printservices|registar|researchinitiatives|spa|universityprograms|worklife|worldleaders)\.columbia\.edu/ + to + https://$1.columbia.edu/ + + + from + ^http://(?:www\.)?(giving|gsas|gsb|infoed|math|rascal|tc)\.columbia\.edu/ + to + https://www.$1.columbia.edu/ + + + from + ^http://(?:www\.)?ogp\.columbia\.edu/ + to + https://columbia.studioabroad.com/ + + + from + ^http://outlook1?\.cuit\.columbia\.edu/ + to + https://outlook1.cuit.columbia.edu/ + + + from + ^http://lionmail\.columbia\.edu/(?:.*) + to + https://mail.google.com/a/columbia.edu + + + from + ^http://uni\.columbia\.edu/(?:$|\?.*) + to + https://cuit.columbia.edu/cuit/manage-my-uni + + + from + ^http://www\.w2aee\.columbia\.edu/($|\?.*) + to + https://wikis.cuit.columbia.edu/confluence/display/cuarc/Home$1 + + + securecookie + + + host + ^\w.*\.columbia\.edu$ + name + .+ + + + host + ^\.(?:alumni|cubemail\.cc|ingo\.cc|cuitalerts|facets|facilities|forms\.finance|www7\.gsb|isso|lexington|mailservices|my|news|policylibrary|researchinitiatives|spa|universityprograms|worklife|worldleaders)\.columbia\.edu$ + name + .+ + + + target + + host + *.columbia.edu + + + + Com.br + + ruleset + + name + Com.br + platform + firefox + rule + + from + ^http://arivo\.com\.br/ + to + https://arivo.com.br/ + + securecookie + + host + ^arivo\.com\.br$ + name + .+ + + target + + host + arivo.com.br + + + + Com.mt + + ruleset + + name + Com.mt + platform + firefox + rule + + from + ^http://business\.medbank\.com\.mt/ + to + https://business.medbank.com.mt/ + + securecookie + + host + ^business\.medbank\.com\.mt$ + name + .+ + + target + + host + business.medbank.com.mt + + + + ComCav.com + + ruleset + + name + ComCav.com + rule + + from + ^http://(www\.)?comcav\.com/ + to + https://$1comcav.com/ + + securecookie + + host + ^\.www\.comcav\.com$ + name + .+ + + target + + + host + comcav.com + + + host + *.comcav.com + + + + + ComSignTrust.com + + ruleset + + name + ComSignTrust.com + rule + + + from + ^http://(?:www\.)?comsigntrust\.com/ + to + https://www.comsigntrust.com/ + + + from + ^http://blog\.comsigntrust\.com/ + to + https://blog.comsigntrust.com/ + + + securecookie + + + host + ^(blog|www)\.comsigntrust\.com$ + name + ^PHPSESSID$ + + + host + ^(?:blog|www)?\.comsigntrust\.com$ + name + .+ + + + target + + + host + comsigntrust.com + + + host + *.comsigntrust.com + + + + + ComSuper + + ruleset + + name + ComSuper + rule + + from + ^http://(?:www\.)?comsuper\.gov\.au/ + to + https://www.comsuper.gov.au/ + + target + + + host + comsuper.gov.au + + + host + *.comsuper.gov.au + + + + + Comcast (partial) + + ruleset + + name + Comcast (partial) + rule + + + from + ^http://(?:www\.)?comcast\.com/ + to + https://www.comcast.com/ + + + from + ^http://customer\.comcast\.com/ + to + https://customer.comcast.com/ + + + securecookie + + host + ^(?:customer|www)\.comcast\.com$ + name + .+ + + target + + + host + comcast.com + + + host + *.comcast.com + + + + + Comcast.net (partial) + + ruleset + + name + Comcast.net (partial) + rule + + from + ^http://(home|idp)\.comcast\.net/ + to + https://$1.comcast.net/ + + securecookie + + host + ^idp\.comcast\.net$ + name + .+ + + target + + host + *.comcast.net + + + + Comcate (partial) + + ruleset + + name + Comcate (partial) + rule + + from + ^http://clients\.comcate\.com/ + to + https://clients.comcate.com/ + + securecookie + + host + ^clients\.comcate\.com$ + name + .+ + + target + + host + clients.comcate.com + + + + Comenity.net (partial) + + ruleset + + name + Comenity.net (partial) + rule + + from + ^http://(c|d)\.comenity\.net/ + to + https://$1.comenity.net/ + + target + + host + *.comenity.net + + + + Cometdocs.com (partial) + + ruleset + + name + Cometdocs.com (partial) + rule + + from + ^http://(www\.)?cometdocs\.com/ + to + https://$1cometdocs.com/ + + securecookie + + host + ^www\.cometdocs\.com$ + name + .+ + + target + + + host + cometdocs.com + + + host + www.cometdocs.com + + + + + Comic-Con International + + ruleset + + name + Comic-Con International + rule + + + from + ^https?://(www\.)?comic-con\.(net|org)/ + to + https://secure.comic-con.org/ + + + from + ^http://(secure2?)\.comic-con\.(net|org)/ + to + https://$1.comic-con.org/ + + + securecookie + + host + ^secure2?.comic-con.org$ + name + .+ + + target + + + host + comic-con.net + + + host + www.comic-con.net + + + host + comic-con.org + + + host + secure.comic-con.org + + + host + secure2.comic-con.org + + + host + www.comic-con.org + + + + + Comic-Rocket.com + + ruleset + + name + Comic-Rocket.com + rule + + from + ^http://(www\.)?comic-rocket\.com/ + to + https://$1comic-rocket.com/ + + securecookie + + host + ^www\.comic-rocket\.com$ + name + .+ + + target + + + host + comic-rocket.com + + + host + www.comic-rocket.com + + + + + CommLink.org (partial) + + ruleset + + name + CommLink.org (partial) + rule + + from + ^http://(?:www\.)?commlink\.org/(?=concrete/|favicon\.ico|files/|packages/|themes/) + to + https://www.commlink.org/ + + target + + + host + commlink.org + + + host + www.commlink.org + + + + + CommScope.com (partial) + + ruleset + + name + CommScope.com (partial) + rule + + + from + ^http://(www\.)?commscope\.com/(?=favicon\.ico|theme/|uploadedImages/|WorkArea/(?:images|FrameworkUI)/) + to + https://$1commscope.com/ + + + from + ^http://info\.commscope\.com/+(?:\?.*)?$ + to + https://www.commscope.com/ + + + from + ^http://info\.commscope\.com/(?=css/|images/|js/|rs/) + to + https://na-sjp.marketo.com/ + + + target + + + host + commscope.com + + + host + www.commscope.com + + + + + Command Five + + ruleset + + name + Command Five + rule + + from + ^http://(www\.)?commandfive\.com/ + to + https://$1commandfive.com/ + + securecookie + + host + ^(?:www\.)?commandfive\.com$ + name + .+ + + target + + + host + commandfive.com + + + host + www.commandfive.com + + + + + Commando.io (partial) + + ruleset + + name + Commando.io (partial) + rule + + from + ^http://(static\.|www\.)?commando\.io/ + to + https://$1commando.io/ + + target + + + host + commando.io + + + host + *.commando.io + + + + + Commission Junction + + ruleset + + name + Commission Junction + platform + mixedcontent + rule + + + from + ^http://www\.(afcyhf|anrdoezrs|apmebf|awltovhc|commission-junction|dpbolvw|emjcd|ftjcfx|jdoqocy|kdukvh|kqzyfj|lduhtrp|pkracv|tkqlhce|tqlkg)\.(com|net)/ + to + https://www.$1.$2/ + + + from + ^http://www\.(?:awxibrm|cualbr|rnsfpw|vofzpwh|yceml)\.(?:com|net)/ + to + https://www.apmebf.com/ + + + from + ^http://(?:www\.)?cj\.com/ + to + https://www.cj.com/ + + + from + ^http://(members|signup)\.cj\.com/ + to + https://$1.cj.com/ + + + from + ^http://www\.qks(?:rv|z)\.net/ + to + https://www.qksrv.net/ + + + securecookie + + host + ^(?:.*\.)?(?:apmebf|cj)\.com$ + name + .+ + + target + + + host + www.afcyhf.com + + + host + www.anrdoezrs.net + + + host + www.apmebf.com + + + host + www.awltovhc.com + + + host + www.awxibrm.com + + + host + cj.com + + + host + *.cj.com + + + host + www.commission-junction.com + + + host + www.cualbr.com + + + host + www.dpbolvw.net + + + host + www.emjcd.com + + + host + www.ftjcfx.com + + + host + www.jdoqocy.com + + + host + www.kdukvh.com + + + host + www.kqzyfj.com + + + host + www.lduhtrp.net + + + host + www.pkracv.com + + + host + www.rnsfpw.net + + + host + www.qksrv.net + + + host + www.qksz.net + + + host + www.tkqlhce.com + + + host + www.tqlkg.com + + + host + www.vofzpwh.com + + + host + www.yceml.net + + + + + Commodity Futures Trading Commission (partial) + + ruleset + + name + Commodity Futures Trading Commission (partial) + rule + + + from + ^https?://(?:www\.)?cftc.gov/ucm/ + to + https://www.cftc.gov/ucm/ + + + from + ^http://services\.cftc\.gov/ + to + https://services.cftc.gov/ + + + securecookie + + host + ^services\.cftc\.gov$ + name + .+ + + target + + + host + cftc.gov + + + host + *.cftc.gov + + + + + Common App + + ruleset + + name + Common App + rule + + from + ^http://(?:www\.)?commonapp\.org/ + to + https://www.commonapp.org/ + + securecookie + + host + ^www\.commonapp\.org$ + name + .+ + + target + + + host + commonapp.org + + + host + www.commonapp.org + + + + + Common Criteria Portal + + ruleset + + name + Common Criteria Portal + rule + + + from + ^https?://commoncriteriaportal\.org/ + to + https://www.commoncriteriaportal.org/ + + + from + ^http://([^/:@]+)?\.commoncriteriaportal\.org/ + to + https://$1.commoncriteriaportal.org/ + + + securecookie + + host + ^(.*\.)?commoncriteriaportal\.org$ + name + .+ + + target + + + host + commoncriteriaportal.org + + + host + *.commoncriteriaportal.org + + + + + Common Short Code Administration (partial) + + ruleset + + name + Common Short Code Administration (partial) + rule + + from + ^http://(www\.)?usshortcodes\.com/(content|csc|csclogin|images|Includes)/ + to + https://$1usshortcodes.com/$2/ + + target + + + host + usshortcodes.com + + + host + www.usshortcodes.com + + + + + CommonCrawl + + ruleset + + name + CommonCrawl + rule + + from + ^http://(www\.)?commoncrawl\.org/ + to + https://$1commoncrawl.org/ + + target + + + host + commoncrawl.org + + + host + www.commoncrawl.org + + + + + CommonDreams + + ruleset + + name + CommonDreams + rule + + from + ^http://(?:www\.)?commondreams\.org/ + to + https://www.commondreams.org/ + + securecookie + + host + ^(www\.)?commondreams\.org$ + name + .* + + target + + + host + commondreams.org + + + host + www.commondreams.org + + + + + Commonwealth Courts Portal + + ruleset + + name + Commonwealth Courts Portal + rule + + from + ^http://(?:www\.)?comcourts\.gov\.au/ + to + https://www.comcourts.gov.au/ + + target + + + host + comcourts.gov.au + + + host + *.comcourts.gov.au + + + + + Commonwealth GITC + + ruleset + + name + Commonwealth GITC + rule + + from + ^http://(?:www\.)?gitc\.finance\.gov\.au/ + to + https://www.gitc.finance.gov.au/ + + target + + + host + gitc.finance.gov.au + + + host + *.gitc.finance.gov.au + + + + + Commonwealth Grants Commission + + ruleset + + name + Commonwealth Grants Commission + rule + + from + ^http://(?:www\.)?cgc\.gov\.au/ + to + https://www.cgc.gov.au/ + + target + + + host + cgc.gov.au + + + host + *.cgc.gov.au + + + + + Commonwealth Superannuation Corporation + + ruleset + + name + Commonwealth Superannuation Corporation + rule + + from + ^http://(?:www\.)?csc\.gov\.au/ + to + https://www.csc.gov.au/ + + target + + + host + csc.gov.au + + + host + *.csc.gov.au + + + + + Commonwealth Superannuation Scheme + + ruleset + + name + Commonwealth Superannuation Scheme + rule + + from + ^http://(?:www\.)?css\.gov\.au/ + to + https://www.css.gov.au/ + + target + + + host + css.gov.au + + + host + *.css.gov.au + + + + + Commotionwireless.net + + ruleset + + name + Commotionwireless.net + rule + + from + ^http://(code\.|www\.)?commotionwireless\.net/ + to + https://$1commotionwireless.net/ + + securecookie + + host + ^code\.commotionwireless\.net$ + name + .+ + + target + + + host + commotionwireless.net + + + host + *.commotionwireless.net + + + + + CommuniGate + + ruleset + + name + CommuniGate + rule + + from + ^http://(?:www\.)?communigate\.com/ + to + https://www.communigate.com/ + + target + + + host + communigate.com + + + host + *.communigate.com + + + + + CommuniGator.co.uk + + ruleset + + name + CommuniGator.co.uk + rule + + + from + ^http://(?:www\.)?communigator\.co\.uk/ + to + https://www.communigator.co.uk/ + + + from + ^http://guru\.communigator\.co\.uk/ + to + https://guru.communigator.co.uk/ + + + target + + + host + communigator.co.uk + + + host + *.communigator.co.uk + + + + + Communicate Live + + ruleset + + name + Communicate Live + rule + + from + ^http://(www\.)?communicatelive\.co\.uk/ + to + https://$1communicatelive.co.uk/ + + securecookie + + host + ^(?:www\.)?communicatelive\.co\.uk$ + name + .+ + + target + + + host + communicatelive.co.uk + + + host + www.communicatelive.co.uk + + + + + Communicator Corporation (partial) + + ruleset + + name + Communicator Corporation (partial) + rule + + + from + ^http://platform\.communicatorcorp\.com/ + to + https://platform.communicatorcorp.com/ + + + from + ^https?://(?:www\.)?communicatoremail\.com/ + to + https://www.communicatoremail.com/ + + + securecookie + + host + ^platform\.communicatorcorp\.com$ + name + .+ + + target + + + host + platform.communicatorcorp.com + + + host + communicatoremail.com + + + host + www.communicatoremail.com + + + + + Community Matters (partial) + + ruleset + + name + Community Matters (partial) + rule + + from + ^http://(subsurface\.|trac\.)?hohndel\.org/ + to + https://$1hohndel.org/ + + securecookie + + host + ^.+\.hohndel\.org$ + name + .+ + + target + + host + *.hohndel.org + + + + Community.elgg.org + + ruleset + + name + Community.elgg.org + rule + + from + ^http://community\.elgg\.org/ + to + https://community.elgg.org/ + + target + + host + community.elgg.org + + + + Community.wbgames.com + + ruleset + + name + Community.wbgames.com + rule + + from + ^http://(www\.)?community\.wbgames\.com/ + to + https://www.community.wbgames.com/ + + target + + + host + community.wbgames.com + + + host + www.community.wbgames.com + + + + + Comodo + + ruleset + + name + Comodo + rule + + + from + ^http://((?:accounts|antivirus|directory|downloads?|enterprise|forums|friends|help|icedragon|m|marketingdb|pctuneup|penetration-testing|personalfirewall|secure|ssl|www\.ssl|support|trustlogo|trustlogostats|www)\.)?comodo\.com/ + to + https://$1comodo.com/ + + + from + ^https?://www\.download\.comodo\.com/ + to + https://download.comodo.com/ + + + from + ^http://secure\.comodo\.net/ + to + https://secure.comodo.net/ + + + from + ^https?://siteinspector\.comodo\.com/ + to + https://app.webinspector.com/ + + + from + ^http://(?:www\.)trustlogo\.com/(trustlogo/|images/cornertrust\.gif$) + to + https://secure.comodo.com/$1 + + + from + ^https?://(?:www\.)?comodo(?:group\.com|\.net)/ + to + https://www.comodo.com/ + + + securecookie + + host + ^[\w-]+\.comodo\.com$ + name + .+ + + target + + + host + comodo.com + + + host + *.comodo.com + + + host + comodo.net + + + host + www.comodo.net + + + host + secure.comodo.net + + + host + comodogroup.com + + + host + www.comodogroup.com + + + host + trustlogo.com + + + host + www.trustlogo.com + + + + + CompLang.org + + ruleset + + name + CompLang.org + rule + + from + ^http://(www\.)?complang\.org/ + to + https://$1complang.org/ + + target + + + host + complang.org + + + host + www.complang.org + + + + + Companies House (partial) + + ruleset + + name + Companies House (partial) + rule + + from + ^http://wck2\.companieshouse\.gov\.uk/(?!/?wcframe) + to + https://wck2.companieshouse.gov.uk/ + + target + + host + wck2.companieshouse.gov.uk + + + + CompaniesHouse + + ruleset + + name + CompaniesHouse + rule + + from + ^http://(direct|ebilling|ewf)\.companieshouse\.gov\.uk/ + to + https://$1.companieshouse.gov.uk/ + + securecookie + + host + ^(direct|ebilling|ewf)\.companieshouse\.gov\.uk$ + name + .* + + target + + host + *.companieshouse.gov.uk + + + + CompaniesInTheUK + + ruleset + + name + CompaniesInTheUK + rule + + + from + ^http://companiesintheuk\.co\.uk/ + to + https://companiesintheuk.co.uk/ + + + from + ^http://(www)\.companiesintheuk\.co\.uk/ + to + https://$1.companiesintheuk.co.uk/ + + + securecookie + + host + ^(.+\.)?companiesintheuk\.co\.uk$ + name + .* + + target + + + host + companiesintheuk.co.uk + + + host + www.companiesintheuk.co.uk + + + + + Compaq.com + + ruleset + + name + Compaq.com + rule + + from + ^http://(?:www\.)?compaq\.com/ + to + https://www.compaq.com/ + + target + + + host + compaq.com + + + host + www.compaq.com + + + + + Compare The Market + + ruleset + + name + Compare The Market + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?comparethemarket\.com/ + to + https://www.comparethemarket.com/ + + + from + ^http://((?:cdn|contact|quote|rewards|services)\.|email-)comparethemarket\.com/ + to + https://$1comparethemarket.com/ + + + securecookie + + host + ^(?:.*\.|email-)?comparethemarket\.com$ + name + .+ + + target + + + host + email-comparethemarket.com + + + host + comparethemarket.com + + + host + *.comparethemarket.com + + + + + Comparis.ch + + ruleset + + name + Comparis.ch + rule + + + from + ^https?://comparis\.ch/ + to + https://www.comparis.ch/ + + + from + ^http://([^/:@]+)?\.comparis\.ch/ + to + https://$1.comparis.ch/ + + + securecookie + + host + ^(.*\.)?comparis\.ch$ + name + .* + + target + + + host + comparis.ch + + + host + *.comparis.ch + + + + + Compendium + + ruleset + + name + Compendium + rule + + + from + ^http://(\w+)\.compendiumblog\.com/ + to + https://$1.compendiumblog.com/ + + + from + ^http://cdn2\.content\.compendiumblog\.com/ + to + https://cdn2.content.compendiumblog.com/ + + + from + ^http://(?:cdn|global)\.content\.compendiumblog\.com/ + to + https://s3.amazonaws.com/global.content.compendiumblog.com/ + + + securecookie + + host + ^www\.compendiumblog\.com$ + name + .* + + target + + + host + compendiumblog.com + + + host + *.compendiumblog.com + + + host + *.content.compendiumblog.com + + + + + Compendium.com + + ruleset + + name + Compendium.com + rule + + + from + ^http://(?:www\.)?compendium\.com/$ + to + https://www.oracle.com/us/corporate/acquisitions/compendium/index.html + + + from + ^http://(?:www\.)?compendium\.com/[^?]+ + to + https://www.oracle.com/index.html + + + from + ^http://app\.compendium\.com/ + to + https://app.compendium.com/ + + + target + + + host + compendium.com + + + host + *.compendium.com + + + + + Compete (partial) + + ruleset + + name + Compete (partial) + rule + + + from + ^http://([\w\-]+)\.c-ol\.com/ + to + https://$1.col.com/ + + + from + ^http://(www\.)?compete\.com/(plans(?:$|/|\?)|site_media/) + to + https://$1compete.com/$2 + + + from + ^http://(app|c|grapher)\.compete\.com/ + to + https://$1.compete.com/ + + + from + ^http://home\.compete\.com/site_media/ + to + https://securemedia.compete.com/site_media/ + + + from + ^https?://(?:secure)?media\.compete\.com/ + to + https://securemedia.compete.com/ + + + from + ^https?://home.compete.com.edgesuite.net/ + to + https://home.compete.com/ + + + securecookie + + host + ^.*\.c-col\.com$ + name + .* + + target + + + host + *.c-col.com + + + host + compete.com + + + host + *.compete.com + + + host + home.compete.com.edgesuite.net + + + + + Competitive Enterprise Institute (partial) + + ruleset + + name + Competitive Enterprise Institute (partial) + rule + + from + ^http://shop\.cei\.org/ + to + https://shop.cei.org/ + + securecookie + + host + ^shop\.cei\.org$ + name + .+ + + target + + host + shop.cei.org + + + + CompletelyPrivateFiles.com + + ruleset + + name + CompletelyPrivateFiles.com + rule + + from + ^http://(www\.)?completelyprivatefiles\.com/ + to + https://$1completelyprivatefiles.com/ + + target + + + host + completelyprivatefiles.com + + + host + www.completelyprivatefiles.com + + + + + Complex-systems.com + + ruleset + + name + Complex-systems.com + rule + + from + ^http://(www\.)?complex-systems\.com/ + to + https://www.complex-systems.com/ + + target + + + host + complex-systems.com + + + host + www.complex-systems.com + + + + + ComplianceSigns.com + + ruleset + + name + ComplianceSigns.com + rule + + from + ^http://(?:cdn\.|www\.)?compliancesigns\.com/ + to + https://www.compliancesigns.com/ + + securecookie + + host + ^\.compliancesigns\.com$ + name + .+ + + target + + + host + compliancesigns.com + + + host + *.compliancesigns.com + + + + + CompraNoExterior.com.br (partial) + + ruleset + + name + CompraNoExterior.com.br (partial) + rule + + from + ^http://cdn1?\.compranoexterior\.com\.br/ + to + https://d1h9c8t56th1se.cloudfront.net/ + + target + + host + *.compranoexterior.com.br + + + + Comprehensive C Archive Network + + ruleset + + name + Comprehensive C Archive Network + rule + + from + ^https?://(?:www\.)?ccodearchive\.net/ + to + https://ccodearchive.net/ + + target + + + host + ccodearchive.net + + + host + www.ccodearchive.net + + + + + Compteur.fr + + ruleset + + name + Compteur.fr + rule + + from + ^http://(?:www\.)?compteur\.fr/ + to + https://www.compteur.fr/ + + securecookie + + host + ^\.(?:www\.)?compteur\.fr$ + name + .+ + + target + + + host + compteur.fr + + + host + *.compteur.fr + + + + + CompuLab.co.il + + ruleset + + name + CompuLab.co.il + rule + + from + ^http://(?:www\.)?compulab\.co\.il/ + to + https://compulab.co.il/ + + securecookie + + host + ^compulab\.co\.il$ + name + .+ + + target + + + host + compulab.co.il + + + host + www.compulab.co.il + + + + + Computational Infrastructure for Operations Research (partial) + + ruleset + + name + Computational Infrastructure for Operations Research (partial) + rule + + from + ^http://projects\.coin-or\.org/ + to + https://projects.coin-or.org/ + + securecookie + + host + ^projects\.coin-or\.org$ + name + .* + + target + + host + projects.coin-or.org + + + + Computer Fulfillment + + ruleset + + name + Computer Fulfillment + rule + + from + ^http://(?:www\.)?computerfulfillment\.com/ + to + https://www.computerfulfillment.com/ + + target + + + host + computerfulfillment.com + + + host + www.computerfulfillment.com + + + + + Computer Libya + + ruleset + + name + Computer Libya + rule + + from + ^http://(www\.)?computer\.ly/ + to + https://$1computer.ly/ + + securecookie + + host + .*\.computer\.ly$ + name + .+ + + target + + + host + computer.ly + + + host + *.computer.ly + + + + + ComputerWorld (partial) + + ruleset + + name + ComputerWorld (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?computerworld\.com/ + to + https://www.computerworld.com/ + + + from + ^http://events\.computerworld\.com/ + to + https://eiseverywhere.com/ehome/Computerworld/ + + + from + ^http://itjobs\.computerworld\.com/ + to + https://computerworld.jobamatic.com/ + + + from + ^http://m\.computerworld\.com/mobify/ + to + https://computerworld.mobify.com/mobify/ + + + from + ^http://computerworld\.com\.edgesuite\.net/ + to + https://a248.e.akamai.net/f/335/1/g/computerworld.com.edgesuite.net/ + + + securecookie + + host + ^\.computerworld\.com$ + name + .+ + + target + + + host + computerworld.com + + + host + *.computerworld.com + + + host + computerworld.com.edgesuite.net + + + + + Computerbase.de (partial) + + ruleset + + name + Computerbase.de (partial) + rule + + from + ^http://pics\.computerbase\.de/ + to + https://pics.computerbase.de/ + + target + + host + *.computerbase.de + + + + Computerbasedmath.org + + ruleset + + name + Computerbasedmath.org + rule + + from + ^http://(www\.)?computerbasedmath\.org/ + to + https://computerbasedmath.org/ + + target + + + host + computerbasedmath.org + + + host + www.computerbasedmath.org + + + + + ComputersnYou.com (partial) + + ruleset + + name + ComputersnYou.com (partial) + rule + + from + ^http://(www\.)?computersnyou\.com/ + to + https://$1computersnyou.com/ + + securecookie + + host + ^(?:\.|www\.)?computersnyou\.com$ + name + .+ + + target + + + host + computersnyou.com + + + host + *.computersnyou.com + + + + + Compuware (partial) + + ruleset + + name + Compuware (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?compuware\.com/ + to + https://$1compuware.com/ + + target + + + host + compuware.com + + + host + www.compuware.com + + + + + Compuware Gomez + + ruleset + + name + Compuware Gomez + rule + + + from + ^http://(\w+)\.r\.axf8\.net/ + to + https://$1.r.axf8.net/ + + + from + ^https?://(?:www\.)?gomez\.com/ + to + https://www.gomez.com/ + + + securecookie + + host + ^www\.gomez\.com$ + name + .+ + + target + + + host + *.r.axf8.net + + + host + gomez.com + + + host + www.gomez.com + + + + + Comviq.se + + ruleset + + name + Comviq.se + rule + + + from + ^http://comviq\.se/ + to + https://comviq.se/ + + + from + ^http://www\.comviq\.se/ + to + https://www.comviq.se/ + + + target + + + host + comviq.se + + + host + www.comviq.se + + + + + ConSecur + + ruleset + + name + ConSecur + rule + + from + ^http://(?:www\.)?consecur\.de/ + to + https://www.consecur.de/ + + securecookie + + host + ^www\.consecur\.de$ + name + .+ + + target + + + host + consecur.de + + + host + www.consecur.de + + + + + Concur.com + + ruleset + + name + Concur.com + rule + + from + ^http://((?:assets|developer|fusion|www)\.)?concur\.com/ + to + https://$1concur.com/ + + securecookie + + host + ^(?:\.?developer\.)?concur\.com$ + name + .+ + + target + + + host + concur.com + + + host + *.concur.com + + + + + Condesa (partial) + + ruleset + + name + Condesa (partial) + rule + + from + ^http://secure\.prleap\.com/ + to + https://secure.prleap.com/ + + target + + host + secure.prleap.com + + + + Condominiums for Everyone + + ruleset + + name + Condominiums for Everyone + rule + + from + ^https?://(?:www\.)?condosforeveryone\.com/ + to + https://www.condosforeveryone.com/ + + securecookie + + host + ^\.condosforeveryone\.com$ + name + .+ + + target + + + host + condosforeveryone.com + + + host + *.condosforeveryone.com + + + + + Conduit (partial) + + ruleset + + name + Conduit (partial) + rule + + + from + ^http://((?:api|accounts|my|sso|storage|toolbar|www)\.)?conduit\.com/ + to + https://$1conduit.com/ + + + from + ^http://mobilecp\.conduit\.com/(external|[iI]mages)/ + to + https://mobilecp.conduit.com/$1/ + + + from + ^http://mobilesupport\.conduit\.com/generated/ + to + https://supportconduit.zendesk.com/generated/ + + + securecookie + + host + ^.*\.conduit\.com$ + name + .+ + + target + + + host + conduit.com + + + host + *.conduit.com + + + + + Condé Nast (partial) + + ruleset + + name + Condé Nast (partial) + rule + + + from + ^https?://(?:www\.)?condenast\.com/ + to + https://www.condenast.com/ + + + from + ^http://fonts\.condenast\.com/ + to + https://fonts.condenast.com/ + + + from + ^https?://cdni\.condenast\.co\.uk/ + to + https://s3-eu-west-1.amazonaws.com/img.condenast.co.uk/ + + + from + ^https?://cnda\.condenast\.co\.uk/ + to + https://dg9g3lm9lsog5.cloudfront.net/ + + + from + ^https?://(?:www\.)?condenaststore\.com/ + to + https://www.condenaststore.com/ + + + from + ^http://subscribe\.conden(astdigital|et)\.com/ + to + https://subscribe.conden$1.com/ + + + target + + + host + condenast.com + + + host + *.condenast.com + + + host + *.condenast.co.uk + + + host + subscribe.condenastdigital.com + + + host + condenaststore.com + + + host + www.condenaststore.com + + + host + subscribe.condenet.com + + + + + Condé Nast Traveler (partial) + + ruleset + + name + Condé Nast Traveler (partial) + rule + + + from + ^http://secure\.cntraveler\.com/ + to + https://secure.cntraveler.com/ + + + from + ^http://stats2\.cntraveler\.com/ + to + https://condenast.112.2o7.net/ + + + securecookie + + host + ^\.cntraveler\.com$ + name + ^s_\w+$ + + target + + host + *.cntraveler.com + + + + Confederation of Danish Industry (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?di\.dk/(?!_layouts/) + + name + Confederation of Danish Industry (partial) + rule + + from + ^http://(itek\.|www\.)?di\.dk/ + to + https://$1di.dk/ + + securecookie + + host + ^itek\.di\.dk$ + name + .+ + + target + + + host + di.dk + + + host + *.di.dk + + + + + Confianza Online + + ruleset + + name + Confianza Online + rule + + from + ^https?://(?:www\.)?confianzaonline\.es/ + to + https://www.confianzaonline.es/ + + securecookie + + host + ^\.?www\.confianzaonline\.es$ + name + .+ + + target + + + host + confianzaonline.es + + + host + *.confianzaonline.es + + + + + Confirmit + + ruleset + + name + Confirmit + rule + + from + ^http://((?:author|(?:cdn\.)?(?:euro|us)|(?:author|reportal)\.euro|extranet|reportal\.us|www|www10)\.)?confirmit\.com/ + to + https://$1confirmit.com/ + + securecookie + + host + ^(?:.*\.)?confirmit\.com$ + name + .+ + + target + + + host + confirmit.com + + + host + *.confirmit.com + + + + + Conformal Systems + + ruleset + + name + Conformal Systems + rule + + + from + ^http://((?:blog|opensource|www)\.)?conformal\.com/ + to + https://$1conformal.com/ + + + from + ^http://(blog\.|www\.)?cyphertite\.com/ + to + https://$1cyphertite.com/ + + + securecookie + + host + ^(?:.*\.)?c(?:onformal|yphertite)\.com$ + name + .+ + + target + + + host + conformal.com + + + host + *.conformal.com + + + host + cyphertite.com + + + host + *.cyphertite.com + + + + + Confused.com (partial) + + ruleset + + name + Confused.com (partial) + rule + + + from + ^https?://(?:www\.)?confused\.com/([\w-]+/~/|\w+/contact-us|~/) + to + https://www.confused.com/$1 + + + from + ^http://(content|my|secure)\.confused\.com/ + to + https://$1.confused.com/ + + + securecookie + + host + ^secure\.confused\.com$ + name + .+ + + target + + + host + confused.com + + + host + *.confused.com + + + + + Confuzzled + + ruleset + + name + Confuzzled + rule + + + from + ^http://(www\.)?confuzzled\.org\.uk/ + to + https://www.confuzzled.org.uk/ + + + from + ^http://reg\.confuzzled\.org\.uk/ + to + https://reg.confuzzled.org.uk/ + + + securecookie + + host + ^(www|reg|)\.confuzzled\.org\.uk$ + name + .+ + + target + + + host + confuzzled.org.uk + + + host + www.confuzzled.org.uk + + + host + reg.confuzzled.org.uk + + + + + ConnMan + + ruleset + + name + ConnMan + rule + + from + ^http://(www\.)?connman\.net/ + to + https://$1connman.net/ + + securecookie + + host + ^\.?connman\.net$ + name + .+ + + target + + + host + connman.net + + + host + *.connman.net + + + + + Connect.me + + ruleset + + name + Connect.me + rule + + from + ^http://(www\.)?connect\.me/ + to + https://connect.me/ + + target + + + host + connect.me + + + host + www.connect.me + + + + + Connect4Fitness + + ruleset + + name + Connect4Fitness + rule + + from + ^http://(www\.)?connect4fitness\.com/ + to + https://$1connect4fitness.com/ + + securecookie + + host + ^(?:w*\.)?connect4fitness\.com$ + name + .+ + + target + + + host + connect4fitness.com + + + host + *.connect4fitness.com + + + + + Connexity.com (partial) + + ruleset + + name + Connexity.com (partial) + rule + + from + ^http://pro\.connexity\.com/ + to + https://pro.connexity.com/ + + securecookie + + host + ^pro\.connexity\.com$ + name + .+ + + target + + host + pro.connexity.com + + + + Connexity.net + + ruleset + + name + Connexity.net + rule + + from + ^http://connexity\.net/ + to + https://connexity.net/ + + securecookie + + host + ^\.connexity\.net$ + name + ^(?:COu|refresh|sync)$ + + target + + + host + connexity.net + + + host + *.connexity.net + + + + + ConoHa.jp + + ruleset + + name + ConoHa.jp + rule + + from + ^http://((?:cp|help|www)\.)?conoha\.jp/ + to + https://$1conoha.jp/ + + securecookie + + host + ^(?:cp|help)\.conoha\.jp$ + name + .+ + + target + + + host + conoha.jp + + + host + *.conoha.jp + + + + + ConsCallHome.com + + ruleset + + name + ConsCallHome.com + rule + + + from + ^http://conscallhome\.com/.* + to + https://www.conscallhome.com/ + + + from + ^http://(secure|www)\.conscallhome\.com/ + to + https://$1.conscallhome.com/ + + + securecookie + + host + ^(?:www)?\.conscallhome\.com$ + name + .+ + + target + + + host + conscallhome.com + + + host + *.conscallhome.com + + + + + Consortium Library + + ruleset + + name + Consortium Library + rule + + from + ^http://(www\.)?consortiumlibrary\.com/ + to + https://$1consortiumlibrary.com/ + + securecookie + + host + ^(?:www\.)?consortiumlibrary\.org$ + name + .+ + + target + + + host + consortiumlibrary.org + + + host + www.consortiumlibrary.org + + + + + Constant Contact (partial) + + ruleset + + exclusion + + pattern + ^http://blogs\.constantcontact\.com/(?!wp-admin(?:$|[?/])|wp-content/|wp-includes/|wp-login\.php) + + name + Constant Contact (partial) + rule + + + from + ^http://((?:blogs|community|origin\.ih|survey)\.)?constantcontact\.com/ + to + https://$1constantcontact.com/ + + + from + ^http://(?:developer|www)\.constantcontact\.com/(favicon\.ico|features/signup\.jsp|(?:global-(?:login|nav)|login|styles)\.jsp|_styles/) + to + https://www.constantcontact.com/$1 + + + from + ^http://ih\.constantcontact\.com/ + to + https://origin.ih.constantcontact.com/ + + + from + ^http://img(?:\.f2|ssl)?\.constantcontact\.com/ + to + https://imgssl.constantcontact.com/ + + + securecookie + + host + ^(?:community|origin\.ih|survey)\.constantcontact\.com$ + name + .+ + + target + + + host + constantcontact.com + + + host + *.constantcontact.com + + + + + Consumer Reports (partial) + + ruleset + + exclusion + + pattern + ^http://(?:web\.|www\.)?consumerreports\.org/+(?!etc/|favicon\.ico) + + name + Consumer Reports (partial) + rule + + + from + ^http://(?:www\.)?consumerreports\.org/ + to + https://www.consumerreports.org/ + + + from + ^http://(ec|web)\.consumerreports\.org/ + to + https://$1.consumerreports.org/ + + + from + ^https?://static[1-4]\.consumerreportscdn\.org/ + to + https://dffe75s34hxl9.cloudfront.net/ + + + securecookie + + host + ^ec\.consumerreports\.org$ + name + .+ + + target + + + host + consumerreports.org + + + host + ec.consumerreports.org + + + host + web.consumerreports.org + + + host + www.consumerreports.org + + + host + *.consumerreportscdn.org + + + + + Consumer Reports.com (false MCB) + + ruleset + + name + Consumer Reports.com (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?consumerreports\.org/ + to + https://www.consumerreports.org/ + + + from + ^http://web\.consumerreports\.org/ + to + https://web.consumerreports.org/ + + + securecookie + + host + .*\.consumerreports\.org$ + name + .+ + + target + + + host + consumerreports.org + + + host + *.consumerreports.org + + + + + Consumer.gov + + ruleset + + name + Consumer.gov + rule + + from + ^https?://(?:www\.)?consum(e|ido)r\.gov/ + to + https://www.consum$1r.gov/ + + target + + + host + consumer.gov + + + host + www.consumer.gov + + + host + consumidor.gov + + + host + www.consumidor.gov + + + + + ConsumerAffairs.com (partial) + + ruleset + + name + ConsumerAffairs.com (partial) + rule + + from + ^http://(www\.)?consumeraffairs\.com/ + to + https://$1consumeraffairs.com/ + + securecookie + + host + ^(.*\.)?consumeraffairs\.com$ + name + .* + + target + + + host + consumeraffairs.com + + + host + www.consumeraffairs.com + + + + + ConsumerSniper.com + + ruleset + + name + ConsumerSniper.com + rule + + from + ^http://(www\.)?consumersniper\.com/ + to + https://$1consumersniper.com/ + + securecookie + + host + ^www\.consumersniper\.com$ + name + .+ + + target + + + host + consumersniper.com + + + host + www.consumersniper.com + + + + + Contact At Once.com (partial) + + ruleset + + name + Contact At Once.com (partial) + rule + + from + ^http://applications\.contactatonce\.com/ + to + https://applications.contactatonce.com/ + + target + + host + applications.contactatonce.com + + + + Contact Privacy + + ruleset + + name + Contact Privacy + rule + + from + ^http://(www\.)?contactprivacy\.com/ + to + https://$1contactprivacy.com/ + + target + + + host + contactprivacy.com + + + host + www.contactprivacy.com + + + + + ContactUs.com (partial) + + ruleset + + name + ContactUs.com (partial) + rule + + from + ^http://(www\.)?contactus\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1contactus.com/ + + target + + + host + contactus.com + + + host + www.contactus.com + + + + + Contactual (partial) + + ruleset + + name + Contactual (partial) + rule + + from + ^http://(na\d\.|www\.)?mycontactual\.com/ + to + https://$1mycontactual.com/ + + securecookie + + + host + ^na\d\.mycontactual\.com$ + name + .+ + + + host + ^\.?mycontactual\.com$ + name + ^WPJ_CM$ + + + target + + + host + mycontactual.com + + + host + *.mycontactual.com + + + + + Content Watch + + ruleset + + name + Content Watch + rule + + from + ^http://(www\.)?contentwatch\.com/ + to + https://$1contentwatch.com/ + + securecookie + + host + ^(?:www\.)?contentwatch\.com$ + name + .+ + + target + + + host + contentwatch.com + + + host + www.contentwatch.com + + + + + Content.ad (partial) + + ruleset + + name + Content.ad (partial) + rule + + + from + ^http://(?:www\.)?content\.ad/ + to + https://www.content.ad/ + + + from + ^http://api\.content\.ad/ + to + https://api.content.ad/ + + + securecookie + + host + ^(?:api|www)\.content\.ad$ + name + .+ + + target + + + host + content.ad + + + host + *.content.ad + + + + + Contextly.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?contextly\.com/+blog + + name + Contextly.com (partial) + rule + + + from + ^http://(?:((?:app|dev|rest)\.)|www\.)?contextly\.com/ + to + https://$1contextly.com/ + + + from + ^http://contextlysitescripts\.contextly\.com/ + to + https://c714015.ssl.cf2.rackcdn.com/ + + + downgrade + 1 + from + ^https://contextly\.com/blog + to + http://contextly.com/blog + + + securecookie + + host + ^dev\.contextly\.com$ + name + .+ + + target + + + host + contextly.com + + + host + *.contextly.com + + + + + Continent 8 Technologies (partial) + + ruleset + + name + Continent 8 Technologies (partial) + rule + + from + ^http://ecess1\.cdn\.continent8\.com/ + to + https://ecess1.cdn.continent8.com/ + + target + + host + ecess1.cdn.continent8.com + + + + Continental + + ruleset + + name + Continental + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?continental\.com/ + to + https://www.continental.com/ + + + from + ^http://www\.covacations\.com/ + to + https://www.covacations.com/ + + + from + ^http://covacations\.com/ + to + https://www.covacations.com/ + + + from + ^http://checkin\.continental\.com/ + to + https://checkin.continental.com/ + + + target + + + host + www.continental.com + + + host + continental.com + + + host + www.covacations.com + + + host + covacations.com + + + host + checkin.continental.com + + + + + ControlScan.com + + ruleset + + name + ControlScan.com + rule + + + from + ^http://(?:www\.)?controlscan\.com/ + to + https://controlscan.com/ + + + from + ^http://(payments|portal|smartscan)\.controlscan\.com/ + to + https://$1.controlscan.com/ + + + securecookie + + host + ^(?:\.|www\.)?controlscan\.com$ + name + .+ + + target + + + host + controlscan.com + + + host + *.controlscan.com + + + + + Controller Plus + + ruleset + + name + Controller Plus + rule + + from + ^http://(www\.)?pluscontrollers\.com/ + to + https://$1pluscontrollers.com/ + + securecookie + + host + ^\.(?:www\.)?pluscontrollers\.com$ + name + .+ + + target + + + host + pluscontrollers.com + + + host + *.pluscontrollers.com + + + + + ControllerMAX.com (false MCB) + + ruleset + + name + ControllerMAX.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?controllermax\.com/ + to + https://$1controllermax.com/ + + securecookie + + host + ^(?:www\.)?controllermax\.com$ + name + .+ + + target + + + host + controllermax.com + + + host + *.controllermax.com + + + + + ControllerMAX.com (partial) + + ruleset + + name + ControllerMAX.com (partial) + rule + + from + ^http://(www\.)?controllermax\.com/(?!forums(?!/clientscript/|/css\.php|/customavatars/|/favicon\.ico|/images/)) + to + https://$1controllermax.com/ + + securecookie + + host + ^(?:www\.)?controllermax\.com$ + name + ^PHPSESSID$ + + target + + + host + controllermax.com + + + host + www.controllermax.com + + + + + Convio + + ruleset + + name + Convio + rule + + + from + ^http://secure\.commonground\.convio\.com/ + to + https://secure.commonground.convio.com/ + + + from + ^http://customer\.convio\.net/$ + to + https://secure2.convio.net/customer/site/SPageServer + + + from + ^http://secure([23])\.convio\.net/ + to + https://secure$1.convio.net/ + + + securecookie + + + host + ^secure\.commonground\.convio\.com$ + name + .+ + + + host + ^secure[23]\.convio\.net$ + name + .+ + + + target + + + host + secure.commonground.convio.com + + + host + *.convio.net + + + + + Conviva (partial) + + ruleset + + name + Conviva (partial) + rule + + + from + ^https?://livepass(?:dl)?\.conviva\.com/ + to + https://livepass.conviva.com/ + + + from + ^http://pulse\.conviva\.com/ + to + https://pulse.conviva.com/ + + + target + + host + *.conviva.com + + + + Coochey.net (false MCB) + + ruleset + + name + Coochey.net (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.coochey\.net/ + to + https://www.coochey.net/ + + target + + host + *.coochey.net + + + + Coochey.net (partial) + + ruleset + + name + Coochey.net (partial) + rule + + from + ^http://www\.coochey\.net/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://www.coochey.net/ + + target + + host + www.coochey.net + + + + Cookie Reports.com (partial) + + ruleset + + name + Cookie Reports.com (partial) + rule + + from + ^http://policy\.cookiereports\.com/ + to + https://policy.cookiereports.com/ + + target + + host + policy.cookiereports.com + + + + Cool Key West + + ruleset + + name + Cool Key West + rule + + from + ^http://(?:www\.)?coolkeywest\.com/ + to + https://coolkeywest.com/ + + securecookie + + host + ^coolkeywest\.com$ + name + .+ + + target + + + host + coolkeywest.com + + + host + www.coolkeywest.com + + + + + CoolCart.Net + + ruleset + + name + CoolCart.Net + rule + + from + ^(http://(www\.)?|https://)coolcart\.net/ + to + https://www.coolcart.net/ + + securecookie + + host + ^www\.coolcart\.net$ + name + ^ASP\.NET_SessionId$ + + target + + + host + coolcart.net + + + host + www.coolcart.net + + + + + CoolMiniOrNot.com + + ruleset + + name + CoolMiniOrNot.com + rule + + from + ^http://(www\.)?coolminiornot\.com/ + to + https://$1coolminiornot.com/ + + securecookie + + host + ^(?:www)?\.coolminiornot\.com$ + name + .+ + + target + + + host + coolminiornot.com + + + host + *.coolminiornot.com + + + + + Cooliris + + ruleset + + name + Cooliris + rule + + + from + ^http://(?:www\.)?cooliris\.com/ + to + https://www.cooliris.com/ + + + from + ^http://apps\.cooliris\.com/ + to + https://apps.cooliris.com/ + + + target + + + host + cooliris.com + + + host + *.cooliris.com + + + + + Coop + + ruleset + + name + Coop + rule + + + from + ^http://(?:www\.)?coop\.ch/ + to + https://www.coop.ch/ + + + from + ^http://onlinebanking\.bankcoop\.ch/ + to + https://onlinebanking.bankcoop.ch/ + + + from + ^http://(?:www\.)?supercard\.ch/ + to + https://www.supercard.ch/ + + + from + ^http://(?:www\.)?cooperation-online\.ch/ + to + https://www.cooperation-online.ch/ + + + from + ^http://(?:www\.)?coopzeitung\.ch/ + to + https://www.coopzeitung.ch/ + + + from + ^http://(?:www\.)?cooperazione\.ch/ + to + https://www.cooperazione.ch/ + + + from + ^http://(?:www\.)?coopathome\.ch/ + to + https://www.coopathome.ch/ + + + from + ^http://(?:www\.)?interdiscount\.ch/ + to + https://www.interdiscount.ch/ + + + from + ^http://(?:www\.)?microspot\.ch/ + to + https://www.microspot.ch/ + + + from + ^http://(?:www\.)?toptip\.ch/ + to + https://www.toptip.ch/ + + + from + ^http://(?:www\.)?lumimart\.ch/ + to + https://www.lumimart.ch/ + + + from + ^http://(?:www\.)?impo\.ch/ + to + https://www.impo.ch/ + + + from + ^http://(?:www\.)?christ-swiss\.ch/ + to + https://www.christ-swiss.ch/ + + + from + ^http://(?:www\.)?fust\.ch/ + to + https://www.fust.ch/ + + + from + ^http://([^/:@]*)\.fust\.ch/ + to + https://$1.fust.ch/ + + + from + ^http://(?:www\.)?the-body-shop\.ch/ + to + https://www.the-body-shop.ch/ + + + target + + + host + onlinebanking.bankcoop.ch + + + host + supercard.ch + + + host + www.supercard.ch + + + host + cooperation-online.ch + + + host + www.cooperation-online.ch + + + host + coopzeitung.ch + + + host + www.coopzeitung.ch + + + host + cooperazione.ch + + + host + www.cooperazione.ch + + + host + coopathome.ch + + + host + www.coopathome.ch + + + host + interdiscount.ch + + + host + www.interdiscount.ch + + + host + microspot.ch + + + host + www.microspot.ch + + + host + toptip.ch + + + host + www.toptip.ch + + + host + lumimart.ch + + + host + www.lumimart.ch + + + host + impo.ch + + + host + www.impo.ch + + + host + christ-swiss.ch + + + host + www.christ-swiss.ch + + + host + fust.ch + + + host + *.fust.ch + + + host + the-body-shop.ch + + + host + www.the-body-shop.ch + + + + + Coop.no + + ruleset + + name + Coop.no + rule + + + from + ^http://(www\.)?coop\.no/ + to + https://coop.no/ + + + from + ^http://(www\.)?coophotellkupp\.com/ + to + https://www.coophotellkupp.com/ + + + target + + + host + www.coop.no + + + host + coop.no + + + host + www.coophotellkupp.com + + + host + coophotellkupp.no + + + + + Cooperating-Objects.eu + + ruleset + + name + Cooperating-Objects.eu + rule + + from + ^http://www\.cooperating-objects\.eu/ + to + https://www.cooperating-objects.eu/ + + securecookie + + host + ^www\.cooperating-objects\.eu$ + name + .+ + + target + + host + www.cooperating-objects.eu + + + + Cope-IT + + ruleset + + name + Cope-IT + rule + + from + ^http://www\.cope-it\.at/ + to + https://www.cope-it.at/ + + securecookie + + host + ^www\.cope-it\.at$ + name + .+ + + target + + host + www.cope-it.at + + + + Copernic.com (partial) + + ruleset + + name + Copernic.com (partial) + rule + + + from + ^http://(?:www\.)?copernic\.com/ + to + https://www.copernic.com/ + + + from + ^http://go\.copernic\.com/ + to + https://go.copernic.com/ + + + from + ^http://images\.copernic\.com/ + to + https://www.copernic.com/images/ + + + from + ^http://mail\.copernic\.com/ + to + https://webmail.harriscomputer.com/ + + + securecookie + + host + ^(?:go|www)\.copernic\.com$ + name + .+ + + target + + + host + copernic.com + + + host + *.copernic.com + + + + + Copiny (partial) + + ruleset + + name + Copiny (partial) + rule + + from + ^http://(static\.|www\.)?copiny\.com/ + to + https://$1copiny.com/ + + securecookie + + host + ^\.copiny\.com$ + name + .+ + + target + + + host + copiny.com + + + host + *.copiny.com + + + + + Copy.com (partial) + + ruleset + + name + Copy.com (partial) + rule + + + from + ^http://((?:apiweb|next|www)\.)?copy\.com/ + to + https://$1copy.com/ + + + from + ^http://support\.copy\.com/ + to + https://copy.zendesk.com/ + + + securecookie + + host + ^(?:next|www)?\.copy\.com$ + name + .+ + + target + + + host + copy.com + + + host + *.copy.com + + + + + Copyright Clearance Center + + ruleset + + name + Copyright Clearance Center + rule + + from + ^http://(rightscentral\.|www\.)?copyright\.com/ + to + https://$1copyright.com/ + + securecookie + + host + ^.+\.copyright\.com$ + name + .+ + + target + + + host + copyright.com + + + host + *.copyright.com + + + + + Copyright-Watch.org + + ruleset + + name + Copyright-Watch.org + rule + + from + ^http://(www\.)?copyright-watch\.org/ + to + https://$1copyright-watch.org/ + + securecookie + + host + ^\.copyright-watch\.org$ + name + .+ + + target + + + host + copyright-watch.org + + + host + *.copyright-watch.org + + + + + Corbin Fisher + + ruleset + + name + Corbin Fisher + rule + + from + ^http://(?:www\.)?corbinfisher\.com/ + to + https://www.corbinfisher.com/ + + securecookie + + host + ^www\.corbinfisher\.com$ + name + .+ + + target + + + host + corbinfisher.com + + + host + www.corbinfisher.com + + + + + Core Security.com (partial) + + ruleset + + name + Core Security.com (partial) + rule + + + from + ^http://(blog|cs)\.coresecurity\.com/ + to + https://$1.coresecurity.com/ + + + from + ^http://ws\.coresecurity\.com/(cs|image|j|r)s/ + to + https://na-d.marketo.com/$1s/ + + + securecookie + + host + ^cs\.coresecurity\.com$ + name + .+ + + target + + host + *.coresecurity.com + + + + CoreCommerce + + ruleset + + name + CoreCommerce + rule + + from + ^http://(www(?:1[56])?\.)?corecommerce\.com/ + to + https://$1corecommerce.com/ + + securecookie + + host + ^(?:www\.)?corecommerce\.com$ + name + .+ + + target + + + host + corecommerce.com + + + host + *.corecommerce.com + + + + + CoreMetrics (partial) + + ruleset + + name + CoreMetrics (partial) + rule + + + from + ^http://data\.cmcore\.com/ + to + https://data.cmcore.com/ + + + from + ^http://www\.coremetrics\.com/ + to + https://www.ibm.com/software/marketing-solutions/coremetrics/www.redirects/ + + + from + ^http://(data|libs|testdata)\.coremetrics\.com/ + to + https://$1.coremetrics.com/ + + + from + ^http://stats\.surfaid\.ihost\.com/ + to + https://stats.surfaid.ihost.com/ + + + securecookie + + + host + ^testdata\.coremetrics\.com$ + name + .+ + + + host + ^\.surfaid\.ihost\.com$ + name + .+ + + + target + + + host + data.cmcore.com + + + host + *.coremetrics.com + + + host + *.surfaid.ihost.com + + + + + CoreMotives.com + + ruleset + + name + CoreMotives.com + rule + + + from + ^http://(?:www\.)?coremotives\.com/$ + to + https://www.silverpop.com/marketing-products/coremotives/ + + + from + ^http://databroker\.coremotives\.com/ + to + https://databroker.coremotives.com/ + + + target + + + host + coremotives.com + + + host + *.coremotives.com + + + + + CoreOS.com + + ruleset + + name + CoreOS.com + rule + + from + ^http://(www\.)?coreos\.com/ + to + https://$1coreos.com/ + + securecookie + + host + ^\.coreos\.com$ + name + .+ + + target + + + host + coreos.com + + + host + *.coreos.com + + + + + CoreSite.com (partial) + + ruleset + + name + CoreSite.com (partial) + rule + + from + ^http://mycoresite\.coresite\.com/ + to + https://mycoresite.coresite.com/ + + securecookie + + host + ^mycoresite\.coresite\.com$ + name + .+ + + target + + host + mycoresite.coresite.com + + + + Coreix (partial) + + ruleset + + name + Coreix (partial) + rule + + from + ^http://(manage\.|www\.)?coreix\.net/ + to + https://$1coreix.net/ + + securecookie + + host + ^(?:manage\.|www\.)?coreix\.net$ + name + .+ + + target + + + host + coreix.net + + + host + *.coreix.net + + + + + Cork University Press.com + + ruleset + + name + Cork University Press.com + rule + + from + ^http://(www\.)?corkuniversitypress\.com/ + to + https://$1corkuniversitypress.com/ + + securecookie + + host + ^(?:www\.)?corkuniversitypress\.com$ + name + .+ + + target + + + host + corkuniversitypress.com + + + host + www.corkuniversitypress.com + + + + + Corlan Team + + ruleset + + name + Corlan Team + rule + + from + ^http://(www\.)?corelan\.be/ + to + https://$1corelan.be/ + + securecookie + + host + ^(?:w*\.)?corelan\.be$ + name + .+ + + target + + + host + corelan.be + + + host + *.corelan.be + + + + + Cornell University (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?cals\.cornell\.edu/(?!assets/|favicon\.ico|twitter/jquery\.tweet\.js) + + name + Cornell University (partial) + platform + mixedcontent + rule + + from + ^http://((?:(?:www\.)?(?:cals|cs|library)|topeka\.ccmr|ww3\.lawschool|embanner\.univcomm|www)\.)?cornell\.edu/ + to + https://$1cornell.edu/ + + securecookie + + host + ^(?!cals\.)(?:.*\.)?cornell\.edu$ + name + .+ + + target + + + host + cornell.edu + + + host + *.cornell.edu + + + + + Corning Credit Union + + ruleset + + name + Corning Credit Union + platform + mixedcontent + rule + + from + ^http://(www\.)?corningcu\.org/ + to + https://corningcu.org/ + + target + + + host + www.corningcu.org + + + host + corningcu.org + + + + + Corporate Color + + ruleset + + name + Corporate Color + rule + + from + ^http://(?:www\.)?saimd\.com/ + to + https://www.saimd.com/ + + target + + + host + saimd.com + + + host + www.saimd.com + + + + + Corporation Service Company + + ruleset + + name + Corporation Service Company + rule + + + from + ^http://(?:www\.)?corporatedomains\.com/[^\?]*(\?.*)? + to + https://www.cscglobal.com/global/web/csc/corporate-identity-protection.html$1 + + + from + ^http://(my\.|www\.)?cscglobal\.com/ + to + https://$1cscglobal.com/ + + + from + ^http://(?:www\.)?cscprotectsbrands\.com/.* + to + https://www.cscglobal.com/global/web/csc/domains-and-trademarks.html + + + securecookie + + host + ^(?:.*\.)?cscglobal\.com$ + name + .+ + + target + + + host + corporatedomains.com + + + host + www.corporatedomains.com + + + host + cscglobal.com + + + host + *.cscglobal.com + + + host + cscprotectsbrands.com + + + host + www.cscprotectsbrands.com + + + + + Corsair.com (partial) + + ruleset + + name + Corsair.com (partial) + rule + + from + ^http://(?:(?:cwsmgmt|shop|www)\.)?corsair\.com/ + to + https://shop.corsair.com/ + + securecookie + + host + ^\.corsair\.com$ + name + .+ + + target + + + host + corsair.com + + + host + *.corsair.com + + + + + Cosmo.org + + ruleset + + name + Cosmo.org + rule + + from + ^http://(?:www\.)?cosmo\.org/ + to + https://www.cosmo.org/ + + securecookie + + host + ^www\.cosmo\.org$ + name + .+ + + target + + + host + cosmo.org + + + host + www.cosmo.org + + + + + Cosmote + + ruleset + + name + Cosmote + rule + + from + ^http://www\.cosmote\.gr/ + to + https://www.cosmote.gr/ + + securecookie + + host + ^www\.cosmote\.gr$ + name + .* + + target + + host + www.cosmote.gr + + + + Costco + + ruleset + + name + Costco + rule + + + from + ^http://(?:www\.)?costco\.com/ + to + https://www.costco.com/ + + + from + ^http://(shop|www2)\.costco\.com/ + to + https://$1.costco.com/ + + + securecookie + + host + ^(.*\.)?costco\.com$ + name + .* + + target + + + host + costco.com + + + host + *.costco.com + + + + + Cosumers Win.com + + ruleset + + name + Cosumers Win.com + rule + + from + ^http://(www\.)?consumerswin\.com/ + to + https://$1consumerswin.com/ + + securecookie + + host + ^(?:www\.)?consumerswin\.com$ + name + .+ + + target + + + host + consumerswin.com + + + host + www.consumerswin.com + + + + + Cotera (partial) + + ruleset + + name + Cotera (partial) + rule + + + from + ^http://(www\.)?cortera\.com/(css|img|video|wordpress)/ + to + https://$1cortera.com/$2/ + + + from + ^http://blog\.cortera\.com/ + to + https://blog.cortera.com/ + + + from + ^https?://dev-blog\.cortera\.com/wordpress/ + to + https://blog.cortera.com/wordpress/ + + + from + ^http://start\.cortera\.com/(go(?:$|/)|images/) + to + https://start.cortera.com/$1 + + + target + + + host + cortera.com + + + host + *.cortera.com + + + + + Cotse.net + + ruleset + + name + Cotse.net + rule + + from + ^http://(www\.)?cotse\.net/ + to + https://www.cotse.net/ + + target + + + host + www.cotse.net + + + host + cotse.net + + + + + CouchPota.to + + ruleset + + name + CouchPota.to + rule + + from + ^http://(www\.)?couchpota\.to/ + to + https://$1couchpota.to/ + + target + + + host + couchpota.to + + + host + www.couchpota.to + + + + + Couchbase (partial) + + ruleset + + name + Couchbase (partial) + rule + + + from + ^http://(www\.)?couchbase\.com/couchbase-server(?:/?(?:\?.*)?$|/overview) + to + https://$1couchbase.com/couchbase-server/overview + + + from + ^http://(www\.)?couchbase\.com/develop/?(?:\?.*)?$ + to + https://www.couchbase.com/communities/all-client-libraries + + + from + ^http://(www\.)?couchbase\.com/(?=$|\?|(?:buzz|case-studies/\w+|communities|company|contact|couchbase-(?:open-source-project|server-java-training|server/use-cases|support)|customers|docs|forums/user|learn|presentations|why-nosql/nosql-database)(?:$|\?|/)|(?:forums/)?(?:misc|sites)/) + to + https://$1couchbase.com/ + + + from + ^http://info\.couchbase\.com/(?=(?:cs|image|j|r)s/) + to + https://na-a.marketo.com/ + + + from + ^http://packages\.couchbase\.com/ + to + https://s3.amazonaws.com/packages.couchbase.com/ + + + target + + + host + couchbase.com + + + host + *.couchbase.com + + + + + Couchsurfing + + ruleset + + name + Couchsurfing + rule + + from + ^http://www\.couchsurfing\.org/login\.html$ + to + https://www.couchsurfing.org/login.html + + target + + + host + www.couchsurfing.org + + + host + couchsurfing.org + + + + + Council of Australian Governments + + ruleset + + name + Council of Australian Governments + rule + + from + ^http://(?:www\.)?coag\.gov\.au/ + to + https://www.coag.gov.au/ + + target + + + host + coag.gov.au + + + host + *.coag.gov.au + + + + + Council of Europe (partial) + + ruleset + + name + Council of Europe (partial) + rule + + + from + ^http://(?:www\.)?coe\.int/ + to + https://www.coe.int/ + + + from + ^http://(hub|piwik)\.coe\.int/ + to + https://$1.coe.int/ + + + securecookie + + host + ^(?:hub|piwik|www)\.coe\.int$ + name + .+ + + target + + + host + coe.int + + + host + *.coe.int + + + + + Council on Foreign Relations (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?cfr\.org/(?!content/.+\.(?:gif|jpg|png)$|css/|i/|login\.html) + + name + Council on Foreign Relations (partial) + rule + + + from + ^https?://(?:www\.)?cfr\.org/login\.html + to + https://secure.cfr.org/login.html + + + from + ^https?://(?:i\.|www\.)?cfr\.org/ + to + https://d1lidwm7vls1dg.cloudfront.net/ + + + from + ^http://(blogs|secure\.www)\.cfr\.org/ + to + https://$1.cfr.org/ + + + target + + + host + cfr.org + + + host + *.cfr.org + + + host + secure.www.cfr.org + + + + + CounterMail.com + + ruleset + + name + CounterMail.com + rule + + from + ^http://(support\.|www\.)?countermail\.com/ + to + https://$1countermail.com/ + + securecookie + + host + ^support\.countermail\.com$ + name + .+ + + target + + + host + countermail.com + + + host + *.countermail.com + + + + + Countquest.se + + ruleset + + name + Countquest.se + rule + + from + ^http://sdc\.countquest\.se/ + to + https://sdc.countquest.se/ + + target + + host + sdc.countquest.se + + + + Coupons, Inc (partial) + + ruleset + + name + Coupons, Inc (partial) + rule + + + from + ^http://coupouns\.com/ + to + https://www.coupouns.com/ + + + from + ^http://www\.coupons\.com/couponweb/ + to + https://www.coupons.com/couponweb/ + + + from + ^http://(access|brandcaster|downloads1|insight)\.coupons\.com/ + to + https://$1.coupons.com/ + + + from + ^http://cdn\.cpnscdn\.com/ + to + https://cdn.cpnscdn.com/ + + + target + + + host + coupons.com + + + host + *.coupons.com + + + host + cdn.cpnscdn.com + + + + + Courage Found.org + + ruleset + + name + Courage Found.org + rule + + from + ^http://(www\.)?couragefound\.org/ + to + https://$1couragefound.org/ + + target + + + host + couragefound.org + + + host + www.couragefound.org + + + + + Courier-Post (partial) + + ruleset + + name + Courier-Post (partial) + rule + + + from + ^http://(?:cmsimg\.|www\.)?courierpostonline\.com/ + to + https://www.courierpostonline.com/ + + + from + ^http://myaccount\.courierpostonline\.com/ + to + https://myaccount.courierpostonline.com/ + + + from + ^http://localsearch\.courierpostonline\.com/sf_frameworks/ + to + https://chill.planetdiscover.com/sf_frameworks/ + + + securecookie + + host + ^(?:www)?\.courierpostonline\.com$ + name + .+ + + target + + + host + courierpostonline.com + + + host + *.courierpostonline.com + + + + + Coursera + + ruleset + + name + Coursera + rule + + + from + ^https?://coursera\.org/ + to + https://www.coursera.org/ + + + from + ^http://(accounts|class|eventing|tech|www)\.coursera\.org/ + to + https://$1.coursera.org/ + + + securecookie + + host + ^(.*\.)?coursera\.org$ + name + .* + + target + + + host + coursera.org + + + host + *.coursera.org + + + + + CourtListener.com + + ruleset + + name + CourtListener.com + rule + + from + ^http://(www\.)?courtlistener\.com/ + to + https://$1courtlistener.com/ + + target + + + host + courtlistener.com + + + host + www.courtlistener.com + + + + + Courthouse News Service + + ruleset + + name + Courthouse News Service + platform + mixedcontent + rule + + from + ^http://(www\.)?courthousenews\.com/ + to + https://$1courthousenews.com/ + + securecookie + + host + ^(www\.)?courthousenews\.com$ + name + .* + + target + + + host + courthousenews.com + + + host + www.courthousenews.com + + + + + Courts of New Zealand + + ruleset + + name + Courts of New Zealand + rule + + from + ^http://(www\.)?courtsofnz\.govt\.nz/ + to + https://$1courtsofnz.govt.nz/ + + target + + + host + courtsofnz.govt.nz + + + host + www.courtsofnz.govt.nz + + + + + CoverStand.com + + ruleset + + name + CoverStand.com + rule + + from + ^http://(cdn\.|www\.)?coverstand\.com/ + to + https://$1coverstand.com/ + + securecookie + + host + ^(?:www\.)?coverstand\.com$ + name + .+ + + target + + + host + coverstand.com + + + host + *.coverstand.com + + + + + Coveralls.io + + ruleset + + name + Coveralls.io + rule + + from + ^http://(blogs\.|www\.)?coveralls\.io/ + to + https://$1coveralls.io/ + + securecookie + + host + ^(?:\.|www\.)?coveralls\.io$ + name + .+ + + target + + + host + coveralls.io + + + host + *.coveralls.io + + + + + Covered California (partial) + + ruleset + + name + Covered California (partial) + rule + + + from + ^(http://(www\.)?|https://)coveredca\.com/ + to + https://www.coveredca.com/ + + + from + ^http://(www\.)?coveredcacertifiedpartners\.com/ + to + https://www.coveredcacertifiedpartners.com/ + + + from + ^http://v\.calheers\.ca\.gov/ + to + https://v.calheers.ca.gov/ + + + from + ^https?://(www\.)?coveredca\.org/ + to + https://www.coveredca.com/ + + + securecookie + + + host + ^www\.coveredca\.com$ + name + .+ + + + host + ^www\.coveredcacertifiedpartners\.com$ + name + .+ + + + host + ^v\.calheers\.ca\.gov$ + name + .+ + + + target + + + host + coveredca.com + + + host + www.coveredca.com + + + host + coveredcacertifiedpartners.com + + + host + www.coveredcacertifiedpartners.com + + + host + v.calheers.ca.gov + + + host + coveredca.org + + + host + www.coveredca.org + + + + + Coverfire.com + + ruleset + + name + Coverfire.com + rule + + from + ^http://(www\.)?coverfire\.com/ + to + https://$1coverfire.com/ + + target + + + host + coverfire.com + + + host + www.coverfire.com + + + + + Coverforyou.com + + ruleset + + name + Coverforyou.com + rule + + + from + ^https?://coverforyou\.com/ + to + https://www.coverforyou.com/ + + + from + ^http://([^/:@]+)?\.coverforyou\.com/ + to + https://$1.coverforyou.com/ + + + target + + + host + coverforyou.com + + + host + *.coverforyou.com + + + + + CoveritLive.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.coveritlive\.com/(?!favicon\.ico|images/|templates/) + + name + CoveritLive.com (partial) + rule + + + from + ^http://(?:www\.)?coveritlive\.com/ + to + https://coveritlive.com/ + + + from + ^http://cdnsl(?:ssl)?\.coveritlive\.com/ + to + https://cdnslssl.coveritlive.com/ + + + from + ^http://(secure4|wwwssl)\.coveritlive\.com/ + to + https://$1.coveritlive.com/ + + + target + + + host + coveritlive.com + + + host + *.coveritlive.com + + + + + Coverity.com (partial) + + ruleset + + name + Coverity.com (partial) + rule + + + from + ^http://autodiscover\.coverity\.com/ + to + https://autodiscover-s.outlook.com/ + + + from + ^http://blog\.coverity\.com/[^?]*(?=$|\?) + to + https://communities.coverity.com/blogs/software-integrity-blog/ + + + from + ^http://((?:(?:apps\.)?uat\.)?communities|(?:www\.)?scan|trial)\.coverity\.com/ + to + https://$1.coverity.com/ + + + from + ^http://softwareintegrity\.coverity\.com/(?=css/|images/|js/|rs/) + to + https://na-sjf.marketo.com/ + + + securecookie + + host + ^(?:(?:(?:apps\.)?uat\.)?communities|(?:www\.)?scan)\.coverity\.com$ + name + .+ + + target + + host + *.coverity.com + + + + Covisint + + ruleset + + name + Covisint + rule + + + from + ^http://(portal\.|www\.)?covisint\.com/ + to + https://$1covisint.com/ + + + from + ^https?://support\.covisint\.com/ + to + https://portal.covisint.com/web/support/ + + + securecookie + + host + ^(.*\.)?covisint\.com$ + name + .* + + target + + + host + covisint.com + + + host + *.covisint.com + + + + + Cox Communications (partial) + + ruleset + + exclusion + + pattern + ^http://(?:intercept|ww2)\.cox\.com/.+\.cox(?:$|\?) + + name + Cox Communications (partial) + rule + + + from + ^https?://(?:ww[2w]\.)?cox\.com/ + to + https://ww2.cox.com/ + + + from + ^http://(framework|images|intercept|store)\.cox\.com/ + to + https://$1.cox.com/ + + + from + ^http://(idm\.east|framework)\.cox\.net/ + to + https://$1.cox.net/ + + + from + ^https?://(?:www\.)?coxbusiness\.com/ + to + https://ww2.cox.com/business + + + from + ^http://(framework|myaccount)\.coxbusiness\.com/ + to + https://$1.coxbusiness.com/ + + + securecookie + + + host + ^\.?store\.cox\.com$ + name + .+ + + + host + ^\.cox\.net$ + name + .+ + + + host + ^.*\.coxbusiness\.com$ + name + .+ + + + target + + + host + cox.com + + + host + *.cox.com + + + host + *.store.cox.com + + + host + *.cox.net + + + host + idm.east.cox.net + + + host + coxbusiness.com + + + host + *.coxbusiness.com + + + + + Cox Digital Solutions (partial) + + ruleset + + name + Cox Digital Solutions (partial) + rule + + + from + ^http://(www\.)?coxdigitalsolutions\.com/wp-content/ + to + https://$1coxdigitalsolutions.com/wp-content/ + + + from + ^https?://(?:www\.)?coxds\.com/ + to + https://www.coxdigitalsolutions.com/ + + + from + ^http://(go|images)\.coxds\.com/ + to + https://$1.coxds.com/ + + + securecookie + + host + ^.+\.coxds\.com$ + name + .+ + + target + + + host + coxdigitalsolutions.com + + + host + www.coxdigitalsolutions.com + + + host + coxds.com + + + host + *.coxds.com + + + + + Cpunks.org + + ruleset + + name + Cpunks.org + rule + + from + ^http://(?:(cypherpunks\.)|www\.)?cpunks\.org/ + to + https://$1cpunks.org/ + + target + + + host + cpunks.org + + + host + *.cpunks.org + + + + + CrackStation.net + + ruleset + + name + CrackStation.net + rule + + from + ^http://(?:www\.)?crackstation\.net/ + to + https://crackstation.net/ + + target + + + host + crackstation.net + + + host + www.crackstation.net + + + + + CraftBanter + + ruleset + + name + CraftBanter + rule + + from + ^https?://(?:www\.)?craftbanter\.com/ + to + https://craftbanter.com/ + + securecookie + + host + ^\.?craftbanter\.com$ + name + .+ + + target + + + host + craftbanter.com + + + host + *.craftbanter.com + + + + + CraftStats.com + + ruleset + + name + CraftStats.com + rule + + from + ^http://(?:www\.)?craftstats\.com/ + to + https://www.craftstats.com/ + + securecookie + + host + ^(?:www)?\.craftstats\.com$ + name + .+ + + target + + + host + craftstats.com + + + host + *.craftstats.com + + + + + Craigslist.org (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.craigslist\.org/$ + + + pattern + ^http://blog\.craigslist\.org + + + name + Craigslist.org (partial) + rule + + + from + ^http://(www\.)?craigslist\.org/ + to + https://www.craigslist.org/ + + + from + ^http://([^/:@.]*)\.craigslist\.org/ + to + https://$1.craigslist.org/ + + + target + + + host + craigslist.org + + + host + *.craigslist.org + + + + + Crain Communications (partial) + + ruleset + + name + Crain Communications (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?adage\.com/(help/|(?:login|register)\.php) + to + https://adage.com/$1 + + + from + ^http://(?:www\.)?adage\.com/(image|script)s/ + to + https://gaia.adage.com/$1s/ + + + from + ^http://((?:www\.)?amig|gai)a\.adage\.com/ + to + https://$1a.adage.com/ + + + from + ^http://sec\.crain\.com/ + to + https://sec.crain.com/ + + + from + ^http://(www\.)?crainsnewyork\.com/ + to + https://$1crainsnewyork.com/ + + + from + ^http://(?:www\.)?creativity-online\.com/ + to + https://creativity-online.com/ + + + securecookie + + + host + ^sec\.crain\.com$ + name + .* + + + host + ^\.crainsnewyork\.com$ + name + .* + + + target + + + host + adage.com + + + host + *.adage.com + + + host + www.amiga.adage.com + + + host + sec.crain.com + + + host + crainsnewyork.com + + + host + *.crainsnewyork.com + + + host + creativity-online.com + + + host + www.creativity-online.com + + + + + Craphound + + ruleset + + name + Craphound + rule + + from + ^http://(www\.)?craphound\.com/ + to + https://$1craphound.com/ + + securecookie + + host + ^(?:www\.)?craphound\.com$ + name + .+ + + target + + + host + craphound.com + + + host + www.craphound.com + + + + + Crash Space + + ruleset + + name + Crash Space + rule + + from + ^https?://(?:blog\.|www\.)?crashspace\.org/ + to + https://blog.crashspace.org/ + + target + + + host + crashspace.org + + + host + *.crashspace.org + + + + + CrashPlan (partial) + + ruleset + + name + CrashPlan (partial) + rule + + from + ^http://(helpdesk\.|www\.)?crashplan\.com/ + to + https://$1crashplan.com/ + + securecookie + + host + ^(?:.+\.)?crashplan\.com$ + name + .+ + + target + + + host + crashplan.com + + + host + *.crashplan.com + + + + + Crate.io + + ruleset + + name + Crate.io + rule + + from + ^http://(cdn\.|www\.)?crate\.io/ + to + https://$1crate.io/ + + securecookie + + host + ^crate\.io$ + name + .+ + + target + + + host + crate.io + + + host + *.crate.io + + + + + CraveOnline.com (partial) + + ruleset + + name + CraveOnline.com (partial) + rule + + from + ^http://cdn\.assets\.craveonline\.com/ + to + https://a248.e.akamai.net/f/988/9998/10/cdn.assets.craveonline.com/ + + target + + host + cdn.assets.craveonline.com + + + + Crazy Egg (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?crazyegg\.com/(?:$|\?) + + name + Crazy Egg (partial) + rule + + from + ^http://(www\.)?crazyegg\.com/ + to + https://$1crazyegg.com/ + + target + + + host + crazyegg.com + + + host + *.crazyegg.com + + + + + Crazzed.com + + ruleset + + name + Crazzed.com + rule + + from + ^http://(www\.)?crazzed\.com/ + to + https://$1crazzed.com/ + + securecookie + + host + ^(?:\.|www\.)?crazzed\.com$ + name + .+ + + target + + + host + crazzed.com + + + host + *.crazzed.com + + + + + CreateSpace + + ruleset + + name + CreateSpace + rule + + from + ^http://(www\.)?createspace\.com/ + to + https://www.createspace.com/ + + securecookie + + host + ^((www)?\.)?createspace\.com$ + name + .+ + + target + + + host + createspace.com + + + host + www.createspace.com + + + + + Createsend.com (partial) + + ruleset + + name + Createsend.com (partial) + rule + + from + ^http://cname\.createsend\.com/ + to + https://cname.createsend.com/ + + target + + host + cname.createsend.com + + + + Creation + + ruleset + + name + Creation + rule + + + from + ^https?://(?:www\.)?creation\.co\.uk/ + to + https://www.creation.co.uk/ + + + from + ^http://(apply|credit-card-asda-payments|(?:manage)?myaccount)\.creation\.co\.uk/ + to + https://$1.creation.co.uk/ + + + securecookie + + host + ^.+\.creation\.co\.uk$ + name + .+ + + target + + + host + creation.co.uk + + + host + *.creation.co.uk + + + + + Creative Commons (partial) + + ruleset + + name + Creative Commons (partial) + rule + + + from + ^http://creativecommons\.net/ + to + https://creativecommons.net/ + + + from + ^http://(i\.|api\.)?creativecommons\.org/ + to + https://$1creativecommons.org/ + + + target + + + host + creativecommons.net + + + host + creativecommons.org + + + host + *.creativecommons.org + + + + + Creative Endeavors + + ruleset + + name + Creative Endeavors + rule + + from + ^http://(www\.)?ce1\.com/ + to + https://$1ce1.com/ + + target + + + host + ce1.com + + + host + www.ce1.com + + + + + Creative Little Readers.com (false MCB) + + ruleset + + name + Creative Little Readers.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.creativelittlereaders\.com/ + to + https://www.creativelittlereaders.com/ + + securecookie + + host + ^(?:www)?\.creativelittlereaders\.com$ + name + .+ + + target + + host + *.creativelittlereaders.com + + + + Creative Little Readers.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.creativelittlereaders\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Creative Little Readers.com (partial) + rule + + from + ^http://(www\.)?creativelittlereaders\.com/ + to + https://$1creativelittlereaders.com/ + + target + + + host + creativelittlereaders.com + + + host + www.creativelittlereaders.com + + + + + Creative Partnerships Australia + + ruleset + + name + Creative Partnerships Australia + rule + + from + ^http://(?:www\.)?creativepartnershipsaustralia\.org\.au/ + to + https://www.creativepartnershipsaustralia.org.au/ + + target + + + host + creativepartnershipsaustralia.org.au + + + host + *.creativepartnershipsaustralia.org.au + + + + + CreativeSyndicator + + ruleset + + name + CreativeSyndicator + rule + + from + ^http://(delivery\.|www\.)?ads-creativesyndicator\.com/ + to + https://$1ads-creativesyndicator.com/ + + securecookie + + host + ^(?:delivery|www)\.ads-creativesyndicator\.com$ + name + .+ + + target + + + host + ads-creativesyndicator.com + + + host + *.ads-creativesyndicator.com + + + + + Creativeskills.be (false MCB) + + ruleset + + name + Creativeskills.be (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?creativeskills\.be/ + to + https://$1creativeskills.be/ + + securecookie + + host + ^\.creativeskills\.be$ + name + .+ + + target + + + host + creativeskills.be + + + host + *.creativeskills.be + + + + + Creativeskills.be (partial) + + ruleset + + name + Creativeskills.be (partial) + rule + + from + ^http://(www\.)?creativeskills\.be/(?!articles/wp-content/|css/|favicon\.ico|images/) + to + https://$1creativeskills.be/ + + target + + + host + creativeskills.be + + + host + www.creativeskills.be + + + + + Credit Repair Trust.com + + ruleset + + name + Credit Repair Trust.com + rule + + from + ^http://(www\.)?creditrepairtrust\.com/ + to + https://$1creditrepairtrust.com/ + + securecookie + + host + ^(?:[w.]*\.)?creditrepairtrust\.com$ + name + .+ + + target + + + host + creditrepairtrust.com + + + host + *.creditrepairtrust.com + + + + + Credit Report Nation + + ruleset + + name + Credit Report Nation + rule + + from + ^http://(www\.)?creditreportnation\.com/ + to + https://$1creditreportnation.com/ + + securecookie + + host + ^(?:.*\.)?creditreportnation\.com$ + name + .+ + + target + + + host + creditreportnation.com + + + host + *.creditreportnation.com + + + + + Credit Suisse + + ruleset + + name + Credit Suisse + rule + + from + ^http://(www\.)?credit-suisse\.com/ + to + https://$1credit-suisse.com/ + + securecookie + + host + ^(?:w*\.)?credit-suisse\.com$ + name + .+ + + target + + + host + credit-suisse.com + + + host + www.credit-suisse.com + + + + + CreditDisputeProgram.com + + ruleset + + name + CreditDisputeProgram.com + rule + + from + ^http://(www\.)?creditdisputeprogram\.com/ + to + https://$1creditdisputeprogram.com/ + + securecookie + + host + ^(?:[w.]*\.)?creditdisputeprogram\.com$ + name + .+ + + target + + + host + creditdisputeprogram.com + + + host + *.creditdisputeprogram.com + + + + + Crikey (partial) + + ruleset + + name + Crikey (partial) + rule + + from + ^http://(media\.|www\.)?crikey\.com\.au/ + to + https://$1crikey.com.au/ + + securecookie + + host + ^www\.crikey\.com\.au$ + name + .+ + + target + + + host + crikey.com.au + + + host + *.crikey.com.au + + + + + Crimtan (partial) + + ruleset + + name + Crimtan (partial) + rule + + from + ^http://(cdn|i)\.ctpsnet\.com/ + to + https://$1.ctpsnet.com/ + + securecookie + + host + ^\.ctnsnet\.com$ + name + .+ + + target + + host + *.ctpsnet.com + + + + Criteo (partial) + + ruleset + + name + Criteo (partial) + rule + + from + ^http://(advertising|cas|dis|labs|rtax|sslwidget|dis\.us)\.criteo\.com/ + to + https://$1.criteo.com/ + + securecookie + + host + ^\.criteo\.com$ + name + .* + + target + + + host + *.criteo.com + + + host + dis.us.criteo.com + + + + + Critical Mass (partial) + + ruleset + + name + Critical Mass (partial) + rule + + from + ^http://cm1\.criticalmass\.com/ + to + https://cm1.criticalmass.com/ + + securecookie + + host + ^cm1\.criticalmass\.com$ + name + .* + + target + + host + cm1.criticalmass.com + + + + Critical Path Internet Services + + ruleset + + name + Critical Path Internet Services + rule + + from + ^http://secure\.critpath\.org/ + to + https://secure.critpath.org/ + + target + + host + secure.critpath.org + + + + Crittercism.com (partial) + + ruleset + + name + Crittercism.com (partial) + rule + + from + ^http://ap(i|p)\.crittercism\.com/ + to + https://ap$1.crittercism.com/ + + securecookie + + host + ^ap[ip]\.crittercism\.com + name + .+ + + target + + host + *.crittercism.com + + + + Crockotec (partial) + + ruleset + + name + Crockotec (partial) + rule + + + from + ^http://(www\.)?crocko\.com/ + to + https://$1crocko.com/ + + + from + ^http://(www\.)?easy-share\.com/ + to + https://$1easy-share.com/ + + + securecookie + + host + ^\.crocko\.com$ + name + .* + + target + + + host + crocko.com + + + host + *.crocko.com + + + host + easy-share.com + + + host + www.easy-share.com + + + + + Crocs + + ruleset + + exclusion + + pattern + ^http://investors\.crocs\.com/(?!client/|WebSideStory/) + + name + Crocs + rule + + + from + ^http://(?:www\.)?crocs\.com/ + to + https://www.crocs.com/ + + + from + ^http://(espanol|images)\.crocs\.com/ + to + https://$1.crocs.com/ + + + from + ^http://investors\.crocs\.com/ + to + https://a248.akamai.net/f/121/4034/6m/investors.crocs.com/ + + + securecookie + + + host + .*\.crocs\.com$ + name + ^(?:s_\w+|__utm)\w$ + + + host + ^(?:espanol|www)\.crocs\.com$ + name + .+ + + + target + + + host + crocs.com + + + host + *.crocs.com + + + + + Cronius.nl + + ruleset + + name + Cronius.nl + rule + + from + ^http://(www\.)?cronius\.nl/ + to + https://$1cronius.nl/ + + securecookie + + host + ^\.cronius\.nl$ + name + .+ + + target + + + host + cronius.nl + + + host + *.cronius.nl + + + + + Croscill.com (partial) + + ruleset + + name + Croscill.com (partial) + rule + + + from + ^http://(www\.)?croscill\.com/(?=(?:contact|order-status|returns|Shop/Customer)(?:$|[?/])|content/.+\.(?:htm|png)$|css/|favicon\.ico|Public/|Styles/|store_image/) + to + https://$1croscill.com/ + + + from + ^http://(?:www\.)?croscill\.com/content/8/contact-us\.html.* + to + https://www.croscill.com/contact + + + target + + + host + croscill.com + + + host + www.croscill.com + + + + + Cross Pixel Media (partial) + + ruleset + + name + Cross Pixel Media (partial) + rule + + + from + ^https?://elmo\.crsspxl\.com/ + to + https://d2kdqv2bboglbi.cloudfront.net/ + + + from + ^http://tag\.crsspxl\.com/ + to + https://tag.crsspxl.com/ + + + securecookie + + host + ^(?:tag)?\.crsspxl\.com$ + name + .+ + + target + + host + *.crsspxl.com + + + + CrossRef.org (partial) + + ruleset + + name + CrossRef.org (partial) + rule + + + from + ^http://(api|crossmark)\.crossref\.org/ + to + https://$1.crossref.org/ + + + from + ^http://help\.crossref\.com/(?=docs-view-\d+\.css|favicon\.ico|favicon-\d+-\d+\.gif|resources/|userfiles/) + to + https://crossref.helpdocsonline.com/ + + + target + + host + *.crossref.org + + + + Crossrider (partial) + + ruleset + + name + Crossrider (partial) + rule + + from + ^https?://(?:www\.)?crossrider\.com/ + to + https://crossrider.com/ + + securecookie + + host + ^\.?crossrider\.com$ + name + .+ + + target + + + host + crossrider.com + + + host + *.crossrider.com + + + + + Crowd Factory + + ruleset + + name + Crowd Factory + rule + + + from + ^https?://(?:www\.)?crowdfactory.com/ + to + https://www.crowdfactory.com/ + + + from + ^http://b(2c-wsinsight|log)\.crowdfactory\.com/ + to + https://b$1.crowdfactory.com/ + + + from + ^http://(www\.)?socialcampaign\.com/ + to + https://$1socialcampaign.com/ + + + securecookie + + + host + ^.*\.crowdfactory\.com$ + name + .* + + + host + ^socialcampaign\.com$ + name + .* + + + target + + + host + crowdfactory.com + + + host + *.crowdfactory.com + + + host + socialcampaign.com + + + host + www.socialcampaign.com + + + + + Crowd Science (partial) + + ruleset + + exclusion + + pattern + http://static\.crowndscience\.com/blog/ + + name + Crowd Science (partial) + rule + + + from + ^http://(aws-)?app\.crowdscience\.com/ + to + https://$1app.crowdscience.com/ + + + from + ^http://(?:secure-)?static\.crowdscience\.com/ + to + https://secure-static.crowdscience.com/ + + + from + ^http://support\.crowdscience\.com/(favicon\.ico|generated/|system/|widgets/) + to + https://crowdscience.zendesk.com/$1 + + + target + + host + *.crowdscience.com + + + + Crowd Supply.com (partial) + + ruleset + + name + Crowd Supply.com (partial) + rule + + from + ^http://(www\.)?crowdsupply\.com/ + to + https://$1crowdsupply.com/ + + securecookie + + host + ^www\.crowdsupply\.com$ + name + .+ + + target + + + host + crowdsupply.com + + + host + www.crowdsupply.com + + + + + CrowdCulture.se + + ruleset + + name + CrowdCulture.se + rule + + from + ^http://(www\.)?crowdculture\.se/ + to + https://$1crowdculture.se/ + + securecookie + + host + ^\.?crowdculture\.se$ + name + .+ + + target + + + host + crowdculture.se + + + host + *.crowdculture.se + + + + + CrowdTangle (partial) + + ruleset + + name + CrowdTangle (partial) + rule + + + from + ^https?://(?:www\.)?crowdtangle\.com/(asset|upload)s/ + to + https://onepagerapp.com/$1s/ + + + from + ^http://prod\.crowdtangle\.com/ + to + https://prod.crowdtangle.com/ + + + target + + + host + crowdtangle.com + + + host + *.crowdtangle.com + + + + + Crowdcurity.com + + ruleset + + name + Crowdcurity.com + platform + firefox + rule + + from + ^http://crowdcurity\.com/ + to + https://crowdcurity.com/ + + securecookie + + host + ^crowdcurity\.com$ + name + .+ + + target + + host + crowdcurity.com + + + + Cru.org + + ruleset + + name + Cru.org + rule + + + from + ^http://(www\.)?cru\.org/ + to + https://$1cru.org/ + + + from + ^https?://static\.cru\.org/ + to + https://d2kuvqjqp132ic.cloudfront.net/ + + + securecookie + + host + ^(?:www\.)?cru\.org$ + name + .+ + + target + + + host + cru.org + + + host + *.cru.org + + + + + Crucial.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?crucial\.com/(?!favicon\.png|images\d{0,2}/|js/|css/|reviews/) + + name + Crucial.com (partial) + rule + + + from + ^http://crucial\.com/ + to + https://crucial.com/ + + + from + ^http://(?:images|scripts|www)\.crucial\.com/ + to + https://www.crucial.com/ + + + from + ^http://forum\.crucial\.com/ + to + https://crucial.i.lithium.com/ + + + target + + + host + crucial.com + + + host + *.crucial.com + + + + + CruisersForum.com + + ruleset + + name + CruisersForum.com + rule + + from + ^http://(?:cdn\.|www\.)?cruisersforum\.com/ + to + https://www.cruisersforum.com/ + + securecookie + + host + ^(?:www)?\.cruisersforum\.com$ + name + .+ + + target + + + host + cruisersforum.com + + + host + *.cruisersforum.com + + + + + CryptAByte.com + + ruleset + + name + CryptAByte.com + rule + + from + ^http://(www\.)?cryptabyte\.com/ + to + https://$1cryptabyte.com/ + + target + + + host + cryptabyte.com + + + host + *.cryptabyte.com + + + + + CryptAd.com + + ruleset + + name + CryptAd.com + rule + + from + ^http://(www\.)?cryptad\.com/ + to + https://$1cryptad.com/ + + securecookie + + host + ^\.cryptad\.com$ + name + .+ + + target + + + host + cryptad.com + + + host + *.cryptad.com + + + + + CryptIP.com + + ruleset + + name + CryptIP.com + rule + + from + ^http://(www\.)?cryptip\.com/ + to + https://$1cryptip.com/ + + securecookie + + host + ^\.cryptip\.com$ + name + .+ + + target + + + host + cryptip.com + + + host + *.cryptip.com + + + + + Cryptalloy.de (partial) + + ruleset + + name + Cryptalloy.de (partial) + rule + + from + ^http://(?:www\.)?shop\.cryptalloy\.de/ + to + https://www.shop.cryptalloy.de/ + + securecookie + + host + ^www\.shop\.cryptalloy\.de$ + name + .+ + + target + + + host + shop.cryptalloy.de + + + host + www.shop.cryptalloy.de + + + + + Cryptanalysis + + ruleset + + name + Cryptanalysis + rule + + from + ^http://(www\.)?cryptanalysis\.eu/ + to + https://$1cryptanalysis.eu/ + + securecookie + + host + ^cryptanalysis\.eu$ + name + .* + + target + + + host + cryptanalysis.eu + + + host + www.cryptanalysis.eu + + + + + CryptedMemo.com + + ruleset + + name + CryptedMemo.com + rule + + from + ^http://cryptedmemo\.com/ + to + https://cryptedmemo.com/ + + target + + host + cryptedmemo.com + + + + Crypteia Networks.com (partial) + + ruleset + + name + Crypteia Networks.com (partial) + rule + + + from + ^http://(?:www\.)?crypteianetworks\.com/ + to + https://www.crypteianetworks.com/ + + + from + ^http://support\.crypteianetworks\.com/(?=favicon\.ico|generated/|images/|system/) + to + https://crypteianetworks.zendesk.com/ + + + securecookie + + host + ^(?:w*\.)?crypteianetworks\.com$ + name + .+ + + target + + + host + crypteianetworks.com + + + host + *.crypteianetworks.com + + + + + Crypto.cat + + ruleset + + name + Crypto.cat + rule + + from + ^http://(blog\.|www\.)?crypto\.cat/ + to + https://$1crypto.cat/ + + securecookie + + host + ^crypto\.cat$ + name + .+ + + target + + + host + crypto.cat + + + host + *.crypto.cat + + + + + Crypto.is + + ruleset + + name + Crypto.is + rule + + + from + ^http://(?:www\.)?crypto\.is/ + to + https://crypto.is/ + + + from + ^http://wiki\.crypto\.is/ + to + https://wiki.crypto.is/ + + + from + ^http://blog\.crypto\.is/ + to + https://blog.crypto.is/ + + + target + + + host + crypto.is + + + host + wiki.crypto.is + + + host + blog.crypto.is + + + + + CryptoCoding + + ruleset + + name + CryptoCoding + rule + + from + ^http://(www\.)?cryptocoding\.net/ + to + https://$1cryptocoding.net/ + + securecookie + + host + ^cryptocoding\.net$ + name + .+ + + target + + + host + cryptocoding.net + + + host + www.cryptocoding.net + + + + + CryptoCoinsNews.com + + ruleset + + name + CryptoCoinsNews.com + rule + + from + ^http://(www\.)?cryptocoinsnews\.com/ + to + https://$1cryptocoinsnews.com/ + + securecookie + + host + ^\.cryptocoinsnews\.com$ + name + .+ + + target + + + host + cryptocoinsnews.com + + + host + *.cryptocoinsnews.com + + + + + CryptoLUX.org + + ruleset + + name + CryptoLUX.org + rule + + from + ^http://(www\.)?cryptolux\.org/ + to + https://$1cryptolux.org/ + + securecookie + + host + ^(?:www\.)?cryptolux\.org$ + name + .+ + + target + + + host + cryptolux.org + + + host + www.cryptolux.org + + + + + CryptoNetwork.com + + ruleset + + name + CryptoNetwork.com + rule + + from + ^http://(www\.)?cryptonetwork\.com/ + to + https://$1cryptonetwork.com/ + + target + + + host + cryptonetwork.com + + + host + www.cryptonetwork.com + + + + + CryptoSMS (CAcert) + + ruleset + + name + CryptoSMS (CAcert) + platform + cacert + rule + + from + ^http://(www\.)?cryptosms\.org/ + to + https://cryptosms.org/ + + target + + + host + cryptosms.org + + + host + www.cryptosms.org + + + + + CryptoSeal.com + + ruleset + + name + CryptoSeal.com + rule + + from + ^http://(connect\.|www\.)?cryptoseal\.com/ + to + https://$1cryptoseal.com/ + + securecookie + + host + ^\.cryptoseal\.com$ + name + .+ + + target + + + host + cryptoseal.com + + + host + *.cryptoseal.com + + + + + CryptoThrift.com + + ruleset + + name + CryptoThrift.com + rule + + + from + ^http://(www\.)?cryptothrift\.com/ + to + https://$1cryptothrift.com/ + + + from + ^http://support\.cryptothrift\.com/ + to + https://cryptothrift.zendesk.com/ + + + securecookie + + host + ^\.cryptothrift\.com$ + name + .+ + + target + + + host + cryptothrift.com + + + host + *.cryptothrift.com + + + + + CryptoTweet.com + + ruleset + + name + CryptoTweet.com + rule + + from + ^http://(www\.)?cryptotweet\.com/ + to + https://$1cryptotweet.com/ + + target + + + host + cryptotweet.com + + + host + www.cryptotweet.com + + + + + CryptoVPN.com + + ruleset + + name + CryptoVPN.com + rule + + from + ^http://(my\.|www\.)?cryptovpn\.com/ + to + https://$1cryptovpn.com/ + + securecookie + + host + ^(?:my)?\.cryptovpn\.com$ + name + .+ + + target + + + host + cryptovpn.com + + + host + *.cryptovpn.com + + + + + Cryptocloud (partial) + + ruleset + + name + Cryptocloud (partial) + rule + + + from + ^http://(billing\.|www\.)?cryptocloud\.com/ + to + https://$1cryptocloud.com/ + + + from + ^http://forum\.cryptocloud\.com/ + to + https://cryptocloud.org/ + + + from + ^http://support\.cryptocloud\.com/ + to + https://cryptocloud.kayako.com/ + + + from + ^http://(www\.)?cryptocloud\.org/ + to + https://$1cryptocloud.org/ + + + securecookie + + + host + ^(?:billing)?\.cryptocloud\.com$ + name + .+ + + + host + ^\.cryptocloud\.org$ + name + .+ + + + target + + + host + cryptocloud.com + + + host + *.cryptocloud.com + + + host + cryptocloud.org + + + host + *.cryptocloud.org + + + + + Cryptocloud.ca + + ruleset + + name + Cryptocloud.ca + rule + + from + ^http://(www\.)?cryptocloud\.ca/ + to + https://$1cryptocloud.ca/ + + target + + + host + cryptocloud.ca + + + host + www.cryptocloud.ca + + + + + Cryptocoin Charts.info + + ruleset + + name + Cryptocoin Charts.info + rule + + from + ^http://(www\.)?cryptocoincharts\.info/ + to + https://$1cryptocoincharts.info/ + + securecookie + + host + ^www\.cryptocoincharts\.info$ + name + .+ + + target + + + host + cryptocoincharts.info + + + host + www.cryptocoincharts.info + + + + + Cryptohaze + + ruleset + + name + Cryptohaze + rule + + from + ^http://(webtables\.|www\.)?cryptohaze\.com/ + to + https://$1cryptohaze.com/ + + securecookie + + host + ^(?:.+\.)?cryptohaze\.com$ + name + .+ + + target + + + host + cryptohaze.com + + + host + *.cryptohaze.com + + + + + Cryptoparty + + ruleset + + name + Cryptoparty + rule + + + from + ^http://(www\.)?cryptoparty\.in/ + to + https://$1cryptoparty.in/ + + + from + ^https?://(?:www\.)?cryptoparty\.org/ + to + https://cryptoparty.org/ + + + securecookie + + + host + ^www\.cryptoparty\.in$ + name + .+ + + + host + ^cryptoparty\.org$ + name + .+ + + + target + + + host + cryptoparty.in + + + host + www.cryptoparty.in + + + host + cryptoparty.org + + + host + www.cryptoparty.org + + + + + Crystal Delights.com + + ruleset + + name + Crystal Delights.com + rule + + from + ^http://(www\.)?crystaldelights\.com/ + to + https://$1crystaldelights.com/ + + securecookie + + host + ^(?:www\.)?crystaldelights\.com$ + name + .+ + + target + + + host + crystaldelights.com + + + host + www.crystaldelights.com + + + + + Crystal Singing Bowls + + ruleset + + name + Crystal Singing Bowls + rule + + from + ^http://(www\.)?sacredcrystalsingingbowls\.com/ + to + https://$1sacredcrystalsingingbowls.com/ + + securecookie + + host + ^(?:www)?\.sacredcrystalsingingbowls\.com$ + name + .+ + + target + + + host + sacredcrystalsingingbowls.com + + + host + *.sacredcrystalsingingbowls.com + + + + + Csob.sk + + ruleset + + name + Csob.sk + rule + + + from + ^http://(www\.)?csob\.sk/ + to + https://www.csob.sk/ + + + from + ^http://ib24\.csob\.sk/ + to + https://ib24.csob.sk/ + + + from + ^http://bb24\.csob\.sk/ + to + https://bb24.csob.sk/ + + + from + ^http://secure\.csob\.sk/ + to + https://secure.csob.sk/ + + + target + + + host + csob.sk + + + host + www.csob.sk + + + host + ib24.csob.sk + + + host + bb24.csob.sk + + + host + secure.csob.sk + + + + + Cstatic.net + + ruleset + + name + Cstatic.net + rule + + from + ^http://cdn\.cstatic\.net/ + to + https://dzbb4sjawljdv.cloudfront.net/ + + target + + host + cdn.cstatic.net + + + + Ctrl+Alt+Del + + ruleset + + exclusion + + pattern + ^http://v\.cdn\.cad-comic\.com/css-\d+\.css + + name + Ctrl+Alt+Del + rule + + from + ^http://(?:v\.)?cdn\.cad-comic\.com/ + to + https://s3.amazonaws.com/cdn.cad-comic.com/ + + target + + host + *.cad-comic.com + + + + Cts-strasbourg.eu + + ruleset + + name + Cts-strasbourg.eu + rule + + from + ^http://(www\.)?cts-strasbourg\.eu/ + to + https://www.cts-strasbourg.eu/ + + target + + + host + cts-strasbourg.eu + + + host + www.cts-strasbourg.eu + + + + + Ctt + + ruleset + + name + Ctt + rule + + from + ^http://(?:www\.)?ctt\.pt/ + to + https://www.ctt.pt/ + + target + + + host + www.ctt.pt + + + host + ctt.pt + + + + + Cubics + + ruleset + + name + Cubics + rule + + + from + ^http://cubplat\.bidsystem\.com/ + to + https://cubplat.bidsystem.com/ + + + from + ^https?://(?:www\.)?cubics\.com/ + to + https://cubplat.bidsystem.com/signup/ + + + from + ^http://icons\.cubics\.com/ + to + https://icons.cubics.com/ + + + securecookie + + host + ^cubplat\.bidsystem\.com$ + name + .+ + + target + + + host + cubplat.bidsystem.com + + + host + cubics.com + + + host + *.cubics.com + + + + + Cueup.com + + ruleset + + name + Cueup.com + platform + firefox + rule + + from + ^http://www\.cueup\.com/ + to + https://www.cueup.com/ + + securecookie + + host + ^www\.cueup\.com$ + name + .+ + + target + + host + www.cueup.com + + + + CuidadoDeSalud.gov + + ruleset + + name + CuidadoDeSalud.gov + rule + + from + ^(http://(www\.)?|https://)cuidadodesalud\.gov/ + to + https://www.cuidadodesalud.gov/ + + securecookie + + host + www\.cuidadodesalud\.gov + name + .+ + + target + + + host + cuidadodesalud.gov + + + host + www.cuidadodesalud.gov + + + + + Cultura Sparebank + + ruleset + + name + Cultura Sparebank + rule + + + from + ^http://cultura\.no/ + to + https://cultura.no/ + + + from + ^http://www\.cultura\.no/ + to + https://www.cultura.no/ + + + target + + + host + cultura.no + + + host + www.cultura.no + + + + + Cultures for Health.com + + ruleset + + name + Cultures for Health.com + rule + + from + ^http://(cdn\.|www\.)?culturesforhealth\.com/ + to + https://$1culturesforhealth.com/ + + securecookie + + host + ^(?:www)?\.culturesforhealth.com$ + name + .+ + + target + + + host + culturesforhealth.com + + + host + *.culturesforhealth.com + + + + + Cumulus Networks (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?cumulusnetworks\.com/+(?!secure/|static/) + + name + Cumulus Networks (partial) + rule + + from + ^http://(support\.|www\.)?cumulusnetworks\.com/ + to + https://$1cumulusnetworks.com/ + + target + + + host + cumulusnetworks.com + + + host + *.cumulusnetworks.com + + + + + Cupcake + + ruleset + + name + Cupcake + rule + + + from + ^http://([\w-]+\.)?cupcake\.io/ + to + https://$1cupcake.io/ + + + from + ^http://([\w-]+\.)?cupcake\.is/ + to + https://$1cupcake.is/ + + + target + + + host + cupcake.io + + + host + *.cupcake.io + + + host + cupcake.is + + + host + *.cupcake.is + + + + + Cupcake.io + + ruleset + + name + Cupcake.io + platform + firefox + rule + + from + ^http://cupcake\.io/ + to + https://cupcake.io/ + + securecookie + + host + ^cupcake\.io$ + name + .+ + + target + + host + cupcake.io + + + + Cupcake.is + + ruleset + + name + Cupcake.is + platform + firefox + rule + + from + ^http://cupcake\.is/ + to + https://cupcake.is/ + + securecookie + + host + ^cupcake\.is$ + name + .+ + + target + + host + cupcake.is + + + + Cupid (partial) + + ruleset + + exclusion + + pattern + ^http://ed\.cupid\.com/(?!ext\.php) + + name + Cupid (partial) + rule + + + from + ^http://(cdn|ed)\.cupid\.com/ + to + https://$1.cupid.com/ + + + from + ^http://(?:www\.)?cupid\.com/((?:aff|oth)\.php|api/|favicon\.ico|static/) + to + https://www.cupid.com/$1 + + + securecookie + + host + ^\.(?:www\.)?cupid\.com$ + name + ^TRACK_\w+$ + + target + + + host + cupid.com + + + host + *.cupid.com + + + + + Cupid plc CDN + + ruleset + + name + Cupid plc CDN + rule + + + from + ^http://cdn\.cdtoimge\.com/ + to + https://cdn.cdtoimge.com/ + + + from + ^http://cdn\.(?:imgstat|pictimgs)\.com/ + to + https://cdn.pictimgs.com/ + + + from + ^http://cdn\.stati(?:c2img|mgs2)\.com/ + to + https://cdn.static2img.com/ + + + target + + + host + cdn.cdtoimge.com + + + host + cdn.imgstat.com + + + host + cdn.pictimgs.com + + + host + cdn.static2img.com + + + host + cdn.statimgs2.com + + + + + Cupid plc.com (partial) + + ruleset + + name + Cupid plc.com (partial) + rule + + from + ^http://(aff|affiliates|stat\.ed|stat|(?:cdn\.)?stat\.to|whitelabeldating)\.cupidplc\.com/ + to + https://$1.cupidplc.com/ + + securecookie + + host + ^(?:aff|stat\.to|whitelabeldating)\.cupidplc\.com$ + name + .+ + + target + + host + *.cupidplc.com + + + + Curate.Us (partial) + + ruleset + + name + Curate.Us (partial) + rule + + + from + ^https?://(?:clp\.ly|curate\.us)/ + to + https://secure.curate.us/ + + + from + ^http://(secure|www)\.curate\.us/ + to + https://$1.curate.us/ + + + securecookie + + host + ^\.(?:secure\.)?curate\.us$ + name + .+ + + target + + + host + clp.ly + + + host + curate.us + + + host + *.curate.us + + + + + Curbed.cc + + ruleset + + name + Curbed.cc + rule + + from + ^http://f\.curbed\.cc/ + to + https://f.curbed.cc/ + + target + + host + f.curbed.cc + + + + Curbed.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?(?:hamptons|ny)\.curbed\.com/+(?!favicon\.ico|uploads/) + + name + Curbed.com (partial) + rule + + + from + ^http://(?:www\.)?hamptons\.curbed\.com/ + to + https://hamptons.curbed.com/ + + + from + ^http://(www\.)?ny\.curbed\.com/ + to + https://$1ny.curbed.com/ + + + target + + host + *.curbed.com + + + + Cure53.de + + ruleset + + name + Cure53.de + rule + + from + ^http://(www\.)?cure53\.de/ + to + https://$1cure53.de/ + + target + + + host + cure53.de + + + host + www.cure53.de + + + + + Curling World.com + + ruleset + + name + Curling World.com + rule + + from + ^http://(www\.)?curlingworld\.com/ + to + https://$1curlingworld.com/ + + securecookie + + host + ^\.curlingworld\.com$ + name + .+ + + target + + + host + curlingworld.com + + + host + *.curlingworld.com + + + + + Current TV (partial) + + ruleset + + name + Current TV (partial) + rule + + from + ^https?://(?:www\.)?current\.com/(participate(?:$|/)) + to + https://www.current.com/$1 + + target + + + host + current.com + + + host + www.current.com + + + + + Currys.co.uk (partial) + + ruleset + + name + Currys.co.uk (partial) + rule + + from + ^http://secure\.currys\.co\.uk/ + to + https://secure.currys.co.uk/ + + target + + host + secure.currys.co.uk + + + + Curso de Italiano + + ruleset + + name + Curso de Italiano + rule + + from + ^http://(www\.)?marconisida\.com/ + to + https://marconisida.com/ + + securecookie + + host + ^\.marconisida\.com$ + name + .+ + + target + + + host + marconisida.com + + + host + *.marconisida.com + + + + + Curvehost + + ruleset + + name + Curvehost + rule + + from + ^http://(www\.)?curvehost\.com/ + to + https://curvehost.com/ + + target + + + host + curvehost.com + + + host + www.curvehost.com + + + + + Custodian Vaults.com.au + + ruleset + + name + Custodian Vaults.com.au + rule + + from + ^http://(www\.)?custodianvaults\.com\.au/ + to + https://$1custodianvaults.com.au/ + + securecookie + + host + ^(?:w*\.)?custodianvaults\.com\.au$ + name + .+ + + target + + + host + custodianvaults.com.au + + + host + *.custodianvaults.com.au + + + + + Custom Tiburon + + ruleset + + name + Custom Tiburon + rule + + from + ^http://(www\.)?customtiburon\.com/ + to + https://$1customtiburon.com/ + + securecookie + + host + ^(?:.*\.)?customtiburon\.com$ + name + .+ + + target + + + host + customtiburon.com + + + host + www.customtiburon.com + + + + + CustomWheelConnection.com (partial) + + ruleset + + name + CustomWheelConnection.com (partial) + rule + + from + ^http://(www\.)?customwheelconnection\.com/(favicon\.ico|Portals/|scripts/|[sS]how(?:Category|Product)Image\.aspx) + to + https://$1customwheelconnection.com/$2 + + target + + + host + customwheelconnection.com + + + host + www.customwheelconnection.com + + + + + Customer Lobby (partial) + + ruleset + + name + Customer Lobby (partial) + rule + + from + ^http://(www\.)?customerlobby\.com/ + to + https://$1customerlobby.com/ + + securecookie + + host + ^(.*\.)?customerlobby\.com$ + name + .* + + target + + + host + customerlobby.com + + + host + *.customerlobby.com + + + + + Customer.io (partial) + + ruleset + + name + Customer.io (partial) + rule + + from + ^http://(assets|manage|track)\.customer\.io/ + to + https://$1.customer.io/ + + target + + host + *.customer.io + + + + CuteDigi + + ruleset + + name + CuteDigi + rule + + from + ^http://(www\.)?cutedigi\.com/ + to + https://$1cutedigi.com/ + + securecookie + + host + ^\.www\.cutedigi\.com$ + name + .+ + + target + + + host + cutedigi.com + + + host + *.cutedigi.com + + + + + Cuusoo (partial) + + ruleset + + name + Cuusoo (partial) + rule + + + from + ^http://([\w-]+)\.cuusoo\.com/(app|j)s/ + to + https://$1.cuusoo.com/$2s/ + + + from + ^http://([\w-]+)\.cuusoo\.com/(login|register)/?(\?.*)?$ + to + https://$.cuusoo.com/$2$3 + + + from + ^http://(www\.)?cuusoo\.net/(common/|css/|favicon\.ico|img/|inquiry/) + to + https://$1cuusoo.net/$2 + + + target + + + host + *.cuusoo.com + + + host + cuusoo.net + + + host + www.cuusoo.net + + + + + Cvent.com (partial) + + ruleset + + name + Cvent.com (partial) + rule + + from + ^http://((?:app|custom|shworldwide|www)\.)?cvent\.com/ + to + https://$1cvent.com/ + + securecookie + + host + ^(?:shworldwide)?\.cvent\.com$ + name + .+ + + target + + + host + cvent.com + + + host + *.cvent.com + + + + + Cxcloud.com + + ruleset + + name + Cxcloud.com + rule + + from + ^http://(www\.)?cxcloud\.com/.* + to + https://$1cxcloud.com/ + + securecookie + + host + ^(?:www\.)?cxcloud\.com$ + name + .+ + + target + + + host + cxcloud.com + + + host + www.cxcloud.com + + + + + Cxt.ms + + ruleset + + name + Cxt.ms + rule + + + from + ^http://s\.cxt\.ms/ + to + https://d3j09g9h9lgmkt.cloudfront.net/ + + + from + ^http://t\.cxt\.ms/ + to + https://t.cxt.ms/ + + + target + + host + *.cxt.ms + + + + Cyando (partial) + + ruleset + + name + Cyando (partial) + rule + + from + ^http://(?:www\.)?u(?:l|ploaded)\.to/(favicon\.ico$|img/|js2?/|misc/) + to + https://uploaded.to/$1 + + target + + + host + uploaded.to + + + host + www.uploaded.to + + + host + ul.to + + + host + www.ul.to + + + + + CyanogenMod.org (false MCB) + + ruleset + + name + CyanogenMod.org (false MCB) + platform + mixedcontent + rule + + from + ^http://w(iki|ww)\.cyanogenmod\.org/ + to + https://w$1.cyanogenmod.org/ + + target + + + host + wiki.cyanogenmod.org + + + host + www.cyanogenmod.org + + + + + CyanogenMod.org (partial) + + ruleset + + exclusion + + + pattern + ^http://wiki\.cyanogenmod\.org/+(?!extensions/|favicon\.ico|images/|load\.php|skins/) + + + pattern + ^http://www\.cyanogenmod\.org/+(?!wp-content/|wp-includes/) + + + name + CyanogenMod.org (partial) + rule + + from + ^http://((?:account|download|forum|jira|stats|wiki|www)\.)?cyanogenmod\.org/ + to + https://$1cyanogenmod.org/ + + securecookie + + + host + ^\.cyanogenmod\.org$ + name + ^__cfduid$ + + + host + ^jira\.cyanogenmod\.org$ + name + .+ + + + target + + + host + cyanogenmod.org + + + host + *.cyanogenmod.org + + + + + Cyber Security Challenge + + ruleset + + name + Cyber Security Challenge + rule + + + from + ^https?://cybersecuritychallenge\.org\.uk/ + to + https://www.cybersecuritychallenge.org.uk/ + + + from + ^http://([^/:@]+)?\.cybersecuritychallenge\.org\.uk/ + to + https://$1.cybersecuritychallenge.org.uk/ + + + securecookie + + host + ^(www\.)?cybersecuritychallenge\.org\.uk$ + name + .* + + target + + + host + cybersecuritychallenge.org.uk + + + host + www.cybersecuritychallenge.org.uk + + + + + CyberAces (partial) + + ruleset + + name + CyberAces (partial) + rule + + from + ^http://(www\.)?online\.cyberaces\.org/ + to + https://www.online.cyberaces.org/ + + target + + + host + online.cyberaces.org + + + host + cyberaces.org + + + host + www.online.cyberaces.org + + + + + CyberAgent + + ruleset + + name + CyberAgent + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?cyberagent\.co\.jp/ + to + https://www.cyberagent.co.jp/ + + target + + + host + cyberagent.co.jp + + + host + www.cyberagent.co.jp + + + + + CyberGhost + + ruleset + + name + CyberGhost + rule + + from + ^http://(\w+\.)?cyberghostvpn\.com/ + to + https://$1cyberghostvpn.com/ + + securecookie + + host + ^(.*\.)?cyberghostvpn\.com$ + name + .* + + target + + + host + cyberghostvpn.com + + + host + *.cyberghostvpn.com + + + + + CyberGuerrilla.org + + ruleset + + name + CyberGuerrilla.org + rule + + from + ^http://((?:anonymissexpress|darkmatter|lilithlela|nanasilvergrim|odinn|radio|webchat|www)\.)?cyberguerrilla\.org/ + to + https://$1cyberguerrilla.org/ + + securecookie + + host + ^(?:\w+\.)?cyberguerrilla\.org$ + name + .+ + + target + + + host + cyberguerrilla.org + + + host + *.cyberguerrilla.org + + + + + CyberPatrol (partial) + + ruleset + + name + CyberPatrol (partial) + rule + + from + ^http://(www\.)?cyberpatrol\.com/ + to + https://$1cyberpatrol.com/ + + securecookie + + host + ^(?:www\.)?cyberpatrol\.com$ + name + .+ + + target + + + host + cyberpatrol.com + + + host + www.cyberpatrol.com + + + + + CyberPhoto AB + + ruleset + + name + CyberPhoto AB + rule + + from + ^http://(?:www\.)?cyberphoto\.(fi|se)/ + to + https://www.cyberphoto.$1/ + + securecookie + + host + ^(?:www)?\.cyberphoto\.(?:fi|se)$ + name + ^(?:PHPSESSID|kundvagn)$ + + target + + + host + cyberphoto.fi + + + host + *.cyberphoto.fi + + + host + cyberphoto.se + + + host + *.cyberphoto.se + + + + + CyberShambles.com + + ruleset + + name + CyberShambles.com + rule + + from + ^http://(www\.)?cybershambles\.com/ + to + https://$1cybershambles.com/ + + securecookie + + host + ^(?:www\.)?cybershambles\.com$ + name + .+ + + target + + + host + cybershambles.com + + + host + www.cybershambles.com + + + + + Cybercon (partial) + + ruleset + + name + Cybercon (partial) + rule + + from + ^http://(smc\.|www\.)?cybercon\.com/ + to + https://$1cybercon.com/ + + securecookie + + host + ^\.www\.cybercon\.com$ + name + .+ + + target + + + host + cybercon.com + + + host + *.cybercon.com + + + + + Cyberduck.io + + ruleset + + name + Cyberduck.io + rule + + from + ^http://(?:(media\.)|www\.)?cyberduck\.io/ + to + https://$1cyberduck.io/ + + target + + + host + cyberduck.io + + + host + *.cyberduck.io + + + + + Cyberfret.com + + ruleset + + name + Cyberfret.com + rule + + from + ^http://(www\.)?cyberfret\.com/ + to + https://$1cyberfret.com/ + + securecookie + + host + ^(?:www\.)?cyberfret\.com$ + name + .+ + + target + + + host + cyberfret.com + + + host + www.cyberfret.com + + + + + Cyberquests (Partial) + + ruleset + + name + Cyberquests (Partial) + rule + + from + ^http://quiz-uscc\.cyberquests\.org/ + to + https://quiz-uscc.cyberquests.org/ + + target + + host + quiz-uscc.cyberquests.org + + + + Cyberstreetwise + + ruleset + + name + Cyberstreetwise + rule + + + from + ^https?://cyberstreetwise\.com/ + to + https://www.cyberstreetwise.com/ + + + from + ^http://([^/:@]+)\.cyberstreetwise\.com/ + to + https://$1.cyberstreetwise.com/ + + + securecookie + + host + ^(.*\.)?cyberstreetwise\.com$ + name + .* + + target + + + host + cyberstreetwise.com + + + host + *.cyberstreetwise.com + + + + + Cybertip.ca + + ruleset + + name + Cybertip.ca + rule + + + from + ^http://(www\.)?cyberaide\.ca/ + to + https://$1cyberaide.ca/ + + + from + ^http://((?:cwa|lea|www)\.)?cybertip\.ca/ + to + https://$1cybertip.ca/ + + + target + + + host + cyberaide.ca + + + host + www.cyberaide.ca + + + host + cybertip.ca + + + host + *.cybertip.ca + + + + + Cyberwar.nl + + ruleset + + name + Cyberwar.nl + rule + + from + ^http://((?:blog|news|www)\.)?cyberwar\.nl/ + to + https://$1cyberwar.nl/ + + target + + + host + cyberwar.nl + + + host + *.cyberwar.nl + + + + + Cybozu.com + + ruleset + + name + Cybozu.com + platform + firefox + rule + + from + ^http://cybozu\.com/ + to + https://cybozu.com/ + + securecookie + + host + ^cybozu\.com$ + name + .+ + + target + + host + cybozu.com + + + + Cygwin.com (partial) + + ruleset + + name + Cygwin.com (partial) + rule + + from + ^http://(www\.)?cygwin\.com/ + to + https://$1cygwin.com/ + + target + + + host + cygwin.com + + + host + www.cygwin.com + + + + + Cykloteket.se + + ruleset + + name + Cykloteket.se + rule + + + from + ^http://www\.cykloteket\.se/ + to + https://cykloteket.se/ + + + from + ^http://cykloteket\.se/ + to + https://cykloteket.se/ + + + target + + + host + www.cykloteket.se + + + host + cykloteket.se + + + + + Cyngn.com + + ruleset + + name + Cyngn.com + rule + + from + ^http://(www\.)?cyngn\.com/ + to + https://$1cyngn.com/ + + target + + + host + cyngn.com + + + host + www.cyngn.com + + + + + Cypherpunks.ca + + ruleset + + name + Cypherpunks.ca + rule + + from + ^http://(?:(lists\.|otr\.)|www\.)?cypherpunks\.ca/ + to + https://$1cypherpunks.ca/ + + target + + + host + cypherpunks.ca + + + host + *.cypherpunks.ca + + + + + Cyprus Satellite (partial) + + ruleset + + name + Cyprus Satellite (partial) + rule + + from + ^http://forums\.satellitecyprus\.com/ + to + https://forums.satellitecyprus.com/ + + securecookie + + host + ^forums\.satellitecyprus\.com$ + name + .+ + + target + + host + forums.satellitecyprus.com + + + + Cyveillance.com + + ruleset + + name + Cyveillance.com + platform + firefox + rule + + + from + ^http://www\.cyveillance\.com/ + to + https://www.cyveillance.com/ + + + from + ^http://blog\.cyveillance\.com/ + to + https://blog.cyveillance.com/ + + + securecookie + + + host + ^www\.cyveillance\.com$ + name + .+ + + + host + ^blog\.cyveillance\.com$ + name + .+ + + + target + + + host + www.cyveillance.com + + + host + blog.cyveillance.com + + + + + Czech Technical University in Prague + + ruleset + + name + Czech Technical University in Prague + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?cvut\.cz/ + to + https://www.cvut.cz/ + + + from + ^http://(akce|helpdesk|jira|usermap)\.cvut\.cz/ + to + https://$1.cvut.cz/ + + + securecookie + + host + ^.*\.cvut\.cz$ + name + .* + + target + + + host + cvut.cz + + + host + *.cvut.cz + + + + + D Franke.us + + ruleset + + name + D Franke.us + rule + + from + ^http://(www\.)?dfranke\.us/ + to + https://$1dfranke.us/ + + target + + + host + dfranke.us + + + host + www.dfranke.us + + + + + D&B (partial) + + ruleset + + name + D&B (partial) + rule + + from + ^http://(www\.)?dnb\.com/(auth/|product/(?:contract\.htm|support-files/)) + to + https://$1dnb.com/$2 + + target + + + host + dnb.com + + + host + www.dnb.com + + + + + D.A.Consortium + + ruleset + + name + D.A.Consortium + rule + + from + ^http://www\.dac\.co\.jp/ + to + https://www.dac.co.jp/ + + target + + host + www.dac.co.jp + + + + D.S.V. Sint Jansbrug + + ruleset + + name + D.S.V. Sint Jansbrug + rule + + from + ^http://www\.(?:sint)?jansbrug\.nl/ + to + https://www.sintjansbrug.nl/ + + target + + + host + www.sintjansbrug.nl + + + host + www.jansbrug.nl + + + + + D4design Studios.com (false MCB) + + ruleset + + name + D4design Studios.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?d4designstudios\.com/ + to + https://www.d4designstudios.com/ + + securecookie + + host + ^(?:www)?\.d4designstudios\.com$ + name + .+ + + target + + + host + d4designstudios.com + + + host + *.d4designstudios.com + + + + + DAB Bank + + ruleset + + name + DAB Bank + rule + + from + ^http://([^/:@\.]+)\.dab-bank\.de/ + to + https://$1.dab-bank.de/ + + target + + host + *.dab-bank.de + + + + DALnet + + ruleset + + name + DALnet + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?dal\.net/ + to + https://www.dal.net/ + + + from + ^http://(inspiration|users)\.dal\.net/ + to + https://$1.dal.net/ + + + securecookie + + host + ^(.+\.)?dal\.net$ + name + .* + + target + + + host + dal.net + + + host + www.dal.net + + + host + inspiration.dal.net + + + host + users.dal.net + + + + + DANTE-analytics.net + + ruleset + + name + DANTE-analytics.net + rule + + from + ^http://(www\.)?dante-analytics\.net/ + to + https://$1dante-analytics.net/ + + securecookie + + host + ^(?:www\.)?dante-analytics\.net$ + name + .+ + + target + + + host + dante-analytics.net + + + host + www.dante-analytics.net + + + + + DANTE.net (partial) + + ruleset + + exclusion + + + pattern + ^http://news\.dante\.net/+(?!_layouts/|SiteCollectionImages/) + + + pattern + ^http://www\.dante\.net/+(?!_catalogs/|_layouts/|_login/|_trust/) + + + name + DANTE.net (partial) + rule + + from + ^http://(news|weblogin|www)\.dante\.net/ + to + https://$1.dante.net/ + + target + + host + *.dante.net + + + + DAR.fm + + ruleset + + name + DAR.fm + rule + + from + ^http://(www\.)?dar\.fm/ + to + https://$1dar.fm/ + + securecookie + + host + ^(.*\.)?dar\.fm$ + name + .* + + target + + + host + dar.fm + + + host + *.dar.fm + + + + + DC Power.eu (false MCB) + + ruleset + + name + DC Power.eu (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?dcpower\.eu/ + to + https://$1dcpower.eu/ + + securecookie + + host + ^(?:w*\.)?dcpower\.eu$ + name + .+ + + target + + + host + dcpower.eu + + + host + *.dcpower.eu + + + + + DCBoEE.org + + ruleset + + name + DCBoEE.org + rule + + from + ^http://(www\.)?dcboee\.org/ + to + https://$1dcboee.org/ + + target + + + host + dcboee.org + + + host + www.dcboee.org + + + + + DCERPC + + ruleset + + name + DCERPC + rule + + from + ^http://(www\.)?dcerpc\.org/ + to + https://www.dcerpc.org/ + + target + + + host + www.dcerpc.org + + + host + dcerpc.org + + + + + DD-WRT + + ruleset + + name + DD-WRT + rule + + from + ^http://((?:secure|shop|www)\.)?dd-wrt\.com/ + to + https://$1dd-wrt.com/ + + securecookie + + host + .*\.dd-wrt\.com$ + name + .+ + + target + + + host + dd-wrt.com + + + host + *.dd-wrt.com + + + + + DDS2DDS.com + + ruleset + + name + DDS2DDS.com + rule + + from + ^http://(www\.)?(dds2dds|kaizencrossfit)\.com/ + to + https://$1$2.com/ + + securecookie + + host + ^(?:w*\.)?(?:dds2dds|kaizencrossfit)\.com$ + name + .+ + + target + + + host + dds2dds.com + + + host + www.dds2dds.com + + + host + kaizencrossfit.com + + + host + *.kaizencrossfit.com + + + + + DDoSBreak.com + + ruleset + + name + DDoSBreak.com + rule + + from + ^http://(www\.)?ddosbreak\.com/ + to + https://$1ddosbreak.com/ + + securecookie + + host + ^(?:www\.)?ddosbreak\.com$ + name + .+ + + target + + + host + ddosbreak.com + + + host + www.ddosbreak.com + + + + + DE-CIX + + ruleset + + exclusion + + pattern + ^http://lg\.de-cix\.net + + name + DE-CIX + rule + + + from + ^https?://de-cix\.net/ + to + https://www.de-cix.net/ + + + from + ^http://([^/:@]+)?\.de-cix\.net/ + to + https://$1.de-cix.net/ + + + target + + + host + de-cix.net + + + host + *.de-cix.net + + + + + DEA.com + + ruleset + + name + DEA.com + rule + + from + ^https?://(?:www\.)?dea\.com/ + to + https://www.dea.com/ + + securecookie + + host + ^www\.dea\.com$ + name + .* + + target + + + host + dea.com + + + host + www.dea.com + + + + + DEEWR + + ruleset + + name + DEEWR + rule + + from + ^http://(?:www\.)?prisms\.deewr\.gov\.au/ + to + https://prisms.deewr.gov.au/ + + target + + + host + prisms.deewr.gov.au + + + host + *.prisms.deewr.gov.au + + + + + DENSO WAVE + + ruleset + + name + DENSO WAVE + rule + + from + ^https?://(?:www\.)?denso-wave\.com/ + to + https://www.denso-wave.com/ + + securecookie + + host + ^www\.denso-wave\.com$ + name + .+ + + target + + + host + denso-wave.com + + + host + www.denso-wave.com + + + + + DF.eu + + ruleset + + name + DF.eu + rule + + from + ^http://(www\.)?df\.eu/ + to + https://$1df.eu/ + + securecookie + + host + ^www\.df\.eu$ + name + .+ + + target + + + host + df.eu + + + host + www.df.eu + + + + + DFTBA Records + + ruleset + + name + DFTBA Records + rule + + from + ^http://(www\.)?dftba\.com/ + to + https://$1dftba.com/ + + securecookie + + host + ^\.dftba\.com$ + name + .+ + + target + + + host + dftba.com + + + host + *.dftba.com + + + + + DFiles.eu + + ruleset + + name + DFiles.eu + rule + + from + ^http://(static\d+\.|www\.)?dfiles\.eu/ + to + https://$1dfiles.eu/ + + securecookie + + host + ^\.dfiles\.eu$ + name + .+ + + target + + + host + dfiles.eu + + + host + *.dfiles.eu + + + + + DHL.de + + ruleset + + name + DHL.de + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?dhl\.de/ + to + https://www.dhl.de/ + + + from + ^http://dhl\.de/ + to + https://www.dhl.de/ + + + securecookie + + host + ^(.*\.)?dhl\.de$ + name + .* + + target + + + host + dhl.de + + + host + *.dhl.de + + + + + DHgate.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?dhgate\.com/(?:\?.*)?$ + + name + DHgate.com (partial) + rule + + from + ^http://(?:secure\.|www\.)?dhgate\.com/ + to + https://secure.dhgate.com/ + + target + + + host + dhgate.com + + + host + *.dhgate.com + + + + + DIYbanter + + ruleset + + name + DIYbanter + rule + + from + ^http://(www\.)?diybanter\.com/ + to + https://$1diybanter.com/ + + securecookie + + host + ^(?:w*\.)?diybanter\.com$ + name + .+ + + target + + + host + diybanter.com + + + host + *.diybanter.com + + + + + DJKit + + ruleset + + name + DJKit + rule + + from + ^http://(www\.)?djkit\.com/ + to + https://$1djkit.com/ + + securecookie + + host + ^\.djkit\.com$ + name + .+ + + target + + + host + djkit.com + + + host + *.djkit.com + + + + + DL-rms.com + + ruleset + + name + DL-rms.com + rule + + from + ^http://content\.dl-rms\.com/ + to + https://content.dl-rms.com/ + + target + + host + content.dl-rms.com + + + + DLitz.net + + ruleset + + name + DLitz.net + rule + + from + ^http://(www\.)?dlitz\.net/ + to + https://$1dlitz.net/ + + target + + + host + dlitz.net + + + host + www.dlitz.net + + + + + DM tracker.com + + ruleset + + name + DM tracker.com + rule + + from + ^http://(extended|vs)\.dmtracker\.com/ + to + https://$1.dmtracker.com/ + + securecookie + + host + ^.*\.dmtracker\.com$ + name + .+ + + target + + host + *.dmtracker.com + + + + DM.id.lv (partial) + + ruleset + + name + DM.id.lv (partial) + rule + + from + ^http://(pkptest\.|www\.)?projects\.dm\.id\.lv/ + to + https://$1projects.dm.id.lv/ + + target + + host + *.dm.id.lv + + + + DMAchoice.org + + ruleset + + name + DMAchoice.org + rule + + from + ^http://(www\.)?dmachoice\.org/ + to + https://$1dmachoice.org/ + + target + + + host + dmachoice.org + + + host + www.dmachoice.org + + + + + DMCA Services (partial) + + ruleset + + exclusion + + pattern + ^https?://images\.dmca\.com/(?!.+/) + + name + DMCA Services (partial) + rule + + from + ^https?://(?:images\.|www\.)?dmca\.com/ + to + https://www.dmca.com/ + + securecookie + + host + ^www\.dmca\.com$ + name + .+ + + target + + + host + dmca.com + + + host + *.dmca.com + + + + + DMLP.org (partial) + + ruleset + + name + DMLP.org (partial) + rule + + + from + ^http://(?:www\.)?citmedialaw\.org/ + to + https://www.citmedialaw.org/ + + + from + ^http://(?:www\.)?dmlp\.org/(?!favicon\.ico|files/|misc/|modules/|sites/) + to + https://www.dmlp.org/ + + + target + + + host + citmedialaw.org + + + host + www.citmedialaw.org + + + host + dmlp.org + + + host + www.dmlp.org + + + + + DMS-Sweden.com + + ruleset + + name + DMS-Sweden.com + rule + + from + ^http://(?:www\.)?dms-sweden\.com/ + to + https://www.dms-sweden.com/ + + target + + + host + dms-sweden.com + + + host + www.dms-sweden.com + + + + + DMU + + ruleset + + name + DMU + rule + + + from + ^http://dmu\.ac\.uk/ + to + https://dmu.ac.uk/ + + + from + ^http://(www|www\.library|chooseyourhallroom|idpedir|password|vle|webmail)\.dmu\.ac\.uk/ + to + https://$1.dmu.ac.uk/ + + + securecookie + + host + ^(.+\.)?dmu\.ac\.uk$ + name + .* + + target + + + host + dmu.ac.uk + + + host + www.dmu.ac.uk + + + host + www.library.dmu.ac.uk + + + host + chooseyourhallroom.dmu.ac.uk + + + host + idpedir.dmu.ac.uk + + + host + password.dmu.ac.uk + + + host + vle.dmu.ac.uk + + + host + webmail.dmu.ac.uk + + + + + DMflex (partial) + + ruleset + + name + DMflex (partial) + rule + + from + ^http://serving\.portal\.dmflex\.com/ + to + https://serving.portal.dmflex.com/ + + target + + host + serving.portal.dmflex.com + + + + DNA Serum + + ruleset + + name + DNA Serum + rule + + + from + ^http://(shop\.|www\.)?dnaserum\.com/ + to + https://$1dnaserum.com/ + + + from + ^http://(www\.)?tepamine\.com/ + to + https://$1tepamine.com/ + + + securecookie + + + host + ^(?:.*\.)?dnaserum\.com$ + name + .+ + + + host + ^\.tepamine\.com$ + name + .+ + + + target + + + host + dnaserum.com + + + host + *.dnaserum.com + + + host + tepamine.com + + + host + *.tepamine.com + + + + + DNS leak test.com + + ruleset + + name + DNS leak test.com + rule + + from + ^http://(www\.)?dnsleaktest\.com/ + to + https://$1dnsleaktest.com/ + + target + + + host + dnsleaktest.com + + + host + www.dnsleaktest.com + + + + + DNS-OARC.net + + ruleset + + name + DNS-OARC.net + rule + + + from + ^http://(?:www\.)?dns-oarc\.net/ + to + https://www.dns-oarc.net/ + + + from + ^http://(indico|lists)\.dns-oarc\.net/ + to + https://$1.dns-oarc.net/ + + + target + + + host + dns-oarc.net + + + host + *.dns-oarc.net + + + + + DNSCrypt.eu + + ruleset + + name + DNSCrypt.eu + rule + + from + ^http://(?:www\.)?dnscrypt\.eu/ + to + https://dnscrypt.eu/ + + target + + + host + dnscrypt.eu + + + host + www.dnscrypt.eu + + + + + DNSSEC-Tools + + ruleset + + name + DNSSEC-Tools + rule + + from + ^http://(www\.)?dnssec-tools\.org/ + to + https://$1dnssec-tools.org/ + + securecookie + + host + ^(www\.)?dnssec-tools\.org$ + name + .* + + target + + + host + dnssec-tools.org + + + host + www.dnssec-tools.org + + + + + DNSSEC-Validator.cz + + ruleset + + name + DNSSEC-Validator.cz + rule + + from + ^http://(www\.)?dnssec-validator\.cz/ + to + https://$1dnssec-validator.cz/ + + target + + + host + dnssec-validator.cz + + + host + www.dnssec-validator.cz + + + + + DNSdynamic + + ruleset + + name + DNSdynamic + rule + + from + ^http://(www\.)?dnsdynamic\.org/ + to + https://$1dnsdynamic.org/ + + securecookie + + host + ^(?:www\.)?dnsdynamic\.org$ + name + .+ + + target + + + host + dnsdynamic.org + + + host + www.dnsdynamic.org + + + + + DNSstuff.com + + ruleset + + name + DNSstuff.com + rule + + from + ^http://(www\.)?dnsstuff\.com/ + to + https://$1dnsstuff.com/ + + securecookie + + host + ^\.dnsstuff\.com$ + name + .+ + + target + + + host + dnsstuff.com + + + host + *.dnsstuff.com + + + + + DNTX.com + + ruleset + + name + DNTX.com + rule + + + from + ^http://dntx\.com/([^?]*).* + to + https://www.dntx.com/$1 + + + from + ^http://www\.dntx\.com/ + to + https://www.dntx.com/ + + + securecookie + + host + ^www\.dntx\.com$ + name + .+ + + target + + + host + dntx.com + + + host + www.dntx.com + + + + + DNTrck.com + + ruleset + + name + DNTrck.com + rule + + from + ^http://(p1|www)\.dntrck\.com/ + to + https://$1.dntrck.com/ + + target + + host + *.dntrck.com + + + + DNV.com (partial) + + ruleset + + name + DNV.com (partial) + rule + + from + ^http://exchange\.dnv\.com/ + to + https://exchange.dnv.com/ + + securecookie + + host + ^exchange\.dnv\.com$ + name + .+ + + target + + host + exchange.dnv.com + + + + DOCLIX (partial) + + ruleset + + name + DOCLIX (partial) + rule + + + from + ^https?://(?:ads|track)\.doclix\.com/ + to + https://track.doclix.com/ + + + from + ^http://(advertis|publish)er\.doclix\.com/ + to + https://$1er.doclix.com/ + + + target + + host + *.doclix.com + + + + DOI.org (partial) + + ruleset + + name + DOI.org (partial) + rule + + from + ^http://(dx\.)?doi\.org/ + to + https://$1doi.org/ + + target + + + host + doi.org + + + host + dx.doi.org + + + + + DR.com.tr + + ruleset + + name + DR.com.tr + rule + + from + ^http://(www\.)?dr\.com\.tr/ + to + https://www.dr.com.tr/ + + securecookie + + host + ^(.*\.)?dr\.com\.tr$ + name + .* + + target + + + host + www.dr.com.tr + + + host + dr.com.tr + + + + + DR.dk + + ruleset + + name + DR.dk + rule + + from + ^http://(asset\.|www\.)?dr\.dk/ + to + https://$1dr.dk/ + + target + + + host + dr.dk + + + host + *.dr.dk + + + + + DRM.info + + ruleset + + name + DRM.info + rule + + from + ^http://(www\.)?drm\.info/ + to + https://$1drm.info/ + + securecookie + + host + ^\.drm\.info$ + name + .+ + + target + + + host + drm.info + + + host + *.drm.info + + + + + DSNR Media Group (partial) + + ruleset + + name + DSNR Media Group (partial) + rule + + from + ^https?://ad\.z5x\.net/ + to + https://ad.rmxads.net/ + + target + + host + ad.z5x.net + + + + DShield.org + + ruleset + + name + DShield.org + rule + + from + ^http://(www\.)?dshield\.org/ + to + https://$1dshield.org/ + + target + + + host + dshield.org + + + host + www.dshield.org + + + + + DTunnel + + ruleset + + name + DTunnel + platform + mixedcontent + rule + + from + ^http://(?:www\.)?dtunnel\.com/ + to + https://dtunnel.com/ + + securecookie + + host + ^(.+\.)?dtunnel\.com$ + name + .* + + target + + + host + dtunnel.com + + + host + www.dtunnel.com + + + + + DUG.net.pl + + ruleset + + name + DUG.net.pl + rule + + from + ^http://(?:(forum\.)|www\.)?dug\.net\.pl/ + to + https://$1dug.net.pl/ + + target + + + host + dug.net.pl + + + host + *.dug.net.pl + + + + + DVIDS Hub.net + + ruleset + + name + DVIDS Hub.net + rule + + + from + ^http://(www\.)?dvidshub\.net/ + to + https://$1dvidshub.net/ + + + from + ^http://(?:d\d\.)?static\.dvidshub\.net/ + to + https://static.dvidshub.net/ + + + from + ^http://(?:www\.)?nasaimages\.org/+ + to + https://www.dvidshub.net/unit/NASA + + + securecookie + + host + ^\.dvidshub\.net$ + name + .+ + + target + + + host + dvidshub.net + + + host + *.dvidshub.net + + + host + nasaimages.org + + + host + www.nasaimages.org + + + + + DW.de (partial) + + ruleset + + name + DW.de (partial) + rule + + from + ^http://social\.dw\.de/ + to + https://social.dw.de/ + + target + + host + social.dw.de + + + + DWin1.com + + ruleset + + name + DWin1.com + rule + + from + ^http://(?:www\.)?dwin1\.com/ + to + https://www.dwin1.com/ + + target + + + host + dwin1.com + + + host + www.dwin1.com + + + + + DaLinuxFrenchPage + + ruleset + + name + DaLinuxFrenchPage + platform + cacert + rule + + from + ^http://(alpha\.|img\.|www\.)?linuxfr\.org/ + to + https://$1linuxfr.org/ + + target + + + host + linuxfr.org + + + host + *.linuxfr.org + + + + + DaWanda (partial) + + ruleset + + exclusion + + pattern + ^http://(?:de|en|es|fr|it|nl|pl)\.dawanda.com/(?!(?:account/login|cms/c/\w\w/seller-portal)(?:$|\?|/)|cms/(?:image|javascript|stylesheet)s/|_pi_/|uo/|trck/|widget/) + + name + DaWanda (partial) + rule + + + from + ^http://(assets|de|en|es|fr|it|nl|pl)\.dawanda\.com/ + to + https://$1.dawanda.com/ + + + from + ^https?://(?:img\.dawanda|s3[12]\.dawandastatic)\.com/ + to + https://dawandaimages.s3.amazonaws.com/ + + + target + + + host + *.dawanda.com + + + host + *.dawandastatic.com + + + + + Daft Media (partial) + + ruleset + + name + Daft Media (partial) + rule + + + from + ^http://m(0|1)\.dmlimg\.com/ + to + https://m$1.dmlimg.com/ + + + from + ^http://c(0|1)\.dmstatic\.com/ + to + https://c$1.dmstatic.com/ + + + target + + + host + *.dmlimg.com + + + host + *.dmstatic.com + + + + + Dagbladet.no (false MCB) + + ruleset + + name + Dagbladet.no (false MCB) + platform + mixedcontent + rule + + from + ^http://(livebeta\.|www\.)?dagbladet\.no/ + to + https://$1dagbladet.no/ + + securecookie + + host + ^livebeta\.dagbladet\.no$ + name + .+ + + target + + + host + dagbladet.no + + + host + livebeta.dagbladet.no + + + host + www.dagbladet.no + + + + + Dagbladet.no (partial) + + ruleset + + exclusion + + pattern + ^http://www\.dagbladet\.no/+(?!favicon\.ico|.+(?:css|jpg|png)(?:$|\?)) + + name + Dagbladet.no (partial) + rule + + from + ^http://(gfx|www)\.dagbladet\.no/ + to + https://$1.dagbladet.no/ + + target + + host + *.dagbladet.no + + + + Dagens Bedste.de (partial) + + ruleset + + name + Dagens Bedste.de (partial) + rule + + from + ^http://([\w-]+)\.dbapp\.netdna-cdn\.com/ + to + https://$1-dbapp.netdna-ssl.com/ + + securecookie + + host + ^(?:dagensbedste|lokaldealen)-dbapp\.netdna-ssl\.com$ + name + .+ + + target + + + host + lokaldealen-dbapp.netdna-ssl.com + + + host + dagensbedste-dbapp.netdna-ssl.com + + + host + *.dbapp.netdna-cdn.com + + + + + Daily + + ruleset + + name + Daily + rule + + + from + ^http://(?:www\.)?daily\.co\.uk/ + to + https://www.daily.co.uk/ + + + from + ^http://(webmail)\.daily\.co\.uk/ + to + https://$1.daily.co.uk/ + + + target + + + host + www.daily.co.uk + + + host + webmail.daily.co.uk + + + host + daily.co.uk + + + + + Daily Express (partial) + + ruleset + + name + Daily Express (partial) + rule + + + from + ^https?://images\.dailyexpress\.co\.uk/ + to + https://s3.amazonaws.com/images.dailyexpress.co.uk/ + + + from + ^http://(?:www\.)?express\.co\.uk/ + to + https://www.express.co.uk/ + + + from + ^http://cdn\.images\.express\.co\.uk/ + to + https://d2gsbqw9zf5tyw.cloudfront.net/ + + + securecookie + + host + ^www\.express\.co\.uk$ + name + .+ + + target + + + host + images.dailyexpress.co.uk + + + host + express.co.uk + + + host + *.express.co.uk + + + + + Daily Fantasy Radio + + ruleset + + name + Daily Fantasy Radio + rule + + from + ^http://(www\.)?dailyfantasyradio\.com/ + to + https://$1dailyfantasyradio.com/ + + target + + + host + dailyfantasyradio.com + + + host + www.dailyfantasyradio.com + + + + + Daily Herald + + ruleset + + name + Daily Herald + rule + + + from + ^http://(classifieds\.|prev\.|www\.)?dailyherald\.com/ + to + https://$1dailyherald.com/ + + + from + ^https?://homes\.dailyherald\.com/$ + to + https://www.dailyherald.com/realestate/ + + + securecookie + + host + ^.*\.dailyherald\.com$ + name + .* + + target + + + host + dailyherald.com + + + host + *.dailyherald.com + + + + + Daily Mail (partial) + + ruleset + + name + Daily Mail (partial) + rule + + + from + ^http://f\.dailymail\.co\.uk/ + to + https://a248.e.akamai.net/f/1913/2926/10m/f.dailymail.co.uk/ + + + from + ^http://(i|scripts)\.dailymail\.co\.uk/ + to + https://a248.e.akamai.net/f/1202/1579/4m/$1.dailymail.co.uk/ + + + from + ^http://img\.dailymail\.co\.uk/ + to + https://a248.e.akamai.net/f/382/8298/1m/img.dailymail.co.uk/ + + + from + ^http://video\.dailymail\.co\.uk/ + to + https://a248.e.akamai.net/f/1641/217/4m/video.dailymail.co.uk/ + + + from + ^http://jobs\.dailymail\.co\.uk/home/ + to + https://www.jobsite.co.uk/home/ + + + from + ^http://i\.mol\.im/ + to + https://a248.e.akamai.net/f/1434/217/6m/i.mol.im/ + + + securecookie + + host + ^\.dailymail\.co\.uk$ + name + ^(?:Akamai_?Analytics\w+|__mo|__utm)\w$ + + target + + + host + *.dailymail.co.uk + + + host + i.mol.im + + + + + Daily NK.com (partial) + + ruleset + + name + Daily NK.com (partial) + rule + + from + ^http://(www\.)?dailynk\.com/ + to + https://$1dailynk.com/ + + target + + + host + dailynk.com + + + host + www.dailynk.com + + + + + Daily Star (partial) + + ruleset + + name + Daily Star (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?dailystar\.co\.uk/ + to + https://www.dailystar.co.uk/ + + + from + ^http://(?:cdn\.)?images\.dailystar-uk\.co\.uk/ + to + https://s3.amazonaws.com/images.dailystar-uk.co.uk/ + + + securecookie + + host + ^www\.dailystar\.co\.uk$ + name + .* + + target + + + host + dailystar.co.uk + + + host + www.dailystar.co.uk + + + host + images.dailystar-uk.co.uk + + + host + cdn.images.dailystar-uk.co.uk + + + + + DailyDot (partial) + + ruleset + + name + DailyDot (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?dailydot\.com/ + to + https://www.dailydot.com/ + + + downgrade + 1 + from + ^https://cdn0\.dailydot\.com/ + to + http://cdn0.dailydot.com/ + + + target + + + host + dailydot.com + + + host + *.dailydot.com + + + + + DailyHiit.com + + ruleset + + name + DailyHiit.com + rule + + from + ^http://(www\.)?dailyhiit\.com/ + to + https://$1dailyhiit.com/ + + securecookie + + host + ^\.dailyhiit\.com$ + name + .+ + + target + + + host + dailyhiit.com + + + host + *.dailyhiit.com + + + + + DailyPix + + ruleset + + name + DailyPix + rule + + from + ^http://(www\.)?(dailypix\.me|lolzparade\.com)/ + to + https://$1$2/ + + securecookie + + host + ^(?:w*\.)?(?:dailypix\.me|lolzparade\.com)$ + name + .+ + + target + + + host + dailypix.me + + + host + *.dailypix.me + + + host + lolzparade.com + + + host + *.lolzparade.com + + + + + Dale Macartney.com + + ruleset + + name + Dale Macartney.com + rule + + from + ^http://(www\.)?dalemacartney\.com/ + to + https://$1dalemacartney.com/ + + securecookie + + host + ^(?:www\.)?dalemacartney\.com$ + name + .+ + + target + + + host + dalemacartney.com + + + host + www.dalemacartney.com + + + + + Dan.me.uk + + ruleset + + name + Dan.me.uk + rule + + from + ^http://(www\.)?dan\.me\.uk/ + to + https://$1dan.me.uk/ + + target + + + host + dan.me.uk + + + host + www.dan.me.uk + + + + + Dancing Astronaut (partial) + + ruleset + + name + Dancing Astronaut (partial) + rule + + from + ^http://(static|uploads)\.dancingastronaut\.com/ + to + https://$1.dancingastronaut.com/ + + target + + host + *.dancingastronaut.com + + + + DaniWeb.com + + ruleset + + name + DaniWeb.com + rule + + from + ^http://(www\.)?daniweb\.com/ + to + https://$1daniweb.com/ + + securecookie + + host + ^\.www\.daniweb\.com$ + name + .+ + + target + + + host + daniweb.com + + + host + *.daniweb.com + + + + + Daniel P. Berrangé + + ruleset + + name + Daniel P. Berrangé + rule + + from + ^http://(www\.)?berrange\.com/ + to + https://$1berrange.com/ + + target + + + host + berrange.com + + + host + www.berrange.com + + + + + Daring Fireball + + ruleset + + name + Daring Fireball + rule + + from + ^https?://(?:(jobs\.|store\.)|www\.)?daringfireball\.net/ + to + https://$1daringfireball.net/ + + target + + + host + daringfireball.net + + + host + *.daringfireball.net + + + + + DarkMoney.cc + + ruleset + + name + DarkMoney.cc + rule + + from + ^http://(www\.)?darkmoney\.cc/ + to + https://$1darkmoney.cc/ + + securecookie + + host + ^(?:w*\.)?darkmoney\.cc$ + name + .+ + + target + + + host + darkmoney.cc + + + host + *.darkmoney.cc + + + + + Darkmail.info + + ruleset + + name + Darkmail.info + rule + + from + ^http://(www\.)?darkmail\.info/ + to + https://www.darkmail.info/ + + target + + + host + www.darkmail.info + + + host + darkmail.info + + + + + Darmstadt University of Applied Sciences (partial) + + ruleset + + name + Darmstadt University of Applied Sciences (partial) + rule + + + from + ^http://(?:www\.)?h-da\.de/ + to + https://www.h-da.de/ + + + from + ^http://(autodiscover|(?:www\.|webmail\.)?fbi|email|webmail)\.h-da\.de/ + to + https://$1.h-da.de/ + + + from + ^http://mail\.h-da\.de/(?:\?.*)?$ + to + https://webmail.h-da.de/owa + + + securecookie + + host + ^(?:(?:\.?www\.)?fbi|email|www)\.h-da\.de$ + name + .+ + + target + + + host + h-da.de + + + host + *.h-da.de + + + + + Dart Lang.org + + ruleset + + name + Dart Lang.org + rule + + from + ^http://(pub\.|www\.)?dartlang\.org/ + to + https://$1dartlang.org/ + + target + + + host + dartlang.org + + + host + *.dartlang.org + + + + + Dartmouth College (partial) + + ruleset + + name + Dartmouth College (partial) + rule + + + from + ^http://((?:briefings|dimensions|library|login|tower|websso|www)\.)?dartmouth\.edu/ + to + https://$1dartmouth.edu/ + + + from + ^https?://arts\.dartmouth\.edu/ + to + https://dartmouth-arts.herokuapp.com/ + + + from + ^https?://search\.dartmouth\.edu/(?:.*) + to + https://www.dartmouth.edu/~search/ + + + securecookie + + host + ^(?:.+\.)?dartmouth\.edu$ + name + .+ + + target + + + host + dartmouth.edu + + + host + *.dartmouth.edu + + + + + Das Parlament (partial) + + ruleset + + name + Das Parlament (partial) + rule + + from + ^http://www\.das-parlament\.de/ + to + https://www.das-parlament.de/ + + target + + host + www.das-parlament.de + + + + Das-labor.org + + ruleset + + name + Das-labor.org + rule + + from + ^http://(www\.)?das-labor\.org/ + to + https://$1das-labor.org/ + + securecookie + + host + ^(?:www\.)?das-labor\.org$ + name + .+ + + target + + + host + das-labor.org + + + host + www.das-labor.org + + + + + Dashlane.com + + ruleset + + name + Dashlane.com + rule + + + from + ^http://(?:www\.)?dashlane\.com/ + to + https://www.dashlane.com/ + + + from + ^http://support\.dashlane\.com/favicon\.ico + to + https://dashlane.desk.com/favicon.ico + + + securecookie + + host + ^www\.dashlane\.com$ + name + .+ + + target + + + host + dashlane.com + + + host + *.dashlane.com + + + + + Dassault Falcon + + ruleset + + name + Dassault Falcon + rule + + + from + ^https?://(?:dassaultfalcon|(?:www\.)?falconjet)\.com/ + to + https://www.dassaultfalcon.com/ + + + from + ^http://(customer|insight|sqr|wtsdc|www)\.dassaultfalcon\.com/ + to + https://$1.dassaultfalcon.com/ + + + from + ^http://(aht|cats|devworks|qlik|spares|thebridge|thin)\.falconjet\.com/ + to + https://$1.falconjet.com/ + + + securecookie + + host + ^.+\.(?:dassaultfalcon|falconjet)\.com$ + name + .+ + + target + + + host + dassaultfalcon.com + + + host + *.dassaultfalcon.com + + + host + falconjet.com + + + host + *.falconjet.com + + + + + Dassault Systèmes (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?3ds\.com/(?!ajax/|favicon\.ico|fileadmin/|index\.php\?eID=dasty_dsstore_ajax|my-account/|typo3temp/|uploads/) + + name + Dassault Systèmes (partial) + rule + + + from + ^http://(iam\.|www\.)?3ds\.com/ + to + https://$13ds.com/ + + + from + ^http://a\d\.media\.3ds\.com/ + to + https://www.3ds.com/ + + + securecookie + + host + ^iam\.3ds\.com$ + name + .+ + + target + + + host + 3ds.com + + + host + *.3ds.com + + + + + Dastelefonbuch.de + + ruleset + + name + Dastelefonbuch.de + rule + + + from + ^http://www2\.dastelefonbuch\.de/ + to + https://www2.dastelefonbuch.de/ + + + from + ^http://mein2\.dastelefonbuch\.de/ + to + https://mein2.dastelefonbuch.de/ + + + target + + + host + www2.dastelefonbuch.de + + + host + mein2.dastelefonbuch.de + + + + + DatStat + + ruleset + + name + DatStat + rule + + + from + ^https?://(?:www\.)?datstat\.com/ + to + https://www.datstat.com/ + + + from + ^http://([\w-]+)\.datstathost\.com/ + to + https://$1.datstathost.com/ + + + securecookie + + host + ^www\.datstat\.com$ + name + .+ + + target + + + host + datstat.com + + + host + www.datstat.com + + + host + *.datstathost.com + + + + + Data Center World.com (partial) + + ruleset + + name + Data Center World.com (partial) + rule + + from + ^http://(www\.)?datacenterworld\.com/(?=(?:[\w-]+/)?wp-(?:content|includes)/) + to + https://$1datacenterworld.com/ + + target + + + host + datacenterworld.com + + + host + www.datacenterworld.com + + + + + Data Design (partial) + + ruleset + + name + Data Design (partial) + rule + + from + ^http://secure\.webmercs\.com/ + to + https://secure.webmercs.com/ + + securecookie + + host + ^secure\.webmercs\.com$ + name + .* + + target + + host + secure.webmercs.com + + + + Data Protection Commissioner + + ruleset + + name + Data Protection Commissioner + rule + + from + ^http://(www\.)?dataprotection\.ie/ + to + https://$1dataprotection.ie/ + + securecookie + + host + ^(?:www\.)?dataprotection\.ie$ + name + .+ + + target + + + host + dataprotection.ie + + + host + www.dataprotection.ie + + + + + Data.com + + ruleset + + name + Data.com + rule + + + from + ^http://(?:www\.)?data\.com/ + to + https://www.data.com/ + + + from + ^http://(connect|(?:www\.)?jigsaw|static)\.data\.com/ + to + https://$1.data.com/ + + + securecookie + + host + ^.+\.data\.com$ + name + .+ + + target + + + host + data.com + + + host + *.data.com + + + + + DataCamp.com + + ruleset + + name + DataCamp.com + rule + + + from + ^http://(?:www\.)?datacamp\.com/ + to + https://www.datacamp.com/ + + + from + ^http://api\.datacamp\.com/ + to + https://api.datacamp.com/ + + + securecookie + + host + ^api\.datacamp\.com$ + name + .+ + + target + + + host + datacamp.com + + + host + *.datacamp.com + + + + + DataCell + + ruleset + + name + DataCell + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?datacell\.(?:com|is)/ + to + https://www.datacell.com/ + + + from + ^http://paygate\.datacell\.com/ + to + https://paygate.datacell.com/ + + + securecookie + + host + ^(?:paygate|www)\.datacell\.com$ + name + .+ + + target + + + host + datacell.com + + + host + *.datacell.com + + + host + datacell.is + + + host + www.datacell.is + + + + + DataCenterKnowledge.com (partial) + + ruleset + + exclusion + + pattern + ^http://jobs\.datacenterknowledge\.com/($|a/) + + name + DataCenterKnowledge.com (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?datacenterknowledge\.com/ + to + https://$1datacenterknowledge.com/ + + + from + ^https?://jobs\.datacenterknowledge\.com/c/ + to + https://datacenterknowledge.jobamatic.com/c/ + + + target + + + host + datacenterknowledge.com + + + host + *.datacenterknowledge.com + + + + + DataCoup.com (partial) + + ruleset + + name + DataCoup.com (partial) + rule + + from + ^http://(?:www\.)?datacoup\.com/ + to + https://datacoup.com/ + + securecookie + + host + ^datacoup\.com$ + name + .+ + + target + + + host + datacoup.com + + + host + www.datacoup.com + + + + + DataMineLab.com (partial) + + ruleset + + name + DataMineLab.com (partial) + rule + + from + ^http://(?:www\.)?dataminelab\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://secure.bluehost.com/~datamine/ + + securecookie + + host + ^\.dataminelab\.com$ + name + ^__utm\w+$ + + target + + + host + dataminelab.com + + + host + *.dataminelab.com + + + + + DataSphere.com (partial) + + ruleset + + name + DataSphere.com (partial) + rule + + from + ^http://oascentral\.datasphere\.com/ + to + https://oasc18.247realmedia.com/ + + target + + host + oascentral.datasphere.com + + + + DataTables.net + + ruleset + + name + DataTables.net + rule + + from + ^http://(cdn\.|www\.)?datatables\.net/ + to + https://$1datatables.net/ + + securecookie + + host + ^(?:w*\.)?datatables\.net$ + name + .+ + + target + + + host + datatables.net + + + host + *.datatables.net + + + + + DataVantage + + ruleset + + name + DataVantage + rule + + from + ^http://(www\.)?datavantage\.com/ + to + https://$1datavantage.com/ + + target + + + host + datavantage.com + + + host + www.datavantage.com + + + + + DataXu + + ruleset + + name + DataXu + rule + + + from + ^http://(advertisers|www)\.dataxu\.com/ + to + https://$1.dataxu.com/ + + + from + ^http://(cdn|cti|i|tags)\.w55c\.net/ + to + https://$1.w55c.net/ + + + securecookie + + + host + ^advertisers\.dataxu\.com$ + name + .+ + + + host + ^\.w55c\.net$ + name + .+ + + + target + + + host + *.dataxu.com + + + host + *.w55c.net + + + + + Database.com (partial) + + ruleset + + name + Database.com (partial) + rule + + from + ^http://(autodiscover|blog|login|webmail)\.database\.com/ + to + https://$1.database.com/ + + target + + host + *.database.com + + + + Datacard.com + + ruleset + + name + Datacard.com + rule + + + from + ^http://(?:www\.)?datacard\.com/ + to + https://www.datacard.com/ + + + from + ^http://careers\.datacard\.com/ + to + https://careers.datacard.com/ + + + securecookie + + host + ^www\.datacard\.com$ + name + + + target + + + host + datacard.com + + + host + *.datacard.com + + + + + DatacentrumGids.nl + + ruleset + + name + DatacentrumGids.nl + rule + + from + ^http://(www\.)?datacentrumgids\.nl/ + to + https://$1datacentrumgids.nl/ + + securecookie + + host + ^(?:www)?\.datacentrumgids\.nl$ + name + .+ + + target + + + host + datacentrumgids.nl + + + host + *.datacentrumgids.nl + + + + + Datalogix.com (partial) + + ruleset + + name + Datalogix.com (partial) + rule + + from + ^http://(?:www\.)?datalogix\.com/(favicon\.ico|wp-content/|wp-includes/) + to + https://www.datalogix.com/$1 + + target + + + host + datalogix.com + + + host + www.datalogix.com + + + + + Datamappi.fi + + ruleset + + name + Datamappi.fi + rule + + + from + ^http://(?:www\.)?datamappi\.fi/ + to + https://www.datamappi.fi/ + + + from + ^http://oma\.datamappi\.fi/ + to + https://oma.datamappi.fi/ + + + securecookie + + host + ^(?:oma|www)\.datamappi\.fi$ + name + .+ + + target + + + host + datamappi.fi + + + host + *.datamappi.fi + + + + + Datamonitor (partial) + + ruleset + + name + Datamonitor (partial) + rule + + from + ^http://(?:www\.)?research-store\.com/((?:[\w\-]+/)?(?:css/|images/|Library/|Purchase/Basket\.aspx|Registration\.aspx|skins/)) + to + https://www.research-store.com/$1 + + target + + + host + researchstore.com + + + host + www.researchstore.com + + + + + Datamonitor.com (partial) + + ruleset + + name + Datamonitor.com (partial) + rule + + + from + ^http://datamonitor\.com/.* + to + https://www.datamonitor.com/ + + + from + ^http://www\.datamonitor\.com/(?!store/(?!css/|images/|skins/)) + to + https://www.datamonitor.com/ + + + securecookie + + host + ^\.datamonitor\.com$ + name + ^__utm\w+$ + + target + + + host + datamonitor.com + + + host + *.datamonitor.com + + + + + Dataopedia.com (partial) + + ruleset + + name + Dataopedia.com (partial) + rule + + from + ^http://cdn\.dataopedia\.com/ + to + https://d2hb7m70lgc5kn.cloudfront.net/ + + target + + host + cdn.dataopedia.com + + + + Datapipe.com (partial) + + ruleset + + name + Datapipe.com (partial) + rule + + + from + ^http://(www\.)?(my)?datapipe\.(com|net)/ + to + https://www.$2datapipe.com/ + + + from + ^http://www\.datapipe\.co\.uk/ + to + https://www.datapipe.co.uk/ + + + from + ^http://secure\.datapipe\.com/ + to + https://secure.datapipe.com/ + + + target + + + host + datapipe.com + + + host + secure.datapipe.com + + + host + www.datapipe.com + + + host + datapipe.co.uk + + + host + www.datapipe.co.uk + + + host + datapipe.net + + + host + www.datapipe.net + + + host + mydatapipe.com + + + host + www.mydatapipe.com + + + host + mydatapipe.net + + + host + www.mydatapipe.net + + + + + Datatilsynet + + ruleset + + name + Datatilsynet + rule + + + from + ^http://(?:www\.)?datatilsynet\.no/ + to + https://www.datatilsynet.no/ + + + from + ^http://(?:www\.)?slettmeg\.no/ + to + https://slettmeg.no/ + + + target + + + host + www.datatilsynet.no + + + host + datatilsynet.no + + + host + www.slettmeg.no + + + host + slettmeg.no + + + + + Datemas.de (partial) + + ruleset + + name + Datemas.de (partial) + rule + + from + ^http://web\.datemas\.de/ + to + https://web.datemas.de/ + + securecookie + + host + ^web\.datemas\.de$ + name + .+ + + target + + host + web.datemas.de + + + + Datenschutz ist Bürgerrecht + + ruleset + + name + Datenschutz ist Bürgerrecht + rule + + from + ^https?://(?:www\.)?datenschutz-ist-buergerrecht\.de/ + to + https://www.datenschutz-ist-buergerrecht.de/ + + securecookie + + host + ^(www)?\.datenschutz-ist-buergerrecht\.de$ + name + .* + + target + + + host + datenschutz-ist-buergerrecht.de + + + host + *.datenschutz-ist-buergerrecht.de + + + + + Daum Communications (partial) + + ruleset + + name + Daum Communications (partial) + rule + + + from + ^http://track\.tiara\.daum\.net/ + to + https://track.tiara.daum.net/ + + + from + ^http://(i|s)1\.daumcdn\.net/ + to + https://$11.daumcdn.net/ + + + target + + + host + track.tiara.daum.net + + + host + *.daumcdn.net + + + + + David Adrian.org + + ruleset + + name + David Adrian.org + rule + + from + ^http://(www\.)?davidadrian\.org/ + to + https://$1davidadrian.org/ + + target + + + host + davidadrian.org + + + host + www.davidadrian.org + + + + + Davidlyness.com + + ruleset + + name + Davidlyness.com + platform + firefox + rule + + from + ^http://davidlyness\.com/ + to + https://davidlyness.com/ + + securecookie + + host + ^davidlyness\.com$ + name + .+ + + target + + host + davidlyness.com + + + + Davidson Tutoring (false MCB) + + ruleset + + name + Davidson Tutoring (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?davidsontutoring\.com/(?!assets/|favicon\.ico) + to + https://www.davidsontutoring.com/ + + securecookie + + host + ^(?:www)?\.davidsontutoring\.com$ + name + .+ + + target + + + host + davidsontutoring.com + + + host + *.davidsontutoring.com + + + + + Davidson Tutoring (partial) + + ruleset + + name + Davidson Tutoring (partial) + rule + + from + ^http://(?:www\.)?davidsontutoring\.com/(?=assets/|favicon\.ico) + to + https://www.davidsontutoring.com/ + + target + + + host + davidsontutoring.com + + + host + www.davidsontutoring.com + + + + + Davinci Vaporizor + + ruleset + + name + Davinci Vaporizor + rule + + from + ^http://(www\.)?davincivaporizer\.com/ + to + https://$1davincivaporizer.com/ + + securecookie + + host + ^\.davincivaporizer\.com$ + name + .+ + + target + + + host + davincivaporizer.com + + + host + *.davincivaporizer.com + + + + + Davis Instruments (partial) + + ruleset + + name + Davis Instruments (partial) + rule + + + from + ^https?://(?:www\.)?davis\.com/((?:combres\.axd|icons|images|includes|SiteAssets|Account-Profile|Forgot-Password|login|Register)(?:$|\?|/)) + to + https://www.davis.com/$1/ + + + from + ^https?://static\.davis\.com/ + to + https://duaawgxv85i1i.cloudfront.net/ + + + target + + + host + davis.com + + + host + *.davis.com + + + + + DavisSystem + + ruleset + + name + DavisSystem + rule + + from + ^http://(www\.)?davissystem\.net/ + to + https://$1davissystem.net/ + + securecookie + + host + ^\.davissystem\.net$ + name + .+ + + target + + + host + davissystem.net + + + host + *.davissystem.net + + + + + Davpack.co.uk + + ruleset + + name + Davpack.co.uk + rule + + from + ^http://(?:www\.)?davpack\.co\.uk/(?=(?:checkout|Signin)\.aspx|favicon\.ico|(?:Script|Web)Resource\.axd) + to + https://www.davpack.co.uk/ + + target + + + host + davpack.co.uk + + + host + www.davpack.co.uk + + + + + Dawsonera (partial) + + ruleset + + name + Dawsonera (partial) + rule + + from + ^https?://(?:www\.)?dawsonera\.com/(guard/protected/|Shibboleth\.sso) + to + https://wwwdawsonera.com/$1 + + target + + + host + dawsonera.com + + + host + www.dawsonera.com + + + + + DbackPolice.com + + ruleset + + name + DbackPolice.com + rule + + from + ^http://(www\.)?dbackpolice\.com/ + to + https://$1dbackpolice.com/ + + securecookie + + host + ^\.(?:www\.)?dbackpolice\.com$ + name + .+ + + target + + + host + dbackpolice.com + + + host + *.dbackpolice.com + + + + + De Bekijkerie.nl + + ruleset + + name + De Bekijkerie.nl + rule + + from + ^http://(?:www\.)?debekijkerie\.nl/ + to + https://www.debekijkerie.nl/ + + target + + + host + debekijkerie.nl + + + host + www.debekijkerie.nl + + + + + De Correspondent.nl + + ruleset + + name + De Correspondent.nl + rule + + from + ^http://((?:dynamic|static|www)\.)?decorrespondent\.nl/ + to + https://$1decorrespondent.nl/ + + securecookie + + host + ^decorrespondent\.nl$ + name + .+ + + target + + + host + decorrespondent.nl + + + host + *.decorrespondent.nl + + + + + De Digitale Topschool.nl + + ruleset + + name + De Digitale Topschool.nl + rule + + from + ^http://(www\.)?dedigitaletopschool\.nl/ + to + https://$1dedigitaletopschool.nl/ + + target + + + host + dedigitaletopschool.nl + + + host + www.dedigitaletopschool.nl + + + + + De17a.com + + ruleset + + name + De17a.com + rule + + from + ^http://de17a\.com/ + to + https://de17a.com/ + + securecookie + + host + ^\.de17a\.com$ + name + .+ + + target + + + host + de17a.com + + + host + *.de17a.com + + + + + Deaconess Health System + + ruleset + + exclusion + + pattern + ^http://(www\.)?deaconess\.com/mobile(/|$) + + name + Deaconess Health System + rule + + from + ^(http://(www\.)?|https://)deaconess\.com/ + to + https://www.deaconess.com/ + + securecookie + + host + ^((www)?\.)?deaconess\.com$ + name + .+ + + target + + + host + deaconess.com + + + host + www.deaconess.com + + + + + Dead Drops.com + + ruleset + + name + Dead Drops.com + rule + + from + ^http://(www\.)?deaddrops\.com/ + to + https://$1deaddrops.com/ + + securecookie + + host + ^(?:www\.)?deaddrops\.com$ + name + .+ + + target + + + host + deaddrops.com + + + host + www.deaddrops.com + + + + + Deakin University (partial) + + ruleset + + name + Deakin University (partial) + platform + mixedcontent + rule + + from + ^http://deakin\.edu\.au/ + to + https://deakin.edu.au/ + + target + + host + deakin.edu.au + + + + Deal Extreme + + ruleset + + name + Deal Extreme + platform + mixedcontent + rule + + + from + ^http://((?:club|e|m|www)\.)?dealextreme\.com/ + to + https://$1dealextreme.com/ + + + from + ^http://((?:cart|club|cs|deals|e|passport|s|www)\.)?dx\.com/ + to + https://$1dx.com/ + + + from + ^http://img\.dxcdn\.com/ + to + https://img.dxcdn.com/ + + + securecookie + + host + ^.*\.d(?:ealextreme|x)\.com$ + name + .+ + + target + + + host + dealextreme.com + + + host + *.dealextreme.com + + + host + dx.com + + + host + *.dx.com + + + host + img.dxcdn.com + + + + + DealCent + + ruleset + + name + DealCent + rule + + from + ^http://(www\.)?dealcent\.com/ + to + https://$1dealcent.com/ + + securecookie + + host + ^dealcent\.com$ + name + .* + + target + + + host + dealcent.com + + + host + www.dealcent.com + + + + + DealTime (partial) + + ruleset + + name + DealTime (partial) + rule + + from + ^http://sc\.dealtime\.com/ + to + https://sc.dealtime.com/ + + target + + host + sc.dealtime.com + + + + Dealer.com (partial) + + ruleset + + name + Dealer.com (partial) + rule + + + from + ^http://cdn\.dealer\.com/ + to + https://pictures.dealer.com/ + + + from + ^http://(hits|pictures|static)\.dealer\.com/ + to + https://$1.dealer.com/ + + + target + + + host + cdn.dealer.com + + + host + hits.dealer.com + + + host + pictures.dealer.com + + + host + static.dealer.com + + + + + DealerFire (partial) + + ruleset + + name + DealerFire (partial) + rule + + from + ^http://cdn\.dealerfire\.com/ + to + https://cdn.dealerfire.com/ + + target + + host + cdn.dealerfire.com + + + + DealerRater.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?dealerrater\.com/+(?:$|\?) + + name + DealerRater.com (partial) + rule + + + from + ^http://(www\.)?dealerrater\.com/ + to + https://$1dealerrater.com/ + + + from + ^http://cdn-static\.dealerrater\.com/ + to + https://d3go5n7g2hd1g0.cloudfront.net/ + + + from + ^http://cdn-user\.dealerrater\.com/ + to + https://d17jk93jbxi6p4.cloudfront.net/ + + + target + + + host + dealerrater.com + + + host + www.dealerrater.com + + + + + DealerTrend.com (partial) + + ruleset + + name + DealerTrend.com (partial) + rule + + from + ^http://images\.dealertrend\.com/ + to + https://s3.amazonaws.com/images.dealertrend.com/ + + target + + host + images.dealertrend.com + + + + Dealfish.co.th + + ruleset + + name + Dealfish.co.th + rule + + from + ^http://(www\.)?dealfish\.co\.th/ + to + https://www.dealfish.co.th/ + + target + + + host + dealfish.co.th + + + host + www.dealfish.co.th + + + + + Dear FCC.org + + ruleset + + name + Dear FCC.org + rule + + from + ^http://(www\.)?dearfcc\.org/ + to + https://$1dearfcc.org/ + + target + + + host + dearfcc.org + + + host + www.dearfcc.org + + + + + Debian (partial) + + ruleset + + name + Debian (partial) + rule + + + from + ^http://((?:anonscm|(?:[^/:@]+\.)?alioth|arch|bits|bugs(?:-master)?|buildd|bzr|contributors|cvs|darcs|db|dsa|ftp-master|git|hg|lintian|lists|munin|nagios|nm|openstack\.bm|packages|people|piuparts|puppet-dashboard|(?:packages\.)?qa|release|rt|rtc|security-(?:tracker|master)|sip-ws|sso|svn|tracker|udd|vote|wiki|www)\.)?debian\.org/ + to + https://$1debian.org/ + + + from + ^http://security\.debian\.org/+(?=$|\?) + to + https://www.debian.org/security/ + + + from + ^http://(france|paste|screenshots)\.debian\.net/ + to + https://$1.debian.net/ + + + from + ^http://(buildd)\.debian-ports\.org/ + to + https://$1.debian-ports.org/ + + + securecookie + + host + ^nm\.debian\.org$ + name + .+ + + target + + + host + debian.org + + + host + *.debian.org + + + host + *.debian.net + + + host + *.debian-ports.org + + + + + Debian-Administration.org (partial) + + ruleset + + name + Debian-Administration.org (partial) + rule + + from + ^http://(www\.)?debian-administration\.org/ + to + https://$1debian-administration.org/ + + target + + + host + debian-administration.org + + + host + www.debian-administration.org + + + + + Debian-fr + + ruleset + + name + Debian-fr + rule + + from + ^http://(www\.)?debian-fr\.org/ + to + https://www.debian-fr.org/ + + target + + + host + debian-fr.org + + + host + *.debian-fr.org + + + + + Debuggable (partial) + + ruleset + + name + Debuggable (partial) + rule + + + from + ^http://www(-eleni|-eric)?\.transloadit\.com/ + to + https://www$1.transloadit.com/ + + + from + ^http://transloadit\.com/(accounts/forgot_pw|img/|login|mediaelement/|signup) + to + https://transloadit.com/$1 + + + target + + + host + transloadit.com + + + host + *.transloadit.com + + + + + Debuggify.net + + ruleset + + name + Debuggify.net + rule + + from + ^http://(cdn\.|www\.)?debuggify\.net/ + to + https://$1debuggify.net/ + + securecookie + + host + ^\.debuggify\.net$ + name + .+ + + target + + + host + debuggify.net + + + host + *.debuggify.net + + + + + Decdna.net + + ruleset + + name + Decdna.net + rule + + from + ^http://(na|(eu\.link))\.decdna\.net/ + to + https://$1.decdna.net/ + + target + + + host + na.decdna.net + + + host + eu.link.decdna.net + + + + + Deciduous Press.com.au + + ruleset + + name + Deciduous Press.com.au + rule + + from + ^http://(images\.|www\.)?deciduouspress\.com\.au/ + to + https://$1deciduouspress.com.au/ + + securecookie + + host + ^\.deciduouspress\.com\.au$ + name + .+ + + target + + + host + deciduouspress.com.au + + + host + *.deciduouspress.com.au + + + + + Decipher Inc.com + + ruleset + + name + Decipher Inc.com + rule + + + from + ^http://(www\.)?decipherinc\.com/ + to + https://$1decipherinc.com/ + + + from + ^http://(?:static|v2)\.decipherinc\.com/ + to + https://v2.decipherinc.com/ + + + securecookie + + host + ^v2\.decipherinc\.com$ + name + .+ + + target + + + host + decipherinc.com + + + host + *.decipherinc.com + + + + + DecisionBriefs + + ruleset + + name + DecisionBriefs + rule + + from + ^http://((?:core|partners|www)\.)?decisionbriefs\.com/ + to + https://$1decisionbriefs.com/ + + securecookie + + host + ^(?:.+\.)?decisionbriefs\.com$ + name + .+ + + target + + + host + decisionbriefs.com + + + host + *.decisionbriefs.com + + + + + DecisionKey + + ruleset + + name + DecisionKey + rule + + from + ^https?://(?:www\.)?npddecisionkey\.com/ + to + https://www.npddecisionkey.com/ + + securecookie + + host + ^www\.npddecisionkey\.com$ + name + .+ + + target + + + host + npddecisionkey.com + + + host + www.npddecisionkey.com + + + + + Declaration of Russian Hosting Providers + + ruleset + + name + Declaration of Russian Hosting Providers + rule + + from + ^https?://(?:www\.)?hostdeclaration\.ru/ + to + https://hostdeclaration.ru/ + + target + + + host + hostdeclaration.ru + + + host + www.hostdeclaration.ru + + + + + Deco.proteste.pt + + ruleset + + name + Deco.proteste.pt + rule + + from + ^http://(?:www\.)?deco\.proteste\.pt/ + to + https://www.deco.proteste.pt/ + + target + + + host + deco.proteste.pt + + + host + www.deco.proteste.pt + + + + + Decrypt CryptoLocker.com + + ruleset + + name + Decrypt CryptoLocker.com + rule + + from + ^http://(www\.)?decryptcryptolocker\.com/ + to + https://$1decryptcryptolocker.com/ + + target + + + host + decryptcryptolocker.com + + + host + www.decryptcryptolocker.com + + + + + Dedicated Gaming + + ruleset + + name + Dedicated Gaming + rule + + from + ^http://(myaccount\.|www\.)?dedicatedgaming\.com\.au/ + to + https://$1dedicatedgaming.com.au/ + + securecookie + + host + ^(?:myaccount)?\.dedicatedgaming.com.au$ + name + .+ + + target + + + host + dedicatedgaming.com.au + + + host + *.dedicatedgaming.com.au + + + + + Deep Politics Forum.com + + ruleset + + name + Deep Politics Forum.com + rule + + from + ^http://(www\.)?deeppoliticsforum\.com/ + to + https://$1deeppoliticsforum.com/ + + securecookie + + host + ^(?:www\.)?deeppoliticsforum\.com$ + name + .+ + + target + + + host + deeppoliticsforum.com + + + host + www.deeppoliticsforum.com + + + + + DeepDyve + + ruleset + + name + DeepDyve + rule + + from + ^http://(www\.)?deepdyve\.com/ + to + https://$1deepdyve.com/ + + securecookie + + host + ^www\.deepdyve\.com$ + name + .+ + + target + + + host + deepdyve.com + + + host + www.deepdyve.com + + + + + DeepSec.net (partial) + + ruleset + + name + DeepSec.net (partial) + rule + + from + ^http://(www\.)?deepsec\.net/ + to + https://$1deepsec.net/ + + target + + + host + deepsec.net + + + host + www.deepsec.net + + + + + Deepbit.net + + ruleset + + name + Deepbit.net + rule + + from + ^http://(?:www\.)?deepbit\.net/ + to + https://deepbit.net/ + + target + + + host + deepbit.net + + + host + www.deepbit.net + + + + + Deezer + + ruleset + + name + Deezer + rule + + from + ^http://(cdns-files\.|www\.)?deezer\.com/ + to + https://$1deezer.com/ + + target + + + host + deezer.com + + + host + *.deezer.com + + + + + Defcon + + ruleset + + name + Defcon + rule + + from + ^http://((?:forum|media|pics|www)\.)?defcon\.org/ + to + https://$1defcon.org/ + + securecookie + + host + ^\.forum\.defcon\.org$ + name + .+ + + target + + + host + defcon.org + + + host + *.defcon.org + + + + + Defective By Design.org + + ruleset + + name + Defective By Design.org + rule + + from + ^http://(www\.)?defectivebydesign\.org/ + to + https://$1defectivebydesign.org/ + + target + + + host + defectivebydesign.org + + + host + www.defectivebydesign.org + + + + + Defence Force Retirement and Death Benefits Scheme + + ruleset + + name + Defence Force Retirement and Death Benefits Scheme + rule + + from + ^http://(?:www\.)?dfrdb\.gov\.au/ + to + https://www.dfrdb.gov.au/ + + target + + + host + dfrdb.gov.au + + + host + *.dfrdb.gov.au + + + + + Defence Housing Australia + + ruleset + + name + Defence Housing Australia + rule + + + from + ^http://(?:www\.)?dha\.gov\.au/ + to + https://www.dha.gov.au/ + + + from + ^http://(?:www\.)?invest\.dha\.gov\.au/ + to + https://invest.dha.gov.au/ + + + target + + + host + dha.gov.au + + + host + *.dha.gov.au + + + + + Defense Industry Daily (partial) + + ruleset + + name + Defense Industry Daily (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?defenseindustrydaily\.com/ + to + https://$1defenseindustrydaily.com/ + + securecookie + + host + ^(?:www\.)?defenseindustrydaily\.com$ + name + .+ + + target + + + host + defenseindustrydaily.com + + + host + www.defenseindustrydaily.com + + + + + Defense One.com (false MCB) + + ruleset + + name + Defense One.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?defenseone\.com/ + to + https://www.defenseone.com/ + + target + + + host + defenseone.com + + + host + www.defenseone.com + + + + + Defense One.com (partial) + + ruleset + + name + Defense One.com (partial) + rule + + + from + ^http://cdn\.defenseone\.com/ + to + https://cdn.defenseone.com/ + + + from + ^http://metrics\.defenseone\.com/ + to + https://atlanticmedia.122.2o7.net/ + + + securecookie + + host + ^\.defenseone\.com$ + name + ^s_\w+$ + + target + + host + *.defenseone.com + + + + Defsounds + + ruleset + + name + Defsounds + rule + + from + ^http://(www\.)?defsounds\.com/ + to + https://$1defsounds.com/ + + securecookie + + host + ^\.defsounds\.com$ + name + .+ + + target + + + host + defsounds.com + + + host + *.defsounds.com + + + + + Deimos.fr + + ruleset + + name + Deimos.fr + rule + + from + ^http://((?:piwik|wiki|www)\.)?deimos\.fr/ + to + https://$1deimos.fr/ + + target + + + host + deimos.fr + + + host + *.deimos.fr + + + + + Delaware Online (partial) + + ruleset + + name + Delaware Online (partial) + rule + + from + ^https?://(?:www\.)?delawareonline\.com/ + to + https://www.delawareonline.com/ + + securecookie + + host + ^www\.delawareonline\.com$ + name + .+ + + target + + + host + delawareonline.com + + + host + *.delawareonline.com + + + + + Delaware Technical Community College (partial) + + ruleset + + name + Delaware Technical Community College (partial) + rule + + + from + ^http://(www\.)?dtcc\.edu/ + to + https://www.dtcc.edu/ + + + from + ^http://(www\.)?login\.dtcc\.edu/ + to + https://login.dtcc.edu/ + + + target + + + host + dtcc.edu + + + host + login.dtcc.edu + + + host + www.dtcc.edu + + + + + Delaware Today.com (partial) + + ruleset + + name + Delaware Today.com (partial) + rule + + from + ^http://(www\.)?delawaretoday\.com/(?=[\w-]+\.png|core/|_delaware_rad/|favicon\.ico|images/) + to + https://$1delawaretoday.com/ + + target + + + host + delawaretoday.com + + + host + www.delawaretoday.com + + + + + Delfogo Rx + + ruleset + + name + Delfogo Rx + rule + + from + ^https?://(?:www\.)?delfogo\.com/ + to + https://delfogo.com/ + + securecookie + + host + ^delfogo\.com$ + name + .+ + + target + + + host + delfogo.com + + + host + www.delfogo.com + + + + + Delft University of Technology (partial) + + ruleset + + name + Delft University of Technology (partial) + rule + + from + ^http://(intranet|netid|weblog)\.tudelft\.nl/ + to + https://$1.tudelft.nl/ + + securecookie + + host + ^\w+\.tudelft\.nl$ + name + .* + + target + + host + *.tudelft.nl + + + + Delicious + + ruleset + + name + Delicious + platform + mixedcontent + rule + + + from + ^https?://d\.me/ + to + https://delicious.com/ + + + from + ^http://((?:next|previous|www)\.)?delicious\.com/ + to + https://$1delicious.com/ + + + from + ^https?://(?:www\.|del\.)?icio\.us/ + to + https://delicious.com/ + + + from + ^https?://(?:api|images)\.del\.icio\.us/ + to + https://api.del.icio.us/ + + + from + ^https?://feeds\.delicious\.com/ + to + https://api.del.icio.us/ + + + from + ^http://d-static\.com/ + to + https://d-static.com/ + + + securecookie + + + host + ^(.+\.)?delicious\.com$ + name + .* + + + host + ^\.api\.del\.icio\.us$ + name + .* + + + target + + + host + d.me + + + host + delicious.com + + + host + www.delicious.com + + + host + *.www.delicious.com + + + host + d-static.com + + + host + icio.us + + + host + *.icio.us + + + host + api.del.icio.us + + + host + *.api.del.icio.us + + + + + Delicious Green Coffee.com + + ruleset + + name + Delicious Green Coffee.com + rule + + from + ^http://(www\.)?deliciousgreencoffee\.com/ + to + https://$1deliciousgreencoffee.com/ + + securecookie + + host + ^(?:w*\.)?deliciousgreencoffee\.com$ + name + .+ + + target + + + host + deliciousgreencoffee.com + + + host + *.deliciousgreencoffee.com + + + + + Delico.se + + ruleset + + name + Delico.se + rule + + + from + ^http://www\.delico\.se/ + to + https://www.delico.se/ + + + from + ^http://delico\.se/ + to + https://delico.se/ + + + target + + + host + www.delico.se + + + host + delico.se + + + + + Deliveras + + ruleset + + name + Deliveras + rule + + from + ^http://(www\.)?deliveras\.gr/ + to + https://$1deliveras.gr/ + + securecookie + + host + ^(www\.)?deliveras\.gr$ + name + .* + + target + + + host + deliveras.gr + + + host + www.deliveras.gr + + + + + Dell (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:\w\w|media)\.community\.dell\.com/(?![tT]hemes/) + + + pattern + ^http://partnerdirect\.dell\.com/(?!sites/channel/(?:Style\ Library/|\w\w_\w\w/pages/loginpage\.aspx)) + + + pattern + ^http://(www\.)?dell\.com/+(?!content/|favicon\.ico) + + + pattern + ^http://linux\.dell\.com/(?:wiki|$) + + + name + Dell (partial) + rule + + + from + ^http://(www(?:-cdn)?\.)?dell\.com/ + to + https://www.dell.com/ + + + from + ^http://(accessories|a?fcs|(?:chatpro|dellchat|cs)\.ap|b2bservices|(?:ec2|si|snp)\.cdn|\w\w\.community|ecomm2?|support\.euro|img|linux|mobility|partnerdirect|premier|signin|support\.software|sso|support(?:apj)?|pbar\.us|www1-cdn)\.dell\.com/ + to + https://$1.dell.com/ + + + from + ^http://accessories-cdn\.dell\.com/ + to + https://accessories.dell.com/ + + + from + ^http://media\.community\.dell\.com/ + to + https://en.community.dell.com/ + + + from + ^http://i\.dell\.com/ + to + https://a248.e.akamai.net/f/1058/5566/8/i.dell.com/ + + + from + ^http://(?:www\.)?ideastorm\.com/ + to + https://dellideas.secure.force.com/ + + + securecookie + + host + ^(?:accessories|ecomm|support\.euro|mobility|premier|signin|support(?:apj)?)\.dell\.com$ + name + .+ + + target + + + host + dell.com + + + host + *.dell.com + + + host + ideastorm.com + + + host + www.ideastorm.com + + + + + Dell.com (false MCB) + + ruleset + + name + Dell.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?dell\.com/(?!content/|favicon\.ico) + to + https://www.dell.com/ + + target + + + host + dell.com + + + host + www.dell.com + + + + + Delta.no + + ruleset + + name + Delta.no + platform + mixedcontent + rule + + from + ^http://(www\.)?delta\.no/ + to + https://www.delta.no/ + + target + + + host + www.delta.no + + + host + delta.no + + + + + DemWorks.org + + ruleset + + name + DemWorks.org + rule + + from + ^http://(www\.)?demworks\.org/ + to + https://$1demworks.org/ + + securecookie + + host + ^\.demworks\.org$ + name + .+ + + target + + + host + demworks.org + + + host + *.demworks.org + + + + + Demand Media (partial) + + ruleset + + name + Demand Media (partial) + platform + mixedcontent + rule + + + from + ^http://(rma|vs)\.demandmedia\.com/ + to + https://$1.demandmedia.com/ + + + from + ^http://((?:cdn-)?(?:staging|www)\.)?demandstudios\.com/ + to + https://$1demandstudios.com/ + + + from + ^http://(?:(?:cdn-)?www\.)?greencar\.com/ + to + https://www.greencar.com/ + + + securecookie + + + host + ^vs\.demandmedia\.com$ + name + .+ + + + host + ^(?:.*\.)?demandstudios\.com$ + name + .+ + + + host + ^(?:.*\.)?greencar\.com$ + name + .+ + + + target + + + host + *.demandmedia.com + + + host + demandstudios.com + + + host + *.demandstudios.com + + + host + greencar.com + + + host + *.greencar.com + + + + + Demand Progress + + ruleset + + name + Demand Progress + rule + + + from + ^http://(act\.|www\.)?demandprogress\.org/ + to + https://$1demandprogress.org/ + + + from + ^http://s3\.demandprogress\.org/ + to + https://s3.amazonaws.com/s3.demandprogress.org/ + + + securecookie + + host + ^(?:act)?\.demandprogress\.org$ + name + .* + + target + + + host + demandprogress.org + + + host + *.demandprogress.org + + + + + Demandbase + + ruleset + + name + Demandbase + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?demandbase\.com/ + to + https://www.demandbase.com/ + + + from + ^http://(api|demandbase|leads)\.demandbase\.com/ + to + https://$1.demandbase.com/ + + + securecookie + + host + ^(.*\.)?demandbase\.com$ + name + .* + + target + + + host + demandbase.com + + + host + *.demandbase.com + + + + + Demandware (partial) + + ruleset + + name + Demandware (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?demandware\.(?:com|net)/ + to + https://$1demandware.com/ + + + from + ^http://(labs|xchange)\.demandware\.com/ + to + https://$1.demandware.com/ + + + from + ^http://sits-pod(\d+)\.demandware\.net/ + to + https://sits-pod$1.demandware.net/ + + + securecookie + + host + ^(.*\.)?demandware\.com$ + name + .* + + target + + + host + demandware.com + + + host + *.demandware.com + + + host + demandware.net + + + host + *.demandware.net + + + + + Demandware.edgesuite.net (partial) + + ruleset + + name + Demandware.edgesuite.net (partial) + rule + + + from + ^http://demandware\.edgesuite\.net/aabl_prd/on/demandware\.static/ + to + https://labs.demandware.com/on/demandware.static/ + + + from + ^http://demandware\.edgesuite\.net/(?!aaei_prd/on/demandware\.static/Sites-Private-Site/-/default/v\d+/) + to + https://a248.e.akamai.net/f/demandware.edgesuite.net/ + + + target + + host + demandware.edgesuite.net + + + + DemocracyInAction + + ruleset + + name + DemocracyInAction + rule + + from + ^http://((?:caf|hq-org2|hq-salsa|org2|salsa|secure|www2?)\.)?democracyinaction\.org/ + to + https://$1democracyinaction.org/ + + securecookie + + host + ^(?:.*\.)?democracyinaction\.org$ + name + .+ + + target + + + host + democracyinaction.org + + + host + *.democracyinaction.org + + + + + DemocracyNow (partial) + + ruleset + + name + DemocracyNow (partial) + rule + + from + ^http://(www\.)?democracynow\.org/(?=(?:donate|images|resources|stylesheets)(?:$|[?/])) + to + https://$1democracynow.org/ + + target + + + host + democracynow.org + + + host + www.democracynow.org + + + + + Democrat and Chronicle (partial) + + ruleset + + name + Democrat and Chronicle (partial) + rule + + + from + ^http://(?:cmsimg\.|www\.)?democratandchronicle\.com/ + to + https://www.democratandchronicle.com/ + + + from + ^http://(classifieds|closings|meetthebabies|offers|roctoday)\.democratandchronicle\.com/ + to + https://$1.democratandchronicle.com/ + + + from + ^http://findnsave\.democratandchronicle\.com/static/ + to + https://democratchronicle.findnsave.com/static/ + + + from + ^http://localshopping\.democratandchronicle\.com/Content/ + to + https://localshopping.shoplocal.com/Content/ + + + securecookie + + host + .*\.democratandchronicle\.com$ + name + .+ + + target + + + host + democratandchronicle.com + + + host + *.democratandchronicle.com + + + + + Demonoid.ph + + ruleset + + name + Demonoid.ph + rule + + from + ^http://(www\.)?demonoid\.ph/ + to + https://www.demonoid.ph/ + + target + + + host + demonoid.ph + + + host + www.demonoid.ph + + + + + Denh.am + + ruleset + + name + Denh.am + rule + + from + ^http://([^/:@\.]+\.)?denh\.am/ + to + https://$1denh.am/ + + target + + + host + denh.am + + + host + *.denh.am + + + + + Denis Matsuev + + ruleset + + name + Denis Matsuev + rule + + from + ^http://(www\.)?matsuev\.com/ + to + https://$1matsuev.com/ + + securecookie + + host + ^\.matsuev\.com$ + name + .+ + + target + + + host + matsuev.com + + + host + *.matsuev.com + + + + + Department of Education + + ruleset + + name + Department of Education + rule + + from + ^http://(?:www\.)?education\.gov\.au/ + to + https://www.education.gov.au/ + + target + + + host + education.gov.au + + + host + *.education.gov.au + + + + + Department of Employment + + ruleset + + name + Department of Employment + rule + + from + ^http://((?:www|ministers)\.)?employment\.gov\.au/ + to + https://$1employment.gov.au/ + + target + + + host + employment.gov.au + + + host + *.employment.gov.au + + + + + Department of Foreign Affairs and Trade + + ruleset + + name + Department of Foreign Affairs and Trade + rule + + + from + ^http://(?:www\.)?dfat\.gov\.au/ + to + https://www.dfat.gov.au/ + + + from + ^http://(?:www\.)?orao\.dfat\.gov\.au/ + to + https://www.orao.dfat.gov.au/ + + + target + + + host + dfat.gov.au + + + host + *.dfat.gov.au + + + + + Department of Infrastructure and Regional Development + + ruleset + + name + Department of Infrastructure and Regional Development + rule + + from + ^http://(?:www\.)?infrastructure\.gov\.au/ + to + https://www.infrastructure.gov.au/ + + target + + + host + infrastructure.gov.au + + + host + *.infrastructure.gov.au + + + + + Department of the Prime Minister and Cabinet + + ruleset + + name + Department of the Prime Minister and Cabinet + rule + + from + ^http://(?:www\.)?dpmc\.gov\.au/ + to + https://www.dpmc.gov.au/ + + target + + + host + dpmc.gov.au + + + host + *.dpmc.gov.au + + + + + Dephormation.org.uk + + ruleset + + name + Dephormation.org.uk + rule + + from + ^http://(?:www\.)?dephormation\.org\.uk/ + to + https://www.dephormation.org.uk/ + + target + + + host + dephormation.org.uk + + + host + www.dephormation.org.uk + + + + + Deposit Files (partial) + + ruleset + + name + Deposit Files (partial) + rule + + + from + ^http://(static\d+\.|www\.)?depositfiles\.com/ + to + https://$1depositfiles.com/ + + + from + ^http://(ads|img3|ssl3)\.depositfiles\.com/ + to + https://ssl3.depositfiles.com/ + + + securecookie + + host + ^(.*\.)?depositfiles\.com$ + name + .* + + target + + + host + depositfiles.com + + + host + *.depositfiles.com + + + + + DepositProtection + + ruleset + + name + DepositProtection + rule + + from + ^http://(?:www\.)?depositprotection\.com/ + to + https://www.depositprotection.com/ + + securecookie + + host + ^(.+\.)?depositprotection\.com$ + name + .* + + target + + + host + depositprotection.com + + + host + www.depositprotection.com + + + + + Der Keiler.com (partial) + + ruleset + + name + Der Keiler.com (partial) + rule + + from + ^http://cdn\.derkeiler\.com/ + to + https://dk.cachefly.net/ + + target + + host + cdn.derkeiler.com + + + + Der Sächsische Datenschutzbeauftragte + + ruleset + + name + Der Sächsische Datenschutzbeauftragte + rule + + from + ^http://(www\.)?saechsdsb\.de/ + to + https://$1saechsdsb.de/ + + securecookie + + host + ^(?:www\.)?saechsdsb\.de$ + name + .+ + + target + + + host + saechsdsb.de + + + host + www.saechsdsb.de + + + + + Derpiboo.ru + + ruleset + + name + Derpiboo.ru + rule + + from + ^http://(www\.)?derpiboo\.ru/ + to + https://derpiboo.ru/ + + target + + + host + derpiboo.ru + + + host + www.derpiboo.ru + + + + + DersVerilir.net + + ruleset + + name + DersVerilir.net + rule + + + from + ^http://cdn\.dersver\.net/ + to + https://cdn.dersver.net/ + + + from + ^http://(www\.)?dersverilir\.net/ + to + https://$1dersverilir.net/ + + + securecookie + + host + ^\.dersverilir\.net$ + name + .+ + + target + + + host + cdn.dersver.net + + + host + dersverilir.net + + + host + *.dersverilir.net + + + + + Derwesten.de + + ruleset + + name + Derwesten.de + rule + + + from + ^http://(www\.)?derwesten\.de/ + to + https://www.derwesten.de/ + + + from + ^http://(files1|shop)\.derwesten\.de/ + to + https://$1.derwesten.de/ + + + target + + + host + *.derwesten.de + + + host + derwesten.de + + + + + Desert News (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?desertnews\.com/(?!css/|favicon\.ico|images/|img/|js/|logo\.gif|media/|misc/) + + + pattern + ^http://subscribe\.desertnews\.com/(?!css/|favicon\.ico|images/|script/) + + + name + Desert News (partial) + rule + + from + ^http://((?:static|subscribe|www)\.)?desertnews\.com/ + to + https://$1desertnews.com/ + + target + + + host + desertnews.com + + + host + *.desertnews.com + + + + + DesignAddict + + ruleset + + name + DesignAddict + rule + + from + ^http://(www\.)?(designaddict\.com|generationawake\.eu)/ + to + https://$1$2/ + + securecookie + + host + ^(?:.*\.)?(?:designaddict\.com|generationawake\.eu)$ + name + .+ + + target + + + host + designaddict.com + + + host + *.designaddict.com + + + host + generationawake.eu + + + host + *.generationawake.eu + + + + + Desire2learn.com + + ruleset + + name + Desire2learn.com + rule + + from + ^http://((?:community|lmscloud\.edev|pt\.valence|www)\.)?desire2learn\.com/ + to + https://$1desire2learn.com/ + + securecookie + + host + ^(?:.*\.)?desire2learn\.com$ + name + .+ + + target + + + host + desire2learn.com + + + host + *.desire2learn.com + + + + + Desk.com + + ruleset + + name + Desk.com + rule + + + from + ^http://(www\.)?assistly\.com/ + to + https://$1assistly.com/ + + + from + ^http://assets\d\.assistly\.com/ + to + https://d1epb5gzmg3005.cloudfront.net/ + + + from + ^http://webassets\.assistly\.com/ + to + https://dwan8j4vneaa7.cloudfront.net/ + + + from + ^http://(?:www\.)?desk\.com/ + to + https://www.desk.com/ + + + from + ^http://assets(?:[0-3]|0[1-4])?\.desk\.com/ + to + https://d218iqt4mo6adh.cloudfront.net/ + + + from + ^http://webassets\.desk\.com/ + to + https://d3e6ejlgd1t9v1.cloudfront.net/ + + + from + ^http://([\w-]+)\.desk\.com/ + to + https://$1.desk.com/ + + + target + + + host + assistly.com + + + host + *.assistly.com + + + host + desk.com + + + host + *.desk.com + + + + + Despora.de + + ruleset + + name + Despora.de + rule + + from + ^http://(www\.)?despora\.de/ + to + https://despora.de/ + + target + + + host + despora.de + + + host + www.despora.de + + + + + Desura (partial) + + ruleset + + name + Desura (partial) + rule + + from + ^http://s(?:ecure|tatic)\.desura\.com/ + to + https://secure.desura.com/ + + target + + host + *.desura.com + + + + Details (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?details\.com/(?!css/|images/|favicon\.ico$|sandbox/) + + name + Details (partial) + rule + + + from + ^http://(?:secure\.|www\.)?details\.com/ + to + https://secure.details.com/ + + + from + ^http://wp-poc\.details\.com/(?=(?:daily-details/)?(?:files/|wp-content/)|favicon\.ico) + to + https://wp-poc.details.com/ + + + target + + + host + details.com + + + host + *.details.com + + + + + Details.com (false MCB) + + ruleset + + name + Details.com (false MCB) + platform + mixedcontent + rule + + from + ^http://wp-poc\.details\.com/ + to + https://wp-poc.details.com/ + + target + + host + wp-poc.details.com + + + + Detectify + + ruleset + + name + Detectify + rule + + from + ^http://(?:www\.)?detectify\.com/ + to + https://detectify.com/ + + target + + + host + detectify.com + + + host + *.detectify.com + + + + + DeusM (partial) + + ruleset + + name + DeusM (partial) + rule + + + from + ^http://(payment\.)?deusm\.com/ + to + https://$1deusm.com/ + + + from + ^http://img\.deusm\.com/ + to + https://deusm.cachefly.net/ + + + securecookie + + host + ^.*\.deusm\.com$ + name + .* + + target + + + host + deusm.com + + + host + *.deusm.com + + + + + Deutsche BKK + + ruleset + + name + Deutsche BKK + rule + + from + ^http://(?:www\.)?deutschebkk\.de/ + to + https://www.deutschebkk.de/ + + target + + + host + www.deutschebkk.de + + + host + deutschebkk.de + + + + + Deutsche Börse Group + + ruleset + + name + Deutsche Börse Group + rule + + + from + ^https?://deutsche-boerse\.com/ + to + https://www.deutsche-boerse.com/ + + + from + ^http://([^/:@]+)?\.deutsche-boerse\.com/ + to + https://$1.deutsche-boerse.com/ + + + target + + + host + deutsche-boerse.com + + + host + www.deutsche-boerse.com + + + + + Deutsche Kreditbank + + ruleset + + name + Deutsche Kreditbank + rule + + from + ^http://([^/:@\.]+\.)?dkb\.de/ + to + https://$1dkb.de/ + + securecookie + + host + ^(?:banking|m|www)\.dkb\.de$ + name + .+ + + target + + + host + dkb.de + + + host + *.dkb.de + + + + + Deutsche Messe (partial) + + ruleset + + name + Deutsche Messe (partial) + rule + + from + ^http://files\.messe\.de/ + to + https://files.messe.de/ + + target + + host + files.messe.de + + + + Deutsche Telekom + + ruleset + + name + Deutsche Telekom + rule + + + from + ^https?://(?:www\.)?telekom\.(com|de)/ + to + https://www.telekom.$1/ + + + from + ^http://(accounts\.)?login\.idm\.telekom\.com/ + to + https://$1login.idm.telekom.com/ + + + from + ^http://((?:www\.)?forum|fotoservice|hilfe|konferenzen|kundencenter|mwl|videomeet)\.telekom\.de/ + to + https://$1.telekom.de/ + + + from + ^http://meinkonto\.telekom-dienste\.de/ + to + https://meinkonto.telekom-dienste.de/ + + + from + ^http://www\.wtpx-telekom\.com/ + to + https://www.wtpx-telekom.com/ + + + securecookie + + + host + ^(?:accounts\.login)?\.idm\.telekom\.com$ + name + .+ + + + host + ^(?:(?:www\.)?forum|fotoservice|\.?hilfe|konferenzen|kundencenter|mwl|www)\.telekom\.de$ + name + .+ + + + host + ^meinkonto\.telekom-dienste\.de$ + name + .+ + + + host + ^www\.wtpx-telekom\.com$ + name + .+ + + + target + + + host + telekom.com + + + host + *.telekom.com + + + host + telekom.de + + + host + www.telekom.de + + + host + www.wtpx-telekom.com + + + + + Deutscher Bundestag (partial) + + ruleset + + name + Deutscher Bundestag (partial) + rule + + from + ^http://((?:datenaustausch|forum|suche|www)\.)?bundestag\.de/ + to + https://$1bundestag.de/ + + securecookie + + host + ^.+\.bundestag\.de$ + name + .+ + + target + + + host + bundestag.de + + + host + *.bundestag.de + + + + + Deutsches Forschungsnetz + + ruleset + + name + Deutsches Forschungsnetz + rule + + + from + ^https?://dfn\.de/ + to + https://www.dfn.de/ + + + from + ^http://([^/:@]+)?\.dfn\.de/ + to + https://$1.dfn.de/ + + + securecookie + + host + ^(.*\.)?dfn\.de$ + name + .+ + + target + + + host + dfn.de + + + host + *.dfn.de + + + + + Devolo.com + + ruleset + + name + Devolo.com + rule + + from + ^http://(www\.)?devolo\.com/ + to + https://$1devolo.com/ + + target + + + host + devolo.com + + + host + www.devolo.com + + + + + DevsBuild.It (partial) + + ruleset + + name + DevsBuild.It (partial) + rule + + from + ^https?://assets\.devsbuild\.it/ + to + https://dwr712tf70ilz.cloudfront.net/ + + target + + host + assets.devsbuild.it + + + + Devstructure + + ruleset + + name + Devstructure + platform + mixedcontent + rule + + from + ^http://(www\.)?devstructure\.com/ + to + https://devstructure.com/ + + target + + + host + devstructure.com + + + host + www.devstructure.com + + + + + Dezeen.com (partial) + + ruleset + + name + Dezeen.com (partial) + rule + + from + ^http://static\.dezeen\.com/ + to + https://static.dezeen.com/ + + target + + host + static.dezeen.com + + + + Dezert Depot + + ruleset + + name + Dezert Depot + rule + + from + ^http://(www\.)?dezertdepot\.com/ + to + https://$1dezertdepot.com/ + + securecookie + + host + ^(?:.*\.)?dezertdepot\.com$ + name + .+ + + target + + + host + dezertdepot.com + + + host + *.dezertdepot.com + + + + + Dfri.se + + ruleset + + name + Dfri.se + rule + + from + ^http://(?:www\.)?dfri\.se/ + to + https://www.dfri.se/ + + target + + + host + dfri.se + + + host + www.dfri.se + + + + + DiaGrid + + ruleset + + name + DiaGrid + rule + + from + ^https?://(?:www\.)?dia-?grid\.org/ + to + https://diagrid.org/ + + securecookie + + host + ^diagrid\.org$ + name + .+ + + target + + + host + diagrid.org + + + host + www.diagrid.org + + + host + dia-grid.org + + + host + www.dia-grid.org + + + + + Diagonalperiodico.net + + ruleset + + name + Diagonalperiodico.net + platform + mixedcontent + rule + + from + ^http://(?:www\.)?diagonalperiodico\.net/ + to + https://www.diagonalperiodico.net/ + + target + + + host + diagonalperiodico.net + + + host + www.diagonalperiodico.net + + + + + Dial Direct + + ruleset + + name + Dial Direct + rule + + + from + ^https?://(?:www\.)?dialdirect\.co\.uk/ + to + https://www.dialdirect.co.uk/ + + + from + ^https?://(?:www\.)?insure-systems\.co\.uk/ + to + https://www.insure-systems.co.uk/ + + + securecookie + + host + ^\.?www\.dialdirect\.co\.uk$ + name + .+ + + target + + + host + dialdirect.co.uk + + + host + www.dialdirect.co.uk + + + host + *.www.dialdirect.co.uk + + + host + insure-systems.co.uk + + + host + www.insure-systems.co.uk + + + + + Diasp.de + + ruleset + + name + Diasp.de + rule + + from + ^http://(www\.)?diasp\.de/ + to + https://diasp.de/ + + target + + + host + diasp.de + + + host + www.diasp.de + + + + + Diasp.eu + + ruleset + + name + Diasp.eu + rule + + from + ^http://(www\.)?diasp\.eu/ + to + https://diasp.eu/ + + target + + + host + diasp.eu + + + host + www.diasp.eu + + + + + Diasp.org + + ruleset + + name + Diasp.org + rule + + from + ^http://(?:www\.)?diasp\.org/ + to + https://diasp.org/ + + target + + + host + diasp.org + + + host + www.diasp.org + + + + + Diaspora + + ruleset + + name + Diaspora + rule + + + from + ^http://((?:blog|planet|wiki|www)\.)?diasporafoundation\.org/ + to + https://$1diasporafoundation.org/ + + + from + ^http://(?:www\.)?diasporaproject\.org/.* + to + https://diasporafoundation.org/ + + + from + ^http://(www\.)?joindiaspora\.com/ + to + https://$1joindiaspora.com/ + + + securecookie + + + host + ^(?:\.|blog\.)?diasporafoundation\.org$ + name + .+ + + + host + ^(?:www\.)?joindiaspora\.com$ + name + .+ + + + target + + + host + diasporafoundation.org + + + host + *.diasporafoundation.org + + + host + diasporaproject.org + + + host + www.diasporaproject.org + + + host + joindiaspora.com + + + host + www.joindiaspora.com + + + + + DiasporaBR.com.br + + ruleset + + name + DiasporaBR.com.br + rule + + from + ^http://(www\.)?diasporabr\.com\.br/ + to + https://$1diasporabr.com.br/ + + target + + + host + diasporabr.com.br + + + host + www.diasporabr.com.br + + + + + Dice (false MCB) + + ruleset + + name + Dice (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?dice\.com/ + to + https://www.dice.com/ + + target + + + host + dice.com + + + host + www.dice.com + + + + + Dice (partial) + + ruleset + + name + Dice (partial) + rule + + + from + ^http://(?:www\.)?dice\.com/(?=assets/|content/) + to + https://www.dice.com/ + + + from + ^http://(assets|employer|images|secure)\.dice\.com/ + to + https://$1.dice.com/ + + + from + ^http://cdn\.dice\.com/ + to + https://d1i4601q19kpjz.cloudfront.net/ + + + target + + + host + dice.com + + + host + *.dice.com + + + + + Die-Linke.de + + ruleset + + name + Die-Linke.de + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?die-linke\.de/ + to + https://www.die-linke.de/ + + + from + ^http://(?:www\.)?linksmail\.de/ + to + https://www.linksmail.de/ + + + target + + + host + die-linke.de + + + host + www.die-linke.de + + + host + linksmail.de + + + host + www.linksmail.de + + + + + Die.net + + ruleset + + name + Die.net + rule + + from + ^http://(?:www\.)?die\.net/ + to + https://www.die.net/ + + target + + + host + die.net + + + host + www.die.net + + + + + Diffuse.ca + + ruleset + + name + Diffuse.ca + rule + + from + ^http://(www\.)?diffuse\.ca/ + to + https://$1diffuse.ca/ + + target + + + host + diffuse.ca + + + host + www.diffuse.ca + + + + + Digg (partial) + + ruleset + + name + Digg (partial) + rule + + from + ^http://((?:static|widgets|www)\.)?digg\.com/ + to + https://$1digg.com/ + + securecookie + + host + ^\.?digg\.com$ + name + .+ + + target + + + host + digg.com + + + host + *.digg.com + + + + + Digi-Key (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?digikey\.com/(?:product-(?:detail|search)|scripts/dksearch) + + name + Digi-Key (partial) + rule + + + from + ^https?://digikey\.com/ + to + https://www.digikey.com/ + + + from + ^http://(digikeytest|dkc\d|form|media|ordering(?:test)?|punchout(?:test)?|www)\.digikey\.com/ + to + https://$1.digikey.com/ + + + securecookie + + host + ^(?!www\.).+\.digikey\.com$ + name + .+ + + target + + + host + digikey.com + + + host + *.digikey.com + + + + + Digi.hu + + ruleset + + name + Digi.hu + rule + + from + ^http://(ugyfelkapu\.|webmail\.|ox\.)?digi\.hu/ + to + https://$1digi.hu/ + + securecookie + + host + ^\.?digi\.hu$ + name + .+ + + target + + + host + ugyfelkapu.digi.hu + + + host + webmail.digi.hu + + + host + ox.digi.hu + + + host + digi.hu + + + + + Digi77.com + + ruleset + + name + Digi77.com + rule + + from + ^http://(www\.)?digi77\.com/ + to + https://$1digi77.com/ + + target + + + host + digi77.com + + + host + www.digi77.com + + + + + DigiBib.net + + ruleset + + name + DigiBib.net + rule + + from + ^http://(m|www)\.digibib\.net/ + to + https://$1.digibib.net/ + + target + + host + *.digibib.net + + + + DigiCert + + ruleset + + name + DigiCert + rule + + from + ^http://((?:api|blog|content|edge[1-4]|login|www\.origin|www)\.)?digicert\.com/ + to + https://$1digicert.com/ + + securecookie + + host + ^.*\.digicert\.com$ + name + .* + + target + + + host + digicert.com + + + host + *.digicert.com + + + + + Digia (partial) + + ruleset + + name + Digia (partial) + rule + + from + ^http://(blog\.qt\.|qt\.|www\.)?digia\.com/ + to + https://$1digia.com/ + + securecookie + + host + ^(?:.+\.)?digia\.com$ + name + .+ + + target + + + host + digia.com + + + host + *.digia.com + + + host + blog.qt.digia.com + + + + + Digiday.com (false MCB) + + ruleset + + name + Digiday.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?digiday\.com/ + to + https://$1digiday.com/ + + securecookie + + host + ^(?:www\.)?digiday\.com$ + name + .+ + + target + + + host + digiday.com + + + host + www.digiday.com + + + + + Digitab Portals + + ruleset + + name + Digitab Portals + rule + + from + ^http://(?:www\.)?digitabportals\.com/ + to + https://www.digitabportals.com/ + + securecookie + + host + ^www\.digitabportals\.com$ + name + .* + + target + + + host + digitabportals.com + + + host + www.digitabportals.com + + + + + Digital Bond + + ruleset + + name + Digital Bond + rule + + + from + ^http://(www\.)?digitalbond\.com/ + to + https://$1digitalbond.com/ + + + from + ^https?://digibond\.wpengine\.netdna-cdn\.com/ + to + https://www.digitalbond.com/ + + + target + + + host + digitalbond.com + + + host + www.digitalbond.com + + + host + digibond.wpengine.netdna-cdn.com + + + + + Digital Defenders.org + + ruleset + + name + Digital Defenders.org + rule + + from + ^http://(?:www\.)?digitaldefenders\.org/ + to + https://digitaldefenders.org/ + + target + + + host + digitaldefenders.org + + + host + www.digitaldefenders.org + + + + + Digital Dollhouse.com (false MCB) + + ruleset + + name + Digital Dollhouse.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?digitaldollhouse\.com/ + to + https://$1digitaldollhouse.com/ + + securecookie + + host + ^\.digitaldollhouse\.com$ + name + .+ + + target + + + host + digitaldollhouse.com + + + host + *.digitaldollhouse.com + + + + + Digital Networks UK (partial) + + ruleset + + name + Digital Networks UK (partial) + rule + + + from + ^http://(?:www\.)?dnuk\.com/(_elements|images)/ + to + https://secure.dnuk.com/$1/ + + + from + ^http://secure\.dnuk\.com/ + to + https://secure.dnuk.com/ + + + securecookie + + host + ^secure\.dnuk\.com$ + name + .* + + target + + + host + dnuk.com + + + host + *.dnuk.com + + + + + Digital News Agency.com + + ruleset + + name + Digital News Agency.com + rule + + + from + ^http://(?:www\.)?digitalnewsagency\.com/ + to + https://www.digitalnewsagency.com/ + + + from + ^http://dna-bucket-dna\.cf\.rawcdn\.com/ + to + https://df7r7v78mcbtc.cloudfront.net/ + + + securecookie + + host + ^\.digitalnewsagency\.com$ + name + .+ + + target + + + host + digitalnewsagency.com + + + host + *.digitalnewsagency.com + + + host + dna-bucket-dna.cf.rawcdn.com + + + + + Digital Ocean.com + + ruleset + + name + Digital Ocean.com + rule + + from + ^http://((?:api|cloud|developers|status|www)\.)?digitalocean\.com/ + to + https://$1digitalocean.com/ + + securecookie + + host + ^(?:cloud|status|www)?\.digitalocean\.com$ + name + .+ + + target + + + host + digitalocean.com + + + host + *.digitalocean.com + + + + + Digital Pacific.com.au + + ruleset + + name + Digital Pacific.com.au + rule + + from + ^http://(onepanel\.|www\.)?digitalpacific\.com\.au/ + to + https://$1digitalpacific.com.au/ + + securecookie + + host + ^onepanel\.digitalpacific\.com\.au$ + name + .+ + + target + + + host + digitalpacific.com.au + + + host + *.digitalpacific.com.au + + + + + Digital Photography Review (partial) + + ruleset + + name + Digital Photography Review (partial) + rule + + + from + ^https?://(?:www\.)?dpreview\.com/(challenges/[iI]mages/|members/register|products_data/|resources/) + to + https://www.dpreview.com/$1 + + + from + ^http://connect\.dpreview\.com/products_data/ + to + https://connect.dpreview.com/products_data/ + + + from + ^https?://(?:a|\d+\.static)\.(?:img-)?dpreview\.com/ + to + https://d199bk7kirt65b.cloudfront.net/ + + + from + ^https?://g[1-4]\.img-dpreview\.com/ + to + https://d3ojfab0q2dwum.cloudfront.net/ + + + target + + + host + dpreview.com + + + host + *.dpreview.com + + + host + *.img-dpreview.com + + + host + *.static.img-dpreview.com + + + + + Digital Point Solutions (partial) + + ruleset + + name + Digital Point Solutions (partial) + rule + + from + ^http://(forums\.|www\.)?digitalpoint\.com/ + to + https://$1digitalpoint.com/ + + securecookie + + host + ^\.digitalpoint\.com$ + name + .+ + + target + + + host + digitalpoint.com + + + host + *.digitalpoint.com + + + + + Digital River (partial) + + ruleset + + exclusion + + pattern + ^http://corporate\.digitalriver\.com/(?!DRHM/) + + name + Digital River (partial) + rule + + + from + ^http://cm\.commerce5\.com/ + to + https://cm.commerce5.com/ + + + from + ^http://((?:[\w+-]+\.cfspx|corporate|developers|gc|\w+\.img|store|www)\.)?digitalriver\.com/ + to + https://$1digitalriver.com/ + + + from + ^http://info\.digitalriver\.com/(cs|image|j|r)s/ + to + https://na-sj03.marketo.com/$1s/ + + + from + ^http://(\w+)\.img\.digitalrivercontent\.net/ + to + https://$1.img.digitalrivercontent.net/ + + + from + ^http://cp\.element5\.com/ + to + https://cp.element5.com/ + + + from + ^http://(www\.)?findmyorder\.com/ + to + https://$1findmyorder.com/ + + + from + ^http://([\w-]+)\.frcanalytics\.com/ + to + https://$1.frcanalytics.com/ + + + from + ^http://reservoir\.marketstudio\.net/ + to + https://reservoir.marketstudio.net/ + + + securecookie + + + host + ^\.digitalriver\.com$ + name + ^utag_\w+$ + + + host + ^(?:\.?developers|gc|store)\.digitalriver\.com$ + name + .+ + + + host + ^(?:.*\.)?(?:commerce5|findmyorder)\.com$ + name + .+ + + + target + + + host + cm.commerce5.com + + + host + *.digitalriver.com + + + host + *.img.digitalrivercontent.net + + + host + cp.element5.com + + + host + findmyorder.com + + + host + www.findmyorder.com + + + host + *.frcanalytics.com + + + host + reservoir.marketstudio.net + + + + + Digital Shelf Space (partial) + + ruleset + + name + Digital Shelf Space (partial) + rule + + from + ^http://cdn\.mypypeline\.com/ + to + https://cdn.mypypeline.com/ + + target + + host + cdn.mypypeline.com + + + + Digital Trends.com (partial) + + ruleset + + name + Digital Trends.com (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?digitaltrends\.com/ + to + https://digitaltrends.com/ + + target + + + host + digitaltrends.com + + + host + *.digitaltrends.com + + + + + Digital Window (partial) + + ruleset + + name + Digital Window (partial) + rule + + + from + ^http://(darwin\.|images\.|www\.)?affiliatewindow\.com/ + to + https://$1affiliatewindow.com/ + + + from + ^http://(?:www\.)?awin1\.com/ + to + https://www.awin1.com/ + + + securecookie + + host + ^(.*\.)?a(ffiliatewindow|win)\.com$ + name + .* + + target + + + host + affiliatewindow.com + + + host + *.affiliatewindow.com + + + host + awin1.com + + + host + *.awin1.com + + + + + Digital-Future.it + + ruleset + + name + Digital-Future.it + rule + + from + ^http://(?:www\.)?digital-future\.it/ + to + https://digital-future.it/ + + target + + + host + digital-future.it + + + host + www.digital-future.it + + + + + DigitalForensicsMagazine + + ruleset + + name + DigitalForensicsMagazine + rule + + + from + ^http://digitalforensicsmagazine\.com/ + to + https://digitalforensicsmagazine.com/ + + + from + ^http://(www)\.digitalforensicsmagazine\.com/ + to + https://$1.digitalforensicsmagazine.com/ + + + securecookie + + host + ^(?:.+\.)?digitalforensicsmagazine\.com$ + name + .* + + target + + + host + digitalforensicsmagazine.com + + + host + www.digitalforensicsmagazine.com + + + + + Digitalcourage.de + + ruleset + + name + Digitalcourage.de + rule + + from + ^http://(shop\.|www\.)?digitalcourage\.de/ + to + https://$1digitalcourage.de/ + + securecookie + + host + ^\.shop\.digitalcourage\.de$ + name + .+ + + target + + + host + digitalcourage.de + + + host + *.digitalcourage.de + + + + + Digitale Diathek (partial) + + ruleset + + name + Digitale Diathek (partial) + rule + + from + ^http://(fotomarburg|gta|khist|migration|normdaten|tools|uzh)\.digitale-diathek\.net/ + to + https://$1.digitale-diathek.net/ + + target + + host + *.digitale-diathek.net + + + + Digitalegesellschaft + + ruleset + + name + Digitalegesellschaft + rule + + from + ^http://(?:www\.)?digitalegesellschaft\.de/ + to + https://digitalegesellschaft.de/ + + securecookie + + host + ^digitalegesellschaft\.de$ + name + .+ + + target + + + host + digitalegesellschaft.de + + + host + www.digitalegesellschaft.de + + + + + Digitaliseringsstyrelsen + + ruleset + + name + Digitaliseringsstyrelsen + rule + + from + ^http://login\.sikker-adgang\.dk/ + to + https://login.sikker-adgang.dk/ + + securecookie + + host + ^(login)?\.sikker-adgang\.dk$ + name + .* + + target + + host + *.sikker-adgang.dk + + + + Digitaria (partial) + + ruleset + + name + Digitaria (partial) + rule + + + from + ^http://redmine\.digitaria\.com/ + to + https://redmine.digitaria.com/ + + + from + ^http://(digi|www)\.insightmgr\.com/ + to + https://$1.insightmgr.com/ + + + securecookie + + + host + ^redmine\.digitaria\.com$ + name + .+ + + + host + ^.+\.insightmgr\.com$ + name + .+ + + + target + + + host + redmine.digitaria.com + + + host + *.insightmgr.com + + + host + *.digi.insightmgr.com + + + host + *.www.insightmgr.com + + + + + Digitec.ch + + ruleset + + name + Digitec.ch + rule + + from + ^http://(?:www\.)?digitec\.ch/ + to + https://www.digitec.ch/ + + securecookie + + host + ^(.*\.)?digitec\.ch$ + name + .* + + target + + + host + www.digitec.ch + + + host + digitec.ch + + + + + Digium (partial) + + ruleset + + exclusion + + pattern + ^http://www\.digium\.com/en/(?:$|\?) + + name + Digium (partial) + rule + + + from + ^http://digium\.com/ + to + https://www.digium.com/ + + + from + ^http://(login|store|www)\.digium\.com/ + to + https://$1.digium.com/ + + + securecookie + + host + ^login\.digium\.com$ + name + .+ + + target + + + host + digium.com + + + host + *.digium.com + + + + + DigiumEnterprise.com + + ruleset + + name + DigiumEnterprise.com + rule + + from + ^http://digiumenterprise\.com/answer/ + to + https://digiumenterprise.com/answer/ + + target + + host + digiumenterprise.com + + + + Digiweb (partial) + + ruleset + + name + Digiweb (partial) + rule + + + from + ^http://(manage\.hosting|secureorders)\.digiweb\.ie/ + to + https://$1.digiweb.ie/ + + + from + ^https?://(?:www\.)?host\.ie/ + to + https://host.ie/ + + + from + ^http://cp\.host\.ie/ + to + https://cp.host.ie/ + + + from + ^https?://(?:www\.)?(?:novera|promote|register)\.ie/ + to + https://register.ie/ + + + from + ^http://ncm\.novarait\.com/ + to + https://ncm.novarait.com/ + + + securecookie + + + host + ^(?:manage\.hosting|secureorders)\.digiweb\.ie$ + name + .* + + + host + ^(?:host|register)\.ie$ + name + .* + + + host + ^ncm\.novarait\.com$ + name + .* + + + target + + + host + manage.hosting.digiweb.ie + + + host + secureorders.digiweb.ie + + + host + host.ie + + + host + *.host.ie + + + host + novara.ie + + + host + www.novara.ie + + + host + ncm.novarait.com + + + host + promote.ie + + + host + www.promote.ie + + + host + register.ie + + + host + www.register.ie + + + + + Dignity in Dying.org.uk (partial) + + ruleset + + name + Dignity in Dying.org.uk (partial) + rule + + from + ^http://(www\.)?dignityindying\.org\.uk/(?=favicon\.ico|support-us(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1dignityindying.org.uk/ + + target + + + host + dignityindying.org.uk + + + host + www.dignityindying.org.uk + + + + + Diigo + + ruleset + + name + Diigo + rule + + from + ^http://(www\.)?diigo\.com/ + to + https://$1diigo.com/ + + securecookie + + host + ^\.diigo\.com$ + name + .+ + + target + + + host + diigo.com + + + host + *.diigo.com + + + + + Dikkenberg.net + + ruleset + + name + Dikkenberg.net + rule + + from + ^http://(www\.)?dikkenberg\.net/ + to + https://$1dikkenberg.net/ + + securecookie + + host + ^(?:www\.)?dikkenberg\.net$ + name + .+ + + target + + + host + dikkenberg.net + + + host + www.dikkenberg.net + + + + + DilbertFiles.org (partial) + + ruleset + + name + DilbertFiles.org (partial) + platform + mixedcontent + rule + + from + ^http://secure\.dilbertfiles\.com/ + to + https://secure.dilbertfiles.com/ + + securecookie + + host + ^secure\.dilbertfiles\.com$ + name + .+ + + target + + host + secure.dilbertfiles.com + + + + Dilcdn.com + + ruleset + + name + Dilcdn.com + rule + + from + ^http://a\.dilcdn\.com/ + to + https://a.dilcdn.com/ + + target + + host + a.dilcdn.com + + + + Direct Line.com + + ruleset + + name + Direct Line.com + rule + + + from + ^http://(?:uk3\.|www\.)?directline\.com/ + to + https://uk3.directline.com/ + + + from + ^http://amendsonline\.directline\.com/ + to + https://amendsonline.directline.com/ + + + from + ^http://(?:faq\.directline|directline\.metafaq)\.com/ + to + https://directline.metafaq.com/ + + + target + + + host + directline.com + + + host + *.directline.com + + + host + directline.metafaq.com + + + + + Direct Marketing Association + + ruleset + + name + Direct Marketing Association + rule + + from + ^http://(www\.)?dma\.org\.uk/ + to + https://$1dma.org.uk/ + + securecookie + + host + ^(.*\.)?dma\.org\.uk$ + name + .* + + target + + + host + dma.org.uk + + + host + *.dma.org.uk + + + + + Direct123.fi + + ruleset + + name + Direct123.fi + rule + + from + ^http://(?:www\.)?direct123\.fi/ + to + https://www.direct123.fi/ + + securecookie + + host + ^www\.direct123\.fi$ + name + .+ + + target + + + host + direct123.fi + + + host + www.direct123.fi + + + + + DirectSpace + + ruleset + + name + DirectSpace + platform + mixedcontent + rule + + from + ^http://(www\.)?directspace\.net/ + to + https://directspace.net/ + + target + + + host + directspace.net + + + host + www.directspace.net + + + + + Directbox + + ruleset + + name + Directbox + rule + + + from + ^http://(?:www\.)?directbox\.(?:at|biz|ch|com|de|eu|info|net|tv)/ + to + https://www.directbox.com/ + + + from + ^http://neu\.directbox\.com/ + to + https://neu.directbox.com/ + + + target + + + host + directbox.* + + + host + www.directbox.at + + + host + www.directbox.biz + + + host + www.directbox.ch + + + host + www.directbox.com + + + host + www.directbox.de + + + host + www.directbox.eu + + + host + www.directbox.info + + + host + www.directbox.net + + + host + www.directbox.tv + + + host + neu.directbox.com + + + + + Directgov (partial) + + ruleset + + name + Directgov (partial) + rule + + from + ^http://submissions\.epetitions\.direct\.gov\.uk/ + to + https://submissions.epetitions.direct.gov.uk/ + + securecookie + + host + ^.*\.epetitions\.direct\.gov\.uk$ + name + .* + + target + + host + *.epetitions.direct.gov.uk + + + + Dirxion + + ruleset + + name + Dirxion + rule + + + from + ^https?://(?:www\.)?dirxion\.com/ + to + https://www.dirxion.com/ + + + from + ^http://blogs\.dirxion\.com/ + to + https://blogs.dirxion.com/ + + + securecookie + + host + ^.*\.dirxion\.com$ + name + .+ + + target + + + host + dirxion.com + + + host + *.dirxion.com + + + + + Disability.gov + + ruleset + + name + Disability.gov + rule + + from + ^http://(www\.)?disability\.gov/ + to + https://www.disability.gov/ + + securecookie + + host + ^((www)?\.)?disability\.gov$ + name + .+ + + target + + + host + disability.gov + + + host + www.disability.gov + + + + + Discogs (partial) + + ruleset + + name + Discogs (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?discogs\.com/((?:css|developers|users|images?)/|help$) + to + https://www.discogs.com/$1 + + + from + ^https?://images\.discogsmp3\.com/ + to + https://images.juno.co.uk/ + + + from + ^https?://s\.dsimg\.com/ + to + https://www.discogs.com/ + + + from + ^http://s\.pixogs\.com/ + to + https://s.pixogs.com/ + + + target + + + host + discogs.com + + + host + www.discogs.com + + + host + images.discogsmp3.com + + + host + s.dsimg.com + + + host + s.pixogs.com + + + + + Disconnect.me + + ruleset + + name + Disconnect.me + rule + + from + ^http://((?:blog|forum|www)\.)?disconnect\.me/ + to + https://$1disconnect.me/ + + securecookie + + host + ^blog\.disconnect\.me$ + name + .+ + + target + + + host + disconnect.me + + + host + *.disconnect.me + + + + + DiscountTheatre.com + + ruleset + + name + DiscountTheatre.com + rule + + from + ^http://(?:www\.)?discounttheatre\.com/ + to + https://www.discounttheatre.com/ + + target + + + host + discounttheatre.com + + + host + www.discounttheatre.com + + + + + Discourse.org (partial) + + ruleset + + name + Discourse.org (partial) + rule + + + from + ^http://(meta|payments)\.discourse\.org/ + to + https://$1.discourse.org/ + + + from + ^http://cdn\.discourse\.org/ + to + https://try-discourse.global.ssl.fastly.net/ + + + target + + host + *.discourse.org + + + + Discover Card.com + + ruleset + + name + Discover Card.com + rule + + from + ^http://((?:m|mst0\.m|qsys\.m|mapi|search|www)\.)?discovercard\.com/ + to + https://$1discovercard.com/ + + target + + + host + discovercard.com + + + host + *.discovercard.com + + + + + Discover Magazine (partial) + + ruleset + + name + Discover Magazine (partial) + rule + + + from + ^http://(blogs|secure)\.discovermagazine\.com/ + to + https://$1.discovermagazine.com/ + + + from + ^https?://cdn\.media\.discovermagazine\.com/ + to + https://d2lcm6dnbncm78.cloudfront.net/ + + + from + ^https?://subscribe\.discovermagazine\.com/(?:digital/|\?.*)? + to + https://secure.discovermagazine.com/pubs/AG/DSD/DSDDCR_Zinio_Subscription-FreeGift-update2.jsp?cds_page_id=122337&cds_mag_code=DSD&cds_response_key=IF28R1 + + + securecookie + + host + ^(?:blogs|secure)\.discovermagazine\.com$ + name + .+ + + target + + + host + *.discovermagazine.com + + + host + cdn.media.discovermagazine.com + + + + + Discover Merchants.com + + ruleset + + name + Discover Merchants.com + rule + + from + ^http://(www\.)?discovermerchants\.com/ + to + https://$1discovermerchants.com/ + + target + + + host + discovermerchants.com + + + host + *.discovermerchants.com + + + + + Discover Network.com (partial) + + ruleset + + name + Discover Network.com (partial) + rule + + from + ^http://((?:cashlocator|servicecenter|www)\.)?discovernetwork\.com/ + to + https://$1discovernetwork.com/ + + target + + + host + discovernetwork.com + + + host + *.discovernetwork.com + + + + + Discover Signage.com + + ruleset + + name + Discover Signage.com + rule + + from + ^http://(www\.)?discoversignage\.com/ + to + https://$1discoversignage.com/ + + target + + + host + discoversignage.com + + + host + *.discoversignage.com + + + + + Discover.com + + ruleset + + name + Discover.com + rule + + from + ^http://((?:m|search|www)\.)?discover\.com/ + to + https://$1discover.com/ + + target + + + host + discover.com + + + host + *.discover.com + + + + + Discovery Communications (partial) + + ruleset + + name + Discovery Communications (partial) + rule + + + from + ^http://netstorage\.discovery\.com/ + to + https://a248.e.akamai.net/f/681/7401/5m/netstorage.discovery.com/ + + + from + ^http://(?:secure)?store\.discovery\.com/ + to + https://securestore.discovery.com/ + + + target + + host + *.discovery.com + + + + Discovery Place + + ruleset + + name + Discovery Place + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?discoveryplace\.org/ + to + https://www.discoveryplace.org/ + + + from + ^http://(?:www\.)?discoveryplacekids\.org/ + to + https://www.discoveryplacekids.org/ + + + target + + + host + discoveryplace.org + + + host + www.discoveryplace.org + + + host + discoveryplacekids.org + + + host + www.discoveryplacekids.org + + + + + Discovery.org + + ruleset + + name + Discovery.org + rule + + from + ^http://(www\.)?discovery\.org/ + to + https://$1discovery.org/ + + target + + + host + discovery.org + + + host + www.discovery.org + + + + + Diskusjon + + ruleset + + name + Diskusjon + platform + mixedcontent + rule + + + from + ^http://diskusjon\.no/ + to + https://diskusjon.no/ + + + from + ^http://www\.diskusjon\.no/ + to + https://www.diskusjon.no/ + + + target + + + host + diskusjon.no + + + host + www.diskusjon.no + + + + + Disney International.com (partial) + + ruleset + + name + Disney International.com (partial) + rule + + + from + ^http://analytics\.disneyinternational\.com/ + to + https://analytics.disneyinternational.com/ + + + from + ^http://navbar\.disneyinternational\.com/ + to + https://a248.e.akamai.net/f/1304/621/5m/navbar.disneyinternational.com/ + + + target + + host + *.disneyinternational.com + + + + Disney.co.jp (partial) + + ruleset + + name + Disney.co.jp (partial) + rule + + from + ^http://secure\.disney\.co\.jp/ + to + https://secure.disney.co.jp/ + + target + + host + secure.disney.co.jp + + + + Distil (partial) + + ruleset + + name + Distil (partial) + rule + + from + ^http://(portal\.|www\.)?distil\.it/ + to + https://$1distil.it/ + + securecookie + + host + ^portal\.distil\.it$ + name + .+ + + target + + + host + distil.it + + + host + *.distil.it + + + + + Distraction.gov + + ruleset + + name + Distraction.gov + rule + + from + ^https?://(?:www\.)?distraction\.gov/ + to + https://www.distraction.gov/ + + target + + + host + distraction.gov + + + host + www.distraction.gov + + + + + Ditt Distrikt + + ruleset + + name + Ditt Distrikt + rule + + from + ^http://(?:www\.)?dittdistrikt\.no/ + to + https://www.dittdistrikt.no/ + + target + + + host + dittdistrikt.no + + + host + www.dittdistrikt.no + + + + + DivItUp.com + + ruleset + + name + DivItUp.com + rule + + from + ^http://(www\.)?divitup\.com/ + to + https://$1divitup.com/ + + securecookie + + host + ^www\.divitup\.com$ + name + .+ + + target + + + host + divitup.com + + + host + www.divitup.com + + + + + Divide (partial) + + ruleset + + name + Divide (partial) + rule + + + from + ^http://(api|get|my)\.divide\.com/ + to + https://$1.divide.com/ + + + from + ^http://blog\.divide\.com/wp-(content|includes)/ + to + https://s164796.gridserver.com/wp-$1/ + + + from + ^http://support\.divide\.com/(generated|system)/ + to + https://assets.zendesk.com/$1/ + + + target + + host + *.divide.com + + + + Divshot + + ruleset + + name + Divshot + rule + + + from + ^http://(app\.|www\.)?divshot\.com/ + to + https://$1divshot.com/ + + + from + ^https?://a1\.divshot\.com/ + to + https://djyhxgczejc94.cloudfront.net/ + + + securecookie + + host + ^\.divshot\.com$ + name + .+ + + target + + + host + divshot.com + + + host + *.divshot.com + + + + + Dixcart + + ruleset + + name + Dixcart + rule + + from + ^https?://(?:www\.)?dixcart\.com/ + to + https://www.dixcart.com/ + + securecookie + + host + ^(?:www\.)?dixcart\.com$ + name + .+ + + target + + + host + dixcart.com + + + host + www.dixcart.com + + + + + Dizzcloud.com + + ruleset + + name + Dizzcloud.com + rule + + from + ^http://(?:st\.|(www\.))?dizzcloud\.com/ + to + https://$1dizzcloud.com/ + + securecookie + + host + ^\.?dizzcloud\.com$ + name + .+ + + target + + + host + dizzcloud.com + + + host + *.dizzcloud.com + + + + + Django + + ruleset + + name + Django + rule + + from + ^http://((?:code|docs|www)\.)?djangoproject\.com/ + to + https://$1djangoproject.com/ + + securecookie + + host + ^code\.djangoproject\.com$ + name + .* + + target + + + host + djangoproject.com + + + host + *.djangoproject.com + + + + + DjangoEurope.com (partial) + + ruleset + + name + DjangoEurope.com (partial) + rule + + from + ^http://panel\.djangoeurope\.com/ + to + https://panel.djangoeurope.com/ + + target + + host + panel.djangoeurope.com + + + + DjurRattsAlliansen.se + + ruleset + + name + DjurRattsAlliansen.se + platform + mixedcontent + rule + + + from + ^http://www\.djurrattsalliansen\.se/ + to + https://djurrattsalliansen.se/ + + + from + ^http://djurrattsalliansen\.se/ + to + https://djurrattsalliansen.se/ + + + target + + + host + www.djurrattsalliansen.se + + + host + djurrattsalliansen.se + + + + + Dmoz.org + + ruleset + + name + Dmoz.org + rule + + from + ^http://(www\.)?dmoz\.org/ + to + https://www.dmoz.org/ + + target + + + host + dmoz.org + + + host + www.dmoz.org + + + + + DnB Nor + + ruleset + + name + DnB Nor + rule + + from + ^http://(?:www\.)?dnbnor\.no/ + to + https://www.dnbnor.no/ + + target + + + host + www.dbnnor.no + + + host + dbnnor.no + + + + + Dnsexit + + ruleset + + name + Dnsexit + rule + + from + ^http://(?:www\.)?dnsexit\.com/ + to + https://www.dnsexit.com/ + + securecookie + + host + ^(.*\.)?dnsexit\.com$ + name + .* + + target + + + host + www.dnsexit.com + + + host + dnsexit.com + + + + + Dntly.com + + ruleset + + name + Dntly.com + rule + + from + ^http://(mygenerositywater\.|www\.)?dntly\.com/ + to + https://$1dntly.com/ + + securecookie + + host + ^\.dntly\.com$ + name + .+ + + target + + + host + dntly.com + + + host + *.dntly.com + + + + + Do Not Call Register + + ruleset + + name + Do Not Call Register + rule + + from + ^http://(?:www\.)?donotcall\.gov\.au/ + to + https://www.donotcall.gov.au/ + + target + + + host + donotcall.gov.au + + + host + *.donotcall.gov.au + + + + + Dobrochan + + ruleset + + name + Dobrochan + platform + cacert + rule + + from + ^https?://(?:www\.)?dobrochan\.(?:com|org|ru)/ + to + https://dobrochan.ru/ + + securecookie + + host + ^dobrochan\.ru$ + name + .* + + target + + + host + dobrochan.com + + + host + www.dobrochan.com + + + host + dobrochan.org + + + host + www.dobrochan.org + + + host + dobrochan.ru + + + host + www.dobrochan.ru + + + + + Docker.com (partial) + + ruleset + + name + Docker.com (partial) + rule + + + from + ^http://((?:forums|hub|registry\.hub|status|www)\.)?docker\.com/ + to + https://$1docker.com/ + + + from + ^http://(blog|docs)\.docker\.(?:com|io)/ + to + https://$1.docker.com/ + + + from + ^http://(index\.|www\.)?docker\.io/ + to + https://$1docker.io/ + + + securecookie + + host + ^(?:status|www)\.docker\.com$ + name + .+ + + target + + + host + docker.com + + + host + *.docker.com + + + host + docker.io + + + host + *.docker.io + + + + + Docler Holding + + ruleset + + name + Docler Holding + rule + + from + ^http://www\.doclerholding\.com/ + to + https://www.doclerholding.com/ + + target + + host + www.doclerholding.com + + + + Docstoc (partial) + + ruleset + + name + Docstoc (partial) + rule + + + from + ^http://(css|i|swf)\.docstoc(?:cdn)?\.com/ + to + https://$1.docstoccdn.com/ + + + from + ^http://img\.docstoc(?:cdn)?\.com/ + to + https://s3.amazonaws.com/img.docstoc.com/ + + + from + ^http://(?:www\.)?docstoc\.com/(account/|Captcha\.ashx|cart/|favicon\.ico|i/|pass(?:$|\?)) + to + https://www.docstoc.com/$1 + + + from + ^http://static2\.docstoccdn\.com/ + to + https://static2.docstoccdn.com/ + + + target + + + host + docstoc.com + + + host + *.docstoc.com + + + host + *.docstoccdn.com + + + + + DoctorsWithoutBorders.org + + ruleset + + name + DoctorsWithoutBorders.org + rule + + + from + ^http://www\.doctorswithoutborders\.org/ + to + https://www.doctorswithoutborders.org/ + + + from + ^http://doctorswithoutborders\.org/ + to + https://doctorswithoutborders.org/ + + + target + + + host + doctorswithoutborders.org + + + host + www.doctorswithoutborders.org + + + + + Document Freedom Day + + ruleset + + name + Document Freedom Day + rule + + from + ^http://(www\.)?documentfreedom\.(net|org)/ + to + https://$1documentfreedom.$2/ + + target + + + host + documentfreedom.net + + + host + www.documentfreedom.net + + + host + documentfreedom.org + + + host + www.documentfreedom.org + + + + + Document.no + + ruleset + + name + Document.no + rule + + + from + ^http://www\.document\.no/ + to + https://www.document.no/ + + + from + ^http://document\.no/ + to + https://www.document.no/ + + + target + + + host + document.no + + + host + www.document.no + + + + + DocumentCloud (partial) + + ruleset + + name + DocumentCloud (partial) + rule + + + from + ^http://(www\.)?documentcloud\.org/ + to + https://$1documentcloud.org/ + + + from + ^http://s3\.documentcloud\.org/ + to + https://s3.amazonaws.com/s3.documentcloud.org/ + + + securecookie + + host + ^www\.documentcloud\.org$ + name + .+ + + target + + + host + documentcloud.org + + + host + *.documentcloud.org + + + + + Docusign.com + + ruleset + + name + Docusign.com + rule + + from + ^http://(www\.)?docusign\.com/ + to + https://www.docusign.com/ + + target + + + host + docusign.com + + + host + www.docusign.com + + + + + Docusign.net + + ruleset + + name + Docusign.net + rule + + from + ^http://(www\.)?docusign\.net/ + to + https://www.docusign.net/ + + target + + + host + docusign.net + + + host + www.docusign.net + + + + + Dog Wheelchairs Center.com + + ruleset + + name + Dog Wheelchairs Center.com + rule + + from + ^http://(www\.)?dogwheelchairscenter\.com/ + to + https://$1dogwheelchairscenter.com/ + + securecookie + + host + ^(?:www)?\.dogwheelchairscenter\.com$ + name + .+ + + target + + + host + dogwheelchairscenter.com + + + host + *.dogwheelchairscenter.com + + + + + Dogz Online + + ruleset + + name + Dogz Online + rule + + from + ^http://(www\.)?dogzonline\.com\.au/ + to + https://$1dogzonline.com.au/ + + securecookie + + host + ^(?:www)?\.dogzonline\.com\.au$ + name + .+ + + target + + + host + dogzonline.com.au + + + host + *.dogzonline.com.au + + + + + DokuWiki (partial) + + ruleset + + exclusion + + pattern + ^http://(dib|donate|irc|pluginwiz|search|translate|update|xref)\. + + name + DokuWiki (partial) + platform + cacert + rule + + from + ^http://(\w+\.)?dokuwiki\.org/ + to + https://$1dokuwiki.org/ + + securecookie + + host + ^.*\.dokuwiki\.org$ + name + .* + + target + + + host + dokuwiki.org + + + host + *.dokuwiki.org + + + + + Dolimg.com + + ruleset + + name + Dolimg.com + rule + + + from + ^http://(?:(?:a|cdn\d?|www)\.)?dolimg\.com/ + to + https://dolimg.com/ + + + from + ^http://s\.dolimg\.com/ + to + https://s.dolimg.com/ + + + target + + + host + dolimg.com + + + host + *.dolimg.com + + + + + Dollar a Day.co + + ruleset + + name + Dollar a Day.co + rule + + from + ^http://(www\.)?dollaraday\.co/ + to + https://$1dollaraday.co/ + + target + + + host + dollaraday.co + + + host + www.dollaraday.co + + + + + Domain-DNS.com + + ruleset + + name + Domain-DNS.com + rule + + from + ^https?://(?:www\.)?domain-dns\.com/ + to + https://domain-dns.com/ + + target + + + host + domain-dns.com + + + host + www.domain-dns.com + + + + + Domain-Offensive + + ruleset + + name + Domain-Offensive + rule + + from + ^http://(www\.)?do\.de/ + to + https://$1do.de/ + + securecookie + + host + ^www\.do\.de$ + name + .+ + + target + + + host + do.de + + + host + www.do.de + + + + + Domain.com + + ruleset + + name + Domain.com + rule + + + from + ^http://(?:www\.)?domain\.com/ + to + https://www.domain.com/ + + + from + ^http://images\.domain\.com/ + to + https://secure.domain.com/images/ + + + from + ^http://secure\.domain\.com/ + to + https://secure.domain.com/ + + + securecookie + + host + ^\.domain\.com$ + name + .+ + + target + + + host + domain.com + + + host + *.domain.com + + + + + DomainCoin.net + + ruleset + + name + DomainCoin.net + rule + + from + ^http://(www\.)?domaincoin\.net/ + to + https://$1domaincoin.net/ + + securecookie + + host + ^(?:www\.)?domaincoin\.net$ + name + .+ + + target + + + host + domaincoin.net + + + host + www.domaincoin.net + + + + + DomainMarket.com (partial) + + ruleset + + name + DomainMarket.com (partial) + rule + + from + ^http://(www\.)?domainmarket\.com/ + to + https://$1domainmarket.com/ + + target + + + host + domainmarket.com + + + host + www.domainmarket.com + + + + + DomainSigma.com (partial) + + ruleset + + name + DomainSigma.com (partial) + rule + + from + ^http://static\.domainsigma\.com/ + to + https://djtg44apx8dzy.cloudfront.net/ + + target + + host + static.domainsigma.com + + + + DomainSponsor (partial) + + ruleset + + name + DomainSponsor (partial) + rule + + from + ^http://(pubman|spi)\.domainsponsor\.com/ + to + https://$1.domainsponsor.com/ + + securecookie + + host + ^\.domainsponsor\.com$ + name + .* + + target + + host + *.domainsponsor.com + + + + DomainTools (partial) + + ruleset + + exclusion + + pattern + ^http://(?:origin\.img|marketplace|reversewhois|source)\.domaintools\.com/(?!composite/|images/|ui-elements/|wp-content/|wp-includes/) + + name + DomainTools (partial) + platform + mixedcontent + rule + + + from + ^http://(?:directory\.|source\.|whois\.|www\.)?domaintools\.com/(email\.pgif(?:$|\?)|favicon\.png$|composite/|images/) + to + https://secure.domaintools.com/$1 + + + from + ^http://(api|blog|freeapi|origin\.img|marketplace|reversewhois|secure|support)\.domaintools\.com/ + to + https://$1.domaintools.com/ + + + from + ^http://img\.domaintools\.com/ + to + https://secure.domaintools.com/images/ + + + securecookie + + host + ^\.support\.domaintools\.com$ + name + .+ + + target + + + host + domaintools.com + + + host + *.domaintools.com + + + host + origin.img.domaintools.com + + + host + *.support.domaintools.com + + + + + Domainbox.com (partial) + + ruleset + + name + Domainbox.com (partial) + rule + + from + ^http://(?:www\.)?domainbox\.com/(?=favicon\.ico|func/|images/|inc/|sign-up(?:$|[?/])) + to + https://www.domainbox.com/ + + target + + + host + domainbox.com + + + host + www.domainbox.com + + + + + Domains By Proxy + + ruleset + + name + Domains By Proxy + rule + + from + ^http://(www\.)?domainsbyproxy\.com/ + to + https://$1domainsbyproxy.com/ + + securecookie + + host + ^(?:www\.)?domainsbyproxy\.com$ + name + .+ + + target + + + host + domainsbyproxy.com + + + host + www.domainsbyproxy.com + + + + + Domaintank + + ruleset + + name + Domaintank + rule + + from + ^http://([^@:/]+)?(domaintank|domainrendelo|processnet|malina)\.hu/ + to + https://$1$2.hu/ + + target + + + host + *.domaintank.hu + + + host + domaintank.hu + + + host + *.processnet.hu + + + host + processnet.hu + + + host + *.domainrendelo.hu + + + host + domainrendelo.hu + + + host + *.malina.hu + + + host + malina.hu + + + + + Domena.pl (partial) + + ruleset + + name + Domena.pl (partial) + rule + + from + ^http://(domeny|hosting|poczta)\.domena\.pl/ + to + https://$1.domena.pl/ + + securecookie + + host + ^(?:domeny|hosting|poczta)\.domena\.pl$ + name + .+ + + target + + host + *.domena.pl + + + + Domenovy prohlizec.cz + + ruleset + + name + Domenovy prohlizec.cz + rule + + from + ^http://(www\.)?domenovyprohlizec\.cz/ + to + https://$1domenovyprohlizec.cz/ + + securecookie + + host + ^www\.domenovyprohlizec\.cz$ + name + .+ + + target + + + host + domenovyprohlizec.cz + + + host + www.domenovyprohlizec.cz + + + + + Dominus Temporis.com + + ruleset + + name + Dominus Temporis.com + rule + + from + ^http://(www\.)?dominustemporis\.com/ + to + https://$1dominustemporis.com/ + + target + + + host + dominustemporis.com + + + host + www.dominustemporis.com + + + + + Domreg.lt + + ruleset + + name + Domreg.lt + rule + + from + ^http://(?:www\.)?domreg\.lt/ + to + https://www.domreg.lt/ + + securecookie + + host + ^www\.domreg\.lt$ + name + .+ + + target + + + host + domreg.lt + + + host + www.domreg.lt + + + + + DonationCoder.com + + ruleset + + name + DonationCoder.com + rule + + from + ^http://(www\.)?donationcoder\.com/ + to + https://$1donationcoder.com/ + + securecookie + + host + ^www\.donationcoder\.com$ + name + .+ + + target + + + host + donationcoder.com + + + host + www.donationcoder.com + + + + + Doncaster College (partial) + + ruleset + + name + Doncaster College (partial) + rule + + + from + ^http://(staffintranet|webmail|www)\.don\.ac\.uk/ + to + https://$1.don.ac.uk/ + + + from + ^http://blackboard\.don\.ac\.uk/(?:\?.*)?$ + to + https://don.blackboard.com/ + + + target + + host + *.don.ac.uk + + + + Dont Spy On Us.org.uk + + ruleset + + name + Dont Spy On Us.org.uk + rule + + from + ^http://(www\.)?dontspyonus\.org\.uk/ + to + https://$1dontspyonus.org.uk/ + + target + + + host + dontspyonus.org.uk + + + host + www.dontspyonus.org.uk + + + + + Doodle (partial) + + ruleset + + name + Doodle (partial) + rule + + from + ^http://(www\.)?doodle\.com/(builtstatic/|favicon\.ico|premium(?:$|\?|/)) + to + https://$1doodle.com/$2 + + target + + + host + doodle.com + + + host + www.doodle.com + + + + + Dopplr.com + + ruleset + + name + Dopplr.com + rule + + from + ^http://(?:www\.)?dopplr\.com/ + to + https://www.dopplr.com/ + + target + + + host + dopplr.com + + + host + www.dopplr.com + + + + + Dorian Color + + ruleset + + name + Dorian Color + rule + + + from + ^http://65\.181\.183\.157/ + to + https://doriancolor.com/ + + + from + ^http://(www\.)?doriancolor\.com/ + to + https://$1doriancolor.com/ + + + securecookie + + host + ^(.*\.)?doriancolor\.com$ + name + .* + + target + + + host + 65.181.183.157 + + + host + doriancolor.com + + + host + www.doriancolor.com + + + + + Dosomething.org + + ruleset + + name + Dosomething.org + rule + + from + ^http://(www\.)?dosomething\.org/ + to + https://www.dosomething.org/ + + target + + + host + dosomething.org + + + host + www.dosomething.org + + + + + Dot5Hosting + + ruleset + + name + Dot5Hosting + rule + + from + ^http://((?:images|secure|www)\.)?dot5hosting\.com/ + to + https://$1dot5hosting.com/ + + securecookie + + host + ^\.dot5hosting\.com$ + name + .+ + + target + + + host + dot5hosting.com + + + host + *.dot5hosting.com + + + + + Dota 2.com (partial) + + ruleset + + name + Dota 2.com (partial) + rule + + + from + ^http://(?:www\.)?dota2\.com/ + to + https://www.dota2.com/ + + + from + ^http://cdn\.dota2\.com/ + to + https://steamcdn-a.akamaihd.net/ + + + from + ^http://partner\.dota2\.com/ + to + https://partner.dota2.com/ + + + target + + + host + dota2.com + + + host + *.dota2.com + + + + + Dotomi (partial) + + ruleset + + name + Dotomi (partial) + rule + + + from + ^http://a248\.g\.akamai\.net/7/248/14564/ + to + https://a248.e.akamai.net/7/248/14564/ + + + from + ^http://(?:www\.)?dotomi\.com/(display|storage|universal)/ + to + https://dotomi.squarespace.com/$1/ + + + from + ^http://login\.dotomi\.com/ + to + https://login.dotomi.com/ + + + target + + + host + a248.g.akamai.net + + + host + *.dotomi.com + + + + + Dotster + + ruleset + + name + Dotster + rule + + from + ^http://([^/:@\.]+\.)?dotster\.com/ + to + https://$1dotster.com/ + + securecookie + + host + ^\.dotster\.com$ + name + .+ + + target + + + host + dotster.com + + + host + *.dotster.com + + + + + Double Fine + + ruleset + + name + Double Fine + rule + + from + ^http://(www\.)?doublefine\.com/ + to + https://$1doublefine.com/ + + securecookie + + host + ^(?:www\.)?doublefine\.com$ + name + .+ + + target + + + host + doublefine.com + + + host + www.doublefine.com + + + + + Double Robotics.com (partial) + + ruleset + + name + Double Robotics.com (partial) + rule + + + from + ^http://(drive\.|secure\.)?doublerobotics\.com/ + to + https://$1doublerobotics.com/ + + + from + ^http://support\.doublerobotics\.com/(?=favicon\.ico|images/) + to + https://doublerobotics.desk.com/ + + + securecookie + + host + ^secure\.doublerobotics\.com$ + name + .+ + + target + + + host + doublerobotics.com + + + host + *.doublerobotics.com + + + + + DoubleVerify (partial) + + ruleset + + name + DoubleVerify (partial) + rule + + from + ^http://(cdn|tps[34]0|tps10206)\.doubleverify\.com/ + to + https://$1.doubleverify.com/ + + target + + host + *.doubleverify.com + + + + Doublepimp (partial) + + ruleset + + name + Doublepimp (partial) + rule + + + from + ^https?://(?:cdn\.)?engine\.phn\.doublepimp\.com/ + to + https://engine.phn.doublepimp.com/ + + + from + ^http://streamate\.doublepimp\.com/ + to + https://streamate.doublepimp.com/ + + + target + + host + *.doublepimp.com + + + + Dovetail Services (partial) + + ruleset + + name + Dovetail Services (partial) + rule + + from + ^http://(\w+\.)?subscribeonline\.co\.uk/ + to + https://$1subscribeonline.co.uk/ + + securecookie + + host + ^(?:.*\.)?subscribeonline\.co\.uk$ + name + .+ + + target + + + host + subscribeonline.co.uk + + + host + *.subscribeonline.co.uk + + + + + DownThemAll (partial) + + ruleset + + name + DownThemAll (partial) + rule + + from + ^http://(about|bugs|code)\.downthemall\.net/ + to + https://$1.downthemall.net/ + + securecookie + + host + ^bugs\.downthemall\.net$ + name + .* + + target + + host + *.downthemall.net + + + + DownloadVerse.com + + ruleset + + name + DownloadVerse.com + rule + + from + ^http://(www\.)?downloadverse\.com/ + to + https://$1downloadverse.com/ + + securecookie + + host + ^(?:w*\.)?downloadverse\.com$ + name + .+ + + target + + + host + downloadverse.com + + + host + *.downloadverse.com + + + + + Downloadster + + ruleset + + name + Downloadster + rule + + + from + ^http://(www\.)?downloadster\.net/ + to + https://$1downloadster.net/ + + + from + ^http://media\.downloadster\.net/ + to + https://d227ccvjlkns26.cloudfront.net/ + + + securecookie + + host + ^(?:w*\.)?downloadster\.net$ + name + .+ + + target + + + host + downloadster.net + + + host + *.downloadster.net + + + + + DownstreamToday.com + + ruleset + + name + DownstreamToday.com + rule + + from + ^http://(www\.)?downstreamtoday\.com/ + to + https://$1downstreamtoday.com/ + + securecookie + + host + ^(?:www\.)?downstreamtoday\.com$ + name + .+ + + target + + + host + downstreamtoday.com + + + host + www.downstreamtoday.com + + + + + Downtown Host (partial) + + ruleset + + name + Downtown Host (partial) + rule + + from + ^http://(client\.|www\.)?downtownhost\.com/ + to + https://$1downtownhost.com/ + + securecookie + + host + ^(?:.+\.)?downtownhost\.com$ + name + .+ + + target + + + host + downtownhost.com + + + host + *.downtownhost.com + + + + + Dozuki (partial) + + ruleset + + name + Dozuki (partial) + rule + + + from + ^http://(www\.)?dozuki\.com/Guide/login(/register)?($|\?) + to + https://$1dozuki.com/Guide/login$2$3 + + + from + ^http://cacher\.dozuki\.net/ + to + https://d1luk0418egahw.cloudfront.net/ + + + from + ^http://ping\.dozuki\.com/ + to + https://ping.dozuki.com/ + + + target + + + host + dozuki.com + + + host + *.dozuki.com + + + host + *.dozuki.net + + + + + Dr.Web + + ruleset + + name + Dr.Web + rule + + from + ^http://((?:antifraud|antitheft|beta|blogs|bugs|buy|company|customers|download|estore|f2|info|license|mobi|my|network|news|online\d?|osp|pa|partners|pda|products|promotions|solutions|st|stat|(?:new-)?support|training|update|vms|wiki|www)\.)?drweb\.com/ + to + https://$1drweb.com/ + + securecookie + + host + ^.*\.drweb\.com$ + name + .+ + + target + + + host + drweb.com + + + host + *.drweb.com + + + + + DrAgnDroPbuilder.com + + ruleset + + name + DrAgnDroPbuilder.com + rule + + from + ^http://(www\.)?dragndropbuilder\.com/ + to + https://dragndropbuilder.com/ + + target + + + host + dragndropbuilder.com + + + host + www.dragndropbuilder.com + + + + + DragonFly BSD (partial) + + ruleset + + exclusion + + pattern + ^http://leaf\.dragonflybsd\.org/(?!cgi/web-man) + + name + DragonFly BSD (partial) + rule + + + from + ^http://(?:www\.)?dragonflybsd\.org/ + to + https://www.dragonflybsd.org/ + + + from + ^http://(?:bugs|leaf)\.dragonflybsd\.org/ + to + https://bugs.dragonflybsd.org/ + + + securecookie + + host + ^bugs\.dragonflybsd\.org$ + name + .+ + + target + + + host + dragonflybsd.org + + + host + *.dragonflybsd.org + + + + + Draugiem.lv (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?(?:baratikor.com|draugiem\.lv)/+(?!$|\?|favicon\.ico|(?:forgot|help)(?:$|[?/])|upl/captcha\.php) + + + pattern + ^http://m\.draugiem\.lv/+(?!$|\?|favicon\.ico|v\d+/(?:cs|j)s/) + + + pattern + ^http://(?:www\.)?frype\.com/+(?!$|\?|favicon\.ico|(?:forgot|help)(?:$|[?/])) + + + name + Draugiem.lv (partial) + rule + + + from + ^http://(?:www\.)?baratikor\.com/ + to + https://www.baratikor.com/ + + + from + ^http://(?:www\.)?draugiem\.lv/ + to + https://www.draugiem.lv/ + + + from + ^http://m\.draugiem\.lv/ + to + https://m.draugiem.lv/ + + + from + ^http://(?:www\.)?frype\.com/ + to + https://www.frype.com/ + + + from + ^http://i([0379])\.frype\.com/ + to + https://i$1.frype.com/ + + + from + ^http://ifrype\.com/ + to + https://ifrype.com/ + + + target + + + host + baratikor.com + + + host + www.baratikor.com + + + host + draugiem.lv + + + host + www.draugiem.lv + + + host + m.draugiem.lv + + + host + frype.com + + + host + *.frype.com + + + host + ifrype.com + + + + + DrawQuest + + ruleset + + name + DrawQuest + rule + + + from + ^http://(www\.)?drawquest\.com/ + to + https://$1drawquest.com/ + + + from + ^http://drawquestugc\.com/ + to + https://drawquestugc.com/ + + + securecookie + + + host + ^drawquest\.com$ + name + .+ + + + host + ^\.drawquestugc.com$ + name + .+ + + + target + + + host + drawquest.com + + + host + www.drawquest.com + + + host + drawquestugc.com + + + host + *.drawquestugc.com + + + + + Drawing by Numbers.org + + ruleset + + name + Drawing by Numbers.org + rule + + from + ^http://(www\.)?drawingbynumbers\.org/ + to + https://$1drawingbynumbers.org/ + + securecookie + + host + ^\.drawingbynumbers\.org$ + name + .+ + + target + + + host + drawingbynumbers.org + + + host + *.drawingbynumbers.org + + + + + Dream News.jp + + ruleset + + name + Dream News.jp + rule + + from + ^http://(?:www\.)?dreamnews\.jp/ + to + https://www.dreamnews.jp/ + + target + + + host + dreamnews.jp + + + host + www.dreamnews.jp + + + + + DreamHost (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:blog|wiki)\.dreamhost\.com/ + + + pattern + \.crl$ + + + pattern + ocsp\.dreamhost + + + name + DreamHost (partial) + rule + + from + ^http://([\w-]+\.(?:objects\.)?)?dreamhost\.com/ + to + https://$1dreamhost.com/ + + securecookie + + host + ^(?:.*\.)?dreamhost\.com$ + name + .+ + + target + + + host + dreamhost.com + + + host + *.dreamhost.com + + + + + DreamSpark.com + + ruleset + + name + DreamSpark.com + rule + + from + ^http://(?:www\.)?dreamspark\.com/ + to + https://www.dreamspark.com/ + + securecookie + + host + ^www\.dreamspark\.com$ + name + .+ + + target + + + host + dreamspark.com + + + host + www.dreamspark.com + + + + + DreamWiz (partial) + + ruleset + + name + DreamWiz (partial) + rule + + + from + ^http://login\.connect\.kr/ + to + https://login.connect.kr/ + + + from + ^http://i\.dreamwiz\.com/ + to + https://i.dreamwiz.com/ + + + target + + + host + login.connect.kr + + + host + i.dreamwiz.com + + + + + Dreamsolution.nl + + ruleset + + name + Dreamsolution.nl + rule + + from + ^http://(www\.)?dreamsolution\.nl/ + to + https://$1dreamsolution.nl/ + + target + + + host + dreamsolution.nl + + + host + www.dreamsolution.nl + + + + + Dreamstime (partial) + + ruleset + + exclusion + + pattern + ^https?://thumbs\.dreamstime\.com/(?!site-img/) + + name + Dreamstime (partial) + platform + mixedcontent + rule + + from + ^http://(?:thumbs\.|(www\.))?dreamstime\.com/ + to + https://$1dreamstime.com/ + + securecookie + + host + ^.*\.dreamstime\.com$ + name + .+ + + target + + + host + dreamstime.com + + + host + *.dreamstime.com + + + + + Drexel University (partial) + + ruleset + + name + Drexel University (partial) + rule + + from + ^http://(psal\.|www\.)?cs\.drexel\.edu/ + to + https://$1cs.drexel.edu/ + + securecookie + + host + ^psal\.cs\.drexel\.edu$ + name + .+ + + target + + host + *.drexel.edu + + + + Dribble.com (partial) + + ruleset + + name + Dribble.com (partial) + rule + + from + ^http://(www\.)?dribbble\.com/ + to + https://$1dribbble.com/ + + target + + + host + dribbble.com + + + host + www.dribbble.com + + + + + Drinkaware + + ruleset + + name + Drinkaware + rule + + + from + ^https?://drinkaware\.co\.uk/ + to + https://www.drinkaware.co.uk/ + + + from + ^http://([^/:@]+)?\.drinkaware\.co\.uk/ + to + https://$1.drinkaware.co.uk/ + + + securecookie + + host + ^(.*\.)?drinkaware\.co\.uk$ + name + .+ + + target + + + host + drinkaware.co.uk + + + host + *.drinkaware.co.uk + + + + + DriveStyle Insure + + ruleset + + name + DriveStyle Insure + rule + + from + ^http://(www\.)?drivestyle\.co\.uk/ + to + https://$1drivestyle.co.uk/ + + securecookie + + host + ^(?:www\.)?drivestyle.co.uk$ + name + .+ + + target + + + host + drivestyle.co.uk + + + host + www.drivestyle.co.uk + + + + + DriversEdDirect.com + + ruleset + + name + DriversEdDirect.com + rule + + from + ^http://(www\.)?driverseddirect\.com/ + to + https://www.driverseddirect.com/ + + target + + + host + www.driverseddirect.com + + + host + driverseddirect.com + + + + + DropDav + + ruleset + + name + DropDav + rule + + + from + ^http://(?:www\.)?dropdav\.com/ + to + https://dropdav.com/ + + + from + ^http://dav\.dropdav\.com/ + to + https://dav.dropdav.com/ + + + securecookie + + host + ^(.+\.)?dropdav\.com$ + name + .* + + target + + + host + dropdav.com + + + host + www.dropdav.com + + + host + dav.dropdav.com + + + + + Dropbox + + ruleset + + name + Dropbox + rule + + + from + ^http://(www\.)?db\.tt/ + to + https://$1db.tt/ + + + from + ^http://([\w-]+\.)?dropbox\.com/ + to + https://$1dropbox.com/ + + + from + ^http://(www\.)?dropbox(atwork|mail|team)\.com/ + to + https://$1dropbox$2.com/ + + + from + ^http://([\w-]+)\.dropboxusercontent\.com/ + to + https://$1.dropboxusercontent.com/ + + + from + ^http://(www\.)?getdropbox\.com/ + to + https://$1getdropbox.com/ + + + securecookie + + host + ^(?:.*\.)?dropbox\.com$ + name + .+ + + target + + + host + db.tt + + + host + www.db.tt + + + host + dropbox.com + + + host + *.dropbox.com + + + host + dropboxatwork.com + + + host + www.dropboxatwork.com + + + host + dropboxmail.com + + + host + www.dropboxmail.com + + + host + dropboxteam.com + + + host + www.dropboxteam.com + + + host + *.dropboxusercontent.com + + + host + getdropbox.com + + + host + www.getdropbox.com + + + + + Dropcam.com + + ruleset + + name + Dropcam.com + platform + firefox + rule + + + from + ^http://dropcam\.com/ + to + https://dropcam.com/ + + + from + ^http://www\.dropcam\.com/ + to + https://www.dropcam.com/ + + + securecookie + + + host + ^dropcam\.com$ + name + .+ + + + host + ^www\.dropcam\.com$ + name + .+ + + + target + + + host + dropcam.com + + + host + www.dropcam.com + + + + + Droplr.com + + ruleset + + name + Droplr.com + rule + + from + ^http://(www\.)?droplr\.com/ + to + https://$1droplr.com/ + + securecookie + + host + ^droplr\.com$ + name + .+ + + target + + + host + droplr.com + + + host + www.droplr.com + + + + + Drowned In Sound.com (partial) + + ruleset + + name + Drowned In Sound.com (partial) + rule + + from + ^http://(?:www\.)?drownedinsound\.com/(?=assets/|favicon\.ico|(?:static_)?images/|javascripts/) + to + https://dis11.herokuapp.com/ + + target + + + host + drownedinsound.com + + + host + www.drownedinsound.com + + + + + Drug Forum + + ruleset + + name + Drug Forum + platform + mixedcontent + rule + + from + ^http://(www\.)?drugs-forum\.com/ + to + https://$1drugs-forum.com/ + + securecookie + + host + ^(?:www\.)?drugs-forum\.com$ + name + .+ + + target + + + host + drugs-forum.com + + + host + www.drugs-forum.com + + + + + Drupal (partial) + + ruleset + + name + Drupal (partial) + rule + + from + ^http://((?:amsterdam2014|api|assoc|association|chicago2011|cph2010|denver2012|docs|groups|jobs|latinamerica2015|lists|localize|london2011|losangeles2015|munich2012|portland2013|qa|sec|security|sf2010|sydney2013|testing|www)\.)?drupal\.org/ + to + https://$1drupal.org/ + + target + + + host + drupal.org + + + host + *.drupal.org + + + + + Drupal Gardens.com (partial) + + ruleset + + name + Drupal Gardens.com (partial) + rule + + from + ^http://(www\.)?drupalgardens\.com/(?=(?:contact-our-team|create-site|pricing)(?:$|[?/])|favicon\.ico|misc/|sites/) + to + https://$1drupalgardens.com/ + + target + + + host + drupalgardens.com + + + host + www.drupalgardens.com + + + + + DryIcons.com + + ruleset + + name + DryIcons.com + rule + + from + ^http://(?:(\w\.)|www\.)?dryicons\.com/ + to + https://$1dryicons.com/ + + securecookie + + host + ^\.?dryicons\.com$ + name + .+ + + target + + + host + dryicons.com + + + host + *.dryicons.com + + + + + Duck DNS.org + + ruleset + + name + Duck DNS.org + rule + + from + ^http://(www\.)?duckdns\.org/ + to + https://$1duckdns.org/ + + securecookie + + host + ^(?:www\.)?duckdns\.org$ + name + .+ + + target + + + host + duckdns.org + + + host + www.duckdns.org + + + + + DuckDuckGo + + ruleset + + exclusion + + pattern + ^http://(help|meme)\.duckduckgo\.com/ + + name + DuckDuckGo + rule + + + from + ^http://duckduckgo\.com/ + to + https://duckduckgo.com/ + + + from + ^http://([^/:@\.]+)\.duckduckgo\.com/ + to + https://$1.duckduckgo.com/ + + + from + ^http://ddg\.gg/$ + to + https://duckduckgo.com/ + + + from + ^http://duck\.co/ + to + https://duck.co/ + + + from + ^http://i\.duck\.co/ + to + https://duckduckgo.com/ + + + from + ^http://(?:www\.)?dukgo\.com/ + to + https://dukgo.com/ + + + securecookie + + host + ^duck\.co$ + name + .* + + target + + + host + duckduckgo.com + + + host + *.duckduckgo.com + + + host + ddg.gg + + + host + duck.co + + + host + i.duck.co + + + host + dukgo.com + + + host + www.dukgo.com + + + + + Dueling Analogs.com (partial) + + ruleset + + name + Dueling Analogs.com (partial) + rule + + from + ^http://cdn\.duelinganalogs\.com/ + to + https://d2fnxgc3lifa5q.cloudfront.net/ + + target + + host + cdn.duelinganalogs.com + + + + Duke Energy Convention Center (partial) + + ruleset + + name + Duke Energy Convention Center (partial) + rule + + + from + ^https?://(?:www\.)?duke-energycenter\.com/ + to + https://www.duke-energycenter.com/ + + + from + ^http://orders\.duke-energycenter\.com/ + to + https://orders.duke-energycenter.com/ + + + securecookie + + host + ^www\.duke-energycenter\.com$ + name + .* + + target + + + host + duke-energycenter.com + + + host + *.duke-energycenter.com + + + + + Duke University (partial) + + ruleset + + name + Duke University (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?library\.duke\.edu/(css/|favicon\.ico|imgs?/|sites/) + to + https://library.duke.edu/$1 + + + from + ^http://(voting\.academiccouncil|login\.dhts|fds|(?:www\.)?(?:finance|hr|security|today)|www\.finsvc|giving|(?:blogs|catalog)\.library|(?:(?:dusonnet|match|www)\.)?nursing|(?:(?:alertbar|bb-idp|brandbar|pwreset|shib|www)\.)?oit|inside\.pratt|(?:goldenorb\.)?trinity|wiki)\.duke\.edu/ + to + https://$1.duke.edu/ + + + from + ^https?://(?:www\.)?giving\.duke\.edu/ + to + https://giving.duke.edu/ + + + from + ^http://www\.mclibrary\.duke\.edu/(images/|style_\w+\.css$) + to + https://www.mclibrary.duke.edu/$1 + + + from + ^https?://(?:www\.)?pratt\.duke\.edu/(modul|sit)es/ + to + https://www.pratt.duke.edu/$1es/ + + + from + ^http://it\.pratt\.duke\.edu/(modul|sit)es/ + to + https://it.pratt.duke.edu/$1es/ + + + from + ^http://members\.dukeexechealth\.org/ + to + https://members.dukeexechealth.org/ + + + from + ^https?://(?:www\.)?goduke\.com/(ads2|css|fls|images|siteMediaPlayer|pics32)/ + to + https://smnathletics.com/$1/ + + + securecookie + + host + ^.*\.duke\.edu$ + name + .* + + target + + + host + *.duke.edu + + + host + www.*.duke.edu + + + host + voting.academiccouncil.duke.edu + + + host + login.dhts.duke.edu + + + host + *.library.duke.edu + + + host + www.mclibrary.duke.edu + + + host + *.nursing.duke.edu + + + host + *.oit.duke.edu + + + host + *.pratt.duke.edu + + + host + *.inside.pratt.duke.edu + + + host + goldenorb.trinity.duke.edu + + + host + members.dukeexechealth.org + + + host + goduke.com + + + host + www.goduke.com + + + + + Duo Security (partial) + + ruleset + + name + Duo Security (partial) + rule + + + from + ^http://((?:admin|blog|dl|www)\.)?duosecurity\.com/ + to + https://$1duosecurity.com/ + + + from + ^https?://jobs\.duosecurity\.com/(css|img)/ + to + https://duo.theresumator.com/$1/ + + + securecookie + + host + ^admin\.duosecurity\.com$ + name + .* + + target + + + host + duosecurity.com + + + host + *.duosecurity.com + + + + + Duodecim.fi + + ruleset + + name + Duodecim.fi + rule + + + from + ^http://(www\.)?duodecim\.fi/ + to + https://www.duodecim.fi/ + + + from + ^http://(star|verkkokauppa)\.duodecim\.fi/ + to + https://$1.duodecim.fi/ + + + from + ^https://duodecim\.fi/ + to + https://www.duodecim.fi/ + + + target + + + host + www.duodecim.fi + + + host + duodecim.fi + + + host + star.duodecim.fi + + + host + verkkokauppa.duodecim.fi + + + + + Duolingo.com + + ruleset + + name + Duolingo.com + rule + + from + ^http://(www\.)?duolingo\.com/ + to + https://$1duolingo.com/ + + securecookie + + host + ^www\.duolingo\.com$ + name + .+ + + target + + + host + duolingo.com + + + host + www.duolingo.com + + + + + DuraSpace.org (partial) + + ruleset + + name + DuraSpace.org (partial) + rule + + + from + ^http://(atlas|bamboo|crowd|jira|m2|svn|wiki)\.duraspace\.org/ + to + https://$1.duraspace.org/ + + + from + ^http://scm\.duraspace\.org/+(?=$|\?) + to + https://svn.duraspace.org/dspace/ + + + securecookie + + host + ^bamboo\.duraspace\.org$ + name + .+ + + target + + host + *.duraspace.org + + + + Duracell Cloud.com (partial) + + ruleset + + name + Duracell Cloud.com (partial) + rule + + from + ^http://((?:backup|customer|www)\.)?duracellcloud\.com/ + to + https://$1duracellcloud.com/ + + securecookie + + host + ^(?:customer\.|www\.)?duracellcloud\.com$ + name + .+ + + target + + + host + duracellcloud.com + + + host + *.duracellcloud.com + + + + + Dutch Data Protection Authority + + ruleset + + name + Dutch Data Protection Authority + rule + + + from + ^https?://dutchdpa\.nl/ + to + https://www.dutchdpa.nl/ + + + from + ^http://([^/:@]+)?\.dutchdpa\.nl/ + to + https://$1.dutchdpa.nl/ + + + from + ^https?://cbpweb\.nl/ + to + https://www.cbpweb.nl/ + + + from + ^http://([^/:@]+)?\.cbpweb\.nl/ + to + https://$1.cbpweb.nl/ + + + from + ^http://([^/:@]+)?\.collegebeschermingpersoonsgegevens\.nl/ + to + https://$1.collegebeschermingpersoonsgegevens.nl/ + + + target + + + host + dutchdpa.nl + + + host + www.dutchdpa.nl + + + host + cbpweb.nl + + + host + www.cbpweb.nl + + + host + www.collegebeschermingpersoonsgegevens.nl + + + + + Dwarf Fortress Wiki.org (partial) + + ruleset + + name + Dwarf Fortress Wiki.org (partial) + rule + + from + ^http://(www\.)?dwarffortresswiki\.org/(?=w/skins/common/) + to + https://$1dwarffortresswiki.org/ + + target + + + host + dwarffortresswiki.org + + + host + www.dwarffortresswiki.org + + + + + Dwolla (partial) + + ruleset + + name + Dwolla (partial) + rule + + + from + ^(http://(www\.)?|https://)dwolla\.com/ + to + https://www.dwolla.com/ + + + from + ^http://fisync\.dwolla\.com/ + to + https://fisync.dwolla.com/ + + + securecookie + + host + ^(fisync|www)\.dwolla\.com$ + name + .+ + + target + + + host + dwolla.com + + + host + fisync.dwolla.com + + + host + www.dwolla.com + + + + + Dyankov.eu + + ruleset + + name + Dyankov.eu + rule + + from + ^http://(?:www\.)?dyankov\.eu/ + to + https://dyankov.eu/ + + securecookie + + host + ^dyankov\.eu$ + name + .+ + + target + + + host + dyankov.eu + + + host + www.dyankov.eu + + + + + Dyn (partial) + + ruleset + + name + Dyn (partial) + rule + + + from + ^http://account\.dyn\.com/ + to + https://account.dyn.com/ + + + from + ^http://a\.dyndns\.com/ + to + https://a.dyndns.com/ + + + target + + + host + account.dyn.com + + + host + a.dyndns.com + + + + + DynaDot + + ruleset + + name + DynaDot + platform + mixedcontent + rule + + from + ^http://(?:www\.)?dynadot\.com/ + to + https://www.dynadot.com/ + + securecookie + + host + ^(.+\.)?dynadot\.com$ + name + .* + + target + + + host + dynadot.com + + + host + www.dynadot.com + + + + + Dynamic Site Platform + + ruleset + + name + Dynamic Site Platform + rule + + from + ^http://(cms|dev|s|secure)\.clickability\.com/ + to + https://$1.clickability.com/ + + securecookie + + host + ^(?:\.?s|secure)\.clickability\.com$ + name + .+ + + target + + host + *.clickability.com + + + + Dynamic Yeild.com (partial) + + ruleset + + name + Dynamic Yeild.com (partial) + rule + + from + ^http://(adm|s1a|st)\.dynamicyield\.com/ + to + https://$1.dynamicyield.com/ + + target + + host + *.dynamicyield.com + + + + Dynamite Data (partial) + + ruleset + + name + Dynamite Data (partial) + rule + + from + ^http://((?:detonator|mkt|www)\.)?dynamitedata\.com/ + to + https://$1dynamitedata.com/ + + securecookie + + host + ^(?:.*\.)?dynamitedata.com$ + name + .+ + + target + + + host + dynamitedata.com + + + host + *.dynamitedata.com + + + + + Dynamo Dresden + + ruleset + + name + Dynamo Dresden + rule + + from + ^http://(?:cms\.)?dynamo-dresden\.de/ + to + https://cms.dynamo-dresden.de/ + + securecookie + + host + ^(.*\.)?dynamo-dresden\.de$ + name + .* + + target + + host + cms.dynamo-dresden.de + + + + Dyne.org (partial) + + ruleset + + name + Dyne.org (partial) + rule + + + from + ^http://((?:irc|lab|lists|mailinglists|www)\.)?dyne\.org/ + to + https://$1dyne.org/ + + + from + ^http://new\.dyne\.org/ + to + https://www.dyne.org/ + + + target + + + host + dyne.org + + + host + *.dyne.org + + + + + Dyson (partial) + + ruleset + + name + Dyson (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?careers\.dyson\.com/ + to + https://www.careers.dyson.com/ + + + from + ^http://media\.dyson\.com/ + to + https://media.dyson.com/ + + + from + ^http://(www\.)?dyson\.co\.uk/ + to + https://www.dyson.co.uk/ + + + from + ^http://content\.dyson\.co\.uk/(common|images)/ + to + https://www.careers.dyson.com/$1/ + + + from + ^http://content\.dyson\.co\.uk/Images/ + to + https://www.dyson.co.uk/medialibrary/Images/Dyson/Site/ + + + from + ^http://(www\.)?dyson\.ie/ + to + https://www.dyson.ie/ + + + securecookie + + + host + ^www\.careers\.dyson\.com$ + name + .* + + + host + ^www\.dyson\.ie$ + name + .* + + + target + + + host + careers.dyson.com + + + host + www.careers.dyson.com + + + host + media.dyson.com + + + host + dyson.co.uk + + + host + content.dyson.co.uk + + + host + www.dyson.co.uk + + + host + dyson.ie + + + host + www.dyson.ie + + + + + E-Hentai Forums + + ruleset + + name + E-Hentai Forums + rule + + + from + ^http://forums?\.e-hentai\.org/ + to + https://forums.e-hentai.org/ + + + from + ^https://forum\.e-hentai\.org/ + to + https://forums.e-hentai.org/ + + + target + + + host + forums.e-hentai.org + + + host + forum.e-hentai.org + + + + + E-Mail made in Germany + + ruleset + + name + E-Mail made in Germany + rule + + from + ^http://(?:www\.)?e-mail-made-in-germany\.de/ + to + https://www.e-mail-made-in-germany.de/ + + target + + + host + e-mail-made-in-germany.de + + + host + www.e-mail-made-in-germany.de + + + + + E-Plus (partial) + + ruleset + + name + E-Plus (partial) + rule + + + from + ^https?://(?:www\.)?e-plus\.de/ + to + https://www.e-plus.de/ + + + from + ^http://(ecc|dialog|metromobil|mymtv|norman|prepaidkundenbetreuung|vertragsverlaengerung)\.e-plus\.de/ + to + https://$1.e-plus.de/ + + + securecookie + + host + ^.*\.e-plus\.de$ + name + .+ + + target + + + host + e-plus.de + + + host + *.e-plus.de + + + + + E-Plus Gruppe + + ruleset + + name + E-Plus Gruppe + rule + + from + ^https?://(?:www\.)?eplus-gruppe\.de/ + to + https://www.eplus-gruppe.de/ + + target + + + host + eplus-gruppe.de + + + host + www.eplus-gruppe.de + + + + + E-boks.dk (partial) + + ruleset + + exclusion + + pattern + http://www\.e-boks\.dk/+(?!favicon\.ico) + + name + E-boks.dk (partial) + rule + + from + ^http://((?:logon|minerhverv|www)\.)?e-boks\.dk/ + to + https://$1e-boks.dk/ + + securecookie + + host + ^(?:logon|minerhverv)\.e-boks\.dk$ + name + .+ + + target + + + host + e-boks.dk + + + host + *.e-boks.dk + + + + + E-cegjegyzek.hu + + ruleset + + name + E-cegjegyzek.hu + rule + + from + ^http://(www\.)?e-cegjegyzek\.hu/ + to + https://www.e-cegjegyzek.hu/ + + target + + + host + e-cegjegyzek.hu + + + host + www.e-cegjegyzek.hu + + + + + E-junkie (partial) + + ruleset + + name + E-junkie (partial) + rule + + + from + ^http://(www\.)?ejunkie\.com/(bb/images/|ecom/|ej//?(?:(?:(?:admin|contact|register)\.php|shop)(?:$|\?|/)|css/|images/|media/)|gc/) + to + https://$1ejunkie.com/$2 + + + from + ^http://static\.e-junkie\.com/ + to + https://static.e-junkie.com/ + + + target + + + host + e-junkie.com + + + host + *.e-junkie.com + + + + + E-magin.se + + ruleset + + name + E-magin.se + rule + + from + ^http://www\.e-magin\.se/ + to + https://www.e-magin.se/ + + target + + host + www.e-magin.se + + + + E-mielenterveys + + ruleset + + name + E-mielenterveys + rule + + from + ^http://(?:www\.)?e-mielenterveys\.fi/ + to + https://www.e-mielenterveys.fi/ + + securecookie + + host + ^www\.e-mielenterveys\.fi$ + name + .+ + + target + + + host + e-mielenterveys.fi + + + host + www.e-mielenterveys.fi + + + + + E-rewards.com + + ruleset + + name + E-rewards.com + rule + + from + ^http://(www\.)?e-rewards\.com/ + to + https://www.e-rewards.com/ + + target + + host + www.e-rewards.com + + + + E. W. Scripps Company (partial) + + ruleset + + name + E. W. Scripps Company (partial) + rule + + + from + ^http://(?:www\.)?andersonvalleypost\.com/(accounts/(?:login|password_reset|register)|staff|subscribe)/ + to + https://www.andersonvalleypost.com/$1/ + + + from + ^http://login\.andersonvalleypost\.com/ + to + https://login.andersonvalleypost.com/ + + + from + ^http://(?:www\.)?commercialappeal\.com/ + to + https://www.commercialappeal.com/ + + + from + ^http://(?:www\.)?redding\.com/ + to + https://www.redding.com/ + + + target + + + host + andersonvalleypost.com + + + host + login.andersonvalleypost.com + + + host + www.andersonvalleypost.com + + + host + commercialappeal.com + + + host + www.commercialappeal.com + + + host + redding.com + + + host + www.redding.com + + + + + E.ON IT Hungary + + ruleset + + name + E.ON IT Hungary + rule + + from + ^http://www\.eon-hungaria\.com/ + to + https://www.eon-hungaria.com/ + + securecookie + + host + ^www\.eon-hungaria\.com$ + name + .* + + target + + host + www.eon-hungaria.com + + + + E.ON UK (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?eon-uk\.com/(?!careers/(?:Basic\.css|images/|reset\.css)|favicon\.ico|images/|eOnAssets/|mediaFiles/) + + name + E.ON UK (partial) + rule + + from + ^http://(stats\.|www\.)?eon-uk\.com/ + to + https://$1eon-uk.com/ + + securecookie + + host + ^stats\.eon-uk\.com$ + name + .+ + + target + + + host + eon-uk.com + + + host + *.eon-uk.com + + + + + E14N + + ruleset + + name + E14N + rule + + from + ^http://(www\.)?e14n\.com/ + to + https://$1e14n.com/ + + securecookie + + host + ^e14n\.com$ + name + .+ + + target + + + host + e14n.com + + + host + www.e14n.com + + + + + E2E Networks (partial) + + ruleset + + name + E2E Networks (partial) + rule + + from + ^http://shopping\.e2enetworks\.com/ + to + https://shopping.e2enetworks.com/ + + securecookie + + host + ^shopping\.e2enetworks\.com$ + name + .* + + target + + host + shopping.e2enetworks.com + + + + E4ward.com + + ruleset + + name + E4ward.com + rule + + from + ^http://(www\.)?e4ward\.com/ + to + https://e4ward.com/ + + target + + + host + e4ward.com + + + host + www.e4ward.com + + + + + EA Sports.com (false MCB) + + ruleset + + name + EA Sports.com (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?easports\.com/ + to + https://www.easports.com/ + + + from + ^http://cdn\.www\.easports\.com/ + to + https://a248.e.akamai.net/f/610/1/8m/cdn.www.easports.com/ + + + securecookie + + host + \.www\.easports\.com$ + name + .+ + + target + + + host + easports.com + + + host + *.easports.com + + + + + EBSCO-content.com + + ruleset + + name + EBSCO-content.com + rule + + from + ^http://global\.ebsco-content\.com/ + to + https://global.ebsco-content.com/ + + target + + host + global.ebsco-content.com + + + + EBSCOhost (partial) + + ruleset + + exclusion + + pattern + ^http://www2\. + + name + EBSCOhost (partial) + platform + mixedcontent + rule + + + from + ^http://training\.ebsco\.com/ + to + https://ebscotraining.webex.com/ + + + from + ^http://(\w+\.)?ebscohost\.com/ + to + https://$1ebscohost.com/ + + + securecookie + + host + ^(.*\.)?ebscohost\.com$ + name + .* + + target + + + host + training.ebsco.com + + + host + ebscohost.com + + + host + *.ebscohost.com + + + + + EC21 (partial) + + ruleset + + name + EC21 (partial) + rule + + from + ^http://login\.ec21\.com/ + to + https://login.ec21.com/ + + target + + host + login.ec21.com + + + + ECSI + + ruleset + + name + ECSI + rule + + from + ^https?://(?:www\.)?ecsi\.com/ + to + https://www.ecsi.com/ + + target + + + host + ecsi.com + + + host + www.ecsi.com + + + + + ED.gov (partial) + + ruleset + + name + ED.gov (partial) + platform + mixedcontent + rule + + + from + ^https?://(dl\.)?ed\.gov/ + to + https://www.$1ed.gov/ + + + from + ^http://(www\.)?fafsa\.gov/ + to + https://fafsa.gov/ + + + from + ^http://((schools\.dl)|ecdrappeals|e-grants|sa|(fafsademo\.test)|www)\.ed\.gov/ + to + https://$1.ed.gov/ + + + from + ^((http://(www\.)?)|(https://www\.))(cbfisap|cod|faaaccess|fafsa||fafsalivehelp01||fsawebenroll|nces|pin|studentaid2?|teach-ats|usdoedregistration)\.ed\.gov/ + to + https://$5.ed.gov/ + + + from + ^(http://(www\.)?|https://)(dl|fsadownload|fsaregistration|ifap|nslds|tcli)\.ed\.gov/ + to + https://www.$3.ed.gov/ + + + securecookie + + + host + (^|(\.))(cbfisap|cod|dl|ecdrappeals|e-grants|faaaccess|fafsa|fsadownload|fsaregistration|fsawebenroll|ifap|nces|nslds|pin|sa|studentaid2?|tcli|teach-ats|(fafsademo\.test)|usdoedregistration)\.ed\.gov$ + name + .+ + + + host + (^|(\.))fafsa\.gov$ + name + .+ + + + target + + + host + ed.gov + + + host + www.ed.gov + + + host + cbfisap.ed.gov + + + host + www.cbfisap.ed.gov + + + host + cod.ed.gov + + + host + www.cod.ed.gov + + + host + dl.ed.gov + + + host + www.dl.ed.gov + + + host + schools.dl.ed.gov + + + host + ecdrappeals.ed.gov + + + host + e-grants.ed.gov + + + host + faaaccess.ed.gov + + + host + www.faaaccess.ed.gov + + + host + fafsa.ed.gov + + + host + www.fafsa.ed.gov + + + host + fafsa.gov + + + host + www.fafsa.gov + + + host + fafsalivehelp01.ed.gov + + + host + www.fafsalivehelp01.ed.gov + + + host + fsadownload.ed.gov + + + host + www.fsadownload.ed.gov + + + host + fsaregistration.ed.gov + + + host + www.fsaregistration.ed.gov + + + host + fsawebenroll.ed.gov + + + host + www.fsawebenroll.ed.gov + + + host + ifap.ed.gov + + + host + www.ifap.ed.gov + + + host + nces.ed.gov + + + host + www.nces.ed.gov + + + host + nslds.ed.gov + + + host + www.nslds.ed.gov + + + host + pin.ed.gov + + + host + www.pin.ed.gov + + + host + sa.ed.gov + + + host + studentaid.ed.gov + + + host + www.studentaid.ed.gov + + + host + studentaid2.ed.gov + + + host + www.studentaid2.ed.gov + + + host + tcli.ed.gov + + + host + www.tcli.ed.gov + + + host + teach-ats.ed.gov + + + host + www.teach-ats.ed.gov + + + host + fafsademo.test.ed.gov + + + host + usdoedregistration.ed.gov + + + host + www.usdoedregistration.ed.gov + + + + + EDF Energy + + ruleset + + name + EDF Energy + rule + + + from + ^http://(?:www\.)?edfenergy\.com/ + to + https://www.edfenergy.com/ + + + from + ^http://my-account\.edfenergy\.com/ + to + https://my-account.edfenergy.com/ + + + securecookie + + host + ^my-account\.edfenergy\.com$ + name + .+ + + target + + + host + edfenergy.com + + + host + *.edfenergy.com + + + + + EDGAR Online + + ruleset + + name + EDGAR Online + rule + + + from + ^http://edgar-online\.com/ + to + https://www.edgar-online.com/ + + + from + ^http://(\w+)\.edgar-online\.com/ + to + https://$1.edgar-online.com/ + + + securecookie + + host + ^(.*\.)edgar-online\.com$ + name + .* + + target + + + host + edgar-online.com + + + host + *.edgar-online.com + + + + + EDI Health Group + + ruleset + + name + EDI Health Group + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?claimconnect\.net/ + to + https://www.dentalxchange.com/x/claimconnect.jsp + + + from + ^http://(?:www\.)?(?:dentalxchange\.com|(?:edihealth|webclaim)\.net)/ + to + https://www.dentalxchange.com/ + + + from + ^http://claimconnect\.dentalxchange\.com/ + to + https://claimconnect.dentalxchange.com/ + + + from + ^http://(?:www\.)?edihealth\.com/ + to + https://www.dentalxchange.com/x/partners/webclaim.jsp + + + from + ^http://secure\.payconnect\.net/ + to + https://secure.payconnect.net/ + + + securecookie + + + host + ^(.*\.)?dentalexchange\.com$ + name + .* + + + host + ^secure\.payconnect\.net$ + name + .* + + + target + + + host + claimconnect.net + + + host + www.claimconnect.net + + + host + dentalxchange.com + + + host + *.dentalxchange.com + + + host + edihealth.com + + + host + www.edihealth.com + + + host + edihealth.net + + + host + www.edihealth.net + + + host + webclaim.net + + + host + www.webclaim.net + + + host + secure.payconnect.net + + + + + EDI7.lu (partial) + + ruleset + + name + EDI7.lu (partial) + rule + + from + ^http://www2\.edi7\.lu/ + to + https://www2.edi7.lu/ + + securecookie + + host + ^www2\.edi7\.lu$ + name + .+ + + target + + host + www2.edi7.lu + + + + EDP.pt + + ruleset + + name + EDP.pt + rule + + from + ^http://(?:www\.)?edp\.pt/ + to + https://www.edp.pt/ + + target + + + host + edp.pt + + + host + www.edp.pt + + + + + EDRi.org + + ruleset + + name + EDRi.org + rule + + from + ^http://(www\.)?edri\.org/ + to + https://$1edri.org/ + + target + + + host + edri.org + + + host + www.edri.org + + + + + EE Times (mixed content) + + ruleset + + name + EE Times (mixed content) + platform + mixedcontent + rule + + from + ^http://video\.eetimes\.com/ + to + https://video.eetimes.com/ + + securecookie + + host + ^video\.eetimes\.com$ + name + .+ + + target + + host + video.eetimes.com + + + + EE Times (partial) + + ruleset + + name + EE Times (partial) + rule + + + from + ^http://((?:cdn|confidential|new|www)\.)?eetimes\.com/ + to + https://$1eetimes.com/ + + + from + ^https?://om\.eetimes\.com/ + to + https://eetimes-com.112.2o7.net/ + + + securecookie + + + host + ^\.eetimes\.com$ + name + ^s_\w+$ + + + host + ^www\.eetimes\.com$ + name + .+ + + + target + + + host + eetimes.com + + + host + *.eetimes.com + + + + + EEQJ + + ruleset + + name + EEQJ + rule + + from + ^http://(www\.)?eeqj\.com/ + to + https://$1eeqj.com/ + + securecookie + + host + ^eeqj\.com$ + name + .+ + + target + + + host + eeqj.com + + + host + www.eeqj.com + + + + + EET Group + + ruleset + + name + EET Group + rule + + + from + ^http://(s\.|www\.)?eet\.eu/ + to + https://$1eet.eu/ + + + from + ^http://(at|be|ch|cz|de|dk|es|fi|fr|it|nl|no|pl|pt|se|uk)\.eet(group|nordic)\.com/ + to + https://$1.eet$2.com/ + + + securecookie + + host + ^.*\.eet(?:group|nordic)\.com$ + name + .+ + + target + + + host + eet.eu + + + host + *.eet.eu + + + host + *.eetgroup.com + + + host + *.eetnordic.com + + + + + EFF + + ruleset + + exclusion + + pattern + ^http://action\.eff\.org/ + + name + EFF + rule + + + from + ^http://secure\.eff\.org/donate + to + https://secure.eff.org/site/Donation2?idb=43804189&df_id=1200 + + + from + ^http://secure\.eff\.org/mechaposter + to + https://secure.eff.org/site/Ecommerce?VIEW_PRODUCT=true&product_id=2161&store_id=2441 + + + from + ^http://secure\.eff\.org/wiretapping + to + https://secure.eff.org/site/Donation2?idb=1344423068&df_id=1220 + + + from + ^http://([^/:@\.]+\.)?eff\.org/ + to + https://$1eff.org/ + + + from + ^https://www\.eff\.org/sites/all/themes/frontier/images/get-https-e(-chrome)?.png + to + https://www.eff.org/sites/all/themes/frontier/images/got-https-e$1.png + + + from + ^http://(www\.)?(defendinnovation|globalchokepoints|httpsnow|ripmixmake)\.org/ + to + https://$1$2.org/ + + + securecookie + + host + ^.*\.eff\.org$ + name + .* + + target + + + host + eff.org + + + host + *.eff.org + + + host + *.supporters.eff.org + + + host + defendinnovation.org + + + host + www.defendinnovation.org + + + host + globalchokepoints.org + + + host + www.globalchokepoints.org + + + host + httpsnow.org + + + host + www.httpsnow.org + + + host + ripmixmake.org + + + host + www.ripmixmake.org + + + + + EFTPlus.asia + + ruleset + + name + EFTPlus.asia + rule + + from + ^http://(www\.)?eftplus\.asia/ + to + https://$1eftplus.asia/ + + securecookie + + host + ^(?:w*\.)?eftplus\.asia$ + name + .+ + + target + + + host + eftplus.asia + + + host + *.eftplus.asia + + + + + EIDQ + + ruleset + + name + EIDQ + rule + + from + ^http://(www\.)?eidq\.org/ + to + https://$1eidq.org/ + + securecookie + + host + ^(www\.)?eidq\.org$ + name + .* + + target + + + host + eidq.org + + + host + www.eidq.org + + + + + ELENA + + ruleset + + name + ELENA + rule + + from + ^http://(www\.)?das-elena-verfahren\.de/ + to + https://www.das-elena-verfahren.de/ + + target + + + host + das-elena-verfahren.de + + + host + *.das-elena-verfahren.de + + + + + ELO edge.com (false MCB) + + ruleset + + name + ELO edge.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?eloedge\.com/ + to + https://$1eloedge.com/ + + securecookie + + host + ^\.eloedge\.com$ + name + .+ + + target + + + host + eloedge.com + + + host + *.eloedge.com + + + + + ELTE.hu (partial) + + ruleset + + name + ELTE.hu (partial) + rule + + + from + ^http://(alumni|web\.caesar|felveteli|iig|mars|minoseg|hallgato\.neptun|pik|telefon|telefonkonyv|ugykezelo|webmail|www)\.elte\.hu/ + to + https://$1.elte.hu/ + + + from + ^http://(?:www\.)?caesar\.elte\.hu/ + to + https://www.caesar.elte.hu/ + + + from + ^http://webmail\.caesar\.elte\.hu/ + to + https://webmail.elte.hu/ + + + securecookie + + host + ^(?:hallgato\.neptun|telefon|telefonkonyv|\.webmail)\.elte\.hu$ + name + .+ + + target + + host + *.elte.hu + + + + EMC (partial) + + ruleset + + name + EMC (partial) + rule + + + from + ^http://(?:www\.)?emc\.com/(_admin/|emc-plus/support/[\w-]+\.(?:cs|j)s|favicon\.ico|homepage/css/|images/|jcaptcha\.htm|login\.htm|profile/account_information\.htm|R1/|register\.htm|reset_password/email\.htm|rss/[\w-]+\.(?:json|rss)|utilities/(?:css/|globalsiteselect\.jhtml)) + to + https://www.emc.com/$1 + + + from + ^http://(community|ecn-analytics|education|gallery|powerlink|sso)\.emc\.com/ + to + https://$1.emc.com/ + + + from + ^http://ecn-analytics-nssl\.emc\.com/ + to + https://emc-com.122.2o7.net/ + + + from + ^http://emc\.force\.com/ + to + https://emc.secure.force.com/ + + + securecookie + + + host + ^\.emc\.com$ + name + ^(?:CampaignHeader|s_\w+|__utm\w)$ + + + host + ^www\.emc\.com$ + name + ^(?:HumanClickSiteContainerID_\w+|lpFPCtest)$ + + + host + ^(?:community|education|\.?gallery|powerlink|sso)\.emc\.com$ + name + .+ + + + target + + + host + emc.com + + + host + *.emc.com + + + host + emc.force.com + + + + + ENTP (partial) + + ruleset + + exclusion + + + pattern + ^http://help\.lighthouseapp\. + + + pattern + ^http://(www\.)?tenderapp\.com/$ + + + name + ENTP (partial) + rule + + + from + ^http://(my\.|www\.)?lighthouseapp\.com/ + to + https://$1lighthouseapp.com/ + + + from + ^http://([\w\-]+)\.lighthouseapp\.com/(images/|login|pkg/|stylesheets/|users/new) + to + https://$1.lighthouseapp.com/$2 + + + from + ^http://([\w\-]+\.)?tenderapp\.com/ + to + https://$1tenderapp.com/ + + + securecookie + + host + ^(.*\.)?tenderapp\.com$ + name + .* + + target + + + host + lighthouseapp.com + + + host + *.lighthouseapp.com + + + host + tenderapp.com + + + host + asset-0.tenderapp.com + + + host + asset-1.tenderapp.com + + + host + asset-2.tenderapp.com + + + host + help.tenderapp.com + + + host + setup.tenderapp.com + + + host + www.tenderapp.com + + + + + EOFT + + ruleset + + name + EOFT + rule + + from + ^http://(www\.)?eoft\.eu/ + to + https://www.eoft.eu/ + + target + + + host + eoft.eu + + + host + www.eoft.eu + + + + + EOReality.net (partial) + + ruleset + + name + EOReality.net (partial) + rule + + from + ^http://billing\.eoreality\.net/ + to + https://billing.eoreality.net/ + + securecookie + + host + ^billing\.eoreality\.net$ + name + .+ + + target + + host + billing.eoreality.net + + + + EPA (.ie) + + ruleset + + exclusion + + pattern + ^http://gis\.epa\.ie/ + + name + EPA (.ie) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?epa\.ie/ + to + https://www.epa.ie/ + + target + + + host + www.epa.ie + + + host + epa.ie + + + + + EPB + + ruleset + + name + EPB + rule + + + from + ^http://(livehelp\.|www\.)?epb\.net/ + to + https://$1epb.net/ + + + from + ^http://((?:mail|livehelp|phone|www)\.)?epbfi\.com/ + to + https://$1epbfi.com/ + + + securecookie + + host + ^(?:.*\.)?epb(\.net|fi\.com)$ + name + .* + + target + + + host + epb.net + + + host + *.epb.net + + + host + epbfi.com + + + host + *.epbfi.com + + + + + EPEAT (partial) + + ruleset + + name + EPEAT (partial) + rule + + from + ^http://ww2\.epeat\.com/ + to + https://ww2.epeat.com/ + + target + + host + ww2.epeat.net + + + + EPFL (partial) + + ruleset + + name + EPFL (partial) + rule + + from + ^http://((?:inform|jahia-prod|winauth|www)\.)?epfl\.ch/ + to + https://$1epfl.ch/ + + securecookie + + host + ^(?:inform|jahia-prod)\.epfl\.ch$ + name + .+ + + target + + + host + epfl.ch + + + host + *.epfl.ch + + + + + EPIC + + ruleset + + name + EPIC + rule + + from + ^http://(www\.)?epic\.org/ + to + https://$1epic.org/ + + target + + + host + epic.org + + + host + www.epic.org + + + + + ERA.int + + ruleset + + name + ERA.int + rule + + from + ^http://(?:www\.)?era\.int/ + to + https://www.era.int/ + + target + + + host + era.int + + + host + www.era.int + + + + + ERNW.de + + ruleset + + name + ERNW.de + rule + + from + ^http://(?:www\.)?ernw\.de/ + to + https://www.ernw.de/ + + target + + + host + ernw.de + + + host + www.ernw.de + + + + + ESB.ie + + ruleset + + name + ESB.ie + rule + + + from + ^http://(?:www\.)?esb\.ie/ + to + https://www.esb.ie/ + + + from + ^http://(www\.)?esbie\.ie/ + to + https://$1esbie.ie/ + + + target + + + host + www.esb.ie + + + host + esb.ie + + + host + www.esbie.ie + + + host + esbie.ie + + + + + ESET (partial) + + ruleset + + exclusion + + + pattern + ^http://blog\.eset\.com/(?!wp-content/) + + + pattern + ^http://kb\.eset\.com/(?!esetkb/a(?:pp|sset)s/) + + + name + ESET (partial) + rule + + + from + ^http://(?:www\.)?(?:ese|sicontac)t\.at/ + to + https://www.sicontact.at/ + + + from + ^http://shop\.eset\.co\.uk/ + to + https://shop.eset.co.uk/ + + + from + ^http://((?:blog|forum|go|kb|my|www)\.)?eset\.com/ + to + https://$1eset.com/ + + + from + ^http://(static\d|www)\.esetstatic\.com/ + to + https://$1.esetstatic.com/ + + + from + ^http://(?:www\.)?eset\.de/(\?.*)?$ + to + https://www.eset.com/de$1 + + + securecookie + + + host + ^shop\.eset\.co\.uk$ + name + .+ + + + host + ^(?:forum|go|my)\.eset\.com$ + name + .+ + + + host + ^\.www\.sicontact\.at$ + name + .+ + + + target + + + host + eset.* + + + host + www.eset.* + + + host + shop.eset.co.uk + + + host + eset.com + + + host + *.eset.com + + + host + *.esetstatic.com + + + host + sicontact.at + + + host + *.sicontact.at + + + + + ESET NOD32 + + ruleset + + name + ESET NOD32 + rule + + from + ^http://(www\.)?esetnod32\.ru/ + to + https://$1esetnod32.ru/ + + securecookie + + host + ^\.esetnod32\.ru$ + name + .+ + + target + + + host + esetnod32.ru + + + host + *.esetnod32.ru + + + + + ESI + + ruleset + + name + ESI + rule + + from + ^http://www\.esi\.dz/ + to + https://www.esi.dz/ + + securecookie + + host + ^(?:www)?\.esi\.dz$ + name + .+ + + target + + host + *.esi.dz + + + + ESI-Group.com + + ruleset + + name + ESI-Group.com + rule + + from + ^http://(myesi\.|www\.)?esi-group\.com/ + to + https://$1esi-group.com/ + + target + + + host + esi-group.com + + + host + *.esi-group.com + + + + + ESISS + + ruleset + + name + ESISS + rule + + from + ^http://(?:www\.)?esiss\.ac\.uk/ + to + https://www.esiss.ac.uk/ + + securecookie + + host + ^(.+\.)?esiss\.ac\.uk$ + name + .* + + target + + + host + esiss.ac.uk + + + host + www.esiss.ac.uk + + + + + ESOMAR.org + + ruleset + + name + ESOMAR.org + rule + + from + ^http://((?:directory|payment|rwconnect|www)\.)?esomar\.org/ + to + https://$1esomar.org/ + + securecookie + + + host + .*\.esomar\.org$ + name + ^__utm\w$ + + + host + ^(?:directory|www)\.esomar\.org$ + name + .+ + + + target + + + host + esomar.org + + + host + *.esomar.org + + + + + ESRB + + ruleset + + name + ESRB + rule + + from + ^http://(?:www\.)?esrb\.org/ + to + https://www.esrb.org/ + + target + + + host + www.esrb.org + + + host + esrb.org + + + + + ESTA Visas.org + + ruleset + + name + ESTA Visas.org + rule + + from + ^http://(www\.)?estavisas\.org/ + to + https://$1estavisas.org/ + + securecookie + + host + ^www\.estavisas\.org$ + name + .+ + + target + + + host + estavisas.org + + + host + www.estavisas.org + + + + + ESV.de + + ruleset + + name + ESV.de + rule + + from + ^http://(?:www\.)?esv\.de/ + to + https://www.esv.de/ + + securecookie + + host + ^www\.esv\.de$ + name + .+ + + target + + + host + esv.de + + + host + www.esv.de + + + + + ETH Zürich (partial) + + ruleset + + name + ETH Zürich (partial) + rule + + + from + ^http://darch\.ch/ + to + https://darch.ch/ + + + from + ^https?://(?:www\.)?(ethlife\.)?ethz\.ch/ + to + https://www.$1ethz.ch/ + + + from + ^http://((?:www\.)?(?:(?:bilddb(?:\.gta)?|media\.gta|intern|it)\.)?arch|people\.inf|stat|webgta|webita)\.ethz\.ch/ + to + https://$1.ethz.ch/ + + + securecookie + + host + ^www\.ethz\.ch$ + name + .+ + + target + + + host + darch.ch + + + host + ethz.ch + + + host + *.ethz.ch + + + host + www.ethlife.ethz.ch + + + host + *.arch.ethz.ch + + + host + www.*.arch.ethz.ch + + + host + *.gta.arch.ethz.ch + + + host + www.*.gta.arch.ethz.ch + + + + + ETS + + ruleset + + name + ETS + rule + + + from + ^http://(?:www\.)?ets\.org/ + to + https://www.ets.org/ + + + from + ^http://(apstudio|ept-elm|gedcalifornia|gresearch|ibtsd3|mygre|onyx|ppi|srp|title2|toefl-registration|toeflrts)\.ets\.org/ + to + https://$1.ets.org/ + + + target + + + host + ets.org + + + host + *.ets.org + + + + + EUSecWest + + ruleset + + name + EUSecWest + rule + + from + ^http://(?:www\.)?eusecwest\.com/ + to + https://eusecwest.com/ + + securecookie + + host + ^\.eusecwest\.com$ + name + .+ + + target + + + host + eusecwest.com + + + host + *.eusecwest.com + + + + + EUserv.de (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?euserv\.de/+(?!favicon\.ico|pic/) + + name + EUserv.de (partial) + rule + + + from + ^http://(?:(www\.)?ssl\.|www\.)?euserv\.de/ + to + https://$1ssl.euserv.de/ + + + from + ^http://support\.euserv\.de/ + to + https://support.euserv.de/ + + + target + + + host + euserv.de + + + host + *.euserv.de + + + + + EVE Online.com (partial) + + ruleset + + name + EVE Online.com (partial) + rule + + from + ^http://((?:community|forums|gate|image|login|secure|wiki|www)\.)?eveonline\.com/ + to + https://$1eveonline.com/ + + securecookie + + host + ^(?:forums|secure|wiki)\.eveonline\.com$ + name + .+ + + target + + + host + eveonline.com + + + host + *.eveonline.com + + + + + EVGA (partial) + + ruleset + + exclusion + + pattern + ^http://www\.evga\.com/(?:forums|Products)/\w+\.aspx + + name + EVGA (partial) + rule + + + from + ^https?://(?:www\.)?evga\.com/((?:.+/)?(?:$|\w+\.(?:aspx|css|gif|jpg|js|png|swf|xml)($|\?)|attachments/|files/|forumsarchive/|images/|includes/|JS/)|banners/|favicon\.ico|gaming/wp-content/|(?:[sS]upport/)?login\.asp$|support/d(?:ownload|rivers)/|Support/download/) + to + https://www.evga.com/$1 + + + from + ^https?://(?:(?:asia|[bfk]r|eu|jp|latam)\.evga\.com|(?:www\.)?evga\.com\.(?:au|tw))/((?:.+/)?images/common/|favicon\.ico$) + to + https://www.evga.com/$1 + + + securecookie + + host + ^www\.evga\.com$ + name + ^dbforums.*$ + + target + + + host + evga.com + + + host + *.evga.com + + + host + evga.com.au + + + host + www.evga.com.au + + + host + evga.com.tw + + + host + www.evga.com.tw + + + + + EXANTE + + ruleset + + name + EXANTE + rule + + from + ^http://(www\.)?exante\.eu/ + to + https://$1exante.eu/ + + securecookie + + host + ^exante\.eu$ + name + .+ + + target + + + host + exante.eu + + + host + www.exante.eu + + + + + EYE film.nl (partial) + + ruleset + + name + EYE film.nl (partial) + rule + + from + ^http://(www\.)?eyefilm\.nl/ + to + https://$1eyefilm.nl/ + + target + + + host + eyefilm.nl + + + host + *.eyefilm.nl + + + + + EZ Web Hosting + + ruleset + + exclusion + + pattern + ^http://www\.ez-web-hosting\.com/client/(announcements|index)\.php + + name + EZ Web Hosting + rule + + from + ^http://(www\.)?ez-web-hosting\.com/ + to + https://$1ez-web-hosting.com/ + + securecookie + + host + ^.*\.ez-web-hosting\.com$ + name + .* + + target + + + host + ez-web-hosting.com + + + host + *.ez-web-hosting.com + + + + + EZ-Download + + ruleset + + name + EZ-Download + rule + + + from + ^http://(downloader\.|www\.)?ez-download\.com/ + to + https://$1ez-download.com/ + + + from + ^http://media\.ez-download\.com/ + to + https://d227ccvjlkns26.cloudfront.net/ + + + securecookie + + host + ^(?:www)?\.ez-download\.com$ + name + .+ + + target + + + host + ez-download.com + + + host + *.ez-download.com + + + + + EZCrypt + + ruleset + + name + EZCrypt + rule + + from + ^http://(www\.)?ezcrypt\.it/ + to + https://$1ezcrypt.it/ + + target + + + host + ezcrypt.it + + + host + www.ezcrypt.it + + + + + EZOSHosting (false MCB) + + ruleset + + name + EZOSHosting (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:cdn\.|(support\.|www\.))?ezoshosting\.com/ + to + https://$1ezoshosting.com/ + + securecookie + + host + ^.*\.ezoshosting\.com$ + name + .* + + target + + + host + ezoshosting.com + + + host + *.ezoshosting.com + + + + + EZTV + + ruleset + + name + EZTV + rule + + + from + ^http://(www\.)?ez(img|tv)\.it/ + to + https://$1ez$2.it/ + + + from + ^https?://(?:www\.)?(ezrss\.it|zoink\.it|ezimages\.eu)/ + to + https://$1/ + + + from + ^http://torrent\.zoink\.it/ + to + https://torrent.zoink.it/ + + + securecookie + + + host + ^\.ezimg\.it$ + name + .+ + + + host + ^\.?eztv\.it$ + name + .+ + + + target + + + host + ezimages.eu + + + host + www.ezimages.eu + + + host + ezimg.it + + + host + *.ezimg.it + + + host + ezrss.it + + + host + www.ezrss.it + + + host + eztv.it + + + host + *.eztv.it + + + host + zoink.it + + + host + www.zoink.it + + + + + Earl + + ruleset + + name + Earl + rule + + from + ^http://(www\.)?earl\.io/ + to + https://$1earl.io/ + + securecookie + + host + ^earl\.io$ + name + .+ + + target + + + host + earl.io + + + host + www.earl.io + + + + + Earth & Space Research + + ruleset + + name + Earth & Space Research + rule + + from + ^http://(www\.)?esr\.org/ + to + https://$1esr.org/ + + target + + + host + esr.org + + + host + www.esr.org + + + + + Earwolf Podcast Network + + ruleset + + name + Earwolf Podcast Network + rule + + from + ^http://(?:cdn\d?\.|(www\.))?earwolf\.com/ + to + https://$1earwolf.com/ + + securecookie + + host + ^(?:www\.)?earwolf\.com$ + name + .+ + + target + + + host + earwolf.com + + + host + *.earwolf.com + + + + + Easily.co.uk (partial) + + ruleset + + name + Easily.co.uk (partial) + rule + + from + ^http://(?:(webmail\.)|www\.)?easily\.co\.uk/ + to + https://$1easily.co.uk/ + + securecookie + + host + ^easily\.co\.uk$ + name + .+ + + target + + + host + easily.co.uk + + + host + *.easily.co.uk + + + + + Eastbay (partial) + + ruleset + + name + Eastbay (partial) + rule + + + from + ^https?://(?:www\.)?eastbay\.com/ + to + https://www.eastbay.com/ + + + from + ^http://(images|m|teamsales)\.eastbay\.com/ + to + https://$1.eastbay.com/ + + + securecookie + + host + ^.*\.eastbay\.com$ + name + .+ + + target + + + host + eastbay.com + + + host + *.eastbay.com + + + host + *.teamsales.eastbay.com + + + host + *.www.eastbay.com + + + + + Eastbay Team Services + + ruleset + + name + Eastbay Team Services + rule + + from + ^https?://www.eastbayteamservices\.com/ + to + https://www.eastbayteamservices.com/ + + securecookie + + host + ^www\.eastbayteamservices\.com$ + name + .+ + + target + + + host + eastbayteamservices.com + + + host + www.eastbayteamservices.com + + + + + Eastmon.com.au (partial) + + ruleset + + name + Eastmon.com.au (partial) + rule + + from + ^http://staging\.eastmon\.com\.au/(?=css/|favicon\.ico|images/) + to + https://staging.eastmon.com.au/ + + target + + host + staging.eastmon.com.au + + + + Easy Hébergement + + ruleset + + name + Easy Hébergement + rule + + + from + ^http://(clients\.|commande\.|support\.|www\.)?easy-hebergement\.fr/ + to + https://$1easy-hebergement.fr/ + + + from + ^http://(www\.)?cluster1\.easy-hebergement\.net/ + to + https://$1cluster1.easy-hebergement.net/ + + + securecookie + + host + ^\.easy-hebergement\.fr$ + name + .+ + + target + + + host + easy-hebergement.fr + + + host + *.easy-hebergement.fr + + + host + cluster1.easy-hebergement.net + + + host + www.cluster1.easy-hebergement.net + + + + + EasyNews + + ruleset + + name + EasyNews + rule + + + from + ^http://(?:www\.)?easynews\.com/ + to + https://easynews.com/ + + + from + ^http://members\.easynews\.com/ + to + https://secure.members.easynews.com/ + + + target + + + host + www.easynews.com + + + host + easynews.com + + + host + members.easynews.com + + + + + EasyPost.com + + ruleset + + name + EasyPost.com + rule + + + from + ^http://(www\.)?easypost\.com/ + to + https://$1easypost.com/ + + + from + ^http://status\.easypost\.com/ + to + https://easypost.statuspage.io/ + + + target + + + host + easypost.com + + + host + *.easypost.com + + + + + Easyspace (partial) + + ruleset + + name + Easyspace (partial) + rule + + from + ^http://controlpanel\.easyspace\.com/ + to + https://controlpanel.easyspace.com/ + + securecookie + + host + ^.*\.easyspace\.com$ + name + .* + + target + + host + *.easyspace.com + + + + Eater + + ruleset + + name + Eater + platform + mixedcontent + rule + + from + ^http://(?:www\.)?eater\.com/ + to + https://eater.com/ + + target + + + host + eater.com + + + host + www.eater.com + + + + + Ebi.ac.uk + + ruleset + + exclusion + + pattern + ^http://www\.ebi\.ac\.uk/systems-srv/ + + name + Ebi.ac.uk + rule + + from + ^http://www\.ebi\.ac\.uk/ + to + https://www.ebi.ac.uk/ + + target + + host + www.ebi.ac.uk + + + + Ebuyer.com (false MCB) + + ruleset + + name + Ebuyer.com (false MCB) + platform + mixedcontent + rule + + + from + ^http://blog\.ebuyer\.com/ + to + https://www.ebuyer.com/blog/ + + + from + ^http://www\.ebuyer\.com/blog(?=$|[?/]) + to + https://www.ebuyer.com/blog + + + target + + + host + blog.ebuyer.com + + + host + www.ebuyer.com + + + + + Ebuyer.com (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.ebuyer\.com/+(?!blog/(?:favicon\.ico|index\.php\?ak_action=aktt_css|wp-content/|wp-includes/)|favicon\.ico) + + + pattern + ^http://accounts\.ebuyer\.com/+(?!css/|favicon\.ico|images/|js/) + + + name + Ebuyer.com (partial) + rule + + + from + ^http://((?:accounts|image|orders|static|www)\.)?ebuyer\.com/ + to + https://$1ebuyer.com/ + + + from + ^http://blog\.ebuyer\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://www.ebuyer.com/blog/ + + + securecookie + + host + ^forums\.ebuyer\.com$ + name + .+ + + target + + + host + ebuyer.com + + + host + *.ebuyer.com + + + + + Ebyr CDN.net + + ruleset + + name + Ebyr CDN.net + rule + + from + ^http://img\.ebyrcdn\.net/ + to + https://img.ebyrcdn.net/ + + target + + host + img.ebyrcdn.net + + + + Echo (partial) + + ruleset + + name + Echo (partial) + rule + + from + ^http://(www\.)?js-kit\.com/ + to + https://$1js-kit.com/ + + target + + + host + js-kit.com + + + host + www.js-kit.com + + + + + Echo Enabled + + ruleset + + name + Echo Enabled + rule + + from + ^http://(api|cdn)\.echoenabled\.com/ + to + https://$1.echoenabled.com/ + + target + + + host + api.echoenabled.com + + + host + cdn.echoenabled.com + + + + + EchoDitto.com + + ruleset + + name + EchoDitto.com + rule + + from + ^http://(www\.)?echoditto\.com/ + to + https://$1echoditto.com/ + + securecookie + + host + ^(?:www\.)?echoditto\.com$ + name + .+ + + target + + + host + echoditto.com + + + host + www.echoditto.com + + + + + Eclipse (partial) + + ruleset + + name + Eclipse (partial) + rule + + + from + ^http://((?:bugs|dev|git|www)\.)?eclipse\.org/ + to + https://$1eclipse.org/ + + + from + ^http://marketplace(1)?\.eclipse\.org/(eclipse\.org-common|misc|modules|sites)/ + to + https://marketplace$1.eclipse.org/$2/ + + + securecookie + + host + ^bugs\.eclipse\.org$ + name + .* + + target + + + host + eclipse.org + + + host + *.eclipse.org + + + + + Eclipso.ch + + ruleset + + name + Eclipso.ch + rule + + from + ^http://(www\.)?eclipso\.ch/ + to + https://www.eclipso.ch/ + + target + + + host + www.eclipso.ch + + + host + eclipso.ch + + + + + Ecoff.org + + ruleset + + name + Ecoff.org + rule + + from + ^http://(www\.)?ecoff\.org/ + to + https://$1ecoff.org/ + + securecookie + + host + ^(?:w*\.)?ecoff\.org$ + name + .+ + + target + + + host + ecoff.org + + + host + *.ecoff.org + + + + + Ecommerce (partial) + + ruleset + + name + Ecommerce (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?ecommerce\.com/ + to + https://$1ecommerce.com/ + + + from + ^http://((?:assets|manage|www)\.)?ixwebhosting\.com/ + to + https://$1ixwebhosting.com/ + + + from + ^https?://blog\.ixwebhosting\.com/ + to + https://www.ixwebhosting.com/blog/ + + + from + ^https?://email\.ixwebhosting\.com/ + to + https://webmail.opentransfer.com/horde/imp/ + + + from + ^https?://(?:www\.)?opentransfer\.com/ + to + https://ecommerce.com/ + + + from + ^http://webmail\.opentransfer\.com/ + to + https://webmail.opentransfer.com/ + + + from + ^http://(manage\.|www\.)?webhost\.biz/ + to + https://$1webhost.biz/ + + + securecookie + + + host + ^(.*\.)?ixwebhosting\.com$ + name + .* + + + host + ^\.webmail\.opentransfer\.com$ + name + .* + + + host + ^manage\.webhost\.biz$ + name + .* + + + target + + + host + ecommerce.com + + + host + www.ecommerce.com + + + host + ixwebhosting.com + + + host + *.ixwebhosting.com + + + host + opentransfer.com + + + host + *.opentransfer.com + + + host + *.webmail.opentransfer.com + + + host + webhost.biz + + + host + *.webhost.biz + + + + + Econda + + ruleset + + name + Econda + rule + + + from + ^http://www\.econda\.de/ + to + https://www.econda.de/ + + + from + ^http://ww1\.econda-monitor\.de/ + to + https://ww1.econda-monitor.de/ + + + target + + + host + *.econda.de + + + host + *.econda-monitor.de + + + + + Economic Policy Institute (partial) + + ruleset + + name + Economic Policy Institute (partial) + rule + + + from + ^http://www\.epi\.org/page/-/ + to + https://secure.epi.org/page/-/ + + + from + ^http://(my|secure)\.epi\.org/ + to + https://$1.epi.org/ + + + securecookie + + host + ^(my|\.?secure)\.epi\.org$ + name + .* + + target + + + host + *.epi.org + + + host + *.secure.epi.org + + + + + Economist (partial) + + ruleset + + name + Economist (partial) + rule + + + from + ^http://(?:www\.)?economist\.com/(debate(?:$|[\?/])|favicon\.ico|sites/|user) + to + https://www.economist.com/$1 + + + from + ^http://(libertymutual|media|(?:www\.)?store)\.economist\.com/ + to + https://$1.economist.com/ + + + from + ^http://stats\.economist\.com/ + to + https://economistcomprod.122.2o7.net/ + + + from + ^http://cdn\.static-economist\.com/ + to + https://media.economist.com/ + + + target + + + host + economist.com + + + host + *.economist.com + + + host + cdn.static-economist.com + + + + + Economist Intelligence Unit (partial) + + ruleset + + name + Economist Intelligence Unit (partial) + rule + + from + ^http://(www\.)?eiu\.com/ + to + https://$1eiu.com/ + + securecookie + + host + ^\.eiu\.com$ + name + .+ + + target + + + host + eiu.com + + + host + *.eiu.com + + + + + Ecwid (partial) + + ruleset + + name + Ecwid (partial) + rule + + + from + ^https?://images-cdn\.ecwid\.com/ + to + https://dpbfm6h358sh7.cloudfront.net/ + + + from + ^https?://kb\.ecwid\.com/(f/|theme_image\.php) + to + https://ecwid.pbworks.com/$1 + + + from + ^http://my\.ecwid\.com/ + to + https://my.ecwid.com/ + + + from + ^https?://static\.ecwid\.com/ + to + https://dj925myfyz5v.cloudfront.net/ + + + securecookie + + host + ^my\.ecwid\.com$ + name + .+ + + target + + host + *.ecwid.com + + + + Ed.ac.uk (partial) + + ruleset + + name + Ed.ac.uk (partial) + rule + + from + ^http://(www\.ease|wiki\.inf|www\.inf)\.ed\.ac\.uk/ + to + https://$1.ed.ac.uk/ + + target + + host + *.ed.ac.uk + + + + EdWeek.org (partial) + + ruleset + + exclusion + + pattern + ^http://pddirectory\.edweek\.org/+(?:$|\?) + + name + EdWeek.org (partial) + rule + + + from + ^http://(?:www\.)?edweek\.org/(?=css/|favicon\.ico|images/|js/|media/) + to + https://secure.edweek.org/ + + + from + ^http://(myaccount|pddirectory|secure|sm)\.edweek\.org/ + to + https://$1.edweek.org/ + + + from + ^http://m\.edweek\.org/ + to + https://edweek-org.122.2o7.net/ + + + target + + + host + edweek.org + + + host + *.edweek.org + + + + + Edarabia.com + + ruleset + + name + Edarabia.com + rule + + from + ^http://(www\.)?edarabia\.com/ + to + https://$1edarabia.com/ + + securecookie + + host + ^\.edarabia\.com$ + name + .+ + + target + + + host + edarabia.com + + + host + *.edarabia.com + + + + + Edas.info + + ruleset + + name + Edas.info + rule + + from + ^http://(?:www\.)?edas\.info/ + to + https://www.edas.info/ + + target + + + host + edas.info + + + host + www.edas.info + + + + + Eddie Izzard (partial) + + ruleset + + name + Eddie Izzard (partial) + rule + + from + ^https?://(?:www\.)?eddieizzard\.com/([^/]+/assets/|favicon\.ico|resource/) + to + https://www.eddieizzard.com/$1 + + target + + + host + eddieizzard.com + + + host + www.eddieizzard.com + + + + + EdenHost.com + + ruleset + + name + EdenHost.com + rule + + from + ^http://(www\.)?edenhost\.com/ + to + https://$1edenhost.com/ + + securecookie + + host + ^\.edenhost\.com$ + name + .+ + + target + + + host + edenhost.com + + + host + *.edenhost.com + + + + + Edfil.es + + ruleset + + name + Edfil.es + rule + + from + ^http://(?:www\.)?edfil\.es/ + to + https://www.edfil.es/ + + target + + + host + edfil.es + + + host + www.edfil.es + + + + + Edge Snapbacks.com + + ruleset + + name + Edge Snapbacks.com + rule + + from + ^http://(www\.)?edgesnapbacks\.com/ + to + https://$1edgesnapbacks.com/ + + securecookie + + host + ^(?:w*\.)?edgesnapbacks\.com$ + name + .+ + + target + + + host + edgesnapbacks.com + + + host + *.edgesnapbacks.com + + + + + Edgerunner.com (partial) + + ruleset + + name + Edgerunner.com (partial) + rule + + from + ^http://store\.edgerunner\.com/ + to + https://store.edgerunner.com/ + + securecookie + + host + ^store\.edgerunner\.com$ + name + .+ + + target + + host + store.edgerunner.com + + + + Edgewall Software (partial) + + ruleset + + name + Edgewall Software (partial) + rule + + from + ^http://hg\.edgewall\.org/ + to + https://hg.edgewall.org/ + + target + + host + hg.edgewall.org + + + + Editola + + ruleset + + name + Editola + rule + + from + ^http://(www\.)?editola\.com/ + to + https://$1editola.com/ + + securecookie + + host + ^\.editola\.com$ + name + .+ + + target + + + host + editola.com + + + host + *.editola.com + + + + + Edublogs + + ruleset + + name + Edublogs + rule + + + from + ^http://files\.campus\.edublogs\.org/ + to + https://s3.amazonaws.com/files.campus.edublogs.org/ + + + from + ^http://([\w-]+\.)?edublogs\.org/ + to + https://$1edublogs.org/ + + + securecookie + + host + ^(?:.+\.)?edublogs\.org$ + name + .+ + + target + + + host + edublogs.org + + + host + *.edublogs.org + + + + + Edubuntu + + ruleset + + name + Edubuntu + rule + + from + ^http://(wiki\.|www\.)?edubuntu\.org/ + to + https://$1edubuntu.org/ + + securecookie + + host + ^wiki\.edubuntu\.org$ + name + .+ + + target + + + host + edubuntu.org + + + host + *.edubuntu.org + + + + + EducaCursos + + ruleset + + name + EducaCursos + rule + + from + ^http://(www\.)?educacursos\.com/ + to + https://$1educacursos.com/ + + securecookie + + host + ^(?:w*\.)?educacursos\.com$ + name + .+ + + target + + + host + educacursos.com + + + host + *.educacursos.com + + + + + Educause (partial) + + ruleset + + name + Educause (partial) + rule + + + from + ^http://(net\.)?educause\.edu/ + to + https://$1educause.edu/ + + + from + ^http://www\.educause\.edu/(edudomain|misc|sites|user|visuals)/ + to + https://www.educause.edu/$1/ + + + target + + + host + educause.edu + + + host + *.educause.edu + + + + + Edward Tufte + + ruleset + + name + Edward Tufte + rule + + from + ^https?://(?:www\.)?edwardtufte\.com/ + to + https://www.edwardtufte.com/ + + securecookie + + host + ^www\.edwardtufte\.com$ + name + .+ + + target + + + host + edwardtufte.com + + + host + www.edwardtufte.com + + + + + Eerdmans.com + + ruleset + + name + Eerdmans.com + rule + + from + ^http://(?:www\.)?eerdmans\.com/ + to + https://www.eerdmans.com/ + + securecookie + + host + ^\.eerdmans\.com$ + name + .+ + + target + + + host + eerdmans.com + + + host + *.eerdmans.com + + + + + Effective Measure + + ruleset + + name + Effective Measure + rule + + + from + ^http://((?:au3?|in|me|me-cdn|s|www)\.)effectivemeasure\.net/ + to + https://$1effectivemeasure.net/ + + + from + ^https?://za1?\.effectivemeasure\.net/ + to + https://za1.effectivemeasure.net/ + + + from + ^https?://us3?\.effectivemeasure\.net/ + to + https://us3.effectivemeasure.net/ + + + securecookie + + host + ^\.effectivemeasure\.net$ + name + .* + + target + + host + *.effectivemeasure.net + + + + Effi.org + + ruleset + + name + Effi.org + rule + + from + ^http://(www\.)?effi\.org/ + to + https://effi.org/ + + target + + + host + effi.org + + + host + www.effi.org + + + + + EfficiOS + + ruleset + + name + EfficiOS + rule + + from + ^http://(www\.)?efficios\.com/ + to + https://$1efficios.com/ + + securecookie + + host + ^\.efficios\.com$ + name + .+ + + target + + + host + efficios.com + + + host + *.efficios.com + + + + + Effiliation (partial) + + ruleset + + name + Effiliation (partial) + rule + + from + ^http://track\.effiliation\.com/ + to + https://track.effiliation.com/ + + securecookie + + host + ^track\.effiliation\.com$ + name + .+ + + target + + host + track.effiliation.com + + + + Egg + + ruleset + + name + Egg + rule + + + from + ^http://(?:new\.|www\.)?egg\.com/ + to + https://new.egg.com/ + + + from + ^http://(your|phonehome)\.egg\.com/ + to + https://$1.egg.com/ + + + target + + + host + *.egg.com + + + host + egg.com + + + + + Egnyte + + ruleset + + name + Egnyte + rule + + from + ^http://(\w+\.)?egnyte\.com/ + to + https://$1egnyte.com/ + + securecookie + + host + ^(.*\.)?egnyte\.com$ + name + .* + + target + + + host + egnyte.com + + + host + *.egnyte.com + + + + + Eide-ITC.no + + ruleset + + name + Eide-ITC.no + rule + + from + ^http://(?:www\.)?eide-itc\.no/ + to + https://eide-itc.no/ + + target + + + host + eide-itc.no + + + host + www.eide-itc.no + + + + + Eis.de + + ruleset + + name + Eis.de + rule + + from + ^http://(images|www)\.eis\.de/ + to + https://$1.eis.de/ + + target + + host + *.eis.de + + + + Ekiga (partial) + + ruleset + + name + Ekiga (partial) + rule + + + from + ^http://(www\.)?ekiga\.net/ + to + https://ekiga.net/ + + + from + ^http://(www\.)?ekiga\.org/sites/all/themes/ekiga_net/ + to + https://ekiga.net/ + + + securecookie + + host + ^(www\.)?ekiga\.net$ + name + .* + + target + + + host + ekiga.net + + + host + www.ekiga.net + + + host + ekiga.org + + + host + www.ekiga.org + + + + + El pueblo + + ruleset + + name + El pueblo + platform + mixedcontent + rule + + from + ^http://(www\.)?elpueblo\.com/ + to + https://$1elpueblo.com/ + + securecookie + + host + ^(?:w*\.)?elpueblo\.com$ + name + .+ + + target + + + host + elpueblo.com + + + host + *.elpueblo.com + + + + + El-Tramo.be + + ruleset + + name + El-Tramo.be + rule + + from + ^http://(www\.)?el-tramo\.be/ + to + https://$1el-tramo.be/ + + target + + + host + el-tramo.be + + + host + www.el-tramo.be + + + + + Elaf Net TV + + ruleset + + name + Elaf Net TV + rule + + from + ^http://(www\.)?elafnettv\.com/ + to + https://$1elafnettv.com/ + + securecookie + + host + ^\.(?:www\.)?elafnettv\.com$ + name + .+ + + target + + + host + elafnettv.com + + + host + *.elafnettv.com + + + + + Elanex.biz + + ruleset + + name + Elanex.biz + platform + firefox + rule + + from + ^http://(www\.)?elanex\.biz/ + to + https://www.elanex.biz/ + + securecookie + + + host + ^www\.elanex\.biz$ + name + .+ + + + host + ^elanex\.biz$ + name + .+ + + + target + + + host + www.elanex.biz + + + host + elanex.biz + + + + + Elcomsoft (partial) + + ruleset + + name + Elcomsoft (partial) + rule + + from + ^http://secure\.elcomsoft\.com/ + to + https://secure.elcomsoft.com/ + + target + + host + secure.elcomsoft.com + + + + Elder Scrolls Online.com + + ruleset + + name + Elder Scrolls Online.com + rule + + + from + ^http://(www\.)?elderscrollsonline\.com/ + to + https://$1elderscrollsonline.com/ + + + from + ^https?://static\.elderscrollsonline\.com/ + to + https://a248.e.akamai.net/f/299/6258/9/static.elderscrollsonline.com/ + + + securecookie + + host + ^www\.elderscrollsonline\.com$ + name + .+ + + target + + + host + elderscrollsonline.com + + + host + *.elderscrollsonline.com + + + + + Electric Embers (partial) + + ruleset + + name + Electric Embers (partial) + rule + + from + ^http://(internal|mail)\.electricembers\.net/ + to + https://$1.electricembers.net/ + + securecookie + + host + ^mail\.electricembers\.net$ + name + .+ + + target + + host + *.electricembers.net + + + + Electric Studio (partial) + + ruleset + + name + Electric Studio (partial) + rule + + from + ^http://clients\.electricstudio\.co\.uk/ + to + https://clients.electricstudio.co.uk/ + + target + + host + clients.electricstudio.co.uk + + + + Electronic Arts (partial) + + ruleset + + name + Electronic Arts (partial) + platform + mixedcontent + rule + + + from + ^http://ea\.com/ + to + https://www.ea.com/ + + + from + ^http://(?:(activate|ll\.assets|fonts|help|images|socialsignup|tos|www)|(?:www\.)?(jobs))\.ea\.com/ + to + https://$1$2.ea.com/ + + + from + ^http://(?:ssl\.)?resources\.ea\.com/ + to + https://ssl.resources.ea.com/ + + + from + ^http://(?:web-)?(static|vassets)\.ea\.com/ + to + https://a248.e.akamai.net/$1.ea.com/ + + + from + ^http://support\.ea\.com/ + to + https://help.ea.com/ + + + from + ^http://om\.eamobile\.com/ + to + https://eamwebproduction.122.2o7.net/ + + + from + ^http://synergy-stage\.eamobile\.com/ + to + https://synergy-stage.eamobile.com/ + + + from + ^http://origin\.com/ + to + https://www.origin.com/ + + + from + ^http://www\.origin\.com/favicon\.ico + to + https://www.origin.com/favicon.ico + + + from + ^http://(activate|sso)\.origin\.com/ + to + https://$1.origin.com/ + + + from + ^http://store\.origin\.com/DRHM/Storefront/Site/ + to + https://store.origin.com/DRHM/Storefront/Site/ + + + from + ^http://(?:llnw\.|www\.)?thesims3\.com/ + to + https://www.thesims3.com/ + + + from + ^http://(forum|\w\w)\.thesims3\.com/ + to + https://$1.thesims3.com/ + + + from + ^http://(\w\w\.)?store\.thesims3\.com/(community|content/|css/|images/) + to + https://$1store.thesims3.com/$2 + + + from + ^http://llnw\.store\.thesims3\.com/ + to + https://llnw.store.thesims3.com/ + + + securecookie + + + host + ^\.ea\.com$ + name + ^(CEM-session|s_.*)$ + + + host + ^(help|jobs|profile|ssl\.resources)\.ea\.com$ + name + .* + + + host + ^sso\.origin\.com$ + name + .* + + + host + ^(forum|\w\w|www)?\.thesims\.com$ + name + .* + + + target + + + host + ea.com + + + host + *.ea.com + + + host + om.eamobile.com + + + host + synergy-stage.eamobile.com + + + host + origin.com + + + host + *.origin.com + + + host + thesims3.com + + + host + *.thesims3.com + + + host + *.store.thesims3.com + + + + + Electronic Arts Intermix (partial) + + ruleset + + name + Electronic Arts Intermix (partial) + rule + + from + ^http://(www\.)?eai\.org/(cartAdd\.htm|css/|images/|user_files/) + to + https://$1eai.org/$2 + + target + + + host + eai.org + + + host + www.eai.org + + + + + Electronic Frontiers Australia + + ruleset + + name + Electronic Frontiers Australia + rule + + from + ^http://(members\.|www\.)?efa\.org\.au/ + to + https://$1efa.org.au/ + + securecookie + + host + ^(?:members|\.?www)?\.efa\.org\.au$ + name + .+ + + target + + + host + efa.org.au + + + host + *.efa.org.au + + + + + Elegant Themes.com + + ruleset + + name + Elegant Themes.com + rule + + from + ^http://(cdn\.|www\.)?elegantthemes\.com/ + to + https://$1elegantthemes.com/ + + target + + + host + elegantthemes.com + + + host + *.elegantthemes.com + + + + + Elementary OS.org (false MCB) + + ruleset + + name + Elementary OS.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?elementaryos\.org/ + to + https://$1elementaryos.org/ + + securecookie + + host + ^\.?elementaryos\.org$ + name + .+ + + target + + + host + elementaryos.org + + + host + *.elementaryos.org + + + + + Elementary OS.org (partial) + + ruleset + + exclusion + + pattern + ^http://elementaryos\.org/+(?!css/|favicon\.ico|img/) + + name + Elementary OS.org (partial) + rule + + from + ^http://(www\.)?elementaryos\.org/ + to + https://$1elementaryos.org/ + + securecookie + + host + ^www\.elementaryos\.org$ + name + .+ + + target + + + host + elementaryos.org + + + host + www.elementaryos.org + + + + + ElevenPaths + + ruleset + + name + ElevenPaths + rule + + from + ^http://(?:www\.)?elevenpaths\.com/ + to + https://www.elevenpaths.com/ + + target + + + host + elevenpaths.com + + + host + *.elevenpaths.com + + + + + Elgiganten.se + + ruleset + + name + Elgiganten.se + rule + + + from + ^http://elgiganten\.se/ + to + https://www.elgiganten.se/ + + + from + ^http://www\.elgiganten\.se/ + to + https://www.elgiganten.se/ + + + target + + host + elgiganten.se + + + + Eli Lilly (partial) + + ruleset + + name + Eli Lilly (partial) + rule + + from + ^http://lillypad\.lilly\.c(a|om)/ + to + https://lillypad.lilly.c$1/ + + securecookie + + host + ^lillypad\.lilly\.c(a|om)$ + name + .* + + target + + + host + lillypad.lilly.ca + + + host + lillypad.lilly.com + + + + + Elie Bursztein + + ruleset + + name + Elie Bursztein + rule + + from + ^http://(www\.)?elie\.im/ + to + https://$1elie.im/ + + target + + + host + elie.im + + + host + www.elie.im + + + + + Elite Casting Network.com (partial) + + ruleset + + name + Elite Casting Network.com (partial) + rule + + + from + ^http://(www\.)?elitecastingnetwork\.com/(?=favicon\.ico|img/|min/) + to + https://$1elitecastingnetwork.com/ + + + from + ^http://cdn\.elitecastingnetwork\.com/ + to + https://ecn-cdncloud.netdna-ssl.com/ + + + target + + + host + elitecastingnetwork.com + + + host + *.elitecastingnetwork.com + + + + + EliteKeyboards.com + + ruleset + + name + EliteKeyboards.com + rule + + from + ^http://(www\.)?elitekeyboards\.com/ + to + https://$1elitekeyboards.com/ + + target + + + host + elitekeyboards.com + + + host + www.elitekeyboards.com + + + + + Elitepartner.de + + ruleset + + name + Elitepartner.de + rule + + + from + ^http://((?:www\.)?partnervermittlung|www)\.elitepartner\.de/ + to + https://$1.elitepartner.de/ + + + from + ^http://static\.ep\.elitem\.net/ + to + https://static.ep.elitem.net/ + + + target + + + host + *.elitepartner.de + + + host + *.ep.elitem.net + + + + + Elizabeth Smart Foundation (partial) + + ruleset + + name + Elizabeth Smart Foundation (partial) + rule + + from + ^http://(?:www\.)?elizabethsmartfoundation\.org/wp-content/ + to + https://esf.websocially.com/wp-content/ + + target + + + host + elizabethsmartfoundation.org + + + host + www.elizabethsmartfoundation.org + + + + + Elle.com (partial) + + ruleset + + name + Elle.com (partial) + rule + + + from + ^http://(?:www\.)?elle\.com/(?=api_static/|cm/(?!elle/styles/)|favicon\.ico) + to + https://a248.e.akamai.net/f/1023/4429/1m/www.elle.com/ + + + from + ^http://dating\.elle\.com/(?=assets/|bridge\.js|favicon\.ico|login/*(?:$|\?)|whitelabel/elle/header\.html) + to + https://dating.elle.com/ + + + from + ^http://service\.elle\.com/.* + to + https://w1.buysub.com/servlet/CSGateway?cds_mag_code=ELM + + + target + + + host + elle.com + + + host + *.elle.com + + + + + Elliptic Technologies + + ruleset + + name + Elliptic Technologies + rule + + from + ^http://(www\.)?elliptictech\.com/ + to + https://$1elliptictech.com/ + + securecookie + + host + ^(www\.)?elliptictech\.com$ + name + .* + + target + + + host + elliptictech.com + + + host + www.elliptictech.com + + + + + Ello.co + + ruleset + + name + Ello.co + rule + + from + ^http://(www\.)?ello\.co/ + to + https://$1ello.co/ + + target + + + host + ello.co + + + host + www.ello.co + + + + + Elo Concursos.com.br + + ruleset + + name + Elo Concursos.com.br + rule + + from + ^http://(?:www\.)?eloconcursos\.com\.br/ + to + https://eloconcursos.com.br/ + + securecookie + + host + ^eloconcursos\.com\.br$ + name + .+ + + target + + + host + eloconcursos.com.br + + + host + www.eloconcursos.com.br + + + + + Elo Global e-services + + ruleset + + name + Elo Global e-services + rule + + from + ^http://(www\.)?elotouchexpress\.com/ + to + https://$1elotouchexpress.com/ + + securecookie + + host + ^(?:www\.)?elotouchexpress\.com$ + name + .+ + + target + + + host + elotouchexpress.com + + + host + www.elotouchexpress.com + + + + + Eloqua + + ruleset + + name + Eloqua + rule + + + from + ^http://investor\.eloqua\.com/common/ + to + https://investor.shareholder.com/common/ + + + from + ^http://images\.marketing\.eloqua\.com/ + to + https://s33.t.eloqua.com/ + + + from + ^http://now\.eloqua\.com/ + to + https://secure.eloqua.com/ + + + from + ^http://(secure|static|\w\d+\.t)\.eloqua\.com/ + to + https://$1.eloqua.com/ + + + from + ^http://(?:www\.)?elq\.to/ + to + https://bit.ly/ + + + from + ^http://img\.en25\.com/ + to + https://img.en25.com/ + + + securecookie + + host + ^\.eloqua\.com$ + name + ^EL(?:OQUA|QSTATUS)$ + + target + + + host + *.eloqua.com + + + host + elq.to + + + host + www.elq.to + + + host + img.en25.com + + + + + Eloquent JavaScript.net + + ruleset + + name + Eloquent JavaScript.net + rule + + from + ^http://(www\.)?eloquentjavascript\.net/ + to + https://$1eloquentjavascript.net/ + + target + + + host + eloquentjavascript.net + + + host + www.eloquentjavascript.net + + + + + Elsevier (mixedcontent) + + ruleset + + name + Elsevier (mixedcontent) + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?elsevier\.com/ + to + https://www.elsevier.com/ + + securecookie + + host + ^\.www\.elsevier\.com$ + name + .+ + + target + + + host + elsevier.com + + + host + www.elsevier.com + + + host + *.www.elsevier.com + + + + + Elsevier (partial) + + ruleset + + exclusion + + pattern + ^http://www\.developers\.elsevier\.com/($|action) + + name + Elsevier (partial) + rule + + + from + ^https?://(?:origin-)?(ars|cdn)\.els-cdn\.com/ + to + https://origin-$1.els-cdn.com/ + + + from + ^https?://(?:www\.)?elsevier\.ca/ + to + https://www.elsevier.ca/ + + + from + ^https?://(?:www\.)?developers\.elsevier\.com/ + to + https://www.developers.elsevier.com/ + + + from + ^http://(acw|auth|covers|ees|linkinghub|pa|support)\.elsevier\.com/ + to + https://$1.elsevier.com/ + + + from + ^http://(www\.)?((?:asia|eu|mea|us)\.)?elsevierhealth\.com/ + to + https://$1$2elsevierhealth.com/ + + + from + ^http://secure\.(jbs\.)?elsevierhealth\.com/ + to + https://secure.$1elsevierhealth.com/ + + + from + ^https?://(?:www\.)?elsevierhealth\.com\.au/ + to + https://www.elsevierhealth.com.au/ + + + from + ^http://(www\.)?elsevierhealth\.co\.uk/ + to + https://$1elsevierheath.co.uk/ + + + securecookie + + + host + ^origin-ars\.els-cdn\.com$ + name + .* + + + host + ^www\.elsevier\.ca$ + name + .* + + + host + ^(?!\.www\.elsevier\.).*\.elsevier\.com$ + name + .+ + + + host + (.*\.)?elsevierhealth\.co(m(\.au)?|\.uk)$ + name + .* + + + target + + + host + *.els-cdn.com + + + host + elsevier.ca + + + host + www.elsevier.ca + + + host + *.elsevier.com + + + host + elsevierhealth.com + + + host + *.elsevierhealth.com + + + host + elsevierhealth.com.au + + + host + www.elsevierhealth.com.au + + + host + elsevierhealth.co.uk + + + host + www.elsevierhealth.co.uk + + + + + Eltartar War + + ruleset + + name + Eltartar War + rule + + from + ^http://(www\.)?eltartar\.com/ + to + https://$1eltartar.com/ + + securecookie + + host + ^(?:.*\.)?eltartar\.com$ + name + .+ + + target + + + host + eltatar.com + + + host + *.eltatar.com + + + + + Emaileri.fi + + ruleset + + name + Emaileri.fi + rule + + + from + ^http://(www\.)?emaileri\.fi/ + to + https://www.emaileri.fi/ + + + from + ^https?://(www\.)?emaileri\.net/ + to + https://www.emaileri.fi/ + + + from + ^https?://(www\.)?emaileri\.com/ + to + https://www.emaileri.fi/ + + + target + + + host + www.emaileri.fi + + + host + emaileri.fi + + + host + www.emaileri.net + + + host + emaileri.net + + + host + www.emaileri.com + + + host + emaileri.com + + + + + Emailprivacytester.com + + ruleset + + name + Emailprivacytester.com + platform + firefox + rule + + from + ^http://emailprivacytester\.com/ + to + https://emailprivacytester.com/ + + securecookie + + host + ^emailprivacytester\.com$ + name + .+ + + target + + host + emailprivacytester.com + + + + Emailvision (partial) + + ruleset + + name + Emailvision (partial) + rule + + + from + ^http://(www\.)?emailvision\.com/ + to + https://$1emailvision.com/ + + + from + ^https?://(?:www\.)?emv3\.com/ + to + https://emv3.emv3.com/ + + + from + ^http://(ase|emv\d|p\dtre|tre)\.emv3\.com/ + to + https://$1.emv3.com/ + + + securecookie + + host + ^\.www\.emailvision\.com$ + name + .+ + + target + + + host + emailvision.com + + + host + *.emailvision.com + + + host + emv3.com + + + host + *.emv3.com + + + + + Emap Awards + + ruleset + + name + Emap Awards + rule + + from + ^http://(www\.)?emapawards\.com/ + to + https://$1emapawards.com/ + + securecookie + + host + ^(?:www\.)?emapawards\.com$ + name + .+ + + target + + + host + emapawards.com + + + host + www.emapawards.com + + + + + Embed.ly (partial) + + ruleset + + name + Embed.ly (partial) + rule + + from + ^http://(app|cdn|i)\.embed\.ly/ + to + https://$1.embed.ly/ + + securecookie + + host + ^app\.embed\.ly$ + name + .+ + + target + + host + *.embed.ly + + + + Embedded Analytics.com + + ruleset + + name + Embedded Analytics.com + rule + + from + ^http://(www\.)?embeddedanalytics\.com/ + to + https://$1embeddedanalytics.com/ + + securecookie + + host + ^\.embeddedanalytics\.com$ + name + .+ + + target + + + host + embeddedanalytics.com + + + host + *.embeddedanalytics.com + + + + + Emcraft.com + + ruleset + + name + Emcraft.com + rule + + from + ^http://(order\.|www\.)?emcraft\.com/ + to + https://$1emcraft.com/ + + securecookie + + host + ^(?:order\.|www\.)?emcraft\.com$ + name + .+ + + target + + + host + emcraft.com + + + host + *.emcraft.com + + + + + Emediate.eu + + ruleset + + name + Emediate.eu + rule + + from + ^http://eas4\.emediate\.eu/ + to + https://eas4.emediate.eu/ + + securecookie + + host + ^eas4\.emediate\.eu$ + name + .+ + + target + + host + eas4.emediate.eu + + + + Emerald + + ruleset + + name + Emerald + rule + + from + ^http://(www\.)?emeraldinsight\.com/ + to + https://$1emeraldinsight.com/ + + securecookie + + host + ^(www\.)?emeraldinsight\.com$ + name + .* + + target + + + host + emeraldinsight.com + + + host + www.emeraldinsight.com + + + + + Emory University (partial) + + ruleset + + name + Emory University (partial) + rule + + from + ^https?://(?:www\.)?emory\.edu/ + to + https://www.emory.edu/ + + target + + + host + emory.edu + + + host + www.emory.edu + + + + + EmpFlix (partial) + + ruleset + + name + EmpFlix (partial) + platform + mixedcontent + rule + + from + ^https?://(?:payment\.|www(?:-edge)?\.)?empflix.com/ + to + https://payment.empflix.com/ + + securecookie + + host + ^payment\.empflix\.com$ + name + .+ + + target + + host + payment.empflix.com + + + + Empire State College + + ruleset + + name + Empire State College + rule + + from + ^http://(www\.)?esc\.edu/ + to + https://www.esc.edu/ + + target + + + host + www.esc.edu + + + host + esc.edu + + + + + Employease (partial) + + ruleset + + name + Employease (partial) + rule + + from + ^http://(adp|home)\.eease\.com/ + to + https://$1.eease.com/ + + securecookie + + host + ^(?:adp|home)\.eease\.com$ + name + .+ + + target + + host + *.eease.com + + + + Employeeexpress.gov + + ruleset + + name + Employeeexpress.gov + rule + + from + ^((http://(www\.)?)|https://)employeeexpress\.gov/ + to + https://www.employeeexpress.gov/ + + securecookie + + host + ^(www\.)?employeeexpress\.gov$ + name + .+ + + target + + + host + employeeexpress.gov + + + host + www.employeeexpress.gov + + + + + Emporio Alberghiero.com + + ruleset + + name + Emporio Alberghiero.com + rule + + from + ^http://(www\.)?emporioalberghiero\.com/ + to + https://$1emporioalberghiero.com/ + + securecookie + + host + ^\.(?:www\.)?emporioalberghiero\.com$ + name + .+ + + target + + + host + emporioalberghiero.com + + + host + *.emporioalberghiero.com + + + + + Emsisoft (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|changeblog)\.emsisoft\.com/+(?!wp-content/|wp-includes/) + + name + Emsisoft (partial) + rule + + from + ^http://((?:blog|cc|changeblog|support|www)\.)?emsisoft\.com/ + to + https://$1emsisoft.com/ + + securecookie + + host + ^(?:support|www)\.emsisoft\.com$ + name + .+ + + target + + + host + emsisoft.com + + + host + *.emsisoft.com + + + + + Emulex + + ruleset + + name + Emulex + rule + + from + ^http://(www(?:qa)?\.)?emulex\.com/ + to + https://$1emulex.com/ + + securecookie + + host + ^(.*\.)?emulex\.com$ + name + .* + + target + + + host + emulex.com + + + host + *.emulex.com + + + + + Encoding.com + + ruleset + + name + Encoding.com + rule + + from + ^http://(help\.|www\.)?encoding\.com/ + to + https://$1encoding.com/ + + target + + + host + encoding.com + + + host + *.encoding.com + + + + + Encosia + + ruleset + + name + Encosia + platform + mixedcontent + rule + + from + ^http://(?:www\.|i\.)?encosia\.com/ + to + https://encosia.com/ + + securecookie + + host + ^(.+\.)?encosia\.com$ + name + .* + + target + + + host + encosia.com + + + host + www.encosia.com + + + host + i.encosia.com + + + + + Encrypt All the Things.net + + ruleset + + name + Encrypt All the Things.net + rule + + from + ^http://(www\.)?encryptallthethings\.net/ + to + https://$1encryptallthethings.net/ + + securecookie + + host + ^(www\.)?encryptallthethings\.net$ + name + .+ + + target + + + host + encryptallthethings.net + + + host + www.encryptallthethings.net + + + + + Encrypt Everything.ca + + ruleset + + name + Encrypt Everything.ca + rule + + from + ^http://(www\.)?encrypteverything\.ca/ + to + https://$1encrypteverything.ca/ + + target + + + host + encrypteverything.ca + + + host + www.encrypteverything.ca + + + + + Encrypt.to + + ruleset + + name + Encrypt.to + rule + + from + ^http://(www\.)?encrypt\.to/ + to + https://$1encrypt.to/ + + securecookie + + host + ^(?:www\.)?encrypt\.to$ + name + .+ + + target + + + host + encrypt.to + + + host + www.encrypt.to + + + + + EncryptingData.info + + ruleset + + name + EncryptingData.info + rule + + from + ^http://(www\.)?encryptingdata\.info/ + to + https://$1encryptingdata.info/ + + securecookie + + host + ^(?:www\.)?encryptingdata\.info$ + name + .+ + + target + + + host + encryptingdata.info + + + host + www.encryptingdata.info + + + + + Encyclopedia Dramatica + + ruleset + + name + Encyclopedia Dramatica + rule + + from + ^http://(images\.|static\.|www\.)?encyclopediadramatica\.se/ + to + https://$1encyclopediadramatica.se/ + + securecookie + + host + ^\.?encyclopediadramatica\.se$ + name + .+ + + target + + + host + encyclopediadramatica.se + + + host + *.encyclopediadramatica.se + + + + + EndNote Web + + ruleset + + name + EndNote Web + rule + + from + ^http://(www\.)?myendnoteweb\.com/ + to + https://$1myendnoteweb.com/ + + securecookie + + host + ^www\.myendnoteweb\.com$ + name + .+ + + target + + + host + myendnoteweb.com + + + host + www.myendnoteweb.com + + + + + Endace + + ruleset + + name + Endace + rule + + + from + ^https?://(?:www\.)?endace\.com/ + to + https://www.endace.com/ + + + from + ^http://support\.endace\.com/ + to + https://support.endace.com/ + + + securecookie + + host + ^.*\.endace\.com$ + name + .* + + target + + + host + endace.com + + + host + *.endace.com + + + + + Endora.cz (partial) + + ruleset + + name + Endora.cz (partial) + rule + + from + ^http://(podpora\.|webadmin\.)?endora\.cz/ + to + https://$1endora.cz/ + + target + + + host + endora.cz + + + host + *.endora.cz + + + + + Enecto.com (partial) + + ruleset + + name + Enecto.com (partial) + rule + + from + ^http://(ac|partner|pf3|trk)\.enecto\.com/ + to + https://$1.enecto.com/ + + target + + host + *.enecto.com + + + + Energetix (partial) + + ruleset + + name + Energetix (partial) + rule + + from + ^http://(files\.|www\.)?goenergetix\.com/ + to + https://$1goenergetix.com/ + + securecookie + + host + ^\.goenergetix\.com$ + name + .+ + + target + + + host + goenergetix.com + + + host + *.goenergetix.com + + + + + Energy Made Easy + + ruleset + + name + Energy Made Easy + rule + + from + ^http://(?:www\.)?energymadeeasy\.gov\.au/ + to + https://www.energymadeeasy.gov.au/ + + target + + + host + energymadeeasy.gov.au + + + host + *.energymadeeasy.gov.au + + + + + Energy.gov (partial) + + ruleset + + name + Energy.gov (partial) + rule + + + from + ^http://(?:www\.)?afdc\.energy\.gov/(?=(?:\w+/)?(?:asset|image)s/) + to + https://www.afdc.energy.gov/ + + + from + ^http://www(1|3)\.eere\.energy\.gov/ + to + https://www$1.eere.energy.gov/ + + + securecookie + + host + ^$ + name + .+ + + target + + host + *.energy.gov + + + + EnergyStar + + ruleset + + name + EnergyStar + rule + + from + ^http://(www\.)?energystar\.gov/ + to + https://$1energystar.gov/ + + target + + + host + www.energystar.gov + + + host + energystar.gov + + + + + Engadget.com (partial) + + ruleset + + name + Engadget.com (partial) + rule + + from + ^http://profiles\.engadget\.com/ + to + https://profiles.engadget.com/ + + target + + host + profiles.engadget.com + + + + Engage Media.org + + ruleset + + name + Engage Media.org + rule + + from + ^http://(?:www\.)?engagemedia\.org/ + to + https://www.engagemedia.org/ + + target + + + host + engagemedia.org + + + host + www.engagemedia.org + + + + + EngageSciences (partial) + + ruleset + + name + EngageSciences (partial) + rule + + from + ^http://(app\.|www\.)?engagesciences\.com/ + to + https://$1engagesciences.com/ + + securecookie + + host + ^(?:app\.|www\.)?engagesciences\.com$ + name + .+ + + target + + + host + engagesciences.com + + + host + *.engagesciences.com + + + + + Engineering.com (partial) + + ruleset + + name + Engineering.com (partial) + rule + + + from + ^http://(www\.)?engineering\.com/(?=[dD]esktop[mM]odules/|favicon\.ico|js/|Login\.aspx|Portals/|[rR]esources/|(?:Telerik\.Web\.UI\.)?WebResource\.axd) + to + https://$1engineering.com/ + + + from + ^http://file2\.engineering\.com/ + to + https://d2gm6q2bvqrwiz.cloudfront.net/ + + + target + + + host + engineering.com + + + host + *.engineering.com + + + + + English Defence League.net (false MCB) + + ruleset + + name + English Defence League.net (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?englishdefenceleague\.net/(?!ezportal/icons/|favicon\.ico|gallery/thumb_|Themes/) + to + https://$1englishdefenceleague.net/ + + securecookie + + host + ^(?:w*\.)?englishdefenceleague\.net$ + name + .+ + + target + + + host + englishdefenceleague.net + + + host + *.englishdefenceleague.net + + + + + English Defence League.net (partial) + + ruleset + + name + English Defence League.net (partial) + rule + + from + ^http://(www\.)?englishdefenceleague\.net/(?=ezportal/icons/|favicon\.ico|gallery/thumb_|Themes/) + to + https://$1englishdefenceleague.net/ + + target + + + host + englishdefenceleague.net + + + host + www.englishdefenceleague.net + + + + + English-Heritage.org.uk (partial) + + ruleset + + name + English-Heritage.org.uk (partial) + rule + + from + ^http://www\.english-heritage\.org\.uk/ + to + https://www.english-heritage.org.uk/ + + securecookie + + host + ^www\.english-heritage\.org\.uk$ + name + .+ + + target + + host + www.english-heritage.org.uk + + + + Enigmail.net + + ruleset + + name + Enigmail.net + rule + + from + ^http://(?:www\.)?enigmail\.net/ + to + https://www.enigmail.net/ + + target + + + host + enigmail.net + + + host + www.enigmail.net + + + + + Eniro (partial) + + ruleset + + name + Eniro (partial) + rule + + + from + ^http://adsrv\.ads\.eniro\.com/ + to + https://adsrv.ads.eniro.com/ + + + from + ^http://(www\.)?eniro\.se/(webb/)?$ + to + https://$1eniro.se/$2 + + + from + ^http://(www\.)?eniro\.se/webmaster-content/partners/ + to + https://$1eniro.se/webmaster-content/partners/ + + + from + ^http://static1\.eniro\.com/[\d\.]+/components/frontpage/ + to + https://www.eniro.se/components/frontpage/ + + + from + ^http://static1\.eniro\.com/img/enirose/favicon\.ico$ + to + https://www.eniro.com/favicon.ico + + + from + ^http://static2\.eniro\.com/\d{4}\.\d\d\.\d\d/components/frontpage/css/components/frontpage/img/ + to + https://www.eniro.se/components/frontpage/img/ + + + from + ^http://static2\.eniro\.com/\d{4}\.\d\d\.\d\d/components/frontpage/css/ + to + https://www.eniro.se/components/frontpage/css/ + + + securecookie + + host + ^\.adsrv\.ads\.eniro\.com$ + name + .+ + + target + + + host + *.eniro.com + + + host + eniro.se + + + host + *.eniro.se + + + + + Enjin + + ruleset + + name + Enjin + rule + + + from + ^https?://assets-cloud\.enjin\.com/ + to + https://d2umfjgc9kwn9b.cloudfront.net/ + + + from + ^https?://files\.enjin\.com/ + to + https://s3.amazonaws.com/files.enjin.com/ + + + from + ^http://([\w\-]+\.)?enjin\.com/ + to + https://$1enjin.com/ + + + from + ^https?://resources\.guild-hosting\.net/ + to + https://resources.enjin.com/ + + + securecookie + + host + ^(?:.*\.)?enjin\.com$ + name + .+ + + target + + + host + enjin.com + + + host + *.enjin.com + + + host + *.www.enjin.com + + + host + resources.guild-hosting.net + + + + + Enlightened Perl.org (partial) + + ruleset + + name + Enlightened Perl.org (partial) + rule + + from + ^http://members\.enlightenedperl\.org/ + to + https://members.enlightenedperl.org/ + + target + + host + members.enlightenedperl.org + + + + Enlightenment + + ruleset + + name + Enlightenment + rule + + from + ^http://((?:build|docs|download|git|phab|planet|trac|web|www)\.)?enlightenment\.org/ + to + https://$1enlightenment.org/ + + securecookie + + host + .*\.enlightenment\.org$ + name + .+ + + target + + + host + enlightenment.org + + + host + *.enlightenment.org + + + + + Enphase Energy (partial) + + ruleset + + name + Enphase Energy (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?enphase(?:energy)?\.com/ + to + https://$1enphase.com/ + + + from + ^http://community\.enphaseenergy\.com/favicon\.png + to + https://getsatisfaction.com/favicon.png + + + from + ^http://(assets1|enlighten)\.enphaseenergy\.com/ + to + https://$1.enphaseenergy.com/ + + + securecookie + + host + ^enlighten\.enphaseenergy\.com$ + name + .* + + target + + + host + enphase.com + + + host + www.enphase.com + + + host + enphaseenergy.com + + + host + *.enphaseenergy.com + + + + + Ensi- ja turvakotien liitto + + ruleset + + name + Ensi- ja turvakotien liitto + rule + + + from + ^http://(www\.)?ensijaturvakotienliitto\.fi/ + to + https://ensijaturvakotienliitto-fi.directo.fi/ + + + from + ^https://(www\.)?ensijaturvakotienliitto\.fi/ + to + https://ensijaturvakotienliitto-fi.directo.fi/ + + + from + ^http://ensijaturvakotienliitto-fi\.directo\.fi/ + to + https://ensijaturvakotienliitto-fi.directo.fi/ + + + securecookie + + host + ensijaturvakotienliitto-fi\.directo\.fi + name + .* + + target + + + host + www.ensijaturvakotienliitto.fi + + + host + ensijaturvakotienliitto.fi + + + host + ensijaturvakotienliitto-fi.directo.fi + + + + + Ensighten + + ruleset + + name + Ensighten + rule + + + from + ^https?://(?:www\.)?ensighten\.com/ + to + https://www.ensighten.com/ + + + from + ^http://(nexus|ui)\.ensighten\.com/ + to + https://$1.ensighten.com/ + + + securecookie + + host + ^ui\.ensighten\.com$ + name + .* + + target + + + host + ensighten.com + + + host + *.ensighten.com + + + + + Ensignia mail.com (false MCB) + + ruleset + + name + Ensignia mail.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?ensigniamail\.com/ + to + https://$1ensigniamail.com/ + + target + + + host + ensigniamail.com + + + host + *.ensigniamail.com + + + + + Ensignia mail.com (partial) + + ruleset + + name + Ensignia mail.com (partial) + rule + + from + ^http://(www\.)?ensigniamail\.com/(?=wp-content/|wp-includes/) + to + https://$1ensigniamail.com/ + + target + + + host + ensigniamail.com + + + host + www.ensigniamail.com + + + + + Entanet (partial) + + ruleset + + name + Entanet (partial) + platform + mixedcontent + rule + + + from + ^http://enta\.net/ + to + https://www.enta.net/ + + + from + ^http://(billing|synergi|www)\.enta\.net/ + to + https://$1.enta.net/ + + + from + ^http://(www\.)?voipuserportal\.co\.uk/ + to + https://$1voipuserportal.co.uk/ + + + securecookie + + + host + ^(.*\.)?enta\.net$ + name + .* + + + host + ^(.*\.)?voipuserportal\.co\.uk$ + name + .* + + + target + + + host + enta.net + + + host + *.enta.net + + + host + voipuserportal.co.uk + + + host + www.voipuserportal.co.uk + + + + + Enterprise.com + + ruleset + + name + Enterprise.com + rule + + from + ^http://(www\.)?enterprise\.com/ + to + https://www.enterprise.com/ + + target + + + host + enterprise.com + + + host + www.enterprise.com + + + + + Enterprisers Project.com + + ruleset + + name + Enterprisers Project.com + rule + + from + ^http://(www\.)?enterprisersproject\.com/ + to + https://$1enterprisersproject.com/ + + target + + + host + enterprisersproject.com + + + host + www.enterprisersproject.com + + + + + Entertainment Consumer's Association (partial) + + ruleset + + name + Entertainment Consumer's Association (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)theeca\.com/(favicon\.ico|files/|misc/|modules/|newsletters/|sites/) + to + https://www.theeca.com/$1 + + securecookie + + host + ^\.theeca\.com$ + name + __utm\w$ + + target + + + host + theeca.com + + + host + *.theeca.com + + + + + EntheoShop + + ruleset + + name + EntheoShop + rule + + from + ^http://shop\.entheogene\.de/ + to + https://shop.entheogene.de/ + + securecookie + + host + ^shop\.entheogene\.de$ + name + .* + + target + + host + shop.entheogene.de + + + + Enthought.com (partial) + + ruleset + + name + Enthought.com (partial) + rule + + from + ^http://((?:mail|public|support|www2?)\.)?enthought\.com/ + to + https://$1enthought.com/ + + securecookie + + host + ^(?:support\.|www2?\.)?enthought\.com$ + name + .+ + + target + + + host + enthought.com + + + host + *.enthought.com + + + + + EntroPay + + ruleset + + name + EntroPay + rule + + + from + ^https?://(?:www\.)?entropay\.com/ + to + https://www.entropay.com/ + + + from + ^http://(payment-solutions|secure2)\.entropay\.com/ + to + https://$1.entropay.com/ + + + securecookie + + host + ^.*\.entropay\.com$ + name + .+ + + target + + + host + entropay.com + + + host + www.entropay.com + + + + + Entropia.de + + ruleset + + name + Entropia.de + platform + firefox + rule + + from + ^http://(www\.)?entropia\.de/ + to + https://entropia.de/ + + securecookie + + + host + ^entropia\.de$ + name + .+ + + + host + ^www\.entropia\.de$ + name + .+ + + + target + + + host + entropia.de + + + host + www.entropia.de + + + + + Entropy Wave (partial) + + ruleset + + name + Entropy Wave (partial) + rule + + from + ^http://(www\.)?entropywave\.com/ + to + https://$1entropywave.com/ + + securecookie + + host + ^(?:www\.)?entropywave\.com$ + name + .+ + + target + + + host + entropywave.com + + + host + www.entropywave.com + + + + + Entrust (partial) + + ruleset + + exclusion + + pattern + ^http://www\.entrust\.net/(?!css/|customer_support/|ev/|favicon\.ico|images/new/) + + name + Entrust (partial) + rule + + from + ^http://((?:buy|enroll|home|login|managed|seal|www)\.)?entrust\.net/ + to + https://$1entrust.net/ + + securecookie + + host + ^(?:buy|home|login|managed)\.entrust\.net$ + name + .+ + + target + + + host + entrust.net + + + host + *.entrust.net + + + + + Entrust.com (partial) + + ruleset + + name + Entrust.com (partial) + rule + + from + ^http://(secure\.|www\.)?entrust\.com/ + to + https://$1entrust.com/ + + target + + + host + entrust.com + + + host + *.entrust.com + + + + + Envato-static.com (partial) + + ruleset + + name + Envato-static.com (partial) + rule + + from + ^http://\d\.envato-static\.com/ + to + https://dmypbau5frl9g.cloudfront.net/ + + target + + host + *.envato-static.com + + + + Envato.com (partial) + + ruleset + + name + Envato.com (partial) + rule + + from + ^http://\d\.s3\.envato\.com/ + to + https://d2mdw063ttlqtq.cloudfront.net/ + + target + + host + *.s3.envato.com + + + + Envirotrend (partial) + + ruleset + + name + Envirotrend (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?envirotrend\.com\.au/ + to + https://envirotrend.com.au/ + + securecookie + + host + ^(www.)?envirotrend\.com\.au + name + .* + + target + + + host + envirotrend.com.au + + + host + www.envirotrend.com.au + + + + + Epic Games (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?epicgames\.com/(?!favicon\.ico|files/|css/|img/|js/|mediaplayer/) + + name + Epic Games (partial) + rule + + from + ^http://(udn\.|www\.)?epicgames\.com/ + to + https://$1epicgames.com/ + + target + + + host + epicgames.com + + + host + *.epicgames.com + + + + + Epic Systems (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?epic\.com/($|(?:about-index|contact|recognition-index|relationships-index|sitemap)\.php) + + name + Epic Systems (partial) + rule + + + from + ^http://(www\.)?epic\.com/(images/|layout/) + to + https://$1epic.com/$2 + + + from + ^http://(access|eventregistration|sites|userweb)\.epic\.com/ + to + https://$1.epic.com/ + + + securecookie + + host + ^\w+\.epic\.com$ + name + .* + + target + + + host + epic.com + + + host + *.epic.com + + + + + Epilepsy Foundation of America + + ruleset + + name + Epilepsy Foundation of America + platform + mixedcontent + rule + + from + ^http://(?:www\.)?epilepsyfoundation\.org/ + to + https://www.epilepsyfoundation.org/ + + target + + + host + epilepsyfoundation.org + + + host + www.epilepsyfoundation.org + + + + + Epilepsy Ontario + + ruleset + + name + Epilepsy Ontario + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?epilepsyontario\.org/ + to + https://www.epilepsyontario.org/ + + + from + ^https://epilepsyontario\.org/ + to + https://www.epilepsyontario.org/ + + + target + + + host + epilepsyontario.org + + + host + www.epilepsyontario.org + + + + + Epls.gov + + ruleset + + name + Epls.gov + rule + + from + ^(http://(www\.)?|(https://))epls\.gov/ + to + https://www.epls.gov/ + + securecookie + + host + (^|\.)epls\.gov$ + name + .+ + + target + + + host + epls.gov + + + host + www.epls.gov + + + + + Epoch.com + + ruleset + + name + Epoch.com + rule + + from + ^http://((?:billing|join|reports|www)\.)?epoch\.com/ + to + https://$1epoch.com/ + + securecookie + + host + ^(?:(?:billing|reports|www)\.)?epoch\.com$ + name + .+ + + target + + + host + epoch.com + + + host + *.epoch.com + + + + + EpochStats.com + + ruleset + + name + EpochStats.com + rule + + from + ^http://((?:hits|sales|www)\.)?epochstats\.com/ + to + https://$1epochstats.com/ + + target + + + host + epochstats.com + + + host + *.epochstats.com + + + + + Epoxate.com + + ruleset + + name + Epoxate.com + platform + firefox + rule + + from + ^http://epoxate\.com/ + to + https://epoxate.com/ + + securecookie + + host + ^epoxate\.com$ + name + .+ + + target + + host + epoxate.com + + + + Epson.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?epson\.com/cgi-bin/Store/consumer/(?!cross_sell\.jsp) + + + pattern + ^http://(?:www\.)?epson\.com/cgi-bin/Store/jsp/Product/(?:Overview|Photos)\.do + + + pattern + ^http://(www\.)?epson\.com/([a-zA-Z][a-zA-Z\d]+){1}$ + + + name + Epson.com (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?epson\.c(a|om)/ + to + https://www.epson.c$1/ + + + from + ^http://global\.latin\.epson\.com/(data|frame|template)/ + to + https://global.latin.epson.com/$1/ + + + from + ^http://(pos|was)\.epson\.com/ + to + https://$1.epson.com/ + + + from + ^https?://(?:www\.)?epson\.com\.mx/ + to + https://global.latin.epson.com/mx + + + from + ^http://cform\.epson\.jp/ + to + https://cform.epson.jp/ + + + from + ^http://shop\.epson\.jp/eshop/ + to + https://shop.epson.jp/eshop/ + + + securecookie + + host + ^(.*\.)?epson\.c(a|om)$ + name + .* + + target + + + host + epson.ca + + + host + www.epson.ca + + + host + epson.com + + + host + *.epson.com + + + host + global.latin.epson.com + + + host + epson.com.mx + + + host + www.epson.com.mx + + + host + *.epson.jp + + + + + Equality Trust.org.uk + + ruleset + + name + Equality Trust.org.uk + rule + + from + ^http://(www\.)?equalitytrust\.org\.uk/ + to + https://$1equalitytrust.org.uk/ + + target + + + host + equalitytrust.org.uk + + + host + *.equalitytrust.org.uk + + + + + Equinix.com (partial) + + ruleset + + name + Equinix.com (partial) + rule + + + from + ^http://((?:esp2?\.ap|uat\.eceemarketplace|equinix-direct|(?:demo\.|pilot\.)?ethernetportal|(?:pilot\.)?(?:ix|marketplace)|(?:mobile\.)?portal(?:pilot)?|portaltest)\.)?equinix\.com/ + to + https://$1equinix.com/ + + + from + ^http://www\.equinix\.com/(?=img/|local/(?!new/css/ui/jquery-ui\.css)|ss/) + to + https://a248.e.akamai.net/f/90/7583/3h/www.equinix.com/ + + + securecookie + + + host + ^\.equinix\.com$ + name + ^_(?:mkto_trk|_utm\w)$ + + + host + ^(?:.+\.)?equinix\.com$ + name + .+ + + + target + + + host + equinix.com + + + host + *.equinix.com + + + + + Equip.org (partial) + + ruleset + + name + Equip.org (partial) + rule + + from + ^http://(www\.)?equip\.org/wp-(?=content/|includes/) + to + https://$1equip.org/wp- + + target + + + host + equip.org + + + host + *.equip.org + + + + + Equity + + ruleset + + name + Equity + rule + + from + ^https?://(?:www\.)?equity\.org\.uk/ + to + https://www.equity.org.uk/ + + securecookie + + host + ^www\.equity\.org\.uk$ + name + .+ + + target + + + host + equity.org.uk + + + host + www.equity.org.uk + + + + + Eregon.ch + + ruleset + + name + Eregon.ch + rule + + from + ^http://((?:secure|techzone|www)\.)?ergon\.ch/ + to + https://$1ergon.ch/ + + target + + + host + ergon.ch + + + host + *.ergon.ch + + + + + Eric W.us + + ruleset + + name + Eric W.us + rule + + from + ^http://(www\.)?ericw\.us/ + to + https://$1ericw.us/ + + target + + + host + ericw.us + + + host + www.ericw.us + + + + + Ericsson (partial) + + ruleset + + name + Ericsson (partial) + rule + + from + ^http://webtrends-lb\.ericsson\.net/ + to + https://webtrends-lb.ericsson.net/ + + target + + host + webtrends-lb.ericsson.net + + + + Ernst & Young (partial) + + ruleset + + name + Ernst & Young (partial) + rule + + + from + ^http://(?:webforms\.|www\.)?ey\.com/ + to + https://webforms.ey.com/ + + + from + ^http://(clientportal|eyonline)\.ey\.com/ + to + https://$1.ey.com/ + + + securecookie + + host + ^.*\.ey\.com$ + name + .* + + target + + + host + ey.com + + + host + *.ey.com + + + + + Eroakirkosta.fi + + ruleset + + name + Eroakirkosta.fi + rule + + from + ^http://(www\.)?eroakirkosta\.fi/ + to + https://$1eroakirkosta.fi/ + + target + + + host + eroakirkosta.fi + + + host + www.eroakirkosta.fi + + + + + Erowid + + ruleset + + name + Erowid + rule + + from + ^http://(?:www\.)?erowid\.(?:com|org)/ + to + https://www.erowid.org/ + + securecookie + + host + ^\.www\.erowid\.org$ + name + .* + + target + + + host + www.erowid.com + + + host + erowid.com + + + host + www.erowid.org + + + host + *.www.erowid.org + + + host + erowid.org + + + + + Escrow Live.net + + ruleset + + name + Escrow Live.net + rule + + + from + ^http://escrowlive\.net/[^?]* + to + https://www.nccgroup.com/services/software-escrow-services.aspx + + + from + ^http://www\.escrowlive\.net/ + to + https://www.escrowlive.net/ + + + securecookie + + host + ^www\.escrowlive\.net$ + name + .+ + + target + + + host + escrowlive.net + + + host + www.escrowlive.net + + + + + Espionage app.com + + ruleset + + name + Espionage app.com + rule + + from + ^http://(www\.)?espionageapp\.com/ + to + https://$1espionageapp.com/ + + target + + + host + espionageapp.com + + + host + www.espionageapp.com + + + + + Espra.com + + ruleset + + name + Espra.com + platform + firefox + rule + + from + ^http://espra\.com/ + to + https://espra.com/ + + securecookie + + host + ^espra\.com$ + name + .+ + + target + + host + espra.com + + + + Esri (partial) + + ruleset + + name + Esri (partial) + rule + + + from + ^http://(autodiscover|customers|ecasapi|esribc|esriwd|events|legacy|promos|redowa|rss|service|training|uel|webaccounts)\.esri\.com/ + to + https://$1.esri.com/ + + + from + ^http://(?:www\.)?myesri\.com/ + to + https://myesri.com/ + + + securecookie + + host + ^(?:customers|ecasapi|esribc|events|redowa|training)\.esri\.com$ + name + .+ + + target + + + host + *.esri.com + + + host + myesri.com + + + host + www.myesri.com + + + + + Estonia Evoting.org + + ruleset + + name + Estonia Evoting.org + rule + + from + ^http://(www\.)?estoniaevoting\.org/ + to + https://$1estoniaevoting.org/ + + target + + + host + estoniaevoting.org + + + host + www.estoniaevoting.org + + + + + Estonian Public Broadcasting (partial) + + ruleset + + name + Estonian Public Broadcasting (partial) + rule + + from + ^http://(ext\.|otse\.|www\.)?err\.ee/ + to + https://$1err.ee/ + + securecookie + + host + ^(?:.+\.)?err\.ee$ + name + .+ + + target + + + host + err.ee + + + host + *.err.ee + + + + + Etarget (partial) + + ruleset + + name + Etarget (partial) + rule + + + from + ^http://(www\.)?etarget\.(cz|hu|ro|sk)/ + to + https://$1etarget.$2/ + + + from + ^http://(\w\w\.)?search\.etargetnet\.com/ + to + https://$1search.etargetnet.com/ + + + securecookie + + host + ^(?:www\.)?etarget\.\w\w$ + name + .+ + + target + + + host + etarget.* + + + host + www.etarget.* + + + host + search.etargetnet.com + + + host + *.search.etargetnet.com + + + + + EthACK.org + + ruleset + + name + EthACK.org + rule + + from + ^http://(www\.)?ethack\.org/ + to + https://$1ethack.org/ + + securecookie + + host + ^(?:www\.)?ethack\.org$ + name + .+ + + target + + + host + ethack.org + + + host + www.ethack.org + + + + + Ethereum.org (partial) + + ruleset + + name + Ethereum.org (partial) + rule + + + from + ^http://((?:code|forum|www)\.)?ethereum\.org/ + to + https://$1ethereum.org/ + + + from + ^http://wiki\.ethereum\.org/(?:$|\?.*) + to + https://github.com/ethereum/wiki/wiki + + + securecookie + + host + ^(?:www)?\.ethereum\.org$ + name + .+ + + target + + + host + ethereum.org + + + host + *.ethereum.org + + + + + Ethical Hacker.Net (false MCB) + + ruleset + + name + Ethical Hacker.Net (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?ethicalhacker\.net/ + to + https://$1ethicalhacker.net/ + + securecookie + + host + ^(?:www)?\.ethicalhacker\.net$ + name + .+ + + target + + + host + ethicalhacker.net + + + host + *.ethicalhacker.net + + + + + EthicsPoint.com + + ruleset + + name + EthicsPoint.com + rule + + from + ^http://(secure\.|www\.)?ethicspoint\.com/ + to + https://$1ethicspoint.com/ + + securecookie + + host + ^secure\.ethicspoint\.com$ + name + .+ + + target + + + host + ethicspoint.com + + + host + *.ethicspoint.com + + + + + Ethn.io + + ruleset + + name + Ethn.io + rule + + from + ^http://(?:www\.)?ethn\.io/ + to + https://ethn.io/ + + securecookie + + host + ^\.ethn\.io$ + name + .+ + + target + + + host + ethn.io + + + host + *.ethn.io + + + + + Ethnologue + + ruleset + + name + Ethnologue + rule + + from + ^http://www\.ethnologue\.com/ + to + https://www.ethnologue.com/ + + securecookie + + host + ^www\.ethnologue\.com$ + name + .+ + + target + + host + www.ethnologue.com + + + + Ethos Custom Brands + + ruleset + + name + Ethos Custom Brands + rule + + from + ^http://(www\.)ethoscustombrands\.com/ + to + https://$1ethoscustombrands.com/ + + securecookie + + host + ^(?:www)?\.ethoscustombrands\.com$ + name + .+ + + target + + + host + ethoscustombrands.com + + + host + *.ethoscustombrands.com + + + + + Etipos.sk + + ruleset + + name + Etipos.sk + rule + + from + ^http://(www\.)?etipos\.sk/ + to + https://www.etipos.sk/ + + target + + + host + etipos.sk + + + host + www.etipos.sk + + + + + Etrade.com + + ruleset + + name + Etrade.com + rule + + + from + ^http://((?:about|career|global|us|www)\.)?etrade\.com/ + to + https://$1etrade.com/ + + + from + ^http://cdn\.etrade\.net/ + to + https://cdn.etrade.net/ + + + target + + + host + etrade.com + + + host + *.etrade.com + + + host + cdn.etrade.net + + + + + Etravelway.com + + ruleset + + name + Etravelway.com + rule + + from + ^http://(www\.)?etravelway\.com/ + to + https://www.etravelway.com/ + + target + + + host + etravelway.com + + + host + www.etravelway.com + + + + + Etre Shop.com (partial) + + ruleset + + name + Etre Shop.com (partial) + rule + + from + ^http://(www\.)?etreshop\.com/ + to + https://$1etreshop.com/ + + securecookie + + host + ^www\.etreshop\.com$ + name + .+ + + target + + + host + etreshop.com + + + host + www.etreshop.com + + + + + Etsy (partial) + + ruleset + + exclusion + + pattern + ^http://(?:de\.|fr\.|www\.)?etsy\.com/(?:\w\w/)?(?:apps|browse|error\.php|forums(?:_user_threads\.php)?|listing/\d+|people|reopen_account\.php|teams|treasury)(?:$|\?|/) + + name + Etsy (partial) + rule + + + from + ^http://((?:blog|de|fr|ny-image\d|system|www)\.)?etsy\.com/ + to + https://$1etsy.com/ + + + from + ^http://(img\d|site|www)\.etsystatic\.com/ + to + https://$1.etsystatic.com/ + + + target + + + host + etsy.com + + + host + *.etsy.com + + + host + *.etsystatic.com + + + + + Ettus.com (partial) + + ruleset + + name + Ettus.com (partial) + rule + + from + ^http://(www\.)?ettus\.com/(?=(?:account|cart|login|product/quick-order)(?:$|[?/])|assets/|content/|favicon\.ico|images/) + to + https://$1ettus.com/ + + target + + + host + ettus.com + + + host + www.ettus.com + + + + + Eucalyptus.com + + ruleset + + name + Eucalyptus.com + rule + + + from + ^http://(www\.)?eucalyptus\.com/ + to + https://$1eucalyptus.com/ + + + from + ^http://support\.eucalyptus\.com/ + to + https://support.eucalyptus.com/ + + + target + + + host + eucalyptus.com + + + host + *.eucalyptus.com + + + + + Euro-ix.net + + ruleset + + name + Euro-ix.net + platform + mixedcontent + rule + + from + ^http://(?:www\.)?euro-ix\.net/ + to + https://www.euro-ix.net/ + + target + + + host + euro-ix.net + + + host + www.euro-ix.net + + + + + EuroAds.se (partial) + + ruleset + + name + EuroAds.se (partial) + rule + + from + ^http://banner\.euroads\.se/ + to + https://banner.euroads.se/ + + target + + host + banner.euroads.se + + + + EuroDNS.com (partial) + + ruleset + + name + EuroDNS.com (partial) + rule + + + from + ^http://(www\.)?eurodns\.com/ + to + https://$1eurodns.com/ + + + from + ^http://(?:cdn3|static)\.eurodns\.com/ + to + https://static.eurodns.com/ + + + securecookie + + host + ^www\.eurodns\.com$ + name + .+ + + target + + + host + eurodns.com + + + host + *.eurodns.com + + + + + EuroFlorist.no (partial) + + ruleset + + exclusion + + pattern + ^http://(?:bedrift\.|www\.)?euroflorist\.no/(?!Css/|Domains/|favicon\.ico|Images/|(?:En/)?Pages/CaptchaImage|Products/|(?:Script|Web)Resource\.axd|Scripts/) + + name + EuroFlorist.no (partial) + rule + + + from + ^http://(?:www\.)?euroflorist\.no/ + to + https://www.euroflorist.no/ + + + from + ^http://bedrift\.euroflorist\.no/ + to + https://bedrift.euroflorist.no/ + + + securecookie + + host + ^\.(?:bedrift\.)?euroflorist\.no + name + ^__utm\w$ + + target + + + host + euroflorist.no + + + host + *.euroflorist.no + + + + + EuroPriSe + + ruleset + + name + EuroPriSe + platform + mixedcontent + rule + + from + ^http://(www\.)?european-privacy-seal\.eu/ + to + https://www.european-privacy-seal.eu/ + + target + + + host + european-privacy-seal.eu + + + host + www.european-privacy-seal.eu + + + + + EuroPython + + ruleset + + name + EuroPython + rule + + from + ^http://(ep201[23]\.|www\.)?europython\.eu/ + to + https://$1europython.eu/ + + securecookie + + host + ^ep2013\.europython\.eu$ + name + .+ + + target + + + host + europython.eu + + + host + *.europython.eu + + + + + Eurodiet (partial) + + ruleset + + name + Eurodiet (partial) + rule + + from + ^https?://(?:www\.)?eurodiet\.co\.uk/_design/ + to + https://www.eurodiet.co.uk/_design/ + + target + + + host + eurodiet.co.uk + + + host + www.eurodiet.co.uk + + + + + Euroforum (partial) + + ruleset + + name + Euroforum (partial) + rule + + + from + ^http://(www\.)?euroforum\.com/ + to + https://$1euroforum.com/ + + + from + ^http://static2?\.euroforum\.de/ + to + https://d30az3luf8nwkb.cloudfront.net/ + + + target + + + host + euroforum.com + + + host + www.euroforum.com + + + host + *.euroforum.de + + + + + Eurofurence + + ruleset + + name + Eurofurence + rule + + from + ^http://forum\.eurofurence\.org/ + to + https://forum.eurofurence.org/ + + securecookie + + host + ^forum\.eurofurence\.org$ + name + .+ + + target + + host + forum.eurofurence.org + + + + Eurogamer (partial) + + ruleset + + name + Eurogamer (partial) + rule + + + from + ^http://images\.eurogamer\.net/ + to + https://images.eurogamer.net/ + + + from + ^http://images\.vg247\.com/ + to + https://d2f23iedlijwim.cloudfront.net/ + + + target + + + host + images.eurogamer.net + + + host + images.vg247.com + + + + + Euroland.com + + ruleset + + name + Euroland.com + rule + + from + ^http://(tools\.|www\.)?euroland\.com/ + to + https://$1euroland.com/ + + securecookie + + host + ^(?:tools\.|www\.)?euroland\.com$ + name + .+ + + target + + + host + euroland.com + + + host + *.euroland.com + + + + + Europa.eu + + ruleset + + exclusion + + + pattern + ^http://cordis\.europa\.eu/+(?!icons/|js/|wel/template-) + + + pattern + ^https://oami\.europa\.eu/knowledge/ + + + name + Europa.eu + rule + + + from + ^http://www\.ecb(?:\.europa)?\.eu/ + to + https://www.ecb.europa.eu/ + + + from + ^http://(?:www\.)?(consilium|easa|enisa)\.europa\.eu/ + to + https://www.$1.europa.eu/ + + + from + ^http://(cordis|joinup\.ec|(?:www\.)?enisa|www\.europol|oami)\.europa\.eu/ + to + https://$1.europa.eu/ + + + securecookie + + host + ^www\.ecb\.europa\.eu$ + name + .+ + + target + + + host + www.ecb.eu + + + host + *.europa.eu + + + + + European Bioinformatics Institute + + ruleset + + name + European Bioinformatics Institute + rule + + from + ^http://www\.ebi\.co\.uk/ + to + https://www.ebi.co.uk/ + + target + + host + www.ebi.co.uk + + + + European Energy Exchange (partial) + + ruleset + + name + European Energy Exchange (partial) + rule + + + from + ^http://(?:www\.)?eex\.com/ + to + https://www.eex.com/ + + + from + ^http://cdn\.eex\.com/ + to + https://cdn.eex.com/ + + + securecookie + + host + ^\.eex\.com$ + name + ^sakura_session$ + + target + + + host + eex.com + + + host + *.eex.com + + + + + European Nuclear Society + + ruleset + + name + European Nuclear Society + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?euronuclear\.org/ + to + https://www.euronuclear.org/ + + target + + + host + euronuclear.org + + + host + www.euronuclear.org + + + + + European Southern Observatory (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.eso\.org/public/(austria|belgium-(de|fr|nl)|brazil|chile|czechrepublic|denmark|finland|france|germany|italy|netherlands|portugal|spain|sweden)/ + + + pattern + ^http://www\.eso\.org/public/news(?:$|\?|/) + + + name + European Southern Observatory (partial) + rule + + from + ^http://(www\.)?eso\.org/ + to + https://www.eso.org/ + + target + + + host + eso.org + + + host + www.eso.org + + + + + European Space Agency (partial) + + ruleset + + name + European Space Agency (partial) + rule + + from + ^http://(?:www\.)?esa\.int/(extension|var)/ + to + https://www.esa.int/$1/ + + target + + + host + esa.int + + + host + www.esa.int + + + + + EuropeanCensorship.eu (partial) + + ruleset + + name + EuropeanCensorship.eu (partial) + rule + + from + ^http://(www\.)?europeancensorship\.eu/ + to + https://$1europeancensorship.eu/ + + target + + + host + europeancensorship.eu + + + host + www.europeancensorship.eu + + + + + EuropeanSSL + + ruleset + + name + EuropeanSSL + rule + + from + ^http://(?:www\.)?(?:secure\.)?europeanssl\.eu/ + to + https://secure.europeanssl.eu/ + + securecookie + + host + ^secure\.europeanssl\.eu$ + name + .+ + + target + + + host + europeanssl.eu + + + host + *.europeanssl.eu + + + + + Evaske.com + + ruleset + + name + Evaske.com + rule + + from + ^http://(clients\.|www\.)?evaske\.com/ + to + https://$1evaske.com/ + + securecookie + + host + ^(?:clients|www)\.evaske\.com$ + name + .+ + + target + + + host + evaske.com + + + host + *.evaske.com + + + + + Eveger + + ruleset + + name + Eveger + rule + + from + ^http://(www\.)?eveger\.de/ + to + https://www.eveger.de/ + + target + + + host + eveger.de + + + host + www.eveger.de + + + + + EventOverload + + ruleset + + name + EventOverload + rule + + from + ^http://(static\.|www\.)?eventoverload\.com/ + to + https://$1eventoverload.com/ + + securecookie + + host + ^\.?eventoverload\.com$ + name + .+ + + target + + + host + eventoverload.com + + + host + *.eventoverload.com + + + + + Eventbrite (partial) + + ruleset + + exclusion + + pattern + ^http://help\.eventbrite\.co\.uk/ + + name + Eventbrite (partial) + rule + + from + ^http://([^/:@]*\.)?eventbrite\.co(m|\.uk)/ + to + https://$1eventbrite.co$2/ + + target + + + host + eventbrite.com + + + host + *.eventbrite.com + + + host + eventbrite.co.uk + + + host + *.eventbrite.co.uk + + + + + Eventim (partial) + + ruleset + + exclusion + + + pattern + ^https?://(?:www\.)?eventim\.bg/(?!bg/moyat_profil/|bg/sign-in/) + + + pattern + ^https?://(?:www\.)?eventim\.hr/(?!hr/my_account/|hr/sign-in/) + + + pattern + ^https?://(?:www\.)?eventim\.hu/(?!hu/felhasznaloi_profilom/|hu/sign-in/) + + + pattern + ^https?://(?:www\.)?eventim\.ro/(?!ro/contul_meu/|ro/sign-in/) + + + pattern + ^https?://(?:www\.)?eventim\.si/(?!si/moj_racun/|si/sign-in/) + + + name + Eventim (partial) + rule + + + from + ^https?://(?:www\.)?eventim\.(bg|cz|co\.il|co\.uk|de|hr|hu|nl|pl|ro|se|si)/ + to + https://www.eventim.$1/ + + + from + ^http://(ru\.)?content\.eventim\.com/ + to + https://$1content.eventim.com/ + + + from + ^http://secure\.eventim\.(co\.il|co\.uk|cz|de|nl|pl|se)/ + to + https://secure.eventim.$1/ + + + securecookie + + host + ^.*\.eventim\.se$ + name + .+ + + target + + + host + eventim.* + + + host + secure.eventim.* + + + host + www.eventim.* + + + host + eventim.co.* + + + host + content.eventim.com + + + host + ru.content.eventim.com + + + host + *.eventim.co.il + + + host + *.eventim.co.uk + + + host + *.eventim.se + + + + + EverMap.com + + ruleset + + name + EverMap.com + rule + + from + ^http://(www\.)?evermap\.com/ + to + https://$1evermap.com/ + + securecookie + + host + ^(?:www\.)?evermap\.com$ + name + .+ + + target + + + host + evermap.com + + + host + www.evermap.com + + + + + Everest Technology + + ruleset + + name + Everest Technology + rule + + from + ^http://pixel(\d*)\.everesttech\.net/ + to + https://pixel$1.everesttech.net/ + + securecookie + + host + ^\.everesttech\.net$ + name + .+ + + target + + host + *.everesttech.net + + + + Evergage.com (partial) + + ruleset + + name + Evergage.com (partial) + rule + + from + ^http://(cd|logi)n\.evergage\.com/ + to + https://$1n.evergage.com/ + + securecookie + + host + ^\.?login\.evergage\.com$ + name + .+ + + target + + host + *.evergage.com + + + + Evernote (partial) + + ruleset + + name + Evernote (partial) + rule + + + from + ^http://((?:blog|dev|sandbox|support|trunk|www)\.)?evernote\.com/ + to + https://$1evernote.com/ + + + from + ^https?://discussion\.evernote\.com/public/style_images/ + to + https://i2.wp.com/discussion.evernote.com/public/style_images/ + + + from + ^https?://shop\.evernote\.com/ + to + https://evernote.myshopify.com/ + + + securecookie + + host + ^(?:.*\.)?evernote\.com$ + name + .+ + + target + + + host + evernote.com + + + host + *.evernote.com + + + + + Everplans.com + + ruleset + + name + Everplans.com + rule + + from + ^http://(my\.|www\.)?everplans\.com/ + to + https://$1everplans.com/ + + target + + + host + everplans.com + + + host + *.everplans.com + + + + + Every Angle Media + + ruleset + + name + Every Angle Media + rule + + from + ^http://(www\.)?everyanglemedia\.com/ + to + https://$1everyanglemedia.com/ + + securecookie + + host + ^(?:www\.)?everyanglemedia\.com$ + name + .+ + + target + + + host + everyanglemedia.com + + + host + www.everyanglemedia.com + + + + + Everyday Health (partial) + + ruleset + + name + Everyday Health (partial) + rule + + + from + ^http://images\.(agora|waterfront)media\.com/ + to + https://images.$1media.com/ + + + from + ^http://(content\.|www\.)?everydayhealth\.com/ + to + https://$1everydayhealth.com/ + + + securecookie + + host + ^www\.everydayhealth\.com$ + name + .+ + + target + + + host + images.agoramedia.com + + + host + everydayhealth.com + + + host + *.everydayhealth.com + + + host + images.waterfrontmedia.com + + + + + Everyday Hero + + ruleset + + name + Everyday Hero + rule + + + from + ^http://(give\.|passport\.|www\.)?everydayhero\.com/ + to + https://$1everydayhero.com/ + + + from + ^http://(www\.)?everydayhero\.com\.au/ + to + https://$1everydayhero.com.au/ + + + securecookie + + + host + ^\.(?:passport\.)?everydayhero\.com$ + name + .+ + + + host + ^(?:www\.)?everydayhero\.com\.au$ + name + .+ + + + target + + + host + everydayhero.com + + + host + *.everydayhero.com + + + host + everydayhero.com.au + + + host + *.everydayhero.com.au + + + + + Everything Everywhere (partial) + + ruleset + + exclusion + + pattern + ^http://business\.ee\.co\.uk/(?!favicon\.ico|misc/|modules/|sites/) + + name + Everything Everywhere (partial) + rule + + + from + ^http://((?:apply|assets[1-5]|broadband|business|community|explore|my|shop|storefinder|www)\.)?ee\.co\.uk/ + to + https://$1ee.co.uk/ + + + from + ^http://assets6\.ee\.co\.uk/ + to + https://s3-eu-west-1.amazonaws.com/assets6.ee.co.uk/ + + + from + ^http://assets7\.ee\.co\.uk/ + to + https://s3-eu-west-1.amazonaws.com/assets7.ee.co.uk/ + + + from + ^http://assets10\.ee\.co\.uk/ + to + https://c1400017.ssl.cf3.rackcdn.com/ + + + from + ^http://assets11\.ee\.co\.uk/ + to + https://c1400022.ssl.cf3.rackcdn.com/ + + + from + ^http://assets12\.ee\.co\.uk/ + to + https://c1400021.ssl.cf3.rackcdn.com/ + + + from + ^http://assets13\.ee\.co\.uk/ + to + https://c1400023.ssl.cf3.rackcdn.com/ + + + from + ^http://assets14\.ee\.co\.uk/ + to + https://c1400024.ssl.cf3.rackcdn.com/ + + + securecookie + + host + ^(?:(?:apply|broadband|community|explore|my|shop|storefinder)\.)?ee\.co\.uk$ + name + .+ + + target + + + host + ee.co.uk + + + host + *.ee.co.uk + + + + + Evidon Inc (partial) + + ruleset + + name + Evidon Inc (partial) + rule + + + from + ^http://(c|cdn|l)\.betrad\.com/ + to + https://$1.betrad.com/ + + + from + ^https?://cdn\.(?:betteradvertising|evidon)\.com/ + to + https://cdn.betrad.com/ + + + from + ^http://my\.betteradvertising\.com/ + to + https://my.betteradvertising.com/ + + + from + ^http://(info|my)\.evidon\.com/ + to + https://$1.evidon.com/ + + + target + + + host + *.betrad.com + + + host + *.betteradvertising.com + + + host + *.evidon.com + + + + + Evisa-Vietnam.Com + + ruleset + + name + Evisa-Vietnam.Com + rule + + from + ^http://(www\.)?evisa-vietnam\.com/ + to + https://$1evisa-vietnam.com/ + + securecookie + + host + ^w*\.evisa-vietnam\.com$ + name + .+ + + target + + + host + evisa-vietnam.com + + + host + *.evisa-vietnam.com + + + + + EvoTronix (partial) + + ruleset + + name + EvoTronix (partial) + rule + + + from + ^https?://(?:www\.)?evotronix(?:\.netdna-cdn)?\.com/ + to + https://evotronix.com/ + + + downgrade + 1 + from + ^https://f(aq|orum)\.evotronix\.com/ + to + http://f$1.evotronix.com/ + + + target + + + host + evotronix.com + + + host + *.evotronix.com + + + host + evotronix.evotronix.netdna-cdn.com + + + + + Evoluted.net + + ruleset + + name + Evoluted.net + rule + + from + ^http://(www\.)?evoluted\.net/ + to + https://$1evoluted.net/ + + securecookie + + host + ^(?:www\.)?evoluted\.net$ + name + .+ + + target + + + host + evoluted.net + + + host + www.evoluted.net + + + + + Evolve Socially.org (false MCB) + + ruleset + + name + Evolve Socially.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?evolvesocially\.org/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://$1evolvesocially.org/ + + securecookie + + host + ^(?:w*\.)?evolvesocially\.org$ + name + .+ + + target + + + host + evolvesocially.org + + + host + *.evolvesocially.org + + + + + Evolve Socially.org (partial) + + ruleset + + name + Evolve Socially.org (partial) + rule + + from + ^http://(www\.)?evolvesocially\.org/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1evolvesocially.org/ + + target + + + host + evolvesocially.org + + + host + www.evolvesocially.org + + + + + Ex Libris + + ruleset + + name + Ex Libris + rule + + from + ^http://(?:\w+sfx\.|sfx)hosted\.exlibrisgroup\.com/ + to + https://sfxhosted.exlibrisgroup.com/ + + securecookie + + host + ^sfxhosted\.exlibrisgroup\.com$ + name + .+ + + target + + + host + *.hosted.exlibrisgroup.com + + + host + sfxhosted.exlibrisgroup.com + + + + + Ex Ratione.com + + ruleset + + name + Ex Ratione.com + rule + + from + ^http://(mail\.|www\.)?exratione\.com/ + to + https://$1exratione.com/ + + target + + + host + exratione.com + + + host + *.exratione.com + + + + + Exacom.sk + + ruleset + + name + Exacom.sk + rule + + from + ^http://(www\.)?exacom\.sk/ + to + https://www.exacom.sk/ + + target + + + host + exacom.sk + + + host + www.exacom.sk + + + + + ExactTarget (partial) + + ruleset + + name + ExactTarget (partial) + rule + + + from + ^http://(?:www\.)?exacttarget\.com/ + to + https://www.exacttarget.com/ + + + from + ^http://(3sixty|(?:auth|click|imh|mc)\.boa|brandcdn|click|email|image|imh|mc|members|nexus|pages|partners|(?:auth|imh|mc)\.poc|(?:auth|imh|mc)\.s[12]\.qa[123]|(?:auth|mc)\.s1|(?:auth|mc)\.s100|(?:auth|click|image|imh|mc|members)\.s4|(?:mc|members)\.s5|(?:auth|click|image|imh|mc|members)\.s6|(?:auth|click|image|mc|members)\.s7|(?:auth|click|image|mc|members)\.s8|(?:auth|mc|members)\.test)\.exacttarget\.com/ + to + https://$1.exacttarget.com/ + + + from + ^http://images\.s4\.exacttarget\.com/ + to + https://image.s4.exacttarget.com/ + + + securecookie + + host + ^(.*\.)?exacttarget\.com$ + name + .* + + target + + + host + exacttarget.com + + + host + *.exacttarget.com + + + + + Exactag (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?exactag\.com/(?!_extjs/|_jquery/|_js/|auth/) + + name + Exactag (partial) + rule + + from + ^http://(cdn\.|dr\.|m\.|www\.)?exactag\.com/ + to + https://$1exactag.com/ + + securecookie + + host + ^(?:dr|m)\.exactag\.com$ + name + .+ + + target + + + host + exactag.com + + + host + *.exactag.com + + + + + Excelsior-USA.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.excelsior-usa\.com/+(?!(?:blog|forum)(?:$|[?/])|images/|new\.css) + + name + Excelsior-USA.com (partial) + rule + + from + ^http://(www\.)?excelsior-usa\.com/ + to + https://$1excelsior-usa.com/ + + securecookie + + host + ^excelsior-usa\.com$ + name + .+ + + target + + + host + excelsior-usa.com + + + host + www.excelsior-usa.com + + + + + Excitations.com + + ruleset + + name + Excitations.com + rule + + from + ^http://(www\.)?excitations\.com/ + to + https://$1excitations.com/ + + securecookie + + host + ^(?:www)?\.excitations\.com$ + name + .+ + + target + + + host + excitations.com + + + host + *.excitations.com + + + + + Exclusive X + + ruleset + + name + Exclusive X + rule + + from + ^http://(www\.)?exclusivex\.com/ + to + https://$1exclusivex.com/ + + securecookie + + host + ^(?:.*\.)?exclusivex\.com$ + name + .+ + + target + + + host + exclusivex.com + + + host + *.exclusivex.com + + + + + Exede (partial) + + ruleset + + name + Exede (partial) + rule + + from + ^http://order\.exede\.com/ + to + https://order.exede.com/ + + securecookie + + host + ^order\.exede\.com$ + name + .+ + + target + + host + order.exede.com + + + + Exeter Friendly Society + + ruleset + + name + Exeter Friendly Society + rule + + + from + ^http://(?:www\.)?exeterfamily\.co\.uk/ + to + https://www.exeterfamily.co.uk/ + + + from + ^http://(?:www\.)?exeterfriendly\.co\.uk/(?:\?.*)?$ + to + https://www.exeterfamily.co.uk/ + + + securecookie + + host + ^www\.exeterfamily\.co\.uk$ + name + .+ + + target + + + host + exeterfamily.co.uk + + + host + www.exeterfamily.co.uk + + + host + exeterfriendly.co.uk + + + host + www.exeterfriendly.co.uk + + + + + Exhale + + ruleset + + name + Exhale + rule + + + from + ^http://(?:www\.)?4exhale\.org/ + to + https://exhaleprovoice.org/ + + + from + ^http://(www\.)?exhaleprovoice\.org/ + to + https://$1exhaleprovoice.org/ + + + target + + + host + exhaleprovoice.org + + + host + www.exhaleprovoice.org + + + + + Exherbo Linux (CAcert, partial) + + ruleset + + name + Exherbo Linux (CAcert, partial) + platform + cacert + rule + + from + ^http://bugs\.exherbo\.org/ + to + https://bugs.exherbo.org/ + + securecookie + + host + ^bugs\.exherbo\.org$ + name + .* + + target + + host + bugs.exherbo.org + + + + Exim.org (partial) + + ruleset + + name + Exim.org (partial) + rule + + from + ^http://lists\.exim\.org/ + to + https://lists.exim.org/ + + target + + host + lists.exim.org + + + + Exinda (partial) + + ruleset + + name + Exinda (partial) + rule + + + from + ^https?://go\.exinda\.com/(cs|image|r)s/ + to + https://na-sjf.marketo.com/$1s/ + + + from + ^http://support\.exinda\.com/ + to + https://support.exinda.com/ + + + securecookie + + host + ^support\.exinda\.com$ + name + .+ + + target + + host + *.exinda.com + + + + Exitec (partial) + + ruleset + + name + Exitec (partial) + rule + + from + ^http://traq\.exitec\.com/ + to + https://traq.exitec.com/ + + target + + host + traq.exitec.com + + + + Exmasters.com (partial) + + ruleset + + name + Exmasters.com (partial) + rule + + from + ^http://admin\.exmasters\.com/ + to + https://admin.exmasters.com/ + + securecookie + + host + ^admin\.exmasters\.com$ + name + .+ + + target + + host + admin.exmasters.com + + + + Exoclick (partial) + + ruleset + + name + Exoclick (partial) + rule + + + from + ^http://(?:www\.|www-static\.)?exoclick\.com/ + to + https://www.exoclick.com/ + + + from + ^http://syndication\.exoclick\.com/ + to + https://syndication.exoclick.com/ + + + securecookie + + host + ^\.exoclick\.com$ + name + .+ + + target + + + host + exoclick.com + + + host + *.exoclick.com + + + + + ExootLab + + ruleset + + name + ExootLab + rule + + from + ^http://(www\.)?exootlab\.com/ + to + https://$1exootlab.com/ + + securecookie + + host + ^www\.exootlab\.com$ + name + .* + + target + + + host + exootlab.com + + + host + www.exootlab.com + + + + + Expedia + + ruleset + + name + Expedia + rule + + + from + ^https?://(?:www\.)?expedia\.com/(?=pub/|p/|.*Checkout) + to + https://www.expedia.com/ + + + from + ^http://media\.expedia\.com/ + to + https://media.expedia.com/ + + + from + ^http://(www\.)?expedia\.co\.uk/ + to + https://$1expedia.co.uk/ + + + securecookie + + host + ^\.expedia\.co(?:om|\.uk)$ + name + .+ + + target + + + host + expedia.com + + + host + *.expedia.com + + + host + expedia.co.uk + + + host + *.expedia.co.uk + + + + + ExpeditedSSL.com + + ruleset + + name + ExpeditedSSL.com + rule + + from + ^http://(www\.)?expeditedssl\.com/ + to + https://$1expeditedssl.com/ + + target + + + host + expeditedssl.com + + + host + www.expeditedssl.com + + + + + Experian + + ruleset + + name + Experian + rule + + + from + ^https?://(?:www\.)?experian\.com/ + to + https://www.experian.com/ + + + from + ^http://experian\.experiandirect\.com/ + to + https://experian.experiandirect.com/ + + + securecookie + + host + ^\.?experian\.experiandirect\.com$ + name + .+ + + target + + + host + experian.com + + + host + www.experian.com + + + host + experian.experiandirect.com + + + host + *.experian.experiandirect.com + + + + + Experience Days + + ruleset + + name + Experience Days + rule + + from + ^(https://|http://(www\.)?)experiencedays\.co\.uk/ + to + https://www.experiencedays.co.uk/ + + securecookie + + host + ^www\.experiencedays\.co\.uk$ + name + .+ + + target + + + host + experiencedays.co.uk + + + host + www.experiencedays.co.uk + + + + + ExploitHub.com + + ruleset + + name + ExploitHub.com + rule + + from + ^http://(?:www\.)?exploithub\.com/ + to + https://exploithub.com/ + + target + + + host + exploithub.com + + + host + www.exploithub.com + + + + + Explosm.net (partial) + + ruleset + + name + Explosm.net (partial) + rule + + + from + ^http://(www\.)?explosm\.net/ + to + https://$1explosm.net/ + + + from + ^http://store\.explosm\.net/ + to + https://explosmstore.myshopify.com/ + + + securecookie + + host + ^\.explosm\.net$ + name + .+ + + target + + + host + explosm.net + + + host + *.explosm.net + + + + + Exposing the Invisible.org + + ruleset + + name + Exposing the Invisible.org + rule + + from + ^http://(www\.)?exposingtheinvisible\.org/ + to + https://$1exposingtheinvisible.org/ + + target + + + host + exposingtheinvisible.org + + + host + www.exposingtheinvisible.org + + + + + Express-VPN.com + + ruleset + + name + Express-VPN.com + rule + + from + ^http://(?:www\.)express-vpn\.com/ + to + https://www.express-vpn.com/ + + target + + + host + express-vpn.com + + + host + www.express-vpn.com + + + + + Extension Defender.com + + ruleset + + name + Extension Defender.com + rule + + from + ^http://(www\.)?extensiondefender\.com/ + to + https://$1extensiondefender.com/ + + securecookie + + host + ^\.extensiondefender\.com$ + name + .+ + + target + + + host + extensiondefender.com + + + host + *.extensiondefender.com + + + + + Extensis.com (partial) + + ruleset + + name + Extensis.com (partial) + rule + + from + ^http://(www\.)?extensis\.com/ + to + https://$1extensis.com/ + + securecookie + + host + ^www\.extensis\.com$ + name + .+ + + target + + + host + extensis.com + + + host + www.extensis.com + + + + + Extra Lunch Money + + ruleset + + name + Extra Lunch Money + rule + + + from + ^http://(www\.)?extralunchmoney\.com/ + to + https://$1extralunchmoney.com/ + + + from + ^http://imageassets\.extralunchmoney\.com/ + to + https://1c2b4e3d78d00f8d775f-9944ec653f3e6c54804d49fe85e91fe7.ssl.cf2.rackcdn.com/ + + + securecookie + + host + ^\.?extralunchmoney\.com$ + name + .+ + + target + + + host + extralunchmoney.com + + + host + *.extralunchmoney.com + + + + + Extreme Digital + + ruleset + + name + Extreme Digital + platform + mixedcontent + rule + + from + ^http://www\.edigital\.hu/ + to + https://www.edigital.hu/ + + securecookie + + host + ^www\.edigital\.hu$ + name + .+ + + target + + host + www.edigital.hu + + + + Extreme Light Infrastructure + + ruleset + + name + Extreme Light Infrastructure + rule + + from + ^https?://(?:www\.)?extreme-light-infrastructure.eu/ + to + https://ssl7.ovh.net/~extremel/ + + target + + + host + extreme-light-infrastructure.eu + + + host + www.extreme-light-infrastructure.eu + + + + + Extreme Tech.com (partial) + + ruleset + + name + Extreme Tech.com (partial) + rule + + + from + ^http://(?:www\.)?extremetech\.com/(?=cobrand-header/|wp-content/|wp-includes/) + to + https://a248.e.akamai.net/f/574/7105/8d/www.extremetech.com/ + + + from + ^http://metrics\.extremetech\.com/ + to + https://extremetech-com.122.2o7.net/ + + + securecookie + + + host + ^\.extremetech\.com$ + name + ^(?:s_\w+|__utm)\w$ + + + host + ^www\.extremetech\.com$ + name + ^_chartbeat2$ + + + target + + + host + extremetech.com + + + host + *.extremetech.com + + + + + Extreme Tracking + + ruleset + + name + Extreme Tracking + rule + + from + ^http://(?:www\.)?extremetracking\.com/ + to + https://extremetracking.com/ + + target + + + host + extremetracking.com + + + host + www.extremetracking.com + + + + + Extreme-Dm.com (partial) + + ruleset + + name + Extreme-Dm.com (partial) + rule + + + from + ^http://nht-(2|3)\.extreme-dm\.com/ + to + https://nht-$1.extreme-dm.com/ + + + from + ^http://t[01]\.extreme-dm\.com/ + to + https://t1.extreme-dm.com/ + + + from + ^http://w1\.extreme-dm\.com/ + to + https://t1.extreme-dm.com/ + + + target + + host + *.extreme-dm.com + + + + EyeTech + + ruleset + + name + EyeTech + rule + + from + ^http://(www\.)?eyetechds\.com/ + to + https://$1eyetechds.com/ + + target + + + host + eyetechds.com + + + host + www.eyetechds.com + + + + + EzineArticles (partial) + + ruleset + + exclusion + + pattern + ^http://ezinearticles\.com/(?:.+\.html)?(?:$|\?) + + name + EzineArticles (partial) + rule + + + from + ^http://(?:www\.)?ezinearticles\.com/ + to + https://ezinearticles.com/ + + + from + ^http://img\.ezinearticles\.com/ + to + https://img.ezinearticles.com/ + + + target + + + host + ezinearticles.com + + + host + *.ezinearticles.com + + + + + F-CDN.com + + ruleset + + name + F-CDN.com + rule + + from + ^http://(\d)\.f-cdn\.com/ + to + https://$1.f-cdn.com/ + + target + + host + *.f-cdn.com + + + + F-Droid + + ruleset + + name + F-Droid + rule + + from + ^http://(www\.)?f-droid\.org/ + to + https://$1f-droid.org/ + + securecookie + + host + ^(?:www\.)?f-droid\.org$ + name + .+ + + target + + + host + f-droid.org + + + host + www.f-droid.org + + + + + F-Secure (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.f-secure\.com/+(?!.+\.(?:css|gif|ico|jpg|js|png)$) + + + pattern + ^http://campaign\.f-secure\.com/+(?!\?).+ + + + name + F-Secure (partial) + rule + + + from + ^http://(www\.)?f-secure\.com/ + to + https://$1f-secure.com/ + + + from + ^http://(analysis|backup(?:\.ob)?|cgi|community|browsingprotection|download(?:\.sp)?|europe|kic|login|msp|my|mysafe|newsletter|partnerportal|safelinks|safeprofile|search|shop|store|webmail|webmailmy)\.f-secure\.com/ + to + https://$1.f-secure.com/ + + + from + ^http://(?:campaign|sp)\.f-secure\.com/ + to + https://www.f-secure.com/ + + + from + ^http://estore\.f-secure\.com/ + to + https://my.f-secure.com/ + + + from + ^http://freedome\.f-secure\.com/(?=img/|js/) + to + https://fs-freedome-production-site.herokuapp.com/ + + + securecookie + + host + ^(?:.*\.)?f-secure\.com$ + name + .+ + + target + + host + *.f-secure.com + + + + F.lux + + ruleset + + name + F.lux + rule + + from + ^http://(?:www\.)?justgetflux\.com/ + to + https://justgetflux.com/ + + target + + + host + justgetflux.com + + + host + *.justgetflux.com + + + + + F35.com + + ruleset + + name + F35.com + rule + + from + ^http://(www\.)?f35\.com/ + to + https://$1f35.com/ + + securecookie + + host + ^www\.f35\.com$ + name + .+ + + target + + + host + f35.com + + + host + www.f35.com + + + + + F5 + + ruleset + + name + F5 + rule + + + from + ^https?://(?:www\.)?f5\.com/ + to + https://www.f5.com/ + + + from + ^http://(devcentral|login)\.f5\.com/ + to + https://$1.f5.com/ + + + from + ^http://(www\.)?f5networks\.co\.jp/(images|shared)/ + to + https://$1f5networks.co.jp/$2/ + + + securecookie + + host + ^.*\.f5\.com$ + name + .* + + target + + + host + f5.com + + + host + *.f5.com + + + host + f5networks.co.jp + + + host + www.f5networks.co.jp + + + + + F9 Distribution + + ruleset + + name + F9 Distribution + rule + + from + ^http://(?:www\.)?f9\.fi/ + to + https://www.f9.fi/ + + target + + + host + f9.fi + + + host + www.f9.fi + + + + + FAZ (broken) + + ruleset + + name + FAZ (broken) + rule + + + from + ^http://fazarchive\.faz\.net/(content|css|images)/ + to + https://fazarchive.faz.net/$1/ + + + from + ^http://(blogs|charts|faz-community|gets|kfz-versicherung|media0|media1|boersenlexikon|ts|verlag2)\.faz\.net/ + to + https://$2.faz.net/ + + + from + ^http://(verlag\.|www\.)?faz\.(de|net)/(2\.5\.7/|cacheproxy300|f30|favicon\.ico|img/|l\.gif|polopoly_fs/) + to + https://www.faz.net/$3 + + + from + ^http://(www\.)?faz(job\.net|-institute\.de)/ + to + https://faz$4/ + + + from + ^http://(rebrush-oas|services)\.fazjob\.net/ + to + https://$5.fazjob.net/ + + + from + ^http://(www\.)?fazschule\.net/ + to + https://www.fazschule.net/ + + + securecookie + + + host + ^\.faz-institut\.de$ + name + .* + + + host + ^faz-community\.faz\.net$ + name + .* + + + host + ^(www\.)?fazjob\.net$ + name + .* + + + target + + + host + faz.de + + + host + *.faz.de + + + host + faz-institute.de + + + host + *.faz-institute.de + + + host + faz.net + + + host + *.faz.net + + + host + fazschule.net + + + host + *.fazschule.net + + + + + FB18_Forum + + ruleset + + name + FB18_Forum + rule + + from + ^http://(?:www\.)?fb18\.de/ + to + https://www.fb18.de/ + + target + + + host + www.fb18.de + + + host + fb18.de + + + + + FC2.com (partial) + + ruleset + + name + FC2.com (partial) + rule + + from + ^http://(blog|form1ssl|id|secure\.id|media3|rentalserver1)\.fc2\.com/ + to + https://$1.fc2.com/ + + securecookie + + + host + ^\.id\.fc2\.com$ + name + ^FCSID$ + + + host + ^(?:\.?blog|id|secure\.id|media3)\.fc2\.com$ + name + .+ + + + target + + host + *.fc2.com + + + + FCPA Blog (partial) + + ruleset + + name + FCPA Blog (partial) + rule + + from + ^http://(?:www\.)?fcpablog\.com/ + to + https://fcpablog.squarespace.com/ + + target + + + host + fcpablog.com + + + host + www.fcpablog.com + + + + + FFMPEG.org + + ruleset + + name + FFMPEG.org + rule + + from + ^http://((?:lists|trac|www)\.)?ffmpeg\.org/ + to + https://$1ffmpeg.org/ + + securecookie + + host + ^trac\.ffmpeg\.org$ + name + .+ + + target + + + host + ffmpeg.org + + + host + *.ffmpeg.org + + + + + FHI.se + + ruleset + + name + FHI.se + platform + mixedcontent + rule + + + from + ^http://www\.fhi\.se/ + to + https://www.fhi.se/ + + + from + ^http://fhi\.se/ + to + https://fhi.se/ + + + target + + + host + fhi.se + + + host + www.fhi.se + + + + + FHNW.ch (partial) + + ruleset + + name + FHNW.ch (partial) + rule + + from + ^http://aai-logon\.fhnw\.ch/ + to + https://aai-logon.fhnw.ch/ + + target + + host + aai-logon.fhnw.ch + + + + FHS.se + + ruleset + + name + FHS.se + platform + mixedcontent + rule + + + from + ^http://fhs\.se/ + to + https://www.fhs.se/ + + + from + ^http://www\.fhs\.se/ + to + https://www.fhs.se/ + + + target + + + host + www.fhs.se + + + host + fhs.se + + + + + FIDO Alliance.org + + ruleset + + name + FIDO Alliance.org + rule + + from + ^http://(www\.)?fidoalliance\.org/ + to + https://$1fidoalliance.org/ + + securecookie + + host + ^\.?fidoalliance\.org$ + name + .+ + + target + + + host + fidoalliance.org + + + host + *.fidoalliance.org + + + + + FIGUE.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?figue\.com/+(?:$|\?) + + name + FIGUE.com (partial) + rule + + from + ^http://(?:cdn1\.|www\.)?figue\.com/ + to + https://www.figue.com/ + + securecookie + + host + ^\.figue\.com$ + name + ^__utm\w$ + + target + + + host + figue.com + + + host + *.figue.com + + + + + FIME.me + + ruleset + + name + FIME.me + rule + + from + ^http://(www\.)?fime\.me/ + to + https://$1fime.me/ + + securecookie + + host + ^\.fime\.me$ + name + .+ + + target + + + host + fime.me + + + host + *.fime.me + + + + + FLOSSManuals.net + + ruleset + + name + FLOSSManuals.net + rule + + from + ^http://(?:en\.|(www\.))?flossmanuals\.net/ + to + https://$1flossmanuals.net/ + + securecookie + + host + ^flossmanuals\.net$ + name + .+ + + target + + + host + flossmanuals.net + + + host + en.flossmanuals.net + + + host + www.flossmanuals.net + + + + + FMV.se + + ruleset + + name + FMV.se + platform + mixedcontent + rule + + + from + ^http://www\.fmv\.se/ + to + https://www.fmv.se/ + + + from + ^http://fmv\.se/ + to + https://www.fmv.se/ + + + target + + + host + fmv.se + + + host + www.fmv.se + + + + + FMyLife.com + + ruleset + + name + FMyLife.com + rule + + + from + ^http://(www\.)?fmylife\.com/ + to + https://$1fmylife.com/ + + + from + ^http://cdn\d\.fmylife\.com/ + to + https://betacie.cachefly.net/ + + + from + ^http://media\.fmylife\.com/ + to + https://cdn.betacie.com/ + + + securecookie + + host + ^(?:www)?\.fmylife\.com$ + name + .+ + + target + + + host + fmylife.com + + + host + *.fmylife.com + + + + + FN Cash.com + + ruleset + + name + FN Cash.com + rule + + from + ^http://(static\.|www\.)?fncash\.com/ + to + https://$1fncash.com/ + + securecookie + + host + ^\.?www\.fncash\.com$ + name + .+ + + target + + + host + fncash.com + + + host + *.fncash.com + + + + + FN Mag.co (false MCB) + + ruleset + + name + FN Mag.co (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?fnmag\.co/ + to + https://$1fnmag.co/ + + securecookie + + host + ^(?:www)?\.fnmag\.co$ + name + .+ + + target + + + host + fnmag.co + + + host + *.fnmag.co + + + + + FN Mag.co (partial) + + ruleset + + name + FN Mag.co (partial) + rule + + from + ^http://cdn5?\.fnmag\.co/ + to + https://d3riqfjibuvp3c.cloudfront.net/ + + target + + + host + cdn.fnmag.co + + + host + cdn5.fnmag.co + + + + + FORA.tv (partial) + + ruleset + + name + FORA.tv (partial) + rule + + + from + ^http://(?:cdn\.|(www\.))?fora\.tv/(fora/clientscript|purchase)/ + to + https://$1fora.tv/$2/ + + + from + ^http://(?:cdn\.|(www\.))?fora\.tv/i/ + to + https://$1fora.tv/i/ + + + target + + + host + fora.tv + + + host + www.fora.tv + + + + + FOSDEM.org + + ruleset + + name + FOSDEM.org + rule + + from + ^http://((?:archive|video|www)\.)?fosdem\.org/ + to + https://$1fosdem.org/ + + target + + + host + fosdem.org + + + host + *.fosdem.org + + + + + FOSSBazaar.org (partial) + + ruleset + + name + FOSSBazaar.org (partial) + rule + + from + ^http://(\w+\.)?fossbazaar\.org/ + to + https://$1fossbazaar.org/ + + securecookie + + host + ^(.*\.)?fossbazaar\.org$ + name + .* + + target + + + host + fossbazaar.org + + + host + *.fossbazaar.org + + + + + FP Complete.com + + ruleset + + name + FP Complete.com + rule + + from + ^http://(www\.)?fpcomplete\.com/ + to + https://$1fpcomplete.com/ + + securecookie + + host + ^(?:www\.)?fpcomplete\.com$ + name + .+ + + target + + + host + fpcomplete.com + + + host + www.fpcomplete.com + + + + + FREECULTR + + ruleset + + name + FREECULTR + rule + + from + ^https?://(?:static\.|www\.)?freecultr\.com/ + to + https://www.freecultr.com/ + + securecookie + + host + ^\.freecultr\.com$ + name + .+ + + target + + + host + freecultr.com + + + host + *.freecultr.com + + + + + FS Data + + ruleset + + name + FS Data + rule + + from + ^http://(webmail\.|www\.)?fsdata\.se/ + to + https://$1fsdata.se/ + + securecookie + + host + ^(?:webmail\.)?fsdata\.se$ + name + .+ + + target + + + host + fsdata.se + + + host + *.fsdata.se + + + + + FS ISAC.com + + ruleset + + name + FS ISAC.com + rule + + from + ^http://(portal\.|www\.)?fsisac\.com/ + to + https://$1fsisac.com/ + + target + + + host + fsisac.com + + + host + *.fsisac.com + + + + + FSDN.com + + ruleset + + name + FSDN.com + rule + + from + ^http://(a|c)\.fsdn\.com/ + to + https://$1.fsdn.com/ + + target + + host + *.fsdn.com + + + + FSFE.org (partial) + + ruleset + + name + FSFE.org (partial) + rule + + + from + ^https?://(?:www\.)?freeyourandroid\.org/(?:.*) + to + https://fsfe.org/campaigns/android/android.html + + + from + ^http://((?:blogs|crm|fellowship|vote|wiki|www)\.)?fsfe\.org/ + to + https://$1fsfe.org/ + + + from + ^http://(blogs\.|fellowship\.|www\.)?fsfeurope\.org/ + to + https://$1fsfeurope.org/ + + + securecookie + + host + ^(?:fellowship|vote)\.fsfe\.org$ + name + .+ + + target + + + host + freeyourandroid.org + + + host + www.freeyourandroid.org + + + host + fsfe.org + + + host + *.fsfe.org + + + host + fsfeurope.org + + + host + *.fsfeurope.org + + + + + FSU.edu (partial) + + ruleset + + name + FSU.edu (partial) + rule + + from + ^http://((?:(?:www\.)?admissions|campus|cas|(?:service|system|webmail|www1?)\.cs|financialaid|foundation|(?:www\.)?my|one|(?:cfprd|apps)\.oti|(?:www\.)?registrar|www)\.)?fsu\.edu/ + to + https://$1fsu.edu/ + + securecookie + + host + ^(?:(?:www\.)?admissions|campus|cas|w(?:ebmail|ww)\.cs|foundation|(?:www\.)?my|one|(?:apps|cfprd)\.oti|(?:www\.)?registrar)\.fsu\.edu$ + name + .+ + + target + + + host + fsu.edu + + + host + *.fsu.edu + + + + + FTD.de + + ruleset + + name + FTD.de + platform + mixedcontent + rule + + from + ^http://(?:www\.)?ftd\.de/ + to + https://www.ftd.de/ + + target + + + host + www.ftd.de + + + host + ftd.de + + + + + FTL Game.com (false MCB) + + ruleset + + name + FTL Game.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?ftlgame\.com/ + to + https://$1ftlgame.com/ + + securecookie + + host + ^\.ftlgame\.com$ + name + .+ + + target + + + host + ftlgame.com + + + host + *.ftlgame.com + + + + + FX Prime.com + + ruleset + + name + FX Prime.com + rule + + + from + ^http://(?:www\.)?fxprime\.com/ + to + https://www.fxprime.com/ + + + from + ^http://mirror\.fxprime\.com/ + to + https://mirror.fxprime.com/ + + + target + + + host + fxprime.com + + + host + *.fxprime.com + + + + + FX Systems + + ruleset + + name + FX Systems + rule + + from + ^http://(www\.)?fxsystems\.com/ + to + https://$1fxsystems.com/ + + securecookie + + host + ^\.fxsystems.com$ + name + .+ + + target + + + host + fxsystems.com + + + host + *.fxsystems.com + + + + + Fab Lab Truck.nl + + ruleset + + name + Fab Lab Truck.nl + rule + + from + ^http://(www\.)?fablabtruck\.nl/ + to + https://$1fablabtruck.nl/ + + target + + + host + fablabtruck.nl + + + host + www.fablabtruck.nl + + + + + FabLab Tacoma + + ruleset + + name + FabLab Tacoma + rule + + from + ^http://(www\.)?fablabtacoma\.com/ + to + https://$1fablabtacoma.com/ + + securecookie + + host + ^(?:www\.)?fablabtacoma\.com$ + name + .+ + + target + + + host + fablabtacoma.com + + + host + www.fablabtacoma.com + + + + + Fabricatorz + + ruleset + + name + Fabricatorz + rule + + from + ^https?://(?:(private\.)|www\.)?fabricatorz\.com/ + to + https://$1fabricatorz.com/ + + securecookie + + host + ^fabricatorz\.com$ + name + .+ + + target + + + host + fabricatorz.com + + + host + *.fabricatorz.com + + + + + Facebook + + ruleset + + name + Facebook + rule + + + from + ^https?://f(?:acebook|b)\.com/ + to + https://www.facebook.com/ + + + from + ^https?://www\.f(?:acebook|b)\.com/ + to + https://www.facebook.com/ + + + from + ^http://(\w\w-\w\w|(?:b\.)?s-static\.ak|api|api-read|apps|badge|blog|code|connect|developers|graph|l|login|m|pixel|(?:code|www)\.prod|research|ssl|static-ak|www\.v6)\.facebook\.com/ + to + https://$1.facebook.com/ + + + from + ^https?://static\.ak\.facebook\.com/ + to + https://s-static.ak.facebook.com/ + + + from + ^http://www\.connect\.facebook\.com/ + to + https://connect.facebook.com/ + + + from + ^https?://(?:www\.)?facebook\.(?:be|is|it|nl|us)/ + to + https://www.facebook.com/ + + + from + ^https?://(?:de-de\.|fr-fr\.|www\.)?facebook\.(de|fr)/ + to + https://$1-$1.facebook.com/ + + + from + ^https?://(?:da-dk\.|www\.)?facebook\.dk/ + to + https://da-dk.facebook.com/ + + + from + ^https?://(?:es-es\.|www\.)?facebook\.(?:es|mx)/ + to + https://es-es.facebook.com/ + + + from + ^https?://(?:ja-jp\.|www\.)?facebook\.jp/ + to + https://ja-jp.facebook.com/ + + + from + ^https?://(?:nb-no\.|www\.)?facebook\.no/ + to + https://nb-no.facebook.com/ + + + from + ^https?://(?:sv-se\.|www\.)?facebook\.se/ + to + https://sv-se.facebook.com/ + + + from + ^http://connect\.facebook\.net/ + to + https://connect.facebook.net/ + + + from + ^http://newsroom\.fb\.com/ + to + https://newsroom.fb.com/ + + + from + ^https?://dragon\.ak\.fbcdn\.net/ + to + https://fbcdn-dragon-a.akamaihd.net/ + + + from + ^https?://external\.ak\.fbcdn\.net/ + to + https://fbexternal-a.akamaihd.net/ + + + from + ^https?://photos-([a-h])\.ak\.fbcdn\.net/ + to + https://fbcdn-sphotos-$1-a.akamaihd.net/ + + + from + ^https?://profile\.ak\.fbcdn\.net/ + to + https://fbcdn-profile-a.akamaihd.net/ + + + from + ^https?://(?:a\d\.)?sphotos\.ak\.fbcdn\.net/ + to + https://fbcdn-sphotos-a.akamaihd.net/ + + + from + ^https?://(?:static\.connect|(?:s-)?static)\.ak\.fbcdn\.net/ + to + https://s-static.ak.fbcdn.net/ + + + from + ^http://([^@:\./]+)(\.xx)?\.fbcdn\.net/ + to + https://$1$2.fbcdn.net/ + + + from + ^https?://fb\.ecn\.api\.tiles\.virtualearth\.net/ + to + https://api.tiles.virtualearth.net/ + + + securecookie + + + host + ^(?:.*\.)?facebook\.com$ + name + (?:c_user|lu|sct|xs) + + + host + ^\.facebook\.com$ + name + .+ + + + host + ^newsroom\.fb\.com$ + name + .+ + + + target + + + host + facebook.* + + + host + www.facebook.* + + + host + *.facebook.com + + + host + *.facebook.de + + + host + *.facebook.dk + + + host + *.facebook.es + + + host + *.facebook.fr + + + host + *.facebook.jp + + + host + *.facebook.mx + + + host + connect.facebook.net + + + host + *.facebook.no + + + host + *.facebook.se + + + host + fb.com + + + host + *.fb.com + + + host + *.fbcdn.net + + + + + Facebook Hidden Service + + ruleset + + name + Facebook Hidden Service + rule + + + from + ^http://facebookcorewwwi\.onion/ + to + https://facebookcorewwwi.onion/ + + + from + ^http://fbcdn23dssr3jqnq\.onion/ + to + https://fbcdn23dssr3jqnq.onion/ + + + from + ^http://fbsbx2q4mvcl63pw\.onion/ + to + https://fbsbx2q4mvcl63pw.onion/ + + + target + + + host + facebookcorewwwi.onion + + + host + fbcdn23dssr3jqnq.onion + + + host + fbsbx2q4mvcl63pw.onion + + + + + Facebook Studio + + ruleset + + name + Facebook Studio + rule + + + from + ^http://facebook-studio\.com/ + to + https://www.facebook-studio.com/ + + + from + ^http://(\w+)\.facebook-studio\.com/ + to + https://$1.facebook-studio.com/ + + + securecookie + + host + .+\.facebook-studio\.com$ + name + .+ + + target + + + host + facebook-studio.com + + + host + *.facebook-studio.com + + + + + Facepunch.com + + ruleset + + name + Facepunch.com + rule + + from + ^http://(www\.)?facepunch\.com/ + to + https://$1facepunch.com/ + + securecookie + + host + ^\.facepunch\.com$ + name + .+ + + target + + + host + facepunch.com + + + host + *.facepunch.com + + + + + Factor.cc + + ruleset + + name + Factor.cc + platform + firefox + rule + + from + ^http://(www\.)?factor\.cc/ + to + https://factor.cc/ + + securecookie + + + host + ^factor\.cc$ + name + .+ + + + host + ^www\.factor\.cc$ + name + .+ + + + target + + + host + factor.cc + + + host + www.factor.cc + + + + + Factory Expo Home Centers + + ruleset + + name + Factory Expo Home Centers + rule + + + from + ^http://(www\.)?(azchampion|expo(?:mobile)?homes|factory(?:directcabins|expo(?:direct|expohomes|mobilehomes)|homesale|selecthomes)|fbhexpo)\.com/ + to + https://$1$2.com/ + + + from + ^http://(www\.)?(cimacorp|factoryexpo)\.net/ + to + https://$1$2.net/ + + + securecookie + + + host + ^(?:.*\.)?(?:azchampion|expo(?:mobile)?homes|factory(?:directcabins|expo(?:direct|expohomes|mobilehomes)|homesale|selecthomes)|fbhexpo)\.com$ + name + .+ + + + host + ^(?:.*\.)?(?:cimacorp|factoryexpo)\.net$ + name + .+ + + + target + + + host + azchampion.com + + + host + *.azchampion.com + + + host + cimacorp.net + + + host + www.cimacorp.net + + + host + expohomes.com + + + host + *.expohomes.com + + + host + expomobilehomes.com + + + host + *.expomobilehomes.com + + + host + factorydirectcabins.com + + + host + *.factorydirectcabins.com + + + host + factoryexpo.net + + + host + *.factoryexpo.net + + + host + factoryexpodirect.com + + + host + *.factoryexpodirect.com + + + host + factoryexpohomes.com + + + host + *.factoryexpohomes.com + + + host + factoryhomesale.com + + + host + www.factoryhomesale.com + + + host + factoryselecthomes.com + + + host + *.factoryselecthomes.com + + + host + fbhexpo.com + + + host + *.fbhexpo.com + + + + + Fair Work Commission + + ruleset + + name + Fair Work Commission + rule + + from + ^http://(?:www\.)?fwc\.gov\.au/ + to + https://www.fwc.gov.au/ + + target + + + host + fwc.gov.au + + + host + *.fwc.gov.au + + + + + Fair Work Ombudsman + + ruleset + + name + Fair Work Ombudsman + rule + + from + ^http://(?:www\.)?fairwork\.gov\.au/ + to + https://www.fairwork.gov.au/ + + target + + + host + fairwork.gov.au + + + host + *.fairwork.gov.au + + + + + Fairfax Digital (partial) + + ruleset + + name + Fairfax Digital (partial) + rule + + + from + ^http://ads\.afraccess\.com/ + to + https://ads.afraccess.com/ + + + from + ^http://membercentre\.fairfax\.com\.au/ + to + https://membercentre.fairfax.com.au/ + + + securecookie + + host + ^membercentre\.fairfax\.com\.au$ + name + .* + + target + + + host + ads.afraccess.com + + + host + membercentre.fairfax.com.au + + + + + Fairfax Public Access + + ruleset + + name + Fairfax Public Access + rule + + from + ^https?://(?:www\.)?fcac\.org/ + to + https://www.fcac.org/ + + securecookie + + host + ^\.fcac\.org$ + name + .+ + + target + + + host + fcac.org + + + host + *.fcac.org + + + + + Faith in Motion.com.au (partial) + + ruleset + + name + Faith in Motion.com.au (partial) + rule + + from + ^http://(www\.)?faithinmotion\.com\.au/(?=favicon\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1faithinmotion.com.au/ + + target + + + host + faithinmotion.com.au + + + host + www.faithinmotion.com.au + + + + + Fakturownia (partial) + + ruleset + + name + Fakturownia (partial) + rule + + from + ^http://(www\.)?fakturownia\.pl/ + to + https://$1fakturownia.pl/ + + securecookie + + host + ^\.fakturownia\.pl$ + name + .+ + + target + + + host + fakturownia.pl + + + host + *.fakturownia.pl + + + + + Falkvinge on Infopolicy + + ruleset + + name + Falkvinge on Infopolicy + rule + + from + ^http://(www\.)?falkvinge\.net/ + to + https://$1falkvinge.net/ + + securecookie + + host + ^\.falkvinge\.net$ + name + .+ + + target + + + host + falkvinge.net + + + host + *.falkvinge.net + + + + + Family Christian Stores + + ruleset + + name + Family Christian Stores + rule + + from + ^http://(media\.|www\.)?familychristian\.com/ + to + https://$1familychristian.com/ + + securecookie + + host + ^\.?www\.familychristian\.com$ + name + .* + + target + + + host + familychristian.com + + + host + *.familychristian.com + + + host + *.www.familychristian.com + + + + + Family Medicine Association + + ruleset + + name + Family Medicine Association + rule + + from + ^http://(www\.)?fmaba\.com/ + to + https://$1famaba.com/ + + securecookie + + host + ^\.fmaba\.com$ + name + .+ + + target + + + host + fmaba.com + + + host + *.fmaba.com + + + + + FanFiction (partial) + + ruleset + + name + FanFiction (partial) + rule + + + from + ^http://m\.fanfiction\.net/ + to + https://m.fanfiction.net/ + + + from + ^http://ffcdn2012\.fictionpressllc\.netdna-cdn\.com/ + to + https://ffcdn2012-fictionpressllc.netdna-ssl.com/ + + + target + + + host + m.fanfiction.net + + + host + ffcdn2012.fictionpressllc.netdna-cdn.com + + + + + Fanatics (partial) + + ruleset + + name + Fanatics (partial) + rule + + + from + ^http://(?:www\.)?fanatics\.com/((?:accoun|checkou)t(?:$|\?|/)|css/) + to + https://www.fanatics.com/$1 + + + from + ^http://st\.fanatics\.com/ + to + https://st.fanatics.com/ + + + securecookie + + host + ^st\.fanatics\.com$ + name + .+ + + target + + + host + fanatics.com + + + host + *.fanatics.com + + + + + Fanboy + + ruleset + + name + Fanboy + rule + + from + ^http://((?:forums|hg|secure|www)\.)?fanboy\.co\.nz/ + to + https://$1fanboy.co.nz/ + + securecookie + + host + ^(.+\.)?fanboy\.co\.nz$ + name + .* + + target + + + host + fanboy.co.nz + + + host + *.fanboy.co.nz + + + + + Fandago + + ruleset + + name + Fandago + rule + + from + ^http://(www\.)?fandago\.com/ + to + https://$1fandago.com/ + + target + + + host + fandago.com + + + host + www.fandago.com + + + + + Fandango (partial) + + ruleset + + name + Fandango (partial) + platform + mixedcontent + rule + + + from + ^http://fandango\.com/ + to + https://www.fandango.com/ + + + from + ^http://(content\.|www\.)?fandango\.com/ + to + https://$1fandango.com/ + + + from + ^http://(?:images\.fandango|(?:www\.)?statf)\.com/ + to + https://a248.e.akamai.net/f/248/9057/1d/content.fandango.com/ + + + securecookie + + host + ^(www)?\.?fandango\.com$ + name + .* + + target + + + host + fandango.com + + + host + *.fandango.com + + + host + statf.com + + + host + www.statf.com + + + + + Fangamer (partial) + + ruleset + + name + Fangamer (partial) + rule + + + from + ^http://secure\.fangamer\.com/ + to + https://secure.fangamer.com/ + + + from + ^https?://(?:www\.)?fangamer\.net/ + to + https://fangamer.myshopify.com/ + + + securecookie + + host + ^secure\.fangamer\.com$ + name + .+ + + target + + + host + secure.fangamer.com + + + host + fangamer.net + + + host + www.fangamer.net + + + + + Fanhatten (partial) + + ruleset + + name + Fanhatten (partial) + rule + + + from + ^https?://(?:www\.)?fanhattan\.com/ + to + https://www.fanhattan.com/ + + + from + ^http://blog\.fanhattan\.com/ + to + https://blog.fanhattan.com/ + + + from + ^https?://cf2\.imgobject\.com/ + to + https://d1zm4mmpsrckwj.cloudfront.net/ + + + target + + + host + fanhattan.com + + + host + *.fanhattan.com + + + host + cf2.imgobject.com + + + + + Faraday sec.com + + ruleset + + name + Faraday sec.com + rule + + from + ^http://(www\.)?faradaysec\.com/ + to + https://$1faradaysec.com/ + + target + + + host + faradaysec.com + + + host + www.faradaysec.com + + + + + Fark (partial) + + ruleset + + name + Fark (partial) + rule + + + from + ^https?://(?:www\.)?fark\.com/(blog|comments/|feedback|forgotpassword|ll$|newuser|psbrowser|quiz|submit/|users) + to + https://www.fark.com/$1 + + + from + ^http://(app|beta|gw|m|shop|ssl|(?:m\.)?total)\.fark\.com/ + to + https://$1.fark.com/ + + + from + ^http://img\.fark\.net/ + to + https://img.fark.net/ + + + securecookie + + host + ^(?:gw|shop)\.fark\.com$ + name + .+ + + target + + + host + fark.com + + + host + *.fark.com + + + host + img.fark.net + + + + + Farmaciforbundet.se + + ruleset + + name + Farmaciforbundet.se + rule + + + from + ^http://farmaciforbundet\.se/ + to + https://www.farmaciforbundet.se/ + + + from + ^http://www\.farmaciforbundet\.se/ + to + https://www.farmaciforbundet.se/ + + + target + + + host + farmaciforbundet.se + + + host + www.farmaciforbundet.se + + + + + Faround.net (false MCB) + + ruleset + + name + Faround.net (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?faround\.net/ + to + https://www.faround.net/ + + securecookie + + host + ^(?:www)?\.faround\.net$ + name + .+ + + target + + + host + faround.net + + + host + *.faround.net + + + + + Fashion Dip + + ruleset + + name + Fashion Dip + rule + + from + ^http://(www\.)?fashiondip\.com/ + to + https://$1fashiondip.com/ + + securecookie + + host + ^(?:w*\.)?fashiondip\.com$ + name + .+ + + target + + + host + fashiondip.com + + + host + *.fashiondip.com + + + + + Fashionara.com (false MCB) + + ruleset + + name + Fashionara.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?fashionara\.com/ + to + https://$1fashionara.com/ + + securecookie + + host + ^\.fashionara\.com$ + name + .+ + + target + + + host + fashionara.com + + + host + *.fashionara.com + + + + + Fashionara.com (partial) + + ruleset + + name + Fashionara.com (partial) + rule + + + from + ^http://(www\.)?fashionara\.com/(?=favicon\.ico|customer/|media/|skin/) + to + https://$1fashionara.com/ + + + from + ^http://static\.fashionara\.com/ + to + https://d1x2ae5wsotp3k.cloudfront.net/ + + + from + ^http://staticassets\.fashionara\.com/ + to + https://s3-ap-southeast-1.amazonaws.com/staticassets.fashionara.com/ + + + target + + + host + fashionara.com + + + host + static.fashionara.com + + + host + www.fashionara.com + + + + + Fass.se + + ruleset + + name + Fass.se + rule + + + from + ^http://fass\.se/ + to + https://www.fass.se/ + + + from + ^http://www\.fass\.se/ + to + https://www.fass.se/ + + + target + + + host + fass.se + + + host + www.fass.se + + + + + Fast Co Design.com + + ruleset + + name + Fast Co Design.com + rule + + from + ^http://(?:www\.)?fastcodesign\.com/ + to + https://www.fastcodesign.com/ + + target + + + host + fastcodesign.com + + + host + www.fastcodesign.com + + + + + Fast Company (partial) + + ruleset + + name + Fast Company (partial) + rule + + + from + ^http://(?:www\.)?fastcompany\.com/ + to + https://www.fastcompany.com/ + + + from + ^http://(\w)\.fastcompany\.net/ + to + https://$1.fastcompany.net/ + + + from + ^http://magazine\.fastcompany\.com/ + to + https://magazine.fastcompany.com/ + + + securecookie + + host + ^magazine\.fastcompany\.com$ + name + .* + + target + + + host + fastcompany.com + + + host + *.fastcompany.com + + + host + *.fastcompany.net + + + + + Fast Serv.com + + ruleset + + name + Fast Serv.com + rule + + from + ^http://((?:portal|status|www)\.)?fastserv\.com/ + to + https://$1fastserv.com/ + + securecookie + + host + ^(?:status|www)\.fastserv\.com$ + name + .+ + + target + + + host + fastserv.com + + + host + *.fastserv.com + + + + + Fast Web Media (partial) + + ruleset + + name + Fast Web Media (partial) + rule + + + from + ^http://(www\.)?fastwebmedia\.com/ + to + https://$1fastwebmedia.com/ + + + from + ^http://([\w\-]+\.)?fwmapps\.co\.uk/ + to + https://$1fwmapps.co.uk/ + + + securecookie + + host + ^.+\.fwmapps\.co\.uk$ + name + .+ + + target + + + host + fastwebmedia.com + + + host + www.fastwebmedia.com + + + host + fwmapps.co.uk + + + host + *.fwmapps.co.uk + + + + + FastDomain + + ruleset + + name + FastDomain + rule + + from + ^http://(partner\.|webmail\.|www\.)?fastdomain\.com/ + to + https://$1fastdomain.com/ + + target + + + host + fastdomain.com + + + host + *.fastdomain.com + + + + + FastShare.cz + + ruleset + + name + FastShare.cz + rule + + from + ^http://(img\.|www\.)?fastshare\.cz/ + to + https://$1fastshare.cz/ + + securecookie + + host + ^\.(?:www\.)?fastshare\.cz$ + name + .+ + + target + + + host + fastshare.cz + + + host + *.fastshare.cz + + + + + FastSpring + + ruleset + + name + FastSpring + rule + + from + ^http://((?:resource|sites|springboard|www)\.)?fastspring\.com/ + to + https://$1fastspring.com/ + + securecookie + + host + ^.*\.fastspring\.com$ + name + .* + + target + + + host + fastspring.com + + + host + *.fastspring.com + + + + + FastWebHost.com (partial) + + ruleset + + name + FastWebHost.com (partial) + rule + + + from + ^http://(www\.)?ehostpros\.com/ + to + https://$1ehostpros.com/ + + + from + ^http://(support\.|www\.)?fastwebhost\.com/ + to + https://$1fastwebhost.com/ + + + securecookie + + host + ^(support|www)\.fastwebhost\.com$ + name + .* + + target + + + host + ehostpros.com + + + host + www.ehostpros.com + + + host + fastwebhost.com + + + host + support.fastwebhost.com + + + host + www.fastwebhost.com + + + + + Fasthosts (partial) + + ruleset + + name + Fasthosts (partial) + rule + + + from + ^https://www\.fasthosts\.co\.uk/js/track\.js + to + https://www.fasthosts.co.uk/favicon.ico + + + from + ^https?://(?:www\.)?fasthosts\.co\.uk/ + to + https://www.fasthosts.co.uk/ + + + from + ^http://(admin|login|order)\.fasthosts\.co\.uk/ + to + https://$1.fasthosts.co.uk/ + + + from + ^http://secure(\d|1[0-3-9]|2[0-4]|5[26])\.prositehosting\.co\.uk/ + to + https://secure$1.prositehosting.co.uk/ + + + from + ^https?://(?:www\.)?ukreg\.com/ + to + https://www.ukreg.com/ + + + securecookie + + + host + ^.*\.fasthosts\.co\.uk$ + name + .* + + + host + ^www\.ukreg\.com$ + name + .* + + + target + + + host + fasthosts.co.uk + + + host + *.fasthosts.co.uk + + + host + *.prositehosting.co.uk + + + host + ukreg.com + + + host + www.ukreg.com + + + + + Fastly + + ruleset + + exclusion + + pattern + ^http://(?:(?!assets1\.fastly\.com\.a\.prod\.).+\.a\.prod|purge)\.fastly\.net/ + + name + Fastly + rule + + + from + ^http://(?:www\.)?fastly\.com/ + to + https://www.fastly.com/ + + + from + ^http://(ap[ip]|beacon|beta|blog|debug|maintenance)\.fastly\.com/ + to + https://$1.fastly.com/ + + + from + ^https?://assets1\.fastly\.com\.a\.prod\.fastly\.net/ + to + https://fastly.a.ssl.fastly.net/ + + + from + ^http://([^@:/]+)\.fastly\.net/ + to + https://$1.fastly.net/ + + + from + ^http://([\w-]+)\.fastssl\.net/ + to + https://$1.fastssl.net/ + + + from + ^http://([\w-]+)\.imgix\.net/ + to + https://$1.imgix.net/ + + + from + ^http://([\w-]+)\.parsecdn\.com/ + to + https://$1.parsecdn.com/ + + + target + + + host + fastly.com + + + host + *.fastly.com + + + host + *.fastly.net + + + host + *.fastssl.net + + + host + *.imgix.net + + + host + parsecdn.com + + + + + Fastmail (partial) + + ruleset + + name + Fastmail (partial) + rule + + from + ^http://((?:beta|qa|www)\.)?fastmail\.fm/ + to + https://$1fastmail.fm/ + + securecookie + + host + ^\.www\.fastmail\.fm$ + name + .+ + + target + + + host + fastmail.fm + + + host + *.fastmail.fm + + + + + FatCow Web Hosting + + ruleset + + name + FatCow Web Hosting + platform + mixedcontent + rule + + from + ^http://(\w+\.)?fatcow\.com(:443)?/ + to + https://$1fatcow.com$2/ + + securecookie + + host + ^(.*\.)?fatcow\.com$ + name + .* + + target + + + host + fatcow.com + + + host + *.fatcow.com + + + + + FaxCritics + + ruleset + + name + FaxCritics + rule + + from + ^http://(www\.)?faxcritics\.com/ + to + https://$1faxcritics.com/ + + securecookie + + host + ^\.faxcritics.com$ + name + .+ + + target + + + host + faxcritics.com + + + host + *.faxcritics.com + + + + + Fazekas + + ruleset + + name + Fazekas + rule + + + from + ^http://(www\.)?fazekas\.hu/ + to + https://fazekas.hu/ + + + from + ^http://sas\.fazekas\.hu/ + to + https://sas.fazekas.hu/ + + + from + ^http://summertime\.fazekas\.hu/ + to + https://summertime.fazekas.hu/ + + + target + + + host + fazekas.hu + + + host + www.fazekas.hu + + + host + sas.fazekas.hu + + + host + summertime.fazekas.hu + + + + + Fb.me + + ruleset + + name + Fb.me + rule + + + from + ^http://(www\.)?fb\.me/ + to + https://$1fb.me/ + + + from + ^https?://on\.fb\.me/ + to + https://bit.ly/ + + + target + + + host + fb.me + + + host + *.fb.me + + + + + Fcitx-im.org + + ruleset + + name + Fcitx-im.org + rule + + from + ^http://(www\.)?fcitx-im\.org/ + to + https://$1fcitx-im.org/ + + target + + + host + fcitx-im.org + + + host + www.fcitx-im.org + + + + + FeatherCoin (partial) + + ruleset + + name + FeatherCoin (partial) + rule + + from + ^http://forum\.feathercoin\.com/ + to + https://forum.feathercoin.com/ + + securecookie + + host + ^forum\.feathercoin\.com$ + name + .+ + + target + + host + forum.feathercoin.com + + + + Febas.de + + ruleset + + name + Febas.de + rule + + from + ^http://(?:www\.)?febas\.de/ + to + https://www.febas.de/ + + target + + + host + febas.de + + + host + www.febas.de + + + + + FedEx.com (partial) + + ruleset + + exclusion + + + pattern + ^http://m\.fedex\.com/+(?!img/) + + + pattern + ^http://wwwtest\.fedex\.com/(?!css/|images/) + + + name + FedEx.com (partial) + rule + + + from + ^http://(?:www\.)?fedex\.com/(?=css/|images/|myprofile/) + to + https://www.fedex.com/ + + + from + ^http://(images|m|wwwtest)\.fedex\.com/ + to + https://$1.fedex.com/ + + + from + ^http://metrics\.fedex\.com/ + to + https://fedex-com.d2.sc.omtrdc.net/ + + + securecookie + + host + ^\.fedex\.com$ + name + ^s_\w+$ + + target + + + host + fedex.com + + + host + *.fedex.com + + + + + Federal Aviation Administration (partial) + + ruleset + + name + Federal Aviation Administration (partial) + rule + + from + ^http://www\.faa\.gov/ + to + https://www.faa.gov/ + + securecookie + + host + ^www\.faa\.gov$ + name + .+ + + target + + host + www.faa.gov + + + + Federal Bureau of Investigation (partial) + + ruleset + + name + Federal Bureau of Investigation (partial) + platform + mixedcontent + rule + + + from + ^http://fbi\.gov/ + to + https://www.fbi.gov/ + + + from + ^http://((?:foia|forms|tips|vault|www)\.)?fbi\.gov/ + to + https://$1fbi.gov/ + + + target + + + host + fbi.gov + + + host + *.fbi.gov + + + + + Federal Business Opportunities + + ruleset + + name + Federal Business Opportunities + rule + + from + ^https?://(?:www\.)?f(bo|edbizopps)\.gov/ + to + https://www.f$1.gov/ + + securecookie + + host + ^(?:.*\.)?fbo\.gov$ + name + .+ + + target + + + host + fbo.gov + + + host + *.fbo.gov + + + host + *.www.fbo.gov + + + host + fedbizopps.gov + + + host + www.fedbizopps.gov + + + + + Federal Communications Commission (partial) + + ruleset + + name + Federal Communications Commission (partial) + rule + + + from + ^https?://fcc\.gov/ + to + https://www.fcc.gov/ + + + from + ^http://(apps|data|fjallfoss|licensing|stations|transition|www)\.fcc\.gov/ + to + https://$1.fcc.gov/ + + + from + ^http://hraunfoss\.fcc\.gov/edocs_public/attachmatch/(?=.+) + to + https://apps.fcc.gov/edocs_public/attachmatch/ + + + from + ^http://publicsafety\.fcc\.gov/(?:\?.*)?$ + to + https://www.fcc.gov/pshs/ + + + from + ^http://reboot\.fcc\.gov/about-reboot$ + to + https://www.fcc.gov/about + + + from + ^http://reboot\.fcc\.gov/data(?:\?.*)?$ + to + https://www.fcc.gov/data + + + securecookie + + host + ^.*\.fcc\.gov$ + name + .* + + target + + + host + fcc.gov + + + host + *.fcc.gov + + + + + Federal Deposit Insurance Corporation + + ruleset + + name + Federal Deposit Insurance Corporation + rule + + from + ^https?://(?:www(2)?\.)?fdic\.gov/ + to + https://www$1.fdic.gov/ + + securecookie + + host + ^.*\.fdic\.gov$ + name + .* + + target + + + host + fdic.gov + + + host + *.fdic.gov + + + + + Federal Emergency Management Agency (FEMA) + + ruleset + + name + Federal Emergency Management Agency (FEMA) + rule + + + from + ^https?://fema\.gov/ + to + https://www.fema.gov/ + + + from + ^http://([^/:@]+)?\.fema\.gov/ + to + https://$1.fema.gov/ + + + target + + + host + fema.gov + + + host + *.fema.gov + + + + + Federal Office for Information Security + + ruleset + + name + Federal Office for Information Security + rule + + + from + ^http://www\.bsi\.de/ + to + https://www.bsi.de/ + + + from + ^https?://(?:www\.)?bsi-fuer-buerger\.de/ + to + https://www.bsi-fuer-buerger.de/ + + + from + ^https?://(?:www\.)?bsi\.bund\.de/ + to + https://www.bsi.bund.de/ + + + securecookie + + host + ^www\.bsi(?:\.bund|-fuer-buerger)?\.de$ + name + .+ + + target + + + host + www.bsi.de + + + host + bsi-fuer-buerger.de + + + host + www.bsi-fuer-buerger.de + + + host + bsi.bund.de + + + host + www.bsi.bund.de + + + + + Federal Office of Administration + + ruleset + + name + Federal Office of Administration + rule + + from + ^https?://(?:www\.)?bva\.bund\.de/ + to + https://www.bva.bund.de/ + + securecookie + + host + ^www\.bva\.bund\.de$ + name + .+ + + target + + + host + bva.bund.de + + + host + www.bva.bund.de + + + + + Federal Register + + ruleset + + name + Federal Register + rule + + from + ^http://(www\.)?federalregister\.gov/ + to + https://www.federalregister.gov/ + + securecookie + + host + ^www\.federalregister\.gov$ + name + .* + + target + + + host + federalregister.gov + + + host + www.federalregister.gov + + + + + Federal Reserve + + ruleset + + name + Federal Reserve + rule + + + from + ^https?://federalreserve\.gov/ + to + https://www.federalreserve.gov/ + + + from + ^http://([^/:@]+)?\.federalreserve\.gov/ + to + https://$1.federalreserve.gov/ + + + target + + + host + federalreserve.gov + + + host + *.federalreserve.gov + + + + + Federal Trade Commission (partial) + + ruleset + + exclusion + + pattern + ^http://business\.ftc\.gov/(?!misc/|modules/|sites/) + + name + Federal Trade Commission (partial) + rule + + + from + ^http://(bulkorder|business|(?:www\.)?consum(?:e|ido)r)\.ftc\.gov/ + to + https://$1.ftc.gov/ + + + from + ^http://(www\.)?ftccomplaintassistant\.gov/ + to + https://$1ftccomplaintassistant.gov/ + + + securecookie + + host + ^bulkorder\.ftc\.gov$ + name + .+ + + target + + + host + *.ftc.gov + + + host + ftccomplaintassistant.gov + + + host + www.ftccomplaintassistant.gov + + + + + Federated Investors (partial) + + ruleset + + name + Federated Investors (partial) + rule + + from + ^http://(www\.)?federatedinvestors\.com/($|FII/(?:css/|(?:daf/)?images/|login\.do|registration/|splash\.do)) + to + https://$1federatedinvestors.com/$2 + + target + + + host + federatedinvestors.com + + + host + www.federatedinvestors.com + + + + + Federated Media Publishing (partial) + + ruleset + + name + Federated Media Publishing (partial) + rule + + + from + ^http://(www\.)?federatedmedia\.net/ + to + https://$1federatedmedia.net/ + + + from + ^http://(keywords|r1|static|tenzing)\.fmpub\.net/ + to + https://$1.fmpub.net/ + + + from + ^https?://static-cf\.fmpub\.net/ + to + https://fmpub.cachefly.net/ + + + securecookie + + + host + ^.*\.fmpub\.net$ + name + .+ + + + host + ^www\.federatedmedia\.net$ + name + .* + + + target + + + host + federatedmedia.net + + + host + www.federatedmedia.net + + + host + *.fmpub.net + + + + + Federation of American Scientists + + ruleset + + name + Federation of American Scientists + platform + mixedcontent + rule + + from + ^http://(members\.|www\.)?fas\.org/ + to + https://$1fas.org/ + + securecookie + + host + ^.*\.fas\.org$ + name + .* + + target + + + host + fas.org + + + host + *.fas.org + + + host + *.members.fas.org + + + + + Federation of Small Businesses (partial) + + ruleset + + name + Federation of Small Businesses (partial) + rule + + + from + ^https?://(?:www\.)?fsb\.org\.uk/(general/imag|Templat)es/ + to + https://www.fsb.org.uk/$1es/ + + + from + ^http://join\.fsb\.org\.uk/ + to + https://join.fsb.org.uk/ + + + securecookie + + host + ^join\.fsb\.org\.uk$ + name + .* + + target + + + host + fsb.org.uk + + + host + *.fsb.org.uk + + + + + Fedora Hosted.org (partial) + + ruleset + + name + Fedora Hosted.org (partial) + rule + + from + ^http://(?:(git\.|lists\.)|www\.)?fedorahosted\.org/ + to + https://$1fedorahosted.org/ + + securecookie + + host + ^(?:www\.)?fedorahosted\.org$ + name + .+ + + target + + + host + fedorahosted.org + + + host + *.fedorahosted.org + + + + + Fedora Magazine.org (false MCB) + + ruleset + + name + Fedora Magazine.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?fedoramagazine\.org/ + to + https://fedoramagazine.org/ + + securecookie + + host + ^fedoramagazine\.org$ + name + .+ + + target + + + host + fedoramagazine.org + + + host + www.fedoramagazine.org + + + + + Fedora Project + + ruleset + + name + Fedora Project + rule + + + from + ^http://((?:admin|alt|apps|archives|ask|badges|blogs|boot|dl|docs|download|get|join|lists|meetbot|mirrors|paste|people|retrace|spins|start|www)\.)?fedoraproject\.org/ + to + https://$1fedoraproject.org/ + + + from + ^http://([\w-]+\.)?fedorapeople\.org/ + to + https://$1fedorapeople.org/ + + + securecookie + + host + ^(?:.*\.)?fedoraproject\.org$ + name + .+ + + target + + + host + fedoraproject.org + + + host + *.fedoraproject.org + + + host + fedorapeople.org + + + host + *.fedorapeople.org + + + + + FeeFighters + + ruleset + + name + FeeFighters + platform + mixedcontent + rule + + from + ^http://(?:www\.)?feefighters\.com/ + to + https://feefighters.com/ + + securecookie + + host + ^(.+\.)?feefighters\.com$ + name + .* + + target + + + host + feefighters.com + + + host + www.feefighters.com + + + + + Feed2JS.org + + ruleset + + name + Feed2JS.org + rule + + from + ^http://(www\.)?feed2js\.org/ + to + https://$1feed2js.org/ + + target + + + host + feed2js.org + + + host + www.feed2js.org + + + + + FeedBlitz + + ruleset + + name + FeedBlitz + rule + + + from + ^http://((?:archive|blog|feeds|p|www)\.)?feedblitz\.com/ + to + https://$1feedblitz.com/ + + + from + ^http://(asset|user)s\.feedblitz\.com/ + to + https://s3.amazonaws.com/$1s.feedblitz.com/ + + + from + ^http://spnsrs\.feedblitz\.com/ + to + https://p.liadm.com/ + + + from + ^http://t\.feedblitz\.com/ + to + https://ei.rlcdn.com/ + + + securecookie + + host + ^w*\.feedblitz\.com$ + name + .* + + target + + + host + feedblitz.com + + + host + *.feedblitz.com + + + + + FeedBurner (partial) + + ruleset + + name + FeedBurner (partial) + rule + + from + ^http://(?:www\.)?feedburner\.com/ + to + https://feedburner.google.com/ + + target + + + host + feedburner.com + + + host + www.feedburner.com + + + + + FeedMyInbox + + ruleset + + name + FeedMyInbox + rule + + from + ^http://(?:www\.)?feedmyinbox\.com/ + to + https://www.feedmyinbox.com/ + + securecookie + + host + ^(.*\.)?feedmyinbox\.com$ + name + .* + + target + + + host + www.feedmyinbox.com + + + host + feedmyinbox.com + + + + + Feedbackify.com + + ruleset + + name + Feedbackify.com + rule + + from + ^http://(cdn\.|www\.)?feedbackify\.com/ + to + https://$1feedbackify.com/ + + securecookie + + host + ^www\.feedbackify\.com$ + name + .+ + + target + + + host + feedbackify.com + + + host + *.feedbackify.com + + + + + Feedbox.com (partial) + + ruleset + + name + Feedbox.com (partial) + rule + + from + ^http://my\.feedbox\.com/ + to + https://my.feedbox.com/ + + securecookie + + host + ^my\.feedbox\.com$ + name + .+ + + target + + host + my.feedbox.com + + + + Feedjit (partial) + + ruleset + + name + Feedjit (partial) + rule + + from + ^http://(www\.)?feedjit\.com/(favicon\.ico|images/|plansPricing/|pro/|rush/|static/) + to + https://$1feedjit.com/$2 + + target + + + host + feedjit.com + + + host + www.feedjit.com + + + + + Feedsportal.com (partial) + + ruleset + + name + Feedsportal.com (partial) + rule + + from + ^http://stats\.feedsportal\.com/ + to + https://stats.feedsportal.com/ + + target + + host + stats.feedsportal.com + + + + Feefo + + ruleset + + name + Feefo + rule + + from + ^https?://(?:www\.)?feefo\.com/ + to + https://www.feefo.com/ + + securecookie + + host + ^www\.feefo\.com$ + name + .+ + + target + + + host + feefo.com + + + host + www.feefo.com + + + + + Fefe + + ruleset + + name + Fefe + platform + cacert + rule + + from + ^http://blog\.fefe\.de/ + to + https://blog.fefe.de/ + + target + + host + blog.fefe.de + + + + Feide + + ruleset + + name + Feide + rule + + from + ^http://((?:api|crawler|(?:idp\.|sp\d\.)?demo|docs|foodle|fwtest|idp|idp-dev|innsyn|kunde|logout|metadata|openidp|openwiki|ow|rnd|(?:beta|translation)\.rnd|sp-test|tools|wiki|www)\.)?feide\.no/ + to + https://$1feide.no/ + + securecookie + + host + .*\.feide\.no$ + name + .+ + + target + + + host + feide.no + + + host + *.feide.no + + + + + Feisty Duck.com + + ruleset + + name + Feisty Duck.com + rule + + + from + ^http://(www\.)?feistyduck\.com/ + to + https://$1feistyduck.com/ + + + from + ^http://store\.feistyduck\.com/ + to + https://feistyduck.myshopify.com/ + + + target + + + host + feistyduck.com + + + host + *.feistyduck.com + + + + + Feit Electric Company (partial) + + ruleset + + name + Feit Electric Company (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?feitbulb\.com/ + to + https://secure1.voloper.net/feitbulbs/ + + target + + + host + feitbulbs.com + + + host + www.feitbulbs.com + + + + + Femtoduino.com + + ruleset + + name + Femtoduino.com + rule + + from + ^http://(www\.)?femtoduino\.com/ + to + https://$1femtoduino.com/ + + securecookie + + host + ^www\.femtoduino\.com$ + name + .+ + + target + + + host + femtoduino.com + + + host + www.femtoduino.com + + + + + Fence Center.com + + ruleset + + name + Fence Center.com + rule + + from + ^http://(?:www\.)?fencecenter\.com/ + to + https://www.fencecenter.com/ + + securecookie + + host + ^www\.fencecenter\.com$ + name + .+ + + target + + + host + fencecenter.com + + + host + www.fencecenter.com + + + + + Fender.com (partial) + + ruleset + + name + Fender.com (partial) + rule + + from + ^http://(?:www\.)?fender\.com/ + to + https://www.fender.com/ + + securecookie + + host + ^(?:www)?\.fender\.com$ + name + .+ + + target + + + host + fender.com + + + host + *.fender.com + + + + + Feral Hosting.com + + ruleset + + name + Feral Hosting.com + rule + + from + ^http://(www\.)?feralhosting\.com/ + to + https://$1feralhosting.com/ + + target + + + host + feralhosting.com + + + host + www.feralhosting.com + + + + + Feralinteractive.com + + ruleset + + name + Feralinteractive.com + rule + + from + ^http://(www\.)?feralinteractive\.com/ + to + https://www.feralinteractive.com/ + + target + + + host + feralinteractive.com + + + host + www.feralinteractive.com + + + + + Fermi National Accelerator Laboratory (partial) + + ruleset + + name + Fermi National Accelerator Laboratory (partial) + rule + + from + ^http://(www\.)?fnal\.gov/ + to + https://$1fnal.gov/ + + securecookie + + host + ^(?:.*\.)?fnal\.gov$ + name + .+ + + target + + + host + fnal.gov + + + host + *.fnal.gov + + + + + FernUni-Hagen.de + + ruleset + + name + FernUni-Hagen.de + rule + + + from + ^http://(?:(cl-)?www\.)?fernuni-hagen\.de/ + to + https://$1www.fernuni-hagen.de/ + + + from + ^http://(account|blog|moodle|www\.ub|vu|wiki)\.fernuni-hagen\.de/ + to + https://$1.fernuni-hagen.de/ + + + securecookie + + host + ^(?:account|moodle|wiki)\.fernuni-hagen\.de$ + name + .+ + + target + + + host + fernuni-hagen.de + + + host + *.fernuni-hagen.de + + + + + Ferris State University (partial) + + ruleset + + exclusion + + pattern + ^http://myfsu.ferris.edu/cp/home/loginf + + name + Ferris State University (partial) + rule + + from + ^http://(ebill|fsuban2|m|mysfu|passwordhelp)\.ferris\.edu(:9000)?/ + to + https://$1.ferris.edu$2/ + + securecookie + + host + ^(?!myfsu)\.ferris\.edu$ + name + .+ + + target + + host + *.ferris.edu + + + + FetLife + + ruleset + + name + FetLife + rule + + from + ^http://(?:www\.)?fetlife\.com/ + to + https://fetlife.com/ + + securecookie + + host + ^(.*\.)?fetlife\.com$ + name + .* + + target + + + host + *.fetlife.com + + + host + fetlife.com + + + + + FetShop.co.uk + + ruleset + + name + FetShop.co.uk + rule + + + from + ^http://(?:www\.)?fetshop\.co\.uk/ + to + https://www.fetshop.co.uk/ + + + from + ^http://cdn\.fetshop\.co\.uk/ + to + https://4001-fetshop-iamnoonesolution.netdna-ssl.com/ + + + from + ^http://cdn-test\.fetshop\.co\.uk/ + to + https://4001-test-iamnoonesolution.netdna-ssl.com/ + + + securecookie + + host + ^\.www\.fetshop\.co\.uk$ + name + .+ + + target + + + host + fetshop.co.uk + + + host + *.fetshop.co.uk + + + + + FetchBack + + ruleset + + name + FetchBack + rule + + from + ^http://(\w+\.)?fetchback\.com/ + to + https://$1fetchback.com/ + + securecookie + + host + ^(?:.*\.)?fetchback\.com$ + name + .+ + + target + + + host + fetchback.com + + + host + *.fetchback.com + + + + + Fianna Fail + + ruleset + + name + Fianna Fail + rule + + from + ^http://(?:www\.)?fiannafail\.ie/ + to + https://secure.fiannafail.ie/ + + target + + + host + www.fiannafail.ie + + + host + fiannafail.ie + + + + + Fibank + + ruleset + + name + Fibank + platform + mixedcontent + rule + + + from + ^http://(www\.)?fibank\.bg/ + to + https://www.fibank.bg/ + + + from + ^http://([^/:@\.]+\.)?e-fibank\.bg/ + to + https://e-fibank.bg/ + + + target + + + host + fibank.bg + + + host + www.fibank.bg + + + host + *.e-fibank.bg + + + host + e-fibank.bg + + + + + Fidelity.com (partial) + + ruleset + + name + Fidelity.com (partial) + rule + + from + ^http://(charitablegift|login)\.fidelity\.com/ + to + https://$1.fidelity.com/ + + securecookie + + + host + ^\.fidelity\.com$ + name + ^MC$ + + + host + ^(?:charitablegift|login)\.fidelity\.com$ + name + .+ + + + target + + host + *.fidelity.com + + + + FierceFinance (partial) + + ruleset + + name + FierceFinance (partial) + rule + + from + ^http://(www\.)?fiercefinance\.com/(fil|sit)es/ + to + https://$1fiercefinance.com/$2es/ + + target + + + host + fiercefinance.com + + + host + www.fiercefinance.com + + + + + FierceMarkets (partial) + + ruleset + + name + FierceMarkets (partial) + rule + + + from + ^http://secure\.fiercemarkets\.com/ + to + https://secure.fiercemarkets.com/ + + + from + ^http://assets\.fiercemarkets\.com/ + to + https://www.fiercefinance.com/ + + + from + ^https?://(?:static\.fiercemarkets\.com|assets\.fiercemarkets\.net)/ + to + https://d2pkycnpovhofp.cloudfront.net/ + + + target + + + host + *.fiercemarkets.com + + + host + assets.fiercemarkets.net + + + + + FierceWireless (partial) + + ruleset + + name + FierceWireless (partial) + rule + + from + ^https?://(?:www\.)?fiercewireless\.com/(?=favicon\.ico|files/|sites/) + to + https://d2pkycnpovhofp.cloudfront.net/ + + target + + + host + fiercewireless.com + + + host + www.fiercewireless.com + + + + + Fifth Third Bank + + ruleset + + name + Fifth Third Bank + rule + + + from + ^http://53\.com/ + to + https://www.53.com/ + + + from + ^http://(reo|sdg2|www)\.53\.com/ + to + https://$1.53.com/ + + + target + + + host + 53.com + + + host + *.53.com + + + + + Fight for the Future (partial) + + ruleset + + name + Fight for the Future (partial) + rule + + + from + ^http://((?:cms|donate|www)\.)?fightforthefuture\.org/ + to + https://$1fightforthefuture.org/ + + + from + ^https?://s3\.fightforthefuture\.org/ + to + https://s3.amazonaws.com/s3.fightforthefuture.org/ + + + securecookie + + host + ^(?:\w*\.)?fightforthefuture\.org$ + name + .+ + + target + + + host + fightforthefuture.org + + + host + *.fightforthefuture.org + + + + + FileBox + + ruleset + + name + FileBox + rule + + from + ^http://(www\.)?filebox\.tv/ + to + https://$1filebox.tv/ + + securecookie + + host + ^(.*\.)filebox\.tv$ + name + .* + + target + + + host + filebox.tv + + + host + www.filebox.tv + + + + + FilePost.com + + ruleset + + name + FilePost.com + rule + + from + ^http://(fs\d+\.|www\.)?filepost\.com/ + to + https://$1filepost.com/ + + securecookie + + host + ^\.filepost\.com$ + name + .+ + + target + + + host + filepost.com + + + host + *.filepost.com + + + + + FileRio.in (false MCB) + + ruleset + + name + FileRio.in (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?filerio\.in/ + to + https://filerio.in/ + + securecookie + + host + ^\.filerio\.in$ + name + .+ + + target + + + host + filerio.in + + + host + *.filerio.in + + + + + FileZilla (partial) + + ruleset + + name + FileZilla (partial) + rule + + from + ^http://((?:forum|svn|wiki|www)\.)?filezilla-project\.org/ + to + https://$1filezilla-project.org/ + + securecookie + + host + .*\.filezilla-project\.org$ + name + .+ + + target + + + host + filezilla-project.org + + + host + *.filezilla-project.org + + + + + Filemobile (partial) + + ruleset + + name + Filemobile (partial) + rule + + + from + ^https?://(assets|storage)\.filemobile\.com/ + to + https://s3.amazonaws.com/$1.filemobile.com/ + + + from + ^http://(developer\.|rstorage\.|www\.)?filemobile\.com/ + to + https://$1filemobile.com/ + + + from + ^https?://cimg\.filemobile\.com/ + to + https://d2ksawk1637r8x.cloudfront.net/ + + + securecookie + + host + ^(?:.+\.)?filemobile\.com$ + name + .+ + + target + + + host + filemobile.com + + + host + *.filemobile.com + + + + + Filippo.io + + ruleset + + name + Filippo.io + rule + + from + ^http://(www\.)?filippo\.io/ + to + https://$1filippo.io/ + + securecookie + + host + ^\.filippo\.io$ + name + .+ + + target + + + host + filippo.io + + + host + *.filippo.io + + + + + Film Linc.com (false MCB) + + ruleset + + name + Film Linc.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.filmlinc\.com/ + to + https://www.filmlinc.com/ + + securecookie + + host + ^(?:www)?\.filmlinc\.com$ + name + .+ + + target + + host + *.filmlinc.com + + + + Film Linc.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.filmlinc\.com/(?!\?css=|assets/|favicon\.ico|page/-/) + + name + Film Linc.com (partial) + rule + + from + ^http://(secure\.|www\.)?filmlinc\.com/ + to + https://$1filmlinc.com/ + + securecookie + + + host + ^\.secure\.filmlinc\.com$ + name + ^X-CheckNode$ + + + host + ^(?:\.secure\.)?filmlinc\.com$ + name + .+ + + + target + + + host + filmlinc.com + + + host + secure.filmlinc.com + + + host + *.secure.filmlinc.com + + + host + www.filmlinc.com + + + + + Film Threat + + ruleset + + name + Film Threat + rule + + from + ^http://(media2?\.|www\.)?filmthreat\.com/ + to + https://$1filmthreat.com/ + + securecookie + + host + ^(.*\.)?filmthreat\.com$ + name + .* + + target + + + host + filmthreat.com + + + host + *.filmthreat.com + + + host + *.www.filmthreat.com + + + + + FilmBreak + + ruleset + + name + FilmBreak + rule + + from + ^http://(www\.)?filmbreak\.com/ + to + https://$1filmbreak.com/ + + securecookie + + host + ^(?:www)?\.filmbreak\.com$ + name + .+ + + target + + + host + filmbreak.com + + + host + *.filmbreak.com + + + + + FilmTrack + + ruleset + + name + FilmTrack + rule + + + from + ^http://([\w-]+)\.filmtrackonline\.com/ + to + https://$1.filmtrackonline.com/ + + + from + ^http://([\w-]+)\.extranet2\.filmtrackonline\.com/ + to + https://$1.filmtrackonline.com/extranet/ + + + securecookie + + host + ^.+\.filmtrackonline\.com$ + name + .+ + + target + + host + *.filmtrackonline.com + + + + Filmlair + + ruleset + + name + Filmlair + rule + + from + ^http://(www\.)?filmlair\.com/ + to + https://$1filmlair.com/ + + securecookie + + host + ^(?:www\.)?filmlair\.com$ + name + .+ + + target + + + host + filmlair.com + + + host + www.filmlair.com + + + + + Filmon.com + + ruleset + + name + Filmon.com + rule + + from + ^http://(static\.|www\.)?filmon\.com/ + to + https://$1filmon.com/ + + securecookie + + host + ^(?:www\.)?filmon\.com$ + name + .+ + + target + + + host + filmon.com + + + host + *.filmon.com + + + + + Filter (partial) + + ruleset + + name + Filter (partial) + rule + + from + ^http://(www\.)?filterdigital\.com/(CaptchaType\.ashx|[cC]onnections/[bB]log/(?:editors/tiny_mce/|image\.axd|pics/|themes/)|[rR]es/(?:img/|screen\.css)) + to + https://$1filterdigital.com/$2 + + target + + + host + filterdigital.com + + + host + www.filterdigital.com + + + + + Final-Score + + ruleset + + name + Final-Score + rule + + + from + ^https?://(?:www\.)?final-score\.com/ + to + https://www.final-score.com/ + + + from + ^https?://ebm\.e\.final-score\.com/ + to + https://ebm.cheetahmail.com/ + + + from + ^https?://f\.e\.final-score\.com/ + to + https://f.chtah.com/ + + + from + ^http://(images|m)\.final-score\.com/ + to + https://$1.final-score.com/ + + + securecookie + + host + ^.*\.final-score\.com$ + name + .+ + + target + + + host + final-score.com + + + host + *.final-score.com + + + host + *.e.final-score.com + + + host + *.www.final-score.com + + + + + Finam (partial) + + ruleset + + name + Finam (partial) + rule + + from + ^http://fb\.finam\.ru/ + to + https://fb.finam.ru/ + + securecookie + + host + ^fb\.finam\.ru$ + name + .* + + target + + host + fb.finam.ru + + + + Financial Content (partial) + + ruleset + + name + Financial Content (partial) + rule + + from + ^http://(chart|images|js|markets)\.financialcontent\.com/ + to + https://$1.financialcontent.com/ + + target + + host + *.financialcontent.com + + + + Financial Cryptography + + ruleset + + name + Financial Cryptography + platform + cacert + rule + + from + ^http://(www\.)?financialcryptography\.com/ + to + https://$1financialcryptography.com/ + + target + + + host + financialcryptography.com + + + host + www.financialcryptography.com + + + + + Financial Industry Regulatory Authority + + ruleset + + name + Financial Industry Regulatory Authority + rule + + from + ^http://(www\.)?finra\.org/ + to + https://$1finra.org/ + + target + + + host + finra.org + + + host + www.finra.org + + + + + Financial Post.com (partial) + + ruleset + + exclusion + + pattern + ^http://idms\.financialpost\.com/(?!charts/|images/|js/|watchlist/\w+\.ajax\?) + + name + Financial Post.com (partial) + rule + + + from + ^http://wpmedia\.business\.financialpost\.com/ + to + https://a248.e.akamai.net/f/1467/2885/4d/wpmedia.business.financialpost.com/ + + + from + ^http://idms\.financialpost\.com/ + to + https://www.financialpost.idmanagedsolutions.com/ + + + from + ^http://wpmedia\.opinion\.financialpost\.com/ + to + https://a248.e.akamai.net/f/1582/1145/2d/wpmedia.opinion.financialpost.com/ + + + target + + host + *.financialpost.com + + + + Financial Times (partial) + + ruleset + + exclusion + + + pattern + ^http://markets\.ft\.com/(?!favicon\.ico|RESEARCH/uploadhandler/) + + + pattern + ^http://registration\.ft\.com/(?!Common/|favicon\.ico|registration/barrier) + + + name + Financial Times (partial) + rule + + + from + ^http://(force|(?:cdn\.)?markets|(?:api|orc)\.memb|registration|stats|track)\.ft\.com/ + to + https://$1.ft.com/ + + + from + ^http://s4\.media\.ft\.com/ + to + https://s4.ft-static.com/ + + + from + ^http://on\.ft\.com/ + to + https://bit.ly/ + + + from + ^http://(reg|s4|(?:reg|s4)\.test)\.ft-static\.com/ + to + https://$1.ft-static.com/ + + + securecookie + + host + ^\.ft\.com$ + name + ^(?:AYSC|AYSC_C|FTUserTrack)$ + + target + + + host + *.ft.com + + + host + *.ft-static.com + + + + + Financnahitparada.sk + + ruleset + + name + Financnahitparada.sk + rule + + + from + ^http://(www\.)?financnahitparada\.sk/ + to + https://www.financnahitparada.sk/ + + + from + ^http://(www\.)?poistenie\.financnahitparada\.sk/ + to + https://www.poistenie.financnahitparada.sk/ + + + target + + + host + financnahitparada.sk + + + host + www.financnahitparada.sk + + + host + poistenie.financnahitparada.sk + + + host + www.poistenie.financnahitparada.sk + + + + + Finanssialan Keskusliitto + + ruleset + + name + Finanssialan Keskusliitto + rule + + from + ^http://(extranet\.|www\.)?fkl\.fi/ + to + https://$1fkl.fi/ + + securecookie + + host + ^extranet\.fkl\.fi$ + name + .+ + + target + + + host + fkl.fi + + + host + www.fkl.fi + + + host + extranet.fkl.fi + + + + + Finanzberatung Max Herbst (partial) + + ruleset + + name + Finanzberatung Max Herbst (partial) + rule + + from + ^https?://(?:cdn3|rechner)\.fmh\.de/ + to + https://rechner.fmh.de/ + + target + + host + *.fmh.de + + + + Finavia.fi + + ruleset + + name + Finavia.fi + rule + + from + ^http://(www\.)?finavia\.fi/ + to + https://$1finavia.fi/ + + target + + + host + finavia.fi + + + host + www.finavia.fi + + + + + Find a Babysitter (partial) + + ruleset + + name + Find a Babysitter (partial) + rule + + + from + ^https?://findababysitter.com.au/ + to + https://www.findababysitter.com.au/ + + + from + ^http://www\.findababysitter\.com\.au/(Account/|[cC]ontent/) + to + https://www.findababysitter.com.au/$1 + + + target + + + host + findababysitter.com.au + + + host + www.findababysitter.com.au + + + + + Find a Grave (partial) + + ruleset + + exclusion + + pattern + ^http://www\.findagrave\.com/cgi-bin/ + + name + Find a Grave (partial) + rule + + from + ^http://(?:secure\.|www\.)?findagrave\.com/ + to + https://secure.findagrave.com/ + + target + + + host + findagrave.com + + + host + *.findagrave.com + + + + + Find n Save (partial) + + ruleset + + name + Find n Save (partial) + rule + + + from + ^http://(www\.)?findnsave\.com/(?=$|\?|static/) + to + https://$1findnsave.com/ + + + from + ^http://cdn\.findnsave\.com/ + to + https://d3ne1tggqg4fzy.cloudfront.net/ + + + from + ^http://content\.findnsave\.com/ + to + https://d10yv8m6mggaen.cloudfront.net/ + + + securecookie + + host + ^\.www\.findnsave\.com$ + name + .+ + + target + + + host + findnsave.com + + + host + *.findnsave.com + + + + + FindLegalForms.com (partial) + + ruleset + + name + FindLegalForms.com (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?findlegalforms\.com/ + to + https://www.findlegalforms.com/ + + target + + + host + findlegalforms.com + + + host + www.findlegalforms.com + + + + + FindRetros.com + + ruleset + + name + FindRetros.com + rule + + from + ^http://(www\.)?findretros\.com/ + to + https://$1findretros.com/ + + securecookie + + host + ^(?:w*\.)?findretros\.com$ + name + .+ + + target + + + host + findretros.com + + + host + *.findretros.com + + + + + FindTheBest (partial) + + ruleset + + name + FindTheBest (partial) + rule + + from + ^https?://(?:cdn|img)\d?\.findthebest\.com/ + to + https://d3jpkdcwyize5y.cloudfront.net/ + + target + + host + *.findthebest.com + + + + Fine Art America + + ruleset + + name + Fine Art America + rule + + + from + ^http://(?:render\.|(www\.))?fineartamerica\.com/ + to + https://$1fineartamerica.com/ + + + from + ^https?://images\.fineartamerica\.com/ + to + https://s3.amazonaws.com/images.fineartamerica.com/ + + + securecookie + + host + ^(?:www\.)?fineartamerica\.com$ + name + .+ + + target + + + host + fineartamerica.com + + + host + *.fineartamerica.com + + + + + Fineproxy.org (partial) + + ruleset + + name + Fineproxy.org (partial) + rule + + from + ^http://((?:buy|forum|vpn|www)\.)?fineproxy\.org/ + to + https://$1fineproxy.org/ + + securecookie + + host + ^\.(?:forum\.)?fineproxy\.org$ + name + .+ + + target + + + host + fineproxy.org + + + host + *.fineproxy.org + + + + + Finka.pl (partial) + + ruleset + + name + Finka.pl (partial) + rule + + from + ^http://(?:www\.)?finka\.pl/(?=demo/|FrontPage/|images/) + to + https://finka.pl/ + + target + + + host + finka.pl + + + host + www.finka.pl + + + + + Finlex + + ruleset + + name + Finlex + platform + mixedcontent + rule + + + from + ^http://(www\.)?finlex\.fi/ + to + https://www.finlex.fi/ + + + from + ^https://finlex\.fi/ + to + https://www.finlex.fi/ + + + target + + + host + finlex.fi + + + host + www.finlex.fi + + + + + Finn + + ruleset + + exclusion + + + pattern + ^http://labs\.finn\.no/ + + + pattern + ^http://kart\.finn\.no/ + + + pattern + ^http://oppdrag\.finn\.no/ + + + pattern + ^http://katalog\.finn\.no/ + + + pattern + ^http://www\.katalog\.finn\.no/ + + + name + Finn + platform + mixedcontent + rule + + + from + ^http://finn\.no/ + to + https://finn.no/ + + + from + ^http://www\.finn\.no/ + to + https://www.finn.no/ + + + target + + + host + finn.no + + + host + www.finn.no + + + + + FireEye (partial) + + ruleset + + name + FireEye (partial) + rule + + + from + ^http://(?:www\.)?fireeye\.com/ + to + https://www.fireeye.com/ + + + from + ^http://blog\.fireeye\.com/[^?]* + to + https://www.fireeye.com/blog/ + + + from + ^http://(csportal|tfs|www2)\.fireeye\.com/ + to + https://$1.fireeye.com/ + + + securecookie + + host + ^(?:www)?\.fireeye\.com$ + name + .+ + + target + + + host + fireeye.com + + + host + *.fireeye.com + + + + + FireHost (partial) + + ruleset + + exclusion + + pattern + ^http://www\.firehost\.com/(company|compare|customers|details/[\w\-]+\w|secure-hosting(/[^/]?/)?|solutions)?$ + + name + FireHost (partial) + rule + + + from + ^http://(www\.)?firehost\.com/(/_CaptchaImage\.axd|assets/|cart|company/contact|partners|protected/|secure-hosting/[\w\-]+/configure) + to + https://$1firehost.com/$1 + + + from + ^http://(developer|my)\.firehost\.com/ + to + https://$1.firehost.com/ + + + securecookie + + host + ^(.*\.)?firehost\.com$ + name + .* + + target + + + host + firehost.com + + + host + *.firehost.com + + + + + Firebase (partial) + + ruleset + + name + Firebase (partial) + rule + + from + ^http://(auth\.|www\.)?firebase\.com/ + to + https://$1firebase.com/ + + securecookie + + host + ^auth\.firebase\.com$ + name + .+ + + target + + + host + firebase.com + + + host + *.firebase.com + + + + + Fireclick.com (partial) + + ruleset + + name + Fireclick.com (partial) + rule + + from + ^http://my\.fireclick\.com/ + to + https://my.fireclick.com/ + + target + + host + my.fireclick.com + + + + Firedoglake (partial) + + ruleset + + name + Firedoglake (partial) + rule + + from + ^http://members\.firedoglake\.com/ + to + https://members.firedoglake.com/ + + securecookie + + host + ^members\.firedoglake\.com$ + name + .+ + + target + + host + members.firedoglake.com + + + + Firedrive.com (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?firedrive\.com/+(?!favicon\.ico) + + name + Firedrive.com (partial) + rule + + from + ^http://((?:auth|dl|media-b\d+|static|stats|www)\.)?firedrive\.com/ + to + https://$1firedrive.com/ + + securecookie + + host + ^(?:auth|dl|stats)\.firedrive\.com$ + name + .+ + + target + + + host + firedrive.com + + + host + *.firedrive.com + + + + + Firefox.com + + ruleset + + name + Firefox.com + rule + + from + ^http://((?:accounts|(?:api|oauth|profile|verifier)\.accounts|marketplace|www)\.)?firefox\.com/ + to + https://$1firefox.com/ + + securecookie + + host + ^marketplace\.firefox\.com$ + name + .+ + + target + + + host + firefox.com + + + host + *.firefox.com + + + + + Firefox.net.cn + + ruleset + + name + Firefox.net.cn + rule + + from + ^http://(www\.)?firefox\.net\.cn/ + to + https://$1firefox.net.cn/ + + securecookie + + host + ^(?:www\.)?firefox\.net\.cn$ + name + .+ + + target + + + host + firefox.net.cn + + + host + www.firefox.net.cn + + + + + Firelady.com + + ruleset + + name + Firelady.com + rule + + from + ^http://(www\.)?firelady\.com/ + to + https://$1firelady.com/ + + securecookie + + host + ^\.firelady\.com$ + name + .+ + + target + + + host + firelady.com + + + host + *.firelady.com + + + + + Firemail.de + + ruleset + + name + Firemail.de + rule + + from + ^http://(www\.)?firemail\.de/ + to + https://www.firemail.de/ + + target + + + host + www.firemail.de + + + host + firemail.de + + + + + Firm24.com + + ruleset + + name + Firm24.com + rule + + from + ^http://(www\.)?firm24\.com/ + to + https://$1firm24.com/ + + securecookie + + host + ^(?:www\.)?firm24\.com$ + name + .+ + + target + + + host + firm24.com + + + host + www.firm24.com + + + + + Firmas.lv + + ruleset + + name + Firmas.lv + rule + + from + ^http://(www\.)?firmas\.lv/ + to + https://www.firmas.lv/ + + target + + + host + firmas.lv + + + host + www.firmas.lv + + + + + First Amendment Center.org (partial) + + ruleset + + exclusion + + pattern + ^http://www\.firstamendmentcenter\.org/(?!madison/) + + name + First Amendment Center.org (partial) + rule + + from + ^http://www\.firstamendmentcenter\.org/ + to + https://s111617.gridserver.com/ + + securecookie + + host + ^\.firstamendmentcenter\.org$ + name + ^__utm\w$ + + target + + host + *.firstamendmentcenter.org + + + + First Amendment Coalition + + ruleset + + name + First Amendment Coalition + rule + + from + ^http://(?:www\.)?firstamendmentcoalition\.org/ + to + https://firstamendmentcoalition.org/ + + target + + + host + firstamendmentcoalition.org + + + host + www.firstamendmentcoalition.org + + + + + First Central State Bank + + ruleset + + name + First Central State Bank + rule + + + from + ^http://firstcentralsb\.com/ + to + https://www.firstcentralsb.com/ + + + from + ^http://(([a-zA-Z0-9\-])+\.)firstcentralsb\.com/ + to + https://$1firstcentralsb.com/ + + + securecookie + + host + (^|\.)firstcentralsb\.com$ + name + .+ + + target + + + host + firstcentralsb.com + + + host + *.firstcentralsb.com + + + + + First Class Magazine.se (false MCB) + + ruleset + + name + First Class Magazine.se (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?firstclassmagazine\.se/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://$1firstclassmagazine.se/ + + securecookie + + host + ^(?:w*\.)?firstclassmagazine\.se$ + name + .+ + + target + + + host + firstclassmagazine.se + + + host + *.firstclassmagazine.se + + + + + First Class Magazine.se (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?firstclassmagazine\.se/(?!favicon\.ico|wp-content/|wp-includes/) + + name + First Class Magazine.se (partial) + rule + + from + ^http://(media\.|www\.)?firstclassmagazine\.se/ + to + https://$1firstclassmagazine.se/ + + target + + + host + firstclassmagazine.se + + + host + media.firstclassmagazine.se + + + host + www.firstclassmagazine.se + + + + + First Look.org + + ruleset + + name + First Look.org + rule + + from + ^http://((?:prod\d\d-cdn\d\d\.cdn|prod01-piwik|www)\.)?firstlook\.org/ + to + https://$1firstlook.org/ + + securecookie + + host + ^\.firstlook\.org$ + name + .+ + + target + + + host + firstlook.org + + + host + *.firstlook.org + + + + + FirstGiving + + ruleset + + name + FirstGiving + platform + mixedcontent + rule + + from + ^(http://(www\.)?|https://)firstgiving\.com/ + to + https://www.firstgiving.com/ + + target + + + host + firstgiving.com + + + host + www.firstgiving.com + + + + + FirstTag.de + + ruleset + + name + FirstTag.de + rule + + from + ^http://(c\.)?t4ft\.de/ + to + https://$1t4ft.de/ + + target + + + host + t4ft.de + + + host + *.t4ft.de + + + + + Fishwrapper.com (false MCB) + + ruleset + + name + Fishwrapper.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?fishwrapper\.com/ + to + https://$1fishwrapper.com/ + + securecookie + + host + ^\.www\.fishwrapper.com$ + name + .+ + + target + + + host + fishwrapper.com + + + host + www.fishwrapper.com + + + host + *.www.fishwrapper.com + + + + + Fishwrapper.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?fishwrapper\.com/+(?!favicon\.ico) + + name + Fishwrapper.com (partial) + rule + + from + ^http://((?:cdn-assets|cdn-media|www)\.)?fishwrapper\.com/ + to + https://$1fishwrapper.com/ + + target + + + host + fishwrapper.com + + + host + *.fishwrapper.com + + + + + Fiskeriverket.se + + ruleset + + name + Fiskeriverket.se + platform + mixedcontent + rule + + + from + ^http://fiskeriverket\.se/ + to + https://www.fiskeriverket.se/ + + + from + ^http://www\.fiskeriverket\.se/ + to + https://www.fiskeriverket.se/ + + + target + + + host + fiskeriverket.se + + + host + www.fiskeriverket.se + + + + + FitBit + + ruleset + + name + FitBit + platform + mixedcontent + rule + + + from + ^http://((?:api|client|dev|m|qa3store(?:-static\d)?|static\d|store-\w\w|wiki|www)\.)?fitbit\.com/ + to + https://$1fitbit.com/ + + + from + ^https?://cache\.fitbit\.com/ + to + https://d6y8zfzc2qfsl.cloudfront.net/ + + + from + ^https?://jobs\.fitbit\.com/(css|img)/ + to + https://fitbit.theresumator.com/$1/ + + + securecookie + + host + ^(?:.+\.)?fitbit\.com$ + name + .+ + + target + + + host + fitbit.com + + + host + *.fitbit.com + + + + + FitStudio.com (partial) + + ruleset + + name + FitStudio.com (partial) + rule + + + from + ^http://((?:blog|gear|polls|sweeps|www)\.)?fitstudio\.com/ + to + https://$1fitstudio.com/ + + + from + ^http://fitnessconnect\.fitstudio\.com/(?=favicon\.ico|files/|misc/|sites/) + to + https://fitstudio.ideafit.com/ + + + securecookie + + host + .*\.fitstudio\.com$ + name + .+ + + target + + + host + fitstudio.com + + + host + *.fitstudio.com + + + + + Fitness Market (partial) + + ruleset + + name + Fitness Market (partial) + rule + + from + ^http://(www\.)?fitnessmarket\.com\.au/(favicon\.ico|shop/(?:(?:antibot_)?image\.php|cart\.php\?mode=checkout|images/|skin/|var/)) + to + https://$1fitnessmarket.com.au/$2 + + target + + + host + fitnessmarket.com.au + + + host + www.fitnessmarket.com.au + + + + + FiveTV + + ruleset + + name + FiveTV + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?five\.tv/ + to + https://www.five.tv/ + + + from + ^http://(about|demand|fwd|sso)\.five\.tv/ + to + https://$1.five.tv/ + + + target + + + host + *.five.tv + + + host + five.tv + + + + + Fix Ubuntu.com + + ruleset + + name + Fix Ubuntu.com + rule + + from + ^http://(?:www\.)?fixubuntu\.com/ + to + https://fixubuntu.com/ + + target + + + host + fixubuntu.com + + + host + www.fixubuntu.com + + + + + FixUnix (partial) + + ruleset + + name + FixUnix (partial) + rule + + from + ^http://c\.fixunix\.com/ + to + https://d2yvm6gxdmpjqc.cloudfront.net/ + + target + + host + c.fixunix.com + + + + Flagrate.org + + ruleset + + name + Flagrate.org + rule + + from + ^http://flagrate\.org/ + to + https://flagrate.org/ + + securecookie + + host + ^\.flagrate\.org$ + name + .+ + + target + + + host + flagrate.org + + + host + *.flagrate.org + + + + + Flameeyes + + ruleset + + name + Flameeyes + rule + + from + ^http://((?:assets|blog|earhart|www)\.)?flameeyes\.eu/ + to + https://$1flameeyes.eu/ + + securecookie + + host + ^blog\.flameeyes\.eu$ + name + .+ + + target + + + host + flameeyes.eu + + + host + *.flameeyes.eu + + + + + FlamingSpork.com (partial) + + ruleset + + name + FlamingSpork.com (partial) + rule + + + from + ^http://(www\.)?flamingspork\.com/ + to + https://$1flamingspork.com/ + + + from + ^http://bugzilla\.flamingspork\.com/+(?:$|\?.*) + to + https://bugs.launchpad.net/memberdb + + + target + + + host + flamingspork.com + + + host + *.flamingspork.com + + + + + Flashback.org + + ruleset + + name + Flashback.org + rule + + + from + ^http://flashback\.org/ + to + https://www.flashback.org/ + + + from + ^http://www\.flashback\.org/ + to + https://www.flashback.org/ + + + target + + + host + flashback.org + + + host + www.flashback.org + + + + + Flashtalking (partial) + + ruleset + + name + Flashtalking (partial) + rule + + + from + ^http://((?:cdn|servedby)\.)?flashtalking\.com/ + to + https://$1flashtalking.com/ + + + from + ^http://(www\.)?flashtalking\.net/ + to + https://$1flashtalking.net/ + + + securecookie + + host + ^\.flashtalking\.com$ + name + .+ + + target + + + host + flashtalking.com + + + host + *.flashtalking.com + + + host + flashtalking.net + + + host + *.flashtalking.net + + + + + Flaska.net (partial) + + ruleset + + name + Flaska.net (partial) + platform + cacert + rule + + + from + ^http://(?:www\.)?flaska\.net/ + to + https://www.flaska.net/ + + + from + ^http://(projects|trojita)\.flaska\.net/ + to + https://$1.flaska.net/ + + + securecookie + + host + ^projects\.flaska\.net$ + name + .+ + + target + + host + *.flaska.net + + + + Flatline Security.com + + ruleset + + name + Flatline Security.com + rule + + from + ^http://(www\.)?flatlinesecurity\.com/ + to + https://$1flatlinesecurity.com/ + + securecookie + + host + ^\.flatlinesecurity\.com$ + name + .+ + + target + + + host + flatlinesecurity.com + + + host + *.flatlinesecurity.com + + + + + Flattr + + ruleset + + name + Flattr + rule + + + from + ^http://(?:www\.)?flattr\.com/ + to + https://flattr.com/ + + + from + ^http://api\.flattr\.com/ + to + https://api.flattr.com/ + + + securecookie + + host + ^(.*\.)?flattr\.com$ + name + .* + + target + + + host + *.flattr.com + + + host + flattr.com + + + + + Flavors.me + + ruleset + + name + Flavors.me + rule + + from + ^http://flavors\.me/ + to + https://flavors.me/ + + target + + host + flavors.me + + + + Fleet Networks (partial) + + ruleset + + name + Fleet Networks (partial) + rule + + from + ^http://(?:www\.)?hosting\.fleetnetworks\.net/csa/((?:clientarea|register)\.php|images/|includes/|templates/) + to + https://hosting.fleetnetworks.net/csa/$1 + + target + + host + hosting.fleetnetworks.net + + + + Flex Investments + + ruleset + + name + Flex Investments + rule + + from + ^http://(www\.)?flexinvestments\.net/ + to + https://$1flexinvestments.net/ + + securecookie + + host + ^(?:w*\.)?flexinvestments\.net$ + name + .+ + + target + + + host + flexinvestments.net + + + host + *.flexinvestments.net + + + + + Flickr + + ruleset + + name + Flickr + rule + + + from + ^http://flic\.kr/ + to + https://flic.kr/ + + + from + ^http://((?:api|secure|static|www)\.)?flickr\.com/ + to + https://$1flickr.com/ + + + from + ^http://(c\d+|farm\d+)\.static(\.)?flickr\.com/ + to + https://$1.static$2flickr.com/ + + + from + ^http://(blog|code)\.flickr\.net/ + to + https://$1.flickr.net/ + + + securecookie + + + host + ^\.flic\.kr$ + name + .+ + + + host + .*\.flickr\.com$ + name + .+ + + + target + + + host + flic.kr + + + host + *.flic.kr + + + host + flickr.com + + + host + *.flickr.com + + + host + *.flickr.net + + + host + *.staticflickr.com + + + + + Flightaware + + ruleset + + name + Flightaware + rule + + from + ^http://((?:[A-Za-z][A-Za-z]|photos|www)\.)?flightaware\.com/ + to + https://$1flightaware.com/ + + target + + + host + flightaware.com + + + host + *.flightaware.com + + + + + Flightglobal (partial) + + ruleset + + name + Flightglobal (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?flightglobal\.com/ + to + https://www.flightglobal.com/ + + + from + ^http://pro\.flightglobal\.com/ + to + https://pro.flightglobal.com/ + + + from + ^http://(www\.)?flightglobalshop\.com/(new_image|skin)s/ + to + https://$1flightglobalshop.com/$1s/ + + + securecookie + + host + ^.*\.flightglobal\.com$ + name + .* + + target + + + host + flightglobal.com + + + host + *.flightglobal.com + + + host + flightglobalshop.com + + + host + www.flightglobalshop.com + + + + + Flinto.com (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.flinto\.com/(?!assets/|favicon\.ico) + + name + Flinto.com (partial) + rule + + + from + ^http://(?:www\.)?flinto\.com/ + to + https://www.flinto.com/ + + + from + ^http://blog\.flinto\.com/ + to + https://d2xxitgvta5ie.cloudfront.net/ + + + securecookie + + host + ^www\.flinto\.com$ + name + .+ + + target + + + host + flinto.com + + + host + *.flinto.com + + + + + Flipboard (partial) + + ruleset + + name + Flipboard (partial) + rule + + from + ^http://((?:accounts|cdn|editor|share|www)\.)?flipboard\.com/ + to + https://$1flipboard.com/ + + securecookie + + host + ^(?:accounts|editor)\.flipboard\.com$ + name + .+ + + target + + + host + flipboard.com + + + host + *.flipboard.com + + + + + Flippa + + ruleset + + name + Flippa + rule + + from + ^http://(?:www\.)?flippa\.com/ + to + https://flippa.com/ + + securecookie + + host + ^flippa\.com$ + name + .+ + + target + + + host + flippa.com + + + host + www.flippa.com + + + + + Flite (partial) + + ruleset + + name + Flite (partial) + rule + + + from + ^http://(console|[prst])\.flite\.com/ + to + https://$1.flite.com/ + + + from + ^http://press\.flite\.com/(display/|favicon\.ico|layout/|storage/|universal/) + to + https://pressflite.squarespace.com/$1 + + + securecookie + + + host + ^\.flite\.com$ + name + ^__uuc2$ + + + host + ^console\.flite\.com$ + name + .+ + + + target + + host + *.flite.com + + + + Flitto.com + + ruleset + + name + Flitto.com + rule + + from + ^http://(?:www\.)?flitto\.com/ + to + https://www.flitto.com/ + + securecookie + + host + ^www\.flitto\.com$ + name + .+ + + target + + + host + flitto.com + + + host + www.flitto.com + + + + + FlixDen + + ruleset + + name + FlixDen + rule + + from + ^http://(www\.)?flixden\.com/ + to + https://$1flixden.com/ + + securecookie + + host + ^(?:www\.)?flixden\.com$ + name + .+ + + target + + + host + flixden.com + + + host + www.flixden.com + + + + + Flixcart.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.flixcart\.com/+(?!(?:account|s/contact)(?:$|[?/])|favicon\.ico) + + name + Flixcart.com (partial) + rule + + + from + ^http://((?:img1a|secure|www)\.)?flixcart\.com/ + to + https://$1flixcart.com/ + + + from + ^http://img(\d)a\.flixcart\.com/ + to + https://a248.e.akamai.net/f/248/10/10/img$1a.flixcart.com/ + + + target + + + host + flixcart.com + + + host + *.flixcart.com + + + + + Flixster (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?flixster\.com/(?!docs/|favicon\.ico|(?:login|register)(?:$|[?/])|login-gate/|register-frame/|site/) + + name + Flixster (partial) + rule + + + from + ^http://(community\.|www\.)?flixster\.com/ + to + https://$1flixster.com/ + + + from + ^http://(?:instart[02]|content[68])\.flixster\.com/ + to + https://content6.flixster.com/ + + + from + ^http://(?:content[79]|instart[13])\.flixster\.com/ + to + https://content7.flixster.com/ + + + from + ^http://static\.flixstercdn\.com/ + to + https://static.flixstercdn.com/ + + + securecookie + + host + ^community\.flixster\.com$ + name + .+ + + target + + + host + flixster.com + + + host + *.flixster.com + + + host + static.flixstercdn.com + + + + + Floating Hospital.org + + ruleset + + name + Floating Hospital.org + rule + + from + ^http://(?:www\.)?floatinghospital\.org/ + to + https://www.floatinghospital.org/ + + securecookie + + host + ^www\.floatinghospital\.org$ + name + .+ + + target + + + host + floatinghospital.org + + + host + www.floatinghospital.org + + + + + Floek.net + + ruleset + + name + Floek.net + rule + + + from + ^http://(?:www\.)?(?:binefreund\.de|floek\.net)/ + to + https://www.floek.net/ + + + from + ^http://schwimm\.binefreund\.de/ + to + https://schwimm.binefreund.de/ + + + securecookie + + host + ^www\.floek\.net$ + name + .+ + + target + + + host + binefreund.de + + + host + *.binefreund.de + + + host + floek.net + + + host + www.floek.net + + + + + Floor64 (partial) + + ruleset + + exclusion + + pattern + ^http://rtb.techdirt.com/ + + name + Floor64 (partial) + rule + + + from + ^http://(www\.)?insightcommunity\.com/ + to + https://$1insightcommunity.com/ + + + from + ^http://([^@:/]+\.)?techdirt\.com/ + to + https://$1techdirt.com/ + + + target + + + host + insightcommunity.com + + + host + www.insightcommunity.com + + + + + Florida Center for Library Automation (partial) + + ruleset + + name + Florida Center for Library Automation (partial) + rule + + from + ^http://(fclaweb|metalib)\.fcla\.edu/ + to + https://$1.fcla.edu/ + + target + + host + *.fcla.edu + + + + Florida Institute of Technology (partial) + + ruleset + + name + Florida Institute of Technology (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?fit\.edu/ + to + https://www.fit.edu/ + + + from + ^http://(411|(asset|ca|c|event|list|pantherpas|service|track)s|alumni|media|online|spam|webmail)\.fit\.edu/ + to + https://$1.fit.edu/ + + + from + ^http://(go|(portal\.)?my)\.fit\.edu/ + to + https://portal.my.fit.edu/ + + + target + + + host + fit.edu + + + host + alumni.fit.edu + + + host + assets.fit.edu + + + host + cas.fit.edu + + + host + cs.fit.edu + + + host + events.fit.edu + + + host + lists.fit.edu + + + host + media.fit.edu + + + host + online.fit.edu + + + host + pantherpass.fit.edu + + + host + services.fit.edu + + + host + spam.fit.edu + + + host + tracks.fit.edu + + + host + webmail.fit.edu + + + host + www.fit.edu + + + + + Florida Today (partial) + + ruleset + + name + Florida Today (partial) + platform + mixedcontent + rule + + + from + ^http://ads\.flatdy\.net/ + to + https://ads.flatdy.net/ + + + from + ^https?://(?:(?:origin-)?cmsimg\.)?floridatoday\.com/ + to + https://www.floridatoday.com/ + + + from + ^http://((?:origin-)?www)\.floridatoday\.com/ + to + https://$1.floridatoday.com/ + + + from + ^https?://deals\.floridatoday\.com/(?:$|\?) + to + https://brevardco.planetdiscover.com/sp?aff=1180 + + + from + ^https?://(?:deals|search)\.floridatoday\.com/ + to + https://brevardco.planetdiscover.com/ + + + securecookie + + host + ^(?:.*\.)fl(?:atd|oridatoda)y\.com$ + name + .+ + + target + + + host + ads.flatdy.com + + + host + floridatoday.com + + + host + *.floridatoday.com + + + + + FlowingData.com (false MCB) + + ruleset + + name + FlowingData.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?flowingdata\.com/ + to + https://$1flowingdata.com/ + + securecookie + + host + ^\.flowingdata\.com$ + name + .+ + + target + + + host + flowingdata.com + + + host + *.flowingdata.com + + + + + FlowingData.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?flowingdata\.com/+(?!\?custom-css=|wp-content/|wp-includes/) + + name + FlowingData.com (partial) + rule + + from + ^http://((?:jobs|media|www)\.)?flowingdata\.com/ + to + https://$1flowingdata.com/ + + target + + + host + flowingdata.com + + + host + jobs.flowingdata.com + + + host + www.flowingdata.com + + + + + Flowplayer.org (partial) + + ruleset + + name + Flowplayer.org (partial) + rule + + from + ^http://releases\.flowplayer\.org/ + to + https://releases.flowplayer.org/ + + target + + host + releases.flowplayer.org + + + + Flowtab.com + + ruleset + + name + Flowtab.com + rule + + + from + ^http://(www\.)?flowtab\.com/ + to + https://$1flowtab.com/ + + + from + ^http://cdn\.flowtab\.mobi/ + to + https://dxluo93d48m7d.cloudfront.net/ + + + securecookie + + host + ^(?:w*\.)?flowtab\.com$ + name + .+ + + target + + + host + flowtab.com + + + host + *.flowtab.com + + + host + cdn.flowtab.mobi + + + + + Fluctis Hosting.com (partial) + + ruleset + + name + Fluctis Hosting.com (partial) + rule + + from + ^http://(?:www\.)?fluctishosting\.com/(?!whmcs/(?:announcements\.php|index\.php)?(?:$|[?/])) + to + https://fluctishosting.com/ + + securecookie + + host + ^\.fluctishosting\.com$ + name + ^__utm\w+$ + + target + + + host + fluctishosting.com + + + host + *.fluctishosting.com + + + + + Fluendo (partial) + + ruleset + + name + Fluendo (partial) + rule + + from + ^http://(www\.)?fluendo\.com/(media/|press/\w) + to + https://$1fluendo.com/$2 + + target + + + host + fluendo.com + + + host + www.fluendo.com + + + + + Fluid Hosting.com (partial) + + ruleset + + name + Fluid Hosting.com (partial) + rule + + from + ^http://(support\.|www\.)?fluidhosting\.com/ + to + https://$1fluidhosting.com/ + + securecookie + + host + ^support\.fluidhosting\.com$ + name + .+ + + target + + + host + fluidhosting.com + + + host + *.fluidhosting.com + + + + + Flurry + + ruleset + + name + Flurry + rule + + from + ^http://(cdn|dev)\.flurry\.com/ + to + https://$1.flurry.com/ + + securecookie + + host + ^dev\.flurry\.com$ + name + .+ + + target + + host + *.flurry.com + + + + FlutterToday.com (partial) + + ruleset + + name + FlutterToday.com (partial) + rule + + from + ^http://(www\.)?fluttertoday\.com/(?=deals/(?:account(?:$|[?/])|flavor/css/|wp-content/|wp-includes/)|favicon\.ico) + to + https://$1fluttertoday.com/ + + target + + + host + fluttertoday.com + + + host + www.fluttertoday.com + + + + + FluxBB.org (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?fluxbb\.org/($|.+((/|\.php|\.html)($|\?))) + + name + FluxBB.org (partial) + rule + + from + ^http://(www\.)?fluxbb\.org/ + to + https://$1fluxbb.org/ + + target + + + host + fluxbb.org + + + host + www.fluxbb.org + + + + + Flyasite.com (partial) + + ruleset + + name + Flyasite.com (partial) + rule + + from + ^http://assets[01]\.flyasite\.com/ + to + https://d1gzjld104oq4p.cloudfront.net/ + + target + + host + *.flyasite.com + + + + FlyersRights.org + + ruleset + + name + FlyersRights.org + rule + + from + ^https?://(?:anything\.|www\.)?flyersrights\.(?:com|org)/ + to + https://anything.flyersrights.com/ + + target + + + host + flyersrights.com + + + host + *.flyersrights.com + + + host + flyersrights.org + + + host + www.flyersrights.org + + + + + Flyertown + + ruleset + + name + Flyertown + rule + + from + ^http://(www\.)?flyertown\.ca/ + to + https://$1flyertown.ca/ + + securecookie + + host + ^www\.flyertown\.ca$ + name + .+ + + target + + + host + flyertown.ca + + + host + www.flyertown.ca + + + + + Flying Cameras + + ruleset + + name + Flying Cameras + rule + + from + ^http://(www\.)?flyingcameras\.ca/ + to + https://$1flyingcameras.ca/ + + securecookie + + host + ^\.(?:www\.)?flyingcameras\.ca$ + name + .+ + + target + + + host + flyingcameras.ca + + + host + *.flyingcameras.ca + + + + + Flying Meat (partial) + + ruleset + + name + Flying Meat (partial) + rule + + from + ^http://(?:secure\.|www\.)?flyingmeat\.com/ + to + https://secure.flyingmeat.com/ + + target + + + host + flyingmeat.com + + + host + *.flyingmeat.com + + + + + Fnac (partial) + + ruleset + + name + Fnac (partial) + rule + + from + ^https?://(?:www\.)?fnacspectacles\.com/(aide\.do(?:$|\?)|banniere/|css/|images/|js/|static/) + to + https://www.fnacspectacles.com/$1 + + target + + + host + fnacspectacles.com + + + host + www.fnacspectacles.com + + + + + FoD4.com + + ruleset + + name + FoD4.com + rule + + + from + ^http://([prtw])\.fod4\.com/ + to + https://a248.e.akamai.net/f/1915/1793/4/$1.fod4.com/ + + + from + ^http://vo\.fod4\.com/ + to + https://a248.e.akamai.net/f/1164/117/3/vo.fod4.com/ + + + target + + host + *.fod4.com + + + + FoECV LiaB.com + + ruleset + + name + FoECV LiaB.com + rule + + from + ^http://(?:www\.)?foecvliab\.com/ + to + https://www.foecvliab.com/ + + target + + + host + foecvliab.com + + + host + www.foecvliab.com + + + + + Focus Camera.com + + ruleset + + name + Focus Camera.com + rule + + from + ^http://(www\.)?focuscamera\.com/ + to + https://$1focuscamera.com/ + + securecookie + + host + ^\.(?:www\.)?focuscamera\.com$ + name + .+ + + target + + + host + focuscamera.com + + + host + *.focuscamera.com + + + + + Focus on Learning Center.com + + ruleset + + name + Focus on Learning Center.com + rule + + from + ^http://(www\.)?focusonlearningcenter\.com/ + to + https://$1focusonlearningcenter.com/ + + securecookie + + host + ^(?:www\.)?focusonlearningcenter\.com$ + name + .+ + + target + + + host + focusonlearningcenter.com + + + host + www.focusonlearningcenter.com + + + + + Focus.de (false MCB) + + ruleset + + name + Focus.de (false MCB) + platform + mixedcontent + rule + + from + ^http://m\.focus\.de/ + to + https://m.focus.de/ + + target + + host + m.focus.de + + + + Focus.de (partial) + + ruleset + + exclusion + + + pattern + ^http://m\.focus\.de/+(?!favicon\.ico|resources/) + + + pattern + ^http://www\.focus\.de/+(?!resources/) + + + name + Focus.de (partial) + rule + + + from + ^http://((?:m|static|www)\.)?focus\.de/ + to + https://$1focus.de/ + + + from + ^http://p[04]\.focus\.de/ + to + https://p0.focus.de/ + + + from + ^http://p5\.focus\.de/ + to + https://a248.e.akamai.net/f/248/4737/10/p5.focus.de/ + + + from + ^http://i\.tfag\.de/ + to + https://i.tfag.de/ + + + target + + + host + focus.de + + + host + *.focus.de + + + host + *.tfag.de + + + + + FoeBuD e.V. + + ruleset + + name + FoeBuD e.V. + rule + + from + ^http://([^/:@\.]+\.)?foebud\.org/ + to + https://$1foebud.org/ + + securecookie + + host + ^\.(?:shop\.)?foebud\.org$ + name + .+ + + target + + + host + foebud.org + + + host + *.foebud.org + + + + + Fog Creek + + ruleset + + name + Fog Creek + rule + + from + ^http://(secure\.|www\.)?fogcreek\.com/ + to + https://$1fogcreek.com/ + + securecookie + + host + ^(?:secure\.|\.)?fogcreek\.com$ + name + .+ + + target + + + host + fogcreek.com + + + host + *.fogcreek.com + + + + + FogBugz.com + + ruleset + + name + FogBugz.com + rule + + + from + ^http://(?:www\.)?fogbugz\.com/.* + to + https://www.fogcreek.com/fogbugz/ + + + from + ^http://d2l\.fogbugz\.com/ + to + https://d2l.fogbugz.com/ + + + securecookie + + host + ^d2l\.fogbugz\.com$ + name + .+ + + target + + + host + fogbugz.com + + + host + *.fogbugz.com + + + + + Fokus Bank + + ruleset + + name + Fokus Bank + rule + + + from + ^http://fokus\.no/ + to + https://www.fokus.no/ + + + from + ^http://www\.fokus\.no/ + to + https://www.fokus.no/ + + + target + + + host + fokus.no + + + host + www.fokus.no + + + + + Folksam.se + + ruleset + + name + Folksam.se + platform + mixedcontent + rule + + + from + ^http://www\.folksam\.se/ + to + https://www.folksam.se/ + + + from + ^http://folksam\.se/ + to + https://www.folksam.se/ + + + target + + + host + folksam.se + + + host + www.folksam.se + + + + + Fontdeck (partial) + + ruleset + + name + Fontdeck (partial) + rule + + + from + ^http://(www\.)?fontdeck\.com/(images/|login$|register$|stylesheets/) + to + https://fontdeck.com/$2 + + + from + ^http://f\.fontdeck\.com/ + to + https://f.fontdeck.com/ + + + target + + + host + fontdeck.com + + + host + f.fontdeck.com + + + host + www.fontdeck.com + + + + + Fontspring (partial) + + ruleset + + name + Fontspring (partial) + rule + + + from + ^http://www\.fontspring\.com/fonts/(?=$|\?) + to + https://www.fontspring.com/fonts + + + from + ^http://(www\.)?fontspring\.com/(?=account(?:$|[?/])|cache_assets/|favicon\.ico|fnt_imgs/|(?:fonts|fresh)/*(?:$|\?)|poster_imgs/|presentation_20140401/|tools/) + to + https://$1fontspring.com/ + + + from + ^http://cdn\d\.fontspring\.com/ + to + https://www.fontspring.com/ + + + target + + + host + fontspring.com + + + host + *.fontspring.com + + + + + FooFighters + + ruleset + + name + FooFighters + rule + + from + ^http://(?:www\.)?foofighters\.com/ + to + https://www.foofighters.com/ + + securecookie + + host + ^(.+\.)?foofighters\.com$ + name + .* + + target + + + host + foofighters.com + + + host + www.foofighters.com + + + + + Food & Water Watch (partial) + + ruleset + + name + Food & Water Watch (partial) + rule + + + from + ^http://act\.foodandwaterwatch\.org/site/Donation + to + https://secure3.convio.net/fww/site/Donation + + + from + ^http://(www\.)?foodandwaterwatch\.org/ + to + https://$1foodandwaterwatch.org/ + + + securecookie + + host + ^(?:w*\.)?foodandwaterwatch\.org$ + name + .+ + + target + + + host + foodandwaterwatch.org + + + host + *.foodandwaterwatch.org + + + + + Food Allergy & Anaphylaxis Network + + ruleset + + name + Food Allergy & Anaphylaxis Network + rule + + from + ^http://(?:www\.)?foodallergy\.org/ + to + https://www.foodallergy.org/ + + target + + + host + foodallergy.org + + + host + www.foodallergy.org + + + + + Food Allergy Initiative + + ruleset + + name + Food Allergy Initiative + rule + + from + ^http://(?:www\.)?faiusa\.org/ + to + https://www.faiusa.org/ + + target + + + host + faiusa.org + + + host + www.faiusa.org + + + + + Food Hub + + ruleset + + name + Food Hub + rule + + from + ^http://(www\.)?foodhub\.co\.nz/ + to + https://$1foodhub.co.nz/ + + securecookie + + host + ^(?:www\.)?foodhub\.co\.nz$ + name + .+ + + target + + + host + foodhub.co.nz + + + host + www.foodhub.co.nz + + + + + Food Protection Task Force.com (partial) + + ruleset + + name + Food Protection Task Force.com (partial) + rule + + from + ^http://(www\.)?foodprotectiontaskforce\.com/(dfsr2/|member(?:$|[?/])) + to + https://$1foodprotectiontaskforce.com/$2 + + target + + + host + foodprotectiontaskforce.com + + + host + www.foodprotectiontaskforce.com + + + + + Foodl.org + + ruleset + + name + Foodl.org + rule + + + from + ^http://(?:www\.)?foodl\.org/ + to + https://foodl.org/ + + + from + ^http://(beta|deploy)\.foodl\.org/ + to + https://$1.foodl.org/ + + + securecookie + + host + ^(?:beta\.|deploy\.)?foodl\.org$ + name + .+ + + target + + + host + foodl.org + + + host + *.foodl.org + + + + + Fool.com (false MCB) + + ruleset + + name + Fool.com (false MCB) + platform + mixedcontent + rule + + + from + ^http://wiki\.fool\.com/ + to + https://wiki.fool.com/ + + + from + ^http://(?:www\.)?marketfoolery\.com/[^?]* + to + https://wiki.fool.com/MarketFoolery + + + target + + host + wiki.fool.com + + + + Foolz.us + + ruleset + + name + Foolz.us + rule + + from + ^http://((?:archive|blog|www)\.)?foolz\.us/ + to + https://$1foolz.us/ + + target + + + host + foolz.us + + + host + *.foolz.us + + + + + Foot Locker (partial) + + ruleset + + name + Foot Locker (partial) + rule + + + from + ^https?://(?:www\.)?footlocker\.com/ + to + https://www.footlocker.com/ + + + from + ^http://(images|m)\.footlocker\.com/ + to + https://$1.footlocker.com/ + + + securecookie + + host + ^.*\.footlocker\.com$ + name + .+ + + target + + + host + footlocker.com + + + host + *.footlocker.com + + + host + *.www.footlocker.com + + + + + Foot Locker Canada + + ruleset + + name + Foot Locker Canada + rule + + from + ^https?://(?:www\.)?footlocker\.ca/ + to + https://www.footlocker.ca/ + + securecookie + + host + ^.*\.footlocker\.ca$ + name + .+ + + target + + + host + footlocker.ca + + + host + *.footlocker.ca + + + + + Foot Locker Europe (partial) + + ruleset + + name + Foot Locker Europe (partial) + rule + + + from + ^https?://(?:www\.)?footlocker\.eu/(ns/|secure/|WebResource\.axd) + to + https://www.footlocker.eu/$1 + + + from + ^https?://(?:www\.)?footlocker\.eu/(\w\w/)/(\w\w)/(k/|s/|ShoppingCart\.aspx)/ + to + https://www.footlocker.eu/$1/$2/secure/$3 + + + target + + + host + footlocker.eu + + + host + www.footlocker.eu + + + + + Foot Locker, Inc. + + ruleset + + name + Foot Locker, Inc. + rule + + from + ^https?://(?:www\.)?footlocker-inc\.com/ + to + https://www.footlocker-inc.com/ + + target + + + host + footlocker-inc.com + + + host + www.footlocker-inc.com + + + + + Footaction USA + + ruleset + + name + Footaction USA + rule + + + from + ^https?://(?:www\.)?footaction\.com/ + to + https://www.footaction.com/ + + + from + ^http://(images|m)\.footaction\.com/ + to + https://$1.footaction.com/ + + + securecookie + + host + ^.*\.footaction\.com$ + name + .+ + + target + + + host + footaction.com + + + host + *.footaction.com + + + host + *.www.footaction.com + + + + + Football Fanatics (partial) + + ruleset + + exclusion + + pattern + ^http://(?!images\.)(?:\w+\.)?footballfanatics\.com/(?!account/|checkout/|css/) + + name + Football Fanatics (partial) + rule + + + from + ^http://footballfanatics\.com/ + to + https://www.footballfanatics.com/ + + + from + ^http://(\w+)\.footballfanatics\.com/ + to + https://$1.footballfanatics.com/ + + + target + + + host + footballfanatics.com + + + host + *.footballfanatics.com + + + + + Forbes Magazine + + ruleset + + name + Forbes Magazine + rule + + + from + ^http://blogs-images\.forbes\.com/ + to + https://a248.e.akamai.net/f/1015/2073/5m/blogs-images.forbes.com/ + + + from + ^http://(e-subscriptions|secureads)\.forbes\.com/ + to + https://$1.forbes.com/ + + + from + ^http://(?:www\.)?newsletters\.forbes\.com/(DRHM/|favicon\.ico|store\?Action=(?:AddItemToRequisition|DisplayPage)(?:$|[?/])) + to + https://www.newsletters.forbes.com/$1 + + + from + ^http://b-i\.forbesimg\.com/ + to + https://a248.e.akamai.net/f/1621/3914/8d/b-i.forbesimg.com/ + + + from + ^https?://(?:www\.)?forbesmagazine\.com/ + to + https://www.forbesmagazine.com/ + + + from + ^http://subs\.forbesmagazine\.com/ + to + https://subs.forbesmagazine.com/ + + + securecookie + + + host + ^www\.newsletters\.forbes\.com$ + name + ^fc\w+$ + + + host + ^.+\.forbesmagazine\.com$ + name + .+ + + + target + + + host + *.forbes.com + + + host + b-i.forbesimg.com + + + host + forbesmagazine.com + + + host + *.forbesmagazine.com + + + host + *.www.forbesmagazine.com + + + + + Forbes Magazine (mixed content) + + ruleset + + name + Forbes Magazine (mixed content) + platform + mixedcontent + rule + + from + ^http://blogs\.forbes\.com/ + to + https://blogs.forbes.com/ + + target + + host + blogs.forbes.com + + + + Forbrukerraadet + + ruleset + + name + Forbrukerraadet + rule + + from + ^http://(?:www\.)?forbrukerportalen\.no/ + to + https://forbrukerportalen.no/ + + target + + + host + www.forbrukerportalen.no + + + host + forbrukerportalen.no + + + + + Ford (partial) + + ruleset + + exclusion + + pattern + ^http://media\.ford\.com/(?!graphics/|images/|include/) + + name + Ford (partial) + rule + + from + ^http://(developer|media)\.ford\.com/ + to + https://$1.ford.com/ + + target + + host + *.ford.com + + + + Fordela.com + + ruleset + + name + Fordela.com + rule + + + from + ^http://(?:www\.)?fordela\.com/ + to + https://www.fordela.com/ + + + from + ^http://(goldmember|vms)\.fordela\.com/ + to + https://$1.fordela.com/ + + + securecookie + + host + .*\.fordela\.com$ + name + .+ + + target + + + host + fordela.com + + + host + *.fordela.com + + + + + ForeSee Results.com + + ruleset + + name + ForeSee Results.com + rule + + + from + ^http://(?:www\.)?foreseeresults\.com/ + to + https://www.foreseeresults.com/ + + + from + ^http://(events|portal2)\.foreseeresults\.com/ + to + https://$1.foreseeresults.com/ + + + securecookie + + host + ^(?:portal2)?\.foreseeresults\.com$ + name + .+ + + target + + + host + foreseeresults.com + + + host + *.foreseeresults.com + + + + + Foreningen for Dansk Internethandel (partial) + + ruleset + + name + Foreningen for Dansk Internethandel (partial) + rule + + from + ^http://cookie\.fdih\.dk/ + to + https://cookie.fdih.dk/ + + target + + host + cookie.fdih.dk + + + + Foresight.org + + ruleset + + name + Foresight.org + rule + + from + ^http://(?:www\.)?foresight\.org/ + to + https://www.foresight.org/ + + securecookie + + host + ^\.foresight\.org$ + name + .+ + + target + + + host + foresight.org + + + host + *.foresight.org + + + + + Forester (partial) + + ruleset + + name + Forester (partial) + rule + + from + ^http://(?:www\.)?forrester\.com/(assets|javax\.faces\.resource)/ + to + https://www.forrester.com/$1/ + + target + + + host + forrester.com + + + host + www.forrester.com + + + + + Foresters + + ruleset + + name + Foresters + rule + + + from + ^http://(?:www\.)?foresters\.biz/.* + to + https://www.foresters.com/ + + + from + ^http://foresters\.com/.* + to + https://www.foresters.com/ + + + from + ^http://www\.foresters\.com/ + to + https://www.foresters.com/ + + + securecookie + + host + ^\.foresters\.com$ + name + .+ + + target + + + host + foresters.* + + + host + www.foresters.biz + + + host + *.foresters.com + + + + + Forex-Metal + + ruleset + + name + Forex-Metal + rule + + from + ^http://(?:www\.)?forex-metal\.com/ + to + https://forex-metal.com/ + + securecookie + + host + ^forex-metal\.com$ + name + .* + + target + + + host + forex-metal.com + + + host + www.forex-metal.com + + + + + Forex.com (partial) + + ruleset + + name + Forex.com (partial) + rule + + + from + ^http://(?:www\.)?forex\.com/ + to + https://secure.forex.com/ + + + from + ^http://(apply|assets|myaccount|(?:practic|secur)e(?:15)?|previewtrade)\.forex\.com/ + to + https://$1.forex.com/ + + + securecookie + + host + ^(?:myaccount|(?:practic|secur)e(?:15)?|previewtrade)\.forex\.com$ + name + .+ + + target + + + host + forex.com + + + host + *.forex.com + + + + + ForexCT (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:cn\.|www\.)?forexct\.com/(?![iI]mages/|styles/) + + name + ForexCT (partial) + rule + + + from + ^https?://forexct\.com/ + to + https://www.forexct.com/ + + + from + ^http://(cn|www)\.forexct\.com/ + to + https://$1.forexct.com/ + + + from + ^http://forexctlogin\.tradenetworks\.com/ + to + https://forexctlogin.tradenetworks.com/ + + + securecookie + + host + ^forexctlogin\.tradenetworks\.com$ + name + .+ + + target + + + host + forexct.com + + + host + *.forexct.com + + + host + forexctlogin.tradenetworks.com + + + + + Forge Software + + ruleset + + name + Forge Software + rule + + from + ^http://(www\.)?forgesoftware\.com/ + to + https://$1forgesoftware.com/ + + securecookie + + host + ^(?:w*\.)?forgesoftware\.com$ + name + .+ + + target + + + host + forgesoftware.com + + + host + *.forgesoftware.com + + + + + ForgeFields.com (partial) + + ruleset + + name + ForgeFields.com (partial) + rule + + from + ^http://(www\.)?forgefields\.com/ + to + https://$1forgefields.com/ + + securecookie + + host + ^(?:www)?\.forgefields\.com$ + name + .+ + + target + + + host + forgefields.com + + + host + *.forgefields.com + + + + + ForgottenLands.eu + + ruleset + + name + ForgottenLands.eu + rule + + + from + ^http://(?:www\.)?forgottenlands\.eu/ + to + https://www.forgottenlands.eu/ + + + from + ^http://vote\.forgottenlands\.eu/ + to + https://vote.forgottenlands.eu/ + + + securecookie + + host + ^(?:vote)?\.forgottenlands\.eu$ + name + .+ + + target + + + host + forgottenlands.eu + + + host + *.forgottenlands.eu + + + + + Foris Wine + + ruleset + + name + Foris Wine + rule + + from + ^http://(?:www\.)?foriswine\.com/ + to + https://www.foriswine.com/ + + target + + + host + foriswine.com + + + host + www.foriswine.com + + + + + FormAssembly.com (partial) + + ruleset + + name + FormAssembly.com (partial) + rule + + + from + ^https?://(?:secure\.|www3?\.)?formassembly\.com/ + to + https://www3.formassembly.com/ + + + from + ^http://app\.formassembly\.com/ + to + https://app.formassembly.com/ + + + from + ^http://(www\.)?tfaforms\.com/ + to + https://$1tfaforms.com/ + + + securecookie + + + host + ^.+\.formassembly\.com$ + name + .+ + + + host + ^(?:www\.)?tfaforms\.com$ + name + .+ + + + target + + + host + www3.formassembly.com + + + host + tfaforms.com + + + host + www.tfaforms.com + + + + + FormSanity.com (partial) + + ruleset + + name + FormSanity.com (partial) + rule + + from + ^http://(?:(download\.|staging\.)|www\.)?formsanity\.com/ + to + https://$1formsanity.com/ + + target + + + host + formsanity.com + + + host + *.formsanity.com + + + + + FormatDynamics.com + + ruleset + + name + FormatDynamics.com + rule + + from + ^http://(www\.)?formatdynamics\.com/ + to + https://$1formatdynamics.com/ + + securecookie + + host + ^\.formatdynamics\.com$ + name + .+ + + target + + + host + formatdynamics.com + + + host + *.formatdynamics.com + + + + + Formstack (partial) + + ruleset + + name + Formstack (partial) + rule + + + from + ^http://(www\.)?formstack\.com/ + to + https://$1formstack.com/ + + + from + ^http://blog\.formstack\.com/favicon\.ico$ + to + https://www.formstack.com/favicon.ico + + + from + ^http://(?:blog\.formstack\.com/wp-content/themes/fontstack-theme|support\.formstack\.com/assets)/images/bg\.jpg$ + to + https://www.formstack.com/assets/images/bg.jpg + + + target + + + host + formstack.com + + + host + *.formstack.com + + + + + Fornex.com (partial) + + ruleset + + name + Fornex.com (partial) + rule + + from + ^http://(www\.)?fornex\.com/ + to + https://$1fornex.com/ + + securecookie + + host + ^fornex\.com$ + name + .+ + + target + + + host + fornex.com + + + host + www.fornex.com + + + + + Forsakringskassan.se + + ruleset + + name + Forsakringskassan.se + platform + mixedcontent + rule + + + from + ^http://www\.forsakringskassan\.se/ + to + https://www.forsakringskassan.se/ + + + from + ^http://forsakringskassan\.se/ + to + https://www.forsakringskassan.se/ + + + target + + + host + www.forsakringskassan.se + + + host + forsakringskassan.se + + + + + Forsiden (partial) + + ruleset + + name + Forsiden (partial) + rule + + + from + ^http://(?:www\.)?fvn\.no/ + to + https://www.fvn.no/ + + + from + ^http://kundesenter\.fvn\.no/ + to + https://kundesenter.fvn.no/ + + + securecookie + + host + ^kundesenter\.fvn\.no$ + name + .+ + + target + + + host + fvn.no + + + host + *.fvn.no + + + + + Forsvarsforbundet.se + + ruleset + + name + Forsvarsforbundet.se + rule + + + from + ^http://forsvarsforbundet\.se/ + to + https://www.forsvarsforbundet.se/ + + + from + ^http://www\.forsvarsforbundet\.se/ + to + https://www.forsvarsforbundet.se/ + + + target + + + host + forsvarsforbundet.se + + + host + www.forsvarsforbundet.se + + + + + Forthnet + + ruleset + + name + Forthnet + rule + + from + ^http://(webmail|services)\.forthnet\.gr/ + to + https://$1.forthnet.gr/ + + securecookie + + + host + ^webmail.forthnet\.gr$ + name + .* + + + host + ^services.forthnet\.gr$ + name + .* + + + target + + + host + webmail.forthnet.gr + + + host + services.forthnet.gr + + + + + Fortum + + ruleset + + name + Fortum + rule + + from + ^http://(?:www\.)?fortum\.com/ + to + https://www.fortum.com/ + + securecookie + + host + ^(?:.*\.)?fortum\.com$ + name + .+ + + target + + + host + fortum.com + + + host + www.fortum.com + + + + + FortuneTango + + ruleset + + name + FortuneTango + rule + + from + ^http://(www\.)?fortunetango\.com/ + to + https://$1fortunetango.com/ + + securecookie + + host + ^(www\.)?fortunetango\.com$ + name + .* + + target + + + host + fortunetango.com + + + host + www.fortunetango.com + + + + + ForumBlog.org + + ruleset + + name + ForumBlog.org + rule + + from + ^http://(?:www\.)?forumblog\.org/ + to + https://forumblog.org/ + + securecookie + + host + ^\.?forumblog\.org$ + name + .+ + + target + + + host + forumblog.org + + + host + *.forumblog.org + + + + + Forumatic (partial) + + ruleset + + name + Forumatic (partial) + rule + + from + ^http://(www\.)?forumatic\.com/ + to + https://$1forumatic.com/ + + securecookie + + host + ^\.forumatic\.com$ + name + ^PHPSESSID$ + + target + + + host + forumatic.com + + + host + *.forumatic.com + + + + + Forums für Naturfotografen + + ruleset + + name + Forums für Naturfotografen + rule + + from + ^https?://(?:www\.)?naturfotografen-forum\.de/ + to + https://naturfotografen-forum.de/ + + securecookie + + host + ^\.?naturfotografen-forum\.de$ + name + .+ + + target + + + host + naturfotografen-forum.de + + + host + *.naturfotografen-forum.de + + + + + Fossil-SCM.org + + ruleset + + name + Fossil-SCM.org + rule + + from + ^http://(?:www\.)?fossil-scm\.org/ + to + https://www.fossil-scm.org/ + + target + + + host + fossil-scm.org + + + host + www.fossil-scm.org + + + + + Fotki (partial) + + ruleset + + name + Fotki (partial) + rule + + + from + ^https?://images\.fotki\.com/ + to + https://fotki.cachefly.net/ + + + from + ^https?://login\.fotki\.com/($|\?.*) + to + https://secure.fotki.com/login$1 + + + from + ^http://secure\.fotki\.com/ + to + https://secure.fotki.com/ + + + target + + host + *.fotki.com + + + + FotoPigeon + + ruleset + + name + FotoPigeon + rule + + from + ^https?://(?:www\.)?fotopigeon\.com/ + to + https://www.fotopigeon.com/ + + securecookie + + host + ^www\.fotopigeon\.com$ + name + .+ + + target + + + host + fotopigeon.com + + + host + www.fotopigeon.com + + + + + Fotoblur + + ruleset + + name + Fotoblur + rule + + from + ^http://(?:www\.)?fotoblur\.com/ + to + https://www.fotoblur.com/ + + securecookie + + host + ^www\.fotoblur\.com$ + name + .+ + + target + + + host + fotoblur.com + + + host + www.fotoblur.com + + + + + Foundation Beyond Belief.org + + ruleset + + name + Foundation Beyond Belief.org + rule + + from + ^http://(www\.)?foundationbeyondbelief\.org/ + to + https://$1foundationbeyondbelief.org/ + + securecookie + + host + ^\.foundationbeyondbelief\.org$ + name + .+ + + target + + + host + foundationbeyondbelief.org + + + host + *.foundationbeyondbelief.org + + + + + Foundation Source + + ruleset + + name + Foundation Source + rule + + from + ^http://((?:access|fsol|online|www)\.)?foundationsource\.com/ + to + https://$1foundationsource.com/ + + securecookie + + host + ^(.*\.)?foundationsource\.com$ + name + .* + + target + + + host + foundationsource.com + + + host + *.foundationsource.com + + + + + Foundation for Health Coverage Education + + ruleset + + name + Foundation for Health Coverage Education + rule + + from + ^http://(?:www\.)?coverageforall\.org/ + to + https://www.coverageforall.org/ + + target + + + host + coverageforall.org + + + host + www.coverageforall.org + + + + + Fourmilab (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?fourmilab\.ch/(?:cgi-bin/(?:uncgi/)?Earth\?|images/(?:c1995o1/$|flash/g-audio-player\.swf)) + + name + Fourmilab (partial) + rule + + + from + ^http(?:://(?:www\.)?|s://)fourmilab\.ch/ + to + https://www.fourmilab.ch/ + + + downgrade + 1 + from + ^https://www\.fourmilab\.ch/images/c1995o1/$ + to + http://www.fourmilab.ch/images/c1995o1/ + + + downgrade + 1 + from + ^https://www\.fourmilab\.ch/cship/figures/Gdoppler1\.html + to + http://www.fourmilab.ch/cship/figures/Gdoppler1.html + + + downgrade + 1 + from + ^https://(?:www\.)?fourmilab\.ch/cgi-bin/(?:uncgi/)?Earth\? + to + http://www.fourmilab.ch/cgi-bin/Earth? + + + securecookie + + host + ^www\.fourmilab\.ch$ + name + .+ + + target + + + host + fourmilab.ch + + + host + www.fourmilab.ch + + + + + Foursquare.com (partial) + + ruleset + + name + Foursquare.com (partial) + rule + + + from + ^http://(is\d|ss[0-5l])\.4sqi\.net/ + to + https://$1.4sqi.net/ + + + from + ^http://((?:api|de|developer|es|fr|id|it|ja|ko|lv|pt|ru|th|tr|translate|www)\.)?foursquare\.com/ + to + https://$1foursquare.com/ + + + from + ^https?://support\.foursquare\.com/generated/ + to + https://generated.zendesk.com/generated/ + + + securecookie + + host + ^(?:.*\.)?foursquare\.com$ + name + .+ + + target + + + host + *.4sqi.net + + + host + foursquare.com + + + host + *.foursquare.com + + + + + Fout.jp (partial) + + ruleset + + name + Fout.jp (partial) + rule + + from + ^http://(cnt|dsp|js)\.fout\.jp/ + to + https://$1.fout.jp/ + + securecookie + + host + ^\.fout\.jp$ + name + ^uid$ + + target + + host + *.fout.jp + + + + Fox News (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.fbn|global\.fnc)static\.com/static/(?:.+/)?(?:j|cs)s/ + + name + Fox News (partial) + rule + + + from + ^https?://www\.fbnstatic\.com/ + to + https://a57.foxnews.com/$1static.com/ + + + from + ^http://global\.fncstatic\.com/ + to + https://global.fncstatic.com/ + + + from + ^http://(beta\.)?video\.foxbusiness\.com/ + to + https://$1video.foxbusiness.com/ + + + from + ^http://(a57|ads|video\.(?:imag|insider|latino|ureport)|live|video|beta\.video(?:\.latino)?)\.foxnews\.com/ + to + https://$1.foxnews.com/ + + + from + ^https?://metrics\.foxnews\.com/ + to + https://foxnews.112.2o7.net/ + + + from + ^https?://uereport\.foxnews\.com/services/ + to + https://filemobile.com/services/ + + + from + ^http://facebook\.foxnewsinsider\.com/ + to + https://facebook.foxnewsinsider.com/ + + + from + ^http://foxnews\.ramp\.com/ + to + https://foxnews.ramp.com/ + + + target + + + host + www.fbnstatic.com + + + host + global.fncstatic.com + + + host + *.foxbusiness.com + + + host + *.foxnews.com + + + host + facebook.foxnewsinsider.com + + + host + foxnews.ramp.com + + + + + Fox-IT.com + + ruleset + + name + Fox-IT.com + rule + + from + ^http://(clientportal\.|www\.)?fox-it\.com/ + to + https://$1fox-it.com/ + + target + + + host + fox-it.com + + + host + *.fox-it.com + + + + + Foxitsoftware + + ruleset + + name + Foxitsoftware + rule + + from + ^http://www\.foxitsoftware\.com/ + to + https://www.foxitsoftware.com/ + + target + + host + *.foxitsoftware.com + + + + FoxyCart.com (partial) + + ruleset + + name + FoxyCart.com (partial) + rule + + from + ^http://(admin|cdn|docs|forum|wiki)\.foxycart\.com/ + to + https://$1.foxycart.com/ + + securecookie + + host + ^(?:admin|docs|forum|wiki)\.foxycart\.com$ + name + .+ + + target + + + host + foxycart.com + + + host + *.foxycart.com + + + + + Frack.nl + + ruleset + + name + Frack.nl + rule + + from + ^http://(www\.)?frack\.nl/ + to + https://$1frack.nl/ + + securecookie + + host + ^(?:www\.)?frack\.nl$ + name + .+ + + target + + + host + frack.nl + + + host + www.frack.nl + + + + + Fraglive + + ruleset + + name + Fraglive + rule + + from + ^http://(www\.)?fraglive\.cl/ + to + https://$1fraglive.cl/ + + securecookie + + host + ^(?:w*\.)?fraglive\.cl$ + name + .+ + + target + + + host + fraglive.cl + + + host + *.fraglive.cl + + + + + Franceserv + + ruleset + + name + Franceserv + rule + + from + ^http://(www\.)?franceserv\.fr/ + to + https://$1franceserv.fr/ + + securecookie + + host + ^www\.franceserv\.fr$ + name + .+ + + target + + + host + franceserv.fr + + + host + www.franceserv.fr + + + + + Frank Timis + + ruleset + + name + Frank Timis + rule + + from + ^http://www\.franktimis\.com/ + to + https://www.franktimis.com/ + + securecookie + + host + ^\.franktimis\.com$ + name + .+ + + target + + host + *.franktimis.com + + + + Franken.de + + ruleset + + name + Franken.de + rule + + + from + ^http://(?:www\.)?franken\.de/ + to + https://www.franken.de/ + + + from + ^http://(cloud|kerio)\.franken\.de/ + to + https://$1.franken.de/ + + + securecookie + + host + ^www\.franken\.de$ + name + .+ + + target + + + host + franken.de + + + host + *.franken.de + + + + + Franklin W. Olin College of Engineering + + ruleset + + name + Franklin W. Olin College of Engineering + rule + + from + ^http://(www\.)?olin\.edu/ + to + https://$1olin.edu/ + + target + + + host + olin.edu + + + host + www.olin.edu + + + + + Fred and Pickles + + ruleset + + name + Fred and Pickles + rule + + from + ^http://(www\.)?fredandpickles\.co\.uk/ + to + https://$1fredandpickles.co.uk/ + + securecookie + + host + ^\.fredandpickles\.co\.uk$ + name + .+ + + target + + + host + fredandpickles.co.uk + + + host + *.fredandpickles.co.uk + + + + + Frederik-Braun.com + + ruleset + + name + Frederik-Braun.com + rule + + from + ^http://(www\.)?frederik-braun\.com/ + to + https://$1frederik-braun.com/ + + securecookie + + host + ^frederik-braun\.com$ + name + .+ + + target + + + host + frederik-braun.com + + + host + www.frederik-braun.com + + + + + Free Assange Now.org + + ruleset + + name + Free Assange Now.org + rule + + from + ^http://(www\.)?freeassangenow\.org/ + to + https://$1freeassangenow.org/ + + target + + + host + freeassangenow.org + + + host + www.freeassangenow.org + + + + + Free Barrett Brown.org + + ruleset + + name + Free Barrett Brown.org + rule + + from + ^http://(www\.)?freebarrettbrown\.org/ + to + https://$1freebarrettbrown.org/ + + securecookie + + host + ^\.freebarrettbrown\.org$ + name + .+ + + target + + + host + freebarrettbrown.org + + + host + *.freebarrettbrown.org + + + + + Free Bible Software.com + + ruleset + + name + Free Bible Software.com + rule + + from + ^http://(development\.|www\.)?freebiblesoftware\.com/ + to + https://$1freebiblesoftware.com/ + + securecookie + + host + ^(?:development\.|www\.)?freebiblesoftware\.com$ + name + .+ + + target + + + host + freebiblesoftware.com + + + host + *.freebiblesoftware.com + + + + + Free Jeremy.net + + ruleset + + name + Free Jeremy.net + rule + + from + ^http://(www\.)?freejeremy\.net/ + to + https://$1freejeremy.net/ + + target + + + host + freejeremy.net + + + host + www.freejeremy.net + + + + + Free Porn Gif.com (false MCB) + + ruleset + + name + Free Porn Gif.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?freeporngif\.com/ + to + https://$1freeporngif.com/ + + securecookie + + host + ^\.freeporngif\.com$ + name + .+ + + target + + + host + freeporngif.com + + + host + *.freeporngif.com + + + + + Free Porn Gif.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?freeporngif\.com/+(?!css/|favicon\.ico) + + name + Free Porn Gif.com (partial) + rule + + from + ^http://(i\.|www\.)?freeporngif\.com/ + to + https://$1freeporngif.com/ + + target + + + host + freeporngif.com + + + host + i.freeporngif.com + + + host + www.freeporngif.com + + + + + Free Press + + ruleset + + name + Free Press + rule + + + from + ^http://((?:act|analytics|www)\.)?freepress\.net/ + to + https://$1freepress.net/ + + + from + ^http://s3\.freepress\.net/ + to + https://s3.amazonaws.com/s3.freepress.net/ + + + securecookie + + host + ^(?:act\.|analytics\.|www\.)?freepress\.net$ + name + .+ + + target + + + host + freepress.net + + + host + *.freepress.net + + + + + Free Rainbow Tables + + ruleset + + name + Free Rainbow Tables + rule + + from + ^http://(www\.)?freerainbowtables\.com/ + to + https://$1freerainbowtables.com/ + + securecookie + + host + ^(?:www\.)?freerainbowtables\.com$ + name + .+ + + target + + + host + freerainbowtables.com + + + host + www.freerainbowtables.com + + + + + Free Snowden.is + + ruleset + + name + Free Snowden.is + rule + + from + ^http://(www\.)?freesnowden\.is/ + to + https://$1freesnowden.is/ + + target + + + host + freesnowden.is + + + host + www.freesnowden.is + + + + + Free Software Foundation + + ruleset + + name + Free Software Foundation + rule + + + from + ^http://((?:cas|crm|directory|emailselfdefense|my|static|status|u|www)\.)?fsf\.org/ + to + https://$1fsf.org/ + + + from + ^http://donate\.fsf\.org/ + to + https://my.fsf.org/donate/ + + + from + ^http://patron\.fsf\.org/ + to + https://www.fsf.org/patrons + + + from + ^http://shop\.fsf\.org/(faq/$|jf$|static/|termsofsale/$) + to + https://shop.fsf.org/$1 + + + from + ^http://bugs\.gnewsense\.org/(?:.*) + to + https://savannah.nongnu.org/bugs/?group=gnewsense + + + from + ^http://(lists|savannah)\.nongnu\.org/ + to + https://$1.nongnu.org/ + + + securecookie + + host + ^(\.crm|my|status)\.fsf\.org$ + name + .* + + target + + + host + fsf.org + + + host + *.fsf.org + + + host + bugs.gnewsense.org + + + host + *.nongnu.org + + + + + Free Speech.org + + ruleset + + name + Free Speech.org + rule + + from + ^http://(www\.)?freespeech\.org/ + to + https://$1freespeech.org/ + + target + + + host + freespeech.org + + + host + www.freespeech.org + + + + + Free practice tests.org + + ruleset + + name + Free practice tests.org + rule + + from + ^http://(www\.)?freepracticetests\.org/ + to + https://$1freepracticetests.org/ + + target + + + host + freepracticetests.org + + + host + www.freepracticetests.org + + + + + Free-TV-Video-Online.me + + ruleset + + name + Free-TV-Video-Online.me + rule + + from + ^http://(www\.)?free-tv-video-online\.me/ + to + https://$1free-tv-video-online.me/ + + securecookie + + host + ^\.free-tv-video-online\.me$ + name + .+ + + target + + + host + free-tv-video-online.me + + + host + *.free-tv-video-online.me + + + + + FreeBSD (partial) + + ruleset + + name + FreeBSD (partial) + rule + + + from + ^http://(www\.)?freebsd\.org/ + to + https://$1freebsd.org/ + + + from + ^http://(admbugs|bugs|forums|lists|people|svnweb|wiki)\.freebsd\.org/ + to + https://$1.freebsd.org/ + + + from + ^http://security\.freebsd\.org/ + to + https://www.freebsd.org/security/ + + + from + ^http://svn\.freebsd\.org/ + to + https://svnweb.freebsd.org/ + + + securecookie + + host + ^(?:admbug|\.bug|forum)s\.freebsd\.org$ + name + .+ + + target + + + host + freebsd.org + + + host + *.freebsd.org + + + + + FreeBSD Foundation.org + + ruleset + + name + FreeBSD Foundation.org + rule + + from + ^http://(www\.)?freebsdfoundation\.org/ + to + https://$1freebsdfoundation.org/ + + securecookie + + host + ^(?:www\.)?freebsdfoundation\.org$ + name + .+ + + target + + + host + freebsdfoundation.org + + + host + www.freebsdfoundation.org + + + + + FreeBSoft.org (partial) + + ruleset + + name + FreeBSoft.org (partial) + rule + + from + ^http://(i|lis)ts\.freebsoft\.org/ + to + https://$1ts.freebsoft.org/ + + target + + host + *.freebsoft.org + + + + FreeDNS.Afraid.org + + ruleset + + name + FreeDNS.Afraid.org + rule + + from + ^http://freedns\.afraid\.org/ + to + https://freedns.afraid.org/ + + target + + host + freedns.afraid.org + + + + FreeFind + + ruleset + + name + FreeFind + rule + + + from + ^http(?:://(?:www\.)?|s://)freefind\.com/ + to + https://www.freefind.com/ + + + from + ^http://(control|search)\.freefind\.com/ + to + https://$1.freefind.com/ + + + securecookie + + host + ^(?:control|search|www)\.freefind\.com$ + name + .+ + + target + + + host + freefind.com + + + host + *.freefind.com + + + + + FreeScoreNation.com + + ruleset + + name + FreeScoreNation.com + rule + + from + ^http://(www\.)?freescorenation\.com/ + to + https://$1freescorenation.com/ + + securecookie + + host + ^(?:\.|www\.)?freescorenation\.com$ + name + .+ + + target + + + host + freescorenation.com + + + host + *.freescorenation.com + + + + + FreeUnlocks.com + + ruleset + + name + FreeUnlocks.com + rule + + from + ^http://(www\.)?freeunlocks\.com/ + to + https://$1freeunlocks.com/ + + securecookie + + host + ^(?:www)?\.freeunlocks\.com$ + name + .+ + + target + + + host + freeunlocks.com + + + host + *.freeunlocks.com + + + + + FreeWheel (partial) + + ruleset + + name + FreeWheel (partial) + rule + + + from + ^http://mrm\.freewheel\.tv/ + to + https://mrm.freewhell.tv/ + + + from + ^http://2(912a|df7d)\.v\.fwmrm\.net/ + to + https://2$1.v.fwmrm.net/ + + + securecookie + + + host + ^.*\.fwmrm\.net$ + name + .+ + + + host + ^mrm\.freewheel\.tv$ + name + .+ + + + target + + + host + mrm.freewheel.tv + + + host + *.fwmrm.net + + + host + 2912a.v.fwmrm.net + + + + + Freebase (partial) + + ruleset + + name + Freebase (partial) + rule + + + from + ^https?://(?:www\.)?freebase\.com/ + to + https://www.freebase.com/ + + + from + ^http://(api|res|static)\.freebase\.com/ + to + https://$1.freebase.com/ + + + from + ^https?://freebaselibs\.com/ + to + https://static.freebase.com/ + + + securecookie + + host + ^.*\.freebase\.com$ + name + .* + + target + + + host + freebase.com + + + host + *.freebase.com + + + host + freebaselibs.com + + + + + Freecause + + ruleset + + name + Freecause + rule + + from + ^http://(www\.)?freecause\.com/ + to + https://freecause/ + + target + + + host + freecause.com + + + host + *.freecause.com + + + + + Freecode (partial) + + ruleset + + name + Freecode (partial) + rule + + from + ^http://(?:www\.)?freecode\.com/(avatars|images|password_resets|screenshots|session|user)/ + to + https://freecode.com/$1/ + + target + + + host + freecode.com + + + host + www.freecode.com + + + + + Freecycle (partial) + + ruleset + + name + Freecycle (partial) + rule + + from + ^http://(butler|(web)?mail)\.freecycle\.org/ + to + https://$1.freecycle.org/ + + securecookie + + host + ^(web)?mail\.freecycle\.org$ + name + .* + + target + + host + *.freecycle.org + + + + Freedom Online Coalition.com + + ruleset + + name + Freedom Online Coalition.com + rule + + from + ^http://(www\.)?freedomonlinecoalition\.com/ + to + https://$1freedomonlinecoalition.com/ + + target + + + host + freedomonlinecoalition.com + + + host + www.freedomonlinecoalition.com + + + + + Freedom from Religion Foundation (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ffrf\.org/news/radio(?:$|\?|/) + + name + Freedom from Religion Foundation (partial) + rule + + from + ^http://(www\.)?ffrf\.org/ + to + https://$1ffrf.org/ + + securecookie + + host + ^\.?ffrf\.org$ + name + .+ + + target + + + host + ffrf.org + + + host + *.ffrf.org + + + + + Freedom not Fear.org + + ruleset + + name + Freedom not Fear.org + rule + + from + ^http://(www\.)?freedomnotfear\.org/ + to + https://$1freedomnotfear.org/ + + target + + + host + freedomnotfear.org + + + host + www.freedomnotfear.org + + + + + Freedom of the Press Foundation + + ruleset + + name + Freedom of the Press Foundation + rule + + from + ^http://(analytics\.|www\.)?pressfreedomfoundation\.org/ + to + https://$1pressfreedomfoundation.org/ + + securecookie + + host + ^\.pressfreedomfoundation\.org$ + name + .+ + + target + + + host + pressfreedomfoundation.org + + + host + *.pressfreedomfoundation.org + + + + + Freedom to Tinker + + ruleset + + name + Freedom to Tinker + rule + + from + ^http://(www\.)?freedom-to-tinker\.com/ + to + https://$1freedom-to-tinker.com/ + + securecookie + + host + ^(?:.*\.)?freedom-to-tinker.com$ + name + .+ + + target + + + host + freedom-to-tinker.com + + + host + www.freedom-to-tinker.com + + + + + FreedomPop.com (partial) + + ruleset + + name + FreedomPop.com (partial) + rule + + from + ^http://(www\.)?freedompop\.com/ + to + https://$1freedompop.com/ + + securecookie + + host + ^(?:www)?\.freedompop\.com$ + name + .+ + + target + + + host + freedompop.com + + + host + *.freedompop.com + + + + + Freedombox Foundation + + ruleset + + name + Freedombox Foundation + platform + mixedcontent + rule + + from + ^http://(?:www\.)?freedomboxfoundation\.org/ + to + https://www.freedomboxfoundation.org/ + + target + + + host + freedomboxfoundation.org + + + host + www.freedomboxfoundation.org + + + + + Freelancer + + ruleset + + name + Freelancer + rule + + from + ^http://(cdn\d+\.|www\.)?freelancer\.co(m|\.uk)/ + to + https://$1freelancer.co$2/ + + securecookie + + host + ^(.*\.)?freelancer\.co(m|\.uk)$ + name + .* + + target + + + host + freelancer.com + + + host + *.freelancer.com + + + host + *.www.freelancer.com + + + host + freelancer.co.uk + + + host + *.freelancer.co.uk + + + host + *.www.freelancer.co.uk + + + + + Freelansim.ru (partial) + + ruleset + + name + Freelansim.ru (partial) + rule + + from + ^http://(?:www\.)?freelansim\.ru/(?=assets/|favicon\.ico|favicon\.png) + to + https://freelansim.ru/ + + target + + + host + freelansim.ru + + + host + www.freelansim.ru + + + + + Freemailer.ch + + ruleset + + name + Freemailer.ch + rule + + from + ^http://(www\.)?freemailer\.ch/ + to + https://$1freemailer.ch/ + + target + + + host + freemailer.ch + + + host + www.freemailer.ch + + + + + Freenet + + ruleset + + name + Freenet + rule + + from + ^http://((?:bugs|checksums|downloads|emu|(?:new-|old-)?wiki|www)\.)?freenetproject\.org/ + to + https://freenetproject.org/ + + securecookie + + host + ^.*\.freenetproject\.org$ + name + .* + + target + + + host + freenetproject.org + + + host + *.freenetproject.org + + + + + Freescale.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?freescale\.com/(?!favicon\.ico|files/|(?:idp|ruhp|security|webapp)(?:$|[?/])|js/|recommendation/|shared/) + + name + Freescale.com (partial) + rule + + + from + ^http://(?:www\.)?freescale\.com/ + to + https://www.freescale.com/ + + + from + ^http://cache(-uat)?\.freescale\.com/ + to + https://cache$1.freescale.com/ + + + from + ^http://(community(?:-cache)?(?:-uat)?|apps\.community(?:-uat)?|fdc|(?:imag|styl)es(?:-uat)?)\.freescale\.com/ + to + https://$1.freescale.com/ + + + from + ^http://investors\.freescale\.com/(client|WebSideStory)/ + to + https://a248.e.akamai.net/f/121/103/5m/investors.freescale.com/$1/ + + + securecookie + + host + ^(?!www\.).+\.freescale\.com$ + name + .+ + + target + + + host + freescale.com + + + host + *.freescale.com + + + + + Freie Arbeiterinnen- und Arbeiter-Union (FAU) (CAcert) + + ruleset + + name + Freie Arbeiterinnen- und Arbeiter-Union (FAU) (CAcert) + platform + cacert mixedcontent + rule + + from + ^http://(?:www\.)?fau\.org/ + to + https://www.fau.org/ + + target + + + host + www.fau.org + + + host + fau.org + + + + + Freie Universität Berlin (partial) + + ruleset + + name + Freie Universität Berlin (partial) + rule + + from + ^http://doku\.spline\.inf\.fu-berlin\.de/ + to + https://doku.spline.inf.fu-berlin.de/ + + target + + host + doku.spline.inf.fu-berlin.de + + + + FrenchTV.to + + ruleset + + name + FrenchTV.to + rule + + from + ^http://(www\.)?frenchtv\.to/ + to + https://$1frenchtv.to/ + + target + + + host + frenchtv.to + + + host + www.frenchtv.to + + + + + FrenchTouch.pro + + ruleset + + name + FrenchTouch.pro + rule + + from + ^http://(?:www\.)?frenchtouch\.pro/ + to + https://frenchtouch.pro/ + + securecookie + + host + ^frenchtouch\.pro$ + name + .+ + + target + + + host + frenchtouch.pro + + + host + www.frenchtouch.pro + + + + + Frequentis.com (false MCB) + + ruleset + + name + Frequentis.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.frequentis\.com/(?!favicon\.ico|fileadmin/|typo3temp/) + to + https://www.frequentis.com/ + + securecookie + + host + ^www.frequentis\.com$ + name + .+ + + target + + host + www.frequentis.com + + + + Frequentis.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.frequentis\.com/+(?!favicon\.ico|fileadmin/|typo3temp/) + + name + Frequentis.com (partial) + rule + + from + ^http://(www\.)?frequentis\.com/ + to + https://$1frequentis.com/ + + securecookie + + host + ^\.frequentis\.com$ + name + ^s_\w+$ + + target + + + host + frequentis.com + + + host + *.frequentis.com + + + + + Fresh-hotel.org + + ruleset + + name + Fresh-hotel.org + rule + + from + ^http://(www\.)?fresh-hotel\.org/ + to + https://$1fresh-hotel.org/ + + securecookie + + host + ^(?:w*\.)?fresh-hotel\.org$ + name + .+ + + target + + + host + fresh-hotel.org + + + host + *.fresh-hotel.org + + + + + FreshBSD.org + + ruleset + + name + FreshBSD.org + rule + + from + ^http://(?:(secure\.)|www\.)?freshbsd\.org/ + to + https://$1freshbsd.org/ + + target + + + host + freshbsd.org + + + host + *.freshbsd.org + + + + + FreshBooks (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?freshbooks\.com/(?!cache/|images/|javascript/|styles/) + + + pattern + ^http://(?:community|developers)\. + + + name + FreshBooks (partial) + rule + + + from + ^http://(www\.)?fb-assets\.com/ + to + https://$1fb-assets.com/ + + + from + ^http://([\w-]+\.)?freshbooks\.com/ + to + https://$1freshbooks.com/ + + + securecookie + + host + ^(?!www\.).+\.freshbooks\.com$ + name + .+ + + target + + + host + fb-assets.com + + + host + www.fb-assets.com + + + host + freshbooks.com + + + host + *.freshbooks.com + + + + + Freshdesk (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|www)\. + + name + Freshdesk (partial) + rule + + + from + ^http://assets\.freshdesk\.com/ + to + https://s3.amazonaws.com/assets.freshdesk.com/ + + + from + ^http://cdn\.freshdesk\.com/ + to + https://s3.amazonaws.com/cdn.freshdesk.com/ + + + from + ^http://static[1-5]?\.freshdesk\.com/ + to + https://d3o14s01j0qbic.cloudfront.net/ + + + from + ^http://([\w-]+)\.freshdesk\.com/ + to + https://$1.freshdesk.com/ + + + target + + host + *.freshdesk.com + + + + Freshmilk.tv (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?freshmilk\.tv/+(?!media/|static/) + + name + Freshmilk.tv (partial) + rule + + from + ^http://(?:hub\.|www\.)?freshmilk\.tv/ + to + https://hub.freshmilk.tv/ + + target + + + host + freshmilk.tv + + + host + *.freshmilk.tv + + + + + Freshports.org + + ruleset + + name + Freshports.org + rule + + from + ^http://(www\.)?freshports\.org/ + to + https://$1freshports.org/ + + securecookie + + host + ^\.freshports\.org$ + name + .+ + + target + + + host + freshports.org + + + host + *.freshports.org + + + + + FriBID.se + + ruleset + + name + FriBID.se + rule + + + from + ^http://fribid\.se/ + to + https://fribid.se/ + + + from + ^http://www\.fribid\.se/ + to + https://www.fribid.se/ + + + target + + + host + fribid.se + + + host + www.fribid.se + + + + + Frictional Games (partial) + + ruleset + + name + Frictional Games (partial) + rule + + from + ^http://(shelf\.|www\.)?frictionalgames\.com/ + to + https://$1frictionalgames.com/ + + securecookie + + host + ^(.*\.)?frictionalgames\.com$ + name + .* + + target + + + host + frictionalgames.com + + + host + *.frictionalgames.com + + + + + Fridge + + ruleset + + name + Fridge + rule + + from + ^http://(?:www\.)?frid\.ge/ + to + https://frid.ge/ + + securecookie + + host + ^(.+\.)?frid\.ge$ + name + .* + + target + + + host + frid.ge + + + host + www.frid.ge + + + + + Friedhoff.org + + ruleset + + name + Friedhoff.org + rule + + from + ^http://(?:www\.)?friedhoff\.org/ + to + https://friedhoff.org/ + + target + + + host + friedhoff.org + + + host + www.friedhoff.org + + + + + FriendFinder + + ruleset + + name + FriendFinder + rule + + + from + ^https?://(?:secure\.|www\.)?(?:friendfinder|pop6)\.com/ + to + https://secure.friendfinder.com/ + + + from + ^https?://(?:graphics|photos|piclist|secureimage)\.(?:friendfinder|pop6|securedataimages)\.com/ + to + https://secureimage.securedataimages.com/ + + + securecookie + + host + ^\.friendfinder\.com$ + name + .+ + + target + + + host + friendfinder.com + + + host + *.friendfinder.com + + + host + pop6.com + + + host + *.pop6.com + + + host + secureimage.securedataimages.com + + + + + Friendfeed + + ruleset + + name + Friendfeed + rule + + + from + ^http://(?:www\.)?friendfeed(?:-media)?\.com/ + to + https://friendfeed.com/ + + + from + ^http://blog\.friendfeed\.com/favicon\.ico + to + https://www.blogger.com/favicon.ico + + + from + ^http://(?:m\.)?friendfeed-media\.com/ + to + https://dp8iegxu665q2.cloudfront.net/ + + + securecookie + + + host + ^\.friendfeed\.com$ + name + ^AT$ + + + host + ^friendfeed-media\.com$ + name + .* + + + target + + + host + friendfeed.com + + + host + *.friendfeed.com + + + host + friendfeed-media.com + + + host + m.friendfeed-media.com + + + + + Friendly Bracelets.com (partial) + + ruleset + + name + Friendly Bracelets.com (partial) + rule + + from + ^http://(www\.)?friendlybracelets\.com/ + to + https://$1friendlybracelets.com/ + + target + + + host + friendlybracelets.com + + + host + www.friendlybracelets.com + + + + + Friends of WikiLeaks + + ruleset + + name + Friends of WikiLeaks + rule + + from + ^http://(?:www\.)?wlfriends\.org/ + to + https://wlfriends.org/ + + securecookie + + host + ^wlfriends\.org$ + name + .+ + + target + + + host + wlfriends.org + + + host + www.wlfriends.org + + + + + Friendster (partial) + + ruleset + + name + Friendster (partial) + rule + + + from + ^http://(www\.)?friendster\.com/assets/ + to + https://$1friendster.com/assets/ + + + from + ^http://assets0\.frndcdn\.net/ + to + https://d3outgkpos8q21.cloudfront.net/ + + + target + + + host + friendster.com + + + host + www.friendster.com + + + host + assets0.frndcdn.net + + + + + Friesland Bank.nl (partial) + + ruleset + + name + Friesland Bank.nl (partial) + rule + + from + ^http://(forms|internetbankieren)\.frieslandbank\.nl/ + to + https://$1.frieslandbank.nl/ + + securecookie + + host + ^(?:forms|internetbankieren)\.frieslandbank\.nl$ + name + .+ + + target + + host + *.frieslandbank.nl + + + + Frontier Network and Computing Systems + + ruleset + + name + Frontier Network and Computing Systems + rule + + from + ^http://(?:www\.)?fcns\.eu/ + to + https://fcns.eu/ + + securecookie + + host + ^fcns\.eu$ + name + .+ + + target + + + host + fcns.eu + + + host + *.fcns.eu + + + + + Frontier.co.uk (partial) + + ruleset + + name + Frontier.co.uk (partial) + rule + + from + ^http://((?:elite|kinectimals|lostwinds|www)\.)?frontier\.co\.uk/ + to + https://$1frontier.co.uk/ + + securecookie + + host + ^(?:(?:elite|kinectimals|lostwinds|www)\.)?frontier\.co\.uk$ + name + .+ + + target + + + host + frontier.co.uk + + + host + *.frontier.co.uk + + + + + Frontiers (partial) + + ruleset + + name + Frontiers (partial) + rule + + from + ^http://(?:www\.)?frontiersin\.org/((?:Design/(?:cs|[iI]mage|j)|file)s/|(?:Script|Web)Resource\.axd) + to + https://www.frontiersin.org/$1 + + target + + + host + frontiersin.org + + + host + www.frontiersin.org + + + + + Frontline Defenders + + ruleset + + name + Frontline Defenders + rule + + from + ^http://(www\.)?frontlinedefenders\.org/ + to + https://$1frontlinedefenders.org/ + + securecookie + + host + ^(?:w*\.)?frontlinedefenders\.org$ + name + .+ + + target + + + host + *.frontlinedefenders.org + + + host + frontlinedefenders.org + + + + + Frooition Software (partial) + + ruleset + + name + Frooition Software (partial) + rule + + from + ^http://(freedom|my|secure)\.frooition\.com/ + to + https://$1.frooition.com/ + + target + + host + *.frooition.com + + + + FrostWire (partial) + + ruleset + + name + FrostWire (partial) + rule + + from + ^http://static\.frostwire\.com/ + to + https://s3.amazonaws.com/static.frostwire.com/ + + target + + host + static.frostwire.com + + + + Frozen Yoghurt Franchise + + ruleset + + name + Frozen Yoghurt Franchise + rule + + from + ^http://(www\.)?frozen-yogurt-franchise\.org/ + to + https://$1frozen-yogurt-franchise.org/ + + securecookie + + host + ^\.frozen-yogurt-franchise.org$ + name + .+ + + target + + + host + frozen-yogurt-franchise.org + + + host + *.frozen-yogurt-franchise.org + + + + + FrozenCPU.com + + ruleset + + name + FrozenCPU.com + rule + + from + ^http://(www\.)?frozencpu\.com/ + to + https://$1frozencpu.com/ + + securecookie + + host + ^\.www\.frozencpu\.com$ + name + .+ + + target + + + host + frozencpu.com + + + host + *.frozencpu.com + + + + + Fruit Ninja (partial) + + ruleset + + name + Fruit Ninja (partial) + rule + + from + ^http://store\.fruitninja\.com/ + to + https://store.fruitninja.com/ + + securecookie + + host + ^store\.fruitninja\.com$ + name + .+ + + target + + host + store.fruitninja.com + + + + Frys (partial) + + ruleset + + name + Frys (partial) + rule + + + from + ^https?://images\.frys\.com/ + to + https://frys.hs.llnwd.net/e1/ + + + from + ^http://shop([1-6])\.frys\.com/ + to + https://shop$1.frys.com/ + + + securecookie + + host + ^.*\.frys\.com$ + name + .* + + target + + host + *.frys.com + + + + Fshare.vn + + ruleset + + name + Fshare.vn + rule + + from + ^http://(www\.)?fshare\.vn/ + to + https://$1fshare.vn/ + + securecookie + + host + ^(?:www)?\.fshare\.vn$ + name + .+ + + target + + + host + fshare.vn + + + host + *.fshare.vn + + + + + Fstoppers.com + + ruleset + + name + Fstoppers.com + rule + + from + ^http://(www\.)?fstoppers\.com/ + to + https://$1fstoppers.com/ + + securecookie + + host + ^(?:www\.)?fstoppers\.com$ + name + .+ + + target + + + host + fstoppers.com + + + host + www.fstoppers.com + + + + + Fuel Economy + + ruleset + + name + Fuel Economy + rule + + from + ^https?://(?:www\.)?fueleconomy\.gov/ + to + https://www.fueleconomy.gov/ + + securecookie + + host + ^www\.fueleconomy\.gov$ + name + .+ + + target + + + host + fueleconomy.gov + + + host + www.fueleconomy.gov + + + + + Fuerza Popular (partial) + + ruleset + + name + Fuerza Popular (partial) + rule + + from + ^http://(?:fuerzapopularpe\.keikoperu\.com|(?:www\.)?fuerzapopular\.pe)/(banner/|favicon\.ico|wp-content/) + to + https://secure.bluehost.com/~keikoper/fuerzapopular.pe/$1 + + target + + + host + fuerzapopularpe.keikoperu.com + + + host + fuerzapopular.pe + + + host + www.fuerzapopular.pe + + + + + Fujitsu (partial) + + ruleset + + exclusion + + pattern + ^http://(img\.)?jp\.fujitsu\.com/imgv4/jp/ + + name + Fujitsu (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?fmworld\.net/ + to + https://www.fmworld.net/ + + + from + ^http://azby\.fmworld\.net/ + to + https://azby.fmworld.net/ + + + from + ^https?://img\.jp\.fujitsu\.com/ + to + https://jp.fujitsu.com/ + + + from + ^http://jp\.fujitsu\.com/(cgi-bin|cssv4|imgv[34])/ + to + https://jp.fujitsu.com/$1/ + + + from + ^https?://(?:www\.)?fujitsu-webmart\.com/ + to + https://www.fujitsu-webmart.com/ + + + securecookie + + + host + ^.*\.fmworld\.net$ + name + .* + + + host + ^.*\.fujitsu-webmart\.com$ + name + .* + + + target + + + host + fmworld.net + + + host + *.fmworld.net + + + host + jp.fujitsu.com + + + host + img.jp.fujitsu.com + + + host + fujitsu-webmart.com + + + host + www.fujitsu-webmart.com + + + host + *.www.fujitsu-webmart.com + + + + + Fukuchi.org + + ruleset + + name + Fukuchi.org + rule + + from + ^http://(?:www\.)?fukuchi\.org/ + to + https://fukuchi.org/ + + target + + + host + fukuchi.org + + + host + www.fukuchi.org + + + + + Fulcrum Biometrics + + ruleset + + name + Fulcrum Biometrics + rule + + from + ^http://(www\.)?fulcrumbiometrics\.com/ + to + https://$1fulcrumbiometrics.com/ + + securecookie + + host + ^(?:www\.)?fulcrumbiometrics\.com$ + name + .+ + + target + + + host + fulcrumbiometrics.com + + + host + www.fulcrumbiometrics.com + + + + + Full Circle Studies (partial) + + ruleset + + name + Full Circle Studies (partial) + rule + + from + ^http://(?:www\.)?fullcirclestudies\.com/ + to + https://www.fullcirclestudies.com/ + + securecookie + + host + ^(.*\.)?fullcirclestudies\.com$ + name + .* + + target + + + host + fullcirclestudies.com + + + host + www.fullcirclestudies.com + + + + + FullTraffic (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?fulltraffic\.net/(?!(?:cart|create_account|login)(?:$|\?)) + + name + FullTraffic (partial) + rule + + from + ^http://(static\.|www\.)?fulltraffic\.net/ + to + https://$1fulltraffic.net/ + + target + + + host + fulltraffic.net + + + host + *.fulltraffic.net + + + + + Fullerton.edu (partial) + + ruleset + + name + Fullerton.edu (partial) + rule + + + from + ^http://((?:(?:www\.)?business|calstate|csuftraining|diversity|ehis|ehs|exchange|finance|giving|hr|(?:www\.)?library|my|parking|police|pp|riskmanagement|training|vpait|www)\.)?fullerton\.edu/ + to + https://$1fullerton.edu/ + + + from + ^http://rmehs\.fullerton\.edu/ + to + https://ehis.fullerton.edu/ + + + securecookie + + host + ^(?:(?:calstate|diversity|ehis|ehs|exchange|finance|hr|my|parking|police|riskmanagement|training|vpait|www)\.)?fullerton\.edu$ + name + .+ + + target + + + host + fullerton.edu + + + host + *.fullerton.edu + + + + + Fullrate (partial) + + ruleset + + name + Fullrate (partial) + rule + + from + ^http://(www\.)?fullrate\.dk/ + to + https://$1fullrate.dk/ + + securecookie + + host + ^www\.fullrate\.dk$ + name + .+ + + target + + + host + fullrate.dk + + + host + www.fullrate.dk + + + + + FundFill.com + + ruleset + + name + FundFill.com + rule + + from + ^http://(www\.)?fundfill\.com/ + to + https://$1fundfill.com/ + + securecookie + + host + ^www\.fundfill\.com$ + name + .+ + + target + + + host + fundfill.com + + + host + www.fundfill.com + + + + + FundRazr.com (partial) + + ruleset + + name + FundRazr.com (partial) + rule + + + from + ^http://(poweredby\.|www\.)?fundrazr\.com/ + to + https://$1fundrazr.com/ + + + from + ^http://support\.fundrazr\.com/favicon\.ico + to + https://fundrazr.zendesk.com/favicon.ico + + + securecookie + + host + ^(?:www\.)?fundrazr\.com$ + name + .+ + + target + + + host + fundrazr.com + + + host + *.fundrazr.com + + + + + FundaGeek (partial) + + ruleset + + name + FundaGeek (partial) + rule + + from + ^http://(mail\.|www\.)?fundageek\.com/ + to + https://$1fundageek.com/ + + securecookie + + host + ^(mail|www)\.fundageek\.com$ + name + .* + + target + + host + *.fundageek.com + + + + Fundacion Televisa.org (false MCB) + + ruleset + + name + Fundacion Televisa.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?fundaciontelevisa\.org/ + to + https://$1fundaciontelevisa.org/ + + securecookie + + host + ^\.fundaciontelevisa\.org$ + name + .+ + + target + + + host + fundaciontelevisa.org + + + host + *.fundaciontelevisa.org + + + + + Funky Android.com + + ruleset + + name + Funky Android.com + rule + + from + ^http://(?:www\.)?funkyandroid\.com/ + to + https://funkyandroid.com/ + + target + + + host + funkyandroid.com + + + host + www.funkyandroid.com + + + + + Funtoo.org (partial) + + ruleset + + name + Funtoo.org (partial) + rule + + from + ^http://bugs\.funtoo\.org/ + to + https://bugs.funtoo.org/ + + target + + host + bugs.funtoo.org + + + + Furaffinity (partial) + + ruleset + + name + Furaffinity (partial) + rule + + + from + ^http://(d|t)\.facdn\.net/ + to + https://$1.facdn.net/ + + + from + ^http://((?:forums|ox|sfw|www)\.)?furaffinity\.net/ + to + https://$1furaffinity.net/ + + + securecookie + + host + ^(?:forums|ox|sfw|www)?\.furaffinity\.net$ + name + .+ + + target + + + host + *.facdn.net + + + host + furaffinity.net + + + host + *.furaffinity.net + + + + + Further + + ruleset + + name + Further + rule + + from + ^https?://(?:www\.)?further\.co\.uk/ + to + https://www.further.co.uk/ + + securecookie + + host + ^(?:www)?\.further\.co\.uk$ + name + .+ + + target + + + host + further.co.uk + + + host + *.further.co.uk + + + + + Fused + + ruleset + + name + Fused + rule + + from + ^http://((?:clients|s\d+|soapbox|support|www)\.)?fused\.com/ + to + https://$1fused.com/ + + securecookie + + host + ^(?:clients|support)\.fused\.com$ + name + .+ + + target + + + host + fused.com + + + host + *.fused.com + + + + + FusionForge + + ruleset + + name + FusionForge + rule + + from + ^http://(www\.)?fusionforge\.org/ + to + https://$1fusionforge.org/ + + securecookie + + host + ^(.*\.)?fusionforge.org$ + name + .* + + target + + + host + fusionforge.org + + + host + *.fusionforge.org + + + + + FusionIO + + ruleset + + name + FusionIO + rule + + from + ^http://((?:quote|support|(?:web)?mail|www)\.)?fusionio\.com/ + to + https://$1fusionio.com/ + + securecookie + + host + ^(.*\.)?fusionio\.com$ + name + .* + + target + + + host + fusionio.com + + + host + *.fusionio.com + + + + + FusionNet + + ruleset + + name + FusionNet + platform + mixedcontent + rule + + + from + ^http://fusion-net\.co\.uk/ + to + https://fusion-net.co.uk/ + + + from + ^http://www\.fusion-net\.co\.uk/ + to + https://www.fusion-net.co.uk/ + + + securecookie + + host + ^(.+\.)?fusion-net.co.uk$ + name + .* + + target + + + host + fusion-net.co.uk + + + host + www.fusion-net.co.uk + + + + + Fuskator.com + + ruleset + + name + Fuskator.com + platform + cacert + rule + + from + ^http://((?:i1|imgsrv|www)\.)?fuskator\.com/ + to + https://$1fuskator.com/ + + securecookie + + host + ^(?:(?:i1|imgsrv|www)\.)?fuskator\.com$ + name + .+ + + target + + + host + fuskator.com + + + host + *.fuskator.com + + + + + Future Publishing (partial) + + ruleset + + name + Future Publishing (partial) + rule + + + from + ^http://(?:www\.)?computerandvideogames\.com/(reg|templates)/ + to + https://www.computerandvideogames.com/$1/ + + + from + ^http://(?:cdn\.)?static\.computerandvideogames\.com/ + to + https://www.computerandvideogames.com/templates/ + + + target + + + host + computerandvideogames.com + + + host + *.computerandvideogames.com + + + + + FutureLearn.com + + ruleset + + name + FutureLearn.com + rule + + from + ^http://(ugc\.|www\.)?futurelearn\.com/ + to + https://$1futurelearn.com/ + + securecookie + + host + ^(?:www)?\.futurelearn\.com$ + name + .+ + + target + + + host + futurelearn.com + + + host + *.futurelearn.com + + + + + FutureQuest (partial) + + ruleset + + name + FutureQuest (partial) + rule + + + from + ^http://(www\.)?se(cur|rvic)e\.futurequest\.net/ + to + https://$1se$2e.futurequest.net/ + + + from + ^https?://(?:www\.)?questadmin\.net/(?:$|\?.*) + to + https://secure.questadmin.net/cgi-ssl/mgr.py/login + + + from + ^http://secure\.questadmin\.net/ + to + https://secure.questadmin.net/ + + + securecookie + + host + ^(?:www\.)?se(?:cur|rvic)e\.(?:futurequest|questadmin)\.net$ + name + .+ + + target + + + host + *.futurequest.net + + + host + www.service.futurequest.net + + + host + questadmin.net + + + host + *.questadmin.net + + + + + Futurity.org + + ruleset + + name + Futurity.org + rule + + from + ^http://(?:www\.)?futurity\.org/ + to + https://www.futurity.org/ + + target + + + host + futurity.org + + + host + www.futurity.org + + + + + Fuzzing-Project.org + + ruleset + + name + Fuzzing-Project.org + rule + + from + ^http://(www\.)?fuzzing-project\.org/ + to + https://$1fuzzing-project.org/ + + target + + + host + fuzzing-project.org + + + host + www.fuzzing-project.org + + + + + G Central + + ruleset + + name + G Central + rule + + from + ^http://(www\.)?gcentral\.biz/ + to + https://$1gcentral.biz/ + + target + + + host + gcentral.biz + + + host + www.gcentral.biz + + + + + G Data Software (partial) + + ruleset + + name + G Data Software (partial) + rule + + + from + ^http://(?:www\.)?gdata\.(at|be|ch|de|es|fr|it|nl|pt)/ + to + https://www.gdata.$1/ + + + from + ^http://(?:www\.)?gdatasoftware\.be/ + to + https://www.gdata.be/ + + + from + ^https?://(?:www\.)?gdata\.co\.jp/ + to + https://jp.gdatasoftware.com/ + + + from + ^http://(static\.|www\.)?gdata\.pl/ + to + https://$1gdata.pl/ + + + from + ^http://(?:www\.)?gdatasoftware\.co\.uk/ + to + https://www.gdatasoftware.co.uk/ + + + from + ^http://((?:br|jp|public|ru|static|statistic|tr|www)\.)?gdatasoftware\.com/ + to + https://$1gdatasoftware.com/ + + + from + ^http://(?:www\.)?gdata-software\.com/ + to + https://www.gdata-software.com/ + + + from + ^http://(?:www\.)?gdatasoftware\.com\.br/ + to + https://br.gdatasoftware.com/ + + + from + ^http://(?:www\.)?gdatasoftware\.in/ + to + https://in.gdatasoftware.com/ + + + securecookie + + + host + ^www\.gdata\.(?:at|be|ch|de|es|fr|it|nl|pt)$ + name + .+ + + + host + ^\.www\.gdata\.pl$ + name + .+ + + + host + ^www\.gdatasoftware\.co\.uk$ + name + .+ + + + host + ^(?:br|in|jp|ru|tr|www)\.gdatasoftware\.com$ + name + .+ + + + host + ^www\.gdata-software\.com$ + name + .+ + + + target + + + host + gdata.* + + + host + www.gdata.* + + + host + gdata.co.jp + + + host + www.gdata.co.jp + + + host + *.gdata.pl + + + host + gdatasoftware.* + + + host + www.gdatasoftware.* + + + host + gdatasoftware.co.uk + + + host + www.gdatasoftware.co.uk + + + host + *.gdatasoftware.com + + + host + gdata-software.com + + + host + www.gdata-software.com + + + host + gdatasoftware.com.br + + + host + www.gdatasoftware.com.br + + + + + G5 - US Department of Education + + ruleset + + name + G5 - US Department of Education + rule + + from + ^(http://(www\.)?|https://)g5\.gov/ + to + https://www.g5.gov/ + + securecookie + + host + (^|\.)g5\.gov$ + name + .+ + + target + + + host + g5.gov + + + host + www.g5.gov + + + + + GAIA Host Collective + + ruleset + + name + GAIA Host Collective + rule + + from + ^http://((?:securehost4|securemail2|www)\.)?gaiahost\.coop/ + to + https://$1gaiahost.coop/ + + securecookie + + host + ^(?:.+\.)?gaiahost\.coop$ + name + .+ + + target + + + host + gaiahost.coop + + + host + *.gaiahost.coop + + + + + GAME.se (partial) + + ruleset + + name + GAME.se (partial) + rule + + from + ^http://secure\.game\.se/ + to + https://secure.game.se/ + + target + + host + secure.game.se + + + + GBAtemp.net + + ruleset + + name + GBAtemp.net + rule + + from + ^http://(www\.)?gbatemp\.net/ + to + https://$1gbatemp.net/ + + target + + + host + gbatemp.net + + + host + www.gbatemp.net + + + + + GCM Asia.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?gcmasia\.com/(?!favicon\.ico|_Incapsula_Resource(?:$|\?)|open-real-account(?:$|[?/])|Templates/|tools/|Uploaded/|WebResource\.axd) + + name + GCM Asia.com (partial) + rule + + from + ^http://(web\.|www\.)?gcmasia\.com/ + to + https://$1gcmasia.com/ + + target + + + host + gcmasia.com + + + host + *.gcmasia.com + + + + + GCM Computers.com + + ruleset + + name + GCM Computers.com + rule + + from + ^http://((?:cp|webmail|www)\.)?gcmcomputers\.com/ + to + https://$1gcmcomputers.com/ + + securecookie + + host + ^(?:(?:cp|\.webmail|www)\.)?gcmcomputers\.com$ + name + .+ + + target + + + host + gcmcomputers.com + + + host + *.gcmcomputers.com + + + + + GChat.com + + ruleset + + name + GChat.com + rule + + from + ^http://(www\.)?gchat\.com/ + to + https://$1gchat.com/ + + securecookie + + host + ^\.gchat\.com$ + name + .+ + + target + + + host + gchat.com + + + host + *.gchat.com + + + + + GEANT.net (partial) + + ruleset + + exclusion + + + pattern + ^http://geant3\.archive\.geant\.net/(?!_layouts/|_login/|[sS]tyle%20Library/|_trust/|WebResource\.axd) + + + pattern + ^http://www\.geant\.net/+(?!_catalogs/|_layouts/|_login/|Style%20Library/|_trust/|WebResource\.axd) + + + name + GEANT.net (partial) + rule + + from + ^http://(geant3\.archive|crowd|weblogin2|www)\.geant\.net/ + to + https://$1.geant.net/ + + securecookie + + host + ^crowd\.geant\.net$ + name + .+ + + target + + host + *.geant.net + + + + GENEVI.org (false MCB) + + ruleset + + name + GENEVI.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?genivi\.org/ + to + https://$1genivi.org/ + + target + + + host + genivi.org + + + host + www.genivi.org + + + + + GENEVI.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?genevi\.org/+(?!favicon\.ico|sites/) + + name + GENEVI.org (partial) + rule + + from + ^http://((?:bugs|projects|www)\.)?genivi\.org/ + to + https://$1genivi.org/ + + securecookie + + host + ^(?:bug|project)s\.genivi\.org$ + name + .+ + + target + + + host + genivi.org + + + host + *.genivi.org + + + + + GENI (partial) + + ruleset + + name + GENI (partial) + rule + + from + ^http://(www\.)?geni\.net/ + to + https://$1geni.net/ + + target + + + host + geni.net + + + host + www.geni.net + + + + + GFI Cloud + + ruleset + + name + GFI Cloud + rule + + from + ^http://((?:forgot|login|redirect|signup|www)\.)?gficloud\.com/ + to + https://$1gficloud.com/ + + securecookie + + host + ^www\.gficloud\.com$ + name + .+ + + target + + + host + gficloud.com + + + host + www.gficloud.com + + + + + GFI Software Development (partial) + + ruleset + + name + GFI Software Development (partial) + rule + + + from + ^http://(customers\.|www\.)?gfi\.com/ + to + https://$1gfi.com/ + + + from + ^https?://kb\.gfi\.com/partnersurvey/site/ + to + https://gfi.secure.force.com/partnersurvey/site/ + + + from + ^https?://kb\.gfi\.com/resource/ + to + https://gfi.secure.force.com/partnersurvey/resource/ + + + from + ^https?://(?:www\.)?gf(i\.nl|ihispana\.com|i-italia\.com|isoftware\.de|sfrance\.com)/ + to + https://www.gf$1/ + + + securecookie + + + host + ^(?:customers\.|www\.)?gfi\.com$ + name + .+ + + + host + ^www\.gf(?:i\.nl|ihispana\.com|i-italia\.com|isoftware\.de|sfrance\.com)$ + name + .+ + + + target + + + host + gfi.com + + + host + *.gfi.com + + + host + gfi.nl + + + host + www.gfi.nl + + + host + gfihispana.com + + + host + www.gfihispana.com + + + host + gfi-italia.com + + + host + www.gfi-italia.com + + + host + gfisoftware.de + + + host + www.gfisoftware.de + + + host + gfsfrance.com + + + host + www.gfsfrance.com + + + + + GFM Trader.com + + ruleset + + name + GFM Trader.com + rule + + from + ^http://(www\.)?gfmtrader\.com/ + to + https://$1gfmtrader.com/ + + securecookie + + host + ^(?:w*\.)?gfmtrader.com$ + name + .+ + + target + + + host + gfmtrader.com + + + host + *.gfmtrader.com + + + + + GHash.IO + + ruleset + + name + GHash.IO + rule + + from + ^http://(ws\.|www\.)?ghash\.io/ + to + https://$1ghash.io/ + + securecookie + + host + ^\.ghash\.io$ + name + .+ + + target + + + host + ghash.io + + + host + *.ghash.io + + + + + GIAC.org + + ruleset + + name + GIAC.org + rule + + from + ^http://(www\.)?giac\.org/ + to + https://$1giac.org/ + + target + + + host + giac.org + + + host + www.giac.org + + + + + GKG + + ruleset + + name + GKG + rule + + from + ^http://(?:www\.)?gkg\.net/ + to + https://www.gkg.net/ + + securecookie + + host + ^(.+\.)?gkg\.net$ + name + .* + + target + + + host + gkg.net + + + host + www.gkg.net + + + + + GLAD (Gay & Lesbian Advocates & Defenders) + + ruleset + + name + GLAD (Gay & Lesbian Advocates & Defenders) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?glad\.org/ + to + https://www.glad.org/ + + + from + ^http://([a-zA-Z0-9\-]+)\.glad\.org/ + to + https://$1.glad.org/ + + + from + ^https://glad\.org/ + to + https://www.glad.org/ + + + target + + + host + glad.org + + + host + *.glad.org + + + + + GLS Bank + + ruleset + + name + GLS Bank + rule + + + from + ^http://(www\.)?gls\.de/ + to + https://www.gls.de/ + + + from + ^http://gls\.gls-service\.de/ + to + https://gls.gls-service.de/ + + + target + + + host + www.gls.de + + + host + gls.de + + + host + gls.gls-service.de + + + + + GMO BB.jp (partial) + + ruleset + + name + GMO BB.jp (partial) + rule + + from + ^http://(file|help|ssl|webmail)\.gmobb\.jp/ + to + https://$1.gmobb.jp/ + + securecookie + + host + ^(?:file|help|webmail)\.gmobb\.jp + name + .+ + + target + + host + *.gmobb.jp + + + + GMO Cloud.com (partial) + + ruleset + + name + GMO Cloud.com (partial) + rule + + from + ^http://((?:blog|contact|home|ir|order|partner|private|private-c|shared|support|us|vps|vpsportal|www)\.)?gmocloud\.com/ + to + https://$1gmocloud.com/ + + securecookie + + host + ^(?:contact|order)\.gmocloud\.com$ + name + .+ + + target + + + host + gmocloud.com + + + host + *.gmocloud.com + + + + + GMO Cloud.us + + ruleset + + name + GMO Cloud.us + rule + + from + ^http://my\.gmocloud\.us/ + to + https://my.gmocloud.us/ + + securecookie + + host + ^my\.gmocloud\.us$ + name + .+ + + target + + host + my.gmocloud.us + + + + GMO Internet (partial) + + ruleset + + exclusion + + pattern + http://cloud\.gmo\.jp/+(?!common/|favicon\.ico|(?:\w+/)?images/|\w+/style\.css|this\.css) + + name + GMO Internet (partial) + rule + + + from + ^http://((?:cloud|mng|secure|support|www)\.)?gmo\.jp/ + to + https://$1gmo.jp/ + + + from + ^http://(?:cache\.)?img\.gmo\.jp/ + to + https://cache.img.gmo.jp/ + + + securecookie + + host + ^mng\.gmo\.jp$ + name + .+ + + target + + + host + gmo.jp + + + host + *.gmo.jp + + + + + GMO-Registry.com + + ruleset + + name + GMO-Registry.com + rule + + from + ^http://(www\.)?gmo(-)?registry\.com/ + to + https://$1gmo$2registry.com/ + + securecookie + + host + ^www\.gmoregistry\.com$ + name + .+ + + target + + + host + gmoregistry.com + + + host + www.gmoregistry.com + + + host + gmo-registry.com + + + host + www.gmo-registry.com + + + + + GMP Lib.org + + ruleset + + name + GMP Lib.org + rule + + from + ^http://(www\.)?gmplib\.org/ + to + https://$1gmplib.org/ + + target + + + host + gmplib.org + + + host + www.gmplib.org + + + + + GMX + + ruleset + + name + GMX + platform + mixedcontent + rule + + + from + ^http://(dl|hilfe|images|img|js|mailings|registrierung|sec-i0|suche)\.gmx\.net/ + to + https://$1.gmx.net/ + + + from + ^http://(?:www\.)?gmx\.(?:ca|it|se|ru)/ + to + https://www.gmx.com/ + + + from + ^http://(?:www\.)?gmx\.(at|ch|com|co\.uk|fr|net)/ + to + https://www.gmx.$1/ + + + from + ^http://(?:www\.)?gmx\.de/ + to + https://www.gmx.net/ + + + from + ^http://service\.gmx\.(com|net)/ + to + https://service.gmx.$1/ + + + from + ^http://(help|images)\.gmx\.com/ + to + https://$1.gmx.com/ + + + from + ^http://storage-file-eu\.gmx\.com/ + to + https://storage-file-eu.gmx.com/ + + + from + ^http://mobile\.gmx\.de/ + to + https://mobile.gmx.de/ + + + from + ^http://logout\.gmx\.uimserv\.net/ + to + https://logout.gmx.uimserv.net/ + + + securecookie + + + host + ^mobile\.gmx\.de$ + name + .+ + + + host + ^(?:service|\.suche|\.?www)?\.gmx\.net$ + name + .+ + + + target + + + host + gmx.* + + + host + www.gmx.* + + + host + gmx.co.uk + + + host + www.gmx.co.uk + + + host + *.gmx.com + + + host + mobile.gmx.de + + + host + *.gmx.net + + + host + logout.gmx.uimserv.net + + + + + GND-Tech.com (partial) + + ruleset + + name + GND-Tech.com (partial) + rule + + from + ^http://cdn\.gnd-tech\.com/ + to + https://s3-us-west-1.amazonaws.com/cdn.gnd-tech.com/ + + target + + host + cdn.gnd-tech.com + + + + GNOME (false MCB) + + ruleset + + name + GNOME (false MCB) + platform + mixedcontent + rule + + from + ^http://(blog|new)s\.gnome\.org/ + to + https://$1s.gnome.org/ + + target + + + host + blogs.gnome.org + + + host + news.gnome.org + + + + + GNOME (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|new)s\.gnome\.org/ + + name + GNOME (partial) + rule + + + from + ^http://((?:admin|api|blogs|bugs|bugzilla|(?:\w+\.)?bugzilla-attachments|build|cloud|developer|download|etherpad|extensions|foundation|git|glade|help|l10n|library|live|mail|mango|meetbot|nagios|news|ostree|people|planet|progress|projects|rt|static|usability|vote|webstats|wiki|www)\.)?gnome\.org/ + to + https://$1gnome.org/ + + + from + ^http://ldap\.gnome\.org/ + to + https://www.gnome.org/ + + + from + ^http://src\.gnome\.org/ + to + https://git.gnome.org/browse/ + + + from + ^http://(?:www\.)?gnomejournal\.org/ + to + https://www.gnome.org/ + + + from + ^http://(?:www\.)?gupnp\.org/ + to + https://live.gnome.org/GUPnP/ + + + securecookie + + host + ^(?:.*\.)?gnome\.org$ + name + .+ + + target + + + host + gnome.org + + + host + *.gnome.org + + + host + gnomejournal.org + + + host + www.gnomejournal.org + + + host + gupnp.org + + + host + www.gupnp.org + + + + + GNU.org (partial) + + ruleset + + name + GNU.org (partial) + rule + + + from + ^http://(?:www\.)?classpath\.org/$ + to + https://www.gnu.org/software/classpath/ + + + from + ^http://(www\.)?gnu\.org/ + to + https://$1gnu.org/ + + + from + ^http://(elpa|ftp|gcc|lists|savannah)\.gnu\.org/ + to + https://$1.gnu.org/ + + + from + ^http://mail\.gnu\.org/ + to + https://lists.gnu.org/ + + + securecookie + + host + ^gcc\.gnu\.org$ + name + .+ + + target + + + host + gnu.org + + + host + *.gnu.org + + + + + GNUnet + + ruleset + + name + GNUnet + rule + + from + ^http://(www\.)?gnunet\.org/ + to + https://$1gnunet.org/ + + securecookie + + host + ^(?:.*\.)?gnunet\.org$ + name + .+ + + target + + + host + gnunet.org + + + host + *.gnunet.org + + + + + GO Transit (partial) + + ruleset + + name + GO Transit (partial) + rule + + from + ^http://(onthegoalerts|secure\d*)\.gotransit\.com/ + to + https://$1.gotransit.com/ + + target + + host + *.gotransit.com + + + + GO.com (partial) + + ruleset + + exclusion + + pattern + ^http://a\d?\.espncdn\.com/(?:espn360|media/motion)/ + + name + GO.com (partial) + platform + mixedcontent + rule + + + from + ^http://(abc|ctologgerdev01\.analytics|(?:(?:analytics|disneyparks|disneyworld|mobile|quickquote)\.)?disney|(?:(?:broadband|games|proxy|[rs]|streak)\.)?espn|globalregsession|marvelstore|register|sw88|tredir)\.go\.com/ + to + https://$1.go.com/ + + + from + ^http://a?(home\.disney|global)\.go\.com/ + to + https://$1.go.com/ + + + from + ^http://adisneyparks\.disney\.go\.com/ + to + https://a248.e.akamai.net/f/1806/621/5m/adisneyparks.disney.go.com/ + + + from + ^http://scripts\.parksmedia\.disney\.go\.com/ + to + https://a248.e.akamai.net/f/1940/621/5m/scripts.parksmedia.disney.go.com/ + + + from + ^http://games-ak\.espn\.go\.com/(banners|img)/ + to + https://games.espn.go.com/$1/ + + + from + ^https?://g\.espncdn\.com/flb/static/ + to + https://games.espn.go.com/flb/static/ + + + from + ^http://(?:(?:a\d?|g)\.espncdn|(?:assets|avatars|games-ak)\.espn\.go)\.com/ + to + https://a248.e.akamai.net/f/12/621/5m/proxy.espn.go.com/ + + + downgrade + 1 + from + ^https://a248\.e\.akamai\.net/f/12/621/5m/proxy\.espn\.go\.com/media/motion/ + to + http://a.espncdn.com/media/motion/ + + + securecookie + + + host + ^\.go\.com$ + name + ^(?:mbox|s_pers|s_sess|s_vi)$ + + + host + ^(?:(?:\.?disneyparks|\.?disneyworld|quickquote)\.disney|(?:(?:\.games|proxy|[rs]|streak)\.)?espn)\.go\.com$ + name + .+ + + + target + + + host + a248.e.akamai.net + + + host + *.go.com + + + host + *.espncdn.com + + + + + GOG.com + + ruleset + + name + GOG.com + rule + + + from + ^http://((www|secure)\.)?gog\.com/ + to + https://secure.gog.com/ + + + from + ^http://static\.gog\.com/ + to + https://a248.e.akamai.net/f/1949/7734/9/www.gog.com/ + + + from + ^http://www\.gog\.com/(?=favicon\.ico|upload/images/|www/default/) + to + https://a248.e.akamai.net/f/1949/7734/9/www.gog.com/ + + + securecookie + + host + ^\.gog\.com$ + name + .+ + + target + + + host + gog.com + + + host + *.gog.com + + + + + GOV.UK + + ruleset + + name + GOV.UK + rule + + + from + ^http://((?:\w+\.)?blog\.|(?:online|www)\.(?:businesslink|direct)\.|assets\.digital\.cabinet-office\.|centralcontent-stage\.fco\.|www\.)?gov\.uk/ + to + https://$1gov.uk/ + + + from + ^https?://(businesslink|direct)\.gov\.uk/ + to + https://www.$1.gov.uk/ + + + securecookie + + host + ^centralcontent-stage\.fco\.gov\.uk$ + name + .+ + + target + + + host + gov.uk + + + host + *.gov.uk + + + host + *.businesslink.gov.uk + + + host + assets.digital.cabinet-office.gov.uk + + + host + www.direct.gov.uk + + + host + centralcontent-stage.fco.gov.uk + + + + + GP.se (partial) + + ruleset + + exclusion + + pattern + ^http://info\.gp\.se/(?!image_processor/|polopoly_fs/) + + name + GP.se (partial) + rule + + + from + ^http://(?:info\.|(www\.))?gp\.se/ + to + https://$1gp.se/ + + + from + ^http://sifomedia\.gp\.se/ + to + https://oasc16.247realmedia.com/ + + + target + + + host + gp.se + + + host + *.gp.se + + + + + GPFI + + ruleset + + name + GPFI + rule + + from + ^http://(www\.)?gpfi\.org/ + to + https://$1gpfi.org/ + + target + + + host + gpfi.org + + + host + www.gpfi.org + + + + + GPGTools (partial) + + ruleset + + exclusion + + pattern + http://support. + + name + GPGTools (partial) + rule + + from + ^http://([^/:@]+\.)?gpgtools\.org/ + to + https://$1gpgtools.org/ + + target + + + host + gpgtools.org + + + host + *.gpgtools.org + + + + + GPLHost (partial) + + ruleset + + name + GPLHost (partial) + rule + + + from + ^http://dtc(\.sharedfr|\.node\d{1,5})?\.gplhost\.com/ + to + https://dtc$1.gplhost.com/ + + + from + ^http://dtc\.gplhost\.co\.uk/ + to + https://dtc.gplhost.co.uk/ + + + securecookie + + host + ^dtc\.\w+\.gplhost\.com$ + name + .* + + target + + + host + dtc.gplhost.com + + + host + dtc.*.gplhost.com + + + host + dtc.gplhost.co.uk + + + + + GPShopper.com (partial) + + ruleset + + name + GPShopper.com (partial) + rule + + from + ^http://(analytics|cdn|static)\.gpshopper\.com/ + to + https://$1.gpshopper.com/ + + target + + host + *.gpshopper.com + + + + GPUL.org (partial) + + ruleset + + name + GPUL.org (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?gpul\.org/ + to + https://gpul.org/ + + + from + ^http://(2012\.|www\.)?guadec\.org/sites/ + to + https://gpul.org/sites/ + + + target + + + host + gpul.org + + + host + www.gpul.org + + + host + guadec.org + + + host + 2012.guadec.org + + + host + www.guadec.org + + + + + GQ (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?gq\.com/(?!css/|images/) + + name + GQ (partial) + rule + + + from + ^https?://(?:secure\.|www\.)?gq\.com/ + to + https://secure.gq.com/ + + + from + ^http://subscribe\.gq\.com/ + to + https://subscribe.gq.com/ + + + from + ^https?://(?:www\.)?gq-magazine\.co\.uk/_/ + to + https://d3u12z27ui3vom.cloudfront.net/GQ/343431a42aff/ + + + target + + + host + gq.com + + + host + *.gq.com + + + host + gq-magazine.co.uk + + + host + www.gq-magazine.co.uk + + + + + GRML.org + + ruleset + + name + GRML.org + rule + + from + ^http://(wiki\.|www\.)?grml\.org/ + to + https://$1grml.org/ + + target + + + host + grml.org + + + host + *.grml.org + + + + + GRSecurity.net + + ruleset + + name + GRSecurity.net + rule + + from + ^http://(?:www\.)?(cvsweb\.|forums\.|pax\.)?grsecurity\.net/ + to + https://$1grsecurity.net/ + + securecookie + + host + ^\.forums\.grsecurity\.net$ + name + .* + + target + + + host + grsecurity.net + + + host + *.grsecurity.net + + + host + *.forums.grsecurity.net + + + + + GRÜN Software + + ruleset + + name + GRÜN Software + rule + + from + ^http://(www\.)?gruen\.net/ + to + https://$1gruen.net/ + + securecookie + + host + ^www\.gruen\.net$ + name + .+ + + target + + + host + gruen.net + + + host + www.gruen.net + + + + + GS-media.de + + ruleset + + name + GS-media.de + rule + + from + ^http://(css|flags|netbar|themes|www)\.gs-media\.de/ + to + https://$1.gs-media.de/ + + securecookie + + host + ^\.gs-media\.de + name + .+ + + target + + host + *.gs-media.de + + + + GSA.gov (partial) + + ruleset + + name + GSA.gov (partial) + rule + + from + ^http://(18f|fbopen)\.gsa\.gov/ + to + https://$1.gsa.gov/ + + target + + host + *.gsa.gov + + + + GSU.edu (false MCB) + + ruleset + + name + GSU.edu (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?gsu\.edu/ + to + https://www.gsu.edu/ + + securecookie + + host + ^www\.gsu\.edu$ + name + .+ + + target + + + host + gsu.edu + + + host + www.gsu.edu + + + + + GSU.edu (partial) + + ruleset + + name + GSU.edu (partial) + rule + + + from + ^http://(?:www\.)?gsu\.edu/(?=wp-content/|wp-includes/) + to + https://www.gsu.edu/ + + + from + ^http://(campusid|(?:inb|www)\.gosolar|paws|sendafile|gsu\.view|webservices)\.gsu\.edu/ + to + https://$1.gsu.edu/ + + + securecookie + + host + ^(?:campusid|paws)\.gsu\.edu$ + name + .+ + + target + + + host + gsu.edu + + + host + *.gsu.edu + + + + + GStreamer (partial) + + ruleset + + name + GStreamer (partial) + rule + + from + ^http://cdn\.gstreamer\.com/ + to + https://d2688lj8lursqz.cloudfront.net/ + + target + + host + cdn.gstreamer.com + + + + GTC's Online + + ruleset + + name + GTC's Online + rule + + + from + ^http://(?:www\.)peliaika\.fi/ + to + https://gtcsonline.mycashflow.fi/ + + + from + ^http://gtcsonline\.mycashflow\.fi/ + to + https://gtcsonline.mycashflow.fi/ + + + securecookie + + host + ^\.gtcsonline\.mycashflow\.fi$ + name + .+ + + target + + + host + gtcsonline.mycashflow.fi + + + host + *.gtcsonline.mycashflow.fi + + + host + peliaika.fi + + + host + www.peliaika.fi + + + + + GU.se + + ruleset + + name + GU.se + rule + + from + ^http://(gupea\.ub|webresources)\.gu\.se/ + to + https://$1.gu.se/ + + securecookie + + host + ^gupea\.ub\.gu\.se$ + name + .+ + + target + + host + *.gu.se + + + + GVNTube.com (partial) + + ruleset + + name + GVNTube.com (partial) + rule + + from + ^http://(?:www\.)?gvntube\.com/(favicon\.ico|images/|javascripts/|login(?:$|\?|/)|media/|stylesheets/) + to + https://gvntube.com/$1 + + target + + + host + gvntube.com + + + host + www.gvntube.com + + + + + Gaatur u stig slapen.nl + + ruleset + + name + Gaatur u stig slapen.nl + rule + + from + ^http://(www\.)?gaaturustigslapen\.nl/ + to + https://$1gaaturustigslapen.nl/ + + target + + + host + gaaturustigslapen.nl + + + host + www.gaaturustigslapen.nl + + + + + Gabry.hu + + ruleset + + name + Gabry.hu + platform + mixedcontent + rule + + from + ^http://(www\.)?gabry\.hu/ + to + https://$1gabry.hu/ + + securecookie + + host + ^(www\.)?gabry\.hu$ + name + .+ + + target + + + host + www.gabry.hu + + + host + gabry.hu + + + + + Gadget-o + + ruleset + + name + Gadget-o + rule + + + from + ^http://(www\.)?gadget-o\.com/ + to + https://$1gadget-o.com/ + + + from + ^https?://assets\.gadget-o\.com/ + to + https://d2bmlokt20co86.cloudfront.net/ + + + securecookie + + host + ^\.gadget-o.com$ + name + .+ + + target + + + host + gadget-o.com + + + host + *.gadget-o.com + + + + + Gajim + + ruleset + + name + Gajim + platform + cacert + rule + + from + ^http://((?:hg|trac|www)\.)?gajim\.org/ + to + https://$1gajim.org/ + + securecookie + + host + ^(?:.*\.)?gajim\.org$ + name + .+ + + target + + + host + gajim.org + + + host + *.gajim.org + + + + + Galaxis.at + + ruleset + + name + Galaxis.at + rule + + from + ^http://(www\.)?galaxis\.at/ + to + https://$1galaxis.at/ + + securecookie + + host + ^(?:www)?\.galaxis\.at$ + name + .+ + + target + + + host + galaxis.at + + + host + *.galaxis.at + + + + + Galaxy Project.org (partial) + + ruleset + + name + Galaxy Project.org (partial) + rule + + from + ^http://wiki\.galaxyproject\.org/ + to + https://wiki.galaxyproject.org/ + + target + + host + wiki.galaxyproject.org + + + + Gallup (partial) + + ruleset + + exclusion + + pattern + ^http://www\.gallup\.com/+(?!Assets/) + + name + Gallup (partial) + rule + + from + ^http://(content\.|www\.)?gallup\.com/ + to + https://$1gallup.com/ + + target + + + host + gallup.com + + + host + *.gallup.com + + + + + GamCare (partial) + + ruleset + + name + GamCare (partial) + platform + mixedcontent + rule + + from + ^https?://(?:secure\.|www\.)?gamcare\.org\.uk/((?:forum/)?cs|image)s/ + to + https://secure.gamcare.org.uk/$1s/ + + target + + + host + gamcare.org.uk + + + host + *.gamcare.org.uk + + + + + GambleID + + ruleset + + name + GambleID + rule + + + from + ^http://(?:www\.)?gambleid\.com/ + to + https://www.gambleid.com/ + + + from + ^http://(admin|developer|enterprise|myaccount)\.gambleid\.com/ + to + https://$1.gambleid.com/ + + + securecookie + + host + .+\.gambleid\.com$ + name + .+ + + target + + + host + gambleid.com + + + host + *.gambleid.com + + + + + Gambling Commission (partial) + + ruleset + + name + Gambling Commission (partial) + rule + + from + ^http://secure\.gamblingcommission\.gov\.uk/ + to + https://secure.gamblingcommission.gov.uk/ + + target + + host + secure.gamblingcommission.gov.uk + + + + Gambling Portal Webmasters Association (partial) + + ruleset + + name + Gambling Portal Webmasters Association (partial) + rule + + from + ^http://certify\.gpwa\.org/ + to + https://certify.gpwa.org/ + + target + + host + certify.gpwa.org + + + + Game Link (partial) + + ruleset + + name + Game Link (partial) + rule + + + from + ^https?://(?:www\.)?gamelink\.com/(login|shipping)\.jhtml($|[;\?]) + to + https://www.gamelink.com/$1.jhtml$2 + + + from + ^https?://gfx3\.gamelink\.com/ + to + https://gamelink.hs.llnwd.net/e1/images/ + + + target + + + host + gamelink.com + + + host + *.gamelink.com + + + + + Game Show Network (partial) + + ruleset + + name + Game Show Network (partial) + rule + + + from + ^http://(?:www\.)?tv\.gsn\.com/ + to + https://www.tv.gsn.com/ + + + from + ^http://(www\.)?gsn\.com/(cgi/(account/register|cash/wwcpa/register|nosession/)|dynamic/|forums/) + to + https://$1gsn.com/$2 + + + from + ^http://(www\.)?worldwinner\.com/(cgi/(login\.html|nosession/)|dynamic/|images/) + to + https://$1worldwinner.com/$2 + + + from + ^http://cdn\.worldwinner\.com/ + to + https://gp1.wpc.edgecastcdn.net/ + + + securecookie + + host + ^(www\.)?gsn\.com$ + name + ^bb_.*$ + + target + + + host + gsn.com + + + host + *.gsn.com + + + host + www.tv.gsn.com + + + host + worldwinner.com + + + host + *.worldwinner.com + + + + + Game.co.uk + + ruleset + + name + Game.co.uk + rule + + from + ^http://(www\.)?game\.co\.uk/ + to + https://www.game.co.uk/ + + target + + + host + game.co.uk + + + host + www.game.co.uk + + + + + GameDev.net (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?gamedev\.net/page/ + + name + GameDev.net (partial) + rule + + from + ^http://(public\.|www\.)?gamedev\.net/ + to + https://$1gamedev.net/ + + target + + + host + gamedev.net + + + host + *.gamedev.net + + + + + GameFly + + ruleset + + name + GameFly + rule + + + from + ^http://(?:www\.)?gamefly\.co(m|\.uk)/ + to + https://www.gamefly.co$1/ + + + from + ^http://gamefly(1|2)?\.gameflycdn\.com/ + to + https://gamefly$1.gameflycdn.com/ + + + securecookie + + host + ^www\.gamefly\.co(?:m|\.uk)$ + name + .+ + + target + + + host + gamefly.com + + + host + www.gamefly.com + + + host + gamefly.co.uk + + + host + www.gamefly.co.uk + + + host + *.gameflycdn.com + + + + + GameHouse + + ruleset + + name + GameHouse + rule + + + from + ^https?://(?:www\.)?gamehouse\.com/ + to + https://www.gamehouse.com/ + + + from + ^http://(media|support)\.gamehouse\.com/ + to + https://$1.gamehouse.com/ + + + from + ^http://ad\.ghfusion\.com/ + to + https://ad.ghfusion.com/ + + + securecookie + + host + ^.*\.gamehouse\.com$ + name + .* + + target + + + host + gamehouse.com + + + host + *.gamehouse.com + + + host + ad.ghfusion.com + + + + + GameInformer (partial) + + ruleset + + name + GameInformer (partial) + rule + + + from + ^http://(www\.)?gameinformer\.com/ + to + https://$1gameinformer.com/ + + + from + ^http://media-2\.gameinformer\.com/ + to + https://a248.e.akamai.net/f/1910/8732/10h/media-2.gameinformer.com/ + + + securecookie + + host + ^(?:www)?\.gameinformer\.com$ + name + .+ + + target + + + host + gameinformer.com + + + host + *.gameinformer.com + + + + + GameSports.net (false MCB) + + ruleset + + name + GameSports.net (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:broadcasting\.)?gamesports\.net/ + to + https://broadcasting.gamesports.net/ + + securecookie + + host + ^broadcasting\.gamesports\.net$ + name + .+ + + target + + + host + gamesports.net + + + host + broadcasting.gamesports.net + + + + + GameSports.net (partial) + + ruleset + + exclusion + + pattern + ^http://broadcasting\.gamesports\.net/+(?!images/) + + name + GameSports.net (partial) + rule + + + from + ^http://(broadcasting|forum|static|www)\.gamesports\.net/ + to + https://$1.gamesports.net/ + + + from + ^http://(css|flags|netbar|themes)\.cdn\.gamesports\.net/ + to + https://$1.gs-media.de/ + + + securecookie + + host + ^\.gamesports\.net$ + name + ^gs_\w+$ + + target + + host + *.gamesports.net + + + + GameSpot (partial) + + ruleset + + name + GameSpot (partial) + rule + + + from + ^http://((?:auth|fuse|u[ks])\.)?gamespot\.com/ + to + https://$1gamespot.com/ + + + from + ^http://static(\d)?\.gamespot\.com/(?!.+\.css(?:$|\?)) + to + https://a248.e.akamai.net/f/50/31/6/static$1.gamespot.com/ + + + securecookie + + + host + ^\.gamespot\.com$ + name + ^(?:AD_SESSION|ads_firstpg)$ + + + host + ^(?:auth|us)\.gamespot\.com$ + name + .+ + + + target + + + host + gamespot.com + + + host + *.gamespot.com + + + + + GameSpot.com (false MCB) + + ruleset + + name + GameSpot.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.gamespot\.com/ + to + https://www.gamespot.com/ + + securecookie + + host + ^www\.gamespot\.com + name + .+ + + target + + host + www.gamespot.com + + + + GameStop + + ruleset + + name + GameStop + rule + + from + ^http://(www\.)?gamestop\.com/(?:(.+/images|[cC]ommon|gs/(?:landing|merchincludes)|INTL|JavaScript|mrkt)/|.+\.css$) + to + https://$1gamestop.com/$2 + + target + + + host + gamestop.com + + + host + *.gamestop.com + + + + + GameTree + + ruleset + + name + GameTree + rule + + + from + ^http://(www\.)?gametree(?:developer|linux)\.com/ + to + https://$1gametreedeveloper.com/ + + + from + ^https?://cdn\.gametreelinux\.com/ + to + https://d303q111h1m66t.cloudfront.net/ + + + securecookie + + host + ^gametreedeveloper\.com$ + name + .* + + target + + + host + gametreedeveloper.com + + + host + www.gametreedeveloper.com + + + host + gametreelinux.com + + + host + *.gametreelinux.com + + + + + Gamefactory.jp + + ruleset + + name + Gamefactory.jp + rule + + from + ^http://www\.gamefactory\.jp/ + to + https://www.gamefactory.jp/ + + securecookie + + host + ^\.gamefactory\.jp$ + name + .+ + + target + + host + *.gamefactory.jp + + + + Gameladen + + ruleset + + name + Gameladen + rule + + from + ^http://(www\.)?gameladen\.com/ + to + https://$1gameladen.com/ + + securecookie + + host + ^\.gameladen\.com$ + name + .+ + + target + + + host + gameladen.com + + + host + *.gameladen.com + + + + + Gamersfirst.com (partial) + + ruleset + + name + Gamersfirst.com (partial) + rule + + + from + ^http://(www\.)?gamersfirst\.com/ + to + https://www.gamersfirst.com/ + + + from + ^http://merchants\.gamersfirst\.com/ + to + https://merchants.gamersfirst.com/ + + + target + + + host + www.gamersfirst.com + + + host + gamersfirst.com + + + host + merchants.gamersfirst.com + + + + + GamesOnly.at + + ruleset + + name + GamesOnly.at + rule + + from + ^http://(www\.)?gamesonly\.at/ + to + https://$1gamesonly.at/ + + target + + + host + gamesonly.at + + + host + www.gamesonly.at + + + + + Gamestar Mechanic + + ruleset + + name + Gamestar Mechanic + rule + + + from + ^http://((?:(?:chalkable|edmodo|lti|schoology)?(?:\.stage)?|cq|dev|dyn|ltps|msu|njbegich|q2l|ramapo|stmarysschool|www)\.)?gamestarmechanic\.com/ + to + https://$1gamestarmechanic.com/ + + + from + ^https?://cdn\.gamestarmechanic\.com/ + to + https://d1uoa9d4t4btfa.cloudfront.net/ + + + securecookie + + host + .*\.gamestarmechanic\.com$ + name + .+ + + target + + + host + gamestarmechanic.com + + + host + *.gamestarmechanic.com + + + + + Gamestar.de + + ruleset + + name + Gamestar.de + rule + + from + ^http://images\.gamestar\.de/ + to + https://images.gamestar.de/ + + target + + host + *.gamestar.de + + + + Gameswelt.de + + ruleset + + name + Gameswelt.de + rule + + + from + ^http://www\.gameswelt\.de/ + to + https://www.gameswelt.de/ + + + from + ^http://(mediang|static)\.gameswelt\.net/ + to + https://$1.gameswelt.net/ + + + target + + + host + *.gameswelt.de + + + host + *.gameswelt.net + + + + + Gametracker.com (partial) + + ruleset + + name + Gametracker.com (partial) + rule + + + from + ^http://(www\.)?gametracker\.com/ + to + https://www.gametracker.com/ + + + from + ^http://image\.www\.gametracker\.com/ + to + https://image.www.gametracker.com/ + + + target + + + host + www.gametracker.com + + + host + gametracker.com + + + host + image.www.gametracker.com + + + + + Gamezebo + + ruleset + + name + Gamezebo + rule + + + from + ^http://(www\.)?gamezebo\.com/ + to + https://$1gamezebo.com/ + + + from + ^http://qa\.gamezebo\.com/gamezebov\d/ + to + https://www.gamezebo.com/ + + + securecookie + + host + ^\.gamezebo\.com$ + name + .+ + + target + + + host + gamezebo.com + + + host + *.gamezebo.com + + + + + Gaminator + + ruleset + + name + Gaminator + rule + + from + ^http://(www\.)?(?:gaminatorslots|slotsgaminator)\.com/ + to + https://$1slotsgaminator.com/ + + securecookie + + host + ^w*\.slotsgaminator\.com$ + name + .+ + + target + + + host + gaminatorslots.com + + + host + www.gaminatorslots.com + + + host + slotsgaminator.com + + + host + *.slotsgaminator.com + + + + + Gamingonlinux.com + + ruleset + + name + Gamingonlinux.com + rule + + from + ^http://(www\.)?gamingonlinux\.com/ + to + https://www.gamingonlinux.com/ + + target + + + host + gamingonlinux.com + + + host + www.gamingonlinux.com + + + + + Gamma Group + + ruleset + + name + Gamma Group + rule + + from + ^https?://(?:www\.)?gammagroup\.com/ + to + https://www.gammagroup.com/ + + target + + + host + gammagroup.com + + + host + www.gammagroup.com + + + + + GammaE.com + + ruleset + + name + GammaE.com + rule + + + from + ^http://(?:www\.)?gammae\.com/ + to + https://www.gammae.com/ + + + from + ^http://ad2\.gammae\.com/ + to + https://ad2.gammae.com/ + + + securecookie + + host + ^ad2\.gammae\.com$ + name + .+ + + target + + + host + gammae.com + + + host + *.gammae.com + + + + + Gamona.de + + ruleset + + name + Gamona.de + rule + + from + ^http://www\.gamona\.de/ + to + https://www.gamona.de/ + + target + + host + *.gamona.de + + + + Gandi + + ruleset + + name + Gandi + rule + + + from + ^http://(?:www\.)?gandi\.net/ + to + https://www.gandi.net/ + + + from + ^http://(en|es)\.gandi\.net/([^?#]*)(?:\?([^#]+))?(#.*)?$ + to + https://www.gandi.net/$2?lang=$1&$3$4 + + + from + ^http://uk\.gandi\.net/([^?#]*)(?:\?([^#]+))?(#.*)?$ + to + https://www.gandi.net/$1?lang=en&$2$3 + + + from + ^http://(blog|cal|wiki)\.gandi\.net/ + to + https://$1.gandi.net/ + + + securecookie + + host + ^(?:(?:blog|cal|en|es|uk|wiki|www)\.)?gandi\.net$ + name + .* + + target + + + host + gandi.net + + + host + *.gandi.net + + + + + Gang Land News + + ruleset + + name + Gang Land News + rule + + from + ^http://(www\.)?ganglandnews\.com/ + to + https://$1ganglandnews.com/ + + securecookie + + host + ^\.(?:www\.)?ganglandnews\.com$ + name + .+ + + target + + + host + ganglandnews.com + + + host + *.ganglandnews.com + + + + + Gannett Company (partial) + + ruleset + + name + Gannett Company (partial) + rule + + + from + ^http://(support|wiki)\.dmslocal\.com/ + to + https://$1.dmslocal.com/ + + + from + ^http://(am[mp]oc0\d|autodisover|circportal|cwa|www\.ganweb01|webmail(?:\.\w+)?)\.gannett\.com/ + to + https://$1.gannett.com/ + + + from + ^http://benefits\.gannett\.com/[^\?]*(\?.*)? + to + https://www.benefitsweb.com/gannett.html$1 + + + from + ^http://myaccount\.gcion\.com/ + to + https://myaccount.gcion.com/ + + + from + ^http://ssl1\.gmti\.com/ + to + https://ssl1.gmti.com/ + + + from + ^https?://deals\.montgomeryadvertiser\.com/ + to + https://montgom.planetdiscover.com/ + + + from + ^http://classifieds\.nncogannett\.com/ + to + https://classifieds.nncogannett.com/ + + + securecookie + + + host + ^(?:support|wiki)\.dmslocal\.com$ + name + .+ + + + host + ^\.gannett\.com$ + name + ^s_\w+$ + + + host + ^(?:am[mp]oc0\d|circportal|cwa|www\.ganweb01|webmail(?:\.\w+)?)\.gannett\.com$ + name + .+ + + + host + ^classifieds\.nncogannett\.com$ + name + .+ + + + target + + + host + *.dmslocal.com + + + host + *.gannett.com + + + host + myaccount.gcion.com + + + host + ssl1.gmti.com + + + host + deals.montomeryadvertiser.com + + + host + classifieds.nncogannett.com + + + + + Gannett Ridge + + ruleset + + name + Gannett Ridge + rule + + from + ^http://(www\.)?gannettridge\.com/ + to + https://$1gannettridge.com/ + + securecookie + + host + ^(?:www\.)?gannettridge\.com$ + name + .+ + + target + + + host + gannettridge.com + + + host + www.gannettridge.com + + + + + GannettLocal (partial) + + ruleset + + name + GannettLocal (partial) + rule + + from + ^http://(support|wiki)\.gannettlocal\.com/ + to + https://$1.gannettlocal.com/ + + securecookie + + host + ^(?:support|wiki)\.gannettlocal\.com$ + name + .+ + + target + + host + *.gannettlocal.com + + + + Ganz eStore.com (partial) + + ruleset + + name + Ganz eStore.com (partial) + rule + + + from + ^http://(?:www\.)?ganzestore\.com/ + to + https://www.ganzestore.com/ + + + from + ^http://adimages\.ganzestore\.com/ + to + https://adimages.ganzestore.com/ + + + securecookie + + host + ^(?:www\.)?ganzestore\.com$ + name + .+ + + target + + + host + ganzestore.com + + + host + *.ganzestore.com + + + + + GarageGames + + ruleset + + name + GarageGames + rule + + from + ^http://(service\.|static\.|www\.)?garagegames\.com/ + to + https://$1garagegames.com/ + + securecookie + + host + ^\.garagegames\.com$ + name + .+ + + target + + + host + garagegames.com + + + host + *.garagegames.com + + + + + Garcinia Cambogia VitalMend.com (partial) + + ruleset + + name + Garcinia Cambogia VitalMend.com (partial) + rule + + from + ^http://(www\.)?garciniacambogiavitalmend\.com/(?=checkout(?:$|[?/])|favicon\.ico|wp-content/|wp-includes/) + to + https://$1garciniacambogiavitalmend.com/ + + securecookie + + host + ^\.garciniacambogiavitalmend\.com$ + name + ^__qca$ + + target + + + host + garciniacambogiavitalmend.com + + + host + *.garciniacambogiavitalmend.com + + + + + Garfield.com + + ruleset + + name + Garfield.com + rule + + + from + ^http://(?:www\.)?garfield\.com/ + to + https://garfield.com/ + + + from + ^http://licensee\.garfield\.com/ + to + https://licensee.garfield.com/ + + + target + + + host + garfield.com + + + host + www.garfield.com + + + host + licensee.garfield.com + + + + + Gargoyle Router Firmware + + ruleset + + name + Gargoyle Router Firmware + rule + + from + ^http://(www\.)?gargoyle-router\.com/ + to + https://www.gargoyle-router.com/ + + target + + + host + www.gargoyle-router.com + + + host + gargoyle-router.com + + + + + Garmin + + ruleset + + name + Garmin + rule + + + from + ^http://(www\.)?garmin\.com/ + to + https://www.garmin.com/ + + + from + ^http://([^/:@]*)\.garmin\.com/ + to + https://$1.garmin.com/ + + + target + + + host + www.garmin.com + + + host + garmin.com + + + host + *.garmin.com + + + + + Garoa.net + + ruleset + + name + Garoa.net + rule + + from + ^http://(www\.)?garoa\.net/ + to + https://$1garoa.net/ + + target + + + host + garoa.net + + + host + www.garoa.net + + + + + Gartner.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.gartner\.com/.+\.jsp(?:$|\?) + + name + Gartner.com (partial) + rule + + + from + ^http://(?:(?:na\d\.)?www\.)?gartner\.com/ + to + https://www.gartner.com/ + + + from + ^http://(imagesrv|my)\.gartner\.com/ + to + https://$1.gartner.com/ + + + target + + + host + gartner.com + + + host + *.gartner.com + + + + + Gary Johnson 2012 + + ruleset + + name + Gary Johnson 2012 + rule + + from + ^http://(donate\.|www\.)?garyjohnson2012\.com/ + to + https://$1garyjohnson2012.com/ + + securecookie + + host + ^(?:.*\.)?garyjohnson2012\.com$ + name + .+ + + target + + + host + garyjohnson2012.com + + + host + *.garyjohnson2012.com + + + + + Gasngrills.com (partial) + + ruleset + + name + Gasngrills.com (partial) + rule + + from + ^http://(www\.)?gasngrills\.com/(images/|index\.php\?(?:.+&)?dispatch=(?:auth\.login_form|image\.captcha|profiles\.add)|skins/) + to + https://$1gasngrills.com/$2 + + target + + + host + gasngrills.com + + + host + www.gasngrills.com + + + + + Gateway State Bank + + ruleset + + name + Gateway State Bank + platform + mixedcontent + rule + + + from + ^http://gatewaysb\.com/ + to + https://www.gatewaysb.com/ + + + from + ^http://(([a-zA-Z0-9\-])+\.)gatewaysb\.com/ + to + https://$1gatewaysb.com/ + + + securecookie + + host + (^|\.)gatewaysb\.com$ + name + .+ + + target + + + host + gatewaysb.com + + + host + *.gatewaysb.com + + + + + Gatwick Airport + + ruleset + + name + Gatwick Airport + rule + + + from + ^https?://gatwickairport\.com/ + to + https://www.gatwickairport.com/ + + + from + ^http://([^/:@]+)?\.gatwickairport\.com/ + to + https://$1.gatwickairport.com/ + + + target + + + host + gatwickairport.com + + + host + *.gatwickairport.com + + + + + Gavel Buddy Live.com + + ruleset + + name + Gavel Buddy Live.com + rule + + from + ^http://(www\.)?gavelbuddylive\.com/ + to + https://$1gavelbuddylive.com/ + + securecookie + + host + ^(?:w*\.)?gavelbuddylive\.com$ + name + .+ + + target + + + host + gavelbuddylive.com + + + host + *.gavelbuddylive.com + + + + + Gavel Buddy.com + + ruleset + + name + Gavel Buddy.com + rule + + from + ^http://(www\.)?gavelbuddy\.com/ + to + https://$1gavelbuddy.com/ + + securecookie + + host + ^(?:www\.)?gavelbuddy\.com$ + name + .+ + + target + + + host + gavelbuddy.com + + + host + www.gavelbuddy.com + + + + + Gavin Hungry.io + + ruleset + + name + Gavin Hungry.io + rule + + from + ^http://(www\.)?gavinhungry\.io/ + to + https://$1gavinhungry.io/ + + target + + + host + gavinhungry.io + + + host + www.gavinhungry.io + + + + + Gawkerassets.com (partial) + + ruleset + + name + Gawkerassets.com (partial) + rule + + from + ^http://img\.gawkerassets\.com/ + to + https://s3.amazonaws.com/img.gawkerassets.com/ + + target + + host + img.gawkerassets.com + + + + Gay180 + + ruleset + + name + Gay180 + rule + + from + ^http://(join\.|www\.)?gay180\.com/ + to + https://$1gay180.com/ + + securecookie + + host + ^\.gay180\.com$ + name + .+ + + target + + + host + gay180.com + + + host + *.gay180.com + + + + + GayTorrents + + ruleset + + name + GayTorrents + rule + + + from + ^http://(?:www\.)?gay-torrents\.net/ + to + https://www.gay-torrents.net/ + + + from + ^http://static\.gay-torrents\.net/ + to + https://static.gay-torrents.net/ + + + target + + + host + gay-torrents.net + + + host + www.gay-torrents.net + + + host + static.gay-torrents.net + + + + + GeForce.com (partial) + + ruleset + + name + GeForce.com (partial) + rule + + from + ^http://forums\.geforce\.com/ + to + https://forums.geforce.com/ + + target + + host + forums.geforce.com + + + + Geany.org (false MCB) + + ruleset + + name + Geany.org (false MCB) + platform + cacert mixedcontent + rule + + from + ^http://(?:www\.)?geany\.org/ + to + https://www.geany.org/ + + target + + + host + geany.org + + + host + www.geany.org + + + + + GearSourceEurope (partial) + + ruleset + + name + GearSourceEurope (partial) + rule + + from + ^http://(www\.)?gearsourceeurope\.com/ + to + https://$1gearsourceeurope.com/ + + securecookie + + host + ^(?:www)?\.gearsourceeurope\.com$ + name + .+ + + target + + + host + gearsourceeurope.com + + + host + *.gearsourceeurope.com + + + + + Gearworks Manufacturing + + ruleset + + name + Gearworks Manufacturing + rule + + from + ^http://(www\.)?gearworkstire\.com/ + to + https://$1gearworkstire.com/ + + securecookie + + host + ^(?:.*\.)?gearworkstire\.com$ + name + .+ + + target + + + host + gearworkstire.com + + + host + *.gearworkstire.com + + + + + Geef.nl + + ruleset + + name + Geef.nl + rule + + from + ^https?://(?:www\.)?geef\.nl/(commons/|css/|externalMod\.php|favicon\.ico|images/|js/|login|upload/) + to + https://www.geef.nl/$1 + + target + + + host + geef.nl + + + host + www.geef.nl + + + + + Geek Tech Labs.com + + ruleset + + name + Geek Tech Labs.com + rule + + + from + ^http://(?:www\.)?geektechlabs\.com/ + to + https://www.geektechlabs.com/ + + + from + ^http://mysql\.geektechlabs\.com/ + to + https://mysql.geektechlabs.com/ + + + target + + + host + geektechlabs.com + + + host + *.geektechlabs.com + + + + + Geek.net + + ruleset + + name + Geek.net + rule + + + from + ^http://(www\.)?geek\.net/ + to + https://$1geek.net/ + + + from + ^https?://cdn\.asset\.geek\.net/ + to + https://d2hfi8wofzzjwf.cloudfront.net/ + + + from + ^https?://investors\.geek\.net/common/ + to + https://investor.shareholder.com/common/ + + + securecookie + + host + ^geek\.net$ + name + .* + + target + + + host + *.geek.net + + + host + geek.net + + + host + cdn.asset.geek.net + + + + + GeekISP.com + + ruleset + + name + GeekISP.com + rule + + from + ^http://(www\.)?geekisp\.com/ + to + https://$1geekisp.com/ + + securecookie + + host + ^(?:www\.)?geekisp\.com$ + name + .+ + + target + + + host + geekisp.com + + + host + www.geekisp.com + + + + + GeekWire (partial) + + ruleset + + name + GeekWire (partial) + rule + + from + ^http://cdn\.geekwire\.com/ + to + https://s3.amazonaws.com/geekwire/ + + target + + host + cdn.geekwire.com + + + + Geekevents.org + + ruleset + + name + Geekevents.org + rule + + from + ^http://(www\.)?geekevents\.org/ + to + https://$1geekevents.org/ + + securecookie + + host + ^\.geekevents\.org$ + name + .+ + + target + + + host + geekevents.org + + + host + *.geekevents.org + + + + + Geekify (partial) + + ruleset + + name + Geekify (partial) + rule + + from + ^http://(www\.)?geekify\.com\.au/(data/|fpss/|images/|sites/|user(?:$|\?|/)) + to + https://$1geekify.com.au/$2 + + target + + + host + geekify.com.au + + + host + www.geekify.com.au + + + + + Geeknet Media (partial) + + ruleset + + name + Geeknet Media (partial) + rule + + from + ^https?://(?:www\.)?geeknetmedia\.com/ + to + https://geeknetmedia.com/ + + securecookie + + host + ^geeknetmedia\.com$ + name + .+ + + target + + + host + geeknetmedia.com + + + host + www.geeknetmedia.com + + + + + Geeksphone.com + + ruleset + + name + Geeksphone.com + rule + + + from + ^http://((?:forum|shop|www)\.)?geeksphone\.com/ + to + https://$1geeksphone.com/ + + + from + ^http://downloads\.geeksphone\.com/ + to + https://d337ou2hengace.cloudfront.net/ + + + securecookie + + host + ^(?:(?:forum|\.?shop|www)\.)?geeksphone\.com$ + name + .+ + + target + + + host + geeksphone.com + + + host + *.geeksphone.com + + + + + Geizhals.at + + ruleset + + name + Geizhals.at + rule + + + from + ^https?://(?:www\.)?geizhals\.at/ + to + https://geizhals.at/ + + + from + ^http://(forum|gewinnspiel|unternehmen)\.geizhals\.at/ + to + https://$1.geizhals.at/ + + + target + + + host + geizhals.at + + + host + *.geizhals.at + + + + + Geizhals.de + + ruleset + + name + Geizhals.de + rule + + from + ^http://(forum\.|www\.)?geizhals\.de/ + to + https://$1geizhals.de/ + + target + + + host + geizhals.de + + + host + *.geizhals.de + + + + + Gemalto.com (partial) + + ruleset + + name + Gemalto.com (partial) + rule + + from + ^http://(boutique\.|www\.)?gemalto\.com/ + to + https://$1gemalto.com/ + + securecookie + + host + ^(?:boutique|www)\.gemalto\.com$ + name + .+ + + target + + + host + gemalto.com + + + host + *.gemalto.com + + + + + Gemius + + ruleset + + name + Gemius + rule + + + from + ^http://(?:www\.)?gemius\.pl/ + to + https://www.gemius.pl/ + + + from + ^http://([^@:/]+)\.hit\.gemius\.pl/ + to + https://$1.hit.gemius.pl/ + + + securecookie + + host + ^(?:\.hit|www)\.gemius\.pl$ + name + .+ + + target + + + host + gemius.pl + + + host + *.gemius.pl + + + + + GenGes.com + + ruleset + + name + GenGes.com + rule + + from + ^http://(www\.)?genges\.com/ + to + https://$1genges.com/ + + securecookie + + host + ^\.genges\.com$ + name + .+ + + target + + + host + genges.com + + + host + *.genges.com + + + + + General Electric (partial) + + ruleset + + name + General Electric (partial) + rule + + from + ^http://files\.([^\.]+)\.geblogs\.com/ + to + https://s3.amazonaws.com/files.$1.geblogs.com/ + + target + + host + files.*.geblogs.com + + + + General Logistics Systems + + ruleset + + name + General Logistics Systems + rule + + from + ^https?://(?:www\.)?gls-group\.eu/ + to + https://www.gls-group.eu/ + + securecookie + + host + ^www\.gls-group\.eu$ + name + .* + + target + + + host + gls-group.eu + + + host + www.gls-group.eu + + + + + Generalitat of Catalonia (partial) + + ruleset + + name + Generalitat of Catalonia (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?gencat\.cat/ + to + https://$1gencat.cat/ + + + from + ^http://www20\.gencat\.cat/(doc|portal/template)s/ + to + https://www20.gencat.cat/$1s/ + + + securecookie + + host + ^(.*[^0]*\.)?gencat\.cat$ + name + .* + + target + + + host + gencat.cat + + + host + *.gencat.cat + + + + + Genesee Photo Systems + + ruleset + + name + Genesee Photo Systems + rule + + from + ^http://(www\.)?(geneseephoto|okpartypix)\.com/ + to + https://$1$2.com/ + + securecookie + + host + ^\.(?:geneseephoto|okpartypix)\.com$ + name + .+ + + target + + + host + geneseephoto.com + + + host + *.geneseephoto + + + host + okpartypix.com + + + host + *.okpartypix.com + + + + + Genesis-Technologies + + ruleset + + name + Genesis-Technologies + rule + + from + ^http://(www\.)?genesis-technologies\.com/ + to + https://$1genesis-technologies.com/ + + securecookie + + host + ^(?:www\.)?genesis-technologies\.com$ + name + .+ + + target + + + host + genesis-technologies.com + + + host + www.genesis-technologies.com + + + + + Gentle labs.com + + ruleset + + name + Gentle labs.com + rule + + from + ^http://((?:results|store|www)\.)?gentlelabs\.com/ + to + https://$1gentlelabs.com/ + + securecookie + + host + ^\.gentlelabs\.com$ + name + .+ + + target + + + host + gentlelabs.com + + + host + *.gentlelabs.com + + + + + Gentoo (partial) + + ruleset + + exclusion + + pattern + ^http://(?:anoncvs|distfiles|mirrorstats|sources|viewcvstest)\. + + name + Gentoo (partial) + rule + + from + ^http://([\w.-]+\.)?gentoo\.org/ + to + https://$1gentoo.org/ + + securecookie + + host + .*\.gentoo\.org$ + name + .+ + + target + + + host + gentoo.org + + + host + *.gentoo.org + + + + + Gentoo-eV.org + + ruleset + + name + Gentoo-eV.org + rule + + from + ^http://(www\.)?gentoo-ev\.org/ + to + https://$1gentoo-ev.org/ + + target + + + host + gentoo-ev.org + + + host + www.gentoo-ev.org + + + + + Geo Listening.com + + ruleset + + name + Geo Listening.com + rule + + from + ^http://(www\.)?geolistening\.com/ + to + https://$1geolistening.com/ + + target + + + host + geolistening.com + + + host + www.geolistening.com + + + + + GeoAmigo + + ruleset + + name + GeoAmigo + rule + + from + ^http://(www\.)?geoamigo\.com/ + to + https://$1geoamigo.com/ + + securecookie + + host + ^(?:www\.)?geoamigo\.com$ + name + .+ + + target + + + host + geoamigo.com + + + host + www.geoamigo.com + + + + + GeoTrust + + ruleset + + name + GeoTrust + rule + + + from + ^http://(www\.)?geotrust\.com/ + to + https://$1geotrust.com/ + + + from + ^http://(enterprise-security-center|gesc|knowledge|products|seal|security-center|smarticon)\.geotrust\.com/ + to + https://$1.geotrust.com/ + + + securecookie + + host + ^(?:knowledge)?\.geotrust\.com$ + name + .+ + + target + + + host + geotrust.com + + + host + *.geotrust.com + + + + + GeoTrust.net + + ruleset + + name + GeoTrust.net + rule + + from + ^http://(enterprise-security-center\.ilg|www)\.geotrust\.net/ + to + https://$1.geotrust.net/ + + securecookie + + host + ^\.geotrust\.net$ + name + ^v1st$ + + target + + host + *.geotrust.net + + + + George Mason University (partial) + + ruleset + + exclusion + + pattern + ^http://mason\.gmu\.edu/(?!~) + + name + George Mason University (partial) + platform + mixedcontent + rule + + + from + ^http://gmu\.edu/ + to + https://www.gmu.edu/ + + + from + ^http://(chnm|mason|www)\.gmu\.edu/ + to + https://$1.gmu.edu/ + + + target + + + host + gmu.edu + + + host + *.gmu.edu + + + host + www.gmu.edu + + + + + George Washington University (partial) + + ruleset + + name + George Washington University (partial) + rule + + from + ^http://(gwtoday|www)\.gwu\.edu/ + to + https://$1.gwu.edu/ + + securecookie + + host + ^.*\.gwu\.edu$ + name + .* + + target + + host + *.gwu.edu + + + + Georgetown University (partial) + + ruleset + + name + Georgetown University (partial) + platform + mixedcontent + rule + + + from + ^http://((?:(?:secure\.)?alumni|apps|campus|(?:media\.|pilot\.)?cndls|(?:blogs\.|digital)?commons|eaplus|gdc|gle|gquads|gucms-(?:mgmt|ui)|guevents|gusa|gushare|hoyalink|itel|(?:autodiscover|legacy|mail|msb|schedule|www)\.law|(?:(?:catalog|illiad|(?:login|www)\.proxy|repository|resources|www)\.)?library|m|mail|mobile|myaccess|mydante-public|netid-mgmt|pegasus|blog\.provost|blog\.sfs|signin|sites|wiki\.uis|uis-bboard-\d|www\d?|www1[1235-9])\.)?georgetown\.edu/ + to + https://$1georgetown.edu/ + + + from + ^http://www\.(catalog\.library|msb)\.georgetown\.edu/ + to + https://$1.georgetown.edu/ + + + from + ^http://dante\.georgetown\.edu/ + to + https://blogs.commons.georgetown.edu/mydante/ + + + from + ^http://digital\.georgetown\.edu/ + to + https://www.library.georgetown.edu/digital/ + + + from + ^http://(?:researchguides\.dml|guides\.library)\.georgetown\.edu/(css\d*|data|js)/ + to + https://libguides.com/$1/ + + + from + ^http://keyform\.georgetown\.edu/ + to + https://www4.georgetown.edu/uis/keybridge/keyform/ + + + from + ^http://proxy\.library\.georgetown\.edu/ + to + https://www.proxy.library.georgetown.edu/ + + + from + ^http://www\.ll\.georgetown\.edu/(\?.*)?$ + to + https://www.law.georgetown.edu/library/$1 + + + from + ^http://www\.ll\.georgetown\.edu/services/(\?.*)?$ + to + https://www.law.georgetown.edu/library/about/services-policies/$1 + + + from + ^http://www\.ll\.georgetown\.edu/services/ill/(\?.*)?$ + to + https://www.law.georgetown.edu/library/about/services-policies/interlibrary-loan.cfm$1 + + + from + ^http://preparedness\.georgetown\.edu/[^\?]*(\?.*)? + to + https://www.georgetown.edu/campus-life/safety-and-emergency-preparedness/$1 + + + securecookie + + host + ^(?:secure\.alumni|campus|commons|eaplus|gle|gquads|gucms-mgmt|guevents|gushare|hoyalink|(?:mail|schedule|www)\.law|(?:\.?catalog|repository)\.library|m|msb|myaccess|mydante-public|wiki\.uis|uis-bboard-\d|www[134])\.georgetown\.edu$ + name + .+ + + target + + + host + georgetown.edu + + + host + *.georgetown.edu + + + + + Georgie Girl Australia (partial) + + ruleset + + name + Georgie Girl Australia (partial) + rule + + from + ^http://(www\.)?georgiegirl\.com\.au/(data/|fpss/|images/|sites/|user(?:$|\?|/)) + to + https://$1georgiegirl.com.au/$2 + + target + + + host + georgiegirl.com.au + + + host + www.georgiegirl.com.au + + + + + Gephi + + ruleset + + name + Gephi + rule + + from + ^http://((?:consortium|forum|marketplace|wiki|www)\.)?gephi\.org/ + to + https://$1gephi.org/ + + securecookie + + host + ^.+\.gephi\.org$ + name + .+ + + target + + + host + gephi.org + + + host + *.gephi.org + + + + + Geraspora + + ruleset + + name + Geraspora + rule + + from + ^http://(www\.)?pod\.geraspora\.de/ + to + https://pod.geraspora.de/ + + target + + + host + pod.geraspora.de + + + host + www.pod.geraspora.de + + + + + German Academic Exchange Service + + ruleset + + name + German Academic Exchange Service + rule + + from + ^https?://(?:(?:ssl|www)\.)?daad\.de/ + to + https://ssl.daad.de/ + + securecookie + + host + ^ssl\.daad\.de$ + name + .* + + target + + + host + daad.de + + + host + *.daad.de + + + + + German BigBrotherAwards + + ruleset + + name + German BigBrotherAwards + platform + mixedcontent + rule + + from + ^http://(www\.)?bigbrotherawards\.de/ + to + https://$1bigbrotherawards.de/ + + securecookie + + host + ^www\.bigbrotherawards\.de$ + name + .+ + + target + + + host + bigbrotherawards.de + + + host + www.bigbrotherawards.de + + + + + German Center for Neurodegenerative Diseases + + ruleset + + name + German Center for Neurodegenerative Diseases + rule + + from + ^http://(www\.)?dzne\.de/ + to + https://$1dzne.de/ + + securecookie + + host + ^www\.dzne\.de$ + name + .+ + + target + + + host + dzne.de + + + host + www.dzne.de + + + + + German Design Council + + ruleset + + name + German Design Council + rule + + from + ^http://(www\.)?german-design-council\.de/ + to + https://$1german-design-council.de/ + + securecookie + + host + ^(.*\.)?german-design-council\.de$ + name + .* + + target + + + host + german-design-council.de + + + host + *.german-design-council.de + + + + + German Privacy Foundation + + ruleset + + name + German Privacy Foundation + rule + + from + ^http://(www\.)privacyfoundation\.de/ + to + https://$1privacyfoundation.de/ + + securecookie + + host + ^(?:www\.)?privacyfoundation\.de$ + name + .+ + + target + + + host + privacyfoundation.de + + + host + www.privacyfoundation.de + + + + + GermanTV + + ruleset + + name + GermanTV + rule + + from + ^http://(www\.)?germantv\.net/ + to + https://$1germantv.net/ + + securecookie + + host + ^(?:w*\.)?germantv\.net$ + name + .+ + + target + + + host + germantv.net + + + host + *.germantv.net + + + + + Gesellschaft fuer Informatik + + ruleset + + name + Gesellschaft fuer Informatik + rule + + from + ^http://(www\.)?gi\.de/ + to + https://www.gi.de/ + + target + + + host + gi.de + + + host + www.gi.de + + + + + Get Chef.com (partial) + + ruleset + + exclusion + + pattern + http://www\.getchef\.com/+(?!account(?:$|[?/])) + + name + Get Chef.com (partial) + rule + + + from + ^http://(supermarket\.|www\.)?getchef\.com/ + to + https://$1getchef.com/ + + + from + ^http://docs\.getchef\.com/+(?=_static/) + to + https://d172u545pcyiea.cloudfront.net/ + + + from + ^http://learn\.getchef\.com/(?=assets/|favicon\.ico) + to + https://d11vgriu1n9l23.cloudfront.net/ + + + target + + + host + getchef.com + + + host + *.getchef.com + + + + + Get Composer.org + + ruleset + + name + Get Composer.org + rule + + from + ^http://(www\.)?getcomposer\.org/ + to + https://$1getcomposer.org/ + + target + + + host + getcomposer.org + + + host + www.getcomposer.org + + + + + Get Foxy Proxy.org (partial) + + ruleset + + name + Get Foxy Proxy.org (partial) + rule + + + from + ^http://(www\.)?getfoxyproxy\.org/ + to + https://$1getfoxyproxy.org/ + + + from + ^http://forums\.getfoxyproxy\.org/ + to + https://forums.getfoxyproxy.org/ + + + target + + + host + getfoxyproxy.org + + + host + www.getfoxyproxy.org + + + host + forums.getfoxyproxy.org + + + + + Get I2P.net + + ruleset + + name + Get I2P.net + rule + + from + ^http://(www\.)?geti2p\.net/ + to + https://$1geti2p.net/ + + target + + + host + geti2p.net + + + host + www.geti2p.net + + + + + Get Lantern.org + + ruleset + + name + Get Lantern.org + rule + + from + ^http://(www\.)?getlantern\.org/ + to + https://$1getlantern.org/ + + target + + + host + getlantern.org + + + host + www.getlantern.org + + + + + Get Out of Debt Guy + + ruleset + + name + Get Out of Debt Guy + rule + + + from + ^http://(www\.)?getoutofdebt\.org/ + to + https://$1getoutofdebt.org/ + + + from + ^https?://cdn\d*\.getoutofdebt\.org/ + to + https://d3iekd80gadj25.cloudfront.net/ + + + securecookie + + host + ^\.getoutofdebt\.org$ + name + .+ + + target + + + host + getoutofdebt.org + + + host + *.getoutofdebt.org + + + + + Get Safe Online + + ruleset + + name + Get Safe Online + rule + + + from + ^https?://getsafeonline\.org/ + to + https://www.getsafeonline.org/ + + + from + ^http://([^/:@]+)\.getsafeonline\.org/ + to + https://$1.getsafeonline.org/ + + + securecookie + + host + ^(.*\.)?getsafeonline\.org$ + name + .* + + target + + + host + getsafeonline.org + + + host + *.getsafeonline.org + + + + + Get.CM + + ruleset + + name + Get.CM + rule + + from + ^http://(www\.)?get\.cm/ + to + https://$1get.cm/ + + target + + + host + get.cm + + + host + www.get.cm + + + + + Get.It + + ruleset + + name + Get.It + rule + + + from + ^http://(media\.|www\.)?get\.it/ + to + https://$1get.it/ + + + from + ^http://detect\.get\.it/ + to + https://s3.amazonaws.com/detect.get.it/ + + + securecookie + + host + ^\.get.it$ + name + .+ + + target + + + host + get.it + + + host + *.get.it + + + + + GetAwayGrey + + ruleset + + name + GetAwayGrey + rule + + from + ^http://(www\.)?getawaygrey\.com/ + to + https://$1getawaygrey.com/ + + securecookie + + host + ^\.getawaygrey\.com$ + name + .+ + + target + + + host + getawaygrey.com + + + host + *.getawaygrey.com + + + + + GetChute (partial) + + ruleset + + name + GetChute (partial) + rule + + + from + ^https?://auth\.getchute\.com/ + to + https://auth.getchute.com/ + + + from + ^https?://media\.getchute\.com/ + to + https://s3.amazonaws.com/media.getchute.com/ + + + target + + host + *.getchute.com + + + + GetClicky + + ruleset + + name + GetClicky + rule + + + from + ^http://(www\.)?clicky\.com/(favicon\.ico|user(?:$|\?|/)) + to + https://$1clicky.com/$2 + + + from + ^http://([^/:@\.]+\.)?getclicky\.com/ + to + https://$1getclicky.com/ + + + from + ^http://(?:win\.|www\.)?staticstuff\.net/ + to + https://win.staticstuff.net/ + + + from + ^http://hello\.staticstuff\.net/ + to + https://hello.staticstuff.net/ + + + from + ^http://cdn\.staticstuff\.net/ + to + https://cdn.staticstuff.net/ + + + securecookie + + + host + ^(?:.*\.)?getclicky\.com$ + name + .+ + + + host + ^(?:.*\.)?staticstuff\.net$ + name + .+ + + + target + + + host + clicky.com + + + host + www.clicky.com + + + host + getclicky.com + + + host + *.getclicky.com + + + host + staticstuff.net + + + host + *.staticstuff.net + + + + + GetCloak.com + + ruleset + + name + GetCloak.com + rule + + from + ^http://(www\.)?getcloak\.com/ + to + https://$1getcloak.com/ + + target + + + host + getcloak.com + + + host + www.getcloak.com + + + + + GetClouder.com + + ruleset + + name + GetClouder.com + rule + + from + ^http://((?:dev|my|tutorials|www)\.)?getclouder\.com/ + to + https://$1getclouder.com/ + + target + + + host + getclouder.com + + + host + *.getclouder.com + + + + + GetFirebug (false MCB) + + ruleset + + name + GetFirebug (false MCB) + platform + mixedcontent + rule + + from + ^http://(blog\.|www\.)?getfirebug\.com/ + to + https://$1getfirebug.com/ + + target + + + host + getfirebug.com + + + host + *.getfirebug.com + + + + + GetGlue + + ruleset + + name + GetGlue + rule + + + from + ^http://(www\.)?getglue\.com/ + to + https://$1getglue.com/ + + + from + ^http://widgets\.getglue\.com/ + to + https://s3.amazonaws.com/widgets.getglue.com/ + + + securecookie + + host + ^www\.getglue\.com$ + name + .+ + + target + + + host + getglue.com + + + host + *.getglue.com + + + + + GetPersonas.com + + ruleset + + name + GetPersonas.com + platform + mixedcontent + rule + + from + ^http://(www\.)?getpersonas\.com/ + to + https://$1getpersonas.com/ + + target + + + host + getpersonas.com + + + host + www.getpersonas.com + + + + + GetPocket.com (partial) + + ruleset + + name + GetPocket.com (partial) + rule + + + from + ^http://help\.getpocket\.com/favicon\.ico + to + https://d3jyn100am7dxp.cloudfront.net/favicon.ico + + + from + ^http://(widgets\.|www\.)?getpocket\.com/ + to + https://$1getpocket.com/ + + + securecookie + + host + ^\.getpocket\.com$ + name + .+ + + target + + + host + getpocket.com + + + host + *.getpocket.com + + + + + GetResponse.com (partial) + + ruleset + + exclusion + + pattern + ^http://support\.getresponse\.com/+(?!uploads/|wp-content/|wp-includes/) + + name + GetResponse.com (partial) + rule + + from + ^http://((?:api2?|app|cdn|multimedia|secure|static|support|support-panel|www)\.)?getresponse\.com/ + to + https://$1getresponse.com/ + + target + + + host + getresponse.com + + + host + *.getresponse.com + + + + + GetTraffic.com + + ruleset + + name + GetTraffic.com + rule + + from + ^http://(cdn-w\.|www\.)?gettraffic\.com/ + to + https://$1gettraffic.com/ + + target + + + host + gettraffic.com + + + host + *.gettraffic.com + + + + + Getdigital.de (partial) + + ruleset + + name + Getdigital.de (partial) + rule + + + from + ^http://(?:www\.)?getdigital\.de/(?!/*blog(?!/+wp-content/|/+wp-includes/)) + to + https://www.getdigital.de/ + + + from + ^http://(?:www\.)?getdigital-blog\.de/(?=wp-content/|wp-includes/) + to + https://www.getdigital.de/blog/ + + + securecookie + + host + ^\.getdigital\.de$ + name + .+ + + target + + + host + getdigital.de + + + host + *.getdigital.de + + + host + getdigital-blog.de + + + host + www.getdigital-blog.de + + + + + Getify.com (partial) + + ruleset + + name + Getify.com (partial) + rule + + from + ^http://(www\.)?getify\.com/ + to + https://$1getify.com/ + + target + + + host + getify.com + + + host + www.getify.com + + + + + Getprice (partial) + + ruleset + + name + Getprice (partial) + rule + + from + ^http://secure\.getprice\.com\.au/ + to + https://secure.getprice.com.au/ + + target + + host + secure.getprice.com.au + + + + Getsatisfaction.com + + ruleset + + name + Getsatisfaction.com + platform + mixedcontent + rule + + + from + ^http://(assets\d\.|www\.)?getsatisfaction\.com/ + to + https://$1getsatisfaction.com/ + + + from + ^http://info\.getsatisfaction\.com/(cs|j|r)s/ + to + https://na-sjh.marketo.com/$1s/ + + + securecookie + + host + ^\.getsatisfaction\.com$ + name + .+ + + target + + + host + getsatisfaction.com + + + host + *.getsatisfaction.com + + + + + Getty Images (partial) + + ruleset + + exclusion + + pattern + ^https?://www\.gettyimages\.(?:ae|at|be|ca|ch|co\.(?:jp|nz|uk)|com\.au|de|dk|es|fi|fr|i[ent]|nl|no|pt|se)/(?!cms/|CMS/|favicon\.ico|[iI]mages/|jQuery/|scripts/|style/) + + name + Getty Images (partial) + rule + + + from + ^https?://(?:secure\.|www\.)?(stage-)?gettyimages\.(ae|at|be|ca|ch|co\.(?:jp|nz|uk)|com\.au|de|dk|es|fi|fr|i[ent]|nl|no|pt|se)/ + to + https://secure.$1gettyimages.$2/ + + + from + ^https?://(?:cache|delivery)\.gettyimages\.com/ + to + https://delivery.gettyimages.com/ + + + from + ^http://(api|assignments|autodiscover|callawaygolf|contribute|contributorsystems|developer|licensecompliance|mail|maildr|mixer|mm|remote|secure|upload)\.gettyimages\.com/ + to + https://$1.gettyimages.com/ + + + securecookie + + host + ^.+\.gettyimages\.com$ + name + .+ + + target + + + host + gettyimages.* + + + host + secure.gettyimages.* + + + host + www.gettyimages.* + + + host + gettyimages.co.* + + + host + secure.gettyimages.co.* + + + host + www.gettyimages.co.* + + + host + *.gettyimages.com + + + host + gettyimages.com.au + + + host + *.gettyimages.com.au + + + host + secure.stage-gettyimages.* + + + host + secure.stage-gettyimages.co.* + + + host + secure.stage-gettyimages.com.au + + + + + Getty.edu + + ruleset + + name + Getty.edu + rule + + + from + ^http://(?:www\.)?getty\.edu/ + to + https://www.getty.edu/ + + + from + ^http://shop\.getty\.edu/ + to + https://shopgetty.myshopify.com/ + + + target + + + host + getty.edu + + + host + *.getty.edu + + + + + GfK Etilize (partial) + + ruleset + + name + GfK Etilize (partial) + rule + + from + ^http://content\.etilize\.com/ + to + https://content.etilize.com/ + + target + + host + content.etilize.com + + + + Gfycat.com + + ruleset + + name + Gfycat.com + rule + + from + ^http://([^/:@\.]+\.)?gfycat\.com/ + to + https://$1gfycat.com/ + + securecookie + + host + ^\.gfycat\.com$ + name + .+ + + target + + + host + gfycat.com + + + host + *.gfycat.com + + + + + Ghost.org (partial) + + ruleset + + name + Ghost.org (partial) + rule + + + from + ^http://(www\.)?ghost\.org/ + to + https://$1ghost.org/ + + + from + ^http://status\.ghost\.org/ + to + https://ghost.statuspage.io/ + + + securecookie + + + host + ^ghost\.org$ + name + .+ + + + host + ^\.ghost\.org$ + name + ^__cfduid$ + + + target + + + host + ghost.org + + + host + *.ghost.org + + + + + Ghostery + + ruleset + + name + Ghostery + rule + + + from + ^http://(?:www\.)?ghostery\.com/ + to + https://www.ghostery.com/ + + + from + ^http://(ba-cdn|purplebox)\.ghostery\.com/ + to + https://$1.ghostery.com/ + + + target + + + host + ghostery.com + + + host + *.ghostery.com + + + + + Ghostery Enterprise.com + + ruleset + + name + Ghostery Enterprise.com + rule + + from + ^http://((?:site-cdn\d|staging|www)\.)?ghosteryenterprise\.com/ + to + https://$1ghosteryenterprise.com/ + + securecookie + + host + ^(?:staging\.)?ghosteryenterprise\.com$ + name + .+ + + target + + + host + ghosteryenterprise.com + + + host + *.ghosteryenterprise.com + + + + + GiBlod.no + + ruleset + + name + GiBlod.no + rule + + from + ^http://(?:www\.)?giblod\.no/ + to + https://www.giblod.no/ + + target + + + host + www.giblod.no + + + host + giblod.no + + + + + Giant Bomb.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.giantbomb\.com/+(?!bundles/|favicon\.ico) + + name + Giant Bomb.com (partial) + rule + + + from + ^http://(auth\.|www\.)?giantbomb\.com/ + to + https://$1giantbomb.com/ + + + from + ^http://static\.giantbomb\.com/(?!bundles/.+\.css) + to + https://a248.e.akamai.net/f/248/86/10/static.giantbomb.com/ + + + securecookie + + + host + ^\.giantbomb\.com$ + name + ^(?:AD_SESSION|ads_firstpg)$ + + + host + ^auth\.giantbomb\.com$ + name + .+ + + + host + ^www\.giantbomb\.com$ + name + ^_promos_seen + + + target + + + host + giantbomb.com + + + host + *.giantbomb.com + + + + + Gibson Research + + ruleset + + name + Gibson Research + rule + + + from + ^http://(media\.|www\.)?grc\.com/ + to + https://$1grc.com/ + + + from + ^http://www\.grctech\.com/ + to + https://www.grctech.com/ + + + securecookie + + host + ^www\.grc(?:tech)?\.com$ + name + .* + + target + + + host + grc.com + + + host + *.grc.com + + + host + www.grctech.com + + + + + GiftTool.com + + ruleset + + name + GiftTool.com + rule + + from + ^http://(www\.)?gifttool\.com/ + to + https://$1gifttool.com/ + + target + + + host + gifttool.com + + + host + www.gifttool.com + + + + + GigaOM (partial) + + ruleset + + exclusion + + pattern + ^http://research\.gigaom\.com/+(?!favicon\.ico|(?:analysts|subscription|wp-admin)(?:$|[?/])|wp-content/|wp-includes/) + + name + GigaOM (partial) + rule + + + from + ^http://(www\.)?gigaom\.com/ + to + https://$1gigaom.com/ + + + from + ^http://research\.gigaom\.com/analysts(?=$|\?) + to + https://research.gigaom.com/analysts/ + + + from + ^http://(about|accounts|events|go|pro|research)\.gigaom\.com/ + to + https://$1.gigaom.com/ + + + from + ^http://event\.gigaom\.com/[^?]* + to + https://events.gigaom.com/ + + + from + ^http://jobs\.gigaom\.com/(?=images/|files/|partners/) + to + https://www.jobthread.com/ + + + securecookie + + + host + ^\.gigaom\.com$ + name + ^wordpress_test_cookie$ + + + host + ^(?:accounts|go|pro)\.gigaom\.com$ + name + .+ + + + target + + + host + gigaom.com + + + host + *.gigaom.com + + + + + GigaSize (partial) + + ruleset + + name + GigaSize (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?gigasize\.com/ + to + https://$1gigasize.com/ + + securecookie + + host + ^(.*\.)?gigasize\.com$ + name + .* + + target + + + host + gigasize.com + + + host + *.gigasize.com + + + + + Gigabyte.com (partial) + + ruleset + + name + Gigabyte.com (partial) + rule + + from + ^http://passport\.gigabyte\.com/ + to + https://passport.gigabyte.com/ + + securecookie + + host + ^passport\.gigabyte\.com$ + name + .+ + + target + + host + passport.gigabyte.com + + + + Gigabyte.eu (partial) + + ruleset + + name + Gigabyte.eu (partial) + rule + + from + ^http://download\.gigabyte\.eu/ + to + https://a248.e.akamai.net/f/1053/6600/3/download.gigabyte.eu/ + + target + + host + download.gigabyte.eu + + + + Gigabyte.us (partial) + + ruleset + + name + Gigabyte.us (partial) + rule + + from + ^http://download\.gigabyte\.us/ + to + https://a248.e.akamai.net/f/1053/5331/5/download.gigabyte.us/ + + target + + host + download.gigabyte.us + + + + Gigaclear.com (partial) + + ruleset + + name + Gigaclear.com (partial) + rule + + from + ^http://portal\.gigaclear\.com/ + to + https://portal.gigaclear.com/ + + securecookie + + host + ^portal\.gigaclear\.com$ + name + .+ + + target + + host + portal.gigaclear.com + + + + Gigahost.dk + + ruleset + + name + Gigahost.dk + platform + firefox + rule + + + from + ^http://webmail\.gigahost\.dk/ + to + https://webmail.gigahost.dk/ + + + from + ^http://pay\.gigahost\.dk/ + to + https://pay.gigahost.dk/ + + + from + ^http://controlcenter\.gigahost\.dk/ + to + https://controlcenter.gigahost.dk/ + + + securecookie + + + host + ^webmail\.gigahost\.dk$ + name + .+ + + + host + ^pay\.gigahost\.dk$ + name + .+ + + + host + ^controlcenter\.gigahost\.dk$ + name + .+ + + + target + + + host + webmail.gigahost.dk + + + host + pay.gigahost.dk + + + host + controlcenter.gigahost.dk + + + + + Giganews (partial) + + ruleset + + name + Giganews (partial) + rule + + from + ^http://(www\.)?giganews\.com/($|\?|(?:auth|signup)(?:$|/)|images/|password(?:$|\.html)|styles/) + to + https://$1giganews.com/$2 + + target + + + host + giganews.com + + + host + www.giganews.com + + + + + Gigantic Tickets (partial) + + ruleset + + name + Gigantic Tickets (partial) + rule + + from + ^http://(cdn\.|ynot\.|www\.)?gigantic\.com/ + to + https://$1gigantic.com/ + + securecookie + + host + ^(?:.+\.)?gigantic\.com$ + name + .+ + + target + + + host + gigantic.com + + + host + *.gigantic.com + + + + + Gigaserver (partial) + + ruleset + + exclusion + + pattern + ^http://(blog|kb)\. + + name + Gigaserver (partial) + rule + + from + ^http://(\w+\.)?gigaserver\.cz/ + to + https://$1gigaserver.cz/ + + securecookie + + host + ^(.*\.)?gigaserver\.cz$ + name + .* + + target + + + host + gigaserver.cz + + + host + *.gigaserver.cz + + + host + *.www.gigaserver.cz + + + + + Gigaset.com + + ruleset + + name + Gigaset.com + platform + mixedcontent + rule + + + from + ^http://gigaset\.com/ + to + https://gigaset.com/ + + + from + ^http://www\.gigaset\.com/ + to + https://gigaset.com/ + + + target + + + host + gigaset.com + + + host + www.gigaset.com + + + + + GigeNET Cloud.com + + ruleset + + name + GigeNET Cloud.com + rule + + + from + ^http://gigenetcloud\.gigenet\.net/ + to + https://gigenetcloud.com/ + + + from + ^http://(orders\.|www\.)?gigenetcloud\.com/ + to + https://$1gigenetcloud.com/ + + + securecookie + + host + ^orders\.gigenetcloud\.com$ + name + .+ + + target + + + host + gigenetcloud.gigenet.net + + + host + gigenetcloud.com + + + host + www.gigenetcloud.com + + + + + GigeNET.com + + ruleset + + name + GigeNET.com + rule + + from + ^http://(manage\.|www\.)?gigenet\.com/ + to + https://$1gigenet.com/ + + securecookie + + + host + ^\.gigenet\.com$ + name + .+ + + + host + ^manage\.gigenet\.com$ + name + .+ + + + target + + + host + gigenet.com + + + host + *.gigenet.com + + + + + Gigya (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?gigya\.com/(?:careers/|company/?|contact-us/|media-coverage/|press-room/|privacy-board/|social-media-resources/)$ + + name + Gigya (partial) + platform + mixedcontent + rule + + + from + ^http://((?:counters|origin|www)\.)?gigya\.com/ + to + https://$1gigya.com/ + + + downgrade + 1 + from + ^https://(www\.)?gigya\.com/(careers/|company/?|contact-us/|media-coverage/|press-room/|privacy-board/|social-media-resources/)$ + to + http://$1gigya.com/$2 + + + from + ^http://cdns?\.gigya\.com/ + to + https://cdns.gigya.com/ + + + target + + + host + gigya.com + + + host + *.gigya.com + + + + + Gimmickwear + + ruleset + + name + Gimmickwear + rule + + from + ^http://(www\.)?gimmickwear\.com/ + to + https://$1gimmickwear.com/ + + securecookie + + host + ^\.(?:www\.)?gimmickwear\.com$ + name + .+ + + target + + + host + gimmickwear.com + + + host + *.gimmickwear.com + + + + + Giphy.com + + ruleset + + name + Giphy.com + rule + + + from + ^http://(?:www\.)?giphy\.com/ + to + https://giphy.com/ + + + from + ^http://media\d*\.giphy\.com/ + to + https://d16jfyletng9p5.cloudfront.net/ + + + target + + + host + giphy.com + + + host + *.giphy.com + + + + + Girl Scouts (partial) + + ruleset + + name + Girl Scouts (partial) + rule + + + from + ^http://(?:www\.)?girlscouts\.org/ + to + https://www.girlscouts.org/ + + + from + ^https?://blog\.girlscouts\.org/favicon\.ico + to + https://www.blogger.com/favicon.ico + + + securecookie + + host + ^www\.girlscouts\.org$ + name + .+ + + target + + + host + girlscouts.org + + + host + www.girlscouts.org + + + + + GitBook.io (partial) + + ruleset + + name + GitBook.io (partial) + rule + + from + ^http://(push\.|www\.)?gitbook\.io/ + to + https://$1gitbook.io/ + + target + + + host + gitbook.io + + + host + *.gitbook.io + + + + + GitCafe (partial) + + ruleset + + name + GitCafe (partial) + rule + + from + ^http://(www\.)?gitcafe\.com/ + to + https://$1gitcafe.com/ + + securecookie + + host + ^www\.gitcafe\.com$ + name + .+ + + target + + + host + gitcafe.com + + + host + www.gitcafe.com + + + + + GitCop.com + + ruleset + + name + GitCop.com + rule + + from + ^http://(www\.)?gitcop\.com/ + to + https://$1gitcop.com/ + + securecookie + + host + ^gitcop\.com$ + name + .+ + + target + + + host + gitcop.com + + + host + www.gitcop.com + + + + + GitHub + + ruleset + + name + GitHub + rule + + + from + ^http://((?:assets\d+|assets-cdn|bounty|cloud|f\.cloud|codeload|developer|eclipse|edu|education|enterprise|gist|gist-assets|help|identicons|jobs|mac|mobile|nodeload|octodex|pages|raw|rg3|shop|status|support|training|try|wiki|windows|www)\.)?github\.com/ + to + https://$1github.com/ + + + from + ^http://collector\.githubapp\.com/ + to + https://collector.githubapp.com/ + + + from + ^https?://github\.io/ + to + https://pages.github.com/ + + + from + ^http://([^/@:\.]+)\.githubusercontent\.com/ + to + https://$1.githubusercontent.com/ + + + securecookie + + host + ^(?:.*\.)?github\.com$ + name + .+ + + target + + + host + github.com + + + host + *.github.com + + + host + github.io + + + host + *.githubusercontent.com + + + host + collector.githubapp.com + + + + + GitHub Pages + + ruleset + + name + GitHub Pages + rule + + from + ^http://([^/@:\.]+)\.github\.io/ + to + https://$1.github.io/ + + target + + host + *.github.io + + + + GitLab.com (partial) + + ruleset + + name + GitLab.com (partial) + rule + + from + ^http://(about\.|www\.)?gitlab\.com/ + to + https://$1gitlab.com/ + + securecookie + + host + ^gitlab\.com$ + name + .+ + + target + + + host + gitlab.com + + + host + *.gitlab.com + + + + + Gitian.org + + ruleset + + name + Gitian.org + rule + + from + ^http://(?:www\.)?gitian\.org/ + to + https://gitian.org/ + + target + + + host + gitian.org + + + host + www.gitian.org + + + + + Gitorious + + ruleset + + exclusion + + + pattern + ^http://(?:blog|en)\.gitorious\.org/ + + + pattern + ^http://issues\.gitorious\.org/+(?!$|\?) + + + name + Gitorious + rule + + + from + ^http://issues\.gitorious\.org/+(?=$|\?) + to + https://gitorious.org/projects/gitorious/issues + + + from + ^http://status\.gitorious\.org/ + to + https://gitorious-status.herokuapp.com/ + + + from + ^http://([^/:@\.]+\.)?gitorious\.org/ + to + https://$1gitorious.org/ + + + securecookie + + host + .*\.gitorious\.org$ + name + .+ + + target + + + host + gitorious.org + + + host + *.gitorious.org + + + + + Gittip.com + + ruleset + + name + Gittip.com + rule + + from + ^http://(www\.)?gittip\.com/ + to + https://$1gittip.com/ + + securecookie + + host + ^www\.gittip\.com$ + name + .+ + + target + + + host + gittip.com + + + host + www.gittip.com + + + + + Give Kids the World + + ruleset + + name + Give Kids the World + platform + mixedcontent + rule + + + from + ^http://(www\.)?gktw\.org/ + to + https://$1gktw.org/ + + + from + ^https?://(www\.)?givekidstheworld\.org/ + to + https://$1gktw.org/ + + + from + ^http://secure\.gktw\.org/ + to + https://secure.gktw.org/ + + + from + ^(http://(?:www\.)?|https://)givekidstheworldstore\.org/ + to + https://www.givekidstheworldstore.org/ + + + securecookie + + + host + ^(secure|www)\.gktw\.org$ + name + .+ + + + host + ^www\.givekidstheworldstore\.org$ + name + .+ + + + target + + + host + gktw.org + + + host + www.gktw.org + + + host + givekidstheworld.org + + + host + www.givekidstheworld.org + + + host + secure.gktw.org + + + host + givekidstheworldstore.org + + + host + www.givekidstheworldstore.org + + + + + GiveDirect + + ruleset + + name + GiveDirect + rule + + from + ^http://(www\.)?givedirect\.org/ + to + https://$1givedirect.org/ + + securecookie + + host + ^(?:www\.)?givedirect\.org$ + name + .+ + + target + + + host + givedirect.org + + + host + www.givedirect.org + + + + + GiveDirectly.org + + ruleset + + name + GiveDirectly.org + rule + + from + ^http://(www\.)?givedirectly\.org/ + to + https://$1givedirectly.org/ + + target + + + host + givedirectly.org + + + host + www.givedirectly.org + + + + + Givex (partial) + + ruleset + + name + Givex (partial) + rule + + from + ^http://wwws(-\w\w\d)?\.givex\.com/ + to + https://wwws$1.givex.com/ + + securecookie + + host + ^wwws-.+\.givex\.com$ + name + .+ + + target + + host + *.givex.com + + + + GivingComfort.org + + ruleset + + name + GivingComfort.org + rule + + from + ^http://(www\.)?givingcomfort\.(com|org)/ + to + https://$1givingcomfort.$2/ + + target + + + host + givingcomfort.com + + + host + www.givingcomfort.com + + + host + givingcomfort.org + + + host + www.givingcomfort.org + + + + + GivingPrograms.com + + ruleset + + name + GivingPrograms.com + platform + mixedcontent + rule + + from + ^http://(giving\.|verify\.|www\.)?givingprograms\.com/ + to + https://$1givingprograms.com/ + + securecookie + + host + ^(?:.+\.)?givingprograms\.com$ + name + .+ + + target + + + host + givingprograms.com + + + host + *.givingprograms.com + + + + + Gizmag (partial) + + ruleset + + name + Gizmag (partial) + rule + + + from + ^http://files\.gizmag\.com/ + to + https://d1ad9ekm4vh0vj.cloudfront.net/ + + + from + ^http://images\.gizmag\.com/ + to + https://d3fvptmknnj7i1.cloudfront.net/ + + + target + + host + *.gizmag.com + + + + Glam (partial) + + ruleset + + name + Glam (partial) + rule + + + from + ^http://s?www2\.glam\.com/ + to + https://swww2.glam.com/ + + + from + ^http://www35\.glam\.com/ + to + https://a248.e.akamai.net/f/391/9986/10h/www35.glam.com/ + + + from + ^http://(swww22|swww35|www22|www35t)\.glam\.com/ + to + https://$1.glam.com/ + + + securecookie + + host + ^\.glam\.com$ + name + .+ + + target + + host + *.glam.com + + + + Glamorous UK + + ruleset + + name + Glamorous UK + rule + + from + ^https?://(?:www\.)?glamorousuk\.com/ + to + https://glamorousuk.com/ + + securecookie + + host + ^\.glamorousuk\.com$ + name + .+ + + target + + + host + glamorousuk.com + + + host + *.glamorousuk.com + + + + + Glass Craft & Bead Expo + + ruleset + + name + Glass Craft & Bead Expo + rule + + from + ^https?://(?:www\.)?glasscraftexpo\.com/ + to + https://www.glasscraftexpo.com/ + + target + + + host + glasscraftexpo.com + + + host + www.glasscraftexpo.com + + + + + Glassdoor (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?glassdoor\.c(?:a|om|om\.au|o\.in|o\.uk)/(?!images/|profile/) + + name + Glassdoor (partial) + rule + + + from + ^http://(media\.|static\.|www\.)?glassdoor\.com/ + to + https://$1glassdoor.com/ + + + from + ^https?://ads\.glassdoor\.com/ + to + https://d3uryx0fdgatve.cloudfront.net/ + + + from + ^https?://glassdoor\.c(a|om\.au|o\.in|o\.uk)/ + to + https://www.glassdoor.c$1/ + + + from + ^http://(static|www)\.glassdoor\.c(a|om\.au|o\.in|o\.uk)/ + to + https://$1.glassdoor.c$2/ + + + securecookie + + host + ^static\.glassdoor\.com$ + name + .+ + + target + + + host + glassdoor.com + + + host + *.glassdoor.com + + + host + glassdoor.com.au + + + host + *.glassdoor.com.au + + + host + glassdoor.co.* + + + host + *.glassdoor.co.in + + + host + *.glassdoor.co.uk + + + + + Glasses.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?glasses\.com/(?!images/|javascript/|product-detail/get-flyout/|production_minified/|__ssobj/|user/login-modal/) + + name + Glasses.com (partial) + rule + + from + ^http://(media\.|www\.)?glasses\.com/ + to + https://$1glasses.com/ + + target + + + host + glasses.com + + + host + *.glasses.com + + + + + Glassesusa.com + + ruleset + + name + Glassesusa.com + rule + + from + ^http://(www\.)?glassesusa\.com/ + to + https://www.glassesusa.com/ + + target + + + host + glassesusa.com + + + host + www.glassesusa.com + + + + + Glb img.com (partial) + + ruleset + + name + Glb img.com (partial) + rule + + from + ^http://s\.glbimg\.com/ + to + https://s.glbimg.com/ + + target + + host + s.glbimg.com + + + + Gleam + + ruleset + + name + Gleam + rule + + from + ^http://(js\.)?gleam\.io/ + to + https://$1gleam.io/ + + securecookie + + host + ^gleam\.io$ + name + .+ + + target + + host + gleam.io + + + + GlenScott + + ruleset + + name + GlenScott + rule + + from + ^http://(?:www\.)?glenscott\.net/ + to + https://www.glenscott.net/ + + securecookie + + host + ^(.+\.)?glenscott\.net$ + name + .* + + target + + + host + glenscott.net + + + host + www.glenscott.net + + + + + Glenoit.com + + ruleset + + name + Glenoit.com + rule + + from + ^http://(www\.)?glenoit\.com/ + to + https://$1glenoit.com/ + + securecookie + + host + ^(?:www\.)?glenoit\.com$ + name + .+ + + target + + + host + glenoit.com + + + host + www.glenoit.com + + + + + GlitterBank (partial) + + ruleset + + name + GlitterBank (partial) + rule + + from + ^https?://(?:www\.)?glitterbank\.com/flag/ + to + https://secure.hostmonster.com/~glitterb/flag/ + + target + + + host + glitterbank.com + + + host + www.glitterbank.com + + + + + GlobaLeaks.org (partial) + + ruleset + + name + GlobaLeaks.org (partial) + rule + + from + ^http://(www\.)?globaleaks\.org/ + to + https://$1globaleaks.org/ + + target + + + host + globaleaks.org + + + host + www.globaleaks.org + + + + + Global Bersih + + ruleset + + name + Global Bersih + rule + + from + ^http://(www\.)?globalbersih\.org/ + to + https://$1globalbersih.org/ + + securecookie + + host + ^(?:w*\.)?globalbersih.org$ + name + .+ + + target + + + host + globalbersih.org + + + host + *.globalbersih.org + + + + + Global Investor Relations + + ruleset + + name + Global Investor Relations + rule + + from + ^http://(?:(?:www\.)g-ir\.com|ww7\.investorrelations\.co\.uk)/ + to + https://ww7.investorrelations.co.uk/ + + securecookie + + host + ^ww7\.investorrelations\.co\.uk$ + name + .* + + target + + + host + g-ir.com + + + host + www.g-ir.com + + + host + ww7.investorrelations.co.uk + + + + + Global Marine Networks (partial) + + ruleset + + name + Global Marine Networks (partial) + rule + + from + ^http://(www\.)?globalmarinenet\.com/ + to + https://$1globalmarinenet.com/ + + securecookie + + host + ^\.www\.globalmarinenet\.com$ + name + .* + + target + + + host + globalmarinenet.com + + + host + www.globalmarinenet.com + + + host + *.www.globalmarinenet.com + + + + + Global Marketing Strategies (partial) + + ruleset + + name + Global Marketing Strategies (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?fanpagegeneratorpro\.com/ + to + https://$1fanpagegeneratorpro.com/ + + + from + ^http://(www\.)?(free|professional)privacypolicy\.com/ + to + https://$1$2privacypolicy.com/ + + + from + ^http://(www\.)?howtowriteabookasap\.com/ + to + https://$1howtowriteabookasap.com/ + + + from + ^http://(fanpagegeneratorpro\.|www\.)?rhinosupport\.com/ + to + https://$1rhinosupport.com/ + + + from + ^http://(www\.)?termsofservicegenerator\.com/ + to + https://$1termsofservicegenerator.com/ + + + from + ^http://(www\.)?whatsuccesstakes\.com/ + to + https://$1whatsuccesstakes.com/ + + + securecookie + + + host + ^www\.(?:free|professional)privacypolicy\.com$ + name + .+ + + + host + ^(?:www\.)?howtowriteabookasap\.com$ + name + .+ + + + host + ^\.rhinesupport\.com$ + name + .+ + + + host + ^www\.termsofservicegenerator\.com$ + name + .+ + + + target + + + host + fanpagegeneratorpro.com + + + host + www.fanpagegeneratorpro.com + + + host + freeprivacypolicy.com + + + host + www.freeprivacypolicy.com + + + host + howtowriteabookasap.com + + + host + www.howtowriteabookasap.com + + + host + professionalprivacypolicy.com + + + host + www.professionalprivacypolicy.com + + + host + rhinosupport.com + + + host + *.rhinosupport.com + + + host + termsofservicegenerator.com + + + host + www.termsofservicegenerator.com + + + host + whatsuccesstakes.com + + + host + www.whatsuccesstakes.com + + + + + Global Network Initiative.org + + ruleset + + name + Global Network Initiative.org + rule + + from + ^http://(www\.)?globalnetworkinitiative\.org/ + to + https://$1globalnetworkinitiative.org/ + + target + + + host + globalnetworkinitiative.org + + + host + www.globalnetworkinitiative.org + + + + + Global Perspectives Canada + + ruleset + + name + Global Perspectives Canada + rule + + from + ^http://(www\.)?globalperspectivescanada\.com/ + to + https://$1globalperspectivescanada.com/ + + securecookie + + host + ^\.globalperspectivescanada.com$ + name + .+ + + target + + + host + globalperspectivescanada.com + + + host + *.globalperspectivescanada.com + + + + + Global Policy Forum + + ruleset + + name + Global Policy Forum + rule + + from + ^http://(?:www\.)?globalpolicy\.org/ + to + https://www.globalpolicy.org/ + + securecookie + + host + ^www\.globalpolicy\.org$ + name + .+ + + target + + + host + globalpolicy.org + + + host + www.globalpolicy.org + + + + + Global Research.ca (partial) + + ruleset + + name + Global Research.ca (partial) + rule + + from + ^http://store\.globalresearch\.ca/ + to + https://store.globalresearch.ca/ + + target + + host + store.globalresearch.ca + + + + Global Scale Technologies + + ruleset + + name + Global Scale Technologies + rule + + from + ^http://(www\.)?globalscaletechnologies\.com/ + to + https://$1globalscaletechnologies.com/ + + securecookie + + host + ^(.*\.)?globalscaletechnologies\.com$ + name + .+ + + target + + + host + globalscaletechnologies.com + + + host + *.globalscaletechnologies.com + + + + + Global Sources (partial) + + ruleset + + name + Global Sources (partial) + rule + + + from + ^https?://(?:s\.|www\.)?globalsources\.com/ + to + https://www.globalsources.com/ + + + from + ^http://login\.globalsources\.com/ + to + https://login.globalsources.com/ + + + securecookie + + host + ^w*\.globalsources\.com$ + name + .+ + + target + + + host + globalsources.com + + + host + *.globalsources.com + + + + + Global Voices Online.org (partial) + + ruleset + + name + Global Voices Online.org (partial) + rule + + from + ^http://((?:advocacy|ar|aym?|bn|books|da|de|el|es|fa|fr|hu|id|it|jp|ko|mg|mk|nl|pl|pt|rising|ru|s[rvw]|www|zh)\.)?globalvoicesonline\.org/ + to + https://$1globalvoicesonline.org/ + + securecookie + + host + ^\.(?:\w+\.)?globalvoicesonline\.org$ + name + .+ + + target + + + host + globalvoicesonline.org + + + host + *.globalvoicesonline.org + + + + + Global Witness + + ruleset + + name + Global Witness + rule + + from + ^https?://(?:www\.)?globalwitness\.org/ + to + https://www.globalwitness.org/ + + securecookie + + host + ^.*\.globalwitness\.org$ + name + .* + + target + + + host + globalwitness.org + + + host + *.globalwitness.org + + + + + GlobalSign + + ruleset + + name + GlobalSign + rule + + + from + ^http://((?:archive|cn|dev|e-sign|eu|hk|dev\.hk|jp|profile|revoked|seal|ssif1|sslcheck|static\d|status|system(?:eu|us)?|th|dev\.th|www)\.)?globalsign\.com/ + to + https://$1globalsign.com/ + + + from + ^https?://apac\.globalsign\.com/ + to + https://www.globalsign.com.sg/ + + + from + ^http://blog\.globalsign\.com/ + to + https://www.globalsign.com/blog + + + from + ^http://(www\.)?globalsign\.(co(?:\.in|\.uk|m\.au|m\.sg)|de|es|eu|fr|net|nl)/ + to + https://$1globalsign.$2/ + + + from + ^http://m\.globalsign\.eu/ + to + https://m.globalsign.eu/ + + + securecookie + + host + ^(?:.*\.)?globalsign\.(?:com|co\.uk|eu)$ + name + .+ + + target + + + host + globalsign.* + + + host + www.globalsign.* + + + host + globalsign.co.* + + + host + *.globalsign.com + + + host + globalsign.com.* + + + host + www.globalsign.com.* + + + host + www.globalsign.co.in + + + host + *.globalsign.co.uk + + + host + *.globalsign.eu + + + + + Globaltap.com + + ruleset + + name + Globaltap.com + rule + + from + ^http://(billing\.|www\.)?globaltap\.com/ + to + https://$1globaltap.com/ + + securecookie + + host + ^billing\.globaltap\.com$ + name + .+ + + target + + + host + globaltap.com + + + host + *.globaltap.com + + + + + Globaltestsupply + + ruleset + + name + Globaltestsupply + rule + + from + ^http://(www\.)?globaltestsupply\.com/ + to + https://www.globaltestsupply.com/ + + target + + + host + www.globaltestsupply.com + + + host + globaltestsupply.com + + + + + Globat + + ruleset + + name + Globat + rule + + from + ^http://(secure\.|www\.)?globat\.com(?:443)?/ + to + https://$1globat.com/ + + securecookie + + host + ^\.globat\.com$ + name + .* + + target + + + host + globat.com + + + host + *.globat.com + + + + + Globes (partial) + + ruleset + + name + Globes (partial) + rule + + from + ^http://(?:www\.)?globes\.co\.il/ + to + https://www.globes.co.il/ + + securecookie + + host + ^www\.globes\.co\.il$ + name + .+ + + target + + + host + globes.co.il + + + host + www.globes.co.il + + + + + Globetrotter + + ruleset + + name + Globetrotter + rule + + from + ^http://(www\.)?globetrotter\.de/ + to + https://www.globetrotter.de/ + + target + + + host + globetrotter.de + + + host + www.globetrotter.de + + + + + Globus Online + + ruleset + + name + Globus Online + rule + + from + ^http://(support\.|www\.)?globusonline\.org/ + to + https://$1globusonline.org/ + + securecookie + + host + ^(.*\.)?globusonline\.org$ + name + .* + + target + + + host + globusonline.org + + + host + *.globusonline.org + + + + + Glose.com + + ruleset + + name + Glose.com + rule + + from + ^http://(?:www\.)?glose\.com/ + to + https://glose.com/ + + target + + + host + glose.com + + + host + www.glose.com + + + + + Gluster.org + + ruleset + + name + Gluster.org + rule + + from + ^http://(forge\.|www\.)?gluster\.org/ + to + https://$1gluster.org/ + + securecookie + + host + ^\.forge\.gluster\.org$ + name + .+ + + target + + + host + gluster.org + + + host + *.gluster.org + + + + + Glype (partial) + + ruleset + + name + Glype (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?glype\.com/ + to + https://$1glype.com/ + + securecookie + + host + ^www\.glype\.com$ + name + .* + + target + + + host + glype.com + + + host + www.glype.com + + + + + Gna (partial) + + ruleset + + name + Gna (partial) + platform + cacert + rule + + from + ^https?://(?:www\.)?gna\.org/ + to + https://gna.org/ + + target + + + host + gna.org + + + host + www.gna.org + + + + + GnuPG.org (cacert) + + ruleset + + name + GnuPG.org (cacert) + platform + cacert + rule + + from + ^http://lists\.gnupg\.org/ + to + https://lists.gnupg.org/ + + target + + host + lists.gnupg.org + + + + GnuPG.org (partial) + + ruleset + + name + GnuPG.org (partial) + rule + + from + ^http://(www\.)?gnupg\.org/ + to + https://$1gnupg.org/ + + target + + + host + gnupg.org + + + host + www.gnupg.org + + + + + GnuTLS.org (partial) + + ruleset + + name + GnuTLS.org (partial) + rule + + from + ^http://(www\.)?mod\.gnutls\.org/ + to + https://$1mod.gnutls.org/ + + target + + host + *.gnutls.org + + + + Gnumonks.org (CAcert, partial) + + ruleset + + name + Gnumonks.org (CAcert, partial) + platform + cacert + rule + + from + ^http://(laforge|lists|svn)\.gnumonks\.org/ + to + https://$1.gnumonks.org/ + + target + + + host + laforge.gnumonks.org + + + host + lists.gnumonks.org + + + host + svn.gnumonks.org + + + + + Go Lang.org + + ruleset + + name + Go Lang.org + rule + + from + ^http://(\w+\.)?golang\.org/ + to + https://$1golang.org/ + + target + + + host + golang.org + + + host + *.golang.org + + + + + Go Mohu.com (partial) + + ruleset + + name + Go Mohu.com (partial) + rule + + from + ^http://store\.gomohu\.com/ + to + https://store.gomohu.com/ + + securecookie + + host + ^\.store\.gomohu\.com$ + name + .+ + + target + + host + *.gomohu.com + + + + Go Turkey.com + + ruleset + + name + Go Turkey.com + rule + + from + ^http://(www\.)?goturkey\.com/ + to + https://$1goturkey.com/ + + target + + + host + goturkey.com + + + host + www.goturkey.com + + + + + Go eShow.com + + ruleset + + name + Go eShow.com + rule + + from + ^http://((?:admin|s4|www)\.)?goeshow\.com/ + to + https://$1goeshow.com/ + + target + + + host + goeshow.com + + + host + *.goeshow.com + + + + + Go2Arena.com + + ruleset + + name + Go2Arena.com + rule + + from + ^http://(www\.)?go2arena\.com/ + to + https://$1go2arena.com/ + + securecookie + + host + ^\.(?:www\.)?go2arena\.com$ + name + .+ + + target + + + host + go2arena.com + + + host + *.go2arena.com + + + + + GoAbroad.com (partial) + + ruleset + + name + GoAbroad.com (partial) + rule + + from + ^http://secure\.goabroad\.com/ + to + https://secure.goabroad.com/ + + target + + host + secure.goabroad.com + + + + GoCoin.com + + ruleset + + name + GoCoin.com + rule + + + from + ^http://(dashboard\.|www\.)?gocoin\.com/ + to + https://$1gocoin.com/ + + + from + ^http://help\.gocoin\.com/ + to + https://gocoin.tenderapp.com/ + + + securecookie + + host + ^(?:\.|dashboard\.|www\.)?gocoin\.com$ + name + .+ + + target + + + host + gocoin.com + + + host + *.gocoin.com + + + + + GoDaddy (partial) + + ruleset + + exclusion + + pattern + ^http://support\.godaddy\.com/(?!files/|wp-content/) + + name + GoDaddy (partial) + rule + + + from + ^http://((?:auctions|certs|community|idp|img|m|\w\w\.m|mcc|mya|seal|shops|support|who|www|ar|au|be|br|ca|cl|co|dk|de|es|fr|in|ie|it|my|mx|nl|nz|no|at|pk|pe|ph|pl|pt|ch|sg|za|fi|se|tr|uk|ve|gr|ru|ua)\.)?godaddy\.com/ + to + https://$1godaddy.com/ + + + from + ^http://(www\.)?godaddymobile\.com/ + to + https://$1godaddymobile.com/ + + + from + ^http://instantpage\.me/ + to + https://www.godaddy.com/default.aspx + + + from + ^http://(?:admin|www)\.instantpage\.me/ + to + https://admin.instantpage.me/ + + + from + ^http://(www\.)?tdnam\.com/ + to + https://$1tdnam.com/ + + + securecookie + + + host + ^(?:.*\.)?godaddy\.com$ + name + .+ + + + host + ^\.godaddymobile\.com$ + name + .+ + + + target + + + host + godaddy.com + + + host + *.godaddy.com + + + host + godaddymobile.com + + + host + *.godaddymobile.com + + + host + instantpage.me + + + host + *.instantpage.me + + + host + tdnam.com + + + host + www.tdnam.com + + + + + GoDoc.org + + ruleset + + name + GoDoc.org + rule + + from + ^http://(www\.)?godoc\.org/ + to + https://$1godoc.org/ + + target + + + host + godoc.org + + + host + www.godoc.org + + + + + GoEmerchant + + ruleset + + name + GoEmerchant + rule + + from + ^http://(secure\.|www\.)?goemerchant\.com/ + to + https://$1goemerchant.com/ + + securecookie + + host + ^(?:secure)\.gomerchant\.com$ + name + .+ + + target + + + host + goemerchant.com + + + host + *.goemerchant.com + + + + + GoFrugal (partial) + + ruleset + + name + GoFrugal (partial) + rule + + from + ^http://mydiscussion\.gofrugal\.com/ + to + https://mydiscussion.gofrugal.com/ + + securecookie + + host + ^mydiscussion\.gofrugal\.com$ + name + .+ + + target + + host + mydiscussion.gofrugal.com + + + + GoFundMe + + ruleset + + name + GoFundMe + rule + + from + ^http://(funds\.|www\.)?gofundme\.com/ + to + https://$1gofundme.com/ + + securecookie + + host + ^(?:funds)?\.gofundme\.com$ + name + .+ + + target + + + host + gofundme.com + + + host + *.gofundme.com + + + + + GoGetSSL.com + + ruleset + + name + GoGetSSL.com + rule + + from + ^http://((?:dev|my|rus|sandbox|support|webmail|www)\.)?gogetssl\.com/ + to + https://$1gogetssl.com/ + + target + + + host + gogetssl.com + + + host + *.gogetssl.com + + + + + GoSoapBox + + ruleset + + name + GoSoapBox + rule + + from + ^https?://(?:www\.)?gosoapbox\.com/ + to + https://www.gosoapbox.com/ + + securecookie + + host + ^\.gosoapbox\.com$ + name + .+ + + target + + + host + gosoapbox.com + + + host + *.gosoapbox.com + + + + + GoSquared.com + + ruleset + + name + GoSquared.com + rule + + from + ^http://((?:static|wix|www)\.)?gosquared\.com/ + to + https://$1gosquared.com/ + + securecookie + + host + ^\.gosquared\.com$ + name + .+ + + target + + + host + gosquared.com + + + host + *.gosquared.com + + + + + GoStats (partial) + + ruleset + + name + GoStats (partial) + rule + + + from + ^https?://(?:www\.)?gostats\.com/js/ + to + https://ssl.gostats.com/js/ + + + from + ^http://(www\.)?ssl\.gostats\.com/ + to + https://$1ssl.gostats.com/ + + + from + ^https?://cdn\.gsstatic\.com/ + to + https://gostats.cachefly.net/ + + + target + + + host + gostats.com + + + host + *.gostats.com + + + host + www.ssl.gostats.com + + + host + cdn.gsstatic.com + + + + + GoWork.pl (partial) + + ruleset + + name + GoWork.pl (partial) + rule + + from + ^http://(www\.)?gowork\.pl/(?=css/|favicon\.ico|images/|js/|logowanie(?:$|[?/])|xml/) + to + https://$1gowork.pl/ + + target + + + host + gowork.pl + + + host + www.gowork.pl + + + + + GoalWorthy.com + + ruleset + + name + GoalWorthy.com + rule + + from + ^http://(www\.)?goalworthy\.com/ + to + https://$1goalworthy.com/ + + securecookie + + host + ^(?:w*\.)?goalworthy\.com$ + name + .+ + + target + + + host + goalworthy.com + + + host + *.goalworthy.com + + + + + Goaldet.com + + ruleset + + name + Goaldet.com + rule + + from + ^http://(www\.)?goaldet\.com/ + to + https://$1goaldet.com/ + + securecookie + + host + ^(?:w*\.)?goaldet.com$ + name + .+ + + target + + + host + goaldet.com + + + host + *.goaldet.com + + + + + Gocardless.com + + ruleset + + name + Gocardless.com + platform + firefox + rule + + from + ^http://gocardless\.com/ + to + https://gocardless.com/ + + securecookie + + host + ^gocardless\.com$ + name + .+ + + target + + host + gocardless.com + + + + Godville game + + ruleset + + name + Godville game + rule + + from + ^http://(www\.)?godvillegame\.com/ + to + https://godvillegame.com/ + + target + + + host + www.godvillegame.com + + + host + godvillegame.com + + + + + Gogo + + ruleset + + name + Gogo + rule + + + from + ^http://(?:www\.)?gogoair\.com/ + to + https://gogoair.com/ + + + from + ^http://(?:www\.)?gogoinflight\.com/ + to + https://gogoair.com/ + + + target + + + host + gogoair.com + + + host + www.gogoair.com + + + host + gogoinflight.com + + + host + www.gogoinflight.com + + + + + GogoTraining.com (partial) + + ruleset + + name + GogoTraining.com (partial) + rule + + from + ^http://(?:www\.)?gogotraining\.com/(?=(?:blog|shop)(?:$|[?/])|css/|favicon\.ico|images/|join/login\.php|js/) + to + https://gogotraining.com/ + + target + + + host + gogotraining.com + + + host + www.gogotraining.com + + + + + Gogobot (partial) + + ruleset + + name + Gogobot (partial) + rule + + + from + ^http://gbot\.me/ + to + https://bit.ly/ + + + from + ^http://(be|cdn\d?|static(?:-m?dev|-stg)?)\.gbot\.me/ + to + https://$1.gbot.me/ + + + from + ^http://((?:api|be|m?dev|stg|www)\.)?gogobot\.com/ + to + https://$1gogobot.com/ + + + securecookie + + host + .*\.g(?:bot\.me|ogobot\.com)$ + name + .+ + + target + + + host + gbot.me + + + host + *.gbot.me + + + host + gogobot.com + + + host + *.gogobot.com + + + + + GoingUp (partial) + + ruleset + + name + GoingUp (partial) + rule + + + from + ^http://goingup\.com/ + to + https://www.goingup.com/ + + + from + ^http://(counter|www)\.goingup\.com/ + to + https://$1.goingup.com/ + + + securecookie + + host + ^(counter|www)\.goingup\.com$ + name + .* + + target + + + host + goingup.com + + + host + *.goingup.com + + + + + Goke.me + + ruleset + + name + Goke.me + rule + + from + ^http://(www\.)?goke\.me/ + to + https://$1goke.me/ + + securecookie + + host + ^\.goke\.me$ + name + .+ + + target + + + host + goke.me + + + host + *.goke.me + + + + + Golden Adventures + + ruleset + + name + Golden Adventures + rule + + from + ^http://(www\.)?goldenadventures\.com/ + to + https://$1goldenadventures.com/ + + securecookie + + host + ^\.goldenadventures\.com$ + name + .+ + + target + + + host + goldenadventures.com + + + host + *.goldenadventures.com + + + + + Golden Charter (partial) + + ruleset + + name + Golden Charter (partial) + rule + + + from + ^http://(mail|webservices)\.goldencharter\.co\.uk/ + to + https://$1.goldencharter.co.uk/ + + + from + ^http://webservices\.goldencharter\.co\.uk:8808/portal/([^?]*)(?:\?.*)? + to + https://mygoldencharter.co.uk/$1 + + + from + ^http://(?:www\.)?mygoldencharter\.co\.uk/ + to + https://mygoldencharter.co.uk/ + + + securecookie + + host + ^mygoldencharter\.co\.uk$ + name + .+ + + target + + + host + *.goldencharter.co.uk + + + host + mygoldencharter.co.uk + + + host + www.mygoldencharter.co.uk + + + + + Golden Frog.com (partial) + + ruleset + + name + Golden Frog.com (partial) + rule + + from + ^http://(www\.)?goldenfrog\.com/(?=css/|js/|login(?:$|[?/])) + to + https://$1goldenfrog.com/ + + target + + + host + goldenfrog.com + + + host + www.goldenfrog.com + + + + + Goldenarium + + ruleset + + name + Goldenarium + rule + + from + ^http://(www\.)?goldenarium\.com/ + to + https://$1goldenarium.com/ + + securecookie + + host + ^(?:.*\.)?goldenarium\.com$ + name + .+ + + target + + + host + goldenarium.com + + + host + *.goldenarium.com + + + + + Goldkeys.net (partial) + + ruleset + + name + Goldkeys.net (partial) + rule + + from + ^http://(?:portal|www)\.goldkeys\.(net|org)/ + to + https://portal.goldkeys.$1/ + + securecookie + + host + ^portal\.goldkeys\.net$ + name + .+ + + target + + + host + *.goldkeys.net + + + host + portal.goldkeys.org + + + + + Goldsboro Web Development + + ruleset + + name + Goldsboro Web Development + rule + + from + ^http://(my\.|www\.)?goldsborowebdevelopment\.com/ + to + https://$1goldsborowebdevelopment.com/ + + securecookie + + host + ^\.?goldsborowebdevelopment.com$ + name + .+ + + target + + + host + goldsborowebdevelopment.com + + + host + *.goldsborowebdevelopment.com + + + + + Goldstar (partial) + + ruleset + + exclusion + + pattern + ^http://(?:i\.|www\.)?goldstar\.com/(?:company|help|my_tickets|series|weekendapp)(?:$|\?|/) + + name + Goldstar (partial) + rule + + + from + ^http://(?:www\.)?goldstar\.com/ + to + https://www.goldstar.com/ + + + from + ^http://gifts\.goldstar\.com/ + to + https://goldstar.myshopify.com/ + + + from + ^http://i(mages)?\.goldstar\.com/ + to + https://i$1.goldstar.com/ + + + securecookie + + host + ^(?:i|images|www)\.goldstar\.com$ + name + .+ + + target + + + host + goldstar.com + + + host + *.goldstar.com + + + + + Golem.de + + ruleset + + name + Golem.de + rule + + from + ^http://(cpxl|video)\.golem\.de/ + to + https://$1.golem.de/ + + target + + host + *.golem.de + + + + Golf Course Industry + + ruleset + + name + Golf Course Industry + rule + + from + ^https?://(?:www\.)?golfcourseindustry\.com/ + to + https://www.golfcourseindustry.com/ + + securecookie + + host + ^www\.golfcourseindustry\.com$ + name + .+ + + target + + + host + golfcourseindustry.com + + + host + www.golfcourseindustry.com + + + + + Golf Digest (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?golfdigest\.com/(?!css/|images/|favicon\.ico$|sandbox/) + + name + Golf Digest (partial) + rule + + + from + ^https?://(?:secure\.|www\.)?golfdigest\.com/ + to + https://secure.golfdigest.com/ + + + from + ^http://subscribe\.golfdigest\.com/ + to + https://subscribe.golfdigest.com/ + + + from + ^http://(www\.)?golfdigestinsiders\.com/ + to + https://$1golfdigestinsiders.com/ + + + securecookie + + host + ^www\.golfdigestinsiders\.com$ + name + .+ + + target + + + host + golfdigest.com + + + host + *.golfdigest.com + + + host + golfdigestinsiders.com + + + host + www.golfdigestinsiders.com + + + + + GolfLink.com (partial) + + ruleset + + name + GolfLink.com (partial) + rule + + + from + ^http://(u)?i\.glimg\.net/(?=img/|ui/images/) + to + https://a248.e.akamai.net/f/1768/7243/8/$1i.glimg.net/ + + + from + ^http://(?:(?:cdn-www\.)?golflink\.com|(?:www\.)?golflink\.net|u?i\.glimg\.net)/ + to + https://www.golflink.com/ + + + target + + + host + *.glimg.net + + + host + golflink.com + + + host + *.golflink.com + + + host + golflink.net + + + host + www.golflink.net + + + + + Gondor + + ruleset + + name + Gondor + rule + + + from + ^http://([\w-]+)\.gondor\.co/ + to + https://$1.gondor.co/ + + + from + ^http://(www\.)?gondor\.io/ + to + https://$1gondor.io/ + + + securecookie + + + host + .+\.gondor\.co$ + name + .+ + + + host + ^gondor\.io$ + name + .+ + + + target + + + host + *.gondor.co + + + host + gondor.io + + + host + www.gondor.io + + + + + Goo.im + + ruleset + + name + Goo.im + rule + + from + ^http://(www\.)?goo\.im/ + to + https://$1goo.im/ + + target + + + host + goo.im + + + host + www.goo.im + + + + + Good.net + + ruleset + + name + Good.net + rule + + from + ^http://([^/]+)/ + to + https://$1/ + + target + + + host + good.net + + + host + goodnet.com + + + host + this-download-would-be-faster-with-a-premium-account-at-good.net + + + host + *.good.net + + + host + *.goodnet.com + + + host + *.this-download-would-be-faster-with-a-premium-account-at-good.net + + + + + Goodreads + + ruleset + + name + Goodreads + rule + + + from + ^http://(www\.)?goodreads\.com/ + to + https://$1goodreads.com/ + + + from + ^http://photo\.goodreads\.com/ + to + https://s3.amazonaws.com/photo.goodreads.com/ + + + target + + + host + goodreads.com + + + host + *.goodreads.com + + + + + Goodsie (partial) + + ruleset + + name + Goodsie (partial) + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?goodsie\.com/ + to + https://goodsie.com/ + + securecookie + + host + ^goodsie\.com$ + name + .* + + target + + + host + goodsie.com + + + host + www.goodsie.com + + + + + Google APIs + + ruleset + + exclusion + + + pattern + ^http://www\.gstatic\.com/generate_204 + + + pattern + ^http://gdata\.youtube\.com/crossdomain\.xml + + + name + Google APIs + rule + + + from + ^http://(?:www\.)?gmodules\.com/ig/images/ + to + https://www.google.com/ig/images/ + + + from + ^http://(?:www\.)?google\.com/(afsonline/|chart|jsapi|recaptcha/|uds) + to + https://www.google.com/$1 + + + from + ^http://(api|[\w-]+\.client)s\.google\.com/ + to + https://$1s.google.com/ + + + from + ^http://chart\.apis\.google\.com/chart + to + https://chart.googleapis.com/chart + + + from + ^http://(ssl|www)\.google-analytics\.com/ + to + https://$1.google-analytics.com/ + + + from + ^http://(ajax|chart|fonts|www)\.googleapis\.com/ + to + https://$1.googleapis.com/ + + + from + ^http://([^@:\./]+\.)?(commondata)?storage\.googleapis\.com/ + to + https://$1$2storage.googleapis.com/ + + + from + ^http://(?:www\.)?gstatic\.com/ + to + https://www.gstatic.com/ + + + from + ^http://(csi|encrypted-tbn\d|g0|[\w-]+\.metric|ssl|t\d)\.gstatic\.com/ + to + https://$1.gstatic.com/ + + + from + ^http://api\.recaptcha\.net/ + to + https://www.google.com/recaptcha/api/ + + + from + ^http://api-secure\.recaptcha\.net/ + to + https://api-secure.recaptcha.net/ + + + from + ^http://gdata\.youtube\.com/ + to + https://gdata.youtube.com/ + + + securecookie + + host + ^ssl\.google-analytics\.com$ + name + .+ + + target + + + host + gmodules.com + + + host + www.gmodules.com + + + host + google.com + + + host + apis.google.com + + + host + *.apis.google.com + + + host + *.clients.google.com + + + host + www.google.com + + + host + *.google-analytics.com + + + host + *.googleapis.com + + + host + gstatic.com + + + host + *.gstatic.com + + + host + *.recaptcha.net + + + host + gdata.youtube.com + + + + + Google App Engine + + ruleset + + exclusion + + pattern + ^http://photomunchers\.appspot\.com/ + + name + Google App Engine + rule + + from + ^http://([^@:\./]+\.)?appspot\.com/ + to + https://$1appspot.com/ + + securecookie + + host + ^.+\.appspot\.com$ + name + .+ + + target + + + host + appspot.com + + + host + *.appspot.com + + + + + Google Images + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?google(?:\.com?)?\.\w{2,3}/(?!(?:advanced_image_search|imghp|.*tb(?:m=isch|s=sbi))) + + name + Google Images + rule + + + from + ^http://(?:www\.)?google\.com/ + to + https://www.google.com/ + + + from + ^http://images\.google\.com/ + to + https://images.google.com/ + + + from + ^http://(?:www\.)?google\.co/ + to + https://www.google.com/ + + + from + ^http://(?:www\.)?google\.(?:co\.)?(in|kr|ug)/ + to + https://www.google.co.$1/ + + + from + ^http://(?:www\.)?google\.(?:com\.)?(kz|lk)/ + to + https://www.google.$1/ + + + from + ^http://(?:www\.)?google\.(?:com\.)?(bo|ec|mx|sg|sl|vn)/ + to + https://www.google.com.$1/ + + + from + ^http://(?:www\.)?google\.(com?\.)?(ae|ar|at|au|bg|bh|br|ca|ch|cl|co|cr|cu|de|eg|es|fi|fr|gh|gt|hr|id|ie|il|it|jo|jp|jm|ke|kw|lb|ly|my|na|ng|nl|no|nz|om|pa|pe|pk|pl|pt|py|qa|ro|ru|rw|sa|se|sv|th|tr|uk|uy|ve|za|zw)/ + to + https://www.google.$1$2/ + + + target + + + host + google.* + + + host + www.google.* + + + host + google.co.* + + + host + www.google.co.* + + + host + google.com + + + host + images.google.com + + + host + google.com.* + + + host + www.google.com.* + + + + + Google Maps + + ruleset + + exclusion + + + pattern + ^http://maps\.google\.com/local_url + + + pattern + ^http://maps\.google\.gr/transitathens + + + pattern + ^http://maps\.googleapis\.com/map(?:files/lib/map_\d+_\d+\.swf|sapi/publicapi\?file=flashapi) + + + name + Google Maps + rule + + + from + ^http://maps\.google\.([^/]+)/ + to + https://maps.google.$1/ + + + from + ^http://khms\d?\.google\.com/+\??$ + to + https://www.google.com/ + + + from + ^http://(khms\d?|maps-api-ssl|mw2)\.google\.com/ + to + https://$1.google.com/ + + + from + ^http://maps\.g(oogleapis|static)\.com/ + to + https://maps.g$1.com/ + + + downgrade + 1 + from + ^https://maps\.googleapis\.com/map(?=files/lib/map_\d+_\d+\.swf|sapi/publicapi\?file=flashapi) + to + http://maps.googleapis.com/map + + + securecookie + + + host + ^maps\.google\.[\w.]{2,6}$ + name + .+ + + + host + ^maps\.g(?:oogle|oogleapis|static)\.com$ + name + .+ + + + host + ^maps-api-ssl\.google\.com$ + name + .+ + + + target + + + host + maps.google.* + + + host + maps.google.co.* + + + host + khms.google.com + + + host + khms0.google.com + + + host + khms1.google.com + + + host + khms2.google.com + + + host + khms3.google.com + + + host + maps-api-ssl.google.com + + + host + mw2.google.com + + + host + maps.google.com.* + + + host + maps.googleapis.com + + + host + maps.gstatic.com + + + + + Google Search + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?google\.com/search.*tbs=shop + + + pattern + ^http://clients\d\.google\.com/.*client=products.* + + + pattern + ^http://suggestqueries\.google\.com/.*client=.* + + + pattern + ^http://clients[0-9]\.google\.com/ocsp + + + pattern + ^http://(?:www\.)?google\.com/search.*tbm=isch.* + + + name + Google Search + rule + + + from + ^http://encrypted\.google\.com/ + to + https://encrypted.google.com/ + + + from + ^http://(?:www\.)?google\.com/search + to + https://encrypted.google.com/search + + + from + ^http://(?:www\.)?google\.com/about + to + https://www.google.com/about + + + from + ^http://(?:www\.)?google(?:\.com?)?\.[a-z]{2}/firefox/?$ + to + https://encrypted.google.com/ + + + from + ^http://(?:www\.)?google(?:\.com?)?\.[a-z]{2}/firefox + to + https://encrypted.google.com/webhp + + + from + ^http://(?:www\.)?google\.com/webhp + to + https://encrypted.google.com/webhp + + + from + ^http://codesearch\.google\.com/ + to + https://codesearch.google.com/ + + + from + ^http://(?:www\.)?google\.com/codesearch + to + https://www.google.com/codesearch + + + from + ^http://(?:www\.)?google\.com/# + to + https://encrypted.google.com/# + + + from + ^http://(?:www\.)?google\.com/$ + to + https://encrypted.google.com/ + + + from + ^http://ipv6\.google\.com/ + to + https://ipv6.google.com/ + + + from + ^http://(www\.)?google(\.com?)?\.([a-z]{2})/(search\?|#) + to + https://$1google$2.$3/$4 + + + from + ^http://(www\.)?google(\.com?)?\.([a-z]{2})/setprefs + to + https://$1google$2.$3/setprefs + + + from + ^http://clients\d\.google\.com/complete/search + to + https://clients1.google.com/complete/search + + + from + ^http://clients\d\.google(\.com?\.[a-z]{2})/complete/search + to + https://clients1.google.$1/complete/search + + + from + ^http://clients\d\.google\.([a-z]{2})/complete/search + to + https://clients1.google.$1/complete/search + + + from + ^http://suggestqueries\.google\.com/complete/search + to + https://clients1.google.com/complete/search + + + from + ^http://(www\.)?google\.(com?\.)?([a-z]{2})/(?:webhp)?$ + to + https://$1google.$2$3/ + + + from + ^http://(www\.)?google\.(com?\.)?([a-z]{2})/(?:webhp)?\? + to + https://$1google.$2$3/webhp? + + + from + ^http://(www\.)?google(\.com?)?\.([a-z]{2})/teapot + to + https://$1google$2.$3/teapot + + + target + + + host + google.com + + + host + *.google.com + + + host + google.com.* + + + host + www.google.com.* + + + host + google.co.* + + + host + www.google.co.* + + + host + google.* + + + host + www.google.* + + + host + clients1.google.com.* + + + host + clients2.google.com.* + + + host + clients3.google.com.* + + + host + clients4.google.com.* + + + host + clients5.google.com.* + + + host + clients6.google.com.* + + + host + clients1.google.co.* + + + host + clients2.google.co.* + + + host + clients3.google.co.* + + + host + clients4.google.co.* + + + host + clients5.google.co.* + + + host + clients6.google.co.* + + + host + clients1.google.* + + + host + clients2.google.* + + + host + clients3.google.* + + + host + clients4.google.* + + + host + clients5.google.* + + + host + clients6.google.* + + + + + Google Services + + ruleset + + exclusion + + + pattern + ^http://(?:news\.)?google\.com?(\.[a-z][a-z])?/(?:archivesearch|newspapers) + + + pattern + ^http://(?:www\.)?google\.com/analytics/*(?:/[^/]+)?(?:\?.*)?$ + + + pattern + ^http://cbks0\.google\.com/(?:$|\?) + + + pattern + ^http://gg\.google\.com/(?!csi(?:$|\?)) + + + pattern + http://[^@:\./]+-opensocial\.googleusercontent\.com + + + pattern + ^http://clients[0-9]\.google\.com/ocsp + + + name + Google Services + rule + + + from + ^http://lh(\d)\.ggpht\.com/ + to + https://lh$1.ggpht.com/ + + + from + ^http://lh(\d)\.google\.ca/ + to + https://lh$1.google.ca/ + + + from + ^http://(www\.)?g(oogle)?mail\.com/ + to + https://$1g$2mail.com/ + + + from + ^http://(?:www\.)?goo\.gl/ + to + https://goo.gl/ + + + from + ^http://books\.google\.com/ + to + https://encrypted.google.com/ + + + from + ^http://(?:www\.)?google\.((?:com?\.)?\w{2,3})/tisp(?=$|\?) + to + https://www.google.$1/tisp/ + + + from + ^http://(?:www\.)?google\.((?:com?\.)?\w{2,3})/(accounts|adplanner|ads|adsense|adwords|analytics|bookmarks|chrome|chromecast|contacts|coop|cse|css|culturalinstitute|doodles|earth|favicon\.ico|finance|get|goodtoknow|googleblogs|grants|green|hangouts|hostednews|images|intl|js|landing|logos|mapmaker|newproducts|news|nexus|patents|policies|prdhp|profiles|products|reader|s2|script|settings|shopping|support|tisp|tools|transparencyreport|trends|urchin|webmasters)(?=$|[?/]) + to + https://www.google.$1/$2 + + + from + ^http://(?:www\.)?google\.(?:com?\.)?\w{2,3}/(?=calendar|dictionary|doubleclick|foobar|help|ideas|pacman|postini|powermeter|url|webdesigner) + to + https://www.google.com/ + + + from + ^http://(?:www\.)?google\.(?:com?\.)?\w{2,3}/custom + to + https://www.google.com/cse + + + from + ^http://(?:www\.)?google\.com/(\+|appsstatus|books|buzz|chat|chromeos|extern_js|glass|googlebooks|ig|insights|moderator|phone|safebrowsing|videotargetting|webfonts)(?=$|[?/]) + to + https://www.google.com/$1 + + + from + ^http://(accounts|adwords|finance|groups|id|picasaweb|)\.google\.((?:com?\.)?\w{2,3})/ + to + https://$1.google.$2/ + + + from + ^http://(admin|apis|appengine|books|calendar|cast|cbks0|chat|checkout|chrome|clients[12]|cloud|code|[\w-]+\.corp|developers|dl|docs\d?|\d\.docs|drive|encrypted|encrypted-tbn[123]|feedburner|feedproxy|fiber|fonts|gg|glass||goto|health|helpouts|history|(?:hosted)?talkgadget|investor|lh\d|(?:chatenabled\.)?mail|pack|pki|play|plus(?:\.sandbox)?|plusone|productforums|profiles|safebrowsing-cache|cert-test\.sandbox|sb-ssl|script|security|services|servicessites|sites|spreadsheets\d?|support|talk|tools|wallet)\.google\.com/ + to + https://$1.google.com/ + + + from + ^http://earth\.google\.com/ + to + https://www.google.com/earth/ + + + from + ^http://scholar\.google\.((?:com?\.)?\w{2,3})/intl/ + to + https://www.google.$1/intl/ + + + from + ^http://(?:encrypted-)?tbn2\.google\.com/ + to + https://encrypted-tbn2.google.com/ + + + from + ^http://knoll?\.google\.com/ + to + https://knol.google.com/ + + + from + ^http://news\.google\.(?:com?\.)?\w{2,3}/(?:$|news|newshp) + to + https://www.google.com/news + + + from + ^http://trends\.google\.com/ + to + https://www.google.com/trends + + + from + ^http://([^/:@\.]+\.)?googlecode\.com/ + to + https://$1googlecode.com/ + + + from + ^http://([^\./]\.)?googlesource\.com/ + to + https://$1googlesource.com/ + + + from + ^http://partner\.googleadservices\.com/ + to + https://partner.googleadservices.com/ + + + from + ^http://(pagead2|tpc)\.googlesyndication\.com/ + to + https://$1.googlesyndication.com/ + + + from + ^http://www\.googletagservices\.com/tag/js/ + to + https://www.googletagservices.com/tag/js/ + + + from + ^http://([^@:\./]+)\.googleusercontent\.com/ + to + https://$1.googleusercontent.com/ + + + securecookie + + + host + ^(?:accounts|adwords|\.code|login\.corp|developers|docs|\d\.docs|fiber|mail|picasaweb|plus|\.?productforums|support)\.google\.[\w.]{2,6}$ + name + .+ + + + host + ^www\.google\.com$ + name + ^GoogleAccountsLocale_session$ + + + host + ^mail-attachment\.googleusercontent\.com$ + name + .+ + + + host + ^gmail\.com$ + name + .+ + + + host + ^www\.gmail\.com$ + name + .+ + + + host + ^googlemail\.com$ + name + .+ + + + host + ^www\.googlemail\.com$ + name + .+ + + + target + + + host + *.ggpht.com + + + host + gmail.com + + + host + www.gmail.com + + + host + goo.gl + + + host + www.goo.gl + + + host + google.* + + + host + accounts.google.* + + + host + adwords.google.* + + + host + finance.google.* + + + host + groups.google.* + + + host + it.google.* + + + host + news.google.* + + + host + picasaweb.google.* + + + host + scholar.google.* + + + host + www.google.* + + + host + *.google.ca + + + host + google.co.* + + + host + accounts.google.co.* + + + host + adwords.google.co.* + + + host + finance.google.co.* + + + host + groups.google.co.* + + + host + id.google.co.* + + + host + news.google.co.* + + + host + picasaweb.google.co.* + + + host + scholar.google.co.* + + + host + www.google.co.* + + + host + google.com + + + host + *.google.com + + + host + google.com.* + + + host + accounts.google.com.* + + + host + adwords.google.com.* + + + host + groups.google.com.* + + + host + id.google.com.* + + + host + news.google.com.* + + + host + picasaweb.google.com.* + + + host + scholar.google.com.* + + + host + www.google.com.* + + + host + partner.googleadservices.com + + + host + googlecode.com + + + host + *.googlecode.com + + + host + googlemail.com + + + host + www.googlemail.com + + + host + googlesource.com + + + host + *.googlesource.com + + + host + *.googlesyndication.com + + + host + www.googletagservices.com + + + host + googleusercontent.com + + + host + *.googleusercontent.com + + + + + Google Shopping + + ruleset + + name + Google Shopping + rule + + + from + ^http://encrypted\.google\.com/(prdhp|shopping) + to + https://www.google.com/$1 + + + from + ^http://shopping\.google\.com/ + to + https://shopping.google.com/ + + + from + ^http://(?:encrypted|www)\.google\.com/(.*tbm=shop) + to + https://www.google.com/$1 + + + from + ^http://(?:www\.)?google\.((?:com?\.)?(?:ae|ar|at|au|bg|bh|bo|br|ca|ch|cl|cr|co|cu|de|ec|eg|es|fi|fr|gh|gt|hr|id|ie|il|in|it|jm|jo|jp|ke|kr|kw|kz|lb|lk|ly|mx|my|na|ng|nl|no|nz|om|pa|pe|pk|pl|pt|py|qa|ro|ru|rw|sa|sg|sl|se|sv|th|tr|ug|uk|uy|ve|vn|za|zw))/(?=prdhp|shopping) + to + https://www.google.com/$1 + + + target + + + host + google.* + + + host + www.google.* + + + host + google.co.* + + + host + www.google.co.* + + + host + *.google.com + + + host + google.com.* + + + host + www.google.com.* + + + + + Google Videos + + ruleset + + name + Google Videos + rule + + + from + ^http://encrypted\.google\.com/videohp + to + https://encrypted.google.com/videohp + + + from + ^https?://videos?\.google\.com/$ + to + https://encrypted.google.com/videohp + + + from + ^http://(?:www\.)?google\.com/videohp + to + https://encrypted.google.com/videohp + + + from + ^http://(?:images|www|encrypted)\.google\.com/(.*tbm=isch) + to + https://encrypted.google.com/$1 + + + from + ^http://(?:www\.)?google\.(?:com?\.)?(?:au|ca|gh|ie|in|jm|ke|lk|my|na|ng|nz|pk|rw|sl|sg|ug|uk|za|zw)/videohp + to + https://encrypted.google.com/videohp + + + from + ^http://(?:www\.)?google\.(?:com?\.)?(?:ar|bo|cl|co|cu|cr|ec|es|gt|mx|pa|pe|py|sv|uy|ve)/videohp$ + to + https://encrypted.google.com/videohp?hl=es + + + from + ^http://(?:www\.)?google\.(?:com\.)?(?:ae|bh|eg|jo|kw|lb|ly|om|qa|sa)/videohp$ + to + https://encrypted.google.com/videohp?hl=ar + + + from + ^http://(?:www\.)?google\.(?:at|ch|de)/videohp$ + to + https://encrypted.google.com/videohp?hl=de + + + from + ^http://(?:www\.)?google\.(fr|nl|it|pl|ru|bg|pt|ro|hr|fi|no)/videohp$ + to + https://encrypted.google.com/videohp?hl=$1 + + + from + ^http://(?:www\.)?google\.com?\.(id|th|tr)/videohp$ + to + https://encrypted.google.com/videohp?hl=$1 + + + from + ^http://(?:www\.)?google\.com\.il/videohp$ + to + https://encrypted.google.com/videohp?hl=he + + + from + ^http://(?:www\.)?google\.com\.kr/videohp$ + to + https://encrypted.google.com/videohp?hl=ko + + + from + ^http://(?:www\.)?google\.com\.kz/videohp$ + to + https://encrypted.google.com/videohp?hl=kk + + + from + ^http://(?:www\.)?google\.com\.jp/videohp$ + to + https://encrypted.google.com/videohp?hl=ja + + + from + ^http://(?:www\.)?google\.com\.vn/videohp$ + to + https://encrypted.google.com/videohp?hl=vi + + + from + ^http://(?:www\.)?google\.com\.br/videohp$ + to + https://encrypted.google.com/videohp?hl=pt-BR + + + from + ^http://(?:www\.)?google\.se/videohp$ + to + https://encrypted.google.com/videohp?hl=sv + + + from + ^http://(?:www\.)?google\.(?:com?\.)?(?:ar|bo|cl|co|cu|cr|ec|es|gt|mx|pa|pe|py|sv|uy|ve)/videohp\? + to + https://encrypted.google.com/videohp?hl=es& + + + from + ^http://(?:www\.)?google\.(?:com\.)?(?:ae|bh|eg|jo|kw|lb|ly|om|qa|sa)/videohp\? + to + https://encrypted.google.com/videohp?hl=ar& + + + from + ^http://(?:www\.)?google\.(?:at|ch|de)/videohp\? + to + https://encrypted.google.com/videohp?hl=de& + + + from + ^http://(?:www\.)?google\.(fr|nl|it|pl|ru|bg|pt|ro|hr|fi|no)/videohp\? + to + https://encrypted.google.com/videohp?hl=$1& + + + from + ^http://(?:www\.)?google\.com?\.(id|th|tr)/videohp\? + to + https://encrypted.google.com/videohp?hl=$1& + + + from + ^http://(?:www\.)?google\.com\.il/videohp\? + to + https://encrypted.google.com/videohp?hl=he& + + + from + ^http://(?:www\.)?google\.com\.kr/videohp\? + to + https://encrypted.google.com/videohp?hl=ko& + + + from + ^http://(?:www\.)?google\.com\.kz/videohp\? + to + https://encrypted.google.com/videohp?hl=kk& + + + from + ^http://(?:www\.)?google\.com\.jp/videohp\? + to + https://encrypted.google.com/videohp?hl=ja& + + + from + ^http://(?:www\.)?google\.com\.vn/videohp\? + to + https://encrypted.google.com/videohp?hl=vi& + + + from + ^http://(?:www\.)?google\.com\.br/videohp\? + to + https://encrypted.google.com/videohp?hl=pt-BR& + + + from + ^http://(?:www\.)?google\.se/videohp\? + to + https://encrypted.google.com/videohp?hl=sv& + + + from + ^http://video\.google\.com/ThumbnailServer2 + to + https://video.google.com/ThumbnailServer2 + + + target + + + host + *.google.com + + + host + google.com + + + host + www.google.com.* + + + host + google.com.* + + + host + www.google.co.* + + + host + google.co.* + + + host + www.google.* + + + host + google.* + + + + + Google.org + + ruleset + + name + Google.org + rule + + from + ^http://(www\.)?google\.org/ + to + https://$1google.org/ + + target + + + host + google.org + + + host + www.google.org + + + + + GoogleCanada + + ruleset + + name + GoogleCanada + rule + + from + ^http://([^/:@\.]+)\.google\.ca/finance + to + https://$1.google.ca/finance + + target + + + host + google.ca + + + host + *.google.ca + + + + + GoogleMelange + + ruleset + + name + GoogleMelange + rule + + from + ^http://(www\.)?google-melange\.com/ + to + https://www.google-melange.com/ + + target + + + host + www.google-melange.com + + + host + google-melange.com + + + + + GoogleSorry + + ruleset + + name + GoogleSorry + rule + + from + ^http://((sorry|www)\.)?google\.com/sorry/ + to + https://sorry.google.com/sorry/ + + target + + + host + sorry.google.com + + + host + www.google.com + + + host + google.com + + + + + GoogleWatchBlog + + ruleset + + name + GoogleWatchBlog + rule + + from + ^http://(static\.|www\.)?googlewatchblog\.de/ + to + https://$1googlewatchblog.de/ + + securecookie + + host + ^(?:www)?\.googlewatchblog\.de$ + name + .+ + + target + + + host + googlewatchblog.de + + + host + *.googlewatchblog.de + + + + + Gosuslugi.ru + + ruleset + + name + Gosuslugi.ru + rule + + from + ^http://((?:esia|static|www)\.)?gosuslugi\.ru/ + to + https://$1gosuslugi.ru/ + + securecookie + + host + ^(?:esia|static|www)?\.gosuslugi\.ru$ + name + .+ + + target + + + host + gosuslugi.ru + + + host + *.gosuslugi.ru + + + + + Got Vape.net + + ruleset + + name + Got Vape.net + rule + + + from + ^http://m\.gotvape\.(?:com|net)/ + to + https://m.gotvape.net/ + + + from + ^http://(images\.|www\.)?gotvape\.(com|net)/ + to + https://$1gotvape.$2/ + + + securecookie + + host + ^\.(?:m|www)\.gotvape\.net$ + name + .+ + + target + + + host + gotvape.com + + + host + *.gotvape.com + + + host + gotvape.net + + + host + *.gotvape.net + + + + + GotSkinsWholesales.com + + ruleset + + name + GotSkinsWholesales.com + rule + + from + ^http://(www\.)?gotskinswholesales\.com/ + to + https://$1gotskinswholesales.com/ + + securecookie + + host + ^(?:w*\.)?gotskinswholesales\.com$ + name + .+ + + target + + + host + gotskinswholesales.com + + + host + *.gotskinswholesales.com + + + + + Gotland Ring.com + + ruleset + + name + Gotland Ring.com + rule + + from + ^http://(www\.)?gotlandring\.com/ + to + https://$1gotlandring.com/ + + securecookie + + host + ^\.gotlandring\.com$ + name + .+ + + target + + + host + gotlandring.com + + + host + *.gotlandring.com + + + + + Gotmerchant.com (partial) + + ruleset + + name + Gotmerchant.com (partial) + rule + + from + ^http://(?:www\.)?gotmerchant\.com/apply($|[?/]) + to + https://www.gotmerchant.com/apply$1 + + target + + + host + gotmerchant.com + + + host + www.gotmerchant.com + + + + + GourmetGiftBaskets.com (partial) + + ruleset + + name + GourmetGiftBaskets.com (partial) + rule + + + from + ^https?://(?:www\.)?gourmetgiftbaskets\.com/(App_Themes/|images/|login\.aspx|scripts/) + to + https://www.gourmetgiftbaskets.com/$1 + + + from + ^https?://search\.gourmetgiftbaskets\.com/ + to + https://gourmetgiftbaskets.resultspage.com/ + + + target + + + host + gourmetgiftbaskets.com + + + host + *.gourmetgiftbaskets.com + + + + + Gov Waste.co.uk + + ruleset + + name + Gov Waste.co.uk + rule + + from + ^http://(www\.)?govwaste\.co\.uk/ + to + https://$1govwaste.co.uk/ + + securecookie + + host + ^\.govwaste\.co\.uk$ + name + .+ + + target + + + host + govwaste.co.uk + + + host + *.govwaste.co.uk + + + + + GovDelivery (partial) + + ruleset + + exclusion + + pattern + ^http://(content-public-dc2|direct|media)\. + + name + GovDelivery (partial) + rule + + from + ^http://(public(-dc2)?|service|www)\.govdelivery\.com/ + to + https://$1.govdelivery.com/ + + securecookie + + host + (.*\.)?govdelivery\.com$ + name + .* + + target + + host + *.govdelivery.com + + + + GovDex + + ruleset + + name + GovDex + rule + + from + ^http://(?:www\.)?govdex\.gov\.au/ + to + https://www.govdex.gov.au/ + + target + + + host + govdex.gov.au + + + host + *.govdex.gov.au + + + + + Government Security News (partial) + + ruleset + + exclusion + + pattern + ^http://www\.gsnmagazine\.com/user/register(?:$|\?) + + name + Government Security News (partial) + rule + + from + ^http://(www\.)?gsnmagazine\.com/ + to + https://$1gsnmagazine.com/ + + target + + + host + gsnmagazine.com + + + host + www.gsnmagazine.com + + + + + Governo Português + + ruleset + + name + Governo Português + rule + + + from + ^http://portaldocidadao\.pt/ + to + https://www.portaldocidadao.pt/ + + + from + ^http://www\.portaldocidadao\.pt/ + to + https://www.portaldocidadao.pt/ + + + from + ^http://portaldaempresa\.pt/ + to + https://www.portaldaempresa.pt/ + + + from + ^http://www\.portaldaempresa\.pt/ + to + https://www.portaldaempresa.pt/ + + + target + + + host + portaldocidadao.pt + + + host + www.portaldocidadao.pt + + + host + portaldaempresa.pt + + + host + www.portaldaempresa.pt + + + + + Governor-General of the Commonwealth of Australia + + ruleset + + name + Governor-General of the Commonwealth of Australia + rule + + from + ^http://(?:www\.)?gg\.gov\.au/ + to + https://www.gg.gov.au/ + + target + + + host + gg.gov.au + + + host + *.gg.gov.au + + + + + Govspace + + ruleset + + name + Govspace + rule + + + from + ^http://(agedcarecomplaints|asada|ausaid|dosomethingreal|homelessnessclearinghouse|innovation|mtpc|ndoch|resilientcommunities|ruralchampions|skillselect)\.govspace\.gov\.au/ + to + https://$1.govspace.gov.au/ + + + from + ^http://(?:www\.)?govspace\.gov\.au/ + to + https://www.govspace.gov.au/ + + + target + + + host + govspace.gov.au + + + host + *.govspace.gov.au + + + + + Gowalla + + ruleset + + name + Gowalla + rule + + + from + ^http://(?:www\.)?gowalla\.com/ + to + https://gowalla.com/ + + + from + ^http://static\.gowalla\.com/ + to + https://s3.amazonaws.com/static.gowalla.com/ + + + target + + + host + gowalla.com + + + host + www.gowalla.com + + + host + static.gowalla.com + + + + + Gr-assets.com + + ruleset + + name + Gr-assets.com + rule + + from + ^http://(d|s)\.gr-assets\.com/ + to + https://$1.gr-assets.com/ + + target + + host + *.gr-assets.com + + + + Grab Media (partial) + + ruleset + + name + Grab Media (partial) + rule + + from + ^http://images\.grab-media\.com/ + to + https://dg8ui1w5a5byc.cloudfront.net/ + + target + + host + images.grab-media.com + + + + GrabCAD + + ruleset + + name + GrabCAD + rule + + from + ^http://(www\.)?grabcad\.com/ + to + https://$1grabcad.com/ + + target + + + host + grabcad.com + + + host + www.grabcad.com + + + + + GradImages + + ruleset + + name + GradImages + rule + + from + ^http://(www\.)?gradimages\.com/ + to + https://$1gradimages.com/ + + securecookie + + host + ^(?:www\.)?gradimages\.com$ + name + .+ + + target + + + host + gradimages.com + + + host + www.gradimages.com + + + + + Graham Cluley.com (partial) + + ruleset + + name + Graham Cluley.com (partial) + rule + + from + ^http://(www\.)?grahamcluley\.com/wp-(admin(?:$|[?/])|content/|includes/|login\.php) + to + https://$1grahamcluley.com/wp-$2 + + target + + + host + grahamcluley.com + + + host + www.grahamcluley.com + + + + + Grains Research and Development Corporation + + ruleset + + name + Grains Research and Development Corporation + rule + + from + ^http://(?:www\.)?grdc\.com\.au/ + to + https://www.grdc.com.au/ + + target + + + host + grdc.com.au + + + host + *.grdc.com.au + + + + + Gramps-project.org + + ruleset + + name + Gramps-project.org + rule + + + from + ^http://(www\.)?gramps-project\.org/ + to + https://$1gramps-project.org/ + + + from + ^http://bugs\.gramps-project\.org/.* + to + https://gramps-project.org/bugs/my_view_page.php + + + from + ^http://library\.gramps-project\.org/+[^?]+ + to + https://gramps-project.org/library/index.php + + + from + ^http://library\.gramps-project\.org/+ + to + https://gramps-project.org/library/ + + + target + + + host + gramps-project + + + host + *.gramps-project + + + + + Gran-Turismo.com (partial) + + ruleset + + name + Gran-Turismo.com (partial) + rule + + from + ^http://(www\.)?gran-turismo\.com/(?=common/|images/) + to + https://$1gran-turismo.com/ + + target + + + host + gran-turismo.com + + + host + www.gran-turismo.com + + + + + Grand Haven Tribune (partial) + + ruleset + + name + Grand Haven Tribune (partial) + rule + + from + ^http://(?:www\.)?grandhaventribune\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.grandhaventribune.com/$1 + + target + + + host + grandhaventribune.com + + + host + www.grandhaventribune.com + + + + + Grand Lodge of British Columbia + + ruleset + + name + Grand Lodge of British Columbia + rule + + from + ^http://(?:www\.)?(?:freemasonry\.)?bcy\.ca/ + to + https://www.freemasonry.bcy.ca/ + + target + + + host + bcy.ca + + + host + *.bcy.ca + + + + + Grand Rapids Community Media Center + + ruleset + + name + Grand Rapids Community Media Center + platform + mixedcontent + rule + + + from + ^http://(client\.|www\.)?grcmc\.org/ + to + https://$1grcmc.org/ + + + from + ^https?://(?:www\.)?wealthytheatre\.org/ + to + https://www.grcmc.org/theatre/ + + + securecookie + + host + ^.*\.grcmc\.org$ + name + .* + + target + + + host + grcmc.org + + + host + *.grcmc.org + + + host + wealthytheatre.org + + + host + www.wealthytheatre.org + + + + + Graphene-lda.com + + ruleset + + name + Graphene-lda.com + rule + + from + ^http://(www\.)?graphene-lda\.com/ + to + https://$1graphene-lda.com/ + + securecookie + + host + ^\.graphene-lda\.com$ + name + .+ + + target + + + host + graphene-lda.com + + + host + *.graphene-lda.com + + + + + Grassroots.org (partial) + + ruleset + + name + Grassroots.org (partial) + rule + + from + ^http://(www\.)?grassroots\.org/ + to + https://$1grassroots.org/ + + securecookie + + host + ^.*\.grassroots\.org$ + name + .* + + target + + + host + grassroots.org + + + host + *.grassroots.org + + + host + *.www.grassroots.org + + + + + Gratipay.com (partial) + + ruleset + + name + Gratipay.com (partial) + rule + + from + ^http://((?:assets|downloads|www)\.)?gratipay\.com/ + to + https://$1gratipay.com/ + + target + + + host + gratipay.com + + + host + *.gratipay.com + + + + + Gravatar + + ruleset + + name + Gravatar + rule + + from + ^http://((?:[012s]|en|secure|www)\.)?gravatar\.com/ + to + https://$1gravatar.com/ + + target + + + host + gravatar.com + + + host + *.gravatar.com + + + + + Gravity (partial) + + ruleset + + name + Gravity (partial) + rule + + + from + ^http://(?:api\.gravity|i\.api\.grvcdn)\.com/ + to + https://api.gravity.com/ + + + from + ^http://rma-api\.gravity\.com/ + to + https://a248.e.akamai.net/f/1015/4323/4m/rma-api.gravity.com/ + + + from + ^http://(?:analytic|insight)s\.gravity\.com/ + to + https://analytics.gravity.com/ + + + from + ^http://b(?:-ssl)?\.grvcdn\.com/ + to + https://b-ssl.grvcdn.com/ + + + securecookie + + host + ^(?:analytics)?\.gravity\.com$ + name + .+ + + target + + + host + *.gravity.com + + + host + *.grvcdn.com + + + + + Grays of Westminster (partial) + + ruleset + + name + Grays of Westminster (partial) + rule + + from + ^https?://(?:www\.)?graysofwestminster\.co\.uk/(images/|pdf/|\w+\.css$) + to + https://www.graysofwestminster.co.uk/$1 + + target + + + host + graysofwestminster.co.uk + + + host + www.graysofwestminster.co.uk + + + + + Greasy Fork.org + + ruleset + + name + Greasy Fork.org + rule + + from + ^http://(?:www\.)?greasyfork\.org/ + to + https://greasyfork.org/ + + securecookie + + host + ^greasyfork\.org$ + name + .+ + + target + + + host + greasyfork.org + + + host + www.greasyfork.org + + + + + Great Scott Gadgets.com + + ruleset + + name + Great Scott Gadgets.com + rule + + from + ^http://(www\.)?greatscottgadgets\.com/ + to + https://$1greatscottgadgets.com/ + + target + + + host + greatscottgadgets.com + + + host + www.greatscottgadgets.com + + + + + GreatFire.org + + ruleset + + name + GreatFire.org + rule + + from + ^https?://((?:www\.)?(?:(?:zh|en)\.)?)greatfire\.org/ + to + https://$1greatfire.org/ + + securecookie + + host + ^(?:www\.)?(?:(?:zh|en)\.)?greatfire\.org$ + name + .* + + target + + + host + greatfire.org + + + host + www.greatfire.org + + + host + en.greatfire.org + + + host + www.en.greatfire.org + + + host + zh.greatfire.org + + + host + www.zh.greatfire.org + + + + + Greatnet.de (partial) + + ruleset + + name + Greatnet.de (partial) + rule + + from + ^http://(www\.)?greatnet\.de/ + to + https://$1greatnet.de/ + + securecookie + + host + ^www\.greatnet\.de$ + name + .+ + + target + + + host + greatnet.de + + + host + www.greatnet.de + + + + + Greatnonprofits.org (partial) + + ruleset + + exclusion + + pattern + ^http://api\.greatnonprofits\.org/+(?!whitelabel/reviews/[\w-]+(?:$|\?)) + + name + Greatnonprofits.org (partial) + rule + + + from + ^http://(?:api\.|(www\.))?greatnonprofits\.org/ + to + https://$1greatnonprofits.org/ + + + from + ^http://(?:cdn|static)\.greatnonprofits\.org/ + to + https://static.greatnonprofits.org/ + + + securecookie + + host + ^greatnonprofits\.org$ + name + .+ + + target + + + host + greatnonprofits.org + + + host + *.greatnonprofits.org + + + + + Greek-banks + + ruleset + + name + Greek-banks + rule + + + from + ^http://www\.nbg\.gr/ + to + https://www.nbg.gr/ + + + from + ^http://(www\.)?alpha\.gr/ + to + https://www.alpha.gr/ + + + from + ^http://www\.alphabankcards\.gr/ + to + https://www.alphabankcards.gr/ + + + from + ^http://(www\.)?probank\.gr/ + to + https://www.probank.gr/ + + + securecookie + + + host + ^www\.nbg\.gr$ + name + .* + + + host + ^www\.alpha\.gr$ + name + .* + + + host + ^www\.alphabankcards\.gr$ + name + .* + + + host + ^www\.probank\.gr$ + name + .* + + + target + + + host + www.nbg.gr + + + host + www.alpha.gr + + + host + www.alphabankcards.gr + + + host + www.probank.gr + + + + + Greek-gov + + ruleset + + name + Greek-gov + rule + + + from + ^http://(www\.|lists\.)?noc\.grnet\.gr/ + to + https://$1noc.grnet.gr/ + + + from + ^http://(www1|login\.)gsis\.gr/ + to + https://$1gsis.gr/ + + + from + ^http://service\.eudoxus\.gr/ + to + https://service.eudoxus.gr/ + + + from + ^http://lists\.grnet\.gr/ + to + https://lists.grnet.gr/ + + + securecookie + + + host + ^(.*\.)?noc\.grnet\.gr$ + name + .* + + + host + ^(.*\.)?gsis\.gr$ + name + .* + + + host + ^service\.eudoxus\.gr$ + name + .* + + + host + ^lists\.grnet\.gr$ + name + .* + + + target + + + host + noc.grnet.gr + + + host + *.noc.grnet.gr + + + host + *.gsis.gr + + + host + service.eudoxus.gr + + + host + lists.grnet.gr + + + host + lists.noc.grnet.gr + + + + + Greek-media + + ruleset + + name + Greek-media + rule + + from + ^http://(\w+\.)?antenna\.gr/ + to + https://$1antenna.gr/ + + securecookie + + host + ^(.*\.)?antenna\.gr$ + name + .* + + target + + + host + antenna.gr + + + host + *.antenna.gr + + + + + Greek-travel + + ruleset + + name + Greek-travel + rule + + from + ^http://(\w+\.)?aegeanair\.com/ + to + https://$1aegeanair.com/ + + securecookie + + host + ^(.*\.)?aegeanair\.com$ + name + .* + + target + + host + *.aegeanair.com + + + + Greek-various + + ruleset + + name + Greek-various + rule + + + from + ^http://((www|webmail)\.)?void\.gr/ + to + https://$1void.gr/ + + + from + ^http://pad\.void\.gr/ + to + https://pad.void.gr/ + + + from + ^http://(www\.)?hackerspace\.gr/ + to + https://$1hackerspace.gr/ + + + from + ^http://(www\.)?pirateparty\.gr/ + to + https://$1pirateparty.gr/ + + + from + ^http://(www\.)?ellak\.gr/ + to + https://www.ellak.gr/ + + + from + ^http://www\.dei(?:\.com)?\.gr/ + to + https://www.dei.com.gr/ + + + from + ^http://www\.eydap\.gr/ + to + https://www.eydap.gr/ + + + from + ^http://(www\.)?eduroam\.gr/ + to + https://$1eduroam.gr/ + + + from + ^http://(www\.)?skytal\.es/ + to + https://$1skytal.es/ + + + from + ^http://(www\.)?barikat\.gr/ + to + https://$1barikat.gr/ + + + from + ^http://(www\.)?dionyziz\.com/ + to + https://$1dionyziz.com/ + + + securecookie + + + host + ^(.*\.)?void\.gr$ + name + .* + + + host + ^(www\.)?hackerspace\.gr$ + name + .* + + + host + ^(www\.)?pirateparty\.gr$ + name + .* + + + host + ^(www\.)?ellak\.gr$ + name + .* + + + host + ^www\.dei\.com\.gr$ + name + .* + + + host + ^www\.eydap\.gr$ + name + .* + + + host + ^(www\.)?eduroam\.gr$ + name + .* + + + host + ^(www\.)?skytal\.es$ + name + .* + + + host + ^(www\.)?barikat\.gr$ + name + .* + + + host + ^(www\.)?dionyziz\.com$ + name + .* + + + target + + + host + void.gr + + + host + *.void.gr + + + host + hackerspace.gr + + + host + *.hackerspace.gr + + + host + pirateparty.gr + + + host + *.pirateparty.gr + + + host + ellak.gr + + + host + www.ellak.gr + + + host + www.dei.gr + + + host + www.dei.com.gr + + + host + www.eydap.gr + + + host + *.eduroam.gr + + + host + skytal.es + + + host + www.skytal.es + + + host + barikat.gr + + + host + www.barikat.gr + + + host + dionyziz.com + + + host + www.dionyziz.com + + + + + Green Coffee Bean Extract + + ruleset + + name + Green Coffee Bean Extract + rule + + from + ^http://(www\.)?mygreenbeanextract\.com/ + to + https://$1mygreenbeanextract.com/ + + securecookie + + host + ^(?:w*\.)?mygreenbeanextract\.com$ + name + .+ + + target + + + host + mygreenbeanextract.com + + + host + *.mygreenbeanextract.com + + + + + Green PolkaDot Box + + ruleset + + name + Green PolkaDot Box + rule + + from + ^http://(www\.)?greenpolkadotbox\.com/ + to + https://$1greenpolkadotbox.com/ + + securecookie + + host + ^\.(?:www\.)?greenpolkadotbox\.com$ + name + .+ + + target + + + host + greenpolkadotbox.com + + + host + *.greenpolkadotbox.com + + + host + *.www.greenpolkadotbox.com + + + + + Green Smoke (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?greensmoke\.co\.uk/(?!catalog/(?:(?:affinfo|affinfoFooter|affPhoneHeader|sessionTopLogin)\.php|images/|js/|modules/|skins/)) + + name + Green Smoke (partial) + rule + + from + ^http://(earn\.|www\.)?greensmoke\.co(\.uk|m)/ + to + https://$1greensmoke.co$2/ + + securecookie + + host + ^(?:earn|www)\.greensmoke\.com$ + name + .+ + + target + + + host + greensmoke.co.uk + + + host + www.greensmoke.co.uk + + + host + greensmoke.com + + + host + *.greensmoke.com + + + + + Green Vehicle Guide + + ruleset + + name + Green Vehicle Guide + rule + + from + ^http://(?:www\.)?greenvehicleguide\.gov\.au/ + to + https://www.greenvehicleguide.gov.au/ + + target + + + host + greenvehicleguide.gov.au + + + host + *.greenvehicleguide.gov.au + + + + + GreenIT-BB (partial) + + ruleset + + name + GreenIT-BB (partial) + rule + + from + ^http://benchmarking\.greenit-bb\.de/ + to + https://benchmarking.greenit-bb.de/ + + securecookie + + host + ^benchmarking\.greenit-bb\.de$ + name + .* + + target + + host + benchmarking.greenit-bb.de + + + + GreenQloud.com + + ruleset + + name + GreenQloud.com + rule + + from + ^http://(my\.|www\.)?greenqloud\.com/ + to + https://$1greenqloud.com/ + + target + + + host + greenqloud.com + + + host + *.greenqloud.com + + + + + GreenSky Credit.com (partial) + + ruleset + + name + GreenSky Credit.com (partial) + rule + + + from + ^http://(www\.)?greensky\.com/(images/|payment(?:$|\?|/)|secure/) + to + https://$1greensky.com/$2 + + + from + ^http://(www\.)?greensky\.com/(favicon\.ico|_media/|_ui/) + to + https://$1greensky.com/secure/$2 + + + target + + + host + greensky.com + + + host + *.greensky.com + + + + + Greenbone (partial) + + ruleset + + name + Greenbone (partial) + rule + + from + ^http://support\.greenbone\.net/ + to + https://support.greenbone.net/ + + target + + host + support.greenbone.net + + + + Greenhost + + ruleset + + name + Greenhost + rule + + from + ^http://(www\.)?greenhost\.nl/ + to + https://$1greenhost.nl/ + + securecookie + + host + ^(?:www\.)?greenhost\.nl$ + name + .+ + + target + + + host + greenhost.nl + + + host + www.greenhost.nl + + + + + Greenhouse.io + + ruleset + + name + Greenhouse.io + rule + + + from + ^http://(?:www\.)?greenhouse\.io/ + to + https://www.greenhouse.io/ + + + from + ^http://(blog|boards|info)\.greenhouse\.io/ + to + https://$1.greenhouse.io/ + + + target + + + host + greenhouse.io + + + host + *.greenhouse.io + + + + + Greentech Media + + ruleset + + name + Greentech Media + rule + + from + ^http://(www\.)?greentechmedia\.com/ + to + https://$1greentechmedia.com/ + + securecookie + + host + ^www\.greentechmedia\.com$ + name + .* + + target + + + host + greentechmedia.com + + + host + www.greentechmedia.com + + + + + GreenvilleOnline.com + + ruleset + + name + GreenvilleOnline.com + rule + + from + ^http://(?:cmsimg\.|www\.)?greenvilleonline\.com/ + to + https://www.greenvilleonline.com/ + + target + + + host + greenvilleonline.com + + + host + *.greenvilleonline.com + + + + + Greplin.com + + ruleset + + name + Greplin.com + platform + firefox + rule + + from + ^http://(www\.)?greplin\.com/ + to + https://www.greplin.com/ + + securecookie + + + host + ^greplin\.com$ + name + .+ + + + host + ^www\.greplin\.com$ + name + .+ + + + target + + + host + greplin.com + + + host + www.greplin.com + + + + + Grepular + + ruleset + + name + Grepular + rule + + from + ^http://(?:secure\.|(www\.))?grepular\.com/ + to + https://$1grepular.com/ + + target + + + host + grepular.com + + + host + *.grepular.com + + + + + Gridz Direct.com (false MCB) + + ruleset + + name + Gridz Direct.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.gridzdirect\.com/ + to + https://www.gridzdirect.com/ + + securecookie + + host + ^\.(?:www\.)?gridzdirect\.com$ + name + .+ + + target + + host + *.gridzdirect.com + + + + Gridz Direct.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.gridzdirect.com/(?!favicon\.ico|js/|media/|skin/) + + name + Gridz Direct.com (partial) + rule + + from + ^http://(www\.)?gridzdirect\.com/ + to + https://$1gridzdirect.com/ + + target + + + host + gridzdirect.com + + + host + www.gridzdirect.com + + + + + Griffith University + + ruleset + + name + Griffith University + rule + + + from + ^https?://griffith\.edu\.au/ + to + https://www.griffith.edu.au/ + + + from + ^http://www\.griffith\.edu\.au/(__data/|intranet) + to + https://www.griffith.edu.au/$1 + + + from + ^http://(ias|learning|(?:intranet|learning|portal|www3)\.secure)\.griffith\.edu\.au/ + to + https://$1.griffith.edu.au/ + + + from + ^https?://intranet\.griffith\.edu\.au/ + to + https://intranet.secure.griffith.edu.au/ + + + from + ^https?://www3\.griffith\.edu\.au/(03/ertiki|schema)/ + to + https://www3.secure.griffith.edu.au/$1/ + + + securecookie + + host + ^www3\.secure\.griffith\.edu\.au$ + name + .* + + target + + + host + griffith.edu.au + + + host + *.griffith.edu.au + + + host + *.secure.griffith.edu.au + + + + + Grilling is Happiness.com + + ruleset + + name + Grilling is Happiness.com + rule + + from + ^http://(www\.)?grillingishappiness\.com/ + to + https://$1grillingishappiness.com/ + + securecookie + + host + ^(?:w*\.)?grillingishappiness\.com$ + name + .+ + + target + + + host + grillingishappiness.com + + + host + *.grillingishappiness.com + + + + + Grinnell College (partial) + + ruleset + + name + Grinnell College (partial) + rule + + + from + ^https?://(?:www\.)?grinnell\.edu/(files/|includes/|misc/|sites/) + to + https://www.grinnell.edu/$1 + + + from + ^http://(autodiscover|db|digital|help|imap|itwebapps|libweb|loggia|mail)\.grinnell\.edu/ + to + https://$1.grinnell.edu/ + + + from + ^https?://(?:www\.)?cat\.lib\.grinnell\.edu/ + to + https://cat.lib.grinnell.edu/ + + + securecookie + + host + ^(?:\.?bookstore|db|\.?digital|help|cat\.lib|mail)\.grinnell\.edu$ + name + .+ + + target + + + host + grinnell.edu + + + host + *.grinnell.edu + + + + + Grocery Server.com (partial) + + ruleset + + name + Grocery Server.com (partial) + rule + + from + ^http://(?:wanderful\.|(www\.))?groceryserver\.com/ + to + https://$1groceryserver.com/ + + securecookie + + host + ^(?:www\.)?groceryserver\.com$ + name + .+ + + target + + + host + groceryserver.com + + + host + *.groceryserver.com + + + + + Grok Learning.com + + ruleset + + name + Grok Learning.com + rule + + from + ^http://(www\.)?groklearning(-cdn)?\.com/ + to + https://$1groklearning$2.com/ + + securecookie + + host + ^groklearning\.com$ + name + .+ + + target + + + host + groklearning.com + + + host + www.groklearning.com + + + host + groklearning-cdn.com + + + + + Groton.org + + ruleset + + name + Groton.org + rule + + + from + ^http://www\.groton\.org/ + to + https://www.groton.org/ + + + from + ^http://groton\.org/ + to + https://www.groton.org/ + + + target + + + host + www.groton.org + + + host + groton.org + + + + + Group Commerce (partial) + + ruleset + + name + Group Commerce (partial) + rule + + from + ^http://admin\.groupcommerce\.com/ + to + https://admin.groupcommerce.com/ + + target + + host + admin.groupcommerce.com + + + + GroupLogic (partial) + + ruleset + + name + GroupLogic (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?grouplogic\.com/ + to + https://www.grouplogic.com/ + + securecookie + + host + ^www\.grouplogic\.com$ + name + .* + + target + + + host + grouplogic.com + + + host + www.grouplogic.com + + + + + Grouper Social Club.com + + ruleset + + name + Grouper Social Club.com + rule + + from + ^http://(www\.)?groupersocialclub\.com(\.au)?/ + to + https://$1groupersocialclub.com$2/ + + securecookie + + host + ^(?:www)?\.groupersocialclub\.com(?:\.au)?$ + name + .+ + + target + + + host + groupersocialclub.com + + + host + *.groupersocialclub.com + + + host + groupersocialclub.com.au + + + host + *.groupersocialclub.com.au + + + + + Groupon DE/UK + + ruleset + + exclusion + + + pattern + ^http://(news|jobs|blog)\.groupon\.co\.uk/ + + + pattern + ^http://action\.groupon\.de/ + + + name + Groupon DE/UK + rule + + + from + ^http://groupon\.(de|co\.uk)/ + to + https://www.groupon.$1/ + + + from + ^http://([^/:@\.]+)\.groupon\.(de|co\.uk)/ + to + https://$1.groupon.$2/ + + + target + + + host + groupon.de + + + host + *.groupon.de + + + host + groupon.co.uk + + + host + *.groupon.co.uk + + + + + Groupon Works.com + + ruleset + + name + Groupon Works.com + rule + + from + ^http://(www\.)?grouponworks\.com/ + to + https://$1grouponworks.com/ + + target + + + host + grouponworks.com + + + host + www.grouponworks.com + + + + + Groupon.com (partial) + + ruleset + + exclusion + + pattern + ^http://touch\.groupon\.com/+(?!assets/|favicon\.ico) + + name + Groupon.com (partial) + rule + + from + ^http://((?:api|engineering|jobs|m|merchants|touch2?|test\.uat|www)\.)?groupon\.com/ + to + https://$1groupon.com/ + + securecookie + + host + ^merchants\.groupon\.com$ + name + .+ + + target + + + host + groupon.com + + + host + *.groupon.com + + + + + Groupon.gr + + ruleset + + name + Groupon.gr + rule + + from + ^http://(\w+\.)?groupon\.gr/ + to + https://$1groupon.gr/ + + securecookie + + host + ^(.*\.)?groupon\.gr$ + name + .* + + target + + + host + groupon.gr + + + host + *.groupon.gr + + + + + Groupon.se + + ruleset + + name + Groupon.se + rule + + + from + ^http://groupon\.se/ + to + https://www.groupon.se/ + + + from + ^http://www\.groupon\.se/ + to + https://www.groupon.se/ + + + target + + host + groupon.se + + + + Grow HQ.com + + ruleset + + name + Grow HQ.com + rule + + from + ^http://((?:app|s3|www)\.)?growhq\.com/ + to + https://$1growhq.com/ + + securecookie + + host + ^\.growhq\.com$ + name + .+ + + target + + + host + growhq.com + + + host + *.growhq.com + + + + + Growery (partial) + + ruleset + + name + Growery (partial) + rule + + from + ^http://(www\.)?growery\.org/(bnr/|favicon\.www\.growery\.org\.ico|forum/(?:avatar|image|stylesheet)s/|images/|smarty/) + to + https://$1growery.org/$2 + + target + + + host + growery.org + + + host + www.growery.org + + + + + Grupfoni + + ruleset + + name + Grupfoni + rule + + + from + ^http://images\.grupfoni\.com/ + to + https://images.grupfoni.com/ + + + from + ^http://(www\.)?grupfoni\.com/ + to + https://www.grupfoni.com/ + + + securecookie + + host + ^(.*\.)?grupfoni\.com$ + name + .* + + target + + + host + www.grupfoni.com + + + host + grupfoni.com + + + host + images.grupfoni.com + + + + + Gsfacket.se + + ruleset + + name + Gsfacket.se + rule + + + from + ^http://gsfacket\.se/ + to + https://www.gsfacket.se/ + + + from + ^http://www\.gsfacket\.se/ + to + https://www.gsfacket.se/ + + + target + + + host + gsfacket.se + + + host + www.gsfacket.se + + + + + Guag.es (partial) + + ruleset + + name + Guag.es (partial) + rule + + + from + ^http://get\.gaug\.es/theme/.*/stylesheets/images/favicon\.png$ + to + https://secure.guag.es/favicon.png + + + from + ^http://secure\.gaug\.es/ + to + https://secure.gaug.es/ + + + target + + host + *.gaug.es + + + + Guarantorus Loans.co.uk + + ruleset + + name + Guarantorus Loans.co.uk + rule + + from + ^http://(www\.)?guarantorusloans\.co\.uk/ + to + https://$1guarantorusloans.co.uk/ + + target + + + host + guarantorusloans.co.uk + + + host + www.guarantorusloans.co.uk + + + + + Guardian Project + + ruleset + + name + Guardian Project + rule + + from + ^http://(dev\.|www\.)?guardianproject\.info/ + to + https://$1guardianproject.info/ + + securecookie + + host + ^dev\.guardianproject\.info$ + name + .+ + + target + + + host + guardianproject.info + + + host + *.guardianproject.info + + + + + Guardian Subscriptions.co.uk + + ruleset + + name + Guardian Subscriptions.co.uk + rule + + from + ^http://(www\.)?guardiansubscriptions\.co\.uk/ + to + https://$1guardiansubscriptions.co.uk/ + + securecookie + + host + ^(?:www\.)?guardiansubscriptions\.co\.uk$ + name + .+ + + target + + + host + guardiansubscriptions.co.uk + + + host + www.guardiansubscriptions.co.uk + + + + + Guardian.co.tt (false MCB) + + ruleset + + name + Guardian.co.tt (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?guardian\.co\.tt/ + to + https://$1guardian.co.tt/ + + securecookie + + host + ^(?:www)?\.guardian\.co\.tt$ + name + .+ + + target + + + host + guardian.co.tt + + + host + *.guardian.co.tt + + + + + GuideStar (partial) + + ruleset + + name + GuideStar (partial) + rule + + + from + ^http://(?:www2?\.)?guidestar\.org/ + to + https://www.guidestar.org/ + + + from + ^http://(commerce|partners)\.guidestar\.org/ + to + https://$1.guidestar.org/ + + + securecookie + + host + ^(?:www)?\.guidestar\.org$ + name + .+ + + target + + + host + guidestar.org + + + host + *.guidestar.org + + + + + Guidebook.com + + ruleset + + name + Guidebook.com + rule + + from + ^http://(www\.)?guidebook\.com/ + to + https://$1guidebook.com/ + + securecookie + + host + ^\.guidebook\.com$ + name + .+ + + target + + + host + guidebook.com + + + host + *.guidebook.com + + + + + Guifi.net (partial) + + ruleset + + name + Guifi.net (partial) + rule + + from + ^http://(www\.)?guifi\.net/ + to + https://$1guifi.net/ + + securecookie + + host + \.guifi\.net$ + name + .+ + + target + + + host + guifi.net + + + host + *.guifi.net + + + + + Guild Wars 2 (partial) + + ruleset + + name + Guild Wars 2 (partial) + rule + + from + ^http://((?:account|buy|forum(?:-de|-e[ns]|-fr)?|register|support|www)\.)?guildwars2\.com/ + to + https://$1guildwars2.com/ + + securecookie + + host + ^.+\.guildwars\.com$ + name + .+ + + target + + + host + guildwars2.com + + + host + *.guildwars2.com + + + + + Guitar Center.com (partial) + + ruleset + + name + Guitar Center.com (partial) + rule + + + from + ^http://(?:www\.)?guitarcenter\.com/(?=Ajax/|favicon\.ico|[iI]ncludes/) + to + https://www.guitarcenter.com/ + + + from + ^http://(clearance|gc|images|m|stores)\.guitarcenter\.com/ + to + https://$1.guitarcenter.com/ + + + securecookie + + host + ^(?:clearance|gc)\.guitarcenter\.com$ + name + .+ + + target + + + host + guitarcenter.com + + + host + *.guitarcenter.com + + + + + Guldencoin.com + + ruleset + + name + Guldencoin.com + rule + + from + ^http://(www\.)?guldencoin\.com/ + to + https://$1guldencoin.com/ + + securecookie + + host + ^\.guldencoin\.com$ + name + .+ + + target + + + host + guldencoin.com + + + host + *.guldencoin.com + + + + + Gulesider + + ruleset + + exclusion + + pattern + ^http://kundesider\.gulesider\.no/ + + name + Gulesider + platform + mixedcontent + rule + + from + ^http://(?:www\.)?gulesider\.no/ + to + https://www.gulesider.no/ + + target + + + host + gulesider.no + + + host + www.gulesider.no + + + + + GumGum (partial) + + ruleset + + name + GumGum (partial) + rule + + + from + ^http://(www\.)?gumgum\.com/(?=images/|(?:login|terms-of-service)(?:/?$|\?)) + to + https://$1gumgum.com/ + + + from + ^http://(ads|g2)\.gumgum\.com/ + to + https://$1.gumgum.com/ + + + from + ^http://c\.gumgum\.com/ + to + https://d1u2cbczpt82kt.cloudfront.net/ + + + target + + + host + gumgum.com + + + host + *.gumgum.com + + + + + Gumroad.com + + ruleset + + name + Gumroad.com + rule + + + from + ^http://(www\.)?gum\.co/ + to + https://$1gum.co/ + + + from + ^http://((?:api|help|static-[12]|www)\.)?gumroad\.com/ + to + https://$1gumroad.com/ + + + securecookie + + + host + ^(?:\.|www\.)?gum\.co$ + name + .+ + + + host + ^(?:\.|api\.|www\.)?gumroad\.com$ + name + .+ + + + target + + + host + gum.co + + + host + *.gum.co + + + host + gumroad.com + + + host + *.gumroad.com + + + + + Gumstix + + ruleset + + name + Gumstix + rule + + from + ^http://(www\.)?gumstix\.com/ + to + https://$1gumstix.com/ + + securecookie + + host + ^\.gumstix\.com$ + name + .+ + + target + + + host + gumstix.com + + + host + *.gumstix.com + + + + + GunIO + + ruleset + + name + GunIO + platform + mixedcontent + rule + + from + ^http://(www\.)?gun\.io/ + to + https://$1gun.io/ + + securecookie + + host + ^(.+\.)?gun\.io$ + name + .* + + target + + + host + gun.io + + + host + www.gun.io + + + + + Gust (partial) + + ruleset + + name + Gust (partial) + rule + + from + ^http://(www\.)?gust\.com/(?!$) + to + https://$1gust.com/ + + target + + + host + gust.com + + + host + www.gust.com + + + + + Gutenburg.org + + ruleset + + name + Gutenburg.org + rule + + from + ^http://(?:www\.)?gutenberg\.org/ + to + https://www.gutenberg.org/ + + securecookie + + host + ^\.gutenberg\.org$ + name + .+ + + target + + + host + gutenberg.org + + + host + *.gutenberg.org + + + + + Guttmacher Institute + + ruleset + + name + Guttmacher Institute + rule + + + from + ^http://gu\.tt/ + to + https://bit.ly/ + + + from + ^http://(www\.)?guttmacher\.org/ + to + https://$1guttmacher.org/ + + + securecookie + + host + ^(?:w*\.)?guttmacher\.org$ + name + .+ + + target + + + host + gu.tt + + + host + guttmacher.org + + + host + *.guttmacher.org + + + + + Gyft.com + + ruleset + + name + Gyft.com + rule + + from + ^http://(app\.|www\.)?gyft\.com/ + to + https://$1gyft.com/ + + target + + + host + gyft.com + + + host + *.gyft.com + + + + + GymGlish (partial) + + ruleset + + exclusion + + + pattern + ^https?://(?:www\.)?gymglish\.(?:\w\w|com\.br|co\.uk)/(?!images/) + + + pattern + ^https?://(?:www\.)?gymglish\.vn/ + + + pattern + ^https?://webservers6?\.gymglish\.com/(?!images/) + + + name + GymGlish (partial) + rule + + from + ^https?://(?:webservers6?\.|www\.)?gymglish\.(?:\w\w|com|com\.br|co\.uk)/ + to + https://www.gymglish.com/ + + securecookie + + host + ^.+\.gymglish\.com$ + name + .+ + + target + + + host + gymglish.* + + + host + www.gymglish.* + + + host + *.gymglish.com + + + host + gymglish.com.br + + + host + www.gymglish.com.br + + + host + gymglish.co.uk + + + host + www.gymglish.co.uk + + + + + Gynecomastia.org + + ruleset + + name + Gynecomastia.org + rule + + from + ^http://(www\.)?gynecomastia\.org/ + to + https://www.gynecomastia.org/ + + securecookie + + host + ^((www)?\.)?gynecomastia\.org$ + name + .+ + + target + + + host + gynecomastia.org + + + host + www.gynecomastia.org + + + + + Gémklub + + ruleset + + name + Gémklub + rule + + from + ^http://www\.gemklub\.hu/ + to + https://www.gemklub.hu/ + + target + + host + www.gemklub.hu + + + + H Sivonen.fi + + ruleset + + name + H Sivonen.fi + rule + + from + ^http://(www\.)?hsivonen\.fi/ + to + https://$1hsivonen.fi/ + + target + + + host + hsivonen.fi + + + host + www.hsivonen.fi + + + + + H+: the Digital Series + + ruleset + + name + H+: the Digital Series + rule + + from + ^http://(?:www\.)?hplusdigitalseries\.com/ + to + https://www.hplusdigitalseries.com/ + + target + + + host + hplusdigitalseries.com + + + host + www.hplusdigitalseries.com + + + + + H2HC.com.br + + ruleset + + name + H2HC.com.br + rule + + from + ^http://(www\.)?h2hc\.com\.br/ + to + https://$1h2hc.com.br/ + + target + + + host + h2hc.com.br + + + host + www.h2hc.com.br + + + + + HBAnet.org + + ruleset + + name + HBAnet.org + rule + + from + ^http://(?:www\.)?hbanet\.org/ + to + https://www.hbanet.org/ + + securecookie + + host + ^\.hbanet\.org$ + name + .+ + + target + + + host + hbanet.org + + + host + *.hbanet.org + + + + + HBO + + ruleset + + name + HBO + rule + + + from + ^https?://(?:i\.lv3\.|www\.)?hbo\.com/ + to + https://www.hbo.com/ + + + from + ^http://secure\.hbo\.com/ + to + https://secure.hbo.com/ + + + target + + + host + hbo.com + + + host + *.hbo.com + + + host + i.lv3.hbo.com + + + + + HBR.org (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?hbr\.org/+(?!(?:checkout|forgot-password|register|sign-in|speed-pay)(?:$|[?/])|hbrg-main/) + + name + HBR.org (partial) + rule + + + from + ^http://(?:static\.|(ox-d\.|www\.))?hbr\.org/ + to + https://$1hbr.org/ + + + from + ^http://web\.hbr\.org/ + to + https://hbdm.hbsp.harvard.edu/ + + + securecookie + + + host + ^\.hbr\.org$ + name + ^__qca$ + + + host + ^ox-d\.hbr\.org$ + name + .+ + + + target + + + host + hbr.org + + + host + *.hbr.org + + + + + HBoeck.de + + ruleset + + name + HBoeck.de + rule + + from + ^http://((?:blog|svn|www)\.)?hboeck\.de/ + to + https://$1hboeck.de/ + + securecookie + + host + ^(?:blog\.)?hboeck\.de$ + name + .+ + + target + + + host + hboeck.de + + + host + *.hboeck.de + + + + + HCL Technologies (partial) + + ruleset + + name + HCL Technologies (partial) + rule + + + from + ^http://(autodiscover|(?:chn|comnetweb|isd)?mail|meme|mpindia|mycampus|(?:as\.|download\.)?ocsweb|remedy)\.hcl\.com/ + to + https://$1.hcl.com/ + + + from + ^http://(autodiscover|hcltmail(?:-chn)?)\.hcl\.in/ + to + https://$1.hcl.in/ + + + from + ^http://autodiscover\.hcl-axon\.com/ + to + https://autodiscover.hcl-axon.com/ + + + from + ^http://webmail\.hcltech\.com/ + to + https://webmail.hcltech.com/ + + + securecookie + + + host + ^(?:(?:chn|comnetweb|isd)?mail|\.?meme|mpindia|mycampus|(?:as\.|download\.)?ocsweb|remedy)\.hcl\.com$ + name + .+ + + + host + ^hcltmail(?:-chn)?\.hcl\.in$ + name + .+ + + + host + ^webmail\.hcltech\.com$ + name + .+ + + + target + + + host + *.hcl.com + + + host + *.hcl.in + + + host + autodiscover.hcl-axon.com + + + host + webmail.hcltech.com + + + + + HD.se + + ruleset + + name + HD.se + rule + + + from + ^http://hd\.se/ + to + https://hd.se/ + + + from + ^http://www\.hd\.se/ + to + https://hd.se/ + + + target + + + host + hd.se + + + host + *.hd.se + + + + + HDserviceproviders.com + + ruleset + + name + HDserviceproviders.com + rule + + from + ^http://www\.hdserviceproviders\.com/ + to + https://www.hdserviceproviders.com/ + + securecookie + + host + ^www\.hdserviceproviders\.com$ + name + .+ + + target + + host + www.hdserviceproviders.com + + + + HDtracks.com + + ruleset + + name + HDtracks.com + rule + + from + ^http://(?:www\.)?hdtracks\.com/ + to + https://www.hdtracks.com/ + + securecookie + + host + ^www\.hdtracks\.com$ + name + .+ + + target + + + host + hdtracks.com + + + host + www.hdtracks.com + + + + + HE Tunnel Broker + + ruleset + + name + HE Tunnel Broker + rule + + from + ^http://(ipv[46]\.|www\.)?tunnelbroker\.(?:com|net)/ + to + https://$1tunnelbroker.net/ + + securecookie + + host + ^(?:.*\.)?tunnelbroker\.net$ + name + .+ + + target + + + host + tunnelbroker.com + + + host + *.tunnelbroker.com + + + host + tunnelbroker.net + + + host + *.tunnelbroker.net + + + + + HGO.se + + ruleset + + name + HGO.se + rule + + + from + ^http://hgo\.se/ + to + https://www.hgo.se/ + + + from + ^http://www\.hgo\.se/ + to + https://www.hgo.se/ + + + from + ^http://space\.hgo\.se/ + to + https://space.hgo.se/ + + + target + + + host + www.hgo.se + + + host + hgo.se + + + host + space.hgo.se + + + + + HGST.com (partial) + + ruleset + + name + HGST.com (partial) + rule + + from + ^http://www2\.hgst\.com/ + to + https://www2.hgst.com/ + + securecookie + + host + ^www2\.hgst\.com$ + name + .+ + + target + + host + www2.hgst.com + + + + HH.se + + ruleset + + name + HH.se + rule + + + from + ^http://hh\.se/ + to + https://www.hh.se/ + + + from + ^http://www\.hh\.se/ + to + https://www.hh.se/ + + + target + + + host + www.hh.se + + + host + hh.se + + + + + HIG.se + + ruleset + + name + HIG.se + rule + + + from + ^http://hig\.se/ + to + https://www.hig.se/ + + + from + ^http://www\.hig\.se/ + to + https://www.hig.se/ + + + target + + + host + www.hig.se + + + host + hig.se + + + + + HIS.se + + ruleset + + name + HIS.se + platform + mixedcontent + rule + + + from + ^http://his\.se/ + to + https://www.his.se/ + + + from + ^http://www\.his\.se/ + to + https://www.his.se/ + + + target + + + host + www.his.se + + + host + his.se + + + + + HITBSecConf + + ruleset + + name + HITBSecConf + rule + + from + ^http://(conference|news)\.hitb\.org/ + to + https://$1.hitb.org/ + + securecookie + + host + ^(?:conference|news)\.hitb\.org$ + name + .+ + + target + + host + *.hitb.org + + + + HJCMS (CAcert) + + ruleset + + name + HJCMS (CAcert) + platform + cacert + rule + + from + ^http://(\w+\.)?hjcms\.de/ + to + https://$1hjcms.de/ + + securecookie + + host + ^(.*\.)?hjcms\.de$ + name + .* + + target + + + host + hjcms.de + + + host + *.hjcms.de + + + host + *.qx11grab.hjcms.de + + + + + HKK + + ruleset + + name + HKK + rule + + from + ^http://(?:www\.)?hkk\.de/ + to + https://www.hkk.de/ + + target + + + host + www.hkk.de + + + host + hkk.de + + + + + HKN (partial) + + ruleset + + name + HKN (partial) + rule + + from + ^http://(www\.)?hkn\.de/ + to + https://$1hkn.de/ + + securecookie + + host + ^(?:www\.)?hkn\.de$ + name + .+ + + target + + + host + hkn.de + + + host + www.hkn.de + + + + + HMV + + ruleset + + name + HMV + rule + + + from + ^http://hmv\.com/ + to + https://hmv.com/ + + + from + ^http://www\.hmv\.com/ + to + https://hmv.com/ + + + from + ^http://hmv\.co\.uk/ + to + https://hmv.com/ + + + from + ^http://www\.hmv\.co\.uk/ + to + https://hmv.com/ + + + from + ^http://www3\.hmv\.co\.uk/ + to + https://www3.hmv.co.uk/ + + + securecookie + + host + ^hmv\.com$ + name + .* + + target + + + host + www.hmv.com + + + host + hmv.com + + + host + hmv.co.uk + + + host + www.hmv.co.uk + + + host + www3.hmv.co.uk + + + + + HMV Japan (partial) + + ruleset + + name + HMV Japan (partial) + rule + + + from + ^http://(www\.)?hmv\.co\.jp/(?=async/|favicon\.ico|login/) + to + https://www.hmv.co.jp/ + + + from + ^http://img(-org)?\.hmv\.co\.jp/ + to + https://img$1.hmv.co.jp/ + + + securecookie + + host + ^\.hmv\.co\.jp$ + name + (?:s_\w+|__utm)\w$ + + target + + + host + hmv.co.jp + + + host + *.hmv.co.jp + + + + + HONcode + + ruleset + + exclusion + + pattern + ^http://honcode\.ch/(?!$|\?) + + name + HONcode + rule + + from + ^http://(?:www\.)?honcode\.ch/ + to + https://www.honcode.ch/ + + target + + + host + honcode.ch + + + host + www.honcode.ch + + + + + HP Cloud.com (partial) + + ruleset + + exclusion + + pattern + http://www\.hpcloud\.com/(?!sites/) + + name + HP Cloud.com (partial) + rule + + from + ^http://((?:blog|marketplace|www)\.)?hpcloud\.com/ + to + https://$1hpcloud.com/ + + target + + + host + hpcloud.com + + + host + *.hpcloud.com + + + + + HR Solutions + + ruleset + + name + HR Solutions + rule + + from + ^http://(www\.)?hr-s\.co\.jp/ + to + https://$1hr-s.co.jp/ + + target + + + host + hr-s.co.jp + + + host + www.hr-s.co.jp + + + + + HRA-News.org + + ruleset + + name + HRA-News.org + rule + + from + ^http://(www\.)?hra-news\.org/ + to + https://$1hra-news.org/ + + target + + + host + hra-news.org + + + host + www.hra-news.org + + + + + HRsmart + + ruleset + + name + HRsmart + platform + mixedcontent + rule + + + from + ^http://(\w+)\.(mua|tms)\.hrdepartment\.com/ + to + https://$1.$2.hrdepartment.com/ + + + from + ^http://(www\.)?hrsmart\.com/ + to + https://$1hrsmart.com/ + + + securecookie + + + host + ^.*\.hrdepartment\.com$ + name + .* + + + host + ^www\.hrsmart\.com$ + name + .* + + + target + + + host + *.mua.hrdepartment.com + + + host + *.tms.hrdepartment.com + + + host + hrsmart.com + + + host + www.hrsmart.com + + + + + HS-analytics.net + + ruleset + + name + HS-analytics.net + rule + + from + ^http://js\.hs-analytics\.net/ + to + https://js.hs-analytics.net/ + + target + + host + js.hs-analytics.net + + + + HSBC + + ruleset + + exclusion + + + pattern + ^http://www\.hangseng\.com/ + + + pattern + ^http://www\.hfcbank\.co\.uk/ + + + pattern + ^http://www\.hsbc\.cz/ + + + pattern + ^http://www\.hsbc\.ge/ + + + pattern + ^http://www\.hsbc\.ie/ + + + pattern + ^http://www\.hsbc\.co\.id/ + + + pattern + ^http://www\.hsbc\.co\.pa/ + + + pattern + ^http://www\.hsbc\.co\.za/ + + + pattern + ^http://www\.kuwait\.hsbc\.com/ + + + pattern + ^http://www\.hsbc\.co\.nz/ + + + pattern + ^http://www\.hsbc\.com\.tr/ + + + pattern + ^http://www\.hsbc\.com\.uy/ + + + name + HSBC + rule + + + from + ^http://(?:www\.)?hsbc\.([^/:@]+)/ + to + https://www.hsbc.$1/ + + + from + ^https?://([^/:@]+)?\.hsbc\.co\.uk/ + to + https://$1.hsbc.co.uk/ + + + from + ^https?://firstdirect\.com/ + to + https://www.firstdirect.com/ + + + from + ^https?://([^/:@]+)?\.firstdirect\.com/ + to + https://$1.firstdirect.com/ + + + from + ^http://(?:www\.)?hsbctrinkaus\.de/ + to + https://www.hsbctrinkaus.de/ + + + from + ^http://(?:www\.)?sabb\.com/ + to + https://www.sabb.com/ + + + from + ^http://(?:www\.)?firstdirect\.com/ + to + https://www.firstdirect.com/ + + + from + ^http://www\.business\.hsbc\.co\.uk/ + to + https://www.business.hsbc.co.uk/ + + + from + ^http://(?:www\.)?us\.hsbc\.com/ + to + https://www.us.hsbc.com/ + + + securecookie + + + host + ^(.*\.)?hsbc\.(.*)$ + name + .+ + + + host + ^(.*\.)?firstdirect\.com$ + name + .+ + + + target + + + host + hsbc.* + + + host + www.hsbc.* + + + host + hsbc.co.* + + + host + *.hsbc.co.uk + + + host + www.hsbc.co.* + + + host + hsbc.com.* + + + host + www.hsbc.com.* + + + host + *.hsbctrinkaus.de + + + host + hsbctrinkaus.de + + + host + *.sabb.com + + + host + sabb.com + + + host + firstdirect.com + + + host + *.firstdirect.com + + + host + *.us.hsbc.com + + + host + us.hsbc.com + + + host + www.business.hsbc.co.uk + + + + + HSV.se + + ruleset + + name + HSV.se + platform + mixedcontent + rule + + + from + ^http://hsv\.se/ + to + https://www.hsv.se/ + + + from + ^http://www\.hsv\.se/ + to + https://www.hsv.se/ + + + target + + + host + www.hsv.se + + + host + hsv.se + + + + + HT Bridge.com + + ruleset + + name + HT Bridge.com + rule + + + from + ^http://(?:www\.)?htbridge\.com/ + to + https://www.htbridge.com/ + + + from + ^http://portal\.htbridge\.com/ + to + https://portal.htbridge.com/ + + + securecookie + + host + ^\.htbridge\.com$ + name + .+ + + target + + + host + htbridge.com + + + host + *.htbridge.com + + + + + HTTPwatch.com + + ruleset + + name + HTTPwatch.com + rule + + + from + ^http://httpwatch\.com/ + to + https://www.httpwatch.com/ + + + from + ^http://(blog|www)\.httpwatch\.com/ + to + https://$1.httpwatch.com/ + + + target + + + host + httpwatch.com + + + host + *.httpwatch.com + + + + + HTWG Konstanz + + ruleset + + name + HTWG Konstanz + rule + + + from + ^http://qisserver\.htwg-konstanz\.de/ + to + https://qisserver.htwg-konstanz.de/ + + + from + ^http://lsf\.htwg-konstanz\.de/ + to + https://lsf.htwg-konstanz.de/ + + + from + ^http://login\.rz\.htwg-konstanz\.de/ + to + https://login.rz.htwg-konstanz.de/ + + + from + ^http://webmail\.htwg-konstanz\.de/ + to + https://webmail.htwg-konstanz.de/ + + + target + + + host + qisserver.htwg-konstanz.de + + + host + lsf.htwg-konstanz.de + + + host + login.rz.htwg-konstanz.de + + + host + webmail.htwg-konstanz.de + + + + + HUBzero + + ruleset + + name + HUBzero + rule + + from + ^http://(www\.)?hubzero\.org/ + to + https://$1hubzero.org/ + + securecookie + + host + ^hubzero\.org$ + name + .+ + + target + + + host + hubzero.org + + + host + www.hubzero.org + + + + + HUK Coburg + + ruleset + + name + HUK Coburg + platform + mixedcontent + rule + + from + ^http://(?:www\.)?huk\.de/ + to + https://www.huk.de/ + + target + + + host + www.huk.de + + + host + huk.de + + + + + HVG Kiadó Zrt. + + ruleset + + name + HVG Kiadó Zrt. + rule + + from + ^http://www\.hvgkonyvek\.hu/ + to + https://www.hvgkonyvek.hu/ + + securecookie + + host + ^www\.hvgkonyvek\.hu$ + name + .* + + target + + host + www.hvgkonyvek.hu + + + + HWSW.hu + + ruleset + + name + HWSW.hu + rule + + from + ^http://(www\.)?hwsw\.hu/ + to + https://$1hwsw.hu/ + + securecookie + + host + ^\.hwsw\.hu$ + name + .+ + + target + + + host + hwsw.hu + + + host + *.hwsw.hu + + + + + Habbo.fi + + ruleset + + name + Habbo.fi + rule + + + from + ^http://(www\.)?habbo\.fi/ + to + https://www.habbo.fi/ + + + from + ^http://help\.habbo\.fi/ + to + https://help.habbo.fi/ + + + target + + + host + www.habbo.fi + + + host + habbo.fi + + + host + help.habbo.fi + + + + + HabboLatino + + ruleset + + name + HabboLatino + rule + + from + ^http://(www\.)?hlat\.us/ + to + https://$1hlat.us/ + + securecookie + + host + ^(?:w*\.)?hlat\.us$ + name + .+ + + target + + + host + hlat.us + + + host + *.hlat.us + + + + + Haber Vision (partial) + + ruleset + + name + Haber Vision (partial) + rule + + from + ^http://(?:www\.)?habervision\.com/(css/|images/|mainstreet/) + to + https://www.habervision.com/$1 + + securecookie + + host + ^(.*\.)?habervision\.com$ + name + .* + + target + + + host + habervision.com + + + host + www.habervision.com + + + + + Habrahabr.ru (partial) + + ruleset + + exclusion + + pattern + ^http://habrahabr\.ru/(?!auth($|[?/])|common\.css|favicon\.ico|habr\.gif|images/|main\.css|styles/) + + name + Habrahabr.ru (partial) + rule + + + from + ^http://www\.habrahabr\.ru/(?=auth(?:$|[?/])|favicon\.ico|images/|styles/) + to + https://habrahabr.ru/ + + + from + ^http://((?:auth|special|www)\.)?habrahabr\.ru/ + to + https://$1habrahabr.ru/ + + + securecookie + + host + ^special\.habrahabr\.ru$ + name + .+ + + target + + + host + habrahabr.ru + + + host + *.habrahabr.ru + + + + + Hack This Site.org + + ruleset + + name + Hack This Site.org + rule + + from + ^http://(www\.)?hackthissite\.org/ + to + https://$1hackthissite.org/ + + securecookie + + host + ^www\.hackthissite\.org$ + name + .+ + + target + + + host + hackthissite.org + + + host + www.hackthissite.org + + + + + Hacker Experience.com + + ruleset + + name + Hacker Experience.com + rule + + from + ^http://(www\.)?hackerexperience\.com/ + to + https://$1hackerexperience.com/ + + securecookie + + host + ^\.hackerexperience\.com$ + name + .+ + + target + + + host + hackerexperience.com + + + host + *.hackerexperience.com + + + + + Hacker Target.com + + ruleset + + name + Hacker Target.com + rule + + from + ^http://(www\.)?hackertarget\.com/ + to + https://$1hackertarget.com/ + + securecookie + + host + ^(?:www\.)?hackertarget\.com$ + name + .+ + + target + + + host + hackertarget.com + + + host + www.hackertarget.com + + + + + HackerNews + + ruleset + + name + HackerNews + rule + + from + ^http://(?:www\.)?news\.ycombinator\.com/ + to + https://news.ycombinator.com/ + + securecookie + + host + ^(?:.*\.)?ycombinator\.com$ + name + .* + + target + + host + *.ycombinator.com + + + + HackerOne.com + + ruleset + + name + HackerOne.com + rule + + + from + ^http://(www\.)?hackerone\.com/ + to + https://$1hackerone.com/ + + + from + ^http://profile-photos\.hackerone-user-content\.com/ + to + https://profile-photos.hackerone-user-content.com/ + + + securecookie + + host + ^\.hackerone(?:-user-content)?\.com$ + name + .+ + + target + + + host + hackerone.com + + + host + *.hackerone.com + + + host + *.hackerone-user-content.com + + + + + HackerRank.com + + ruleset + + name + HackerRank.com + rule + + + from + ^http://(www\.)?hackerrank\.com/ + to + https://$1hackerrank.com/ + + + from + ^http://hrcdn\.net/ + to + https://hrcdn.net/ + + + securecookie + + + host + ^www\.hackerrank\.com$ + name + .+ + + + host + ^\.hrcdn\.net$ + name + .+ + + + target + + + host + hackerrank.com + + + host + www.hackerrank.com + + + host + hrcdn.net + + + host + *.hrcdn.net + + + + + Hackerspace.pl + + ruleset + + name + Hackerspace.pl + rule + + from + ^http://((?:blog|code|gallery|git|ldap|redmine|static|webchat|wiki|www)\.)?hackerspace\.pl/ + to + https://$1hackerspace.pl/ + + securecookie + + host + ^(?:\w+\.)?hackerspace\.pl$ + name + .+ + + target + + + host + hackerspace.pl + + + host + *.hackerspace.pl + + + + + Hackinthebox.org + + ruleset + + name + Hackinthebox.org + rule + + + from + ^http://forum\.hackinthebox\.org/ + to + https://forum.hackinthebox.org/ + + + from + ^http://(?:www\.)?hackinthebox\.org/ + to + https://www.hackinthebox.org/ + + + target + + + host + hackinthebox.org + + + host + www.hackinthebox.org + + + host + forum.hackinthebox.org + + + + + Hackpad + + ruleset + + name + Hackpad + rule + + from + ^http://([\w-]+\.)?hackpad\.com/ + to + https://$1hackpad.com/ + + securecookie + + host + .*\.hackpad\.com$ + name + .+ + + target + + + host + hackpad.com + + + host + *.hackpad.com + + + + + HacktionLab.org + + ruleset + + name + HacktionLab.org + rule + + from + ^http://(www\.)?hacktionlab\.org/ + to + https://$1hacktionlab.org/ + + target + + + host + hacktionlab.org + + + host + www.hacktionlab.org + + + + + Haiku Project + + ruleset + + name + Haiku Project + rule + + from + ^http://(www\.)?haiku-os\.org/ + to + https://$1haiku-os.org/ + + securecookie + + host + ^\.haiku-os\.org$ + name + .+ + + target + + + host + haiku-os.org + + + host + *.haiku-os.org + + + + + Hail Protector + + ruleset + + name + Hail Protector + rule + + from + ^https?://(?:www\.)?myhailprotector\.com/ + to + https://www.myhailprotector.com/ + + securecookie + + host + ^\.myhailprotector\.com$ + name + .+ + + target + + + host + myhailprotector.com + + + host + *.myhailprotector.com + + + + + Hail Storm Products + + ruleset + + name + Hail Storm Products + rule + + + from + ^https?://(?:www\.)hailavenger(?:\.hailguardian)\.com/ + to + https://secure.bluehost.com/~hailguar/hailavenger/ + + + from + ^https?://(?:www\.)?hailguardian\.com/ + to + https://secure.bluehost.com/~hailguar/ + + + from + ^https?://(?:www\.)?hailstormproducts\.com/ + to + https://www.hailstormproducts.com/ + + + securecookie + + host + ^\.hailstormproducts\.com$ + name + .+ + + target + + + host + hailavenger.com + + + host + www.hailavenger.com + + + host + hailguardian.com + + + host + *.hailguardian.com + + + host + hailstormproducts.com + + + host + *.hailstormproducts.com + + + + + Hairsmize.com + + ruleset + + name + Hairsmize.com + rule + + from + ^http://(www\.)?hairsmize\.com/ + to + https://$1hairsmize.com/ + + securecookie + + host + ^\.hairsmize\.com$ + name + .+ + + target + + + host + hairsmize.com + + + host + *.hairsmize.com + + + + + Hak5.org (false MCB) + + ruleset + + name + Hak5.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?hak5\.org/ + to + https://$1hak5.org/ + + target + + + host + hak5.org + + + host + www.hak5.org + + + + + Hak5.org (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?hak5\.org/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Hak5.org (partial) + platform + mixedcontent + rule + + from + ^http://(forums\.|www\.)?hak5\.org/ + to + https://$1hak5.org/ + + target + + + host + hak5.org + + + host + *.hak5.org + + + + + Hakko.com + + ruleset + + name + Hakko.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?hakko\.com/ + to + https://www.hakko.com/ + + target + + + host + www.hakko.com + + + host + hakko.com + + + + + Halebop.se + + ruleset + + name + Halebop.se + platform + mixedcontent + rule + + + from + ^http://halebop\.se/ + to + https://www.halebop.se/ + + + from + ^http://www\.halebop\.se/ + to + https://www.halebop.se/ + + + target + + + host + halebop.se + + + host + www.halebop.se + + + + + Halifax + + ruleset + + name + Halifax + rule + + from + ^http://(?:www\.)?halifax(-online)?\.co\.uk/ + to + https://www.halifax$1.co.uk/ + + securecookie + + host + ^\.halifax(?:-online)?\.co\.uk$ + name + .+ + + target + + + host + halifax.co.uk + + + host + *.halifax.co.uk + + + host + *.halifax-online.co.uk + + + + + Halo + + ruleset + + name + Halo + rule + + + from + ^https?://(?:www\.)?halowaypoint\.com/ + to + https://www.halowaypoint.com/ + + + from + ^http://(app|assets|blogs|forums)\.halowaypoint\.com/ + to + https://$1.halowaypoint.com/ + + + from + ^https?://download(?:-ssl)?\.halowaypoint\.com/ + to + https://download-ssl.halowaypoint.com/ + + + securecookie + + host + ^(?:app|forums)?\.halowaypoint\.com$ + name + .+ + + target + + + host + halowaypoint.com + + + host + *.halowaypoint.com + + + + + Hamburg + + ruleset + + name + Hamburg + rule + + from + ^http://(?:www\.)?hamburg\.de/ + to + https://www.hamburg.de/ + + target + + + host + www.hamburg.de + + + host + hamburg.de + + + + + Hammacher Schlemmer (partial) + + ruleset + + name + Hammacher Schlemmer (partial) + platform + mixedcontent + rule + + + from + ^https?://(images\.)?hammacher\.com/ + to + https://www.hammacher.com/ + + + from + ^http://www\.hammacher\.com/((?:(?:cs|[iI]mage)s30)/|favicon\.ico) + to + https://www.hammacher.com/$1 + + + from + ^http://digital\.hammacher\.com/ + to + https://digital.hammacher.com/ + + + target + + + host + hammacher.com + + + host + *.hammacher.com + + + + + Hamradio.com + + ruleset + + name + Hamradio.com + rule + + from + ^http://(www\.)?hamradio\.com/ + to + https://www.hamradio.com/ + + target + + + host + hamradio.com + + + host + www.hamradio.com + + + + + Handbrake.fr (partial) + + ruleset + + name + Handbrake.fr (partial) + rule + + from + ^http://trac\.handbrake\.fr/ + to + https://trac.handbrake.fr/ + + securecookie + + host + ^trac\.handbrake\.fr$ + name + .+ + + target + + host + trac.handbrake.fr + + + + Handelsblatt (partial) + + ruleset + + name + Handelsblatt (partial) + rule + + + from + ^http://(?:www\.)?handelsblatt\.com/images/ + to + https://www.handelsblatt.com/images/ + + + from + ^http://abo\.handelsblatt\.com/ + to + https://abo.handelsblatt.com/ + + + from + ^http://staticef[12]\.handelsblatt\.com/ + to + https://d21rxpf5vn0rru.cloudfront.net/ + + + securecookie + + host + ^abo\.handelsblatt\.com$ + name + .+ + + target + + + host + handelsblatt.com + + + host + *.handelsblatt.com + + + + + Handmade Kultur.de (partial) + + ruleset + + name + Handmade Kultur.de (partial) + rule + + from + ^http://(www\.)?handmadekultur\.de/(?!/*(?:$|\?)) + to + https://$1handmadekultur.de/ + + target + + + host + handmadekultur.de + + + host + www.handmadekultur.de + + + + + Handtekening.nl + + ruleset + + name + Handtekening.nl + rule + + from + ^http://(www\.)?handtekening\.nl/ + to + https://$1handtekening.nl/ + + target + + + host + handtekening.nl + + + host + www.handtekening.nl + + + + + Hanford Site + + ruleset + + name + Hanford Site + rule + + from + ^http://(www\.)?hanford\.gov/ + to + https://$1hanford.gov/ + + securecookie + + host + ^(?:www\.)?hanford\.gov$ + name + .+ + + target + + + host + hanford.gov + + + host + www.hanford.gov + + + + + Hannover Messe.de (partial) + + ruleset + + name + Hannover Messe.de (partial) + rule + + from + ^http://(?:www\.)?hannovermesse\.de/(?=en/applikation/secure/|m(?:einemesse|yfair-root)/login(?:$|[?/])) + to + https://www.hannovermesse.de/ + + target + + + host + hannovermesse.de + + + host + www.hannovermesse.de + + + + + Happy Herbivore (partial) + + ruleset + + name + Happy Herbivore (partial) + rule + + + from + ^http://css\.happyherbivore\.com/ + to + https://d2vtfeon2ovn8e.cloudfront.net/ + + + from + ^http://media\.happyherbivore\.com/ + to + https://d1go12qtky6pt0.cloudfront.net/ + + + from + ^http://photos\.happyherbivore\.com/ + to + https://dmi4pvc5gbhhd.cloudfront.net/ + + + from + ^http://store\.happyherbivore\.com/themes/ + to + https://www.storenvy.com/themes/ + + + target + + host + *.happyherbivore.com + + + + HappyKnowledge.com + + ruleset + + name + HappyKnowledge.com + rule + + from + ^http://(?:www\.)?happyknowledge\.com/ + to + https://www.happyknowledge.com/ + + securecookie + + host + ^(?:www)\.happyknowledge\.com$ + name + .+ + + target + + + host + happyknowledge.com + + + host + *.happyknowledge.com + + + + + Harakahdaily (partial) + + ruleset + + exclusion + + pattern + ^http://arkib\.harakahdaily\.net/(?!resource/) + + name + Harakahdaily (partial) + rule + + + from + ^http://((?:arkib|bm|cdn-ads|en|m|www)\.)?harakahdaily\.net/ + to + https://$1harakahdaily.net/ + + + from + ^http://(cdn\.|www\.)?harakah\.net\.my/ + to + https://$1harakah.net.my/ + + + securecookie + + + host + ^(?:en|m)\.harakahdaily\.net$ + name + .+ + + + host + ^\.harakah\.net\.my$ + name + .+ + + + target + + + host + harakahdaily.net + + + host + *.harakahdaily.net + + + host + harakah.net.my + + + host + *.harakah.net.my + + + + + Hark + + ruleset + + name + Hark + rule + + + from + ^http://(www\.)?hark\.com/ + to + https://$1hark.com/ + + + from + ^https?://cdn\d?\.hark\.com/ + to + https://d1qq3790ig6355.cloudfront.net/ + + + securecookie + + host + ^www\.hark\.com$ + name + .+ + + target + + + host + hark.com + + + host + *.hark.com + + + + + Harland Clarke + + ruleset + + exclusion + + + pattern + ^http://(www\.)?harlandclarke\.com/businessshop($|/) + + + pattern + ^http://(www\.)?harlandclarke\.com/bdocs2($|/) + + + name + Harland Clarke + platform + mixedcontent + rule + + + from + ^(http://(www\.)?|(https://))checksconnect\.com/ + to + https://www.checksconnect.com/ + + + from + ^http://app3\.checksconnect\.com/ + to + https://app3.checksconnect.com/ + + + from + ^http://member\.harland\.com/ + to + https://member.harland.com/ + + + from + ^https?://(www\.)?harland\.(com|net)/?$ + to + https://www.ordermychecks.com/ + + + from + ^http://(branchprod|vansso)\.harland\.net/ + to + https://$1.harland.net/ + + + from + ^(http://(www\.)?|(https://))(harlandclarke(giftcard|websmart)?|harlandforms|ordermychecks)\.com/ + to + https://www.$4.com/ + + + securecookie + + + host + (^|\.)checksconnect\.com$ + name + .+ + + + host + ^member\.harland\.com$ + name + .+ + + + host + ^(branchprod|vansso)\.harland\.net$ + name + .+ + + + host + (^|\.)(harlandclarke(giftcard|websmart)|harlandforms|ordermychecks)\.com$ + name + .+ + + + target + + + host + checksconnect.com + + + host + app3.checksconnect.com + + + host + www.checksconnect.com + + + host + harland.com + + + host + member.harland.com + + + host + www.harland.com + + + host + harland.net + + + host + branchprod.harland.net + + + host + vansso.harland.net + + + host + www.harland.net + + + host + harlandforms.com + + + host + www.harlandforms.com + + + host + harlandclarke.com + + + host + www.harlandclarke.com + + + host + harlandclarkegiftcard.com + + + host + www.harlandclarkegiftcard.com + + + host + harlandclarkewebsmart.com + + + host + www.harlandclarkewebsmart.com + + + host + ordermychecks.com + + + host + www.ordermychecks.com + + + + + Harman International Industries (partial) + + ruleset + + exclusion + + pattern + http://www\.akg\. + + name + Harman International Industries (partial) + rule + + from + ^http://(?:\w+\.(?:akg|infinitysystems)\.com|(?:www\.)?shop\.harman\.com|(?:www\.)?harmankardon\.nl)/(plugins|system|tl_files)/ + to + https://shop.harman.com/$1/ + + target + + + host + *.akg.com + + + host + shop.harman.com + + + host + www.shop.harman.com + + + host + karmankardon.nl + + + host + www.karmankardon.nl + + + host + *.infinitysystems.com + + + + + Harris Computer.com (partial) + + ruleset + + name + Harris Computer.com (partial) + rule + + from + ^http://(bonaventure|mail|webmail)\.harriscomputer\.com/ + to + https://$1.harriscomputer.com/ + + securecookie + + host + ^webmail\.harriscomputer\.com$ + name + .+ + + target + + host + *.harriscomputer.com + + + + Harris Interactive (partial) + + ruleset + + name + Harris Interactive (partial) + rule + + from + ^http://www1\.pollg\.com/ + to + https://www1.pollg.com/ + + target + + host + www1.pollg.com + + + + Harry S Truman Library and Museum + + ruleset + + name + Harry S Truman Library and Museum + rule + + from + ^https?://(?:www\.)?trumanlibrary\.org/ + to + https://www.trumanlibrary.org/ + + target + + + host + trumanlibrary.org + + + host + www.trumanlibrary.org + + + + + Hartware.de + + ruleset + + name + Hartware.de + rule + + from + ^http://www\.hartware\.de/ + to + https://www.hartware.de/ + + target + + host + *.hartware.de + + + + Hartwork Project (partial) + + ruleset + + name + Hartwork Project (partial) + rule + + from + ^http://blog\.hartwork\.org/ + to + https://blog.hartwork.org/ + + securecookie + + host + ^blog\.hartwork\.org$ + name + .* + + target + + host + blog.hartwork.org + + + + Harvard Pilgrim.org (partial) + + ruleset + + name + Harvard Pilgrim.org (partial) + rule + + from + ^http://(?:www\.)?harvardpilgrim\.org/ + to + https://www.harvardpilgrim.org/ + + target + + + host + harvardpilgrim.org + + + host + www.harvardpilgrim.org + + + + + Harvard University (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.cfa\.harvard\.edu/image_archive/ + + + pattern + ^http://isites\.harvard\.edu/(?!favicon\.ico|[fj]s/|icb/calendar/themes/|icb/[\w-]\.css) + + + name + Harvard University (partial) + rule + + + from + ^http://www\.pin\.harvard\.edu/(?:$|\?.*) + to + https://www.pin.harvard.edu/home.shtml + + + from + ^http://(?:www\.)?(berkman|hsph|pin|saas)\.harvard\.edu/ + to + https://www.$1.harvard.edu/ + + + from + ^http://(www\.cfa|hbdm\.hbsp|osc\.hul|login\.icommons|isites|adam\.law|blogs\.law|www\.pin1)\.harvard\.edu/ + to + https://$1.harvard.edu/ + + + from + ^http://(?:www\.)?(?:cyber|eon)\.law\.harvard\.edu/ + to + https://cyber.law.harvard.edu/ + + + securecookie + + host + ^(?:login\.icommons|.*\.law|www\.pin1|www\.seas)\.harvard\.edu$ + name + .+ + + target + + host + *.harvard.edu + + + + HasGeek (partial) + + ruleset + + name + HasGeek (partial) + rule + + from + ^http://jobs\.hasgeek\.com/(new(?:/?$|\?)|static/) + to + https://jobs.hasgeek.com/$1 + + target + + host + jobs.hasgeek.com + + + + HasOffers (partial) + + ruleset + + name + HasOffers (partial) + rule + + + from + ^http://media\.go2app\.org/ + to + https://media.go2app.org/ + + + from + ^http://signup\.hasoffers\.com/ + to + https://signup.hasoffers.com/ + + + securecookie + + host + ^signup\.hasoffers\.com$ + name + .+ + + target + + + host + media.go2app.org + + + host + signup.hasoffers.com + + + + + Hashcat + + ruleset + + name + Hashcat + rule + + from + ^https?://(?:www\.)?hashcat\.net/ + to + https://hashcat.net/ + + securecookie + + host + ^hashcat\.net$ + name + .* + + target + + + host + hashcat.net + + + host + www.hashcat.net + + + + + HashiCorp.com + + ruleset + + name + HashiCorp.com + rule + + from + ^http://(www\.)?hashicorp\.com/ + to + https://$1hashicorp.com/ + + securecookie + + host + ^\.hashicorp\.com$ + name + .+ + + target + + + host + hashicorp.com + + + host + *.hashicorp.com + + + + + Haskell.org (partial) + + ruleset + + name + Haskell.org (partial) + rule + + from + ^http://(blog\.|darcs\.|ghc\.|hackage\.|monitor\.|phabricator\.|planet\.|www\.)?haskell\.org/ + to + https://$1haskell.org/ + + securecookie + + host + ^\.haskell\.org$ + name + ^__cfduid$ + + target + + + host + haskell.org + + + host + *.haskell.org + + + + + Haskoin.com + + ruleset + + name + Haskoin.com + platform + cacert + rule + + from + ^http://(www\.)?haskoin\.com/ + to + https://$1haskoin.com/ + + target + + + host + haskoin.com + + + host + www.haskoin.com + + + + + Haste.ch + + ruleset + + name + Haste.ch + platform + firefox + rule + + from + ^http://haste\.ch/ + to + https://haste.ch/ + + securecookie + + host + ^haste\.ch$ + name + .+ + + target + + host + haste.ch + + + + Hatatorium + + ruleset + + name + Hatatorium + rule + + from + ^http://(www\.)?hatatorium\.com/ + to + https://$1hatatorium.com/ + + target + + + host + hatatorium.com + + + host + www.hatatorium.com + + + + + Hatena (partial) + + ruleset + + name + Hatena (partial) + rule + + + from + ^http://(?:www\.)?hatena\.ne\.jp/(css/|images/|login(?:$|\?|/)|statics/) + to + https://www.hatena.ne.jp/$1 + + + from + ^http://(b|d)\.(?:hatena\.ne\.jp|st-hatena\.com)/images/ + to + https://$1.hatena.ne.jp/images/ + + + from + ^http://cdn-ak\.favicon\.st-hetena\.com/ + to + https://a248.e.akamai.net/m/336/3102/4/cdn-ak.favicon.st-hatena.com/ + + + from + ^http://(?:cdn\.)?www\.st-hatena\.com/ + to + https://www.hatena.ne.jp/ + + + from + ^http://cdn1\.www\.st-hatena\.com/ + to + https://a248.e.akamai.net/f/1075/6343/5/cdn1.www.st-hatena.com/ + + + securecookie + + host + ^\.hatena\.ne\.jp$ + name + .+ + + target + + + host + hatena.ne.jp + + + host + *.hatena.ne.jp + + + host + *.st-hatena.com + + + + + Hauke + + ruleset + + name + Hauke + platform + cacert mixedcontent + rule + + from + ^http://horde\.hauke-m\.de/ + to + https://horde.hauke-m.de/ + + securecookie + + host + ^\.horde\.hauke-m\.de$ + name + .* + + target + + + host + horde.hauke-m.de + + + host + *.horde.hauke-m.de + + + + + HaveProof.com + + ruleset + + name + HaveProof.com + rule + + from + ^http://(?:www\.)?haveproof\.com/ + to + https://haveproof.com/ + + target + + + host + haveproof.com + + + host + www.haveproof.com + + + + + Hawaii.gov (partial) + + ruleset + + exclusion + + pattern + ^http://portal\.ehawaii\.gov/landing/(?:\?.*)?$ + + name + Hawaii.gov (partial) + rule + + + from + ^http://(dlnr|hic|hidot|stayconnected)\.hawaii\.gov/ + to + https://$1.hawaii.gov/ + + + from + ^http://(portal\.|www\.)?ehawaii\.gov/ + to + https://$1ehawaii.gov/ + + + securecookie + + + host + ^www\.ehawaii\.gov$ + name + .+ + + + host + ^stayconnected\.hawaii\.gov$ + name + .+ + + + target + + + host + ehawaii.gov + + + host + *.ehawaii.gov + + + host + *.hawaii.gov + + + + + Hawaiian Airlines + + ruleset + + name + Hawaiian Airlines + platform + mixedcontent + rule + + + from + ^http://hawaiianair\.com/ + to + https://www.hawaiianair.com/ + + + from + ^http://(emarket|ifs|www)\.hawaiianair\.com/ + to + https://$1.hawaiianair.com/ + + + target + + + host + hawaiianair.com + + + host + *.hawaiianair.com + + + + + Hawk Host.com (partial) + + ruleset + + name + Hawk Host.com (partial) + rule + + from + ^http://((?:my|support|vps|www)\.)?hawkhost\.com/ + to + https://$1hawkhost.com/ + + securecookie + + host + ^(?:my|support|vps)?\.hawkhost\.com$ + name + .+ + + target + + + host + hawkhost.com + + + host + *.hawkhost.com + + + + + Haymarket (partial) + + ruleset + + name + Haymarket (partial) + rule + + + from + ^http://(apac|shop)\.haymarket\.com/ + to + https://$1.haymarket.com/ + + + from + ^http://subscribe\.haymarketmedia\.com/ + to + https://subscribe.haymarketmedia.com/ + + + securecookie + + + host + ^\.haymarket\.com$ + name + ^utag_main$ + + + host + ^(?:apac|\.?shop)\.haymarket\.com$ + name + .* + + + host + ^\.?subscribe\.haymarketmedia\.com$ + name + .+ + + + target + + + host + apac.haymarket.com + + + host + shop.haymarket.com + + + host + *.shop.haymarket.com + + + host + *.haymarketmedia.com + + + + + HbbTV + + ruleset + + name + HbbTV + rule + + from + ^http://(www\.)?hbbtv\.org/ + to + https://$1hbbtv.org/ + + securecookie + + host + ^(?:www\.)?hbbtv\.org$ + name + .+ + + target + + + host + hbbtv.org + + + host + www.hbbtv.org + + + + + Head-Fi.org (partial) + + ruleset + + name + Head-Fi.org (partial) + rule + + from + ^http://cdn\.head-fi\.org/ + to + https://d1jesv1uvhg9i4.cloudfront.net/ + + target + + host + cdn.head-fi.org + + + + Headphone.com + + ruleset + + name + Headphone.com + rule + + from + ^http://(?:media\.|(www\.))?headphone\.com/ + to + https://$1headphone.com/ + + securecookie + + host + ^www\.headphone\.com$ + name + .+ + + target + + + host + headphone.com + + + host + *.headphone.com + + + + + HealthCheckUSA + + ruleset + + name + HealthCheckUSA + rule + + + from + ^(http://(www\.)?|https://)healthcheckusa\.com/ + to + https://www.healthcheckusa.com/ + + + from + ^http://secure\.healthcheckusa\.com/ + to + https://secure.healthcheckusa.com/ + + + securecookie + + host + ^((secure|www)?\.)?healthcheckusa\.com$ + name + .+ + + target + + + host + healthcheckusa.com + + + host + secure.healthcheckusa.com + + + host + www.healthcheckusa.com + + + + + Healthcare Staff Benefits + + ruleset + + name + Healthcare Staff Benefits + rule + + from + ^http://(www\.)?healthcarestaffbenefits\.org/ + to + https://$1healthcarestaffbenefits.org/ + + securecookie + + host + ^(?:w*\.)?healthcarestaffbenefits\.org$ + name + .+ + + target + + + host + healthcarestaffbenefits.org + + + host + *.healthcarestaffbenefits.org + + + + + Healthcare.gov + + ruleset + + name + Healthcare.gov + rule + + + from + ^https?://healthcare\.gov/ + to + https://www.healthcare.gov/ + + + from + ^http://([^/:@]+)?\.healthcare\.gov/ + to + https://$1.healthcare.gov/ + + + securecookie + + host + ^(.*\.)?healthcare\.gov$ + name + .+ + + target + + + host + healthcare.gov + + + host + *.healthcare.gov + + + + + Healthdirect Australia + + ruleset + + name + Healthdirect Australia + rule + + from + ^http://(?:www\.)?healthdirect\.gov\.au/ + to + https://www.healthdirect.gov.au/ + + target + + + host + healthdirect.gov.au + + + host + *.healthdirect.gov.au + + + + + Healthfuze.com + + ruleset + + name + Healthfuze.com + rule + + from + ^http://(www\.)?healthfuze\.com/ + to + https://$1healthfuze.com/ + + securecookie + + host + ^(?:.*\.)?healthfuze\.com$ + name + .+ + + target + + + host + healthfuze.com + + + host + *.healthfuze.com + + + + + Healths.Biz + + ruleset + + name + Healths.Biz + rule + + from + ^http://(www\.)?healths\.biz/(?=favicon\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1healths.biz/ + + target + + + host + healths.biz + + + host + www.healths.biz + + + + + Healthy for Kids (partial) + + ruleset + + name + Healthy for Kids (partial) + rule + + from + ^http://healthyforkids\.wpengine\.netdna-cdn\.com/ + to + https://healthyforkids.wpengine.com/ + + target + + host + healthyforkids.wpengine.netdna-cdn.com + + + + Hearst Corporation (partial) + + ruleset + + name + Hearst Corporation (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?myhearstnewspaper\.com/ + to + https://$1myhearstnewspaper.com/ + + securecookie + + host + ^(.*\.)?myhearstnewspaper\.com$ + name + .* + + target + + + host + myhearstnewspaper.com + + + host + www.myhearstnewspaper.com + + + + + Hearst Magazines + + ruleset + + name + Hearst Magazines + rule + + + from + ^http://www\.circules\.com/ + to + https://www.circules.com/ + + + from + ^http://s(ervices|ubscribe)\.hearstmags\.com/ + to + https://s$1.hearstmags.com/ + + + securecookie + + + host + ^\.circules\.com$ + name + .+ + + + host + ^(?:\.subscribe)?\.hearstmags\.com$ + name + .+ + + + target + + + host + *.circules.com + + + host + *.hearstmags.com + + + + + Heart.org (partial) + + ruleset + + name + Heart.org (partial) + rule + + + from + ^http://(?:www\.)?heart\.org/ + to + https://www.heart.org/ + + + from + ^http://(extranet|donate|static|volunteer)\.heart\.org/ + to + https://$1.heart.org/ + + + from + ^http://my\.heart\.org/ + to + https://my.americanheart.org/ + + + securecookie + + host + ^donate\.heart\.org$ + name + .+ + + target + + + host + heart.org + + + host + *.heart.org + + + + + HearthVoD.com + + ruleset + + name + HearthVoD.com + rule + + from + ^http://(www\.)?hearthvod\.com/ + to + https://$1hearthvod.com/ + + securecookie + + host + ^(?:w*\.)?hearthvod\.com$ + name + .+ + + target + + + host + hearthvod.com + + + host + *.hearthvod.com + + + + + Heatball.de + + ruleset + + name + Heatball.de + rule + + from + ^http://(www\.)?heatball\.de/ + to + https://$1heatball.de/ + + target + + + host + heatball.de + + + host + www.heatball.de + + + + + Heathkit + + ruleset + + name + Heathkit + rule + + from + ^http://(www\.)?heathkit\.com/ + to + https://www.heathkit.com/ + + target + + + host + www.heathkit.com + + + host + heathkit.com + + + + + Heavy.com (partial) + + ruleset + + name + Heavy.com (partial) + rule + + from + ^http://media\.heavy\.com/ + to + https://a248.e.akamai.net/m/1834/8050/9/media.heavy.com/ + + target + + host + media.heavy.com + + + + Hegerys.com (partial) + + ruleset + + name + Hegerys.com (partial) + rule + + from + ^http://(cp|store)\.hegerys\.com/ + to + https://$1.hegerys.com/ + + securecookie + + host + ^cp\.hegerys\.com$ + name + .+ + + target + + host + *.hegerys.com + + + + Heifer.org + + ruleset + + name + Heifer.org + rule + + + from + ^http://(?:www\.)?heifer\.org/(?=favicon\.ico|gift-catalog/donor-info\.html|resources/) + to + https://www.heifer.org/ + + + from + ^http://(honorcards|payments|pbridge|secure1|shop)\.heifer\.org/ + to + https://$1.heifer.org/ + + + securecookie + + + host + ^\.heifer\.org$ + name + ^__(?:qca|utm\w+)$ + + + host + ^(?:honorcards|shop)\.heifer\.org$ + name + .+ + + + target + + + host + heifer.org + + + host + *.heifer.org + + + + + Heimdal Security.com + + ruleset + + name + Heimdal Security.com + rule + + from + ^http://((?:goz|support|www)\.)?heimdalsecurity\.com/ + to + https://$1heimdalsecurity.com/ + + target + + + host + heimdalsecurity.com + + + host + *.heimdalsecurity.com + + + + + Heinlein-Support.de + + ruleset + + name + Heinlein-Support.de + rule + + from + ^http://(?:www\.)?heinlein-support\.de/ + to + https://www.heinlein-support.de/ + + securecookie + + host + ^\.heinlein-support\.de$ + name + .+ + + target + + + host + heinlein-support.de + + + host + *.heinlein-support.de + + + + + Heise shop.de + + ruleset + + name + Heise shop.de + rule + + + from + ^http://(?:www\.)?heiseshop\.de/[^?]* + to + https://shop.heise.de/ + + + from + ^http://stat\.heiseshop\.de/ + to + https://stat.heiseshop.de/ + + + target + + + host + heiseshop.de + + + host + *.heiseshop.de + + + + + Heise.de (partial) + + ruleset + + name + Heise.de (partial) + rule + + + from + ^http://(?:www\.)?heise\.de/([ai]vw-bin/|favicon\.ico|icons/|ix/images/|software/screenshots/|stil/) + to + https://www.heise.de/$1 + + + from + ^http://(abo|prophet)\.heise\.de/ + to + https://$1.heise.de/ + + + from + ^http://(?:www\.)?shop\.heise\.de/ + to + https://shop.heise.de/ + + + from + ^http://(1|2|3)\.f\.ix\.de/ + to + https://$1.f.ix.de/ + + + target + + + host + heise.de + + + host + *.heise.de + + + host + *.f.ix.de + + + + + Hell Hole Cheese Factory.org + + ruleset + + name + Hell Hole Cheese Factory.org + rule + + from + ^http://(www\.)?hellholecheesefactory\.org/ + to + https://$1hellholecheesefactory.org/ + + target + + + host + hellholecheesefactory.org + + + host + www.hellholecheesefactory.org + + + + + Heller Information Services (partial) + + ruleset + + name + Heller Information Services (partial) + rule + + from + ^http://(mail\.|webmail\.)?his\.com/ + to + https://$1his.com/ + + securecookie + + host + ^(.*\.)?his\.com$ + name + .* + + target + + + host + his.com + + + host + *.his.com + + + + + Hello Bar (partial) + + ruleset + + name + Hello Bar (partial) + rule + + + from + ^http://(www\.)?hellobar\.com/([^/]+\.js(?:$|\?)|(?:assets|files|solo|system|wp-includes)/) + to + https://$1hellobar.com/$2 + + + from + ^http://ping\.hellobar\.com/ + to + https://ping.hellobar.com/ + + + target + + + host + hellobar.com + + + host + *.hellobar.com + + + + + Hello Neighbour + + ruleset + + name + Hello Neighbour + rule + + from + ^https?://(?:www\.)?helloneighbour\.com/ + to + https://www.helloneighbour.com/ + + securecookie + + host + ^www\.helloneighbour\.com$ + name + .* + + target + + + host + helloneighbour.com + + + host + www.helloneighbour.com + + + + + Helmet.fi + + ruleset + + name + Helmet.fi + rule + + from + ^http://(www|luettelo|haku)\.helmet\.fi/ + to + https://$1.helmet.fi/ + + securecookie + + host + ^(?:haku|luettelo|www)?\.helmet\.fi$ + name + .+ + + target + + host + *.helmet.fi + + + + Helmholtz-Zentrum Berlin for Materials and Energy + + ruleset + + name + Helmholtz-Zentrum Berlin for Materials and Energy + rule + + from + ^https?://(?:www\.)?helmholtz-berlin\.de/ + to + https://www.helmholtz-berlin.de/ + + target + + + host + helmholtz-berlin.de + + + host + www.helmholtz-berlin.de + + + + + Helmich IT-Security + + ruleset + + name + Helmich IT-Security + rule + + from + ^http://(www\.)?helmich\.de/ + to + https://$1helmich.de/ + + securecookie + + host + ^www\.helmich\.de$ + name + .+ + + target + + + host + helmich.de + + + host + www.helmich.de + + + + + Help Scout.net (partial) + + ruleset + + name + Help Scout.net (partial) + rule + + from + ^http://(secure\.|www\.)?helpscout\.net/ + to + https://$1helpscout.net/ + + target + + + host + helpscout.net + + + host + *.helpscout.net + + + + + HelpOnClick + + ruleset + + name + HelpOnClick + rule + + from + ^http://(www\.)?helponclick\.com/ + to + https://$1helponclick.com/ + + securecookie + + host + ^(?:.*\.)?helponclick\.com$ + name + .+ + + target + + + host + helponclick.com + + + host + *.helponclick.com + + + + + HelpSpot + + ruleset + + name + HelpSpot + rule + + from + ^http://(www\.)?helpspot\.com/ + to + https://$1helpspot.com/ + + securecookie + + host + ^(?:www)?\.helpspot\.com$ + name + .+ + + target + + + host + helpspot.com + + + host + *.helpspot.com + + + + + Helpjuice (partial) + + ruleset + + name + Helpjuice (partial) + rule + + + from + ^https?://(?:www\.)?helpjuice\.com/(image|stylesheet)s/ + to + https://billing.helpjuice.com/$1s/ + + + from + ^http://(www\.)?billing\.helpjuice\.com/ + to + https://$1billing.helpjuice.com/ + + + target + + + host + helpjuice.com + + + host + *.helpjuice.com + + + host + www.billing.helpjuice.com + + + + + Helsingin Sanomat (partial) + + ruleset + + name + Helsingin Sanomat (partial) + rule + + from + ^http://(?:www\.)?hs\.fi/(webkuva|webstatic)/ + to + https://www.hs.fi/$1/ + + target + + + host + hs.fi + + + host + www.hs.fi + + + + + Helsinki (partial) + + ruleset + + name + Helsinki (partial) + rule + + from + ^http://asiointi\.hel\.fi/ + to + https://asiointi.hel.fi/ + + target + + host + asiointi.hel.fi + + + + Heml.is + + ruleset + + name + Heml.is + rule + + from + ^http://(www\.)?heml\.is/ + to + https://$1heml.is/ + + securecookie + + host + ^(?:www\.)?heml\.is$ + name + .+ + + target + + + host + heml.is + + + host + www.heml.is + + + + + Hemmingway Marketing (partial) + + ruleset + + name + Hemmingway Marketing (partial) + rule + + from + ^http://(?:www\.)?voucherexpress\.co\.uk/([^/]+)/ + to + https://www.voucherexpress.co.uk/$1/ + + target + + + host + voucherexpress.co.uk + + + host + www.voucherexpress.co.uk + + + + + Herald Media (partial) + + ruleset + + name + Herald Media (partial) + rule + + + from + ^http://emember\.heraldcorp\.com/ + to + https://emember.heraldcorp.com/ + + + from + ^http://res\.heraldm\.com/ + to + https://res.heraldm.com/ + + + target + + + host + emember.heraldcorp.com + + + host + res.heraldm.com + + + + + Herald Times Reporter + + ruleset + + name + Herald Times Reporter + rule + + + from + ^https?://(?:cmsimg\.|www\.)?htrnews\.com/ + to + https://www.htrnews.com/ + + + from + ^https?://deals\.htrnews\.com/(?:$|\?.*) + to + https://manitow.planetdiscover.com/sp?aff=1180 + + + from + ^https?://deals\.htrnews\.com/ + to + https://manitow.planetdiscover.com/ + + + target + + + host + htrnews.com + + + host + *.htrnews.com + + + + + Herdict + + ruleset + + name + Herdict + rule + + + from + ^http://(?:www\.)?(herdic|nardik)t\.org/ + to + https://www.$1t.org/ + + + from + ^http://dev\.(herdic|nardik)t\.org/ + to + https://dev.$1t.org/ + + + securecookie + + host + ^www\.(?:herdic|nardik)t\.org + name + .+ + + target + + + host + herdict.org + + + host + *.herdict.org + + + host + nardikt.ru + + + host + *.nardikt.ru + + + + + Here.com (partial) + + ruleset + + name + Here.com (partial) + rule + + + from + ^http://((?:qa\.)?developer|m|stg\.m)\.here\.com/ + to + https://$1.here.com/ + + + from + ^http://developer\.here\.net/ + to + https://developer.here.net/ + + + securecookie + + + host + ^(?:developer|m|stg\.m)\.here\.com$ + name + .+ + + + host + ^developer\.here\.net$ + name + .+ + + + target + + + host + *.here.com + + + host + developer.here.net + + + + + Hero Up.com + + ruleset + + name + Hero Up.com + rule + + from + ^http://(www\.)?heroup\.com/ + to + https://$1heroup.com/ + + securecookie + + host + ^(?:\.?www)?\.heroup\.com$ + name + .+ + + target + + + host + heroup.com + + + host + *.heroup.com + + + + + Heroku + + ruleset + + exclusion + + pattern + ^http://mc\.heroku\.com/ + + name + Heroku + rule + + from + ^http://([^/:@\.]+\.)?heroku(app)?\.com/ + to + https://$1heroku$2.com/ + + securecookie + + host + ^[\w\-]+\.herokuapp\.com$ + name + .* + + target + + + host + heroku.com + + + host + *.heroku.com + + + host + *.herokuapp.com + + + + + Hesapla Bakalim.com + + ruleset + + name + Hesapla Bakalim.com + rule + + from + ^http://(www\.)?hesaplabakalim\.com/ + to + https://$1hesaplabakalim.com/ + + securecookie + + host + ^\.?hesaplabakalim\.com$ + name + .+ + + target + + + host + hesaplabakalim.com + + + host + *.hesaplabakalim.com + + + + + Heteml.jp + + ruleset + + name + Heteml.jp + rule + + + from + ^http://(?:secure\.)?heteml\.jp/ + to + https://secure.heteml.jp/ + + + from + ^http://www\.heteml\.jp/[^?]*(?=\?)? + to + https://secure.heteml.jp/ + + + securecookie + + host + ^secure\.heteml\.jp$ + name + .+ + + target + + + host + heteml.jp + + + host + *.heteml.jp + + + + + Hetzner Online + + ruleset + + exclusion + + pattern + ^http://wiki\.hetzner\.de + + name + Hetzner Online + rule + + + from + ^http://hetzner\.de/ + to + https://www.hetzner.de/ + + + from + ^http://(\w+)\.(hetzner|your-server)\.de/ + to + https://$1.$2.de/ + + + securecookie + + + host + ^(.*\.)?hetzner\.de$ + name + .* + + + host + ^.*\.your-server\.de$ + name + .* + + + target + + + host + hetzner.de + + + host + *.hetzner.de + + + host + *.your-server.de + + + host + *.webmail.your-server.de + + + + + Hex-Rays.com + + ruleset + + name + Hex-Rays.com + rule + + from + ^http://(www\.)?hex-rays\.com/ + to + https://$1hex-rays.com/ + + target + + + host + hex-rays.com + + + host + www.hex-rays.com + + + + + Hexagon + + ruleset + + name + Hexagon + rule + + from + ^http://(?:www\.)?hexagon\.cc/ + to + https://hexagon.cc/ + + target + + + host + hexagon.cc + + + host + www.hexagon.cc + + + + + Hexonet + + ruleset + + name + Hexonet + rule + + + from + ^http://(?:www\.)?hexonet\.net/ + to + https://www.hexonet.net/ + + + from + ^http://(cp-ote|wi)\.hexonet\.net/ + to + https://$1.hexonet.net/ + + + from + ^http://demo\.hexonet\.net/(?:\?.*)?$ + to + https://cp-ote.hexonet.net/cp2/index.php/domain/listing/?LOGIN_USER=test.user&LOGIN_PASSWORD=test.passw0rd + + + securecookie + + host + .*\.hexonet\.net$ + name + .+ + + target + + + host + hexonet.net + + + host + *.hexonet.net + + + + + Hi + + ruleset + + name + Hi + rule + + + from + ^http://(?:www\.)?hi\.nl/ + to + https://www.hi.nl/ + + + from + ^http://shop\.(?:www\.)?hi\.nl/ + to + https://shop.www.hi.nl/ + + + target + + host + *.hi.nl + + + + HiConversion.com (partial) + + ruleset + + name + HiConversion.com (partial) + rule + + + from + ^http://(?:www\.)?hiconversion\.com/ + to + https://www.hiconversion.com/ + + + from + ^http://(console|ssl)\.hiconversion\.com/ + to + https://$1.hiconversion.com/ + + + from + ^http://update\.hiconversion\.com/ + to + https://a248.e.akamai.net/f/1015/3091/3/update.hiconversion.com/ + + + securecookie + + host + ^console\.hiconversion\.com$ + name + .+ + + target + + + host + hiconversion.com + + + host + *.hiconversion.com + + + + + HiFX + + ruleset + + name + HiFX + rule + + + from + ^https?://(?:www\.)?hifx(online)?\.co\.uk/ + to + https://www.hifx$1.co.uk/ + + + from + ^http://postoffice\.hifxonline\.co\.uk/ + to + https://postoffice.hifxonline.co.uk/ + + + securecookie + + host + ^(?:postoffice|www)\.hifx(?:online)?\.co\.uk$ + name + .+ + + target + + + host + hifx.co.uk + + + host + www.hifx.co.uk + + + host + hifxonline.co.uk + + + host + *.hifxonline.co.uk + + + + + Hiawatha-webserver.org + + ruleset + + name + Hiawatha-webserver.org + rule + + from + ^http://(www\.)?hiawatha-webserver\.org/ + to + https://$1hiawatah-webserver.org/ + + target + + + host + hiawatha-webserver.org + + + host + www.hiawatha-webserver.org + + + + + Hide My Ass (partial) + + ruleset + + name + Hide My Ass (partial) + rule + + + from + ^http://(?:www\.)?hidemyass\.com/ + to + https://hidemyass.com/ + + + from + ^http://(\d+)\.hidemyass\.com/ + to + https://$1.hidemyass.com/ + + + from + ^http://affiliate\.hidemyass\.com/ + to + https://affiliate.hidemyass.com/ + + + from + ^http://static\.hidemyass\.com/ + to + https://hidemyass.cachefly.net/ + + + securecookie + + host + ^(.*\.)?hidemyass\.com$ + name + .* + + target + + + host + hidemyass.com + + + host + *.hidemyass.com + + + + + HideMe.ru + + ruleset + + name + HideMe.ru + rule + + from + ^http://(?:www\.)?hideme\.ru/ + to + https://hideme.ru/ + + securecookie + + host + ^hidemu\.ru$ + name + .+ + + target + + + host + hideme.ru + + + host + www.hideme.ru + + + + + Hideman.net + + ruleset + + name + Hideman.net + rule + + from + ^http://((?:cdn|static|www)\.)?hideman\.net/ + to + https://$1hideman.net/ + + securecookie + + host + ^\.hideman\.net$ + name + .+ + + target + + + host + hideman.net + + + host + *.hideman.net + + + + + Hidepay.net + + ruleset + + name + Hidepay.net + rule + + from + ^http://(www\.)?hidepay\.net/ + to + https://$1hidepay.net/ + + securecookie + + host + ^\.hidepay\.net$ + name + .+ + + target + + + host + hidepay.net + + + host + *.hidepay.net + + + + + High Fidelity.io + + ruleset + + name + High Fidelity.io + rule + + from + ^http://(www\.)?highfidelity\.io/ + to + https://$1highfidelity.io/ + + target + + + host + highfidelity.io + + + host + www.highfidelity.io + + + + + High Gear Media (partial) + + ruleset + + name + High Gear Media (partial) + rule + + from + ^http://(static\.hgmsites\.net|images\.thecarconnection\.com)/ + to + https://s3.amazonaws.com/$1/ + + target + + + host + static.hgmsites.net + + + host + images.thecarconnection.com + + + + + High Seer.com + + ruleset + + name + High Seer.com + rule + + from + ^http://(www\.)?highseer\.com/ + to + https://$1highseer.com/ + + securecookie + + host + ^\.www\.highseer\.com$ + name + .+ + + target + + + host + highseer.com + + + host + *.highseer.com + + + + + HighWire (partial) + + ruleset + + name + HighWire (partial) + rule + + from + ^http://shibboleth\.highwire\.org/ + to + https://shibboleth.highwire.org/ + + securecookie + + host + ^shibboleth\.highwire\.org$ + name + .+ + + target + + host + shibboleth.highwire.org + + + + Higher Education Academy (partial) + + ruleset + + name + Higher Education Academy (partial) + rule + + from + ^http://(anywhere|autodiscover|groupspace|heagateway|heamysites|integra|my|o[mw]a|portaltest|servicedesk|vpn|webmail)\.heacademy\.ac\.uk/ + to + https://$1.heacademy.ac.uk/ + + securecookie + + host + ^.+\.heacademy\.ac\.uk$ + name + .+ + + target + + host + *.heacademy.ac.uk + + + + HipChat.com + + ruleset + + name + HipChat.com + rule + + from + ^http://(www\.)?hipchat\.com/ + to + https://$1hipchat.com/ + + securecookie + + host + ^(?:www\.)?hipchat\.com$ + name + .+ + + target + + + host + hipchat.com + + + host + www.hipchat.com + + + + + Hipmunk.com + + ruleset + + name + Hipmunk.com + rule + + from + ^http://(www\.)?hipmunk\.com/ + to + https://$1hipmunk.com/ + + securecookie + + host + ^(?:www)?\.hipmunk\.com$ + name + .+ + + target + + + host + hipmunk.com + + + host + *.hipmunk.com + + + + + Hipmunk.com (false MCB) + + ruleset + + name + Hipmunk.com (false MCB) + platform + mixedcontent + rule + + from + ^http://blog\.hipmunk\.com/ + to + https://blog.hipmunk.com/ + + securecookie + + host + ^\.blog\.hipmunk\.com$ + name + .+ + + target + + + host + blog.hipmunk.com + + + host + *.blog.hipmunk.com + + + + + History Today (partial) + + ruleset + + name + History Today (partial) + rule + + from + ^http://(?:www\.)?historytoday\.com/(misc|sites)/ + to + https://www.historytoday.com/$2/ + + target + + + host + historytoday.com + + + host + www.historytoday.com + + + + + History.com (partial) + + ruleset + + name + History.com (partial) + rule + + from + ^https?://s(?:ecure|shop)\.history\.com/ + to + https://secure.history.com/ + + securecookie + + host + ^.*\.history\.com$ + name + .* + + target + + host + *.history.com + + + + HitLeap.com + + ruleset + + name + HitLeap.com + rule + + from + ^http://(www\.)?hitleap\.com/ + to + https://$1hitleap.com/ + + securecookie + + host + ^\.hitleap\.com$ + name + .+ + + target + + + host + hitleap.com + + + host + *.hitleap.com + + + + + Hitachi Data Systems (partial) + + ruleset + + name + Hitachi Data Systems (partial) + rule + + from + ^http://(blogs|portal|sdc)\.hds\.com/ + to + https://$1.hds.com/ + + securecookie + + host + ^(?:blogs|portal|sdc)\.hds\.com$ + name + .+ + + target + + host + *.hds.com + + + + Hitbox.com + + ruleset + + name + Hitbox.com + rule + + + from + ^https?://(?:www\.)?hitbox\.com/(?:.*) + to + https://www.omniture.com/ + + + from + ^http://([\w-])\.hitbox\.com/ + to + https://$1.hitbox.com/ + + + target + + + host + hitbox.com + + + host + *.hitbox.com + + + + + HitsLink + + ruleset + + name + HitsLink + rule + + + from + ^http://(counter\.|www\.)?hitslink\.com/ + to + https://$1hitslink.com/ + + + from + ^http://loc1\.hitsprocessor\.com/ + to + https://loc1.hitsprocessor.com/ + + + from + ^https?://(?:www\.)?realtimestats\.com/ + to + https://realtimestats.com/ + + + securecookie + + + host + ^(.*\.)?hitslink\.com$ + name + .* + + + host + ^loc1\.hitsprocessor\.com$ + name + .* + + + host + ^realtimestats\.com$ + name + .* + + + target + + + host + hitslink.com + + + host + *.hitslink.com + + + host + loc1.hitsprocessor.com + + + host + realtimestats.com + + + host + www.realtimestats.com + + + + + Hivelocity Hosting + + ruleset + + name + Hivelocity Hosting + rule + + from + ^http://(my\.|www\.)?hivelocity\.net/ + to + https://$1hivelocity.net/ + + securecookie + + host + ^.*\.hivelocity\.net$ + name + .+ + + target + + + host + hivelocity.net + + + host + *.hivelocity.net + + + + + Hivos.nl + + ruleset + + name + Hivos.nl + rule + + from + ^http://(www\.)?hivos\.nl/ + to + https://$1hivos.nl/ + + securecookie + + host + ^(?:www\.)?hivos.nl$ + name + .+ + + target + + + host + hivos.nl + + + host + www.hivos.nl + + + + + Hivos.org + + ruleset + + name + Hivos.org + rule + + from + ^http://((?:central-america|east-africa|india|sea|south-america|southern-africa|westasia|www)\.)?hivos\.org/ + to + https://$1hivos.org/ + + target + + + host + hivos.org + + + host + *.hivos.org + + + + + Hjv.dk + + ruleset + + name + Hjv.dk + platform + mixedcontent + rule + + + from + ^http://(www\.)?hjv\.dk/ + to + https://www.hjv.dk/ + + + from + ^http://specmod\.hjv\.dk/ + to + https://specmod.hjv.dk/ + + + target + + + host + hjv.dk + + + host + www.hjv.dk + + + host + specmod.hjv.dk + + + + + Hjv.kursuslogin.dk + + ruleset + + name + Hjv.kursuslogin.dk + rule + + from + ^http://hjv\.kursuslogin\.dk/ + to + https://hjv.kursuslogin.dk/ + + target + + host + hjv.kursuslogin.dk + + + + Hm.com + + ruleset + + name + Hm.com + platform + mixedcontent + rule + + + from + ^http://www\.hm\.com/ + to + https://www.hm.com/ + + + from + ^http://hm\.com/ + to + https://www.hm.com/ + + + target + + + host + www.hm.com + + + host + hm.com + + + + + Hobbyking + + ruleset + + name + Hobbyking + rule + + + from + ^http://www\.hobbyking\.com/ + to + https://www.hobbyking.com/ + + + from + ^http://hobbyking\.com/ + to + https://www.hobbyking.com/ + + + from + ^https://hobbyking\.com/ + to + https://www.hobbyking.com/ + + + target + + + host + hobbyking.com + + + host + www.hobbyking.com + + + + + Hobocomp.com + + ruleset + + name + Hobocomp.com + rule + + from + ^http://(www\.)?hobocomp\.com/ + to + https://$1hobocomp.com/ + + target + + + host + hobocomp.com + + + host + www.hobocomp.com + + + + + Hobsons EMT (partial) + + ruleset + + name + Hobsons EMT (partial) + rule + + from + ^http://([\w-]+)\.askadmissions\.net/ + to + https://$1.askadmissions.net/ + + securecookie + + host + ^\w.*\.askadmissions\.net$ + name + .+ + + target + + host + *.askadmissions.net + + + + Hofstra University + + ruleset + + name + Hofstra University + rule + + from + ^http://(?:www\.)?hofstra\.edu/ + to + https://www.hofstra.edu/ + + target + + + host + hofstra.edu + + + host + www.hofstra.edu + + + + + Hola + + ruleset + + name + Hola + rule + + from + ^http://(cdn4\.|www\.)?hola\.org/ + to + https://$1hola.org/ + + securecookie + + host + ^(?:www\.)?hola\.org$ + name + .+ + + target + + + host + hola.org + + + host + *.hola.org + + + + + Holder de ord.no + + ruleset + + name + Holder de ord.no + rule + + from + ^http://(?:www\.)?holderdeord\.no/ + to + https://www.holderdeord.no/ + + target + + + host + holderdeord.no + + + host + www.holderdeord.no + + + + + Holidaybreak (partial) + + ruleset + + exclusion + + pattern + ^http://www\.weekendjeweg\.nl/$ + + name + Holidaybreak (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?bookit\.nl/ + to + https://www.bookit.nl/ + + + from + ^http://(?:www\.)?djoser\.nl/assets/ + to + https://djoser.nl/assets/ + + + from + ^http://cache[12]\.djoser\.nl/assets/djoser_2012-1\.0\.56/ + to + https://djoser.nl/assets/djoser_2012/ + + + from + ^http://(?:www\.)?djoser(?:junior|wandelenfiets)\.nl/(asset|cs|image)s/ + to + https://djoser.nl/assets/$1s/ + + + from + ^http://(www\.)?explore\.co\.uk/(images/|media/|templates/) + to + https://$1explore.co.uk/$2 + + + from + ^http://(?:www\.)?holidaybreak\.co\.uk/(?:holidaybreak/)? + to + https://ww7.investorrelations.co.uk/holidaybreak/ + + + from + ^http://(?:www\.)?pgl\.co\.uk/ + to + https://www.pgl.co.uk/ + + + from + ^http://(www\.)?superbreak\.com/ + to + https://$1superbreak.com/ + + + from + ^http://(img1|static)\.superbreak\.(?:com|net)/ + to + https://www.superbreak.com/ + + + from + ^http://(?:www\.)?weekendjeweg\.nl/(favicon\.ico|resources/) + to + https://www.weekendjeweg.nl/$1 + + + securecookie + + + host + ^(.*\.)(bookit|weekendjeweg)\.nl$ + name + .* + + + host + ^(.*\.)pgl\.co\.uk$ + name + .* + + + host + ^(.*\.)superbreak\.com$ + name + .* + + + target + + + host + bookit.nl + + + host + www.bookit.nl + + + host + djoser.nl + + + host + *.djoser.nl + + + host + djoserjunior.nl + + + host + www.djoserjunior.nl + + + host + djoserwandelenfiets.nl + + + host + www.djoserwandelenfiets.nl + + + host + explore.co.uk + + + host + www.explore.co.uk + + + host + holidaybreak.co.uk + + + host + www.holidaybreak.co.uk + + + host + pgl.co.uk + + + host + www.pgl.co.uk + + + host + superbreak.com + + + host + *.superbreak.com + + + host + *.superbreak.net + + + host + weekendjeweg.nl + + + host + www.weekendjeweg.nl + + + + + Hollywood Outlaws.com (false MCB) + + ruleset + + name + Hollywood Outlaws.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?hollywoodoutlaws\.com/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://www.hollywoodoutlaws.com/ + + securecookie + + host + ^\.hollywoodoutlaws\.com$ + name + .+ + + target + + + host + hollywoodoutlaws.com + + + host + *.hollywoodoutlaws.com + + + + + Hollywood Outlaws.com (partial) + + ruleset + + name + Hollywood Outlaws.com (partial) + rule + + from + ^http://(?:www\.)?hollywoodoutlaws\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://www.hollywoodoutlaws.com/ + + target + + + host + hollywoodoutlaws.com + + + host + www.hollywoodoutlaws.com + + + + + Hollywood Reporter (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?hollywoodreporter\.com/(?!favicon\.ico|sites/) + + + pattern + ^http://(?:www\.)?hollywoodreporter\.com/sites/default/files/css/(?!css_02b3ba95a2adca47bf1e40d170fcaa56\.css) + + + name + Hollywood Reporter (partial) + rule + + + from + ^http://(?:www\.)?hollywoodreporter\.com/ + to + https://a248.e.akamai.net/f/1682/7219/8m/www.hollywoodreporter.com/ + + + from + ^http://m\.hollywoodreporter\.com/mobify/ + to + https://hollywoodreporter.mobify.com/mobify/ + + + from + ^http://s(ecure|ubscribe)\.hollywoodreporter\.com/ + to + https://s$1.hollywoodreporter.com/ + + + securecookie + + host + .+\.hollywoodreporter\.com$ + name + .+ + + target + + + host + hollywoodreporter.com + + + host + *.hollywoodreporter.com + + + + + Holoscripter.org + + ruleset + + name + Holoscripter.org + rule + + from + ^http://(www\.)?holoscripter\.org/ + to + https://$1holoscripter.org/ + + securecookie + + host + ^(?:w*\.)?holoscripter\.org$ + name + .+ + + target + + + host + holoscripter.org + + + host + *.holoscripter.org + + + + + Holtwick IT (partial) + + ruleset + + name + Holtwick IT (partial) + rule + + from + ^http://(www\.)?apperdeck\.com/ + to + https://$1apperdeck.com/ + + target + + + host + apperdeck.com + + + host + www.apperdeck.com + + + + + Home Depot.com (partial) + + ruleset + + name + Home Depot.com (partial) + rule + + + from + ^http://secure2\.homedepot\.com/ + to + https://secure2.homedepot.com/ + + + from + ^http://(?:www\.)?community\.homedepot\.com/ + to + https://homedepot.i.lithium.com/ + + + from + ^http://contractorservices\.homedepot\.com/(\?.*)?$ + to + https://secure2.homedpot.com/pro$1 + + + from + ^http://(corporate|hdapps|hdconnect|homedepotlink|swsac|thdfed)\.homedepot\.com/ + to + https://$1.homedepot.com/ + + + from + ^http://ir\.homedepot\.com/(client|WebSideStory)/ + to + https://origin-phoenix.corporate-ir.net/$1/ + + + securecookie + + host + ^(?:hdapps|hdconnect|homedepotlink|thdfed)?\.homedepot\.com$ + name + .+ + + target + + + host + homedepot.com + + + host + *.homedepot.com + + + + + Home Mentors.com + + ruleset + + name + Home Mentors.com + rule + + from + ^http://(www\.)?homementors\.com/ + to + https://$1homementors.com/ + + target + + + host + homementors.com + + + host + www.homementors.com + + + + + Home School Legal Defense Association + + ruleset + + name + Home School Legal Defense Association + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?hslda\.org/ + to + https://www.hslda.org/ + + + from + ^http://secure\.hslda\.org/ + to + https://secure.hslda.org/ + + + target + + + host + hslda.org + + + host + www.hslda.org + + + host + secure.hslda.org + + + + + Home Theater Review.com (false MCB) + + ruleset + + name + Home Theater Review.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?hometheaterreview\.com/(?!advertpro/|dev/|favicon\.ico|htrads/|images/|images_news/|wp-content/|wp-includes/) + to + https://hometheaterreview.com/ + + target + + + host + hometheaterreview.com + + + host + www.hometheaterreview.com + + + + + Home Theater Review.com (partial) + + ruleset + + name + Home Theater Review.com (partial) + rule + + from + ^http://(?:www\.)?hometheaterreview\.com/(?=advertpro/|dev/|favicon\.ico|htrads/|images/|images_news/|wp-content/|wp-includes/) + to + https://hometheaterreview.com/ + + securecookie + + host + ^\.hometheaterreview\.com$ + name + ^__utm\w+$ + + target + + + host + hometheaterreview.com + + + host + *.hometheaterreview.com + + + + + Home of the Sebijk.com + + ruleset + + name + Home of the Sebijk.com + rule + + + from + ^http://(www\.)?sebijk\.com/ + to + https://www.sebijk.com/ + + + from + ^http://(www\.)?freemail\.sebijk\.com/ + to + https://freemail.sebijk.com/ + + + target + + + host + www.sebijk.com + + + host + freemail.sebijk.com + + + + + Home.ch (partial) + + ruleset + + name + Home.ch (partial) + rule + + from + ^http://(?:www\.)?home\.ch/ + to + https://www.home.ch/ + + securecookie + + host + ^www\.home\.ch$ + name + .+ + + target + + + host + home.ch + + + host + www.home.ch + + + + + HomeBello (partial) + + ruleset + + name + HomeBello (partial) + rule + + from + ^http://(www\.)?homebello\.com/((?:checkout|contact|order-status)(?:$|\?)|content/|css/|images/|photos/|Public/|store_image/|Styles/) + to + https://$1homebello.com/$2 + + target + + + host + homebello.com + + + host + www.homebello.com + + + + + HomeFinder.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?homefinder\.com/widgets/ + + name + HomeFinder.com (partial) + rule + + from + ^http://(?:www\.)?homefinder\.com/ + to + https://www.homefinder.com/ + + securecookie + + + host + ^\.homefinder\.com$ + name + ^__utm\w$ + + + host + ^www\.homefinder\.com$ + name + ^(?:hf_adv|ki_[tu])$ + + + target + + + host + homefinder.com + + + host + www.homefinder.com + + + + + HomeInsurance.com + + ruleset + + name + HomeInsurance.com + rule + + from + ^http://(www\.)?homeinsurance\.com/ + to + https://$1homeinsurance.com/ + + securecookie + + host + ^\.homeinsurance\.com$ + name + .+ + + target + + + host + homeinsurance.com + + + host + *.homeinsurance.com + + + + + Homebase + + ruleset + + name + Homebase + rule + + + from + ^http://homebase\.co\.uk/ + to + https://www.homebase.co.uk/ + + + from + ^http://www\.homebase\.co\.uk/ + to + https://www.homebase.co.uk/ + + + from + ^http://www\.homebase\.com/ + to + https://www.homebase.co.uk/ + + + from + ^http://homebase\.com/ + to + https://www.homebase.co.uk/ + + + target + + + host + www.homebase.com + + + host + homebase.com + + + host + www.homebase.co.uk + + + host + homebase.co.uk + + + + + Homeless World Cup + + ruleset + + name + Homeless World Cup + rule + + from + ^http://(www\.)?homelessworldcup\.org/ + to + https://$1homelessworldcup.org/ + + securecookie + + host + ^(?:www)?\.homelessworldcup\.org$ + name + .+ + + target + + + host + homelessworldcup.org + + + host + *.homelessworldcup.org + + + + + Honest Policy + + ruleset + + name + Honest Policy + rule + + from + ^http://(www\.)?honestpolicy\.com/ + to + https://$1honestpolicy.com/ + + securecookie + + host + ^\.honestpolicy\.com$ + name + .+ + + target + + + host + honestpolicy.com + + + host + *.honestpolicy.com + + + + + HoneyBeeLoans.com + + ruleset + + name + HoneyBeeLoans.com + rule + + from + ^http://(www\.)?honeybeeloans\.com/ + to + https://$1honeybeeloans.com/ + + securecookie + + host + ^(?:w*\.)?honeybeeloans\.com$ + name + .+ + + target + + + host + honeybeeloans.com + + + host + *.honeybeeloans.com + + + + + Hong Kong Stock Exchange (partial) + + ruleset + + name + Hong Kong Stock Exchange (partial) + rule + + from + ^http://(?:www\.)?hkex\.com\.hk/ + to + https://www.hkex.com.hk/ + + securecookie + + host + ^www\.hkex\.com\.hk$ + name + .+ + + target + + + host + hkex.com.hk + + + host + www.hkex.com.hk + + + + + Honolulu Star Advertiser + + ruleset + + name + Honolulu Star Advertiser + rule + + + from + ^https?://(?:www\.)?staradvertiser\.com/ + to + https://www.staradvertiser.com/ + + + from + ^http://media\.staradvertiser\.com/ + to + https://media.staradvertiser.com/ + + + from + ^https?://sa-cmedia01\.staradvertiser\.com/ + to + https://d392249hhaazk5.cloudfront.net/ + + + target + + + host + staradvertiser.com + + + host + *.staradvertiser.com + + + + + HootSuite + + ruleset + + name + HootSuite + rule + + + from + ^http://(translate\.|www\.)?hootsuite\.com/ + to + https://$1hootsuite.com/ + + + from + ^https?://feedback\.hootsuite\.com/(?=css/|images/|packages/|track\.gif) + to + https://hootsuite.uservoice.com/ + + + from + ^https?://help\.hootsuite\.com/(?=(?:assets|external|generated|images|registration|system)/) + to + https://hootsuite.zendesk.com/ + + + from + ^https?://s0\.static\.hootsuite\.com/ + to + https://d2l6uygi1pgnys.cloudfront.net/ + + + from + ^https?://(?:s7\.)?static\.hootsuite\.com/ + to + https://d1ue63gpusfv5w.cloudfront.net/ + + + securecookie + + host + ^(?:.*\.)?hootsuite\.com$ + name + .+ + + target + + + host + hootsuite.com + + + host + *.hootsuite.com + + + + + Hop Studios + + ruleset + + name + Hop Studios + platform + mixedcontent + rule + + from + ^http://(www\.)?hopstudios\.com/ + to + https://$1hopstudios.com/ + + securecookie + + host + ^(.*\.)?hopstudios\.com$ + name + .* + + target + + + host + hopstudios.com + + + host + www.hopstudios.com + + + + + Horde (partial) + + ruleset + + name + Horde (partial) + rule + + + from + ^http://dev\.horde\.org/ + to + https://dev.horde.org/ + + + from + ^http://(www\.)?horde-llc\.com/ + to + https://$1horde-llc.com/ + + + target + + + host + dev.horde.org + + + host + horde-llc.com + + + host + www.horde-llc.com + + + + + Horizon.TV + + ruleset + + name + Horizon.TV + rule + + + from + ^http://(?:www\.)?horizon\.tv/ + to + https://www.horizon.tv/ + + + from + ^http://(oesp|static)\.horizon\.tv/ + to + https://$1.horizon.tv/ + + + securecookie + + host + ^\.horizon\.tv$ + name + .+ + + target + + + host + horizon.tv + + + host + *.horizon.tv + + + + + Horyzon Media (partial) + + ruleset + + name + Horyzon Media (partial) + rule + + from + ^http://ads\.horyzon-media\.com/ + to + https://ads.horyzon-media.com/ + + securecookie + + host + ^ads\.horyzon-media\.com$ + name + .+ + + target + + host + ads.horyzon-media.com + + + + Hospitality Leaders + + ruleset + + name + Hospitality Leaders + rule + + from + ^http://(ads\.|www\.)?hospitalityleaders\.com/ + to + https://$1hospitalityleaders.com/ + + securecookie + + host + ^\.?hospitalityleaders\.com$ + name + .+ + + target + + + host + hospitalityleaders.com + + + host + *.hospitalityleaders.com + + + + + Host Analytics (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?hostanalytics\.com/(?!modules/|sites/) + + name + Host Analytics (partial) + rule + + from + ^http://(cpm\.|hive\.|www\.)?hostanalytics\.com/ + to + https://$1hostanalytics.com/ + + securecookie + + host + ^(?:cpm|hive)\.hostanalytics\.com$ + name + .+ + + target + + + host + hostanalytics.com + + + host + *.hostanalytics.com + + + + + Host Creo + + ruleset + + name + Host Creo + platform + mixedcontent + rule + + + from + ^http://(hostcreo|creocommunico)\.com/ + to + https://creocommunico.com/ + + + from + ^http://(secure|www)\.(hostcreo|creocommunico)\.com/ + to + https://$1.creocommunico.com/ + + + target + + + host + hostcreo.com + + + host + www.hostcreo.com + + + host + creocommunico.com + + + host + secure.creocommunico.com + + + host + www.creocommunico.com + + + + + Host Europe Group + + ruleset + + name + Host Europe Group + rule + + from + ^http://(www\.)?hosteuropegroup\.com/ + to + https://$1hosteuropegroup.com/ + + target + + + host + hosteuropegroup.com + + + host + www.hosteuropegroup.com + + + + + Host Europe.de + + ruleset + + name + Host Europe.de + rule + + from + ^http://((?:faq|kis|www\.kis|webmail|(?:www\.)?webmailer|www)\.)?hosteurope\.de/ + to + https://$1hosteurope.de/ + + securecookie + + host + ^(?:(?:www\.)?webmailer\.|www\.)?hosteurope\.de$ + name + .+ + + target + + + host + hosteurope.de + + + host + *.hosteurope.de + + + + + Host One (partial) + + ruleset + + name + Host One (partial) + rule + + from + ^http://sugarcrm\.hostone\.com\.au/ + to + https://sugarcrm.hostone.com.au/ + + securecookie + + host + ^sugarcrm\.hostone\.com\.au$ + name + .+ + + target + + host + sugarcrm.hostone.com.au + + + + Host Voice.com + + ruleset + + name + Host Voice.com + rule + + from + ^http://(www\.)?hostvoice\.com/ + to + https://$1hostvoice.com/ + + target + + + host + hostvoice.com + + + host + www.hostvoice.com + + + + + Host-Tracker.com (partial) + + ruleset + + name + Host-Tracker.com (partial) + rule + + from + ^http://(ext|www)\.host-tracker\.com/ + to + https://$1.host-tracker.com/ + + securecookie + + host + ^www\.host-tracker\.com$ + name + .+ + + target + + host + *.host-tracker.com + + + + Host.co.id + + ruleset + + name + Host.co.id + rule + + from + ^http://(www\.)?(site\.biz|host\.co)\.id/ + to + https://$1$2.id/ + + securecookie + + host + ^w*\.(?:site\.biz|host\.co)\.id$ + name + .+ + + target + + + host + host.co.id + + + host + *.host.co.id + + + host + site.biz.id + + + host + *.site.biz.id + + + + + Host1Plus + + ruleset + + name + Host1Plus + platform + mixedcontent + rule + + from + ^http://(\w+\.)?host1plus\.com/ + to + https://$1host1plus.com/ + + securecookie + + host + ^(.*\.)?host1plus\.com$ + name + .* + + target + + + host + host1plus.com + + + host + *.host1plus.com + + + + + HostBaby (partial) + + ruleset + + name + HostBaby (partial) + rule + + from + ^http://(www\.)?hostbaby\.com/ + to + https://$1hostbaby.com/ + + securecookie + + host + ^www\.hostbaby\.com$ + name + .+ + + target + + + host + hostbaby.com + + + host + www.hostbaby.com + + + + + HostBill (partial) + + ruleset + + name + HostBill (partial) + rule + + from + ^http://hostbillapp\.com/ + to + https://hostbillapp.com/ + + target + + host + hostbillapp.com + + + + HostCentric + + ruleset + + name + HostCentric + platform + mixedcontent + rule + + + from + ^http://(secure\.|www\.)?hostcentric\.com/ + to + https://$1hostcentric.com/ + + + from + ^http://images\.hostcentric\.com/ + to + https://secure.hostcentric.com/images/ + + + securecookie + + host + ^(.*\.)hostcentric\.com$ + name + .* + + target + + + host + hostcentric.com + + + host + *.hostcentric.com + + + + + HostDime (partial) + + ruleset + + name + HostDime (partial) + rule + + + from + ^http://(core\.|forum\.|www\.)?hostdime\.com/ + to + https://$1hostdime.com/ + + + from + ^http://(?:www\.)?hostdimedomains\.com/ + to + https://www.hostdimedomains.com/ + + + securecookie + + host + ^(.*\.)?hostdime\.com$ + name + .* + + target + + + host + hostdime.com + + + host + *.hostdime.com + + + host + hostdimedomains.com + + + host + www.hostdimedomains.com + + + + + HostGator (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|forums|templates)\. + + name + HostGator (partial) + rule + + from + ^http://(\w+\.)?hostgator\.com(:8443)?/ + to + https://$1hostgator.com$2/ + + securecookie + + host + ^.+\.hostgator\.com$ + name + .+ + + target + + + host + hostgator.com + + + host + *.hostgator.com + + + + + HostHorde.com + + ruleset + + name + HostHorde.com + rule + + from + ^http://(www\.)?hosthorde\.com/ + to + https://$1hosthorde.com/ + + securecookie + + host + ^(?:w*\.)?hosthorde\.com$ + name + .+ + + target + + + host + hosthorde.com + + + host + *.hosthorde.com + + + + + HostSearch (partial) + + ruleset + + name + HostSearch (partial) + rule + + from + ^http://secure\.hostsearch\.com/ + to + https://secure.hostsearch.com/ + + target + + host + secure.hostsearch.com + + + + Hostasaurus + + ruleset + + name + Hostasaurus + rule + + from + ^http://(secure\.|www\.)?hostasaurus\.com/ + to + https://$1hostasaurus.com/ + + target + + + host + hostasaurus.com + + + host + *.hostasaurus.com + + + + + Hostica.com + + ruleset + + name + Hostica.com + platform + mixedcontent + rule + + from + ^http://(www\.)?hostica\.com/ + to + https://www.hostica.com/ + + target + + + host + hostica.com + + + host + www.hostica.com + + + + + Hostican Web Hosting + + ruleset + + name + Hostican Web Hosting + rule + + from + ^http://(www|chat|forum)\.hostican\.com/ + to + https://$1.hostican.com/ + + target + + + host + www.hostican.com + + + host + chat.hostican.com + + + host + forum.hostican.com + + + + + Hosting (partial) + + ruleset + + name + Hosting (partial) + rule + + from + ^http://(www\.)?hosting\.com/ + to + https://www.hosting.com/ + + target + + + host + hosting.com + + + host + www.hosting.com + + + + + Hosting Catalog.com (false MCB) + + ruleset + + name + Hosting Catalog.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.hostingcatalog\.com/ + to + https://www.hostingcatalog.com/ + + target + + host + www.hostingcatalog.com + + + + Hosting Catalog.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.hostingcatalog\.com/+(?!1x1s\.gif|favicon\.ico|images/|style\.css) + + name + Hosting Catalog.com (partial) + rule + + from + ^http://(www\.)?hostingcatalog\.com/ + to + https://$1hostingcatalog.com/ + + target + + + host + hostingcatalog.com + + + host + www.hostingcatalog.com + + + + + Hosting2GO.nl (partial) + + ruleset + + name + Hosting2GO.nl (partial) + rule + + from + ^http://(www\.)?hosting2go\.nl/(?=system/|tl_files/) + to + https://$1hosting2go.nl/ + + target + + + host + hosting2go.nl + + + host + www.hosting2go.nl + + + + + Hosting90.cz + + ruleset + + name + Hosting90.cz + rule + + from + ^http://(administrace\.|www\.)?hosting90\.cz/ + to + https://$1hosting90.cz/ + + securecookie + + host + ^w*\.hosting90\.cz$ + name + .+ + + target + + + host + hosting90.cz + + + host + *.hosting90.cz + + + + + Hosting9000.com + + ruleset + + name + Hosting9000.com + rule + + from + ^http://(www\.)?hosting9000\.com/ + to + https://$1hosting9000.com/ + + securecookie + + host + ^(?:www\.)?hosting9000\.com$ + name + .+ + + target + + + host + hosting9000.com + + + host + *.hosting9000.com + + + + + HostingCon + + ruleset + + name + HostingCon + rule + + from + ^http://(europe\.|www\.)?hostingcon\.com/ + to + https://$1hostingcon.com/ + + securecookie + + host + ^(?:.*\.)?hostingcon\.com$ + name + .+ + + target + + + host + hostingcon.com + + + host + *.hostingcon.com + + + + + HostingXtreme.com (partial) + + ruleset + + name + HostingXtreme.com (partial) + rule + + from + ^http://(www\.)?hostingxtreme\.com/ + to + https://$1hostingxtreme.com/ + + securecookie + + host + ^hostingxtreme\.com$ + name + .+ + + target + + + host + hostingxtreme.com + + + host + www.hostingxtreme.com + + + + + Hostingas.lt + + ruleset + + name + Hostingas.lt + rule + + from + ^http://(www\.)?hostingas\.lt/ + to + https://$1hostingas.lt/ + + target + + + host + hostingas.lt + + + host + www.hostingas.lt + + + + + Hostmonster + + ruleset + + name + Hostmonster + rule + + + from + ^http://(\w+\.)?hostmonster\.com/ + to + https://$1hostmonster.com/ + + + from + ^http://(cf\.)?hostmonster-cdn\.com/ + to + https://$1hostmonster-cdn.com/ + + + securecookie + + + host + ^(?:.*\.)?hostmonster\.com$ + name + .+ + + + host + ^\.hostmonster-cdn\.com$ + name + .+ + + + target + + + host + hostmonster.com + + + host + *.hostmonster.com + + + host + hostmonster-cdn.com + + + host + *.hostmonster-cdn.com + + + + + Hostpoint + + ruleset + + name + Hostpoint + rule + + + from + ^http://(?:www\.)?hostpoint\.ch/ + to + https://www.hostpoint.ch/ + + + from + ^http://(?:www\.)?14daytrial\.hostpoint\.ch/[^\?]*(\?.*)? + to + https://www.hostpoint.ch/ms/promo/hostingtrial/index.php$1 + + + from + ^http://(?:www\.)?admin\.hostpoint\.ch/ + to + https://admin.hostpoint.ch/ + + + from + ^http://(?:www\.)?blog\.hostpoint\.ch/ + to + https://blog.hostpoint.ch/ + + + from + ^http://support\.hostpoint\.ch/ + to + https://support.hostpoint.ch/ + + + from + ^http://www\.support\.hostpoint\.ch/[^\?]*(\?.*)? + to + https://support.hostpoint.ch/$1 + + + securecookie + + host + ^(?:admin|support|www)\.hostpoint\.ch$ + name + .+ + + target + + + host + hostpoint.ch + + + host + *.hostpoint.ch + + + + + Hostpointpartner.ch + + ruleset + + name + Hostpointpartner.ch + rule + + from + ^http://(www\.)?hostpointpartner\.ch/ + to + https://$1hostpointpartner.ch/ + + target + + + host + hostpointpartner.ch + + + host + www.hostpointpartner.ch + + + + + Hostr.co + + ruleset + + name + Hostr.co + rule + + from + ^http://(www\.)?hostr\.co/ + to + https://$1hostr.co/ + + target + + + host + hostr.co + + + host + www.hostr.co + + + + + Hosts + + ruleset + + name + Hosts + rule + + + from + ^http://(?:www\.)?hosts\.co\.uk/ + to + https://www.hosts.co.uk/ + + + from + ^http://(admin|webmail)\.hosts\.co\.uk/ + to + https://$1.hosts.co.uk/ + + + target + + + host + www.hosts.co.uk + + + host + admin.hosts.co.uk + + + host + webmail.hosts.co.uk + + + host + hosts.co.uk + + + + + Hot Scripts.com + + ruleset + + name + Hot Scripts.com + rule + + from + ^http://(www\.)?hotscripts\.com/ + to + https://$1hotscripts.com/ + + target + + + host + hotscripts.com + + + host + www.hotscripts.com + + + + + HotUKDeals (partial) + + ruleset + + name + HotUKDeals (partial) + rule + + + from + ^http://(www\.)?dealspwn\.com/(clientscript/|css/|images/|login$|writer) + to + https://www.dealspwn.com/$2 + + + from + ^https://gamebase\.dealspwn\.com/((base|style_UK)\.css$|images/) + to + https://gamebase.dealspwn.com/$1 + + + from + ^http://(www\.)?hotukdeals\.com/(about$|clientscript/|contact|custom-settings|favicon\.ico$|help|hukd-badges|images/|login|newsletter|profile/|rest-api|stylesheets/|submit|top) + to + https://www.hotukdeals.com/$2 + + + from + ^http://m\.hotukdeals\.com/(favicon\.ico$|images/|login/|newsletter|stylesheets/) + to + https://m.hotukdeals.com/$2 + + + from + ^http://(www\.)?mobot\.net/ + to + https://www.mobot.net/ + + + from + ^http://m\.mobot\.net/(css/|images/|login$) + to + https://m.mobot.net/$1 + + + from + ^http://(www\.)?statichukd\.com/ + to + https://www.hotukdeals.com/ + + + securecookie + + host + ^\.mobot\.net$ + name + .* + + target + + + host + dealspwn.com + + + host + gamebase.dealspwn.com + + + host + www.dealspwn.com + + + host + hotukdeals.com + + + host + m.hotukdeals.com + + + host + www.hotukdeals.com + + + host + mobot.net + + + host + m.mobot.net + + + host + www.mobot.net + + + host + statichukd.com + + + host + www.statichukd.com + + + + + Hotel Mangaby + + ruleset + + name + Hotel Mangaby + rule + + from + ^http://(www\.)?hotelmangaby\.com/ + to + https://$1hotelmangaby.com/ + + target + + + host + hotelmangaby.com + + + host + www.hotelmangaby.com + + + + + Hotel Wifi.com (partial) + + ruleset + + name + Hotel Wifi.com (partial) + rule + + from + ^http://(hiesorrentovalley\.|www\.)?hotelwifi\.com/ + to + https://$1hotelwifi.com/ + + securecookie + + host + ^hiesorrentovalley\.hotelwifi\.com$ + name + .+ + + target + + + host + hotelwifi.com + + + host + *.hotelwifi.com + + + + + Hotelplan + + ruleset + + name + Hotelplan + rule + + + from + ^http://(?:www\.)?hotelplan\.ch/ + to + https://www.hotelplan.ch/ + + + from + ^http://(?:www\.)?travelhouse\.ch/ + to + https://www.travelhouse.ch/ + + + target + + + host + hotelplan.ch + + + host + www.hotelplan.ch + + + host + travelhouse.ch + + + host + www.travelhouse.ch + + + host + globusreisen.ch + + + host + www.globusreisen.ch + + + host + globusvoyages.ch + + + host + www.globusvoyages.ch + + + + + Hotels.com (partial) + + ruleset + + name + Hotels.com (partial) + rule + + + from + ^http://(\w+)\.cdn-hotels\.com/ + to + https://$1.cdn-hotels.com/ + + + from + ^https?://(?:\w\w\.|www\.)?hotels\.com/(external/|html/blank\.html|static/) + to + https://a1.cdn-hotels.com/$1 + + + from + ^https?://(?:www\.)?hotels\.com/((?:c[no]\d+|customer_care|de\d+|deals|ImageDisplay|site-index)(?:$|\?|/)|selectors/|__ssobj/) + to + https://ssl.hotels.com/$1 + + + from + ^https?://(\w\w)\.hotels\.com/((?:c[no]\d+|customer_care|de\d+|deals|ImageDisplay|site-index)(?:$|\?|/)|selectors/|__ssobj/) + to + https://ssl-$1.hotels.com/$2 + + + from + ^http://(customercare|delivery|(?:\w\w\.)?service|ssl(?:-\w\w)?)\.hotels\.com/ + to + https://$1.hotels.com/ + + + securecookie + + + host + ^\.cdn-hotels\.com$ + name + .+ + + + host + ^\.hotels\.com$ + name + ^s_\w+$ + + + host + ^(?:customercare|(?:\w\w\.)?service)\.hotels\.com$ + name + .+ + + + target + + + host + *.cdn-hotels.com + + + host + hotels.com + + + host + *.hotels.com + + + + + Hoteltotravel (partial) + + ruleset + + name + Hoteltotravel (partial) + rule + + + from + ^https?://www\.hoteltotravel\.com/ + to + https://hoteltotravel.com/ + + + from + ^http://hoteltotravel\.com/(contact|faq|hotel-search/roombook|modules/|security_policy|terms|themes/|users?/) + to + https://hoteltotravel.com/$1 + + + target + + + host + hoteltotravel.com + + + host + www.hoteltotravel.com + + + + + Hotfile + + ruleset + + name + Hotfile + rule + + from + ^http://(?:www\.)?hotfile\.com/ + to + https://hotfile.com/ + + target + + + host + www.hotfile.com + + + host + hotfile.com + + + + + Hotmail / Live + + ruleset + + name + Hotmail / Live + rule + + + from + ^http://dub(\d+)\.afx\.ms/ + to + https://dub$1.afx.ms/ + + + from + ^http://a(uth)?\.gfx\.ms/ + to + https://a$1.gfx.ms/ + + + from + ^https?://live\.com/ + to + https://www.live.com/ + + + from + ^http://(account|calendar|c|c-mid|consent|contacts|devices|(?:[\w-]+\.)?(?:directory|login|profile)|(?:login\.)?domains|favorites|g|groups|h|(?:dc\d\.)?client\.hip|hipservice|home|hotmail|sc\.imp|mail|(?:mc1|sc[12])\.maps|(?:\w+\.gateway\.)?messenger|mid|oauth|office|onecare|onedrive|people|photos|rad|secure\.\w+|(?:directory|livecontacts|geo\.messenger)\.services|signout|signup|skydrive|skygfx|status|(?:[\w-]+(?:\.users)?\.)?storage|max\.sup|www)\.live\.com/ + to + https://$1.live.com/ + + + from + ^https?://sc[34]\.maps\.live\.com/ + to + https://sc1.maps.live.com/ + + + from + ^http://accountservices\.passport\.net/ + to + https://accountservices.passport.net/ + + + from + ^https?://(?:www\.)?hotmail\.co\.(jp|uk)/ + to + https://hotmail.co.$1/ + + + from + ^http://(www\.)?hotmail\.com/ + to + https://$1hotmail.com/ + + + from + ^http://gfx(\d)\.hotmail\.com/ + to + https://gfx$1.hotmail.com/ + + + from + ^http://[^@:/\.]+\.([^@:/\.]+)\.mail\.live\.com/ + to + https://$1.mail.live.com/ + + + from + ^http://(apis|df-feeds|feeds|js|l)\.live\.net/ + to + https://$1.live.net/ + + + from + ^http://(\w+)\.bay\.livefilestore\.com/ + to + https://$1.bay.livefilestore.com/ + + + from + ^http://www\.passportimages\.com/ + to + https://www.passportimages.com/ + + + from + ^http://p\.sfx\.ms/ + to + https://p.sfx.ms/ + + + from + ^http://(www\.)?so\.cl/ + to + https://$1so.cl/ + + + from + ^http://(\w+)\.wlxrs\.com/ + to + https://$1.wlxrs.com/ + + + securecookie + + + host + ^\.?(?:account|consent|(?:login\.)?domains|login|mail|messenger|profile|signup)\.live\.com$ + name + .+ + + + host + ^people\.directory\.live\.com$ + name + .+ + + + host + ^l\.live\.net$ + name + .+ + + + target + + + host + *.afx.ms + + + host + *.gfx.ms + + + host + hotmail.co.* + + + host + www.hotmail.co.* + + + host + hotmail.com + + + host + *.hotmail.com + + + host + live.com + + + host + *.live.com + + + host + *.live.net + + + host + *.bay.livefilestore.com + + + host + www.passportimages.com + + + host + p.sfx.ms + + + host + so.cl + + + host + www.so.cl + + + host + *.wlxrs.com + + + + + Hotspot Shield (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?hsselite\.com/sign-in(?:$|[?/]) + + name + Hotspot Shield (partial) + rule + + + from + ^http://hotspotshield\.com/ + to + https://hotspotshield.com/ + + + from + ^http://(cdn\.|www\.)?hsselite\.com/ + to + https://$1hsselite.com/ + + + target + + + host + hotspotshield.com + + + host + hsselite.com + + + host + *.hsselite.com + + + + + Hotwire + + ruleset + + name + Hotwire + rule + + + from + ^http://hotwire\.com/ + to + https://www.hotwire.com/ + + + from + ^http://(cruise|extranet|www)\.hotwire\.com/ + to + https://$1.hotwire.com/ + + + target + + + host + hotwire.com + + + host + *.hotwire.com + + + + + Hound CI.com + + ruleset + + name + Hound CI.com + rule + + from + ^http://(www\.)?houndci\.com/ + to + https://$1houndci.com/ + + securecookie + + host + ^(?:www\.)?houndci\.com$ + name + .+ + + target + + + host + houndci.com + + + host + www.houndci.com + + + + + Hounddog Central + + ruleset + + name + Hounddog Central + rule + + from + ^http://(www\.)?hounddogcentral\.com/ + to + https://$1hounddogcentral.com/ + + securecookie + + host + ^(?:w*\.)?hounddogcentral\.com$ + name + .+ + + target + + + host + hounddogcentral.com + + + host + *.hounddogcentral.com + + + + + HousingWire.com + + ruleset + + name + HousingWire.com + rule + + + from + ^http://(?:www\.)?housingwire\.com/ + to + https://www.housingwire.com/ + + + from + ^http://store\.housingwire\.com/[^\?]*(\?.*)? + to + https://checkout.subscriptiongenius.com/housingwire.com/$1 + + + target + + + host + housingwire.com + + + host + *.housingwire.com + + + + + Houston Chronicle (partial) + + ruleset + + exclusion + + pattern + ^http://fangear\.chron\.com/(?!App_Themes|images)/ + + name + Houston Chronicle (partial) + rule + + + from + ^http://(dailydeal|fangear|file)\.chron\.com/ + to + https://$1.chron.com/ + + + from + ^https?://local\.chron\.com/static/ + to + https://www.localedge.com/static/ + + + from + ^http://myaccount\.houstonchronicle\.com/ + to + https://myaccount.houstonchronicle.com/ + + + securecookie + + + host + ^dailydeal\.chron\.com$ + name + .+ + + + host + ^myaccount\.houstonchronicle\.com$ + name + .+ + + + target + + + host + *.chron.com + + + host + myaccount.houstonchronicle.com + + + + + Hover.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?hover\.com/(?:blog|wp-content|wp-includes)(?:$|[?/]) + + name + Hover.com (partial) + rule + + from + ^http://((?:ask|help|mail|www)\.)?hover\.com/ + to + https://$1hover.com/ + + securecookie + + host + ^(?:.*\.)?hover\.com$ + name + .+ + + target + + + host + hover.com + + + host + *.hover.com + + + + + How Secure Is My Password.net + + ruleset + + name + How Secure Is My Password.net + rule + + from + ^http://(www\.)?howsecureismypassword\.net/ + to + https://$1howsecureismypassword.net/ + + target + + + host + howsecureismypassword.net + + + host + www.howsecureismypassword.net + + + + + How To Geek.com (partial) + + ruleset + + name + How To Geek.com (partial) + rule + + + from + ^http://(www\.)?howtogeek\.com/(?=favicon\.ico|pagespeed_static/|public/|thumbcache/|wp-content/|wp-includes/) + to + https://$1howtogeek.com/ + + + from + ^http://cdn8\.howtogeek\.com/ + to + https://www.howtogeek.com/ + + + target + + + host + howtogeek.com + + + host + *.howtogeek.com + + + + + How to Box + + ruleset + + name + How to Box + rule + + from + ^http://(www\.)?how-to-box\.com/ + to + https://$1how-to-box.com/ + + securecookie + + host + ^\.how-to-box\.com$ + name + .+ + + target + + + host + how-to-box.com + + + host + *.how-to-box.com + + + + + HowTo.gov + + ruleset + + name + HowTo.gov + rule + + from + ^http://(www\.)?howto\.gov/ + to + https://$1howto.gov/ + + target + + + host + howto.gov + + + host + www.howto.gov + + + + + Howard Hughes Medical Institute + + ruleset + + name + Howard Hughes Medical Institute + platform + mixedcontent + rule + + + from + ^https?://hhmi\.org/ + to + https://www.hhmi.org/ + + + from + ^http://([\w\-]+)\.hhmi\.org/ + to + https://$1.hhmi.org/ + + + securecookie + + host + ^.*\.hhmi\.org$ + name + .* + + target + + + host + hhmi.org + + + host + *.hhmi.org + + + + + Howrandom.org + + ruleset + + name + Howrandom.org + platform + firefox + rule + + from + ^http://howrandom\.org/ + to + https://howrandom.org/ + + securecookie + + host + ^howrandom\.org$ + name + .+ + + target + + host + howrandom.org + + + + Hows My SSL.com + + ruleset + + name + Hows My SSL.com + rule + + from + ^http://(www\.)?howsmy(ssl|tls)\.com/ + to + https://$1howsmy$2.com/ + + target + + + host + howsmyssl.com + + + host + www.howsmyssl.com + + + host + howsmytls.com + + + host + www.howsmytls.com + + + + + HsI cloud.com (partial) + + ruleset + + name + HsI cloud.com (partial) + rule + + from + ^http://fb\.hsicloud\.com/ + to + https://fb.hsicloud.com/ + + target + + host + fb.hsicloud.com + + + + Hsto.org + + ruleset + + name + Hsto.org + rule + + from + ^http://hsto\.org/ + to + https://hsto.org/ + + securecookie + + host + ^\.?hsto\.org$ + name + .+ + + target + + + host + hsto.org + + + host + *.hsto.org + + + + + Huawei.com (partial) + + ruleset + + name + Huawei.com (partial) + rule + + + from + ^http://imail(\w\w|ind)\.huawei\.com/(?:\?.*)?$ + to + https://imail$1.huawei.com/OWA + + + from + ^http://(autodiscover|edoc|edoc-hk|imail\w\w|imailind|uniportal)\.huawei\.com/ + to + https://$1.huawei.com/ + + + securecookie + + host + ^(?:edoc|imail\w\w|imailind|uniportal)\.huawei\.com$ + name + .+ + + target + + host + *.huawei.com + + + + HubSpot + + ruleset + + name + HubSpot + rule + + + from + ^http://static\.hsappstatic\.net/ + to + https://static.hsappstatic.net/ + + + from + ^http://((?:app|blog|developers|forms|info|js|login|marketplace|no-cache|sites-auth|static|static2cdn|track|tracking|www)\.)?hubspot\.com/ + to + https://$1hubspot.com/ + + + from + ^https?://cdn\.blog\.hubspot\.com/ + to + https://s3.amazonaws.com/cdn.hubspot.com/ + + + from + ^http://cdn1\.hubspot\.com/ + to + https://s3.amazonaws.com/cdn1.hubspot.com/ + + + from + ^https?://forums\.hubspot\.com/ + to + https://hubspot3.vanillaforums.com/ + + + from + ^https?://jobs\.hubspot\.com/ + to + https://www.hubspot.com/jobs/ + + + from + ^http://cdn2\.hubspot\.net/ + to + https://cdn2.hubspot.net/ + + + from + ^http://(js|no-cache|static)\.hubspotqa\.com/ + to + https://$1.hubspotqa.com/ + + + securecookie + + host + ^(.*\.)?hubspot\.com$ + name + .* + + target + + + host + static.hsappstatic.net + + + host + hubspot.com + + + host + *.hubspot.com + + + host + cdn.blog.hubspot.com + + + host + *.hubspot.net + + + host + *.hubspotqa.com + + + + + Hubble (partial) + + ruleset + + exclusion + + pattern + ^http://www\.spacetelescope\.org/(?:kidsandteachers/(?:drawings|education)|press/kits)/ + + name + Hubble (partial) + rule + + from + ^https?://(?:www\.)?spacetelescope\.org/(about|contact|kidsandteachers|press|projects|science|static|subscribe)/ + to + https://www.spacetelescope.org/$1/ + + target + + + host + spacetelescope.org + + + host + www.spacetelescope.org + + + + + Hudson Valley Host (partial) + + ruleset + + name + Hudson Valley Host (partial) + rule + + from + ^http://billing\.hudsonvalleyhost\.com/((?:cart|clientarea|submitticket)\.php|favicon\.ico|images/|includes/|modules/|templates/) + to + https://billing.hudsonvalleyhost.com/$1 + + target + + host + billing.hudsonvalleyhost.com + + + + Huffington Post + + ruleset + + name + Huffington Post + platform + mixedcontent + rule + + + from + ^http://(?:secure\.|www\.)?huffingtonpost\.com/ + to + https://secure.huffingtonpost.com/ + + + from + ^http://big\.assets\.huffingtonpost\.com/ + to + https://s3.amazonaws.com/big.assets.huffingtonpost.com/ + + + from + ^http://images\.huffingtonpost\.com/ + to + https://s-i.huffpost.com/ + + + from + ^http://s\.huffpost\.com/contributors/ + to + https://secure.huffingtonpost.com/contributors/ + + + from + ^http://(?:s-)?([is])\.huffpost\.com/ + to + https://s-$1.huffpost.com/ + + + from + ^http://s(1|2)\.huffpost\.com/(?!assets/css\.php\?f=(?!liveblog\.css)) + to + https://a248.e.akamai.net/f/1428/2056/10/s$1.huffpost.com/ + + + from + ^http://s[12]\.huffpost\.com/ + to + https://s-s.huffpost.com/ + + + target + + + host + huffingtonpost.com + + + host + *.huffingtonpost.com + + + host + *.huffpost.com + + + + + HugeDomains.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?hugedomains\.com/domain_profile\.cfm + + name + HugeDomains.com (partial) + rule + + from + ^http://(static\.|www\.)?hugedomains\.com/ + to + https://$1hugedomains.com/ + + target + + + host + hugedomains.com + + + host + *.hugedomains.com + + + + + Huggies Australia (partial) + + ruleset + + name + Huggies Australia (partial) + rule + + + from + ^http://(www\.)?huggies\.com\.au/ + to + https://$1huggies.com.au/ + + + from + ^http://assets\.huggies-cdn\.net/ + to + https://assets.huggies-cdn.net/ + + + securecookie + + host + ^\.huggies\.com\.au$ + name + .+ + + target + + + host + huggies.com.au + + + host + *.huggies.com.au + + + host + assets.huggies-cdn.net + + + + + HughesNet (partial) + + ruleset + + name + HughesNet (partial) + rule + + from + ^http://s1\.hughesnet\.com/ + to + https://s1.hughesnet.com/ + + target + + host + s1.hughesnet.com + + + + Human Action + + ruleset + + name + Human Action + rule + + from + ^http://(www\.)?humanaction\.com/ + to + https://$1humanaction.com/ + + securecookie + + host + ^\.humanaction\.com$ + name + .+ + + target + + + host + humanaction.com + + + host + *.humanaction.com + + + + + Human Brain Project.eu + + ruleset + + name + Human Brain Project.eu + rule + + from + ^http://((?:collaboration|education|www)\.)?humanbrainproject\.eu/ + to + https://$1humanbrainproject.eu/ + + securecookie + + host + ^(?:collaboration|education|www)\.humanbrainproject\.eu$ + name + .+ + + target + + + host + humanbrainproject.eu + + + host + *.humanbrainproject.eu + + + + + Human Events (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?humanevents\.com/(?!t/) + + name + Human Events (partial) + rule + + from + ^http://(order\.|www\.)?humanevents\.com/ + to + https://$1humanevents.com/ + + securecookie + + host + ^order\.humanevents\.com$ + name + .+ + + target + + + host + humanevents.com + + + host + *.humanevents.com + + + + + Human Research Ethics Portal + + ruleset + + name + Human Research Ethics Portal + rule + + from + ^http://(?:www\.)?hrep\.nhmrc\.gov\.au/ + to + https://hrep.nhmrc.gov.au/ + + target + + + host + hrep.nhmrc.gov.au + + + host + *.hrep.nhmrc.gov.au + + + + + Human Rights Campaign (partial) + + ruleset + + name + Human Rights Campaign (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?hrc\.org/ + to + https://www.hrc.org/ + + + from + ^https://hrc\.org/ + to + https://www.hrc.org/ + + + securecookie + + host + ^www\.hrc\.org$ + name + .+ + + target + + + host + hrc.org + + + host + www.hrc.org + + + + + Human Rights Defense Center.org + + ruleset + + name + Human Rights Defense Center.org + rule + + from + ^http://(www\.)?humanrightsdefensecenter\.org/ + to + https://$1humanrightsdefensecenter.org/ + + securecookie + + host + ^www\.humanrightsdefensecenter\.org$ + name + .+ + + target + + + host + humanrightsdefensecenter.org + + + host + www.humanrightsdefensecenter.org + + + + + Human Rights First.org (partial) + + ruleset + + name + Human Rights First.org (partial) + rule + + from + ^http://(www\.)?humanrightsfirst\.org/(?=favicon\.ico|sites/|uploads/|wp-content/|wp-includes/) + to + https://$1humanrightsfirst.org/ + + target + + + host + humanrightsfirst.org + + + host + www.humanrightsfirst.org + + + + + Human Rights Watch + + ruleset + + name + Human Rights Watch + rule + + + from + ^https?://hrw\.org/ + to + https://www.hrw.org/ + + + from + ^http://(beta|ff|multimedia|secure|www)\.hrw\.org/ + to + https://$1.hrw.org/ + + + securecookie + + host + ^.*\.hrw\.org$ + name + .+ + + target + + + host + hrw.org + + + host + *.hrw.org + + + + + Humanism.org.uk + + ruleset + + name + Humanism.org.uk + rule + + from + ^http://(www\.)?humanism\.org\.uk/ + to + https://$1humanism.org.uk/ + + target + + + host + humanism.org.uk + + + host + www.humanism.org.uk + + + + + Humble Bundle (partial) + + ruleset + + name + Humble Bundle (partial) + rule + + from + ^http://(support\.|www\.)?humblebundle\.com/ + to + https://$1humblebundle.com/ + + securecookie + + host + ^www\.humblebundle\.com$ + name + .* + + target + + + host + humblebundle.com + + + host + *.humblebundle.com + + + + + Hunch (partial) + + ruleset + + name + Hunch (partial) + rule + + + from + ^http://(admin\.|api\.|www\.)?hunch\.com/ + to + https://$1hunch.com/ + + + from + ^https?://(?:aka-img-\d\.h-img|img-1\.hunch)\.com/ + to + https://hunch.com/ + + + target + + + host + aka-img-1.h-img.com + + + host + hunch.com + + + host + *.hunch.com + + + + + Hungerhost + + ruleset + + name + Hungerhost + platform + mixedcontent + rule + + from + ^http://(?:www\.)?hungerhost\.com/ + to + https://hungerhost.com/ + + target + + + host + www.hungerhost.com + + + host + hungerhost.com + + + + + Hunt Calendars + + ruleset + + name + Hunt Calendars + platform + mixedcontent + rule + + from + ^(http://(www\.)?|https://)huntcal\.com/ + to + https://www.huntcal.com/ + + securecookie + + host + ^www\.huntcal\.com$ + name + .+ + + target + + + host + huntcal.com + + + host + www.huntcal.com + + + + + Huntington's Disease Society of America + + ruleset + + name + Huntington's Disease Society of America + platform + mixedcontent + rule + + + from + ^https?://hdsa\.org/ + to + https://www.hdsa.org/ + + + from + ^http://www\.hdsa\.org/ + to + https://www.hdsa.org/ + + + target + + + host + hdsa.org + + + host + www.hdsa.org + + + + + Huque.com (partial) + + ruleset + + name + Huque.com (partial) + rule + + from + ^http://(www\.)?huque\.com/ + to + https://$1huque.com/ + + target + + + host + huque.com + + + host + www.huque.com + + + + + Hurley Medical Center + + ruleset + + name + Hurley Medical Center + rule + + from + ^http://(www\.)?hurleymc\.com/ + to + https://$1hurleymc.com/ + + target + + + host + hurleymc.com + + + host + www.hurleymc.com + + + + + Hurricane Electric + + ruleset + + name + Hurricane Electric + rule + + + from + ^http://(?:www\.)?h(?:e\.com|urricaneelectric\.net)/ + to + https://www.he.net/ + + + from + ^http://((?:admin|code|cust|dns|ipv6|www)\.)?he\.net/ + to + https://$1he.net/ + + + securecookie + + host + ^(?:.*\.)?he\.net$ + name + .+ + + target + + + host + he.com + + + host + www.he.com + + + host + he.net + + + host + *.he.net + + + host + hurricaneelectric.net + + + + + Hush-Hush (partial) + + ruleset + + name + Hush-Hush (partial) + rule + + + from + ^http://(?:www\.)?hush-hush\.com/(cs|image)s/ + to + https://secure.hush-hush.com/$1s/ + + + from + ^http://secure\.hush-hush\.com/ + to + https://secure.hush-hush.com/ + + + securecookie + + host + ^secure\.hush-hush\.com$ + name + .* + + target + + + host + hush-hush.com + + + host + *.hush-hush.com + + + + + Hush.technology + + ruleset + + name + Hush.technology + rule + + from + ^http://(www\.)?hush\.technology/ + to + https://$1hush.technology/ + + securecookie + + host + ^hush\.technology$ + name + .+ + + target + + + host + hush.technology + + + host + www.hush.technology + + + + + Hushmail + + ruleset + + name + Hushmail + rule + + from + ^http://(?:www\.)?hush(mail)?\.com/ + to + https://www.hush$1.com/ + + securecookie + + host + ^www\.hushmail\.com$ + name + .+ + + target + + + host + hush.com + + + host + www.hush.com + + + host + www.hushmail.com + + + host + hushmail.com + + + + + Hustler + + ruleset + + name + Hustler + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?hustlermagazine\.com/ + to + https://www.hustlermagazine.com/ + + + from + ^http://(?:www\.)?hustlercanada\.com/ + to + https://www.hustlercanada.com/ + + + target + + + host + www.hustlermagazine.com + + + host + hustlermagazine.com + + + host + www.hustlercanada.com + + + host + hustlercanada.com + + + + + Hwbot.org (partial) + + ruleset + + name + Hwbot.org (partial) + rule + + + from + ^http://img\.hwbot\.org/ + to + https://d1ebmxcfh8bf9c.cloudfront.net/ + + + from + ^http://static\.hwbot\.org/ + to + https://d3vp4utu9lbqmm.cloudfront.net/ + + + target + + host + *.hwbot.org + + + + Hybrid -- Cryptocurrency Combined + + ruleset + + name + Hybrid -- Cryptocurrency Combined + rule + + from + ^http://(www\.)?hyb\.pw/ + to + https://hyb.pw/ + + target + + + host + hyb.pw + + + host + www.hyb.pw + + + + + Hynek.me + + ruleset + + name + Hynek.me + rule + + + from + ^http://(www\.)?hynek\.me/ + to + https://$1hynek.me/ + + + from + ^http://(?:www\.)?ox\.cx/ + to + https://www.ox.cx/ + + + from + ^http://stats\.ox\.cx/ + to + https://stats.ox.cx/ + + + target + + + host + hynek.me + + + host + www.hynek.me + + + host + ox.cx + + + host + *.ox.cx + + + + + Hypanova.com + + ruleset + + name + Hypanova.com + rule + + from + ^http://(www\.)?hypanova\.com/ + to + https://$1hypanova.com/ + + securecookie + + host + ^\.hypanova\.com$ + name + .+ + + target + + + host + hypanova.com + + + host + *.hypanova.com + + + + + Hyper Elliptic.org + + ruleset + + name + Hyper Elliptic.org + rule + + from + ^http://(www\.)?hyperelliptic\.org/ + to + https://$1hyperelliptic.org/ + + target + + + host + hyperelliptic.org + + + host + www.hyperelliptic.org + + + + + Hyperoptic.com + + ruleset + + name + Hyperoptic.com + rule + + from + ^http://(www\.)?hyperoptic\.com/ + to + https://$1hyperoptic.com/ + + securecookie + + host + ^(?:www\.)?hyperoptic\.com$ + name + .+ + + target + + + host + hyperoptic.com + + + host + www.hyperoptic.com + + + + + Hyperspin (partial) + + ruleset + + name + Hyperspin (partial) + rule + + from + ^https?://(?:www\.)?hyperspin\.com/(en/(?:captcha|controlpanel|uncacheable\.gif)\.php(?:$|\?)|forum(?:$|[\?/])|images/|themes/) + to + https://www.hyperspin.com/$1 + + target + + + host + hyperspin.com + + + host + www.hyperspin.com + + + + + Hypovereinsbank + + ruleset + + name + Hypovereinsbank + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?hypovereinsbank\.de/ + to + https://www.hypovereinsbank.de/ + + + from + ^http://(?:www\.)?hvb\.de/ + to + https://www.hypovereinsbank.de/ + + + securecookie + + + host + ^(.*\.)?hvb\.de$ + name + .* + + + host + ^(.*\.)?hypovereinsbank\.de$ + name + .* + + + target + + + host + hvb.de + + + host + www.hvb.de + + + host + hypovereinsbank.de + + + host + www.hypovereinsbank.de + + + + + Hızlı Saat + + ruleset + + name + Hızlı Saat + rule + + from + ^http://(gozluk\.|taki\.|www\.)?hizlisaat\.com/ + to + https://$1hizlisaat.com/ + + securecookie + + host + ^(?:.*\.)?hizlisaat\.com$ + name + .+ + + target + + + host + hizlisaat.com + + + host + *.hizlisaat.com + + + + + I Do Foundation + + ruleset + + name + I Do Foundation + platform + mixedcontent + rule + + from + ^http://(?:www\.)?idofoundation\.org/ + to + https://www.idofoundation.org/ + + target + + + host + idofoundation.org + + + host + www.idofoundation.org + + + + + I Fight Surveillance.org + + ruleset + + name + I Fight Surveillance.org + rule + + from + ^http://(www\.)?ifightsurveillance\.com/ + to + https://$1ifightsurveillance.com/ + + target + + + host + ifightsurveillance.com + + + host + www.ifightsurveillance.com + + + + + I Make Things Work + + ruleset + + name + I Make Things Work + rule + + from + ^http://(www\.)?imakethingswork\.com/ + to + https://$1imakethingswork.com/ + + securecookie + + host + ^(?:www)?\.imakethingswork\.com$ + name + .+ + + target + + + host + imakethingswork.com + + + host + *.imakethingswork.com + + + + + I Want U (partial) + + ruleset + + name + I Want U (partial) + rule + + from + ^http://cdn\.keepstat\.com/(?!(?:\?.*)?$) + to + https://cdn.keepstat.com/ + + target + + host + cdn.keepstat.com + + + + I-kiz.de + + ruleset + + name + I-kiz.de + rule + + from + ^http://www\.i-kiz\.de/ + to + https://www.i-kiz.de/ + + target + + host + *.i-kiz.de + + + + I.CX + + ruleset + + name + I.CX + rule + + from + ^http://(www\.)?i\.cx/ + to + https://$1i.cx/ + + target + + + host + i.cx + + + host + www.i.cx + + + + + I2P (partial) + + ruleset + + name + I2P (partial) + rule + + from + ^http://((?:docs|forum|trac|www)\.)?i2p2\.de/ + to + https://$1i2p2.de/ + + securecookie + + host + ^trac\.i2p2\.de$ + name + .+ + + target + + + host + i2p2.de + + + host + *.i2p2.de + + + + + IA Japan.org (partial) + + ruleset + + name + IA Japan.org (partial) + rule + + from + ^http://www\.iajapan\.org/ + to + https://www.iajapan.org/ + + target + + host + www.iajapan.org + + + + IABM + + ruleset + + name + IABM + rule + + from + ^http://(?:www\.)?theiabm\.org/ + to + https://www.theiabm.org/ + + securecookie + + host + ^www\.theiabm\.org$ + name + .* + + target + + + host + theiabm.org + + + host + www.theiabm.org + + + + + IANA + + ruleset + + name + IANA + rule + + + from + ^http://iana\.org/ + to + https://www.iana.org/ + + + from + ^http://(data|itar|www)\.iana\.org/ + to + https://$1.iana.org/ + + + target + + + host + iana.org + + + host + *.iana.org + + + + + IAR.com + + ruleset + + name + IAR.com + rule + + from + ^http://(?:www\.)?iar\.com/ + to + https://www.iar.com/ + + securecookie + + host + ^www\.iar\.com$ + name + .+ + + target + + + host + iar.com + + + host + www.iar.com + + + + + IAS.edu (partial) + + ruleset + + exclusion + + pattern + ^http://(?:(?:www\.)?(?:h|ss)|moral)s\.ias\.edu/(?!files/|sites/) + + name + IAS.edu (partial) + rule + + + from + ^http://((?:crossroads|mail\.math|morals|pcmi|sig|www)\.)?ias\.edu/ + to + https://$1ias.edu/ + + + from + ^http://(?:www\.)?(admin|hs|math|s[ns]s)\.ias\.edu/ + to + https://www.$1.ias.edu/ + + + securecookie + + host + ^(?:\.math|\.mail\.math|\.pcmi|sig|\.sns|www)\.ias\.edu$ + name + .+ + + target + + + host + ias.edu + + + host + *.ias.edu + + + + + IBPhoenix.com + + ruleset + + name + IBPhoenix.com + rule + + from + ^http://(?:www\.)?ibphoenix\.com/ + to + https://www.ibphoenix.com/ + + securecookie + + host + ^www\.ibphoenix\.com$ + name + .+ + + target + + + host + ibphoenix.com + + + host + www.ibphoenix.com + + + + + IBTimes.co.uk + + ruleset + + name + IBTimes.co.uk + platform + mixedcontent + rule + + from + ^http://(www\.)?ibtimes\.co\.uk/ + to + https://$1ibtimes.co.uk/ + + target + + + host + ibtimes.co.uk + + + host + www.ibtimes.co.uk + + + + + IBillBoard.com (partial) + + ruleset + + name + IBillBoard.com (partial) + rule + + from + ^http://(bbcdn-)?bbnaut\.ibillboard\.com/ + to + https://$1bbnaut.ibillboard.com/ + + target + + host + *.ibillboard.com + + + + ICA.se + + ruleset + + name + ICA.se + rule + + + from + ^http://ica\.se/ + to + https://www.ica.se/ + + + from + ^http://www\.ica\.se/ + to + https://www.ica.se/ + + + target + + + host + www.ica.se + + + host + ica.se + + + + + ICANN (partial) + + ruleset + + exclusion + + pattern + ^http://(aso|www\.atlarge|nomcom)\. + + name + ICANN (partial) + platform + mixedcontent + rule + + + from + ^http://((?:archive|ccnso|charts|community|forum|gacweb|gnso|gtldresult|meetings|mm|newgtlds|prague44|www)\.)?icann\.org/ + to + https://$1icann.org/ + + + from + ^http://aso\.icann\.org/wp-content/ + to + https://aso.icann.org/wp-content/ + + + securecookie + + host + (.*\.)?icann\.org$ + name + .* + + target + + + host + icann.org + + + host + *.icann.org + + + + + ICBIT + + ruleset + + name + ICBIT + rule + + from + ^http://(www\.)?icbit\.se/ + to + https://$1icbit.se/ + + securecookie + + host + ^\.icbit\.se$ + name + .+ + + target + + + host + icbit.se + + + host + *.icbit.se + + + + + ICIMS.com + + ruleset + + name + ICIMS.com + rule + + + from + ^http://www2\.icims\.com/+(?:$|\?.*) + to + https://www.icims.com/ + + + from + ^http://www2\.icims\.com/ + to + https://go.pardot.com/ + + + from + ^http://([\w.-]+\.)?icims\.com/ + to + https://$1icims.com/ + + + securecookie + + host + ^(?:cdn0\d|images)?\.icims\.com$ + name + .+ + + target + + + host + icims.com + + + host + *.icims.com + + + + + ICLN.org + + ruleset + + name + ICLN.org + rule + + from + ^http://(www\.)?icln\.org/ + to + https://$1icln.org/ + + securecookie + + host + ^(?:www)?\.icln\.org$ + name + .+ + + target + + + host + icln.org + + + host + *.icln.org + + + + + ICMail + + ruleset + + name + ICMail + rule + + from + ^http://(?:www\.)?icmail\.net/ + to + https://icmail.net/ + + target + + + host + icmail.com + + + host + www.icmail.com + + + + + ICPEN + + ruleset + + name + ICPEN + rule + + from + ^https?://(?:www\.)?icpen\.org/ + to + https://icpen.org/ + + securecookie + + host + ^icpen\.org$ + name + .+ + + target + + + host + icpen.org + + + host + www.icpen.org + + + + + ICQ.com + + ruleset + + exclusion + + + pattern + ^http://games\.icq\.com/(?!$|\?|games(?:$|\?|/)) + + + pattern + ^http://people\.icq\.com/(?!$|\?|css/|favicon\.ico|img/) + + + name + ICQ.com + rule + + + from + ^http://company\.icq\.com/(\?.*)?$ + to + https://www.icq.com/info/$1 + + + from + ^http://games\.icq\.com/(?=$|\?.*) + to + https://www.icq.com/games/ + + + from + ^http://((?:c|chat|download|greetings|people|wlogin|www|xtraz)\.)?icq\.com/ + to + https://$1icq.com/ + + + securecookie + + host + ^(?:chat|www)?\.icq\.com$ + name + .+ + + target + + + host + icq.com + + + host + *.icq.com + + + + + ICTRecht + + ruleset + + name + ICTRecht + rule + + from + ^http://(www\.)?ictrecht\.nl/ + to + https://$1ictrecht.nl/ + + target + + + host + ictrecht.nl + + + host + www.ictrecht.nl + + + + + ICUK + + ruleset + + name + ICUK + rule + + from + ^http://(www\.)?icukhosting\.co\.uk/ + to + https://www.icukhosting.co.uk/ + + target + + + host + icukhosting.co.uk + + + host + www.icukhosting.co.uk + + + + + IDC + + ruleset + + name + IDC + rule + + + from + ^http://(?:cdn\.|www\.)?idc\.com/ + to + https://www.idc.com/ + + + from + ^http://cas\.idc\.com/ + to + https://cas.idc.com/ + + + securecookie + + host + ^.+\.idc\.com$ + name + .+ + + target + + + host + idc.com + + + host + *.idc.com + + + + + IDG.com.au + + ruleset + + name + IDG.com.au + platform + mixedcontent + rule + + + from + ^http://(www\.)?computerworld\.com\.au/ + to + https://$1computerworld.com.au/ + + + from + ^https?://demo\.idg\.com\.au/ + to + https://d1i47h7pyjy1h0.cloudfront.net/ + + + from + ^http://cdn\.idg\.com\.au/ + to + https://dfwp37e65law8.cloudfront.net/ + + + securecookie + + host + ^(www)?\.computerworld\.com\.au$ + name + .* + + target + + + host + computerworld.com.au + + + host + *.computerworld.com.au + + + host + *.idg.com.au + + + + + IDG.se (partial) + + ruleset + + exclusion + + + pattern + ^http://(www\.)?extreme\.idg\.se/$ + + + pattern + ^http://(www\.)?tjanster\.idg\.se/(dilbertimage|j|whitepaper)s/ + + + name + IDG.se (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?idg\.se/ + to + https://www.idg.se/ + + + from + ^http://sifomedia\.idg\.se/ + to + https://ssl.sifomedia.se/ + + + from + ^http://(?:www\.)?([a-rt-v]\w+|s[ahm]\w+)\.idg\.se/ + to + https://$1.idg.se/ + + + securecookie + + host + ^(?:computersweden|idgmedia)\.idg\.se$ + name + .+ + + target + + + host + idg.se + + + host + androidguiden.idg.se + + + host + business.idg.se + + + host + capdesign.idg.se + + + host + cloud.idg.se + + + host + computersweden.idg.se + + + host + cs.idg.se + + + host + csjobb.idg.se + + + host + extreme.idg.se + + + host + idgkonto.idg.se + + + host + idgmedia.idg.se + + + host + it24.idg.se + + + host + it24tjanster.idg.se + + + host + m3.idg.se + + + host + macworld.idg.se + + + host + mittidg.idg.se + + + host + pcforalla.idg.se + + + host + pfa.idg.se + + + host + prenumeration.idg.se + + + host + sakerhet.idg.se + + + host + shop.idg.se + + + host + sifomedia.idg.se + + + host + smartaremobil.idg.se + + + host + techworld.idg.se + + + host + tjanster.idg.se + + + host + upphandling24.idg.se + + + host + vendorsvoice.idg.se + + + host + www.idg.se + + + + + IDNet + + ruleset + + name + IDNet + rule + + from + ^http://(www\.)?idnet\.net/ + to + https://www.idnet.net/ + + target + + + host + idnet.net + + + host + www.idnet.net + + + + + IDRIX.fr (partial) + + ruleset + + name + IDRIX.fr (partial) + rule + + from + ^http://prod\.idrix\.fr(:8443)?/ + to + https://prod.idrix.fr$1/ + + securecookie + + host + ^prod\.idrix\.fr$ + name + .+ + + target + + host + prod.idrix.fr + + + + IEEE (partial) + + ruleset + + exclusion + + pattern + ^http://eleccomm\.ieee\.org/(?:aliase|cs|image)s/ + + name + IEEE (partial) + rule + + + from + ^https?://(?:www\.)?ieee\.org/go/renew/?$ + to + https://www.ieee.org/membership-application/public/renew.html + + + from + ^https?://(?:www\.)?ieee\.org/go/shop/?$ + to + https://www.ieee.org/membership-catalog/index.html + + + from + ^http://(?:www\.)?ieee\.org/ + to + https://www.ieee.org/ + + + from + ^http://(eleccomm|ieeexplore|mentor|securesso|(?:development\.)?standards|uce|origin\.www)\.ieee\.org/ + to + https://$1.ieee.org/ + + + from + ^http://(?:www\.)?ewh\.ieee\.org/ + to + https://ewh.ieee.org/ + + + from + ^http://staticieeexplore\.ieee\.org/ + to + https://a248.e.akamai.net/f/248/815/10/staticieeexplore.ieee.org/ + + + securecookie + + host + ^.*\.ieee\.org$ + name + .+ + + target + + + host + ieee.org + + + host + *.ieee.org + + + + + IEEE eLearning Library + + ruleset + + name + IEEE eLearning Library + rule + + from + ^https?://(?:www\.)?ieee-elearning\.org/ + to + https://ieee-elearning.org/ + + securecookie + + host + ^ieee-elearning\.org$ + name + .+ + + target + + + host + ieee-elearning.org + + + host + www.ieee-elearning.org + + + + + IELTS + + ruleset + + name + IELTS + platform + mixedcontent + rule + + from + ^http://(www\.|results\.)?ielts\.org/ + to + https://$1ielts.org/ + + target + + + host + ielts.org + + + host + *.ielts.org + + + + + IET (partial) + + ruleset + + name + IET (partial) + rule + + + from + ^http://(?:www\.)?theiet\.org/(?=help/passwordResetRequest\.cfm|meganav/|my(?:$|[?/])|staticfiles/) + to + https://www.theiet.org/ + + + from + ^http://digital-library\.theiet\.org/(cart|css/|favicon\.ico|files/|images/) + to + https://digital-library.theiet.org/$1 + + + target + + + host + theiet.org + + + host + *.theiet.org + + + + + IETF (partial) + + ruleset + + name + IETF (partial) + rule + + + from + ^http://(?:www\.)?ietf\.org/ + to + https://www.ietf.org/ + + + from + ^http://(datatracker|iaoc|mailarchive|tools|wiki\.tools|trustee)\.ietf\.org/ + to + https://$1.ietf.org/ + + + securecookie + + host + ^\.ietf\.org$ + name + ^__cfduid$ + + target + + + host + ietf.org + + + host + *.ietf.org + + + + + IFA.ch + + ruleset + + name + IFA.ch + platform + mixedcontent + rule + + from + ^http://(?:www\.)?ifa\.ch/ + to + https://www.ifa.ch/ + + securecookie + + host + ^(.*\.)?ifa\.ch$ + name + .* + + target + + + host + ifa.ch + + + host + www.ifa.ch + + + + + IFEX.org + + ruleset + + name + IFEX.org + rule + + from + ^http://(www\.)?ifex\.org/ + to + https://$1ifex.org/ + + target + + + host + ifex.org + + + host + www.ifex.org + + + + + IFTTT.com (partial) + + ruleset + + name + IFTTT.com (partial) + rule + + from + ^http://(www\.)?ifttt\.com/ + to + https://$1ifttt.com/ + + securecookie + + host + ^ifttt\.com$ + name + .+ + + target + + + host + ifttt.com + + + host + www.ifttt.com + + + + + IGN (partial) + + ruleset + + exclusion + + pattern + ^http://oystatic\.ignimgs\.com/cache/css/(?!35/70/3570337b77bc103506ad234873b09d3f\.css) + + name + IGN (partial) + rule + + + from + ^http://((?:ads|(?:ds|pc|ps[3p]|wireless|xbox360)media)\.ign|(?:fonts|oyster)\.ignimgs)\.com/ + to + https://a248.e.akamai.net/f/1005/1/g/$1.com/ + + + from + ^http://(assets|media)\.ign\.com/ + to + https://a248.e.akamai.net/$1.ign.com/ + + + from + ^http://(mail|s)\.ign\.com/ + to + https://$1.ign.com/ + + + from + ^http://(assets\d|media|oystatic)\.ignimgs\.com/ + to + https://a248.e.akamai.net/$1.ignimgs.com/ + + + securecookie + + host + ^s\.ign\.com$ + name + .+ + + target + + + host + ads.ign.com + + + host + mail.ign.com + + + host + media.ign.com + + + host + pcmedia.ign.com + + + host + ps3media.ign.com + + + host + pspmedia.ign.com + + + host + s.ign.com + + + host + wirelessmedia.ign.com + + + host + *.ignimgs.com + + + + + IGNUM (partial) + + ruleset + + name + IGNUM (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?domena\.cz/ + to + https://$1domena.cz/ + + + from + ^http://(www\.)?ignum\.cz/ + to + https://$1ignum.cz/ + + + securecookie + + host + ^(www\.)?(domena|ignum)\.cz$ + name + .* + + target + + + host + domena.cz + + + host + www.domena.cz + + + host + ignum.cz + + + host + www.ignum.cz + + + + + IHG Merlin.com (partial) + + ruleset + + name + IHG Merlin.com (partial) + rule + + from + ^http://((?:images|imagesqa|me2|me2qa|qa|www)\.)?ihgmerlin\.com/ + to + https://$1ihgmerlin.com/ + + securecookie + + host + ^(?:qa\.|www\.)?ihgmerlin\.com$ + name + .+ + + target + + + host + ihgmerlin.com + + + host + *.ihgmerlin.com + + + + + IHG PLC.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.ihgplc\.com/+index\.asp + + name + IHG PLC.com (partial) + rule + + from + ^http://(www\.)?ihgplc\.com/ + to + https://$1ihgplc.com/ + + target + + + host + ihgplc.com + + + host + www.ihgplc.com + + + + + IIS.net + + ruleset + + name + IIS.net + rule + + + from + ^http://www\.iis\.net/ + to + https://www.iis.net/ + + + from + ^http://learn\.iis\.net/ + to + https://learn.iis.net/ + + + from + ^http://iis\.net/ + to + https://www.iis.net/ + + + target + + + host + iis.net + + + host + www.iis.net + + + host + learn.iis.net + + + + + IIS.se + + ruleset + + name + IIS.se + rule + + from + ^http://((?:domainmanager|domanhanteraren|www)\.)?iis\.se/ + to + https://$1iis.se/ + + securecookie + + host + ^(?:domainmanager|domanhanteraren)\.iis\.se$ + name + .+ + + target + + + host + iis.se + + + host + *.iis.se + + + + + IJM Freedom Maker (partial) + + ruleset + + name + IJM Freedom Maker (partial) + rule + + from + ^http://(www\.)?ijmfreedommaker\.org/(apps|boost)/ + to + https://$1ijmfreedommaker.org/$2/ + + target + + + host + ijmfreedommaker.org + + + host + www.ijmfreedommaker.org + + + + + IJReview.com (false MCB) + + ruleset + + name + IJReview.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.ijreview\.com/ + to + https://www.ijreview.com/ + + securecookie + + host + ^\.ijreview\.com$ + name + .+ + + target + + host + *.ijreview.com + + + + IJReview.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.ijreview\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + IJReview.com (partial) + rule + + from + ^http://(static\.|www\.)?ijreview\.com/ + to + https://$1ijreview.com/ + + target + + + host + ijreview.com + + + host + static.ijreview.com + + + host + www.ijreview.com + + + + + IKK-Gesundplus + + ruleset + + name + IKK-Gesundplus + rule + + from + ^http://(?:www\.)?ikk-gesundplus\.de/ + to + https://www.ikk-gesundplus.de/ + + target + + + host + www.ikk-gesundplus.de + + + host + ikk-gesundplus.de + + + + + IKK-Suedwest + + ruleset + + name + IKK-Suedwest + rule + + from + ^http://(?:www\.)?ikk-suedwest\.de/ + to + https://www.ikk-suedwest.de/ + + target + + + host + www.ikk-suedwest.de + + + host + ikk-suedwest.de + + + + + ILG Group.com (partial) + + ruleset + + name + ILG Group.com (partial) + rule + + from + ^http://(?:www\.)?ilxgroup\.com/(?=consulting/images/|css/|favicon\.ico|images/|js/) + to + https://www.ilxgroup.com/ + + target + + + host + ilxgroup.com + + + host + www.ilxgroup.com + + + + + ILO.org + + ruleset + + name + ILO.org + platform + mixedcontent + rule + + + from + ^http://ilo\.org/ + to + https://www.ilo.org/ + + + from + ^http://www\.ilo\.org/ + to + https://www.ilo.org/ + + + target + + + host + www.ilo.org + + + host + ilo.org + + + + + IMDB (partial) + + ruleset + + exclusion + + pattern + ^http://([^/:@]+\.)?imdb\.com/images/(jwplayer|a/ifb/doubleclick/expand\.html) + + name + IMDB (partial) + rule + + + from + ^http://(?:www\.)?imdb\.com/(images|rg)/ + to + https://secure.imdb.com/$1/ + + + from + ^http://(?:secure\.|(?:i|www)\.media-)imdb\.com/ + to + https://secure.imdb.com/ + + + target + + + host + imdb.com + + + host + *.imdb.com + + + + + IMF.org + + ruleset + + name + IMF.org + rule + + + from + ^http://www\.imf\.org/ + to + https://www.imf.org/ + + + from + ^http://imf\.org/ + to + https://www.imf.org/ + + + target + + + host + www.imf.org + + + host + imf.org + + + + + IMGrind.com + + ruleset + + name + IMGrind.com + rule + + from + ^http://(www\.)?imgrind\.com/ + to + https://$1imgrind.com/ + + securecookie + + host + ^(?:www)?\.imgrind\.com$ + name + .+ + + target + + + host + imgrind.com + + + host + *.imgrind.com + + + + + IMMI.is + + ruleset + + name + IMMI.is + rule + + from + ^http://(?:www\.)?immi\.is/ + to + https://immi.is/ + + target + + + host + immi.is + + + host + www.immi.is + + + + + IMSSR.com + + ruleset + + name + IMSSR.com + rule + + from + ^http://(www\.)?imssr\.com/ + to + https://$1imssr.com/ + + securecookie + + host + ^(?:www\.)?imssr\.com$ + name + .+ + + target + + + host + imssr.com + + + host + www.imssr.com + + + + + INDURE + + ruleset + + name + INDURE + rule + + from + ^http://www\.indure\.org/ + to + https://www.indure.org/ + + securecookie + + host + ^www\.indure\.org$ + name + .+ + + target + + host + www.indure.org + + + + INFOnline (partial) + + ruleset + + name + INFOnline (partial) + rule + + from + ^https?://(?:www\.)?infonline\.de/ + to + https://www.infonline.de/ + + target + + + host + infonline.de + + + host + www.infonline.de + + + + + ING + + ruleset + + name + ING + rule + + + from + ^https?://ing\.com/ + to + https://www.ing.com/ + + + from + ^https?://ing\.nl/ + to + https://www.ing.nl/ + + + from + ^http://([^/:@]+)\.ing\.com/ + to + https://$1.ing.com/ + + + from + ^http://([^/:@]+)\.ing\.nl/ + to + https://$1.ing.nl/ + + + target + + + host + ing.com + + + host + www.ing.com + + + host + ing.nl + + + host + mijn.ing.nl + + + host + mijnzakelijk.ing.nl + + + host + www.ing.nl + + + + + ING DIRECT + + ruleset + + name + ING DIRECT + platform + mixedcontent + rule + + from + ^http://(?:www\.)?ingdirect\.es/ + to + https://www.ingdirect.es/ + + target + + + host + ingdirect.es + + + host + www.ingdirect.es + + + + + ING Direct + + ruleset + + name + ING Direct + rule + + + from + ^https?://(?:www\.)?ingdirect\.com/ + to + https://www.ingdirect.com/ + + + from + ^http://(helpcenter|home|secure|shop)\.ingdirect\.com/ + to + https://$1.ingdirect.com/ + + + from + ^https?://(?:www\.)?ingdirect\.com\.au/ + to + https://www.ingdirect.com.au/ + + + securecookie + + + host + ^.*\.ingdirect\.com$ + name + .* + + + host + ^www\.ingdirect\.com\.au$ + name + .* + + + target + + + host + ingdirect.com + + + host + *.ingdirect.com + + + host + ingdirect.com.au + + + host + www.ingdirect.com.au + + + + + IOLProperty.co.za (partial) + + ruleset + + name + IOLProperty.co.za (partial) + rule + + from + ^http://(?:www\.)?iolproperty\.co\.za/ + to + https://www.iolproperty.co.za/ + + securecookie + + host + ^www\.iolproperty\.co\.za$ + name + .+ + + target + + + host + iolproperty.co.za + + + host + www.iolproperty.co.za + + + + + ION Audio + + ruleset + + name + ION Audio + rule + + from + ^https?://(?:www\.)?ionaudio\.com/ + to + https://www.ionaudio.com/ + + securecookie + + host + ^\.?www\.ionaudio\.com$ + name + .+ + + target + + + host + ionaudio.com + + + host + www.ionaudio.com + + + host + *.www.ionaudio.com + + + + + IOPLEX Software + + ruleset + + name + IOPLEX Software + rule + + from + ^http://(www\.)?ioplex\.com/ + to + https://$1ioplex.com/ + + securecookie + + host + ^(?:www\.)?ioplex\.com$ + name + .+ + + target + + + host + ioplex.com + + + host + www.ioplex.com + + + + + IOSPP + + ruleset + + name + IOSPP + rule + + from + ^http://(www\.)?iospp\.org/ + to + https://$1iospp.org/ + + securecookie + + host + ^(?:www)?\.iospp\.org$ + name + .+ + + target + + + host + iospp.org + + + host + *.iospp.org + + + + + IOam.de + + ruleset + + name + IOam.de + rule + + + from + ^http://(de|qs|script)\.ioam\.de/ + to + https://$1.ioam.de/ + + + from + ^http://www\.ioam\.de/[^?]*(?=$|\?) + to + https://www.infonline.de/ + + + target + + host + *.ioam.de + + + + IP check (partial) + + ruleset + + name + IP check (partial) + rule + + from + ^http://(?:www\.)?ip-check\.info/(all\.css|authAttack\.php|(?:auth|cache)\.css\.php|images/|ip-check\.png) + to + https://ip-check.info/$1 + + target + + + host + ip-check.info + + + host + www.ip-check.info + + + + + IP-Projects.de + + ruleset + + name + IP-Projects.de + rule + + from + ^http://(piwik\.|www\.)?ip-projects\.de/ + to + https://$1ip-projects.de/ + + securecookie + + host + ^www\.ip-projects\.de$ + name + .+ + + target + + + host + ip-projects.de + + + host + *.ip-projects.de + + + + + IP2Location.com + + ruleset + + name + IP2Location.com + rule + + from + ^http://(www\.)?ip2location\.com/ + to + https://$1ip2location.com/ + + securecookie + + host + ^(?:www\.)?ip2location\.com$ + name + .+ + + target + + + host + ip2location.com + + + host + www.ip2location.com + + + + + IPAddressLabs.com (partial) + + ruleset + + name + IPAddressLabs.com (partial) + rule + + + from + ^http://(www\.)?ipaddresslabs\.com/(cs|image)s/ + to + https://$1ipaddresslabs.com/$2s/ + + + from + ^https?://(?:https-)?services\.ipaddresslabs\.com/ + to + https://https-services.ipaddresslabs.com/ + + + target + + + host + ipaddresslabs.com + + + host + *.ipaddresslabs.com + + + + + IPCC.ch + + ruleset + + name + IPCC.ch + platform + mixedcontent + rule + + + from + ^http://ipcc\.ch/ + to + https://ipcc.ch/ + + + from + ^http://www\.ipcc\.ch/ + to + https://www.ipcc.ch/ + + + target + + + host + www.ipcc.ch + + + host + ipcc.ch + + + + + IPCdigital.co.uk (partial) + + ruleset + + name + IPCdigital.co.uk (partial) + rule + + from + ^http://([\w-]+)(?:\.secure)?\.media\.ipcdigital\.co\.uk/ + to + https://$1.secure.media.ipcdigital.co.uk/ + + target + + host + *.media.ipcdigital.co.uk + + + + IPFire.org (false MCB) + + ruleset + + name + IPFire.org (false MCB) + platform + cacert mixedcontent + rule + + + from + ^http://ipfire\.org/.* + to + https://www.ipfire.org/ + + + from + ^http://(fireinfo|planet|static|wishlist|www)\.ipfire\.org/ + to + https://$1.ipfire.org/ + + + securecookie + + host + ^fireinfo\.ipfire\.org$ + name + .+ + + target + + + host + ipfire.org + + + host + *.ipfire.org + + + + + IPFire.org (partial) + + ruleset + + name + IPFire.org (partial) + rule + + from + ^http://(bugzilla|pakfire)\.ipfire\.org/ + to + https://$1.ipfire.org/ + + securecookie + + host + ^(?:bugzilla|pakfire)\.ipfire\.org$ + name + .+ + + target + + + host + bugzilla.ipfire.org + + + host + pakfire.ipfire.org + + + + + IPONWEB (partial) + + ruleset + + name + IPONWEB (partial) + rule + + from + ^http://p\.liadm\.com/ + to + https://p.liadm.com/ + + target + + host + p.liadm.com + + + + IPOWER + + ruleset + + name + IPOWER + rule + + + from + ^http://images\.ipower\.com/ + to + https://secure.ipower.com/images/ + + + from + ^http://([\w\-]+\.)?ipower\.com/ + to + https://$1ipower.com/ + + + securecookie + + host + ^.*\.ipower\.com$ + name + .* + + target + + + host + ipower.com + + + host + *.ipower.com + + + + + IPQualityScore.com + + ruleset + + name + IPQualityScore.com + rule + + from + ^http://(www\.)?ipqualityscore\.com/ + to + https://$1ipqualityscore.com/ + + securecookie + + host + ^(?:www\.)?ipqualityscore\.com$ + name + .+ + + target + + + host + ipqualityscore.com + + + host + www.ipqualityscore.com + + + + + IPTorrents.com + + ruleset + + name + IPTorrents.com + rule + + from + ^http://(static\.|www\.)?iptorrents\.com/ + to + https://$1iptorrents.com/ + + securecookie + + host + ^(?:w*\.)?iptorrents\.com$ + name + .+ + + target + + + host + iptorrents.com + + + host + *.iptorrents.com + + + + + IPredator + + ruleset + + name + IPredator + rule + + from + ^http://((?:beta|blog|www)\.)?ipredator\.se/ + to + https://$1ipredator.se/ + + securecookie + + host + ^(?:.*\.)?ipredator\.se$ + name + .+ + + target + + + host + ipredator.se + + + host + *.ipredator.se + + + + + IProduction + + ruleset + + name + IProduction + rule + + from + ^http://(?:cdn\.|www\.)?iproduction\.com/ + to + https://www.iproduction.com/ + + securecookie + + host + ^(?:www)?\.iproduction\.com$ + name + .+ + + target + + + host + iproduction.com + + + host + *.iproduction.com + + + + + IRAAA.org (false MCB) + + ruleset + + name + IRAAA.org (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.iraaa\.org/ + to + https://www.iraaa.org/ + + securecookie + + host + ^\.iraaa\.org$ + name + .+ + + target + + host + *.iraaa.org + + + + IRAAA.org (partial) + + ruleset + + exclusion + + pattern + ^http://www\.iraaa\.org/+(?!favicon\.ico|images/|wp-content/|wp-includes/) + + name + IRAAA.org (partial) + rule + + from + ^http://(www\.)?iraaa\.org/ + to + https://$1iraaa.org/ + + target + + + host + iraaa.org + + + host + www.iraaa.org + + + + + IRF.se + + ruleset + + name + IRF.se + platform + mixedcontent + rule + + + from + ^http://www\.irf\.se/ + to + https://www.irf.se/ + + + from + ^http://irf\.se/ + to + https://www.irf.se/ + + + target + + + host + irf.se + + + host + www.irf.se + + + + + IRILL.org + + ruleset + + name + IRILL.org + rule + + from + ^http://www\.irill\.org/ + to + https://www.irill.org/ + + target + + host + www.irill.org + + + + IRISA.net + + ruleset + + name + IRISA.net + rule + + from + ^http://(intranet|www)\.irisa\.fr/ + to + https://$1.irisa.fr/ + + securecookie + + host + ^intranet\.irisa\.fr$ + name + .+ + + target + + host + *.irisa.fr + + + + IRON Search + + ruleset + + name + IRON Search + rule + + + from + ^https?://ironsearch\.com/ + to + https://www.ironsearch.com/ + + + from + ^http://(secure|www)\.ironsearch\.com/ + to + https://$1.ironsearch.com/ + + + target + + + host + ironsearch.com + + + host + *.ironsearch.com + + + + + IRON Solutions (partial) + + ruleset + + name + IRON Solutions (partial) + rule + + from + ^http://images\.ironsolutions\.com/ + to + https://images.ironsolutions.com/ + + target + + host + images.ironsolutions.com + + + + IRTF.org + + ruleset + + name + IRTF.org + rule + + from + ^http://(?:www\.)?irtf\.org/ + to + https://irtf.org/ + + target + + + host + irtf.org + + + host + www.irtf.org + + + + + ISC + + ruleset + + name + ISC + rule + + + from + ^http://((?:bind10|bindforum|confluence|dhcpforum|dlv|kb|lists|security|sns|store|support|www)\.)?isc\.org/ + to + https://$1isc.org/ + + + from + ^http://sie\.isc\.org/ + to + https://security.isc.org/ + + + securecookie + + host + .+\.isc\.org$ + name + .+ + + target + + + host + isc.org + + + host + *.isc.org + + + + + ISC2 Cares.org + + ruleset + + name + ISC2 Cares.org + rule + + from + ^http://(?:www\.)?isc2cares\.org/ + to + https://www.isc2cares.org/ + + target + + + host + isc2cares.org + + + host + www.isc2cares.org + + + + + ISC2.org (partial) + + ruleset + + name + ISC2.org (partial) + rule + + from + ^http://(www\.)?isc2\.org/ + to + https://$1isc2.org/ + + securecookie + + host + ^\.isc2\.org$ + name + .+ + + target + + + host + isc2.org + + + host + *.isc2.org + + + + + ISIS + + ruleset + + name + ISIS + rule + + from + ^http://isis\.poly\.edu/ + to + https://isis.poly.edu/ + + target + + host + isis.poly.edu + + + + ISNIC.is + + ruleset + + name + ISNIC.is + rule + + from + ^http://(www\.)?isnic\.is/ + to + https://$1isnic.is/ + + target + + + host + isnic.is + + + host + www.isnic.is + + + + + ISO.org (partial) + + ruleset + + name + ISO.org (partial) + rule + + from + ^http://connect\.iso\.org/ + to + https://connect.iso.org/ + + securecookie + + host + ^connect\.iso\.org$ + name + .+ + + target + + host + connect.iso.org + + + + ISOC.org.br + + ruleset + + name + ISOC.org.br + rule + + from + ^http://(www\.)?isoc\.org\.br/ + to + https://$1isoc.org.br/ + + securecookie + + host + ^(?:www\.)?isoc\.org\.br$ + name + .+ + + target + + + host + isoc.org.br + + + host + www.isoc.org.br + + + + + ISPGids.com + + ruleset + + name + ISPGids.com + rule + + from + ^http://(www\.)?ispgids\.com/ + to + https://$1ispgids.com/ + + target + + + host + ispgids.com + + + host + www.ispgids.com + + + + + ISPID.nl + + ruleset + + name + ISPID.nl + rule + + from + ^http://(www\.)?ispid\.nl/ + to + https://$1ispid.nl/ + + target + + + host + ispid.nl + + + host + www.ispid.nl + + + + + ISPam.nl + + ruleset + + name + ISPam.nl + rule + + from + ^http://(www\.)?ispam\.nl/ + to + https://$1ispam.nl/ + + target + + + host + ispam.nl + + + host + www.ispam.nl + + + + + ISPsystem (partial) + + ruleset + + name + ISPsystem (partial) + rule + + from + ^http://my\.ispsystem\.com/ + to + https://my.ispsystem.com/ + + target + + host + my.ispsystem.com + + + + ISS World (partial) + + ruleset + + name + ISS World (partial) + rule + + from + ^http://portal\.issworld\.com/ + to + https://portal.issworld.com/ + + target + + host + portal.issworld.com + + + + IT Dashboard.gov + + ruleset + + name + IT Dashboard.gov + rule + + from + ^http://(my\.|www\.)?itdashboard\.gov/ + to + https://$1itdashboard.gov/ + + securecookie + + host + ^\.my.itdashboard\.gov$ + name + .+ + + target + + + host + itdashboard.gov + + + host + *.itdashboard.gov + + + + + IT Toolbox.com (partial) + + ruleset + + name + IT Toolbox.com (partial) + rule + + + from + ^http://images\.ittoolbox\.com/ + to + https://images.ittoolbox.com/ + + + from + ^http://userimages\.ittoolbox\.com/ + to + https://deh50at6yod5w.cloudfront.net/ + + + target + + host + *.ittoolbox.com + + + + IT University of Copenhagen + + ruleset + + name + IT University of Copenhagen + platform + mixedcontent + rule + + from + ^http://((?:intranet|mit|wayf|www1?)\.)?itu\.dk/ + to + https://$1itu.dk/ + + securecookie + + host + ^.*\.itu\.dk$ + name + .* + + target + + + host + itu.dk + + + host + *.itu.dk + + + + + IT Works! + + ruleset + + name + IT Works! + rule + + + from + ^http://(static\.|www\.)?myitworks\.com/ + to + https://$1myitworks.com/ + + + from + ^http://(www\.)?myitworksevents\.com/ + to + https://$1myitworksevents.com/ + + + securecookie + + host + ^(?:w*\.)?myitworks(?:events)?\.com$ + name + .+ + + target + + + host + myitworks.com + + + host + *.myitworks.com + + + host + myitworksevents.com + + + host + *.myitworksevents.com + + + + + ITAlliance.com + + ruleset + + name + ITAlliance.com + rule + + from + ^http://(www\.)?italliance\.com/ + to + https://$1italliance.com/ + + securecookie + + host + ^(?:www\.)?italliance\.com$ + name + .+ + + target + + + host + italliance.com + + + host + www.italliance.com + + + + + ITER.org + + ruleset + + name + ITER.org + rule + + from + ^http://(portal\.|www\.)?iter\.org/ + to + https://$1iter.org/ + + securecookie + + host + ^portal\.iter\.org$ + name + .+ + + target + + + host + iter.org + + + host + *.iter.org + + + + + ITMB.nl + + ruleset + + name + ITMB.nl + rule + + from + ^http://(www\.)?itmb\.nl/ + to + https://$1itmb.nl/ + + securecookie + + host + ^\.itmb\.nl$ + name + .+ + + target + + + host + itmb.nl + + + host + *.itmb.nl + + + + + ITPC (partial) + + ruleset + + exclusion + + pattern + ^http://www\.iptc\.org/gfxgen(?:$|\?) + + name + ITPC (partial) + rule + + from + ^http://(?:www\.)?iptc\.org/ + to + https://www.iptc.org/ + + securecookie + + host + ^(.*\.)?iptc\.org$ + name + .* + + target + + + host + iptc.org + + + host + www.iptc.org + + + + + ITU (partial) + + ruleset + + name + ITU (partial) + rule + + + from + ^http://(?:www\.)?itu\.int/(CookieAuth\.dll|favicon\.ico|lib/|net/) + to + https://www.itu.int/$1 + + + from + ^http://(erecruit|itunews)\.itu\.int/ + to + https://$1.itu.int/ + + + securecookie + + host + ^(?:erecruit|itunews)\.itu\.int$ + name + .+ + + target + + + host + itu.int + + + host + *.itu.int + + + + + ITV.com (partial) + + ruleset + + name + ITV.com (partial) + rule + + + from + ^http://(?:www\.)?itv\.com/thestore(?:$|[?/].*) + to + https://www.jmldirect.com/ + + + from + ^http://(?:www\.)?itv\.com/(?=assets/|itvplayer(?:$|[?/])|mediaplayer/) + to + https://www.itv.com/ + + + from + ^http://(beta|i01-www)\.itv\.com/ + to + https://$1.itv.com/ + + + from + ^http://news\.images\.itv\.com/ + to + https://a248.e.akamai.net/f/248/3293/10/news.images.itv.com/ + + + from + ^http://www\.itvstatic\.com/ + to + https://www.itvstatic.com/ + + + target + + + host + itv.com + + + host + *.itv.com + + + host + www.itvstatic.com + + + + + ITWeb.co.za (partial) + + ruleset + + name + ITWeb.co.za (partial) + rule + + from + ^http://secure\.itweb\.co\.za/ + to + https://secure.itweb.co.za/ + + securecookie + + host + ^secure\.itweb\.co\.za$ + name + .+ + + target + + host + secure.itweb.co.za + + + + ITalian Network Operators Group (partial) + + ruleset + + name + ITalian Network Operators Group (partial) + platform + cacert + rule + + from + ^http://lists\.itnog\.it/ + to + https://lists.itnog.it/ + + target + + host + lists.itnog.it + + + + IUCNredlist.org (partial) + + ruleset + + name + IUCNredlist.org (partial) + rule + + from + ^http://i\.iucnredlist\.org/ + to + https://d17e9fs5g1pnhb.cloudfront.net/ + + target + + host + i.iucnredlist.org + + + + IUPUI.edu (partial) + + ruleset + + exclusion + + pattern + http://cs\.iupui\.edu/(?!~) + + name + IUPUI.edu (partial) + rule + + from + ^http://cs\.iupui\.edu/ + to + https://cs.iupui.edu/ + + target + + host + *.iupui.edu + + + + IVPN.net + + ruleset + + name + IVPN.net + rule + + from + ^http://(static\.|www\.)?ivpn\.net/ + to + https://$1ivpn.net/ + + securecookie + + host + ^www\.ivpn\.net$ + name + .+ + + target + + + host + ivpn.net + + + host + www.ivpn.net + + + + + IVW (partial) + + ruleset + + name + IVW (partial) + rule + + from + ^http://heft\.ivw\.eu/ + to + https://heft.ivw.eu/ + + securecookie + + host + ^heft\.ivw\.eu$ + name + .+ + + target + + host + heft.ivw.eu + + + + IXI (partial) + + ruleset + + name + IXI (partial) + rule + + from + ^http://s\.ixiaa\.com/ + to + https://s.ixiaa.com/ + + target + + host + s.ixiaa.com + + + + IZEA.com + + ruleset + + name + IZEA.com + rule + + from + ^http://(www\.)?izea\.com/ + to + https://$1izea.com/ + + securecookie + + host + ^izea\.com$ + name + .+ + + target + + + host + izea.com + + + host + www.izea.com + + + + + Iberdrola (partial) + + ruleset + + name + Iberdrola (partial) + rule + + from + ^http://(?:www\.)?iberdrola\.es/ + to + https://www.iberdrola.es/ + + securecookie + + host + ^(?:www)?\.iberdrola\.es$ + name + .+ + + target + + + host + iberdrola.es + + + host + *.iberdrola.es + + + + + Iberia + + ruleset + + name + Iberia + rule + + + from + ^http://iberia\.com/ + to + https://iberia.com/ + + + from + ^http://([^/:@\.]+)\.iberia\.com/ + to + https://$1.iberia.com/ + + + target + + + host + iberia.com + + + host + *.iberia.com + + + + + Iberiabank + + ruleset + + name + Iberiabank + rule + + from + ^http://(www\.)?iberiabank\.com/ + to + https://$1iberiabank.com/ + + securecookie + + host + ^(?:w*\.)?iberiabank\.com$ + name + .+ + + target + + + host + iberiabank.com + + + host + *.iberiabank.com + + + + + Ibiza Rocks (partial) + + ruleset + + name + Ibiza Rocks (partial) + rule + + from + ^http://(bookings|mrh)\.ibizarocks\.com/ + to + https://$1.ibizarocks.com/ + + securecookie + + host + ^.*\.ibizarocks\.com$ + name + .* + + target + + + host + bookings.ibizarocks.com + + + host + mrh.ibizarocks.com + + + + + Iblocklist.com (partial) + + ruleset + + name + Iblocklist.com (partial) + rule + + from + ^http://(www\.)?iblocklist\.com/ + to + https://www.iblocklist.com/ + + target + + + host + iblocklist.com + + + host + www.iblocklist.com + + + + + Ibs.sberbank.sk + + ruleset + + name + Ibs.sberbank.sk + rule + + from + ^http://ibs\.sberbank\.sk/ + to + https://ibs.sberbank.sk/ + + target + + host + ibs.sberbank.sk + + + + Icculus.org + + ruleset + + name + Icculus.org + rule + + from + ^http://(([a-zA-Z0-9-]+\.)?icculus\.org)/ + to + https://$1/ + + target + + + host + icculus.org + + + host + *.icculus.org + + + + + IceDivX.com + + ruleset + + name + IceDivX.com + rule + + from + ^http://(www\.)?icedivx\.com/ + to + https://$1icedivx.com/ + + securecookie + + host + ^\.icedivx\.com$ + name + .+ + + target + + + host + icedivx.com + + + host + *.icedivx.com + + + + + IceFilms.info (partial) + + ruleset + + exclusion + + pattern + ^http://www\.icefilms\.info/membersonly/ + + name + IceFilms.info (partial) + rule + + from + ^http://((?:forum|img|www)\.)?icefilms\.info/ + to + https://$1icefilms.info/ + + securecookie + + + host + ^\.icefilms\.info$ + name + (?:__cfduid|__utm\w+)$ + + + host + ^\.forum\.icefilms\.info$ + name + .+ + + + target + + + host + icefilms.info + + + host + *.icefilms.info + + + + + IceHeberg + + ruleset + + name + IceHeberg + rule + + from + ^http://(?:www\.)?iceheberg\.fr/ + to + https://www.iceheberg.fr/ + + target + + + host + iceheberg.fr + + + host + www.iceheberg.fr + + + + + IceImg.com + + ruleset + + name + IceImg.com + rule + + from + ^http://(www\.)?iceimg\.com/ + to + https://$1iceimg.com/ + + securecookie + + host + ^\.?iceimg\.com$ + name + .+ + + target + + + host + iceimg.com + + + host + *.iceimg.com + + + + + Icecat (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?icecat\.biz/(?!css/|en/menu/(?:forgot|openicecat|register)/|imgs/) + + name + Icecat (partial) + rule + + from + ^http://(images\.|www\.)?icecat\.biz/ + to + https://$1icecat.biz/ + + target + + + host + icecat.biz + + + host + *.icecat.biz + + + + + Icinga + + ruleset + + name + Icinga + rule + + from + ^http://((?:dev|translate|wiki|www)\.)?icinga\.org/ + to + https://$1icinga.org/ + + securecookie + + host + ^(.*\.)?icinga\.org$ + name + .* + + target + + + host + icinga.org + + + host + *.icinga.org + + + + + Iconfinder (partial) + + ruleset + + name + Iconfinder (partial) + rule + + + from + ^http://(cdn\d+|track)\.iconfinder\.com/ + to + https://$1.iconfinder.com/ + + + from + ^http://support\.iconfinder\.com/favicon\.ico + to + https://d3jyn100am7dxp.cloudfront.net/favicon.ico + + + target + + host + *.iconfinder.com + + + + Idea Fit.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ideafit\.com/+(?!favicon\.ico|files/|misc/|sites/) + + name + Idea Fit.com (partial) + rule + + + from + ^http://(?:cdn[1-6]?\.|www\.)?ideafit\.com/ + to + https://www.ideafit.com/ + + + from + ^http://api\.ideafit\.com/ + to + https://api.ideafit.com/ + + + target + + + host + ideafit.com + + + host + *.ideafit.com + + + + + Idefix + + ruleset + + name + Idefix + platform + mixedcontent + rule + + from + ^http://(www\.)?idefix\.com/ + to + https://www.idefix.com/ + + securecookie + + host + ^www\.idefix\.com$ + name + .* + + target + + + host + www.idefix.com + + + host + idefix.com + + + + + IdenTrust.com + + ruleset + + name + IdenTrust.com + rule + + + from + ^http://(?:www\.)?identrust\.com/ + to + https://www.identrust.com/ + + + from + ^http://(participant|secure)\.identrust\.com/ + to + https://$1.identrust.com/ + + + target + + + host + identrust.com + + + host + *.identrust.com + + + + + IdenTrustSSL.com + + ruleset + + name + IdenTrustSSL.com + rule + + from + ^http://(?:www\.)?identrustssl\.com/ + to + https://www.identrustssl.com/ + + target + + + host + identrustssl.com + + + host + www.identrustssl.com + + + + + Identica + + ruleset + + exclusion + + pattern + ^http://identi\.ca/main/openid + + name + Identica + rule + + + from + ^http://(?:www\.)?identi\.ca/ + to + https://identi.ca/ + + + from + ^http://files\.status\.net/ + to + https://files.status.net/ + + + from + ^http://(meteor\d+\.identi\.ca)/ + to + https://$1/ + + + from + ^http://avatar\.identi\.ca/ + to + https://avatar3.status.net/i/identica/ + + + securecookie + + host + ^identi\.ca$ + name + .* + + target + + + host + *.identi.ca + + + host + identi.ca + + + host + files.status.net + + + + + Identity Stronghold + + ruleset + + name + Identity Stronghold + platform + mixedcontent + rule + + from + ^http://(www\.)?idstronghold\.com/ + to + https://$1idstronghold.com/ + + target + + + host + idstronghold.com + + + host + www.idstronghold.com + + + + + IdentityTheft + + ruleset + + name + IdentityTheft + rule + + from + ^http://(?:www\.)?identitytheft\.org\.uk/ + to + https://www.identitytheft.org.uk/ + + target + + + host + identitytheft.org.uk + + + host + www.identitytheft.org.uk + + + + + Idg.de + + ruleset + + name + Idg.de + rule + + from + ^http://adserver\.idg\.de/ + to + https://adserver.idg.de/ + + target + + host + *.idg.de + + + + Ifortuna.sk + + ruleset + + name + Ifortuna.sk + rule + + from + ^http://(www\.)?ifortuna\.sk/ + to + https://www.ifortuna.sk/ + + target + + + host + ifortuna.sk + + + host + www.ifortuna.sk + + + + + Igalia (partial) + + ruleset + + name + Igalia (partial) + rule + + from + ^http://(labs\.)?igalia\.com/ + to + https://$1igalia.com/ + + target + + + host + igalia.com + + + host + labs.igalia.com + + + + + Ignite Realtime.org + + ruleset + + name + Ignite Realtime.org + rule + + + from + ^http://(community\.|www\.)?igniterealtime\.org/ + to + https://$1igniterealtime.org/ + + + from + ^http://issues\.igniterealtime\.org/+ + to + https://igniterealtime.org/issues/ + + + securecookie + + host + ^(?:community\.|www\.)?igniterealtime\.org$ + name + .+ + + target + + + host + igniterealtime.org + + + host + *.igniterealtime.org + + + + + Igolder.com + + ruleset + + name + Igolder.com + rule + + from + ^http://(www\.)?igolder\.com/ + to + https://www.igolder.com/ + + target + + + host + igolder.com + + + host + www.igolder.com + + + + + Ikea.com (partial) + + ruleset + + name + Ikea.com (partial) + rule + + + from + ^http://(?:secure\.|www\.)?ikea\.com/(?:favicon\.ico|img_dot_com/|ms/(?:css|img|js)/) + to + https://secure.ikea.com/ + + + from + ^http://metrics\.ikea\.com/ + to + https://ikea-com.122.2o7.net/ + + + from + ^http://smetrics\.ikea\.com/ + to + https://smetrics.ikea.com/ + + + securecookie + + host + ^\.ikea\.com$ + name + ^s_\w+$ + + target + + + host + ikea.com + + + host + *.ikea.com + + + + + Iljmp.com + + ruleset + + name + Iljmp.com + rule + + from + ^http://([\w-]+\.)?iljmp\.com/ + to + https://$1iljmp.com/ + + securecookie + + host + (?:.*\.)?iljmp\.com$ + name + .+ + + target + + + host + iljmp.com + + + host + *.iljmp.com + + + + + Illinois Department of Financial & Professional Regulation + + ruleset + + name + Illinois Department of Financial & Professional Regulation + rule + + from + ^http://(?:www\.)?idfpr\.com/ + to + https://www.idfpr.com/ + + securecookie + + host + ^www\.idfpr\.com$ + name + .+ + + target + + + host + idfpr.com + + + host + www.idfpr.com + + + + + Illumina.com (partial) + + ruleset + + name + Illumina.com (partial) + rule + + + from + ^http://(?:www\.)?illumina\.com/ + to + https://www.illumina.com/ + + + from + ^http://(developer\.basespace|my)\.illumina\.com/ + to + https://$1.illumina.com/ + + + securecookie + + host + ^(?:my|\.?www)\.illumina\.com$ + name + .+ + + target + + + host + illumina.com + + + host + *.illumina.com + + + + + Illuminated Pots + + ruleset + + name + Illuminated Pots + rule + + from + ^http://www\.illuminated-pots\.com/ + to + https://www.illuminated-pots.com/ + + securecookie + + host + ^(?:\.?www)?\.illuminated-pots\.com$ + name + .+ + + target + + host + *.illuminated-pots.com + + + + Ilmasto-opas + + ruleset + + name + Ilmasto-opas + rule + + from + ^http://(www\.)?ilmasto-opas\.fi/ + to + https://$1ilmasto-opas.fi/ + + securecookie + + host + ^ilmasto-opas\.fi$ + name + .+ + + target + + + host + ilmasto-opas.fi + + + host + www.ilmasto-opas.fi + + + + + Ilya Grigorik (partial) + + ruleset + + name + Ilya Grigorik (partial) + rule + + from + ^http://(www\.)?igvita\.com/ + to + https://$1igvita.com/ + + target + + + host + igvita.com + + + host + www.igvita.com + + + + + ImQuQu.com + + ruleset + + name + ImQuQu.com + rule + + from + ^http://(?:www\.)?imququ\.com/ + to + https://www.imququ.com/ + + target + + + host + imququ.com + + + host + www.imququ.com + + + + + ImageComics.com + + ruleset + + name + ImageComics.com + rule + + from + ^http://(www\.)?imagecomics\.com/ + to + https://$1imagecomics.com/ + + securecookie + + host + ^(?:www\.)?imagecomics\.com$ + name + .+ + + target + + + host + imagecomics.com + + + host + www.imagecomics.com + + + + + ImageOptim.com + + ruleset + + name + ImageOptim.com + rule + + from + ^http://(www\.)?imageoptim\.com/ + to + https://$1imageoptim.com/ + + target + + + host + imageoptim.com + + + host + www.imageoptim.com + + + + + ImageShack (partial) + + ruleset + + exclusion + + + pattern + ^http://imageshack\.us/f/.* + + + pattern + ^http://iload\d\.imageshack\.us/$ + + + pattern + ^http://kb\.imageshack\.us/(?!img/favicon\.ico$) + + + name + ImageShack (partial) + rule + + + from + ^http://(www\.)?imageshack\.com/ + to + https://$1imageshack.com/ + + + from + ^http://kb\.imageshack\.us/img/favicon\.ico$ + to + https://imageshack.us/favicon.ico + + + from + ^http://stream\.imageshack\.us/favicon\.ico$ + to + https://imageshack.us/favicon.ico + + + from + ^http://img(\d{1,3})\.imageshack\.us/ + to + https://img$1.imageshack.us/ + + + from + ^http://(?:www\.)?([ac-r]\w+\.)?imageshack\.us/ + to + https://$1imageshack.us/ + + + downgrade + 1 + from + ^https://iload(\d)\.imageshack\.us/ + to + http://iload$1.imageshack.us/ + + + securecookie + + host + ^(?:.*\.)?imageshack\.us$ + name + .+ + + target + + + host + imageshack.* + + + host + www.imageshack.com + + + host + *.imageshack.us + + + + + Imagestash + + ruleset + + name + Imagestash + rule + + from + ^http://(www\.)?imagestash\.org/ + to + https://$1imagestash.org/ + + securecookie + + host + ^(?:www\.)?imagestash\.org$ + name + .+ + + target + + + host + imagestash.org + + + host + www.imagestash.org + + + + + Imation.com (partial) + + ruleset + + name + Imation.com (partial) + rule + + from + ^http://(support\.|www\.)?imation\.com/ + to + https://$1imation.com/ + + securecookie + + host + ^(?:support\.|www\.)?imation\.com$ + name + .+ + + target + + + host + imation.com + + + host + *.imation.com + + + + + Img.shields.io + + ruleset + + name + Img.shields.io + rule + + from + ^http://img\.shields\.io/ + to + https://img.shields.io/ + + target + + host + img.shields.io + + + + Imgflip.com + + ruleset + + name + Imgflip.com + rule + + from + ^http://((?:i|s|www)\.)?imgflip\.com/ + to + https://$1imgflip.com/ + + securecookie + + host + ^(?:\.|www\.)?imgflip\.com$ + name + .+ + + target + + + host + imgflip.com + + + host + *.imgflip.com + + + + + Imgur + + ruleset + + name + Imgur + rule + + + from + ^http://imgur\.com/ + to + https://imgur.com/ + + + from + ^http://img\.imgur\.com/ + to + https://i.imgur.com/ + + + from + ^http://store\.imgur\.com/ + to + https://imgur-store.myshopify.com/ + + + from + ^http://([\w.]+\.)?imgur\.com/ + to + https://$1imgur.com/ + + + securecookie + + host + ^\.?imgur\.com + name + .+ + + target + + + host + imgur.com + + + host + *.imgur.com + + + + + Iminent.com (partial) + + ruleset + + name + Iminent.com (partial) + rule + + from + ^http://adserver\.iminent\.com/ + to + https://adserver.iminent.com/ + + target + + host + adserver.iminent.com + + + + Immerda.ch + + ruleset + + name + Immerda.ch + rule + + + from + ^http://immerda\.ch/ + to + https://www.immerda.ch/ + + + from + ^http://([^/:@]*)\.immerda\.ch/ + to + https://$1.immerda.ch/ + + + target + + + host + immerda.ch + + + host + *.immerda.ch + + + + + Immunicity.org + + ruleset + + name + Immunicity.org + rule + + from + ^http://(?:www\.)?immunicity\.org/ + to + https://immunicity.org/ + + target + + + host + immunicity.org + + + host + www.immunicity.org + + + + + Immunityinc.com + + ruleset + + name + Immunityinc.com + rule + + from + ^http://(www\.)?immunity(in|se)c?\.com/ + to + https://$1immunity$2c.com/ + + target + + + host + immunityinc.com + + + host + www.immunityinc.com + + + host + immunitysec.com + + + host + www.immunitysec.com + + + + + Impact Radius + + ruleset + + name + Impact Radius + rule + + + from + ^http://tl\.r7ls\.net/ + to + https://tl.r7ls.net/ + + + from + ^http://(manilla\.|www\.)?7eer\.net/ + to + https://$17eer.net/ + + + from + ^http://(filter\.|member\.|www\.)?impactradius\.com/ + to + https://$1impactradius.com/ + + + from + ^http://(www\.)?ojrq\.net/ + to + https://$1ojrq.net/ + + + securecookie + + + host + ^\.r7ls\.net$ + name + .* + + + host + ^.*\.7eer\.net$ + name + .* + + + host + ^(.*\.)?impactradius\.com$ + name + .* + + + host + ^(.*\.)?ojrq\.net$ + name + .* + + + target + + + host + *.r7ls.net + + + host + 7eer.net + + + host + *.7eer.net + + + host + impactradius.com + + + host + *.impactradius.com + + + host + ojrq.net + + + host + *.ojrq.net + + + + + Impact Software Company.com + + ruleset + + name + Impact Software Company.com + rule + + from + ^http://(www\.)?impactsoftcompany\.com/ + to + https://$1impactsoftcompany.com/ + + target + + + host + impactsoftcompany.com + + + host + www.impactsoftcompany.com + + + + + Imperative Ideas.com (partial) + + ruleset + + name + Imperative Ideas.com (partial) + rule + + from + ^http://(www\.)?imperativeideas\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1imperativeideas.com/ + + target + + + host + imperativeideas.com + + + host + www.imperativeideas.com + + + + + Imperial College London (partial) + + ruleset + + name + Imperial College London (partial) + rule + + + from + ^http://www\.doc\.ic\.ac\.uk/ + to + https://www.doc.ic.ac.uk/ + + + from + ^https?://(?:www(3)?\.)?imperial\.ac\.uk/ + to + https://www$1.imperial.ac.uk/ + + + target + + + host + www.doc.ic.ac.uk + + + host + imperial.ac.uk + + + host + *.imperial.ac.uk + + + + + ImperialViolet.org + + ruleset + + name + ImperialViolet.org + rule + + from + ^http://(pond\.|www\.)?imperialviolet\.org/ + to + https://$1imperialviolet.org/ + + target + + + host + imperialviolet.org + + + host + *.imperialviolet.org + + + + + Improvely.com + + ruleset + + name + Improvely.com + rule + + from + ^http://(www\.)?improvely\.com/ + to + https://$1improvely.com/ + + securecookie + + host + ^www\.improvely\.com$ + name + .+ + + target + + + host + improvely.com + + + host + www.improvely.com + + + + + Impulse.net + + ruleset + + name + Impulse.net + platform + mixedcontent + rule + + from + ^http://(webmail\.|www\.)?impulse\.net/ + to + https://$1impulse.net/ + + securecookie + + host + ^(?:webmail|www)?\.impulse\.net$ + name + .+ + + target + + + host + impulse.net + + + host + *.impulse.net + + + + + Imrworldwide.com + + ruleset + + name + Imrworldwide.com + rule + + from + ^http://secure-(\w\w)\.imrworldwide\.com/ + to + https://secure-$1.imrworldwide.com/ + + securecookie + + host + ^\.imrworldwide\.com$ + name + .* + + target + + host + *.imrworldwide.com + + + + In-Q-Tel + + ruleset + + name + In-Q-Tel + rule + + from + ^http://(?:www\.)?iqt\.org/ + to + https://www.iqt.org/ + + target + + + host + iqt.org + + + host + www.iqt.org + + + + + InCommon + + ruleset + + name + InCommon + rule + + + from + ^http://(www\.)?incommon\.org/ + to + https://$1incommon.org/ + + + from + ^http://(?:www\.)?incommonfederation\.org/ + to + https://incommonfederation.org/ + + + from + ^https?://wayf2?\.incommonfederation\.org/ + to + https://wayf.incommonfederation.org/ + + + securecookie + + host + ^\.incommonfederation\.org$ + name + .+ + + target + + + host + incommon.org + + + host + www.incommon.org + + + host + incommonfederation.org + + + host + *.incommonfederation.org + + + + + InLinkz.com (partial) + + ruleset + + name + InLinkz.com (partial) + rule + + from + ^http://(www\.)?inlinkz\.com/ + to + https://$1inlinkz.com/ + + securecookie + + host + ^\.inlinkz\.com$ + name + .+ + + target + + + host + inlinkz.com + + + host + *.inlinkz.com + + + + + InMotion Hosting + + ruleset + + name + InMotion Hosting + rule + + + from + ^http://(www\.)?chatwithourteam\.com/ + to + https://$1chatwithourteam.com/ + + + from + ^http://((?:www\.)?secure\d{1,3}\.|www\.)?inmotionhosting\.com/ + to + https://$1inmotionhosting.com/ + + + from + ^http://img0\d\.inmotionhosting\.com/ + to + https://secure1.inmotionhosting.com/ + + + securecookie + + host + ^(.*\.)?(chatwithourteam|inmotionhosting)\.com$ + name + .* + + target + + + host + chatwithourteam.com + + + host + www.chatwithourteam.com + + + host + *.www.chatwithourteam.com + + + host + inmotionhosting.com + + + host + *.inmotionhosting.com + + + host + www.*.inmotionhosting.com + + + + + InTechnology.co.uk + + ruleset + + name + InTechnology.co.uk + rule + + from + ^http://(www\.)?intechnology\.co\.uk/ + to + https://$1intechnology.co.uk/ + + securecookie + + host + ^(?:www\.)?intechnology\.co\.uk$ + name + .+ + + target + + + host + intechnology.co.uk + + + host + www.intechnology.co.uk + + + + + Inapub.co.uk + + ruleset + + name + Inapub.co.uk + rule + + from + ^http://(www\.)?inapub\.co\.uk/ + to + https://$1inapub.co.uk/ + + securecookie + + host + ^(?:w*\.)?inapub\.co\.uk$ + name + .+ + + target + + + host + inapub.co.uk + + + host + *.inapub.co.uk + + + + + InboxApp.com + + ruleset + + name + InboxApp.com + rule + + from + ^http://(www\.)?inboxapp\.com/ + to + https://$1inboxapp.com/ + + target + + + host + inboxapp.com + + + host + www.inboxapp.com + + + + + Inc.com (mixed content) + + ruleset + + name + Inc.com (mixed content) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?inc\.com/ + to + https://www.inc.com/ + + + from + ^http://(conference|mediakit)\.inc\.com/ + to + https://$1.inc.com/ + + + target + + + host + inc.com + + + host + conference.inc.com + + + host + mediakit.inc.com + + + host + www.inc.com + + + + + Inc.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:conference|mediakit)\.inc\.com/+(?!wp-content/|wp-includes/) + + + pattern + ^http://(?:www\.)?inc\.com/+(?!favicon\.ico|lib/|views/css/) + + + name + Inc.com (partial) + rule + + + from + ^http://(?:www\.)?inc\.com/ + to + https://www.inc.com/ + + + from + ^http://(conference|mediakit|subscriptions|magazine)\.inc\.com/ + to + https://$1.inc.com/ + + + securecookie + + host + ^(?:magazine|\.subscriptions)\.inc\.com$ + name + .+ + + target + + + host + inc.com + + + host + *.inc.com + + + + + Incapsula + + ruleset + + name + Incapsula + rule + + + from + ^http://((?:content|my|www)\.)?incapsula\.com/ + to + https://$1incapsula.com/ + + + from + ^http://support\.incapsula\.com/ + to + https://incapsula.zendesk.com/ + + + securecookie + + host + ^(?:content|my|www)?\.incapsula\.com$ + name + .+ + + target + + + host + incapsula.com + + + host + *.incapsula.com + + + + + Incisive Media + + ruleset + + name + Incisive Media + rule + + + from + ^https?://(?:secure\.|www\.)?incisivemedia\.com/ + to + https://secure.incisivemedia.com/ + + + from + ^http://incmai\.incisivemedia\.com/ + to + https://incmai.incisivemedia.com/ + + + from + ^https?://db\.riskwaters\.com/global/ + to + https://secure.incisivemedia.com/global/ + + + securecookie + + host + ^incmai\.incisivemedia\.com$ + name + .+ + + target + + + host + incisivemedia.com + + + host + *.incisivemedia.com + + + host + db.riskwaters.com + + + + + Ind.ie + + ruleset + + name + Ind.ie + rule + + from + ^http://((?:pulse-forum|source|www)\.)?ind\.ie/ + to + https://$1ind.ie/ + + securecookie + + host + ^(?:pulse-forum|source)\.ind\.ie$ + name + .+ + + target + + + host + ind.ie + + + host + *.ind.ie + + + + + Indaba Music.com (false MCB) + + ruleset + + name + Indaba Music.com (false MCB) + platform + mixedcontent + rule + + from + ^http://((?:beta|notifications|www)\.)?indabamusic\.com/ + to + https://$1indabamusic.com/ + + securecookie + + host + ^\.indabamusic\.com$ + name + .+ + + target + + + host + indabamusic.com + + + host + *.indabamusic.com + + + + + Indeed (partial) + + ruleset + + name + Indeed (partial) + rule + + from + ^http://secure\.indeed\.com/ + to + https://secure.indeed.com/ + + securecookie + + host + ^secure\.indeed\.com$ + name + .+ + + target + + host + secure.indeed.com + + + + Independent Centre for Privacy Protection Schleswig-Holstein + + ruleset + + name + Independent Centre for Privacy Protection Schleswig-Holstein + rule + + from + ^http://(?:www\.)?datenschutzzentrum\.de/ + to + https://www.datenschutzzentrum.de/ + + target + + + host + datenschutzzentrum.de + + + host + www.datenschutzzentrum.de + + + + + Independent Mail.com (partial) + + ruleset + + name + Independent Mail.com (partial) + rule + + + from + ^http://(?:www\.)?independentmail\.com/ + to + https://www.independentmail.com/ + + + from + ^http://login\.independentmail\.com/ + to + https://login.independentmail.com/ + + + from + ^http://media\.independentmail\.com/ + to + https://a248.e.akamai.net/f/1575/9717/6m/media.independentmail.com/ + + + from + ^http://web\.independentmail\.com/ + to + https://a248.e.akamai.net/f/1670/5173/6m/web.independentmail.com/ + + + securecookie + + host + ^(?:login)?\.independentmail\.com$ + name + .+ + + target + + + host + independentmail.com + + + host + *.independentmail.com + + + + + Independent Voter Network + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ivn\.us/(?:ca-election-center/wp-(?:content/plugins/(?:buddypress/bp-core/css|jquery-colorbox/themes)|includes/css)|wp-content/themes/ivn)/ + + name + Independent Voter Network + rule + + + from + ^https?://(?:www\.)?ivn\.us/([\w\-]+/)?(files|wp-content|wp-includes)/ + to + https://i0.wp.com/ivn.us/$1$2/ + + + from + ^https?://cdn\.ivn\.us/ + to + https://d1tu8ib6d01hwk.cloudfront.net/ + + + target + + + host + ivn.us + + + host + *.ivn.us + + + + + Independent.gov.uk (partial) + + ruleset + + name + Independent.gov.uk (partial) + rule + + from + ^http://terrorismlegislationreviewer\.independent\.gov\.uk/ + to + https://terrorismlegislationreviewer.independent.gov.uk/ + + target + + host + terrorismlegislationreviewer.independent.gov.uk + + + + Indepnet.net (partial) + + ruleset + + name + Indepnet.net (partial) + rule + + from + ^http://forge\.indepnet\.net/ + to + https://forge.indepnet.net/ + + securecookie + + host + ^forge\.indepnet\.net$ + name + .+ + + target + + host + forge.indepnet.net + + + + Index on Censorship.org (partial) + + ruleset + + name + Index on Censorship.org (partial) + rule + + from + ^http://(www\.)?indexoncensorship\.org/(?=favicon\.ico|wp-content/|wp-includes/|wp-login\.php) + to + https://$1indexoncensorship.org/ + + target + + + host + indexoncensorship.org + + + host + www.indexoncensorship.org + + + + + IndiaMART (partial) + + ruleset + + name + IndiaMART (partial) + rule + + + from + ^http://1\.imgimg\.com/ + to + https://d2y6cbvg1xh035.cloudfront.net/ + + + from + ^http://2\.imimg\.com/ + to + https://d1raip7zazff6e.cloudfront.net/ + + + from + ^http://3\.imimg\.com/ + to + https://dypmusfs8hvdw.cloudfront.net/ + + + from + ^http://4\.imimg\.com/ + to + https://d3p8pcjf51nlqw.cloudfront.net/ + + + from + ^http://im\.gifbt\.com/ + to + https://d1wd2icune084.cloudfront.net/ + + + target + + + host + *.imimg.com + + + host + im.gifbt.com + + + + + Indian Express.com (partial) + + ruleset + + name + Indian Express.com (partial) + rule + + from + ^http://images\.indianexpress\.com/ + to + https://indianexpressonline.files.wordpress.com/ + + target + + host + images.indianexpress.com + + + + Indiana State University (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?indstate\.edu/(?!css/|favicon\.ico|images/|js/) + + name + Indiana State University (partial) + rule + + from + ^http://((?:isuportal|www1?)\.)?indstate\.edu/ + to + https://$1indstate.edu/ + + securecookie + + host + ^isuportal\.indstate\.edu$ + name + .+ + + target + + host + *.indstate.edu + + + + Indianapolis Star + + ruleset + + name + Indianapolis Star + rule + + from + ^http://(?:cmsing\.|www\.)?indystar\.com/ + to + https://www.indystar.com/ + + securecookie + + host + ^www\.indystar\.com$ + name + .+ + + target + + + host + indystar.com + + + host + www.indystar.com + + + + + Indianna University (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?iu\.edu/(?!css|img|~\w+|[\w/-]+/_image)/ + + name + Indianna University (partial) + rule + + + from + ^https?://(?:www\.)?soic\.indiana\.edu/ + to + https://www.soic.indiana.edu/ + + + from + ^http://(stcweb\.stc|spout\.ussg)\.indiana\.edu/ + to + https://$1.indiana.edu/ + + + from + ^http://((?:cloudtools\.access|ams|assets|canvas|cas|cloudstorage|www\.exchange|fonts|idp|imail|itaccounts|ittraining|iuanyware|iuware|kb|media\.kb|oncourse|one|onestart|internal\.pti|slfed\.uits|umail|webmail|www)\.)?iu\.edu/ + to + https://$1iu.edu/ + + + from + ^https?://(?:www\.)?osl\.iu\.edu/ + to + https://www.osl.iu.edu/ + + + from + ^https?://(?:www\.)?pti\.iu\.edu/ + to + https://pti.iu.edu/ + + + securecookie + + + host + ^stcweb\.stc\.indiana\.edu$ + name + .+ + + + host + ^(?:ams|assets|cas|w(?:ebnail|www)\.cs|fonts|ittraining|kb|oncourse|one|\.internal\.pti|iuware|umail)\.iu\.edu$ + name + .+ + + + target + + + host + *.indiana.edu + + + host + iu.edu + + + host + *.iu.edu + + + + + IndieMerch (partial) + + ruleset + + name + IndieMerch (partial) + rule + + + from + ^https?://indiemerch\.com/ + to + https://www.indiemerch.com/ + + + from + ^http://(cdn|pad|www)\.indiemerch\.com/ + to + https://$1.indiemerch.com/ + + + securecookie + + host + ^.+\.indiemerch\.com$ + name + .+ + + target + + + host + indiemerch.com + + + host + *.indiemerch.com + + + + + IndieMerchandising + + ruleset + + name + IndieMerchandising + rule + + from + ^http://(www\.)?indiemerchandising\.com/ + to + https://$1indiemerchandising.com/ + + securecookie + + host + ^(?:www\.)?indiemerchandising\.com$ + name + .+ + + target + + + host + indiemerchandising.com + + + host + www.indiemerchandising.com + + + + + IndieMerchstore + + ruleset + + name + IndieMerchstore + rule + + from + ^https?://(?:www\.)?indiemerchstore\.com/ + to + https://www.indiemerchstore.com/ + + securecookie + + host + ^www\.indiemerchstore\.com$ + name + .+ + + target + + + host + indiemerchstore.com + + + host + www.indiemerchstore.com + + + + + Indiegogo (partial) + + ruleset + + name + Indiegogo (partial) + rule + + + from + ^http://igg\.me/ + to + https://www.indiegogo.com/ + + + from + ^http://g(\d)\.iggcdn\.com/ + to + https://g$1.iggcdn.com/ + + + from + ^http://((?:images|web\d|www)\.)?indiegogo\.com/ + to + https://$1indiegogo.com/ + + + securecookie + + host + ^\.indiegogo\.com$ + name + ^(?:optimizely\w+|__utm\w)$ + + target + + + host + igg.me + + + host + *.iggcdn.com + + + host + indiegogo.com + + + host + *.indiegogo.com + + + + + Indovina Bank + + ruleset + + name + Indovina Bank + platform + firefox + rule + + from + ^http://ebanking\.indovinabank\.com\.vn/ + to + https://ebanking.indovinabank.com.vn/ + + securecookie + + host + ^ebanking\.indovinabank\.com\.vn$ + name + .+ + + target + + host + ebanking.indovinabank.com.vn + + + + Induction Solutions.com (false MCB) + + ruleset + + name + Induction Solutions.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?inductionsolutions\.com/(?!favicon\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1inductionsolutions.com/ + + securecookie + + host + ^(?:w*\.)?inductionsolutions\.com$ + name + .+ + + target + + + host + inductionsolutions.com + + + host + *.inductionsolutions.com + + + + + Induction Solutions.com (partial) + + ruleset + + name + Induction Solutions.com (partial) + rule + + from + ^http://(www\.)?inductionsolutions\.com/(?=favicon\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1inductionsolutions.com/ + + target + + + host + inductionsolutions.com + + + host + www.inductionsolutions.com + + + + + IndusGuard (partial) + + ruleset + + name + IndusGuard (partial) + rule + + from + ^http://soc\.indusguard\.com/ + to + https://soc.indusguard.com/ + + securecookie + + host + ^soc\.indusguard\.com$ + name + .+ + + target + + host + soc.indusguard.com + + + + Industry Botnet Group + + ruleset + + name + Industry Botnet Group + rule + + from + ^http://(www\.)?industrybotnetgroup\.org/ + to + https://$1industrybotnetgroup.org/ + + securecookie + + host + ^(www\.)?industrybotnetgroup\.org$ + name + .* + + target + + + host + industrybotnetgroup.org + + + host + www.industrybotnetgroup.org + + + + + IndyReader.org + + ruleset + + name + IndyReader.org + rule + + from + ^http://(www\.)?indyreader\.org/ + to + https://$1indyreader.org/ + + target + + + host + indyreader.org + + + host + www.indyreader.org + + + + + Indybay + + ruleset + + name + Indybay + rule + + from + ^http://(www\.)?indybay\.org/ + to + https://$1indybay.org/ + + target + + + host + www.indybay.org + + + host + indybay.org + + + + + Indymedia.org + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?(?:print|translations|satellite)\.indymedia\.org/ + + + pattern + ^http://(?:www\.)?(?:de|pr|india|italia|beirut)\.indymedia\.org/ + + + pattern + ^http://(?:ambazonia|atlanta|austin|beirut|bergstedt|blackcat|bulgaria|canarias|chiapas|colorado|dc|dl1\.video|hm|hudsonmohawk|jakarta|korea|laplana|lille1|mail\.se|minneapolis|mke|nettlau|newsreal|nycap|old\.estrecho|ottawa|perth|pl|rochester|romania|rous|russia|shiva|sweden|twincities|victoria|wmass|worcester|(?:www(1)?\.)?mexico|www3\.ch)\.indymedia\.org/ + + + pattern + ^http://(?:media[12]?\.argentina|buscador\.argentina)\.indymedia\.org/ + + + pattern + ^http://(?:(?:dev\.)?boston)\.indymedia\.org/ + + + pattern + ^http://(?:(?:www2?\.)?brasil|brazil)\.indymedia\.org/ + + + pattern + ^http://(?:chicago|chicago2|www0\.chicago|dev\.chicago)\.indymedia\.org/ + + + pattern + ^http://(?:de|media[12]?\.de|www[23]\.de|www[23]\.germany)\.indymedia\.org/ + + + pattern + ^http://(?:(?:www[12]\.)?istanbul|media2?\.istanbul|bagimsiz-istanbul|istanbul\.bbm)\.indymedia\.org/ + + + pattern + ^http://(?:(?:publish\.)?sandiego)\.indymedia\.org/ + + + name + Indymedia.org + rule + + + from + ^http://(?:www\.)?indymedia\.org/ + to + https://www.indymedia.org/ + + + from + ^http://(www\.)?([^/:@\.]+)\.indymedia\.org/ + to + https://$1$2.indymedia.org/ + + + from + ^http://indymedia\.org\.uk/ + to + https://indymedia.org.uk/ + + + from + ^http://(london|notts|sheffield)\.indymedia\.org\.uk/ + to + https://$1.indymedia.org.uk/ + + + from + ^http://www\.(london|notts|sheffield)\.indymedia\.org\.uk/ + to + https://www.$1.indymedia.org.uk/ + + + from + ^http://northern-indymedia\.org/ + to + https://northern-indymedia.org/ + + + from + ^http://(www|m|mobi|mobile|wap)\.northern-indymedia\.org/ + to + https://$1.northern-indymedia.org/ + + + from + ^http://(www\.)?northernindymedia\.org/ + to + https://$1northern-indymedia.org/ + + + target + + + host + indymedia.org + + + host + *.indymedia.org + + + host + indymedia.org.uk + + + host + *.indymedia.org.uk + + + host + northern-indymedia.org + + + host + *.northern-indymedia.org + + + + + Inertianetworks.com + + ruleset + + name + Inertianetworks.com + platform + firefox + rule + + from + ^http://inertianetworks\.com/ + to + https://inertianetworks.com/ + + securecookie + + host + ^inertianetworks\.com$ + name + .+ + + target + + host + inertianetworks.com + + + + Inet.se + + ruleset + + name + Inet.se + rule + + from + ^http://(?:www\.)?inet\.se/ + to + https://www.inet.se/ + + target + + + host + inet.se + + + host + www.inet.se + + + + + InfNX + + ruleset + + name + InfNX + rule + + from + ^http://(idn|static)\.infnx\.com/ + to + https://s3.amazonaws.com/$1.infnx.com/ + + target + + host + *.infnx.com + + + + Infamous + + ruleset + + name + Infamous + rule + + from + ^http://(www\.)?foreverinfamous\.com/ + to + https://$1foreverinfamous.com/ + + securecookie + + host + ^(?:w*\.)?foreverinfamous\.com$ + name + .+ + + target + + + host + foreverinfamous.com + + + host + *.foreverinfamous.com + + + + + Infinet.com.au (false MCB) + + ruleset + + name + Infinet.com.au (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?infinet\.com\.au/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://$1infinet.com.au/ + + securecookie + + host + ^(?:w*\.)?infinet\.com\.au$ + name + .+ + + target + + + host + infinet.com.au + + + host + *.infinet.com.au + + + + + Infinet.com.au (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?shop\.infinet\.com\.au/+(?!epages/shop\.sf/en_AU/\?ObjectPath=/Shops/infinet&ViewAction=ViewRegistration|WebRoot/) + + + pattern + ^http://(?:www\.)?infinet.com.au/(?!favicon\.ico|wp-content/|wp-includes/) + + + name + Infinet.com.au (partial) + rule + + from + ^http://(support\.|www\.(?:shop\.)?)?infinet\.com\.au/ + to + https://$1infinet.com.au/ + + securecookie + + host + ^support\.infinet\.com\.au$ + name + .+ + + target + + + host + infinet.com.au + + + host + shop.infinet.com.au + + + host + www.shop.infinet.com.au + + + host + support.infinet.com.au + + + host + www.infinet.com.au + + + + + Infinity Tracking (partial) + + ruleset + + name + Infinity Tracking (partial) + rule + + + from + ^http://portal\.infinity-tracking\.com/ + to + https://portal.infinity-tracking.com/ + + + from + ^http://a(pi|ssets)\.infinity-tracking\.net/ + to + https://a$1.infinity-tracking.net/ + + + target + + + host + portal.infinity-tracking.com + + + host + *.infinity-tracking.net + + + + + InfluAds (partial) + + ruleset + + name + InfluAds (partial) + rule + + from + ^http://(dashboard|engine)\.influads\.com/ + to + https://$1.influads.com/ + + securecookie + + host + ^dashboard\.influads\.com$ + name + .+ + + target + + host + *.influads.com + + + + Influencers Conference + + ruleset + + name + Influencers Conference + rule + + from + ^http://(www\.)?influencersconference\.com/ + to + https://$1influencersconference.com/ + + securecookie + + host + ^\.influencersconference\.com$ + name + .+ + + target + + + host + influencersconference.com + + + host + *.influencersconference.com + + + + + InfoQ (partial) + + ruleset + + name + InfoQ (partial) + rule + + from + ^http://(www\.)?infoq\.com/((?:br|cn|jp)/?$|resource/) + to + https://$1infoq.com/$2 + + target + + + host + infoq.com + + + host + www.infoq.com + + + + + InfoTomb.com + + ruleset + + name + InfoTomb.com + rule + + from + ^http://(www\.)?infotomb\.com/ + to + https://$1infotomb.com/ + + target + + + host + infotomb.com + + + host + www.infotomb.com + + + + + InfoWar.com + + ruleset + + name + InfoWar.com + rule + + from + ^http://(?:www\.)?infowar\.com/ + to + https://www.infowar.com/ + + securecookie + + host + ^(?:www)?\.infowar\.com$ + name + .+ + + target + + + host + infowar.com + + + host + *.infowar.com + + + + + InfoWorld.com + + ruleset + + name + InfoWorld.com + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?infoworld\.com/ + to + https://www.infoworld.com/ + + + from + ^http://m\.infoworld\.com/(mobify/|static/) + to + https://infoworld.mobify.com/$1 + + + securecookie + + host + ^\.infoworld\.com$ + name + ^(?:s_\w+|__utm)\w$ + + target + + + host + infoworld.com + + + host + *.infoworld.com + + + + + Infocube (partial) + + ruleset + + name + Infocube (partial) + rule + + from + ^http://(a[35]\.|www\.)?ogt\.jp/ + to + https://$1ogt.jp/ + + target + + + host + ogt.jp + + + host + *.ogt.jp + + + + + Infogroup (partial) + + ruleset + + name + Infogroup (partial) + rule + + + from + ^http://((?:account|ca|leads|publicfiling|secured|shared\.sub|www)\.)?infousa\.com/ + to + https://$1infousa.com/ + + + from + ^http://link\.p0\.com/ + to + https://link.p0.com/ + + + securecookie + + + host + ^(.*\.)?infousa\.com$ + name + .* + + + host + ^link\.p0\.com$ + name + .* + + + target + + + host + infousa.com + + + host + *.infousa.com + + + host + shared.sub.infousa.com + + + host + link.p0.com + + + + + Infolinks (partial) + + ruleset + + exclusion + + pattern + ^http://ls\.infolinks\.com/(?!images/) + + name + Infolinks (partial) + rule + + from + ^http://((?:advertisers|blog|c1|indnf|internalindn|ls|metrics|p1105|publishers|resources|www)\.)?infolinks\.com/ + to + https://$1infolinks.com/ + + securecookie + + host + ^advertisers\.infolinks\.com$ + name + .+ + + target + + + host + infolinks.com + + + host + *.infolinks.com + + + + + Infomaniak Network + + ruleset + + name + Infomaniak Network + rule + + + from + ^http://(str05\.|www\.)?infomaniak\.ch/ + to + https://$1infomaniak.ch/ + + + from + ^http://(\w+\.)?infomaniak\.com/ + to + https://$1infomaniak.com/ + + + securecookie + + + host + ^\.infomaniak\.ch$ + name + .+ + + + host + ^(?:.*\.)?infomaniak\.com$ + name + .* + + + target + + + host + infomaniak.ch + + + host + *.infomaniak.ch + + + host + infomaniak.com + + + host + *.infomaniak.com + + + + + Infopankki + + ruleset + + name + Infopankki + rule + + from + ^http://(?:www\.)?infopankki\.fi/ + to + https://www.infopankki.fi/ + + securecookie + + host + ^www\.infopankki\.fi$ + name + .+ + + target + + + host + infopankki.fi + + + host + www.infopankki.fi + + + + + Infopáginas + + ruleset + + name + Infopáginas + rule + + from + ^http://(?:www\.)?infopaginas\.com/ + to + https://www.infopaginas.com/ + + securecookie + + host + ^w*\.infopaginas\.com$ + name + .+ + + target + + + host + infopaginas.com + + + host + *.infopaginas.com + + + + + InformIT (partial) + + ruleset + + name + InformIT (partial) + platform + mixedcontent + rule + + + from + ^http://informit\.com/ + to + https://www.informit.com/ + + + from + ^http://(memberservices|www)\.informit\.com/ + to + https://$1.informit.com/ + + + target + + + host + informit.com + + + host + *.informit.com + + + + + Informa (partial) + + ruleset + + name + Informa (partial) + rule + + + from + ^http://(crcpress|garlandscience|routledgeweb|tandfonline|taylorandfrancis)\.com/ + to + https://www.$1.com/ + + + from + ^http://www\.(crcpress|garlandscience|tandfonline)\.com/(_?res|a4j/|action/(clickThrough|mobileDevicePairingLogin|registration|resources|show(Cart|Login))|content|(css|img)Jawr/|coverimage/|favicon|na101/|sda/|(templat|userimag)es/|twitter\.html|[\w\-]+/\w+_signin\.jsf) + to + https://www.$1.com/$2 + + + from + ^http://(files|img|lib)\.routledgeweb\.com/ + to + https://$1.routledgeweb.com/ + + + from + ^http://www\.(routledgeweb|taylorandfrancis)\.com/(account/|favicon) + to + https://www.$1.com/$2 + + + from + ^http://www\.taylorandfrancis\.com/(account/|favicon) + to + https://www.taylorandfrancis.com/$1 + + + target + + + host + crcpress.com + + + host + www.crcpress.com + + + host + garlandscience.com + + + host + www.garlandscience.com + + + host + *.routledgeweb.com + + + host + tandfonline.com + + + host + www.tandfonline.com + + + host + taylorandfrancis.com + + + host + www.taylorandfrancis.com + + + + + Informa Healthcare (partial) + + ruleset + + name + Informa Healthcare (partial) + rule + + + from + ^https?://(?:www\.)?informahealthcare\.com/(action/(?:clickThrough|doLogin|registration)|cssJawr/|favicon\.ico|na101/|sda/|templates/|userimages/) + to + https://informahealthcare.com/$1 + + + from + ^http://(www\.)?informahealthcarestore\.com/ + to + https://$1informahealthcarestore.com/ + + + securecookie + + host + ^\.(?:www\.)?informahealthcarestore\.com$ + name + .+ + + target + + + host + informahealthcare.com + + + host + www.informahealthcare.com + + + host + informahealthcarestore.com + + + host + *.informahealthcarestore.com + + + + + Informaction.com (partial) + + ruleset + + name + Informaction.com (partial) + rule + + from + ^http://(forums|secure)\.informaction\.com/ + to + https://$1.informaction.com/ + + securecookie + + host + ^\.forums\.informaction\.com$ + name + .+ + + target + + host + *.informaction.com + + + + InformationWeek + + ruleset + + name + InformationWeek + rule + + + from + ^http://(?:www\.)?byte\.com/ + to + https://www.informationweek.com/byte/ + + + from + ^http://(www\.)?informationweek\.com/ + to + https://$1informationweek.com/ + + + securecookie + + host + ^www\.informationweek\.com$ + name + .* + + target + + + host + byte.com + + + host + www.byte.com + + + host + informationweek.com + + + host + www.informationweek.com + + + + + Informer.com (partial) + + ruleset + + name + Informer.com (partial) + rule + + from + ^http://(www\.)?informer\.com/ + to + https://$1informer.com/ + + target + + + host + informer.com + + + host + www.informer.com + + + + + Infosec Island (partial) + + ruleset + + name + Infosec Island (partial) + rule + + from + ^http://(www\.)?infosecisland\.com/((?:ajax|css|images|js|sfCombine|system|uploads)/|favicon\.ico|(?:login|register|suggestlink)\.html) + to + https://$1infosecisland.com/$2/ + + target + + + host + infosecisland.com + + + host + www.infosecisland.com + + + + + Infospyware.com (partial) + + ruleset + + name + Infospyware.com (partial) + rule + + from + ^http://(www\.)?infospyware\.com/ + to + https://www.infospyware.com/ + + target + + + host + www.infospyware.com + + + host + infospyware.com + + + + + Infowars.com (partial) + + ruleset + + exclusion + + pattern + ^http://tv\.infowars\.com/+(?!amember(?:$|[?/])) + + name + Infowars.com (partial) + rule + + from + ^http://(hw|static|tv)\.infowars\.com/ + to + https://$1.infowars.com/ + + target + + host + *.infowars.com + + + + Infragard.net + + ruleset + + name + Infragard.net + platform + mixedcontent + rule + + from + ^http://(?:www\.)?infragard\.net/ + to + https://www.infragard.net/ + + target + + + host + infragard.net + + + host + www.infragard.net + + + + + Infusionsoft (partial) + + ruleset + + exclusion + + + pattern + ^http://(help|kb|www)\.customerhub\. + + + pattern + ^http://(help(center)?|marketplace)\.infusionsoft\. + + + name + Infusionsoft (partial) + platform + mixedcontent + rule + + + from + ^http://customerhub\.net/$ + to + https://customerhub.net/ + + + from + ^http://([\w\-]+)\.customerhub\.net/ + to + https://$1.customerhub.net/ + + + from + ^http://(crm\.|www\.)?infusionsoft\.com/ + to + https://$1infusionsoft.com/ + + + securecookie + + + host + ^(.*\.)?customerhub\.net$ + name + .* + + + host + ^(.*\.)?infusionsoft\.com$ + name + .* + + + target + + + host + customerhub.net + + + host + *.customerhub.net + + + host + infusionsoft.com + + + host + www.infusionsoft.com + + + + + Ingenico Group (partial) + + ruleset + + name + Ingenico Group (partial) + rule + + from + ^http://cloudfront\.ingenico\.com/ + to + https://dnweschm4a37.cloudfront.net/ + + target + + host + cloudfront.ingenico.com + + + + Ingenuity Hosting + + ruleset + + name + Ingenuity Hosting + rule + + from + ^http://(?:secure1\.|www\.)?ingenuity\.net\.au/ + to + https://secure1.ingenuity.net.au/ + + target + + + host + ingenuity.net.au + + + host + *.ingenuity.net.au + + + + + Ingress + + ruleset + + name + Ingress + rule + + from + ^http://(www\.)?ingress\.com/ + to + https://$1ingress.com/ + + target + + + host + ingress.com + + + host + www.ingress.com + + + + + Init7 (partial) + + ruleset + + name + Init7 (partial) + platform + cacert + rule + + from + ^http://mail\.init7\.net/ + to + https://mail.init7.net/ + + target + + host + mail.init7.net + + + + Initex.com + + ruleset + + name + Initex.com + rule + + from + ^http://(www\.)?initex\.com/ + to + https://$1initex.com/ + + target + + + host + initex.com + + + host + www.initex.com + + + + + Inkbunny + + ruleset + + name + Inkbunny + rule + + from + ^http://(www\.)?inkbunny\.net/ + to + https://inkbunny.net/ + + securecookie + + host + ^inkbunny\.net$ + name + .+ + + target + + + host + inkbunny.net + + + host + www.inkbunny.net + + + + + Innocence Project (partial) + + ruleset + + name + Innocence Project (partial) + rule + + from + ^http://secure\.innocenceproject\.org/ + to + https://secure.innocenceproject.org/ + + securecookie + + host + ^secure\.innocenceproject\.org$ + name + .+ + + target + + host + secure.innocenceproject.org + + + + Innometrics.com (partial) + + ruleset + + name + Innometrics.com (partial) + rule + + from + ^http://customer\.innometrics\.com/ + to + https://customer.innometrics.com/ + + securecookie + + host + ^customer\.innometrics\.com$ + name + .+ + + target + + host + customer.innometrics.com + + + + Innovate UK.org (partial) + + ruleset + + name + Innovate UK.org (partial) + rule + + + from + ^http://(?:www\.)?innovateuk\.org/ + to + https://www.innovateuk.org/ + + + from + ^http://(connect|login|projects|reports|vouchers)\.innovateuk\.org/ + to + https://$1.innovateuk.org/ + + + target + + + host + innovateuk.org + + + host + *.innovateuk.org + + + + + Innovation Interactive (partial) + + ruleset + + name + Innovation Interactive (partial) + rule + + from + ^http://([\w-]+)\.netmng\.com/ + to + https://$1.netmng.com/ + + securecookie + + + host + ^\.netmng\.com$ + name + ^evo5$ + + + host + ^[\w-]+\.netmng\.com$ + name + ^evo5_[\w-]+$ + + + target + + host + *.netmng.com + + + + Innovative Food Concepts (partial) + + ruleset + + name + Innovative Food Concepts (partial) + rule + + from + ^https?://common\.restaurantfurnitureresource\.com/ + to + https://d19a6ww13xgzf3.cloudfront.net/ + + target + + host + common.restaurantfurnitureresource.com + + + + Innovative Interfaces (partial) + + ruleset + + exclusion + + pattern + ^http://(?:linkplusaccess|sierra|www)\. + + name + Innovative Interfaces (partial) + rule + + from + ^http://(\w+)\.iii\.com/ + to + https://$1.iii.com/ + + securecookie + + host + ^.+\.iii\.com$ + name + .+ + + target + + host + *.iii.com + + + + InoReader + + ruleset + + name + InoReader + rule + + from + ^http://(www\.)?inoreader\.com/ + to + https://www.inoreader.com/ + + securecookie + + host + ^www\.inoreader\.com$ + name + .+ + + target + + + host + www.inoreader.com + + + host + inoreader.com + + + + + Inria.fr (partial) + + ruleset + + name + Inria.fr (partial) + rule + + + from + ^http://(admin-www|annuaire|cas|(?:lists\.)?gforge(?:-qualif)?|planete|raweb|site|sympa|utop|www)\.inria\.fr/ + to + https://$1.inria.fr/ + + + from + ^https?://en\.inria\.fr/ + to + https://www.inria.fr/en/ + + + securecookie + + host + ^.+\.inria\.fr$ + name + .+ + + target + + + host + *.inria.fr + + + host + lists.*.inria.fr + + + + + Inrialpes.fr (partial) + + ruleset + + name + Inrialpes.fr (partial) + rule + + from + ^http://planete\.inrialpes\.fr/ + to + https://planete.inrialpes.fr/ + + target + + host + planete.inrialpes.fr + + + + Inschrijven.nl + + ruleset + + name + Inschrijven.nl + rule + + from + ^http://(?:www\.)?inschrijven\.nl/ + to + https://www.inschrijven.nl/ + + target + + + host + www.inschrijven.nl + + + host + inschrijven.nl + + + + + Insecure.ws + + ruleset + + name + Insecure.ws + rule + + from + ^http://(www\.)?insecure\.ws/ + to + https://$1insecure.ws/ + + securecookie + + host + ^www\.insecure\.ws$ + name + .+ + + target + + + host + insecure.ws + + + host + www.insecure.ws + + + + + Inside Higher Ed (partial) + + ruleset + + name + Inside Higher Ed (partial) + rule + + + from + ^http://insidehighered\.com/ + to + https://insidehighered.com/ + + + from + ^http://(careers|www)\.insidehighered\.com/(fil|sit)es/ + to + https://$1.insidehighered.com/$2es/ + + + target + + + host + insidehighered.com + + + host + *.insidehighered.com + + + + + Insight + + ruleset + + name + Insight + rule + + + from + ^http://insight\.com/ + to + https://www.insight.com/ + + + from + ^http://(www|uk)\.insight\.com/ + to + https://$1.insight.com/ + + + from + ^http://(i|img|images|imagesqa)(\d+)\.insight\.com/ + to + https://$1$2.insight.com/ + + + securecookie + + host + ^(.+\.)?insight\.com$ + name + .* + + target + + + host + insight.com + + + host + *.insight.com + + + + + InsightExpress.com + + ruleset + + name + InsightExpress.com + rule + + from + ^http://(www\.)?insightexpress\.com/ + to + https://$1insightexpress.com/ + + securecookie + + host + ^(?:www\.)?insightexpress\.com$ + name + .+ + + target + + + host + insightexpress.com + + + host + www.insightexpress.com + + + + + InsightExpressai.com + + ruleset + + name + InsightExpressai.com + rule + + + from + ^http://(www\.)?insightexpressai\.com/ + to + https://$1insightexpressai.com/ + + + from + ^http://icompass\.insightexpressai\.com/ + to + https://a248.e.akamai.net/f/84/2864/10m/icompass.insightexpressai.com/ + + + securecookie + + host + ^\.insightexpressai\.com$ + name + .+ + + target + + + host + insightexpressai.com + + + host + *.insightexpressai.com + + + + + Insnw.net + + ruleset + + name + Insnw.net + rule + + from + ^http://assets\.insnw\.net/ + to + https://assets.insnw.net/ + + target + + host + assets.insnw.net + + + + Inspectlet.com + + ruleset + + name + Inspectlet.com + rule + + from + ^http://(?:www\.)?inspectlet\.com/ + to + https://www.inspectlet.com/ + + securecookie + + host + ^(?:.*\.)?inspectlet\.com$ + name + .+ + + target + + + host + inspectlet.com + + + host + *.inspectlet.com + + + + + Inspiration Green + + ruleset + + name + Inspiration Green + rule + + from + ^http://(www\.)?inspirationgreen\.com/ + to + https://$1inspirationgreen.com/ + + securecookie + + host + ^(?:www\.)?inspirationgreen\.com$ + name + .+ + + target + + + host + inspirationgreen.com + + + host + www.inspirationgreen.com + + + + + Instacom Inc.com + + ruleset + + name + Instacom Inc.com + rule + + from + ^http://(www\.)?instacominc\.com/ + to + https://$1instacominc.com/ + + securecookie + + host + ^\.instacominc\.com$ + name + .+ + + target + + + host + instacominc.com + + + host + *.instacominc.com + + + + + Instaemail.net + + ruleset + + name + Instaemail.net + rule + + from + ^http://cdn\.instaemail\.net/ + to + https://s3.amazonaws.com/cdn.instaemail.net/ + + target + + host + cdn.instaemail.net + + + + Instagram (partial) + + ruleset + + name + Instagram (partial) + rule + + + from + ^http://instagr\.am/static/images/ + to + https://s3.amazonaws.com/instagram-static/images/ + + + from + ^http://instagr\.am/(p|static)/ + to + https://instagram.com/$1/ + + + from + ^http://(?:www\.)?instagram\.com/favicon\.ico + to + https://instagram.com/favicon.ico + + + from + ^http://images\.ak\.instagram\.com/ + to + https://a248.e.akamai.net/f/1404/2456/3m/images.ak.instagram.com/ + + + from + ^http://images1\.ak\.instagram\.com/ + to + https://a248.e.akamai.net/f/1402/3840/4m/images1.ak.instagram.com/ + + + from + ^http://(api|badges)\.instagram\.com/ + to + https://$1.instagram.com/ + + + from + ^http://distilleryimage1\.instagram\.com/ + to + https://d1ae3bdqlkjebx.cloudfront.net/ + + + from + ^http://distilleryimage2\.instagram\.com/ + to + https://d2vdurooumowqn.cloudfront.net/ + + + from + ^http://distilleryimage3\.instagram\.com/ + to + https://doa9ijhk46qwf.cloudfront.net/ + + + from + ^http://distilleryimage4\.instagram\.com/ + to + https://d24elmu442q75h.cloudfront.net/ + + + from + ^http://distilleryimage5\.instagram\.com/ + to + https://d1uysd8m4iv3h8.cloudfront.net/ + + + from + ^http://distilleryimage6\.instagram\.com/ + to + https://d2aqnk7wh4vqhb.cloudfront.net/ + + + from + ^http://distilleryimage7\.instagram\.com/ + to + https://d17c70w5wkxq2m.cloudfront.net/ + + + from + ^http://distilleryimage8\.instagram\.com/ + to + https://d2nms3640z5x8l.cloudfront.net/ + + + from + ^http://distilleryimage9\.instagram\.com/ + to + https://d2x3khweh61zds.cloudfront.net/ + + + from + ^http://distilleryimage10\.instagram\.com/ + to + https://d34sa3fuqtuf2w.cloudfront.net/ + + + from + ^http://distilleryimage11\.instagram\.com/ + to + https://d1z5wd2gcq19yd.cloudfront.net/ + + + from + ^http://images\.instagram\.com/ + to + https://d18txuuu339yuz.cloudfront.net/ + + + securecookie + + host + ^badges\.instagram\.com$ + name + .+ + + target + + + host + instagr.am + + + host + instagram.com + + + host + *.instagram.com + + + + + Instant Messaging Freedom + + ruleset + + name + Instant Messaging Freedom + rule + + from + ^http://(www\.)?imfreedom\.org/ + to + https://$1imfreedom.org/ + + securecookie + + host + ^(?:www\.)?imfreedom\.org$ + name + .+ + + target + + + host + imfreedom.org + + + host + www.imfreedom.org + + + + + InstantSSL + + ruleset + + name + InstantSSL + rule + + from + ^http://(secure\.|www\.)?instantssl\.com/ + to + https://$1instantssl.com/ + + target + + + host + instantssl.com + + + host + *.instantssl.com + + + + + Instantbird.org (partial) + + ruleset + + name + Instantbird.org (partial) + rule + + from + ^http://(addons|bugzilla|hg|wiki)\.instantbird\.org/ + to + https://$1.instantbird.org/ + + securecookie + + host + ^bugzilla\.instantbird\.org$ + name + .+ + + target + + host + *.instantbird.org + + + + Instapanel.com + + ruleset + + name + Instapanel.com + rule + + from + ^http://(www\.)?instapanel\.com/ + to + https://$1instapanel.com/ + + target + + + host + instapanel.com + + + host + www.instapanel.com + + + + + Instapaper + + ruleset + + name + Instapaper + rule + + from + ^http://(?:www\.)?instapaper\.com/ + to + https://www.instapaper.com/ + + target + + + host + www.instapaper.com + + + host + instapaper.com + + + + + Instart Logic.com (partial) + + ruleset + + name + Instart Logic.com (partial) + rule + + from + ^http://customer\.instartlogic\.com/ + to + https://customer.instartlogic.com/ + + securecookie + + host + ^\.customer\.instartlogic\.com$ + name + .+ + + target + + host + *.instartlogic.com + + + + Instella Platform (partial) + + ruleset + + name + Instella Platform (partial) + rule + + from + ^http://(?!www)\.instellaplatform\.com/ + to + https://$1.instellaplatform.com/ + + securecookie + + host + ^.+\.instellaplatform\.com$ + name + .+ + + target + + host + *.instellaplatform.com + + + + Institut National des Sciences Appliquées (partial) + + ruleset + + name + Institut National des Sciences Appliquées (partial) + rule + + from + ^http://(?:www\.)?insa-strasbourg\.fr/ + to + https://www.insa-strasbourg.fr/ + + securecookie + + host + ^www\.insa-strasbourg\.fr$ + name + .* + + target + + + host + insa-strasbourg.fr + + + host + www.insa-strasbourg.fr + + + + + Institut für Internet-Sicherheit + + ruleset + + name + Institut für Internet-Sicherheit + rule + + from + ^http://(?:www\.)?it-sicherheit\.de/ + to + https://www.it-sicherheit.de/ + + securecookie + + host + ^www\.it-sicherheit\.de$ + name + .+ + + target + + + host + it-sicherheit.de + + + host + www.it-sicherheit.de + + + + + Institute of Physics (partial) + + ruleset + + name + Institute of Physics (partial) + rule + + + from + ^http://(?:www\.)?iop\.org/ + to + https://www.iop.org/ + + + from + ^http://i(mages|opscience)\.iop\.org/ + to + https://i$1.iop.org/ + + + securecookie + + host + ^\.?iopscience\.iop\.org$ + name + .+ + + target + + + host + iop.org + + + host + *.iop.org + + + + + Instra + + ruleset + + name + Instra + rule + + from + ^http://(www\.)?instra\.com/ + to + https://$1instra.com/ + + securecookie + + host + ^(?:www\.)?instra\.com$ + name + .+ + + target + + + host + instra.com + + + host + www.instra.com + + + + + Int Gov Forum.org (partial) + + ruleset + + name + Int Gov Forum.org (partial) + rule + + from + ^http://(www\.)?intgovforum\.org/(?=cms/(?:components|images|media|modules|templates)/) + to + https://$1intgovforum.org/ + + target + + + host + intgovforum.org + + + host + www.intgovforum.org + + + + + Intego (partial) + + ruleset + + name + Intego (partial) + rule + + + from + ^https?://assets\.intego\.com/ + to + https://d2peew1v0y8u0k.cloudfront.net/ + + + from + ^http://support\.intego\.com/ + to + https://support.intego.com/ + + + securecookie + + host + ^support\.intego\.com$ + name + .+ + + target + + host + *.intego.com + + + + Integral-Marketing.com (partial) + + ruleset + + name + Integral-Marketing.com (partial) + rule + + from + ^http://ads\.integral-marketing\.com/ + to + https://saxp.zedo.com/ + + target + + host + ads.integral-marketing.com + + + + Integrity.pt + + ruleset + + name + Integrity.pt + rule + + from + ^http://(labs\.|www\.)?integrity\.pt/ + to + https://$1integrity.pt/ + + securecookie + + host + ^\.integrity\.pt$ + name + .+ + + target + + + host + integrity.pt + + + host + *.integrity.pt + + + + + Integrity.st + + ruleset + + name + Integrity.st + rule + + from + ^http://(www\.)?integrity\.st/ + to + https://$1integrity.st/ + + target + + + host + integrity.st + + + host + www.integrity.st + + + + + Intel (partial) + + ruleset + + exclusion + + pattern + ^http://newsroom\.intel\.com/+(?!favicon\.ico|(?:\d\.\d\.\d/)?(?:images/|plugins/|themes?/)|people/\w+/avatar/) + + name + Intel (partial) + rule + + + from + ^http://(?:www\.)?intel\.com/(?=content/|etc/|favicon\.ico|newsroom/assets/(?!bio/)|sites/) + to + https://www-ssl.intel.com/ + + + from + ^http://(blogs|chi1|(?:embedded\.)?communities|prd1idz\.cps|downloadcenter|educate|engage|freepress|jira\.hppd|newsroom|our|scoop|software|(?:origin|secure)-software|sfederation|ssl|sfederation|staging-(?:blogs|our|scoop)|thehub|www-ssl)\.intel\.com/ + to + https://$1.intel.com/ + + + from + ^https?://download-software\.intel\.com/ + to + https://a248.e.akamai.net/f/978/142/6m/download-software.intel.com/ + + + from + ^http://embedded\.edc\.intel\.com/+(?:$|\?.*) + to + https://embedded.communities.intel.com/ + + + from + ^http://(?:secure-)?inside\.intel\.com/ + to + https://secure-inside.intel.com/ + + + securecookie + + host + .+\.intel\.com$ + name + .+ + + target + + + host + intel.com + + + host + *.intel.com + + + + + Intel Fellowships.com + + ruleset + + name + Intel Fellowships.com + rule + + from + ^http://(www\.)?intelfellowships\.com/ + to + https://$1intelfellowships.com/ + + target + + + host + intelfellowships.com + + + host + www.intelfellowships.com + + + + + Intel.co.jp (partial) + + ruleset + + name + Intel.co.jp (partial) + rule + + from + ^http://newsroom\.intel\.co\.jp/ + to + https://newsroom.intel.co.jp/ + + securecookie + + host + ^newsroom\.intel\.co\.jp$ + name + .+ + + target + + host + newsroom.intel.co.jp + + + + Intel.com (false MCB) + + ruleset + + name + Intel.com (false MCB) + platform + mixedcontent + rule + + from + ^http://newsroom\.intel\.com/ + to + https://newsroom.intel.com/ + + securecookie + + host + ^newsroom\.intel\.com$ + name + .+ + + target + + host + newsroom.intel.com + + + + Intelliworks Chat.com + + ruleset + + name + Intelliworks Chat.com + rule + + + from + ^http://intelliworkschat\.com/.* + to + https://www.intelliworkschat.com/ + + + from + ^http://www\.intelliworkschat\.com/ + to + https://www.intelliworkschat.com/ + + + from + ^https?://(?:www\.)?poll\.intelliworkschat\.com/ + to + https://poll.intelliworkschat.com/ + + + target + + + host + intelliworkschat.com + + + host + *.intelliworkschat.com + + + + + Intelrad.com + + ruleset + + name + Intelrad.com + rule + + from + ^http://(www\.)?intelrad\.com/ + to + https://$1intelrad.com/ + + securecookie + + host + ^\.intelrad\.com$ + name + .+ + + target + + + host + intelrad.com + + + host + *.intelrad.com + + + + + IntensityLab.com + + ruleset + + name + IntensityLab.com + rule + + from + ^http://(www\.)?intensitylab\.com/ + to + https://$1intensitylab.com/ + + target + + + host + intensitylab.com + + + host + www.intensitylab.com + + + + + Intent Media (partial) + + ruleset + + name + Intent Media (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?(bikebiz|develop-online|intentmedia|mcvuk|mobile-ent|pcr-online)\.(biz|com|co\.uk|net)/ + to + https://www.$2.$3/ + + target + + + host + bikebiz.com + + + host + www.bikebiz.com + + + host + develop-online.net + + + host + www.develop-online.net + + + host + intentmedia.co.uk + + + host + www.intentmedia.co.uk + + + host + mcvuk.com + + + host + www.mcvuk.com + + + host + mobile-ent.biz + + + host + www.mobile-ent.biz + + + host + pcr-online.biz + + + host + www.pcr-online.biz + + + + + Inter.net (partial) + + ruleset + + name + Inter.net (partial) + platform + mixedcontent + rule + + + from + ^http://((?:www\.)?br|hosting\.de)\.inter\.net/ + to + https://$1.inter.net/ + + + from + ^https?://central\.br\.inter\.net/ + to + https://www.br.inter.net/central-assinante + + + securecookie + + host + ^www\.br\.inter\.net$ + name + .* + + target + + + host + br.inter.net + + + host + *.br.inter.net + + + host + hosting.de.inter.net + + + + + InterContinental Hotels Group + + ruleset + + exclusion + + pattern + ^http://(?:contact|qa\.contact|development)\.ihg\.com/ + + name + InterContinental Hotels Group + rule + + + from + ^https?://ihg\.com/ + to + https://www.ihg.com/ + + + from + ^http://([^/:@]+)?\.ihg\.com/ + to + https://$1.ihg.com/ + + + from + ^https?://ihgagent\.com/ + to + https://www.ihgagent.com/ + + + from + ^http://([^/:@]+)?\.ihgagent\.com/ + to + https://$1.ihgagent.com/ + + + securecookie + + host + ^(?:.*\.)?ihg\.com$ + name + .+ + + target + + + host + ihg.com + + + host + *.ihg.com + + + host + ihgagent.com + + + host + www.ihgagent.com + + + + + InterNetworX + + ruleset + + name + InterNetworX + rule + + + from + ^http://(?:www\.)?inwx\.(at|ch|de|es)/ + to + https://www.inwx.$1/ + + + from + ^http://(?:www\.)?inwx\.(?:com|net)/ + to + https://www.inwx.com/ + + + securecookie + + host + ^(.*\.)?inwx\.(?:at|ch|com|de|es|net)$ + name + .* + + target + + + host + *.inwx.at + + + host + inwx.at + + + host + *.inwx.ch + + + host + inwx.ch + + + host + *.inwx.com + + + host + inwx.com + + + host + *.inwx.de + + + host + inwx.de + + + host + *.inwx.es + + + host + inwx.es + + + host + *.inwx.net + + + host + inwx.net + + + + + InterQ.or.jp (partial) + + ruleset + + name + InterQ.or.jp (partial) + rule + + from + ^http://secure\.interq\.or\.jp/ + to + https://secure.interq.or.jp/ + + target + + host + secure.interq.or.jp + + + + InterWorx (partial) + + ruleset + + name + InterWorx (partial) + rule + + from + ^http://((my|support|www)\.)?interworx\.com/ + to + https://$1interworx.com/ + + securecookie + + host + ^(my|support)?\.interworx\.com$ + name + .* + + target + + + host + interworx.com + + + host + *.interworx.com + + + + + Interactive Advertising Bureau + + ruleset + + name + Interactive Advertising Bureau + platform + mixedcontent + rule + + from + ^http://(www\.)?iab\.net/ + to + https://$1iab.net/ + + securecookie + + host + ^(?:www)?\.iab\.net$ + name + .* + + target + + + host + iab.net + + + host + *.iab.net + + + + + Interactive Data Corporation (partial) + + ruleset + + name + Interactive Data Corporation (partial) + rule + + + from + ^http://chartbigchart\.gtm\.idmanagedsolutions\.com/ + to + https://chartbigchart.gtm.idmanagedsolutions.com/ + + + from + ^http://(fundrun|pool|services|vantage)\.interactivedata\.com/ + to + https://$1.interactivedata.com/ + + + from + ^https?://go\.interactivedata\.com/(cs|image|r)s/ + to + https://na-o.marketo.com/$1s/ + + + securecookie + + host + ^(?:services|vantage)\.interactivedata\.com$ + name + .+ + + target + + + host + chartbigchart.gtm.idmanagedsolutions.com + + + host + *.interactivedata.com + + + + + Interactive Marketing Solutions + + ruleset + + name + Interactive Marketing Solutions + rule + + from + ^http://(www\.)?ims-dm\.com/ + to + https://$1ims-dm.com/ + + target + + + host + ims-dm.com + + + host + www.ims-dm.com + + + + + Interactive Media Awards + + ruleset + + name + Interactive Media Awards + rule + + from + ^http://(www\.)?interactivemediaawards\.com/ + to + https://www.interactivemediaawards.com/ + + securecookie + + host + ^www\.interactivemediaawards\.com$ + name + .* + + target + + + host + interactivemediaawards.com + + + host + www.interactivemediaawards.com + + + + + Interactive Media in Retail Group (partial) + + ruleset + + name + Interactive Media in Retail Group (partial) + rule + + from + ^http://isisaccreditation\.imrg\.org/ + to + https://isisaccreditation.imrg.org/ + + securecookie + + host + ^isisaccreditation\.imrg\.org$ + name + .* + + target + + host + isisaccreditation.imrg.org + + + + Interactive Online + + ruleset + + name + Interactive Online + rule + + + from + ^http://(?:www\.)?interactiveonline\.com/ + to + https://interactiveonline.com/ + + + from + ^http://cpanel(8|9|1[012])\.primary001\.net/ + to + https://cpanel$1.primary001.net/ + + + securecookie + + host + ^interactiveonline\.com$ + name + .+ + + target + + + host + interactiveonline.com + + + host + www.interactiveonline.com + + + host + *.primary001.net + + + + + Interc.pt + + ruleset + + name + Interc.pt + rule + + from + ^http://interc\.pt/ + to + https://bit.ly/ + + target + + host + interc.pt + + + + Interclick + + ruleset + + exclusion + + + pattern + ^http://(blog|ir|www)\. + + + pattern + ^http://portal.interclick.com/$ + + + name + Interclick + rule + + from + ^http://(\w+)\.interclick\.com/ + to + https://$1.interclick.com/ + + securecookie + + host + ^.*\.interclick\.com$ + name + .* + + target + + host + *.interclick.com + + + + Intercom CDN.com + + ruleset + + name + Intercom CDN.com + rule + + from + ^http://(js|static)\.intercomcdn\.com/ + to + https://$1.intercomcdn.com/ + + securecookie + + host + ^\.intercomcdn\.com$ + name + .+ + + target + + host + *.intercomcdn.com + + + + Intercom.io + + ruleset + + name + Intercom.io + rule + + from + ^http://((?:api|widget|www)\.)?intercom\.io/ + to + https://$1intercom.io/ + + securecookie + + host + ^(?:api\.|www\.)?intercom\.io$ + name + .+ + + target + + + host + intercom.io + + + host + *.intercom.io + + + + + Intergi (partial) + + ruleset + + name + Intergi (partial) + rule + + from + ^http://a(ds|pp)\.intergi\.com/ + to + https://a$1.intergi.com/ + + securecookie + + + host + ^\.intergi\.com$ + name + ^CfP$ + + + host + ^app\.intergi\.com$ + name + .+ + + + target + + host + *.intergi.com + + + + Interhyp.de + + ruleset + + name + Interhyp.de + rule + + from + ^http://(?:www\.)?interhyp\.de/ + to + https://www.interhyp.de/ + + target + + + host + interhyp.de + + + host + www.interhyp.de + + + + + Interkassa + + ruleset + + name + Interkassa + rule + + from + ^http://(shop\.|www\.)?interkassa\.com/ + to + https://$1interkassa.com/ + + securecookie + + host + ^(?:.+\.)?interkassa\.com$ + name + .+ + + target + + + host + interkassa.com + + + host + *.interkassa.com + + + + + Interlan.se + + ruleset + + name + Interlan.se + rule + + from + ^http://(www2?\.)?interlan\.se/ + to + https://$1interlan.se/ + + target + + + host + interlan.se + + + host + *.interlan.se + + + + + Intermundo Media.com + + ruleset + + name + Intermundo Media.com + rule + + from + ^http://(media\.|www\.)?intermundomedia\.com/ + to + https://$1intermundomedia.com/ + + target + + + host + intermundomedia.com + + + host + *.intermundomedia.com + + + + + Internap Network Services (partial) + + ruleset + + name + Internap Network Services (partial) + rule + + + from + ^http://http\.cdnlayer\.com/ + to + https://sslcdce.internapcdn.net/ + + + from + ^http://www\.internap\.co\.jp/ + to + https://www.internap.co.jp/ + + + from + ^http://(customers\.|www\.)?internap\.com/ + to + https://$1internap.com/ + + + from + ^http://promo\.internap\.com/ImgHost/ + to + https://app.manticoretechnolgy.com/ImgHost/ + + + from + ^http://sslcdce\.internapcdn\.net/ + to + https://sslcdce.internapcdn.net/ + + + securecookie + + host + ^www\.internap\.com$ + name + .+ + + target + + + host + http.cdnlayer.com + + + host + www.internap.co.jp + + + host + internap.com + + + host + *.internap.com + + + host + sslcdce.internapcdn.net + + + + + International Association for Cryptologic Research + + ruleset + + name + International Association for Cryptologic Research + rule + + + from + ^http://(?:www\.)?iacr\.org/ + to + https://www.iacr.org/ + + + from + ^http://([^/:@\.]+)\.iacr\.org/ + to + https://$1.iacr.org/ + + + securecookie + + host + ^eprint\.iacr\.org$ + name + .+ + + target + + + host + iacr.org + + + host + *.iacr.org + + + + + International Association of Amusement Parks and Attractions + + ruleset + + name + International Association of Amusement Parks and Attractions + rule + + from + ^http://(?:www\.)?iaapa\.org/ + to + https://www.iaapa.org/ + + securecookie + + host + ^(.*\.)?iaapa\.org$ + name + .* + + target + + + host + iaapa.org + + + host + *.iaapa.org + + + + + International Association of Privacy Professionals + + ruleset + + name + International Association of Privacy Professionals + rule + + from + ^http://(www\.)?privacyassociation\.org/ + to + https://$1privacyassociation.org/ + + securecookie + + host + ^(?:www\.)?privacyassociation\.org$ + name + .+ + + target + + + host + privacyassociation.org + + + host + www.privacyassociation.org + + + + + International Business Times (partial) + + ruleset + + name + International Business Times (partial) + rule + + + from + ^https?://markets\.ibtimes\.com/$ + to + https://studio-5.financialcontent.com/ibtimes + + + from + ^https?://markets\.ibtimes\.com/ + to + https://studio-5.financialcontent.com/ + + + from + ^http://ssl\.ibtimes\.com/ + to + https://ssl.ibtimes.com/ + + + target + + host + *.ibtimes.com + + + + International Components for Unicode (partial) + + ruleset + + exclusion + + pattern + ^http://((apps|bugs|demo|source|www)\.)?icu-project\.org/$ + + name + International Components for Unicode (partial) + rule + + from + ^https?://(?:(?:apps|bugs|demo|source|ssl|www)\.)?icu-project\.org/ + to + https://ssl.icu-project.org/ + + securecookie + + host + ^ssl\.icu-project\.org$ + name + .* + + target + + + host + icu-project.org + + + host + *.icu-project.org + + + + + International Consortium of Investigative Journalists + + ruleset + + name + International Consortium of Investigative Journalists + rule + + + from + ^http://(www\.)?icij\.org/ + to + https://$1icij.org/ + + + from + ^http://cloudfront-\d\.icij\.org/ + to + https://d2i83gre49b1s9.cloudfront.net/ + + + securecookie + + host + ^\.icij\.org$ + name + .+ + + target + + + host + icij.org + + + host + *.icij.org + + + + + International Energy Agency + + ruleset + + name + International Energy Agency + rule + + from + ^http://(?:www\.)?iea\.org/ + to + https://www.iea.org/ + + target + + + host + iea.org + + + host + www.iea.org + + + + + International Finance Corporation (partial) + + ruleset + + name + International Finance Corporation (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?gefpmis\.org/ + to + https://$1gefpmis.org/ + + + from + ^http://smartlessons\.ifc\.org/ + to + https://smartlessons.ifc.org/ + + + from + ^http://(?:www\.)?miga\.org/ + to + https://www.miga.org/ + + + from + ^http://thegef\.org/ + to + https://thegef.org/ + + + from + ^http://(www\.)?thegef\.org/gef/(misc/|sites/|user)/ + to + https://$1thegef.org/gef/$2 + + + from + ^http://(?:www\.)?wbginvestmentclimate\.org/ + to + https://www.wbginvestmentclimate.org/ + + + from + ^http://openknowledge\.worldbank\.org/ + to + https://openknowledge.worldbank.org/ + + + securecookie + + + host + ^www\.(gefpmis|miga|wbginvestmentclimate)\.org$ + name + .* + + + host + ^smartlessons\.ifc\.org$ + name + .* + + + host + ^openknowledge\.worldbank\.org$ + name + .* + + + target + + + host + gefpmis.org + + + host + www.gefpmis.org + + + host + smartlessons.ifc.org + + + host + miga.org + + + host + www.miga.org + + + host + thegef.org + + + host + www.thegef.org + + + host + wbginvestmentclimate.org + + + host + www.wbginvestmentclimate.org + + + host + openknowledge.worldbank.org + + + + + International Financial Cryptography Association (partial) + + ruleset + + name + International Financial Cryptography Association (partial) + rule + + from + ^http://(www\.)?ifca\.ai/ + to + https://$1ifca.ai/ + + target + + + host + ifca.ai + + + host + www.ifca.ai + + + + + International Payments.co.uk + + ruleset + + name + International Payments.co.uk + rule + + from + ^http://(?:www\.)?internationalpayments\.co\.uk/ + to + https://www.internationalpayments.co.uk/ + + securecookie + + host + ^www\.internationalpayments\.co\.uk$ + name + .+ + + target + + + host + internationalpayments.co.uk + + + host + www.internationalpayments.co.uk + + + + + International SOS + + ruleset + + name + International SOS + rule + + + from + ^https?://internationalsos\.com/ + to + https://www.internationalsos.com/ + + + from + ^http://([^/:@]+)?\.internationalsos\.com/ + to + https://$1.internationalsos.com/ + + + securecookie + + host + ^(.*\.)?internationalsos\.com$ + name + .+ + + target + + + host + internationalsos.com + + + host + *.internationalsos.com + + + + + International School of the Sacred Heart + + ruleset + + name + International School of the Sacred Heart + rule + + from + ^http://(www\.)?issh\.ac\.jp/ + to + https://$1issh.ac.jp/ + + securecookie + + host + ^(?:www)?\.issh.ac.jp$ + name + .+ + + target + + + host + issh.ac.jp + + + host + *.issh.ac.jp + + + + + International Supercomputing Conference + + ruleset + + name + International Supercomputing Conference + rule + + from + ^http://(www\.)?isc-events\.com/ + to + https://$1isc-events.com/ + + securecookie + + host + ^(www\.)?isc-events\.com$ + name + .* + + target + + + host + isc-events.com + + + host + www.isc-events.com + + + + + InternationalMan + + ruleset + + name + InternationalMan + rule + + from + ^http://(www\.)?internationalman\.com/ + to + https://$1internationalman.com/ + + securecookie + + host + ^\.www\.internationalman\.com$ + name + .+ + + target + + + host + internationalman.com + + + host + *.internationalman.com + + + + + Internet Archive + + ruleset + + exclusion + + pattern + ^http://(?:graphite|pgdp01|s3)\.us\.archive\.org/ + + name + Internet Archive + rule + + + from + ^http://(\w+\.us\.|www\.)?archive\.org/ + to + https://$1archive.org/ + + + from + ^http://blog\.openlibrary\.archive\.org/ + to + https://blog.openlibrary.org/ + + + securecookie + + host + ^\.archive\.org$ + name + .+ + + target + + + host + archive.org + + + host + *.archive.org + + + + + Internet Brands + + ruleset + + name + Internet Brands + rule + + + from + ^http://pxlssl\.ibpxl\.com/ + to + https://pxlssl.ibpxl.com/ + + + from + ^https?://(?:cdc|cdcssl|mms).ibsrv.net/ + to + https://cdcssl.ibsrv.net/modelmayhem/ + + + from + ^http://static(?:ssl)?\.ibsrv\.net/ + to + https://staticssl.ibsrv.net/ + + + from + ^https?://(?:www\.)?internetbrands\.com/mt-static/ + to + https://cdcssl.ibsrv.net/ibcom/mt-static/ + + + target + + + host + pxlssl.ibpxl.com + + + host + *.ibsrv.net + + + host + internetbrands.com + + + host + www.internetbrands.com + + + + + Internet Defense League + + ruleset + + name + Internet Defense League + rule + + from + ^http://(members\.|www\.)?internetdefenseleague\.org/ + to + https://$1internetdefenseleague.org/ + + securecookie + + host + ^(?:members)?\.internetdefenseleague\.org$ + name + .+ + + target + + + host + internetdefenseleague.org + + + host + *.internetdefenseleague.org + + + + + Internet Society (partial) + + ruleset + + exclusion + + pattern + ^http://www\.internetsociety\.org/+(?!$|\?|favicon\.ico|(?:form/donation|who-we-are/contact-us)(?:$|[?/])|modules/|sites/) + + name + Internet Society (partial) + rule + + + from + ^http://(connect\.|www\.)?internetsociety\.org/ + to + https://$1internetsociety.org/ + + + from + ^http://((?:ws\.edu|portal|www)\.)isoc\.org/ + to + https://$1isoc.org/ + + + securecookie + + + host + ^ws\.edu\.isoc\.org$ + name + ^PHPSESSID$ + + + host + ^connect\.internetsociety\.org$ + name + .+ + + + host + ^(?:ws\.edu|portal)\.isoc\.org$ + name + .+ + + + target + + + host + internetsociety.org + + + host + *.internetsociety.org + + + host + isoc.org + + + host + *.isoc.org + + + + + Internet Staff.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?internetstaff\.com/+(?!blog(?!/wp-content/|/wp-includes/)) + + name + Internet Staff.com (partial) + rule + + from + ^http://(www\.)?internetstaff\.com/ + to + https://$1internetstaff.com/ + + target + + + host + internetstaff.com + + + host + www.internetstaff.com + + + + + Internet Video Archive.com (partial) + + ruleset + + name + Internet Video Archive.com (partial) + rule + + from + ^http://content\.internetvideoarchive\.com/ + to + https://d2nebe8lbbiml.cloudfront.net/ + + target + + host + content.internetvideoarchive.com + + + + Internet Week.jp + + ruleset + + name + Internet Week.jp + rule + + from + ^http://(?:www\.)?internetweek\.jp/ + to + https://internetweek.jp/ + + target + + + host + internetweek.jp + + + host + www.internetweek.jp + + + + + Internet.bs + + ruleset + + name + Internet.bs + rule + + + from + ^http://(?:(chat\.)|www\.)?internet\.bs/ + to + https://$1internet.bs/ + + + from + ^http://(?:www\.)?internetbs\.net/ + to + https://internetbs.net/ + + + securecookie + + host + ^\.internetbs\.net$ + name + .+ + + target + + + host + internet.bs + + + host + *.internet.bs + + + host + internetbs.net + + + host + *.internetbs.net + + + + + Internet.org.nz + + ruleset + + name + Internet.org.nz + rule + + from + ^http://(static\.|www\.)?internet\.org\.nz/ + to + https://$1internet.org.nz/ + + securecookie + + host + ^\.internet\.org\.nz$ + name + .+ + + target + + + host + internet.org.nz + + + host + *.internet.org.nz + + + + + Internet2 (partial) + + ruleset + + name + Internet2 (partial) + rule + + + from + ^http://(?:www\.)?internet2\.edu/ + to + https://www.internet2.edu/ + + + from + ^http://(lists|mail|meetings|service1|spaces|wiki)\.internet2\.edu/ + to + https://$1.internet2.edu/ + + + from + ^http://middleware\.internet2\.edu/(?:\?.*)?$ + to + https://www.internet2.edu/middleware/index.cfm + + + securecookie + + host + ^(?:\.lists|service1|spaces|wiki|www)\.internet2\.edu$ + name + .+ + + target + + + host + internet2.edu + + + host + *.internet2.edu + + + + + Internews + + ruleset + + name + Internews + rule + + from + ^http://(www\.)?internews\.org/ + to + https://www.internews.org/ + + target + + + host + www.internews.org + + + host + internews.org + + + + + Intersango.com + + ruleset + + name + Intersango.com + rule + + from + ^http://(www\.)?intersango\.com/ + to + https://$1intersango.com/ + + securecookie + + host + ^\.intersango\.com$ + name + .+ + + target + + + host + intersango.com + + + host + *.intersango.com + + + + + Intevation (partial) + + ruleset + + name + Intevation (partial) + rule + + + from + ^http://(www\.)?intevation\.org/(\?.*)?$ + to + https://$1intevation.de/index.en.html$2 + + + from + ^http://(www\.)?intevation\.(?:de|org)/ + to + https://$1intevation.de/ + + + target + + + host + intevation.* + + + host + www.intevation.* + + + + + Intevation GmbH (partial) + + ruleset + + name + Intevation GmbH (partial) + rule + + from + ^http://((ftp|ssl|www)\.)?intevation\.(de|net|org)/ + to + https://$1intevation.de/ + + securecookie + + host + ^(ssl|www)\.intevation\.de$ + name + .+ + + target + + + host + intevation.de + + + host + ftp.intevation.de + + + host + ssl.intevation.de + + + host + www.intevation.de + + + host + intevation.net + + + host + ftp.intevation.net + + + host + ssl.intevation.net + + + host + www.intevation.net + + + host + intevation.org + + + host + ftp.intevation.org + + + host + ssl.intevation.org + + + host + www.intevation.org + + + + + Intl Cannagraphic Magazine + + ruleset + + name + Intl Cannagraphic Magazine + rule + + + from + ^http://(?:www\.)?icmag\.com/ + to + https://www.icmag.com/ + + + from + ^https://icmag\.com/ + to + https://www.icmag.com/ + + + from + ^http://(?:www\.)?icmag\.com/ic/ + to + https://www.icmag.com/ic/ + + + from + ^https://icmag\.com/ic/ + to + https://www.icmag.com/ic/ + + + target + + + host + www.icmag.* + + + host + icmag.* + + + + + Intrepid Museum + + ruleset + + name + Intrepid Museum + rule + + from + ^http://(www\.)?intrepidmuseum\.org/ + to + https://$1intrepidmuseum.org/ + + target + + + host + intrepidmuseum.org + + + host + www.intrepidmuseum.org + + + + + Intrepidus Group.com + + ruleset + + name + Intrepidus Group.com + rule + + from + ^http://(www\.)?intrepidusgroup\.com/ + to + https://$1intrepidusgroup.com/ + + target + + + host + intrepidusgroup.com + + + host + www.intrepidusgroup.com + + + + + Introversion Software (partial) + + ruleset + + name + Introversion Software (partial) + rule + + from + ^http://(www\.)?introversion\.co\.uk/(blog/|darwinia/(?:purchase(?:$|/)|sharedresources/)) + to + https://$1introversion.co.uk/$2 + + target + + + host + introversion.co.uk + + + host + www.introversion.co.uk + + + + + Introweb Kft. + + ruleset + + name + Introweb Kft. + rule + + from + ^http://([^@:/]*)\.introweb\.hu/ + to + https://$1.introweb.hu/ + + securecookie + + host + ^www\.introweb\.hu$ + name + .+ + + target + + host + *.introweb.hu + + + + Intuit (partial) + + ruleset + + name + Intuit (partial) + rule + + + from + ^http://quicken\.intuit\.com/(\?.*)?$ + to + https://quicken.intuit.com/index.jsp$1 + + + from + ^http://((?:about|academy|(?:blog\.)?accountants|accounts|(?:css\.|images\.)?appcenter|business|community|developer|enterprisesuite|(?:www\.)?fi|healthcards?|healthcare|http-download|ifs|insurance|intuitmarket|ipn|quickbooks\.lc|qbosg\.lcp|learn|marketplace|paymentnetwork|payments|payroll|paytrust|pointofsale|privacy|proadvisor|psswprod3lb|support\.quickbooks\.qdc|quickbase|quickbase-community-e2e|(?:support\.)?quickbooks|quickbooksonline|quicken|sci|security|smallbusiness|ttlc|ttlcprd|(?:images\.)?turbotax|turbotaxcpaselect|websites|www)\.)?intuit\.com/ + to + https://$1intuit.com/ + + + from + ^https?://a\d*\.quickbase\.intuit\.com/ + to + https://quickbase.intuit.com/ + + + from + ^https?://media\.turbotaxcpaselect\.intuit\.com/ + to + https://s3.amazonaws.com/media.turbotaxcpaselect.intuit.com/ + + + from + ^http://(\w+)\.intuitcdn\.net/ + to + https://$1.intuitcdn.net/ + + + from + ^http://(payments-s3|s[123])\.intuitstatic\.com/ + to + https://$1.intuitstatic.com/ + + + from + ^http://billscenter\.paytrust\.com/ + to + https://billscenter.paytrust.com/ + + + from + ^https?://(?:www\.)?quickbase\.com/ + to + https://www.quickbase.com/ + + + from + ^http://intuitcorp\.quickbase\.com/ + to + https://intuitcorp.quickbase.com/ + + + from + ^http://(www\.)?turbotax\.com/ + to + https://$1turbotax.com/ + + + securecookie + + + host + ^.+\.intuit\.com$ + name + .+ + + + host + ^billscenter\.paytrust\.com$ + name + .+ + + + target + + + host + *.intuit.com + + + host + *.intuitcdn.net + + + host + *.intuitstatic.com + + + host + billscenter.paytrust.com + + + host + quickbase.com + + + host + *.quickbase.com + + + host + turbotax.com + + + host + *.turbotax.com + + + + + Intuit Labs.com + + ruleset + + name + Intuit Labs.com + rule + + from + ^http://(www\.)?intuitlabs\.com/ + to + https://$1intuitlabs.com/ + + securecookie + + host + ^\.intuitlabs\.com$ + name + .+ + + target + + + host + intuitlabs.com + + + host + *.intuitlabs.com + + + + + Intuitiv (partial) + + ruleset + + exclusion + + pattern + ^http://www\.csmres\.co\.uk/ + + name + Intuitiv (partial) + rule + + from + ^http://(\w+)\.csmres\.co\.uk/ + to + https://$1.csmres.co.uk/ + + target + + host + *.csmres.co.uk + + + + Intuitive Password.com (partial) + + ruleset + + name + Intuitive Password.com (partial) + rule + + from + ^http://(?:www\.)?intuitivepassword\.com/ + to + https://www.intuitivepassword.com/ + + securecookie + + host + ^(?:www)?\.intuitivepassword\.com$ + name + .+ + + target + + + host + intuitivepassword.com + + + host + *.intuitivepassword.com + + + + + Inuits.eu + + ruleset + + name + Inuits.eu + rule + + from + ^http://(www\.)?inuits\.eu/ + to + https://$1inuits.eu/ + + target + + + host + inuits.eu + + + host + www.inuits.eu + + + + + Invasion.com (false MCB) + + ruleset + + name + Invasion.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?invasion\.com/ + to + https://$1invasion.com/ + + securecookie + + host + ^\.invasion\.com$ + name + .+ + + target + + + host + invasion.com + + + host + *.invasion.com + + + + + Invasion.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?invasion\.com/(?!favicon\.ico|wp-content/|wp-includes/) + + name + Invasion.com (partial) + rule + + from + ^http://(book\.|www\.)?invasion\.com/ + to + https://$1invasion.com/ + + securecookie + + host + ^\.?book\.invasion\.com$ + name + .+ + + target + + + host + invasion.com + + + host + book.invasion.com + + + host + *.book.invasion.com + + + host + www.invasion.com + + + + + InvenSense.com (partial) + + ruleset + + name + InvenSense.com (partial) + rule + + from + ^http://store\.invensense\.com/ + to + https://store.invensense.com/ + + securecookie + + host + ^store\.invensense\.com$ + name + .+ + + target + + host + store.invensense.com + + + + Invenio-software.org + + ruleset + + name + Invenio-software.org + rule + + from + ^http://(www\.)?invenio-software\.org/ + to + https://$1invenio-software.org/ + + securecookie + + host + ^invenio-software\.org$ + name + .+ + + target + + + host + invenio-software.org + + + host + www.invenio-software.org + + + + + InventHelp + + ruleset + + name + InventHelp + rule + + from + ^http://(www\.)?inventhelp\.com/ + to + https://$1inventhelp.com/ + + target + + + host + inventhelp.com + + + host + www.inventhelp.com + + + + + Inverse + + ruleset + + name + Inverse + rule + + from + ^https?://(?:www\.)?inverse\.ca/ + to + https://inverse.ca/ + + securecookie + + host + ^inverse\.ca$ + name + .* + + target + + + host + inverse.ca + + + host + www.inverse.ca + + + + + InvestSMART (partial) + + ruleset + + name + InvestSMART (partial) + platform + mixedcontent + rule + + + from + ^https?://investsmart\.com\.au/ + to + https://www.investsmart.com.au/ + + + from + ^http://www\.investsmart\.com\.au/(banner_ads|images|membership|share_trading|style)/ + to + https://www.investsmart.com.au/$1/ + + + target + + + host + investsmart.com.au + + + host + www.investsmart.com.au + + + + + Investing Channel (partial) + + ruleset + + name + Investing Channel (partial) + rule + + + from + ^http://ads\.investingchannel\.com/ + to + https://ads.investingchannel.com/ + + + from + ^https?://cdn\.investingchannel\.com/ + to + https://s3.amazonaws.com/cdn.investingchannel.com/ + + + target + + host + *.investingchannel.com + + + + Investis.com (partial) + + ruleset + + name + Investis.com (partial) + rule + + from + ^http://(?:miranda\.hemscott|hsprod\.investis)\.com/ + to + https://hsprod.investis.com/ + + target + + + host + miranda.hemscott.com + + + host + hsprod.investis.com + + + + + Investor.gov + + ruleset + + name + Investor.gov + rule + + from + ^http://(www\.)?investor\.gov/ + to + https://$1investor.gov/ + + target + + + host + investor.gov + + + host + www.investor.gov + + + + + Investors in People + + ruleset + + name + Investors in People + rule + + from + ^http://www\.investorsinpeople\.co\.uk/ + to + https://www.investorsinpeople.co.uk/ + + securecookie + + host + ^www\.investorsinpeople\.co\.uk$ + name + .+ + + target + + host + www.investorsinpeople.co.uk + + + + Investors.com (partial) + + ruleset + + exclusion + + pattern + http://news\.investors\.com/(?![\w-]+/|ClientScriptCombiner\.aspx|favicon\.ico|(?:Script|Web)Resource\.axd) + + name + Investors.com (partial) + rule + + + from + ^http://(?:www1\.ibdcd|news\.investors)\.com/ + to + https://www.investors.com/ + + + from + ^http://(www\.)?investors\.com/ + to + https://$1investors.com/ + + + securecookie + + host + ^(?:www\.)?investors\.com$ + name + .+ + + target + + + host + www1.ibdcd.com + + + host + investors.com + + + host + www.investors.com + + + + + Invincea.com (partial) + + ruleset + + name + Invincea.com (partial) + rule + + + from + ^http://(www\.)?invincea\.com/(?=support(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1invincea.com/ + + + from + ^http://info\.invincea\.com/(?=css/|images/|js/|rs/) + to + https://na-sjn.marketo.com/ + + + target + + + host + invincea.com + + + host + *.invincea.com + + + + + Invision Power Services (partial) + + ruleset + + name + Invision Power Services (partial) + rule + + from + ^http://(?:www\.)?invisionpower\.com/ + to + https://www.invisionpower.com/ + + securecookie + + host + ^\.invisionpower\.com$ + name + .* + + target + + + host + invisionpower.com + + + host + *.invisionpower.com + + + + + Invite Media (partial) + + ruleset + + name + Invite Media (partial) + rule + + + from + ^http://(?:www\.)?invitemedia\.com/([\w-]+\.(?:css|png)) + to + https://www.invitemedia.com/$1 + + + from + ^http://bub\.px\.invitemedia\.com/ + to + https://pixel.invitemedia.com/ + + + from + ^http://(?:dashboard(?:-cdn)?|g-pixel|pixel|segment-pixel)\.invitemedia\.com/ + to + https://$1.invitemedia.com/ + + + securecookie + + host + ^\.invitemedia\.com$ + name + ^(?:segments_p1|uid)$ + + target + + + host + invitemedia.com + + + host + *.invitemedia.com + + + + + Invitel (partial) + + ruleset + + name + Invitel (partial) + rule + + from + ^http://mail\.invitel\.hu/ + to + https://mail.invitel.hu/ + + securecookie + + host + ^(mail\.invitel|webmail\.eol)\.hu$ + name + .+ + + target + + + host + mail.invitel.hu + + + host + webmail.eol.hu + + + + + Invoca.com (partial) + + ruleset + + name + Invoca.com (partial) + rule + + from + ^http://(www\.)?invoca\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1invoca.com/ + + target + + + host + invoca.com + + + host + www.invoca.com + + + + + Invoca.net + + ruleset + + name + Invoca.net + rule + + from + ^http://(www2?\.)?invoca\.net/ + to + https://$1invoca.net/ + + securecookie + + host + ^\.invoca\.net$ + name + .+ + + target + + + host + invoca.net + + + host + *.invoca.net + + + + + Invodo (partial) + + ruleset + + name + Invodo (partial) + rule + + + from + ^http://(www\.)?invodo\.com/register/ + to + https://$1invodo.com/register/ + + + from + ^http://e\.invodo\.com/ + to + https://e.invodo.com/ + + + from + ^http://www2\.invodo\.com/l/ + to + https://go.pardot.com/l/ + + + target + + + host + invodo.com + + + host + *.invodo.com + + + + + Invoice Ocean + + ruleset + + name + Invoice Ocean + rule + + from + ^http://(www\.)?invoiceocean\.com/ + to + https://$1invoiceocean.com/ + + securecookie + + host + ^\.invoiceocean\.com$ + name + .+ + + target + + + host + invoiceocean.com + + + host + *.invoiceocean.com + + + + + Involver + + ruleset + + name + Involver + rule + + + from + ^http://((?:amp|docs|embednr|facebook|status|www)\.)?involver\.com/ + to + https://$1involver.com/ + + + from + ^http://support\.involver\.com/(assets|generated|images|registration|system|widgets)/ + to + https://involver.zendesk.com/$1/ + + + securecookie + + host + ^.*\.involver\.com$ + name + .* + + target + + + host + involver.com + + + host + *.involver.com + + + + + IoMTT.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:shop\.|www\.)?iomtt\.com/(?!~/|(?:Basket|My-Account)(?:$|[?/])|css/|favicon\.ico|images/|js/) + + name + IoMTT.com (partial) + rule + + + from + ^http://(?:www\.)?iomtt\.com/ + to + https://www.iomtt.com/ + + + from + ^http://shop\.iomtt\.com/ + to + https://shop.iomtt.com/ + + + target + + + host + iomtt.com + + + host + *.iomtt.com + + + + + Ionic Framework.com (partial) + + ruleset + + name + Ionic Framework.com (partial) + rule + + from + ^http://code\.ionicframework\.com/ + to + https://code.ionicframework.com/ + + target + + host + code.ionicframework.com + + + + Iplay.com (partial) + + ruleset + + name + Iplay.com (partial) + rule + + + from + ^http://(?:www\.)?iplay\.com/(?=favicon\.ico|page/secure/) + to + https://www.iplay.com/ + + + from + ^http://client\.iplay\.com/ + to + https://client.iplay.com/ + + + target + + + host + iplay.com + + + host + *.iplay.com + + + + + Ipsos (partial) + + ruleset + + name + Ipsos (partial) + rule + + + from + ^http://(www\.)?ipsos-na\.com/ + to + https://$1ipsos-na.com/ + + + from + ^http://provsmakning\.synovate\.se/ + to + https://provsmakning.synovate.se/ + + + securecookie + + host + ^provsmakning\.synovate\.se$ + name + .+ + + target + + + host + ipsos-na.com + + + host + www.ipsos-na.com + + + host + provsmakning.synovate.se + + + + + Irccloud.com + + ruleset + + name + Irccloud.com + platform + firefox + rule + + + from + ^http://irccloud\.com/ + to + https://irccloud.com/ + + + from + ^http://www\.irccloud\.com/ + to + https://www.irccloud.com/ + + + from + ^http://alpha\.irccloud\.com/ + to + https://alpha.irccloud.com/ + + + securecookie + + + host + ^irccloud\.com$ + name + .+ + + + host + ^www\.irccloud\.com$ + name + .+ + + + host + ^alpha\.irccloud\.com$ + name + .+ + + + target + + + host + irccloud.com + + + host + www.irccloud.com + + + host + alpha.irccloud.com + + + + + Ireeco.com + + ruleset + + name + Ireeco.com + rule + + from + ^http://(www\.)?ireeco\.com/ + to + https://$1ireeco.com/ + + securecookie + + host + ^\.ireeco\.com$ + name + .+ + + target + + + host + ireeco.com + + + host + *.ireeco.com + + + + + Irish Broadband + + ruleset + + name + Irish Broadband + platform + mixedcontent + rule + + + from + ^http://irishbroadband\.ie/ + to + https://www.irishbroadband.ie/ + + + from + ^http://([^/:@\.]+)\.irishbroadband\.ie/ + to + https://$1.irishbroadband.ie/ + + + target + + + host + irishbroadband.ie + + + host + *.irishbroadband.ie + + + + + Ironwhale.com + + ruleset + + name + Ironwhale.com + rule + + from + ^http://(mail|www)\.ironwhale\.com/ + to + https://$1.ironwhale.com/ + + securecookie + + host + ^www\.ironwhale\.com$ + name + .+ + + target + + host + *.ironwhale.com + + + + Irwin Law + + ruleset + + name + Irwin Law + rule + + from + ^http://(?:www\.)?irwinlaw\.com/ + to + https://www.irwinlaw.com/ + + securecookie + + host + ^www\.irwinlaw\.com$ + name + .* + + target + + + host + irwinlaw.com + + + host + www.irwinlaw.com + + + + + Is Leaked.com + + ruleset + + name + Is Leaked.com + rule + + from + ^http://(www\.)?isleaked\.com/ + to + https://$1isleaked.com/ + + target + + + host + isleaked.com + + + host + www.isleaked.com + + + + + Is TLS Fast Yet.com + + ruleset + + name + Is TLS Fast Yet.com + rule + + from + ^http://(www\.)?istlsfastyet\.com/ + to + https://$1istlsfastyet.com/ + + target + + + host + istlsfastyet.com + + + host + www.istlsfastyet.com + + + + + Iseclab.org + + ruleset + + name + Iseclab.org + rule + + + from + ^http://(www\.)?iseclab\.org/ + to + https://www.iseclab.org/ + + + from + ^http://(anubis|inetsec)\.iseclab\.org/ + to + https://$1.iseclab.org/ + + + target + + + host + www.iseclab.org + + + host + iseclab.org + + + host + anubis.iseclab.org + + + host + inetsec.iseclab.org + + + + + Isle.jp + + ruleset + + name + Isle.jp + rule + + + from + ^http://(?:www\.)?isle\.jp/+ + to + https://shared.gmocloud.com/ + + + from + ^http://(home|set)\.isle\.jp/ + to + https://$1.isle.jp/ + + + target + + + host + isle.jp + + + host + *.isle.jp + + + + + IsoHunt + + ruleset + + name + IsoHunt + platform + mixedcontent + rule + + from + ^http://(ca\.|www\.)?isohunt\.com/ + to + https://$1isohunt.com/ + + securecookie + + host + ^(.*\.)?isohunt\.com$ + name + .* + + target + + + host + isohunt.com + + + host + *.isohunt.com + + + + + Isomorphic Software (partial) + + ruleset + + name + Isomorphic Software (partial) + rule + + from + ^https?://(?:www\.)?isomorphic\.com/ + to + https://www.isomorphic.com/ + + securecookie + + host + ^www\.isomorphic\.com$ + name + .+ + + target + + + host + isomorphic.com + + + host + www.isomorphic.com + + + + + IssHub.com + + ruleset + + name + IssHub.com + rule + + from + ^http://(www\.)?isshub\.io/ + to + https://$1isshub.io/ + + securecookie + + host + ^\.isshub\.io$ + name + .+ + + target + + + host + isshub.io + + + host + *.isshub.io + + + + + Issuu Aps (partial) + + ruleset + + exclusion + + pattern + ^http://issu\.com/+(?!favicon\.ico|signin(?:$|[?/])) + + name + Issuu Aps (partial) + rule + + + from + ^http://(feed|sidebar)\.issuu\.com/ + to + https://s3.amazonaws.com/$1.issuu.com/ + + + from + ^http://help\.issuu\.com/(?=favicon\.ico|generated/|images/|system/) + to + https://issuu.zendesk.com/ + + + from + ^http://((?:image|skin|static|www)\.)?issuu\.com/ + to + https://$1issuu.com/ + + + target + + + host + issuu.com + + + host + *.issuu.com + + + + + It's an Honour + + ruleset + + name + It's an Honour + rule + + from + ^http://(?:www\.)?itsanhonour\.gov\.au/ + to + https://www.itsanhonour.gov.au/ + + target + + + host + itsanhonour.gov.au + + + host + *.itsanhonour.gov.au + + + + + Itex + + ruleset + + name + Itex + platform + mixedcontent + rule + + from + ^http://(?:www\.)?itex\.com/ + to + https://www.itex.com/ + + securecookie + + host + ^(.*\.)?itex\.com$ + name + .* + + target + + + host + itex.com + + + host + *.itex.com + + + + + Ithaca College + + ruleset + + name + Ithaca College + rule + + from + ^http://(www\.)?ithaca\.edu/ + to + https://ithaca.edu/ + + target + + + host + www.ithaca.edu + + + host + ithaca.edu + + + + + Itriskltd.com + + ruleset + + name + Itriskltd.com + platform + firefox + rule + + from + ^http://itriskltd\.com/ + to + https://itriskltd.com/ + + securecookie + + host + ^itriskltd\.com$ + name + .+ + + target + + host + itriskltd.com + + + + ItsLearning + + ruleset + + name + ItsLearning + platform + mixedcontent + rule + + from + ^http://(?:www\.)?itslearning\.com/ + to + https://www.itslearning.com/ + + target + + + host + www.itslearning.com + + + host + itslearning.com + + + + + Iv.lt (partial) + + ruleset + + exclusion + + pattern + ^http://pagalba\.iv\.lt/(?!images/) + + name + Iv.lt (partial) + rule + + from + ^http://((?:gedimai|grafika|klientams|pagalba|sutartys|www)\.)?iv\.lt/ + to + https://$1iv.lt/ + + securecookie + + host + ^klientams\.iv\.lt$ + name + .+ + + target + + + host + iv.lt + + + host + *.iv.lt + + + + + Ivacy (partial) + + ruleset + + name + Ivacy (partial) + rule + + from + ^http://(www\.)?ivacy\.com/ + to + https://$1ivacy.com/ + + securecookie + + host + ^\.ivacy\.com$ + name + .+ + + target + + + host + ivacy.com + + + host + *.ivacy.com + + + + + Ive Got Kids.com (false MCB) + + ruleset + + name + Ive Got Kids.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?(ivegotkids|togevi)\.com/(?!cdn-cgi/|community/(?:forum/session\.php|user/(?:media|modules|plugins|templates)/)|favicon\.ico|script/|wp-content/|wp-includes/) + to + https://$1$2.com/ + + securecookie + + host + ^\.?(?:ivegotkids|togevi)\.com$ + name + .+ + + target + + + host + ivegotkids.com + + + host + *.ivegotkids.com + + + host + togevi.com + + + host + *.togevi.com + + + + + Ive Got Kids.com (partial) + + ruleset + + name + Ive Got Kids.com (partial) + rule + + from + ^http://(www\.)?(ivegotkids|togevi)\.com/(?!cdn-cgi/|community/(?:forum/session\.php|user/(?:media|modules|plugins|templates)/)|favicon\.ico|script/|wp-content/|wp-includes/) + to + https://$1$2.com/ + + target + + + host + ivegotkids.com + + + host + www.ivegotkids.com + + + host + togevi.com + + + host + www.togevi.com + + + + + Ixquick + + ruleset + + name + Ixquick + rule + + + from + ^http://ixquick\.com/ + to + https://ixquick.com/ + + + from + ^http://([^@/:]*)\.ixquick\.com/ + to + https://$1.ixquick.com/ + + + from + ^http://ixquick-proxy\.com/ + to + https://ixquick-proxy.com/ + + + from + ^http://([^@/:]*)\.ixquick-proxy\.com/ + to + https://$1.ixquick-proxy.com/ + + + from + ^http://startpage\.com/ + to + https://startpage.com/ + + + from + ^http://([^@/:]*)\.startpage\.com/ + to + https://$1.startpage.com/ + + + from + ^http://startingpage\.com/ + to + https://startingpage.com/ + + + from + ^http://([^@/:]*)\.startingpage\.com/ + to + https://$1.startingpage.com/ + + + securecookie + + host + ^\.ixquick\.com$ + name + .* + + target + + + host + ixquick.com + + + host + *.ixquick.com + + + host + startpage.com + + + host + *.startpage.com + + + host + startingpage.com + + + host + *.startingpage.com + + + host + ixquick-proxy.com + + + host + *.ixquick-proxy.com + + + + + Izvestia.ru (partial) + + ruleset + + name + Izvestia.ru (partial) + rule + + from + ^http://fb\.izvestia\.ru/ + to + https://fb.izvestia.ru/ + + target + + host + fb.izvestia.ru + + + + J Deslippe.com + + ruleset + + name + J Deslippe.com + rule + + from + ^http://(?:www\.)?jdeslippe\.com/ + to + https://www.jdeslippe.com/ + + target + + + host + jdeslippe.com + + + host + www.jdeslippe.com + + + + + J Halderm.com + + ruleset + + name + J Halderm.com + rule + + from + ^http://(pad\.|www\.)?jhalderm\.com/ + to + https://$1jhalderm.com/ + + target + + + host + jhalderm.com + + + host + *.jhalderm.com + + + + + JAKO-O + + ruleset + + name + JAKO-O + rule + + from + ^http://(?:www\.)?jako-o\.(at|com|de|eu|lu)/ + to + https://www.jako-o.$1/ + + target + + + host + jako-o.* + + + host + www.jako-o.de + + + host + www.jako-o.at + + + host + www.jako-o.lu + + + host + www.jako-o.eu + + + host + www.jako-o.com + + + + + JAMA Network (partial) + + ruleset + + name + JAMA Network (partial) + rule + + from + ^http://((?:arch(?:derm|faci|inte|neur|neurpsyc|opht|otol|neurpsyc|pedi|surg)|jama|store|www)\.)?jamanetwork\.com/ + to + https://$1jamanetwork.com/ + + securecookie + + host + ^(?:.*\.)?jamanetwork\.com$ + name + .+ + + target + + + host + jamanetwork.com + + + host + *.jamanetwork.com + + + + + JAMF Software.com (partial) + + ruleset + + name + JAMF Software.com (partial) + rule + + from + ^http://(jamfnation|my|support|store)\.jamfsoftware\.com/ + to + https://$1.jamfsoftware.com/ + + target + + host + *.jamfsoftware.com + + + + JAMSTEC.go.jp + + ruleset + + name + JAMSTEC.go.jp + rule + + from + ^http://www\.jamstec\.go\.jp/ + to + https://www.jamstec.go.jp/ + + securecookie + + host + ^www\.jamstec\.go\.jp$ + name + .+ + + target + + host + www.jamstec.go.jp + + + + JANET + + ruleset + + name + JANET + rule + + from + ^http://(?:www\.)?ja\.net/ + to + https://www.ja.net/ + + target + + + host + ja.net + + + host + www.ja.net + + + + + JBoss + + ruleset + + exclusion + + pattern + ^http://downloads?\.jboss\.(com|org)/ + + name + JBoss + rule + + from + ^http://([^/@:]+\.)?jboss\.(com|org)/ + to + https://$1jboss.$2/ + + securecookie + + host + ^(.*\.)?jboss\.(com|org)$ + name + .* + + target + + + host + jboss.com + + + host + *.jboss.com + + + host + jboss.org + + + host + *.jboss.org + + + + + JCP.org + + ruleset + + name + JCP.org + rule + + from + ^http://(www2?\.)?jcp\.org/ + to + https://$1jcp.org/ + + securecookie + + host + ^(?:www\.)?jcp\.org$ + name + .+ + + target + + + host + jcp.org + + + host + *.jcp.org + + + + + JD Kasten.com + + ruleset + + name + JD Kasten.com + rule + + from + ^http://(www\.)?jdkasten\.com/ + to + https://$1jdkasten.com/ + + target + + + host + jdkasten.com + + + host + www.jdkasten.com + + + + + JD Supra + + ruleset + + name + JD Supra + rule + + from + ^https?://(?:www\.)?jdsupra\.com/ + to + https://www.jdsupra.com/ + + securecookie + + host + ^www\.jdsupra\.com$ + name + .+ + + target + + + host + jdsupra.com + + + host + www.jdsupra.com + + + + + JDI Dating (partial) + + ruleset + + name + JDI Dating (partial) + rule + + from + ^http://(www\.)?fbdatesecure\.com/ + to + https://$1fbdatesecure.com/ + + target + + + host + fbdatesecure.com + + + host + www.fbdatesecure.com + + + + + JFK library.org (partial) + + ruleset + + name + JFK library.org (partial) + rule + + from + ^http://store\.jfklibrary\.org/ + to + https://store.jfklibrary.org/ + + securecookie + + host + ^store\.jfklibrary\.org$ + name + .+ + + target + + host + store.jfklibrary.org + + + + JISCMail + + ruleset + + name + JISCMail + rule + + from + ^https?://(?:www\.)?jiscmail\.ac\.uk/ + to + https://www.jiscmail.ac.uk/ + + securecookie + + host + ^www\.jiscmail\.ac\.uk$ + name + .+ + + target + + + host + jiscmail.ac.uk + + + host + www.jiscmail.ac.uk + + + + + JList.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?j(?:box|list)\.com/(?!account(?:$|[?/])|css/|favicon\.ico|img/|jlist\.ico|js/) + + name + JList.com (partial) + rule + + + from + ^http://(support\.|www\.)?j(box|list)\.com/ + to + https://$1j$2.com/ + + + from + ^http://images3\.jlist\.com/ + to + https://s3.amazonaws.com/images3.jlist.com/ + + + target + + + host + jbox.com + + + host + www.jbox.com + + + host + jlist.com + + + host + *.jlist.com + + + + + JML Direct.com + + ruleset + + name + JML Direct.com + rule + + + from + ^http://(www\.)?jmldirect\.com/ + to + https://$1jmldirect.com/ + + + from + ^http://jmldirect\.uat\.venda\.com/content/ + to + https://www.jmldirect.com/content/ + + + securecookie + + host + ^(?:\.?www)?\.jmldirect\.com$ + name + .+ + + target + + + host + jmldirect.com + + + host + *.jmldirect.com + + + host + jmldirect.uat.venda.com + + + + + JP-CERT + + ruleset + + name + JP-CERT + rule + + from + ^http://www\.jpcert\.or\.jp/ + to + https://www.jpcert.or.jp/ + + target + + host + www.jpcert.or.jp + + + + JP/Politikens Hus (partial) + + ruleset + + name + JP/Politikens Hus (partial) + rule + + from + ^http://polid\.jppol\.dk/ + to + https://polid.jppol.dk/ + + securecookie + + host + ^polid\.jppol\.dk$ + name + .+ + + target + + host + polid.jppol.dk + + + + JPBerlin.de + + ruleset + + name + JPBerlin.de + rule + + from + ^http://(?:www\.)?jpberlin\.de/ + to + https://www.jpberlin.de/ + + target + + + host + jpberlin.de + + + host + www.jpberlin.de + + + + + JSConf.us (partial) + + ruleset + + name + JSConf.us (partial) + rule + + from + ^http://static\.jsconf\.us/ + to + https://d3g6x5wbd1mc2t.cloudfront.net/ + + target + + host + static.jsconf.us + + + + JSTOR (partial) + + ruleset + + name + JSTOR (partial) + rule + + + from + ^http://(?:www\.)?jstor\.org/((?:abs|betasearch/static|jawr|jawrcss|literatum|sda|stable|templates|userimages)/|action/(?:myJstorSettings|registration|show(?:Login|RegistrationUpdate))|rx(?:$|\?)) + to + https://www.jstor.org/$1 + + + from + ^http://about\.jstor\.org/(modul|sit)es/ + to + https://about.jstor.org/$1es/ + + + target + + + host + jstor.org + + + host + *.jstor.org + + + + + JUKI + + ruleset + + name + JUKI + rule + + from + ^http://www\.juki\.co\.jp/ + to + https://www.juki.co.jp/ + + target + + host + www.juki.co.jp + + + + JVN.jp + + ruleset + + name + JVN.jp + rule + + from + ^http://jvn\.jp/ + to + https://jvn.jp/ + + target + + host + jvn.jp + + + + JW Platform.com (partial) + + ruleset + + name + JW Platform.com (partial) + rule + + from + ^http://dashboard\.jwplatform\.com/(?=payments/|static/) + to + https://dashboard.jwplatform.com/ + + target + + host + dashboard.jwplatform.com + + + + JXT.net.au (partial) + + ruleset + + name + JXT.net.au (partial) + rule + + from + ^http://images\.jxt\.net\.au/ + to + https://images.jxt.net.au/ + + target + + host + images.jxt.net.au + + + + JabbR.net + + ruleset + + name + JabbR.net + rule + + from + ^http://jabbr\.net/ + to + https://jabbr.net/ + + securecookie + + host + ^\.?jabbr\.net$ + name + .+ + + target + + + host + jabbr.net + + + host + *.jabbr.net + + + + + Jabber.at + + ruleset + + name + Jabber.at + rule + + from + ^http://(www\.)?jabber\.at/ + to + https://jabber.at/ + + target + + + host + jabber.at + + + host + www.jabber.at + + + + + Jabber.no + + ruleset + + name + Jabber.no + rule + + from + ^http://(www\.)?jabber\.no/ + to + https://$1jabber.no/ + + target + + + host + jabber.no + + + host + www.jabber.no + + + + + Jabber.ru (partial) + + ruleset + + name + Jabber.ru (partial) + rule + + + from + ^https?://jabber\.ru/ + to + https://www.jabber.ru/ + + + from + ^http://www\.jabber\.ru/ + to + https://www.jabber.ru/ + + + from + ^http://reg\.jabber\.ru/ + to + https://reg.jabber.ru/ + + + downgrade + 1 + from + ^https://www\.jabber\.ru/xreg/captcha/ + to + http://reg.jabber.ru/xreg/captcha/ + + + securecookie + + host + ^www\.jabber\.ru$ + name + ^PHPSESSID$ + + target + + + host + jabber.ru + + + host + *.jabber.ru + + + + + Jabberd.org + + ruleset + + name + Jabberd.org + rule + + from + ^http://(download\.|www\.)?jabberd\.org/ + to + https://$1jabberd.org/ + + target + + + host + jabberd.org + + + host + *.jabberd.org + + + + + Jack Imaging.com + + ruleset + + name + Jack Imaging.com + rule + + + from + ^http://(?:beta\.|www\.)?jackimaging\.com/ + to + https://beta.jackimaging.com/ + + + from + ^http://cdn\.jackimaging\.com/ + to + https://d2si6vzga8sezn.cloudfront.net/ + + + target + + + host + jackimaging.com + + + host + *.jackimaging.com + + + + + Jacks Fetish Tube + + ruleset + + name + Jacks Fetish Tube + rule + + from + ^http://(www\.)?jacksfetishtube\.com/ + to + https://$1jacksfetishtube.com/ + + securecookie + + host + ^\.?jacksfetishtube\.com$ + name + .+ + + target + + + host + jacksfetishtube.com + + + host + *.jacksfetishtube.com + + + + + Jackson-IT.de + + ruleset + + name + Jackson-IT.de + rule + + from + ^http://(www\.)?jackson-it\.de/ + to + https://$1jackson-it.de/ + + securecookie + + host + ^jackson-it\.de$ + name + .+ + + target + + + host + jackson-it.de + + + host + www.jackson-it.de + + + + + Jacksonville.com (partial) + + ruleset + + name + Jacksonville.com (partial) + rule + + from + ^http://sec\.jacksonville\.com/ + to + https://sec.jacksonville.com/ + + securecookie + + host + ^\.jacksonville\.com$ + name + (?:_chartbeat2|cX_\w|ppRef|ppThirdPartyCookieFound|s_\w+|utag_main) + + target + + host + *.jacksonville.com + + + + Jacob Langvad Nilsson + + ruleset + + name + Jacob Langvad Nilsson + rule + + from + ^http://(www\.)?jacoblangvad\.com/ + to + https://$1jacoblangvad.com/ + + securecookie + + host + ^\.jacoblangvad\.com$ + name + .+ + + target + + + host + jacoblangvad.com + + + host + *.jacoblangvad.com + + + + + Jailbreaking Is Not a Crime.org + + ruleset + + name + Jailbreaking Is Not a Crime.org + rule + + from + ^http://(www\.)?jailbreakingisnotacrime\.org/ + to + https://$1jailbreakingisnotacrime.org/ + + target + + + host + jailbreakingisnotacrime.org + + + host + www.jailbreakingisnotacrime.org + + + + + Jaim.at + + ruleset + + name + Jaim.at + rule + + from + ^http://(www\.)?jaim\.at/ + to + https://$1jaim.at/ + + target + + + host + jaim.at + + + host + www.jaim.at + + + + + JamPlay + + ruleset + + name + JamPlay + rule + + from + ^http://account\.jamplay\.com/ + to + https://account.jamplay.com/ + + target + + host + account.jamplay.com + + + + Jameco + + ruleset + + name + Jameco + rule + + from + ^https?://(?:www\.)?jameco\.com/ + to + https://www.jameco.com/ + + securecookie + + host + ^www\.jameco\.com$ + name + .+ + + target + + + host + jameco.com + + + host + www.jameco.com + + + + + Jamendo (partial) + + ruleset + + name + Jamendo (partial) + rule + + from + ^http://cdn\.imgjam\.com/ + to + https://s3.amazonaws.com/imgcdn.jamendo.com/ + + target + + host + cdn.imgjam.com + + + + Jamie Oliver + + ruleset + + name + Jamie Oliver + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?jamieoliver\.com/ + to + https://www.jamieoliver.com/ + + securecookie + + host + ^www\.jamieoliver\.com$ + name + .* + + target + + + host + jamieoliver.com + + + host + www.jamieoliver.com + + + + + Jamtrackcentral + + ruleset + + name + Jamtrackcentral + rule + + from + ^http://(www\.)?jamtrackcentral\.com/ + to + https://jamtrackcentral.com/ + + target + + + host + jamtrackcentral.com + + + host + www.jamtrackcentral.com + + + + + JanRain (partial) + + ruleset + + name + JanRain (partial) + rule + + + from + ^http://(community|(?:dashboard-)?login|support)\.janrain\.com/ + to + https://$1.janrain.com/ + + + from + ^http://info\.janrain\.com/ + to + https://actonsoftware.com/ + + + from + ^http://cdn\.quilt\.janrain\.com/ + to + https://s3.amazonaws.com/janrain.quilt/ + + + from + ^http://(dashboard-login\.|www\.)?janraincapture\.com/ + to + https://$1janraincapture.com/ + + + from + ^http://(\d+)\.myopenid\.com/ + to + https://$1.myopenid.com/ + + + securecookie + + + host + ^(?:community|support)\.janrain\.com$ + name + .+ + + + host + ^dashboard-login\.janraincapture\.com$ + name + .+ + + + target + + + host + *.janrain.com + + + host + janraincapture.com + + + host + *.janraincapture.com + + + host + *.myopenid.com + + + + + Janalta.com + + ruleset + + name + Janalta.com + rule + + + from + ^http://(ftp\.amazonweb1|www)\.janalta\.com/ + to + https://$1.janalta.com/ + + + from + ^http://cdn2\.janalta\.com/ + to + https://d2hcl8anv7xxg0.cloudfront.net/ + + + securecookie + + host + ^(?:ftp\.amazonweb1|www)\.janalta\.com$ + name + .+ + + target + + host + *.janalta.com + + + + Jane Street.com (partial) + + ruleset + + name + Jane Street.com (partial) + rule + + from + ^http://ocaml\.janestreet\.com/ + to + https://ocaml.janestreet.com/ + + securecookie + + host + ^\.ocaml\.janestreet\.com$ + name + .+ + + target + + host + *.janestreet.com + + + + Jann Horn + + ruleset + + name + Jann Horn + platform + cacert + rule + + from + ^http://(www\.)?thejh\.net/ + to + https://$1thejh.net/ + + target + + + host + thejh.net + + + host + www.thejh.net + + + + + Japan Airlines + + ruleset + + name + Japan Airlines + rule + + from + ^http://(?:www\.)?jal\.co\.jp/ + to + https://www.jal.co.jp/ + + target + + + host + jal.co.jp + + + host + www.jal.co.jp + + + + + Japan Information Technology Promotion Agency + + ruleset + + name + Japan Information Technology Promotion Agency + rule + + + from + ^http://www\.ipa\.go\.jp/ + to + https://www.ipa.go.jp/ + + + from + ^http://(www\.)?ipa\.jp/ + to + https://www.ipa.go.jp/ + + + from + ^http://www\.jitec\.ipa\.go\.jp/ + to + https://www.jitec.ipa.go.jp/ + + + from + ^http://(www\.)?jitec\.jp/ + to + https://www.jitec.ipa.go.jp/ + + + target + + + host + www.ipa.go.jp + + + host + www.ipa.jp + + + host + ipa.jp + + + host + www.jitec.ipa.go.jp + + + host + www.jitec.jp + + + host + jitec.jp + + + + + Japanese government (partial) + + ruleset + + name + Japanese government (partial) + rule + + from + ^http://(?:www\.)?challenge25\.go\.jp/ + to + https://www.challenge25.go.jp/ + + target + + + host + challenge25.go.jp + + + host + www.challenge25.go.jp + + + + + Japias.jp (partial) + + ruleset + + name + Japias.jp (partial) + rule + + from + ^http://webcon\.japias\.jp/ + to + https://webcon.japias.jp/ + + target + + host + webcon.japias.jp + + + + Jappix (partial) + + ruleset + + name + Jappix (partial) + rule + + from + ^http://(\w+\.)?jappix\.com/ + to + https://$1jappix.com/ + + target + + + host + jappix.com + + + host + *.jappix.com + + + + + Jappix.net + + ruleset + + name + Jappix.net + rule + + from + ^http://(?:www\.)?jappix\.net/ + to + https://jappix.net/ + + target + + + host + jappix.net + + + host + www.jappix.net + + + + + Jappix.org + + ruleset + + name + Jappix.org + rule + + from + ^http://(?:www\.)?jappix\.org/ + to + https://jappix.org/ + + securecookie + + host + ^jappix\.org$ + name + .+ + + target + + + host + jappix.org + + + host + www.jappix.org + + + + + Jappix.pro + + ruleset + + name + Jappix.pro + rule + + from + ^http://(?:www\.)?jappix\.pro/ + to + https://jappix.pro/ + + target + + + host + jappix.pro + + + host + www.jappix.pro + + + + + Jarian Gibson.com (false MCB) + + ruleset + + name + Jarian Gibson.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.jariangibson\.com/(?!\?custom-css=1|favicon\.ico) + to + https://www.jariangibson.com/ + + securecookie + + host + ^\.jariangibson.com$ + name + .+ + + target + + host + *.jariangibson.com + + + + Jarian Gibson.com (partial) + + ruleset + + exclusion + + pattern + http://www\.jariangibson\.com/(?!\?custom-css=1|favicon\.ico) + + name + Jarian Gibson.com (partial) + rule + + from + ^http://(cdn\.|www\.)?jariangibson\.com/ + to + https://$1jariangibson.com/ + + target + + + host + jariangibson.com + + + host + cdn.jariangibson.com + + + host + www.jariangibson.com + + + + + Jasig.org + + ruleset + + name + Jasig.org + rule + + + from + ^http://(?:www(?:\.issues|\.wiki)?\.)?ja-?sig\.org/ + to + https://www.jasig.org/ + + + from + ^http://(issues|wiki)\.jasig\.org/ + to + https://$1.jasig.org/ + + + securecookie + + host + ^(?:issues|wiki|www)?\.jasig\.org$ + name + .+ + + target + + + host + ja-sig.org + + + host + www.ja-sig.org + + + host + jasig.org + + + host + *.jasig.org + + + + + Jason Davies.com + + ruleset + + name + Jason Davies.com + rule + + from + ^http://(www\.)?jasondavies\.com/ + to + https://$1jasondavies.com/ + + target + + + host + jasondavies.com + + + host + www.jasondavies.com + + + + + Java + + ruleset + + name + Java + rule + + from + ^https?://(?:www\.)?java\.com(?::80)?/ + to + https://www.java.com/ + + securecookie + + host + ^www\.java\.com$ + name + .* + + target + + + host + java.com + + + host + www.java.com + + + + + Java.net (partial) + + ruleset + + name + Java.net (partial) + rule + + from + ^http://((?:asset-\d+|glassfish|home|jax-rs-spec|jersey|jsr311|wiki\.openjdk|tyrus|www)\.)?java\.net/ + to + https://$1java.net/ + + securecookie + + host + ^(?:home|jax-rs-spec|jsr311|wiki\.openjdk)?\.java\.net$ + name + .+ + + target + + + host + java.net + + + host + *.java.net + + + + + JavaScriptMVC (partial) + + ruleset + + name + JavaScriptMVC (partial) + rule + + + from + ^https?://(?:www\.)?javascriptmvc\.com/(documentjs|imvc)/ + to + https://d3tkw0zqe07qze.cloudfront.net/$1/ + + + from + ^http://forum\.javascriptmvc\.com/ + to + https://forum.javascriptmvc.com/ + + + securecookie + + host + ^forum\.javascriptmvc\.com$ + name + .+ + + target + + + host + javascriptmvc.com + + + host + *.javascriptmvc.com + + + + + Javacoolsoftware.com + + ruleset + + name + Javacoolsoftware.com + rule + + + from + ^http://(www\.)?javacoolsoftware\.com/ + to + https://www.javacoolsoftware.com/ + + + from + ^http://licenses\.javacoolsoftware\.com/ + to + https://licenses.javacoolsoftware.com/ + + + target + + + host + www.javacoolsoftware.com + + + host + javacoolsoftware.com + + + host + licenses.javacoolsoftware.com + + + + + Javelin Security.com + + ruleset + + name + Javelin Security.com + rule + + from + ^http://(www\.)?javelinsecurity\.com/ + to + https://$1javelinsecurity.com/ + + securecookie + + host + ^\.javelinsecurity\.com$ + name + .+ + + target + + + host + javelinsecurity.com + + + host + *.javelinsecurity.com + + + + + Javelin Strategy.com + + ruleset + + name + Javelin Strategy.com + rule + + + from + ^http://(?:www\.)?javelinstrategy\.com/ + to + https://www.javelinstrategy.com/ + + + from + ^http://store\.javelinstrategy\.com/ + to + https://store.javelinstrategy.com/ + + + securecookie + + host + ^(?:store|www)\.javelinstrategy\.com$ + name + .+ + + target + + + host + javelinstrategy.com + + + host + *.javelinstrategy.com + + + + + Javvin.com (partial) + + ruleset + + name + Javvin.com (partial) + rule + + from + ^http://(www\.)?javvin\.com/(?=affiliate(?:$|[?/])|contact\.(?:html|php)|favicon\.ico|images/|(?:functions/verify_code|login|shopping_cart|submitterm|top_iframe)\.php|pics/|stylesheet\.css) + to + https://$1javvin.com/ + + target + + + host + javvin.com + + + host + www.javvin.com + + + + + Jawbone.com (partial) + + ruleset + + exclusion + + pattern + ^http://store\.jawbone\.com/(?!Admin/|DRHM/) + + name + Jawbone.com (partial) + rule + + + from + ^http://((?:eu|forums|mytalk|store|thoughts|up|www)\.)?jawbone\.com/ + to + https://$1jawbone.com/ + + + from + ^http://content\.jawbone\.com/ + to + https://d3osil7svxrrgt.cloudfront.net/ + + + securecookie + + host + ^(?!store\.).*\.jawbone\.com$ + name + .+ + + target + + + host + jawbone.com + + + host + *.jawbone.com + + + + + Jay Is Games.com (partial) + + ruleset + + name + Jay Is Games.com (partial) + rule + + from + ^http://(www\.)?jayisgames\.com/mt4/ + to + https://$1jayisgames.com/mt4/ + + target + + + host + jayisgames.com + + + host + www.jayisgames.com + + + + + Jaymart.co.th + + ruleset + + name + Jaymart.co.th + rule + + from + ^http://(www\.)?jaymart\.co\.th/ + to + https://www.jaymart.co.th/ + + target + + + host + jaymart.co.th + + + host + www.jaymart.co.th + + + + + Jeep Tops Direct.com + + ruleset + + name + Jeep Tops Direct.com + rule + + from + ^http://(www\.)?jeeptopsdirect\.com/ + to + https://$1jeeptopsdirect.com/ + + securecookie + + host + ^\.(?:www\.)?jeeptopsdirect\.com$ + name + .+ + + target + + + host + jeeptopsdirect.com + + + host + *.jeeptopsdirect.com + + + + + Jeff Nabers.com (false MCB) + + ruleset + + name + Jeff Nabers.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.jeffnabers\.com/ + to + https://www.jeffnabers.com/ + + securecookie + + host + ^\.jeffnabers\.com$ + name + .+ + + target + + host + *.jeffnabers.com + + + + Jeff Nabers.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.jeffnabers\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Jeff Nabers.com (partial) + rule + + from + ^http://(www\.)?jeffnabers\.com/ + to + https://$1jeffnabers.com/ + + target + + + host + jeffnabers.com + + + host + www.jeffnabers.com + + + + + Jeff Reifman.com (partial) + + ruleset + + name + Jeff Reifman.com (partial) + rule + + from + ^http://cloud\.jeffreifman\.com/ + to + https://d34gmh9gge3473.cloudfront.net/ + + target + + host + cloud.jeffreifman.com + + + + Jellynote.com + + ruleset + + name + Jellynote.com + rule + + from + ^http://(www\.)?jellynote\.com/ + to + https://$1jellynote.com/ + + securecookie + + host + ^www\.jellynote\.com$ + name + .+ + + target + + + host + jellynote.com + + + host + www.jellynote.com + + + + + Jenkins-CI.org + + ruleset + + name + Jenkins-CI.org + rule + + from + ^http://((?:ci|issues|svn|updates|usage|wiki|www)\.)?jenkins-ci\.org/ + to + https://$1jenkins-ci.org/ + + securecookie + + host + ^(?:ci|issues|svn|update|usage|wiki)?\.jenkins-ci\.org$ + name + .+ + + target + + + host + jenkins-ci.org + + + host + *.jenkins-ci.org + + + + + Jesse Ruderma + + ruleset + + name + Jesse Ruderma + rule + + from + ^http://([^/:@]*)\.squarefree\.com/ + to + https://$1.squarefree.com/ + + target + + + host + www.squarefree.com + + + host + *.squarefree.com + + + + + Jet2.com + + ruleset + + name + Jet2.com + platform + mixedcontent + rule + + + from + ^http://jet2\.com/ + to + https://www.jet2.com/ + + + from + ^http://(intranet|reservations|www)\.jet2\.com/ + to + https://$1.jet2.com/ + + + target + + + host + jet2.com + + + host + *.jet2.com + + + + + JetBrains (partial) + + ruleset + + name + JetBrains (partial) + rule + + + from + ^http://(?:www\.)?jetbrains\.com/ + to + https://www.jetbrains.com/ + + + from + ^http://(account|intellij-support|sso)\.jetbrains\.com/ + to + https://$1.jetbrains.com/ + + + from + ^http://(dotnettools|reshaper)-support\.jetbrains\.com/(?=favicon\.ico|generated/|images/|system/) + to + https://$1.zendeskcom/ + + + from + ^http://info\.jetbrains\.com/(?=css/|images/|js/|rs/) + to + https://na-lon02.marketo.com/ + + + securecookie + + host + ^(?:account|intellij-support|sso|www)\.jetbrains\.com$ + name + .+ + + target + + + host + jetbrains.com + + + host + *.jetbrains.com + + + + + Jetico.com + + ruleset + + name + Jetico.com + rule + + from + ^http://(www\.)?jetico\.com/ + to + https://$1jetico.com/ + + securecookie + + host + ^\.?www\.jetico\.com$ + name + .+ + + target + + + host + jetico.com + + + host + *.jetico.com + + + + + Jewel Osco.com + + ruleset + + name + Jewel Osco.com + rule + + from + ^http://(www\.)?jewelosco\.com/ + to + https://$1jewelosco.com/ + + target + + + host + jewelosco.com + + + host + www.jewelosco.com + + + + + JewishPress.com + + ruleset + + name + JewishPress.com + rule + + from + ^http://(www\.)?jewishpress\.com/ + to + https://$1jewishpress.com/ + + target + + + host + jewishpress.com + + + host + www.jewishpress.com + + + + + JiWire (partial) + + ruleset + + name + JiWire (partial) + rule + + + from + ^http://(?:cms\.|www\.)?jiwire\.com/ + to + https://www.jiwire.com/ + + + from + ^http://(ads|api|tags|v4|wi-fi)\.jiwire\.com/ + to + https://$1.jiwire.com/ + + + securecookie + + host + ^v4\.jiwire\.com$ + name + .+ + + target + + + host + jiwire.com + + + host + *.jiwire.com + + + + + Jiffy Free Score.com + + ruleset + + name + Jiffy Free Score.com + rule + + from + ^http://(www\.)?jiffyfreescore\.com/ + to + https://$1jiffyfreescore.com/ + + securecookie + + host + ^(?:[w.]*\.)?jiffyfreescore\.com$ + name + .+ + + target + + + host + jiffyfreescore.com + + + host + *.jiffyfreescore.com + + + + + Jigsaw (partial) + + ruleset + + name + Jigsaw (partial) + rule + + + from + ^http://((?:about|email|enterprise|static|www)\.)?jigsaw\.com/ + to + https://$1jigsaw.com/ + + + from + ^https?://community\.jigsaw\.com/ + to + https://jigsaw.i.lithium.com/ + + + securecookie + + host + ^(?:www)?\.jigsaw\.com$ + name + .+ + + target + + + host + jigsaw.com + + + host + *.jigsaw.com + + + + + Jim static.com + + ruleset + + name + Jim static.com + rule + + from + ^http://a(\d)\.jimstatic\.com/ + to + https://a$1.jimstatic.com/ + + target + + host + *.jimstatic.com + + + + Jimdo (partial) + + ruleset + + name + Jimdo (partial) + rule + + from + ^http://(a|webmail|www51)\.jimdo\.com/ + to + https://$1.jimdo.com/ + + securecookie + + host + ^(?:a|webmail|www51)\.jimdo\.com$ + name + .+ + + target + + host + *.jimdo.com + + + + Jimg.dk + + ruleset + + name + Jimg.dk + rule + + from + ^http://((?:i[123]|www|z)\.)?jimg\.dk/ + to + https://$1jimg.dk/ + + target + + + host + jimg.dk + + + host + *.jimg.dk + + + + + Jinx.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.jinx\.com/(?!create\.|design_contest(?:_info)?\.|log(?:in|out)\.).+\.aspx + + name + Jinx.com (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?jinx\.com/home\.aspx($|\?.*) + to + https://$1jinx.com/$2 + + + from + ^http://(www\.)?jinx\.com/ + to + https://$1jinx.com/ + + + target + + + host + jinx.com + + + host + www.jinx.com + + + + + Jitscale.com (false MCB) + + ruleset + + name + Jitscale.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?jitscale\.com/ + to + https://$1jitscale.com/ + + securecookie + + host + .*\.jitscale\.com$ + name + .+ + + target + + + host + jitscale.com + + + host + *.jitscale.com + + + + + Jitscale.com (partial) + + ruleset + + name + Jitscale.com (partial) + rule + + from + ^http://cdn3\.jitscale\.com/ + to + https://d2ve2fyg0zf8xm.cloudfront.net/ + + target + + host + cdn3.jitscale.com + + + + Jitsi + + ruleset + + name + Jitsi + rule + + from + ^http://(www\.)?jitsi\.org/ + to + https://$1jitsi.org/ + + securecookie + + host + ^jitsi\.org$ + name + .* + + target + + + host + jitsi.org + + + host + www.jitsi.org + + + + + Jitsi.org + + ruleset + + name + Jitsi.org + platform + firefox + rule + + from + ^http://download\.jitsi\.org/ + to + https://download.jitsi.org/ + + securecookie + + host + ^download\.jitsi\.org$ + name + .+ + + target + + host + download.jitsi.org + + + + Jive Software.com (partial) + + ruleset + + name + Jive Software.com (partial) + rule + + from + ^http://cloud\.jivesoftware\.com/ + to + https://cloud.jivesoftware.com/ + + securecookie + + host + ^cloud\.jivesoftware\.com$ + name + .+ + + target + + host + cloud.jivesoftware.com + + + + Jive.com + + ruleset + + name + Jive.com + rule + + from + ^http://(?:www\.)?(?:get)?jive\.com/ + to + https://jive.com/ + + target + + + host + getjive.com + + + host + www.getjive.com + + + host + jive.com + + + host + www.jive.com + + + + + JobMatch (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + JobMatch (partial) + rule + + from + ^http://([^\.]+)\.iapplicants\.com/i(mag|nclud)es/ + to + https://$1.iapplicants.com/i$2es/ + + target + + host + *.iapplicants.com + + + + JobThread + + ruleset + + exclusion + + pattern + ^http://static\.jobthread\.com/(?!partners/jobthread/images/) + + name + JobThread + rule + + from + ^http://(?:static\.|(www\.))?jobthread\.com/ + to + https://$1jobthread.com/ + + target + + + host + jobthread.com + + + host + *.jobthread.com + + + + + Jobbik (partial) + + ruleset + + name + Jobbik (partial) + rule + + from + ^http://(?:www\.)?jobbik\.hu/sites/ + to + https://jobbik.hu/sites/ + + target + + + host + jobbik.hu + + + host + www.jobbik.hu + + + + + Jobs2Web + + ruleset + + name + Jobs2Web + rule + + from + ^http://([\w-]+\.)?jobs2web\.com/ + to + https://$1jobs2web.com/ + + securecookie + + host + ^(?:.*\.)?jobs2web\.com$ + name + .+ + + target + + + host + jobs2web.com + + + host + *.jobs2web.com + + + + + Jobscout24 + + ruleset + + name + Jobscout24 + platform + mixedcontent + rule + + from + ^http://(?:www\.)?jobscout24\.de/ + to + https://www.jobscout24.de/ + + target + + + host + jobscout24.de + + + host + www.jobscout24.de + + + + + Jobsite.com + + ruleset + + name + Jobsite.com + rule + + from + ^http://(www\.)?jobsite\.com/ + to + https://$1jobsite.com/ + + target + + + host + jobsite.com + + + host + www.jobsite.com + + + + + Jobvite (partial) + + ruleset + + exclusion + + pattern + ^http://www\.jobvite\.com/(?!favicon\.ico|wp-content/|wp-includes/) + + name + Jobvite (partial) + rule + + + from + ^http://((?:careers|demo|hire|hire-stg|recruiting|search|source|source-stg|www|www-stg)\.)?jobvite\.com/ + to + https://$1jobvite.com/ + + + from + ^http://web\.jobvite\.com/(?=css/|images/|js/|rs/) + to + https://na-a.marketo.com/ + + + securecookie + + host + ^(?:.+\.)?jobvite\.com$ + name + .* + + target + + + host + jobvite.com + + + host + *.jobvite.com + + + + + Jobware.de + + ruleset + + name + Jobware.de + rule + + from + ^http://www\.jobware\.de/ + to + https://www.jobware.de/ + + target + + host + *.jobware.de + + + + JodoHost (partial) + + ruleset + + name + JodoHost (partial) + rule + + + from + ^http://cp\.gohsphere\.com/ + to + https://cp.gohsphere.com/ + + + from + ^http://(www\.)?support\.jodohost\.com/ + to + https://$1support.jodohost.com/ + + + from + ^http://lcsrv1\.myhsphere\.biz/ + to + https://lcsrv1.myhsphere.biz/ + + + securecookie + + + host + ^(?:www\.)?support\.jodohost\.com$ + name + .+ + + + host + ^lcsrv1\.myhsphere\.biz$ + name + .+ + + + target + + + host + cp.gohsphere.com + + + host + *.jodohost.com + + + host + lcsrv1.myhsphere.biz + + + + + JoeyH.name + + ruleset + + name + JoeyH.name + rule + + from + ^http://joeyh\.name/ + to + https://joeyh.name/ + + securecookie + + host + ^joeyh\.name$ + name + .+ + + target + + host + joeyh.name + + + + Johnson Press (partial) + + ruleset + + name + Johnson Press (partial) + rule + + + from + ^http://secure\.johnstonpress\.co\.uk/ + to + https://secure.johnstonpress.co.uk/ + + + from + ^http://remote\.jpress\.co\.uk/ + to + https://remote.jpress.co.uk/ + + + securecookie + + host + ^mobilecontrol\.jpress\.co\.uk$ + name + .+ + + target + + + host + secure.johnstonpress.co.uk + + + host + remote.jpress.co.uk + + + + + Johoobuy.com + + ruleset + + name + Johoobuy.com + rule + + from + ^http://(?:www\.)?johoobuy\.com/ + to + https://www.johoobuy.com/ + + securecookie + + host + ^www\.johoobuy\.com$ + name + .+ + + target + + + host + johoobuy.com + + + host + www.johoobuy.com + + + + + Join.TV + + ruleset + + name + Join.TV + rule + + from + ^http://(www\.)?join\.tv/ + to + https://$1join.tv/ + + securecookie + + host + ^(?:www)?\.join\.tv$ + name + .+ + + target + + + host + join.tv + + + host + *.join.tv + + + + + JoinUs.Today + + ruleset + + name + JoinUs.Today + rule + + from + ^http://(www\.)?joinus\.today/ + to + https://$1joinus.today/ + + target + + + host + joinus.today + + + host + www.joinus.today + + + + + Joinos.com + + ruleset + + name + Joinos.com + rule + + from + ^http://(my\.|www\.)?joinos\.com/ + to + https://$1joinos.com/ + + securecookie + + host + ^my\.joinos\.com$ + name + .+ + + target + + + host + joinos.com + + + host + *.joinos.com + + + + + Joker + + ruleset + + name + Joker + rule + + from + ^http://([^/:@]*\.)?joker\.com/ + to + https://$1joker.com/ + + target + + + host + *.joker.com + + + host + joker.com + + + + + Jolla.com + + ruleset + + name + Jolla.com + rule + + from + ^http://((?:account|harbour|join|www)\.)?jolla\.com/ + to + https://$1jolla.com/ + + securecookie + + host + ^(?:.*\.)?jolla\.com$ + name + .+ + + target + + + host + jolla.com + + + host + *.jolla.com + + + + + JonDos + + ruleset + + name + JonDos + rule + + + from + ^http://(www\.)?anonym-surfen\.de/ + to + https://$1anonym-surfen.de/ + + + from + ^http://(\w+\.)?anonymous-proxy-servers\.net/ + to + https://$1anonymous-proxy-servers.net/ + + + from + ^http://(www\.)?jondos\.org/ + to + https://$1jondos.org/ + + + securecookie + + host + ^(.*\.)?anonym(ous-proxy-servers\.net|-surfen\.de)$ + name + .* + + target + + + host + anonymous-proxy-servers.net + + + host + *.anonymous-proxy-servers.net + + + host + anonym-surfen.de + + + host + *.anonym-surfen.de + + + host + jondos.org + + + host + www.jondos.org + + + + + Jonathan Mayer.org + + ruleset + + name + Jonathan Mayer.org + rule + + from + ^http://(www\.)?jonathanmayer\.org/ + to + https://$1jonathanmayer.org/ + + target + + + host + jonathanmayer.org + + + host + www.jonathanmayer.org + + + + + Joomag.com (partial) + + ruleset + + name + Joomag.com (partial) + rule + + + from + ^http://(s1\.|www\.)?joomag\.com/ + to + https://$1joomag.com/ + + + from + ^http://static\.joomag\.com/ + to + https://d25ow0ysq5ykrj.cloudfront.net/ + + + securecookie + + host + ^\.joomag\.com$ + name + .+ + + target + + + host + joomag.com + + + host + *.joomag.com + + + + + JoomlArt.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?joomlart\.com/(?!favicon\.ico|images/|media/|member(?:$|[?/])|modules/|plugins/|t3-assets/|templates/) + + name + JoomlArt.com (partial) + rule + + from + ^http://(?:asset\.|(www\.))?joomlart\.com/ + to + https://$1joomlart.com/ + + target + + + host + joomlart.com + + + host + *.joomlart.com + + + + + Joomla (partial) + + ruleset + + exclusion + + + pattern + ^http://extensions\.joomla\.org/+($|\?|(component|extensions)($|[?/])) + + + pattern + ^http://extensions\.joomla\.org/+(?!components/|favicon\.ico|images/|modules/|templates/) + + + name + Joomla (partial) + rule + + + from + ^http://extensions\.joomla\.org/(?!$|\?|(?:component|extensions)(?:$|[?/])) + to + https://extensions.joomla.org/ + + + from + ^http://ideas\.joomla\.org/track\.gif + to + https://joomla.uservoice.com/track.gif + + + target + + host + *.joomla.org + + + + Josefsson.org + + ruleset + + name + Josefsson.org + platform + cacert + rule + + + from + ^http://(blog\.|www\.)?josefsson\.org/ + to + https://$1josefsson.org/ + + + from + ^http://(spin\.|www\.)?sjd\.net/ + to + https://$1sjd.net/ + + + target + + + host + josefsson.org + + + host + *.josefsson.org + + + host + sjd.net + + + host + *.sjd.net + + + + + Joseph Rowntree Reform Trust (partial) + + ruleset + + name + Joseph Rowntree Reform Trust (partial) + rule + + from + ^https?://(?:www\.)?jrrt\.org\.uk/sites/ + to + https://bigchangeuk.co.uk/sites/ + + target + + + host + jrrt.org.uk + + + host + www.jrrt.org.uk + + + + + Josh Triplett.org + + ruleset + + name + Josh Triplett.org + rule + + from + ^http://(?:www\.)?joshtriplett\.org/ + to + https://joshtriplett.org/ + + target + + + host + joshtriplett.org + + + host + www.joshtriplett.org + + + + + Joslin Diabetes Center + + ruleset + + name + Joslin Diabetes Center + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?joslin\.org/ + to + https://www.joslin.org/ + + + from + ^https://joslin\.org/ + to + https://www.joslin.org/ + + + target + + + host + joslin.org + + + host + www.joslin.org + + + + + JotForm + + ruleset + + name + JotForm + rule + + + from + ^http://max\.jotfor\.ms/ + to + https://static-interlogyllc.netdna-ssl.com/ + + + from + ^http://(?:www\.)?jotform\.com/ + to + https://www.jotform.com/ + + + from + ^http://(secure\.|www\.)?jotformpro\.com/ + to + https://$1jotformpro.com/ + + + securecookie + + host + ^(?:w*\.)?jotform\.com$ + name + .+ + + target + + + host + max.jotfor.ms + + + host + jotform.com + + + host + *.jotform.com + + + host + jotformpro.com + + + host + *.jotformpro.com + + + + + Jottit + + ruleset + + name + Jottit + rule + + + from + ^http://(www\.)?jottit\.com/ + to + https://www.jottit.com/ + + + from + ^http://([^/:@\.]+)\.jottit\.com/ + to + https://$1.jottit.com/ + + + target + + + host + jottit.com + + + host + *.jottit.com + + + + + Journal of Clinical Investigation (partial) + + ruleset + + name + Journal of Clinical Investigation (partial) + rule + + from + ^http://(www\.)?jci\.org/ + to + https://$1jci.org/ + + securecookie + + host + ^\.jci\.org$ + name + .+ + + target + + + host + jci.org + + + host + *.jci.org + + + + + Journal of Neurosurgery (partial) + + ruleset + + name + Journal of Neurosurgery (partial) + rule + + from + ^https?://(?:www\.)?thejns\.org/(action/(?:clickThrough|registration)|templates/|userimages/) + to + https://thejns.org/$1 + + target + + + host + thejns.org + + + host + www.thejns.org + + + + + Journal-News.net (partial) + + ruleset + + name + Journal-News.net (partial) + rule + + from + ^http://(?:www\.)?journal-news\.net/ + to + https://www.journal-news.net/ + + securecookie + + host + ^www\.journal-news\.net$ + name + .+ + + target + + + host + journal-news.net + + + host + www.journal-news.net + + + + + Journeyed + + ruleset + + name + Journeyed + rule + + from + ^http://(www\.)?journeyed\.com/ + to + https://www.journeyed.com/ + + target + + + host + www.journeyed.com + + + host + journeyed.com + + + + + Joyclub.de + + ruleset + + name + Joyclub.de + rule + + from + ^http://(www\.)?joyclub\.de/ + to + https://www.joyclub.de/ + + target + + + host + joyclub.de + + + host + www.joyclub.de + + + + + Joyent (partial) + + ruleset + + exclusion + + + pattern + ^http://lpage\.joyent\.com/(?!css/|images/|js/|rs/) + + + pattern + ^http://pkgsrc[\w\-]*\.joyent\.com/ + + + name + Joyent (partial) + rule + + + from + ^http://joyent\.com/ + to + https://www.joyent.com/ + + + from + ^http://lpage\.joyent\.com/(?=css/|images/|js/|rs/) + to + https://na-sjf.marketo.com/ + + + from + ^http://(\w+)\.joyent\.com/ + to + https://$1.joyent.com/ + + + from + ^http://([\w\-]*api|my)\.joyentcloud\.com/ + to + https://$1.joyentcloud.com/ + + + from + ^http://(?:www\.)?no\.de/ + to + https://no.de/ + + + securecookie + + host + ^(.*\.)?(joyent\.com|no\.de)$ + name + .* + + target + + + host + joyent.com + + + host + *.joyent.com + + + host + *.joyentcloud.com + + + host + no.de + + + host + www.no.de + + + + + Joystiq.com (partial) + + ruleset + + name + Joystiq.com (partial) + rule + + from + ^http://profiles\.joystiq\.com/ + to + https://profiles.joystiq.com/ + + target + + host + profiles.joystiq.com + + + + Jubii.dk (partial) + + ruleset + + name + Jubii.dk (partial) + rule + + + from + ^http://konto\.jubii\.dk/ + to + https://konto.jubii.dk/ + + + from + ^http://support\.jubii\.dk/(?=favicon\.ico|generated/|images/|system/) + to + https://jubii.zendesk.com/ + + + target + + host + *.jubii.dk + + + + Judici + + ruleset + + name + Judici + rule + + from + ^http://(www\.)?judici\.com/ + to + https://$1judici.com/ + + securecookie + + host + ^(?:www\.)?judici\.com$ + name + .+ + + target + + + host + judici.com + + + host + www.judici.com + + + + + Judicial Watch + + ruleset + + name + Judicial Watch + rule + + from + ^http://(www\.)?judicialwatch\.org/ + to + https://$1judicialwatch.org/ + + securecookie + + host + ^\.judicialwatch\.org$ + name + .+ + + target + + + host + judicialwatch.org + + + host + *.judicialwatch.org + + + + + Judiciary of England and Wales (partial) + + ruleset + + name + Judiciary of England and Wales (partial) + rule + + from + ^http://(ojc|www)\.judiciary\.gov\.uk/ + to + https://$1.judiciary.gov.uk/ + + securecookie + + host + ^www\.judiciary\.gov\.uk$ + name + .+ + + target + + host + *.judiciary.gov.uk + + + + Jugendschutzprogramm.de + + ruleset + + name + Jugendschutzprogramm.de + rule + + from + ^http://www\.jugendschutzprogramm\.de/ + to + https://www.jugendschutzprogramm.de/ + + target + + host + *.jugendschutzprogramm.de + + + + JuicyCanvas + + ruleset + + name + JuicyCanvas + rule + + from + ^http://(www\.)?juicycanvas\.com/ + to + https://$1juicycanvas.com/ + + securecookie + + host + ^\.juicycanvas\.com$ + name + .+ + + target + + + host + juicycanvas.com + + + host + *.juicycanvas.com + + + + + Juju charms.com + + ruleset + + name + Juju charms.com + rule + + from + ^http://(www\.)?jujucharms\.com/ + to + https://$1jujucharms.com/ + + target + + + host + jujucharms.com + + + host + www.jujucharms.com + + + + + Jumio + + ruleset + + name + Jumio + rule + + + from + ^https?://(?:www\.)?(?:jumio|netswipe)\.com/ + to + https://netswipe.com/ + + + from + ^http://(pay|static)\.(jumio|netswipe)\.com/ + to + https://$1.$2.com/ + + + securecookie + + host + ^(?:.+\.)?(?:jumio|netswipe)\.com$ + name + .+ + + target + + + host + jumio.com + + + host + *.jumio.com + + + host + netswipe.com + + + host + *.netswipe.com + + + + + JumpTime.com (partial) + + ruleset + + name + JumpTime.com (partial) + rule + + + from + ^http://beacon\.jumptime\.com/ + to + https://d70783jehyk3d.cloudfront.net/ + + + from + ^http://edit-www\.jumptime\.com/ + to + https://a248.e.akamai.net/f/1051/2618/4m/www.jumptime.com/ + + + target + + + host + jumptime.com + + + host + *.jumptime.com + + + + + JumpingJack + + ruleset + + name + JumpingJack + rule + + + from + ^http://images\.jitsmart\.com/ + to + https://images.jitsmart.com/ + + + from + ^http://(media\.|www\.)?jumpingjack\.com/ + to + https://$1jumpingjack.com/ + + + securecookie + + host + ^jumpingjack\.com$ + name + .+ + + target + + + host + images.jitsmart.com + + + host + jumpingjack.com + + + host + *.jumpingjack.com + + + + + Jumptap + + ruleset + + exclusion + + pattern + ^http://(db02|dine|reporting).jumptap.com + + name + Jumptap + rule + + from + ^http://([^@:/]*)\.jumptap\.com/ + to + https://$1.jumptap.com/ + + target + + host + *.jumptap.com + + + + Juniper Networks + + ruleset + + name + Juniper Networks + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?juniper\.net/ + to + https://www.juniper.net/ + + + from + ^http://kb\.juniper\.net/ + to + https://kb.juniper.net/ + + + target + + + host + juniper.net + + + host + *.juniper.net + + + + + Juniper Research + + ruleset + + name + Juniper Research + rule + + from + ^http://(www\.)?juniperresearch\.com/ + to + https://$1junipersearch.com/ + + securecookie + + host + ^(www\.)?juniperresearch\.com$ + name + .* + + target + + + host + juniperresearch.com + + + host + www.juniperresearch.com + + + + + JunoDownload + + ruleset + + exclusion + + + pattern + ^http://www\.junodownload\.com/crossdomain\.xml$ + + + pattern + ^http://www\.junodownload\.com/api/.+/track/dostream + + + pattern + ^http://(www\.)?junodownload\.com/plus/ + + + pattern + ^http://(www\.)?junodownload\.com/search/ + + + name + JunoDownload + rule + + + from + ^http://(www\.)?junodownload\.com/ + to + https://www.junodownload.com/ + + + from + ^http://secure\.junodownload\.com/ + to + https://secure.junodownload.com/ + + + target + + + host + junodownload.com + + + host + www.junodownload.com + + + host + secure.junodownload.com + + + + + JunoRecords + + ruleset + + exclusion + + pattern + ^http://www\.juno\.co\.uk/crossdomain\.xml$ + + name + JunoRecords + rule + + + from + ^http://(www\.|secure\.)?juno\.co\.uk/ + to + https://$1juno.co.uk/ + + + from + ^http://(?:www\.)?junostatic\.com/ + to + https://static.juno.co.uk/ + + + from + ^http://(?:image|cm)s\.junostatic\.com/ + to + https://images.juno.co.uk/ + + + target + + + host + juno.co.uk + + + host + *.juno.co.uk + + + host + junostatic.com + + + host + *.junostatic.com + + + + + Jusek.se + + ruleset + + name + Jusek.se + rule + + + from + ^http://jusek\.se/ + to + https://www.jusek.se/ + + + from + ^http://www\.jusek\.se/ + to + https://www.jusek.se/ + + + target + + + host + jusek.se + + + host + www.jusek.se + + + + + Just Apple.com (false MCB) + + ruleset + + name + Just Apple.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?justapple\.com/ + to + https://www.justapple.com/ + + securecookie + + host + ^\.justapple\.com$ + name + .+ + + target + + + host + justapple.com + + + host + *.justapple.com + + + + + Just Develop It (partial) + + ruleset + + exclusion + + pattern + ^http://reviews\.justhost\. + + name + Just Develop It (partial) + rule + + + from + ^http://(\w+\.)?intellichat\.com/ + to + https://$1intellchat.com/ + + + from + ^http://(\w+\.)?(just|zip)cloud\.com/ + to + https://$1$2cloud.com/ + + + from + ^http://(\w+\.)?justhost\.com/ + to + https://$1justhost.com/ + + + from + ^http://(\w+\.)?my(chatagent|pcbackup)\.com/ + to + https://$1my$2.com/ + + + from + ^http://mymerchantguard\.com/ + to + https://mymerchantguard.com/ + + + securecookie + + + host + ^(.*\.)?intellichat\.com$ + name + .* + + + host + ^(.*\.)?justhost\.com$ + name + .* + + + host + ^(.*\.)?my(chatagent|pcbackup)\.com$ + name + .* + + + host + ^(.*\.)?(just|zip)cloud\.com$ + name + .* + + + target + + + host + intellichat.com + + + host + *.intellichat.com + + + host + justcloud.com + + + host + *.justcloud.com + + + host + justhost.com + + + host + *.justhost.com + + + host + mymerchantguard.com + + + host + mychatagent.com + + + host + www.mychatagent.com + + + host + mypcbackup.com + + + host + *.mypcbackup.com + + + host + zipcloud.com + + + host + *.zipcloud.com + + + + + JustGive + + ruleset + + name + JustGive + rule + + + from + ^http://(?:www\.)?justgive\.org/ + to + https://www.justgive.org/ + + + from + ^http://(amex|ido)\.justgive\.org/ + to + https://$1.justgive.org/ + + + securecookie + + host + ^amex\.justgive\.org$ + name + .+ + + target + + + host + justgive.org + + + host + *.justgive.org + + + + + JustGiving (partial) + + ruleset + + name + JustGiving (partial) + rule + + + from + ^http://((?:api|apimanagement|images|www)\.)?justgiving\.com/ + to + https://$1justgiving.com/ + + + from + ^http://marketo\.justgiving\.com/(?!css/marketo-2\.css) + to + https://s3-eu-west-1.amazonaws.com/marketo.justgiving.com/ + + + from + ^http://pages\.justgiving\.com/(?=css/|images/|js/|rs/) + to + https://na-lon02.marketo.com/ + + + securecookie + + host + ^(?:apimanagement|www)?\.justgiving\.com$ + name + .+ + + target + + + host + justgiving.com + + + host + *.justgiving.com + + + + + JustTomatoes.com + + ruleset + + name + JustTomatoes.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?justtomatoes\.com/ + to + https://www.justtomatoes.com/ + + target + + + host + justtomatoes.com + + + host + www.justtomatoes.com + + + + + Justia (partial) + + ruleset + + name + Justia (partial) + platform + mixedcontent + rule + + + from + ^http://((?:accounts|answers|blawgsearch|blawgsfm|daily|dockets|docs|law|lawyers|marketing|supreme|www)\.)?justia\.com/ + to + https://$1justia.com/ + + + from + ^http://(?:www\.)?blogs\.justia\.com/ + to + https://marketing.justia.com/content-lawyer-blogs.html + + + from + ^https?://(clientvideos|profile-images|statecasefiles|static)\.justia\.com/ + to + https://s3.amazonaws.com/$1.justia.com/ + + + securecookie + + host + ^.*\.justia\.com$ + name + .* + + target + + + host + justia.com + + + host + *.justia.com + + + + + Justin.tv (partial) + + ruleset + + name + Justin.tv (partial) + rule + + + from + ^http://(static\.)?(justin|twitch)\.tv/ + to + https://$1$2.tv/ + + + from + ^http://api\.twitch\.tv/ + to + https://api.twitch.tv/ + + + from + ^http://chatdepot\.twitch\.tv/ + to + https://chatdepot.twitch.tv/ + + + from + ^http://secure\.twitch\.tv/ + to + https://secure.twitch.tv/ + + + target + + + host + justin.tv + + + host + static.justin.tv + + + host + twitch.tv + + + + + Justmoon.net + + ruleset + + name + Justmoon.net + rule + + from + ^http://(?:www\.)?justmoon\.net/ + to + https://justmoon.net/ + + target + + + host + justmoon.net + + + host + www.justmoon.net + + + + + Jyllands-Posten.dk + + ruleset + + name + Jyllands-Posten.dk + rule + + from + ^http://(www\.)?jyllands-posten\.dk/ + to + https://$1jyllands-posten.dk/ + + target + + + host + jyllands-posten.dk + + + host + www.jyllands-posten.dk + + + + + K P Dyer.com + + ruleset + + name + K P Dyer.com + rule + + from + ^http://(www\.)?kpdyer\.com/ + to + https://$1kpdyer.com/ + + target + + + host + kpdyer.com + + + host + www.kpdyer.com + + + + + K2s.cc + + ruleset + + name + K2s.cc + rule + + + from + ^http://(www\.)?k2s\.cc/ + to + https://k2s.cc/ + + + from + ^http://(www\.)?keep2share\.cc/ + to + https://k2s.cc/ + + + target + + + host + k2s.cc + + + host + www.k2s.cc + + + host + keep2share.cc + + + host + www.keep2share.cc + + + + + KAKAO + + ruleset + + name + KAKAO + rule + + from + ^https?://(?:www\.)?kakao\.com/ + to + https://www.kakao.com/ + + target + + + host + kakao.com + + + host + www.kakao.com + + + + + KASserver.com + + ruleset + + name + KASserver.com + rule + + from + ^http://(www\.)?kasserver\.com/ + to + https://$1kasserver.com/ + + target + + + host + kasserver.com + + + host + www.kasserver.com + + + + + KAU.se + + ruleset + + name + KAU.se + rule + + + from + ^http://(?:www\.)?kau\.se/ + to + https://www.kau.se/ + + + from + ^http://www\.bib\.kau\.se/(?:\?.*)?$ + to + https://www.kau.se/bibliotek + + + from + ^http://(cas|film|sycorax\.(?:sae|web)|sp|www3)\.kau\.se/ + to + https://$1.kau.se/ + + + from + ^http://www\.cs\.kau\.se/(\?.*)?$ + to + https://www.kau.se/$1 + + + from + ^http://www\.nxt\.kau\.se/[^\?]*(\?.*)?$ + to + https://www.kau.se/nxt$1 + + + securecookie + + host + ^(?:cas|\.film|sp)\.kau\.se$ + name + .+ + + target + + + host + kau.se + + + host + *.kau.se + + + + + KB IT.dk + + ruleset + + name + KB IT.dk + rule + + from + ^http://(www\.)?kbit\.dk/ + to + https://$1kbit.dk/ + + target + + + host + kbit.dk + + + host + www.kbit.dk + + + + + KBPublisher.com (false MCB) + + ruleset + + name + KBPublisher.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.kbpublisher\.com/(?!captcha\.php|client/|css/|favicon\.ico|images/|(?:login|password|signup)(?:$|[?/])|site/) + to + https://www.kbpublisher.com/ + + securecookie + + host + ^www\.kbpublisher\.com$ + name + .+ + + target + + host + www.kbpublisher.com + + + + KBPublisher.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.kbpublisher\.com/(?!captcha\.php|client/|css/|favicon\.ico|images/|(?:login|password|signup)(?:$|[?/])|site/) + + name + KBPublisher.com (partial) + rule + + from + ^http://(www\.)?kbpublisher\.com/ + to + https://$1kbpublisher.com/ + + securecookie + + host + ^\.kbpublisher\.com$ + name + ^__utm\w+$ + + target + + + host + kbpublisher.com + + + host + *.kbpublisher.com + + + + + KCVids + + ruleset + + name + KCVids + rule + + from + ^http://(join\.|www\.)?kcvids\.com/ + to + https://$1kcvids.com/ + + securecookie + + host + ^\.?kcvids\.com$ + name + .+ + + target + + + host + kcvids.com + + + host + *.kcvids.com + + + + + KDAB + + ruleset + + name + KDAB + rule + + from + ^http://(www\.)?kdab\.com/ + to + https://$1kdab.com/ + + target + + + host + kdab.com + + + host + www.kdab.com + + + + + KDE (partial) + + ruleset + + exclusion + + pattern + ^http://files\.kde\.org/+(?!.+\.(?:7z|bz2|de?b|diff|exe|dgml|dmg|dsc|gz|install|jpg|kml|meta|mp4|msc|odp|ogg|opml|otp|pdf|pl|png|sbm|scenario|sla|svg|tar|tif|tmp|txt|webm|xcf|xml|zip)|PKGBUILD)$ + + name + KDE (partial) + rule + + + from + ^http://((?:accessibility|akademy|akademy20(?:0[6-9]|1[023])|amarok|blogs|bugs|(?:admin|sandbox)\.bugs|cdn|community|conf|conference20(?:0[4-9]|10)|docs|dolphin|dot|edu|ev|events|forum|identity|jointhegame|kopete|mail|manifesto|nepomuk|news|phonon|pim|projects|rekonq|relate|season|solid|sprints|sysadmin|techbase|userbase|utils|wiki)\.)?kde\.org/ + to + https://$1kde.org/ + + + from + ^http://developer\.kde\.org/+ + to + https://techbase.kde.org/ + + + from + ^http://(?:git\.)?reviewboard\.kde\.org/ + to + https://git.reviewboard.kde.org/ + + + securecookie + + + host + ^\.kde\.org$ + name + ^(?:incap_ses_\d+|visid_incap)_\d+$ + + + host + ^.+\.kde\.org$ + name + .+ + + + target + + host + *.kde.org + + + + KEMI.se + + ruleset + + name + KEMI.se + platform + mixedcontent + rule + + + from + ^http://www\.kemi\.se/ + to + https://www.kemi.se/ + + + from + ^http://kemi\.se/ + to + https://kemi.se/ + + + target + + + host + kemi.se + + + host + www.kemi.se + + + + + KGNB.am + + ruleset + + name + KGNB.am + rule + + from + ^http://(www\.)?kgnb\.am/ + to + https://$1kgnb.am/ + + securecookie + + host + ^\.kgnb\.am$ + name + .+ + + target + + + host + kgnb.am + + + host + *.kgnb.am + + + + + KHN.nl + + ruleset + + name + KHN.nl + rule + + + from + ^http://(?:www\.)?khn\.nl/ + to + https://www.khn.nl/ + + + from + ^http://ox\.khn\.nl/ + to + https://ox.khn.nl/ + + + securecookie + + host + ^(?:ox|www)\.khn\.nl$ + name + .+ + + target + + + host + khn.nl + + + host + *.khn.nl + + + + + KHOC.co + + ruleset + + name + KHOC.co + rule + + from + ^http://(?:www\.)?khoc\.co/ + to + https://www.khoc.co/ + + securecookie + + host + ^\.khoc\.co$ + name + .+ + + target + + + host + khoc.co + + + host + *.khoc.co + + + + + KI.se + + ruleset + + name + KI.se + platform + mixedcontent + rule + + + from + ^http://bibliometrics\.ki\.se/ + to + https://bibliometrics.ki.se/ + + + from + ^http://cas\.ki\.se/ + to + https://cas.ki.se/ + + + from + ^http://cwaa\.ki\.se/ + to + https://cwaa.ki.se/ + + + from + ^http://child3\.ki\.se/ + to + https://child3.ki.se/ + + + from + ^http://exjobb\.meb\.ki\.se/ + to + https://exjobb.meb.ki.se/ + + + from + ^http://fonder\.ki\.se/ + to + https://fonder.ki.se/ + + + from + ^http://kib\.ki\.se/ + to + https://kib.ki.se/ + + + from + ^http://metasearch\.kib\.ki\.se/ + to + https://metasearch.kib.ki.se/ + + + target + + + host + bibliometrics.ki.se + + + host + cas.ki.se + + + host + cwaa.ki.se + + + host + child3.ki.se + + + host + exjobb.meb.ki.se + + + host + fonder.ki.se + + + host + kib.ki.se + + + host + metasearch.kib.ki.se + + + + + KISSinsights + + ruleset + + name + KISSinsights + rule + + + from + ^http://(www\.)?kissinsights\.com/ + to + https://$1kissinsights.com/ + + + from + ^http://([jr])\.kissinsights\.com/ + to + https://s3.amazonaws.com/$1.kissinsights.com/ + + + securecookie + + host + ^(.*\.)?kissinsights\.com$ + name + .* + + target + + + host + kissinsights.com + + + host + *.kissinsights.com + + + + + KISSmetrics + + ruleset + + name + KISSmetrics + rule + + + from + ^http://((?:blog|i|support|trk|www)\.)?kissmetrics\.com/ + to + https://$1kissmetrics.com/ + + + from + ^http://scripts\.kissmetrics\.com/ + to + https://s3.amazonaws.com/scripts.kissmetrics.com/ + + + securecookie + + host + ^.*\.kissmetrics\.com$ + name + .* + + target + + + host + kissmetrics.com + + + host + *.kissmetrics.com + + + + + KIT digital + + ruleset + + name + KIT digital + rule + + from + ^http://(www\.)?kitd\.com/ + to + https://$1kitd.com/ + + securecookie + + host + ^(?:www\.)?kitd\.com$ + name + .+ + + target + + + host + kitd.com + + + host + *.kitd.com + + + + + KIXEYE (partial) + + ruleset + + name + KIXEYE (partial) + rule + + + from + ^https?://cdn\.casualcollective\.com/ + to + https://s3.amazonaws.com/cdn.casualcollective.com/ + + + from + ^http://(bym-vx4-s|b(?:p|ym)-fb4-s\.cdn|d[di]-fb-cdn4|gp-fb-cdn4-s|wc-fb4-s(?:\.cdn)?)\.kixeye\.com/ + to + https://$1.kixeye.com/ + + + target + + + host + cdn.casualcollective.com + + + host + *.kixeye.com + + + host + *.cdn.kixeye.com + + + + + KKBOX.com + + ruleset + + name + KKBOX.com + rule + + from + ^http://(www\.)?kkbox\.com/ + to + https://$1kkbox.com/ + + securecookie + + host + ^www\.kkbox\.com$ + name + .+ + + target + + + host + kkbox.com + + + host + www.kkbox.com + + + + + KKH-Allianz + + ruleset + + name + KKH-Allianz + platform + mixedcontent + rule + + from + ^http://(?:www\.)?kkh-allianz\.de/ + to + https://www.kkh-allianz.de/ + + target + + + host + www.kkh-allianz.de + + + host + kkh-allianz.de + + + + + KKH.se + + ruleset + + name + KKH.se + platform + mixedcontent + rule + + + from + ^http://kkh\.se/ + to + https://kkh.se/ + + + from + ^http://www\.kkh\.se/ + to + https://www.kkh.se/ + + + target + + + host + www.kkh.se + + + host + kkh.se + + + + + KLM + + ruleset + + name + KLM + platform + mixedcontent + rule + + + from + ^http://klm\.com/ + to + https://www.klm.com/ + + + from + ^http://(mobile|www)\.klm\.com/ + to + https://$1.klm.com/ + + + target + + + host + klm.com + + + host + *.klm.com + + + + + KMH.se + + ruleset + + name + KMH.se + platform + mixedcontent + rule + + + from + ^http://kmh\.se/ + to + https://www.kmh.se/ + + + from + ^http://www\.kmh\.se/ + to + https://www.kmh.se/ + + + target + + + host + www.kmh.se + + + host + kmh.se + + + + + KOMO News (partial) + + ruleset + + name + KOMO News (partial) + rule + + from + ^https?://cf\.komo\.com/ + to + https://d27odwwbded9xq.cloudfront.net/ + + target + + host + cf.komo.com + + + + KPN + + ruleset + + name + KPN + rule + + + from + ^http://netmail\.hetnet\.nl/ + to + https://netmail.hetnet.nl/ + + + from + ^https?://(?:www\.)?kpn\.(?:com|nl)/ + to + https://www.kpn.com/ + + + from + ^http://home\.kpn\.nl/ + to + https://home.kpn.nl/ + + + from + ^https?://www\.kpnmail\.nl/ + to + https://www.kpn.nl/ + + + from + ^http://webmail\.kpnmail\.nl/ + to + https://webmail.kpnmail.nl/ + + + securecookie + + + host + ^.*\.hetnet\.nl$ + name + .* + + + host + ^webmail\.kpnmail\.nl$ + name + .* + + + target + + + host + *.hetnet.nl + + + host + kpn.com + + + host + *.kpn.com + + + host + kpn.nl + + + host + *.kpn.nl + + + host + *.kpnmail.nl + + + + + KPT.ch + + ruleset + + name + KPT.ch + rule + + from + ^http://(?:www\.)?kpt\.ch/ + to + https://www.kpt.ch/ + + securecookie + + host + ^(.*\.)?kpt\.ch$ + name + .* + + target + + + host + kpt.ch + + + host + www.kpt.ch + + + + + KProxy.com + + ruleset + + name + KProxy.com + rule + + from + ^http://(www\.)?kproxy\.com/ + to + https://$1kproxy.com/ + + securecookie + + host + ^(.*\.)?kproxy\.com$ + name + .* + + target + + + host + kproxy.com + + + host + *.kproxy.com + + + + + KQED.org (partial) + + ruleset + + name + KQED.org (partial) + rule + + + from + ^http://(a|u)\.s\.kqed\.(?:net|org)/ + to + https://$1.s.kqed.net/ + + + from + ^http://(?:www\.)?kqed\.org/(assets/|(?:controller|donate)(?:$|[?/])|favicon\.ico|lib/) + to + https://www.kqed.org/$1 + + + securecookie + + host + ^\.kqed\.org$ + name + ^_(?:chartbeat2|_qca|_utm\w)$ + + target + + + host + *.s.kqed.net + + + host + kqed.org + + + host + *.kqed.org + + + + + KSA Glass + + ruleset + + name + KSA Glass + rule + + from + ^http://(www\.)?ksaglass\.com/ + to + https://$1ksaglass.com/ + + securecookie + + host + ^\.ksaglass\.com$ + name + .+ + + target + + + host + ksaglass.com + + + host + *.ksaglass.com + + + + + KSL + + ruleset + + name + KSL + rule + + from + ^http://((?:img|local|static|www)\.)?ksl\.com/ + to + https://$1ksl.com/ + + securecookie + + host + ^\.ksl\.com$ + name + .+ + + target + + + host + ksl.com + + + host + *.ksl.com + + + + + KTH.se + + ruleset + + name + KTH.se + rule + + + from + ^http://kth\.se/ + to + https://www.kth.se/ + + + from + ^http://www\.kth\.se/ + to + https://www.kth.se/ + + + from + ^http://intra\.kth\.se/ + to + https://intra.kth.se/ + + + target + + + host + kth.se + + + host + www.kth.se + + + host + intra.kth.se + + + + + KVM-VPS.com + + ruleset + + name + KVM-VPS.com + rule + + from + ^http://(?:www\.)?kvm-vps\.com/ + to + https://www.kvm-vps.com/ + + target + + + host + kvm-vps.com + + + host + www.kvm-vps.com + + + + + KYPS.net + + ruleset + + name + KYPS.net + platform + firefox + rule + + from + ^http://(www\.)?kyps\.net/ + to + https://kyps.net/ + + securecookie + + + host + ^kyps\.net$ + name + .+ + + + host + ^www\.kyps\.net$ + name + .+ + + + target + + + host + kyps.net + + + host + www.kyps.net + + + + + Kabel Deutschland + + ruleset + + name + Kabel Deutschland + rule + + + from + ^http://(?:www\.)?kabeldeutschland\.de/ + to + https://www.kabeldeutschland.de/ + + + from + ^http://(?:www\.)?kabelmail\.de/ + to + https://www.kabelmail.de/ + + + from + ^https://kabelmail\.de/ + to + https://www.kabelmail.de/ + + + from + ^http://(newsletter|sso|static)\.kabelmail\.de/ + to + https://$1.kabelmail.de/ + + + securecookie + + host + ^(?:newsletter\.|sso\.|static\.|www\.)?kabelmail\.de$ + name + .+ + + target + + + host + kabeldeutschland.de + + + host + www.kabeldeutschland.de + + + host + kabelmail.de + + + host + *.kabelmail.de + + + + + Kabelkiosk.de + + ruleset + + name + Kabelkiosk.de + platform + mixedcontent + rule + + from + ^http://(www\.)?kabelkiosk\.de/ + to + https://www.kabelkiosk.de/ + + target + + + host + www.kabelkiosk.de + + + host + kabelkiosk.de + + + + + Kable Media Services (partial) + + ruleset + + name + Kable Media Services (partial) + rule + + + from + ^http://secure2\.insideknc\.com/ + to + https://secure2.insideknc.com/ + + + from + ^https?://(?:www\.)?kable\.com/ + to + https://www.kable.com/ + + + securecookie + + host + ^secure2\.insideknc\.com$ + name + .+ + + target + + + host + secure2.insideknc.com + + + host + kable.com + + + host + www.kable.com + + + + + Kachingle + + ruleset + + name + Kachingle + platform + mixedcontent + rule + + + from + ^http://kachingle\.com/ + to + https://kachingle.com/ + + + from + ^http://(www|downloads|assets|medallion)\.kachingle\.com/ + to + https://$1.kachingle.com/ + + + securecookie + + host + ^(.+\.)?kachingle\.com$ + name + .* + + target + + + host + kachingle.com + + + host + www.kachingle.com + + + host + downloads.kachingle.com + + + host + assets.kachingle.com + + + host + medallion.kachingle.com + + + + + Kagi + + ruleset + + name + Kagi + rule + + + from + ^http://kagi\.com/ + to + https://kagi.com/ + + + from + ^http://(order|pq|secure|shop|shopkeeper|store|suppliersignup|support|www)\.kagi\.com/ + to + https://$1.kagi.com/ + + + securecookie + + host + ^(order|pq|secure|shop|shopkeeper|store|suppliersignup|support|www)\.kagi\.com$ + name + .+ + + target + + + host + kagi.com + + + host + order.kagi.com + + + host + pq.kagi.com + + + host + secure.kagi.com + + + host + shop.kagi.com + + + host + shopkeeper.kagi.com + + + host + store.kagi.com + + + host + suppliersignup.kagi.com + + + host + support.kagi.com + + + host + www.kagi.com + + + + + KaiRo (partial) + + ruleset + + name + KaiRo (partial) + rule + + from + ^http://owncloud\.kairo\.at/ + to + https://owncloud.kairo.at/ + + securecookie + + host + ^owncloud\.kairo\.at$ + name + .* + + target + + host + owncloud.kairo.at + + + + Kaiser Systeme (partial) + + ruleset + + name + Kaiser Systeme (partial) + rule + + from + ^http://(www\.)?kaisersysteme\.com/(.+/image|.+/stylesheet)s/ + to + https://$1kaisersysteme.com/$2s/ + + target + + + host + kaisersysteme.com + + + host + www.kaisersysteme.com + + + + + Kali.org (partial) + + ruleset + + name + Kali.org (partial) + rule + + from + ^http://((?:bugs|forums|www)\.)?kali\.org/ + to + https://$1kali.org/ + + securecookie + + host + ^forums\.kali\.org$ + name + .+ + + target + + + host + kali.org + + + host + *.kali.org + + + + + Kalooga.com (partial) + + ruleset + + name + Kalooga.com (partial) + rule + + from + ^http://publishing\.kalooga\.com/ + to + https://publishing.kalooga.com/ + + target + + host + publishing.kalooga.com + + + + Kaltura (partial) + + ruleset + + name + Kaltura (partial) + rule + + + from + ^https?://(?:akamai|cdnb?|cdnbakmi)\.kaltura\.com/ + to + https://www.kaltura.com/ + + + from + ^http://((?:corp|www|www-stats)\.)?kaltura\.com/ + to + https://$1kaltura.com/ + + + from + ^http://cdn(?:sec)?akmi\.kaltura\.com/ + to + https://cdnsecakmi.kaltura.com/ + + + from + ^http://cdnapi(?:sec)?\.kaltura\.com/ + to + https://cdnapisec.kaltura.com/ + + + target + + + host + kaltura.com + + + host + *.kaltura.com + + + + + Kameleoon.com + + ruleset + + name + Kameleoon.com + rule + + from + ^http://(static\.|www\.)?kameleoon\.com/ + to + https://$1kameleoon.com/ + + securecookie + + host + ^(?:www)?\.kameleoon\.com$ + name + .+ + + target + + + host + kameleoon.com + + + host + *.kameleoon.com + + + + + Kampyle (partial) + + ruleset + + name + Kampyle (partial) + platform + mixedcontent + rule + + + from + ^https?://kampyle\.com/ + to + https://www.kampyle.com/ + + + from + ^http://www\.kampyle\.com/(feedback_form/|images/|login|logos/|min/|static/|test/) + to + https://www.kampyle.com/$1 + + + securecookie + + host + ^www\.kampyle\.com$ + name + ^FF_\w+$ + + target + + + host + kampyle.com + + + host + www.kampyle.com + + + + + Kaneva (partial) + + ruleset + + name + Kaneva (partial) + rule + + from + ^http://(www\.)?kaneva\.com/(css/|images/|jscript/|(?:loginSecure|register/kaneva/registerInfo)\.aspx) + to + https://$1kaneva.com/$2 + + target + + + host + kaneva.com + + + host + www.kaneva.com + + + + + Kangurum + + ruleset + + name + Kangurum + rule + + from + ^http://(www\.)?kangurum\.com\.tr/ + to + https://www.kangurum.com.tr/ + + securecookie + + host + ^www\.kangurum\.com\.tr$ + name + .* + + target + + + host + www.kangurum.com.tr + + + host + kangurum.com.tr + + + + + Kansas.com (partial) + + ruleset + + name + Kansas.com (partial) + rule + + from + ^http://customercare\.kansas\.com/ + to + https://customercare.kansas.com/ + + securecookie + + host + ^customercare\.kansas\.com$ + name + .+ + + target + + host + customercare.kansas.com + + + + Kantar Latam Portal + + ruleset + + name + Kantar Latam Portal + rule + + from + ^http://(?:www\.)?kantarlatam\.com/ + to + https://www.kantarlatam.com/ + + securecookie + + host + ^.*\.kantarlatam\.com$ + name + .* + + target + + + host + kantarlatam.com + + + host + *.kantarlatam.com + + + + + Kantara Initiative.org + + ruleset + + name + Kantara Initiative.org + rule + + from + ^http://(idp\.|www\.)?kantarainitiative\.org/ + to + https://$1kantarainitiative.org/ + + securecookie + + host + ^(?:idp\.|www\.)?kantarainitiative.org$ + name + .+ + + target + + + host + kantarainitiative.org + + + host + *.kantarainitiative.org + + + + + Kapiton.se + + ruleset + + name + Kapiton.se + rule + + from + ^http://(www\.)?kapiton\.se/ + to + https://$1kapiton.se/ + + securecookie + + host + ^\.?kapiton\.se$ + name + .+ + + target + + + host + kapiton.se + + + host + *.kapiton.se + + + + + Kapsi.fi (very partial) + + ruleset + + exclusion + + pattern + ^http://koti\.kapsi\.fi/+~ + + name + Kapsi.fi (very partial) + rule + + + from + ^http://(www\.)?kapsi\.fi/ + to + https://www.kapsi.fi/ + + + from + ^https://kapsi\.fi/ + to + https://www.kapsi.fi/ + + + from + ^http://(koti|tuki|blog|forum|admin)\.kapsi\.fi/ + to + https://$1.kapsi.fi/ + + + target + + + host + www.kapsi.fi + + + host + kapsi.fi + + + host + koti.kapsi.fi + + + host + tuki.kapsi.fi + + + host + blog.kapsi.fi + + + host + forum.kapsi.fi + + + host + admin.kapsi.fi + + + + + Kapt Cha + + ruleset + + name + Kapt Cha + rule + + from + ^http://ssl\.kaptcha\.com/ + to + https://ssl.kaptcha.com/ + + securecookie + + host + ^\.kaptcha\.com$ + name + .* + + target + + host + ssl.kaptcha.com + + + + Karagarga + + ruleset + + name + Karagarga + rule + + from + ^http://(?:www\.)?karagarga\.net/ + to + https://karagarga.net/ + + target + + + host + karagarga.net + + + host + www.karagarga.net + + + + + Kariera.gr + + ruleset + + name + Kariera.gr + rule + + from + ^http://(\w+\.)?kariera\.gr/ + to + https://$1kariera.gr/ + + securecookie + + host + ^(.*\.)?kariera\.gr$ + name + .* + + target + + host + *.kariera.gr + + + + Karlsruhe Institute of Technology (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.bibliothek\.kit\.edu/+(?!\w+/wp-(?:content|includes)/) + + name + Karlsruhe Institute of Technology (partial) + rule + + + from + ^http://(?:www\.)?alumni\.kit\.edu/ + to + https://www.rsm.kit.edu/ + + + from + ^http://(?:www\.)?((?:bibliothek|informatik|innovation|lists|pst|ptka|radio|rsm|scc)\.)?kit\.edu/ + to + https://www.$1kit.edu/ + + + from + ^http://(blog\.bibliothek|campus|(?:jplag|svn)\.ipd|intranet|owa|(?:idp|wsm10)\.scc|(?:ilias\.)?stadium|www\.stiftung)\.kit\.edu/ + to + https://$1.kit.edu/ + + + from + ^http://(?:www\.)?cs\.kit\.edu/+ + to + https://www.informatik.kit.edu/ + + + from + ^http://www\.zib\.kit\.edu/(?:.*) + to + https://www.kit.edu/studieren/3052.php + + + from + ^http://(?:www\.)?(zvw\.)?uni-karlsruhe\.de/ + to + https://www.$1uni-karlsruhe.de/ + + + from + ^http://(mensa\.akk|www\.ubka)\.uni-karlsruhe\.de/ + to + https://$1.uni-karlsruhe.de/ + + + from + ^http://www\.rz\.uni-karlsruhe\.de/+ + to + https://www.scc.kit.edu/ + + + securecookie + + host + ^.+\.kit\.edu$ + name + .+ + + target + + + host + kit.edu + + + host + *.kit.edu + + + host + uni-karlsruhe.de + + + host + *.uni-karlsruhe.de + + + + + Kart Fighter.com (partial) + + ruleset + + name + Kart Fighter.com (partial) + rule + + + from + ^http://(?:app\.|www\.)?kartfighter\.com/ + to + https://www.kartfighter.com/ + + + from + ^http://(files|redbullracingadmin|worldtour)\.kartfighter\.com/ + to + https://$1.kartfighter.com/ + + + securecookie + + host + ^(?:files|redbullracingadmin|worldtour|www)\.kartfighter\.com$ + name + .+ + + target + + + host + kartfighter.com + + + host + *.kartfighter.com + + + + + Karwansaray Publishers (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?karwansaraypublishers\.com/+cms(?!/cache|/css|favicon\.ico|/images/|modules/|plugins/|templates/) + + name + Karwansaray Publishers (partial) + rule + + from + ^http://(?:www\.)?karwansaraypublishers\.com/ + to + https://karwansaraypublishers.com/ + + target + + + host + karwansaraypublishers.com + + + host + www.karwansaraypublishers.com + + + + + Karwansaray Publishers.com (false MCB) + + ruleset + + name + Karwansaray Publishers.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?karwansaraypublishers\.com/ + to + https://$1karwansaraypublishers.com/ + + securecookie + + host + ^(?:www)?\.karwansaraypublishers\.com$ + name + .+ + + target + + + host + karwansaraypublishers.com + + + host + *.karwansaraypublishers.com + + + + + Kaspersky.com (partial) + + ruleset + + name + Kaspersky.com (partial) + rule + + + from + ^http://(academy|anti-theft|center|companyaccount|eugene|manage-tablet|my|sas|support|trusted|uis)\.kaspersky\.com/ + to + https://$1.kaspersky.com/ + + + from + ^http://tr1\.kaspersy\.com/ + to + https://kaspersky-com.d2.sc.omtrdc.net/ + + + securecookie + + + host + ^\.kaspersky\.com$ + name + ^s_\w+$ + + + host + ^(?:\.anti-theft|center|\.eugene|\.?my|\.?support)\.kaspersky\.com$ + name + .+ + + + target + + host + *.kaspersky.com + + + + Kat de Paris + + ruleset + + name + Kat de Paris + rule + + + from + ^http://(www\.)?kat-de-paris\.fr/ + to + https://$1kat-de-paris.fr/ + + + from + ^https://46\.255\.160\.240/ + to + https://www.kat-de-paris.fr/ + + + securecookie + + host + ^\.kat-de-paris\.fr$ + name + .+ + + target + + + host + 46.255.160.240 + + + host + kat-de-paris.fr + + + host + *.kat-de-paris.fr + + + + + Katholieke Universiteit Leuven (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?esat\.kuleuven\.be/+cosic(?:$|[?/]) + + name + Katholieke Universiteit Leuven (partial) + rule + + + from + ^http://(?:www\.)?(esat\.)?kuleuven\.be/ + to + https://www.$1kuleuven.be/ + + + from + ^http://(aai|activatie|admin|alumni|associatie|bib|cwisdb|(?:www\.)?dml|(?:bronx|www\.cosic|securehomes)\.esat|owa\.groupware|icts|idp|ludit|netlogin|nieuws|password|status|stijl|owa\.student|toledo|wachtwoord|webmail)\.kuleuven\.be/ + to + https://$1.kuleuven.be/ + + + from + ^http://organigram\.kuleuven\.be/$ + to + https://www.kuleuven.be/wieiswie/nl/unit/50000050 + + + securecookie + + host + .+\.kuleuven\.be$ + name + .+ + + target + + + host + kuleuven.be + + + host + *.kuleuven.be + + + + + Kathrein + + ruleset + + name + Kathrein + rule + + from + ^https?://(?:www\.)?kathrein\.de/ + to + https://www.kathrein.de/ + + securecookie + + host + ^www\.kathrein\.de$ + name + .* + + target + + + host + kathrein.de + + + host + www.kathrein.de + + + + + Kattare.com + + ruleset + + name + Kattare.com + platform + mixedcontent + rule + + from + ^http://(js\.|www\.)?kattare\.com/ + to + https://$1kattare.com/ + + securecookie + + host + ^(?:\.?www\.)?kattare\.com$ + name + .+ + + target + + + host + kattare.com + + + host + *.kattare.com + + + + + Katylee.com + + ruleset + + name + Katylee.com + rule + + from + ^http://(www\.)?katylee\.com/ + to + https://$1katylee.com/ + + securecookie + + host + ^\.katylee\.com$ + name + .+ + + target + + + host + katylee.com + + + host + *.katylee.com + + + + + Kayak + + ruleset + + name + Kayak + rule + + + from + ^http://(?:www\.)?kayak\.com/ + to + https://www.kayak.com/ + + + from + ^http://(?:www\.)?kayak\.co\.uk/ + to + https://www.kayak.co.uk/ + + + target + + + host + kayak.com + + + host + www.kayak.com + + + host + www.kayak.co.uk + + + host + kayak.co.uk + + + + + Kayako (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|forge|forums|wiki|www)\. + + name + Kayako (partial) + rule + + + from + ^http://media\.kayako\.com/ + to + https://d13f94alzxkv7n.cloudfront.net/ + + + from + ^http://([\w-]+)\.kayako\.com/ + to + https://$1.kayako.com/ + + + securecookie + + host + .+\.kayako\.com$ + name + .+ + + target + + host + *.kayako.com + + + + Kaywa (partial) + + ruleset + + name + Kaywa (partial) + rule + + from + ^http://qrcode\.kaywa\.com/ + to + https://qrcode.kaywa.com/ + + target + + host + qrcode.kaywa.com + + + + Keelog.com + + ruleset + + name + Keelog.com + rule + + from + ^http://(www\.)?keelog\.com/ + to + https://$1keelog.com/ + + target + + + host + keelog.com + + + host + www.keelog.com + + + + + Keenot.es (partial) + + ruleset + + name + Keenot.es (partial) + rule + + from + ^http://(www\.)?keenot\.es/ + to + https://$1keenot.es/ + + target + + + host + keenot.es + + + host + www.keenot.es + + + + + Keepassx + + ruleset + + name + Keepassx + rule + + from + ^http://(www\.)?keepassx\.org/ + to + https://www.keepassx.org/ + + target + + + host + www.keepassx.org + + + host + keepassx.org + + + + + Kei.pl (partial) + + ruleset + + name + Kei.pl (partial) + rule + + + from + ^http://(www\.)?kei\.pl/(favicon\.ico$|css/|gfx/|swf/) + to + https://www.kei.pl/$2 + + + from + ^http://panel\.kei\.pl/ + to + https://panel.kei.pl/ + + + securecookie + + host + ^panel\.kei\.pl$ + name + .* + + target + + + host + kei.pl + + + host + panel.kei.pl + + + host + www.kei.pl + + + + + Kelley Blue Book Co. + + ruleset + + name + Kelley Blue Book Co. + platform + mixedcontent + rule + + + from + ^http://(s1\.|www\.)?kbb\.com/ + to + https://$1kbb.com/ + + + from + ^http://file\.k(?:bb|elleybluebookimages)\.com/ + to + https://file.kbb.com/ + + + securecookie + + host + ^(.*\.)?kbb\.com$ + name + .* + + target + + + host + kbb.com + + + host + *.kbb.com + + + host + file.kelleybluebookimages.com + + + + + Kenai.com + + ruleset + + name + Kenai.com + rule + + from + ^http://(asset-\d\.|www\.)?kenai\.com/ + to + https://$1kenai.com/ + + securecookie + + host + ^(?:asset-\d\.)?kenai\.com$ + name + .+ + + target + + + host + kenai.com + + + host + *.kenai.com + + + + + Kenexa (partial) + + ruleset + + name + Kenexa (partial) + rule + + + from + ^https?://(?:www\.)?brassring\.com/ + to + https://www.kenexa.com/recruitment-technology/complex-global-enterprise + + + from + ^http://sjobs\.brassring\.com/ + to + https://sjobs.brassring.com/ + + + from + ^https?://(?:www\.)?kenexa(worldconference)?.com/ + to + https://www.kenexa$1.com/ + + + securecookie + + + host + ^sjobs\.brassring\.com$ + name + .* + + + host + ^www\.kenexa(worldconference)?\.com$ + name + .* + + + target + + + host + brassring.com + + + host + *.brassring.com + + + host + kenexa.com + + + host + www.kenexa.com + + + host + kenexaworldconference.com + + + host + www.kenexaworldconference.com + + + + + Kensington + + ruleset + + name + Kensington + rule + + from + ^http://(www\.)?(eshop\.)?kensington\.com/ + to + https://$1$2kensington.com/ + + securecookie + + host + ^.+\.kensington\.com$ + name + .+ + + target + + + host + kensington.com + + + host + *.kensington.com + + + host + www.eshop.kensington.com + + + + + Kent Backman.com (partial) + + ruleset + + name + Kent Backman.com (partial) + rule + + from + ^http://b\.kentbackman\.com/ + to + https://b.kentbackman.com/ + + target + + host + b.kentbackman.com + + + + Kentico + + ruleset + + name + Kentico + rule + + from + ^http://(devnet\.|www\.)?kentico\.com/ + to + https://$1kentico.com/ + + securecookie + + host + ^.+\.kentico\.com$ + name + .+ + + target + + + host + kentico.com + + + host + *.kentico.com + + + + + Kerbal Space Program (partial) + + ruleset + + name + Kerbal Space Program (partial) + rule + + from + ^http://(www\.)?kerbalspaceprogram\.com/ + to + https://www.kerbalspaceprogram.com/ + + target + + + host + kerbalspaceprogram.com + + + host + www.kerbalspaceprogram.com + + + + + Kernel.org + + ruleset + + exclusion + + pattern + ^http://(?:planet|vger|wireless)\. + + name + Kernel.org + rule + + + from + ^https?://kernel\.org/ + to + https://www.kernel.org/ + + + from + ^http://([\w\.-]+)\.kernel\.org/ + to + https://$1.kernel.org/ + + + securecookie + + host + ^.*\.kernel\.org$ + name + .+ + + target + + + host + kernel.org + + + host + *.kernel.org + + + + + Ketchum.com (partial) + + ruleset + + name + Ketchum.com (partial) + rule + + from + ^http://facebook\.ketchum\.com/ + to + https://facebook.ketchum.com/ + + securecookie + + host + ^\.?facebook\.ketchum\.com$ + name + .+ + + target + + host + *.ketchum.com + + + + KeyDrive (partial) + + ruleset + + name + KeyDrive (partial) + rule + + + from + ^http://help\.moniker\.com/ + to + https://support.snapnames.com/ + + + from + ^http://(domainauctions\.|www\.)?moniker\.com/ + to + https://$1moniker.com/ + + + from + ^http://(moniker\.|www\.)?snapnames\.com/ + to + https://moniker.snapnames.com/ + + + target + + + host + moniker.com + + + host + *.moniker.com + + + host + snapnames.com + + + host + *.snapnames.com + + + + + KeyGhost.com (partial) + + ruleset + + name + KeyGhost.com (partial) + rule + + from + ^http://secure\.keyghost\.com/ + to + https://secure.keyghost.com/ + + target + + host + secure.keyghost.com + + + + Keybase.io + + ruleset + + name + Keybase.io + rule + + from + ^http://(?:www\.)?keybase\.io/ + to + https://keybase.io/ + + target + + + host + keybase.io + + + host + *.keybase.io + + + + + Keyerror.com + + ruleset + + name + Keyerror.com + platform + firefox + rule + + from + ^http://(www\.)?keyerror\.com/ + to + https://keyerror.com/ + + securecookie + + + host + ^keyerror\.com$ + name + .+ + + + host + ^www.keyerror\.com$ + name + .+ + + + target + + + host + keyerror.com + + + host + www.keyerror.com + + + + + Keymile.com (partial) + + ruleset + + name + Keymile.com (partial) + rule + + + from + ^http://(?:www\.)?keymile\.com/(\?.*)?$ + to + https://extranet.keymile.com/en/ + + + from + ^http://(?:www\.)?keymile\.com/en/ + to + https://extranet.keymile.com/en/ + + + from + ^http://extranet\.keymile\.com/ + to + https://extranet.keymile.com/ + + + securecookie + + host + ^extranet\.keymile\.com$ + name + .+ + + target + + + host + keymile.com + + + host + *.keymile.com + + + + + Khan Academy + + ruleset + + name + Khan Academy + rule + + from + ^http://(www\.)?k(asandbox|astatic|hanacademy)\.org/ + to + https://$1k$2.org/ + + securecookie + + host + ^www\.khanacademy\.org$ + name + .* + + target + + + host + kastatic.org + + + host + www.kastatic.org + + + host + kasandbox.org + + + host + www.kasandbox.org + + + host + khanacademy.org + + + host + www.khanacademy.org + + + + + Khronos Group (partial) + + ruleset + + name + Khronos Group (partial) + rule + + + from + ^https?://(?:www\.)?khronos\.org/ + to + https://www.khronos.org/ + + + from + ^https?://\w\w\.khronos\.org/assets/ + to + https://www.khronos.org/assets/ + + + securecookie + + host + ^www\.khronos\.org$ + name + .* + + target + + + host + khronos.org + + + host + *.khronos.org + + + + + Kick Ass + + ruleset + + name + Kick Ass + rule + + from + ^http://(hi\.|www\.)?kickassapp\.com/ + to + https://$1kickassapp.com/ + + securecookie + + host + ^\.?kickassapp\.com$ + name + .* + + target + + + host + kickassapp.com + + + host + *.kickassapp.com + + + + + KickApps (partial) + + ruleset + + name + KickApps (partial) + rule + + + from + ^http://(affiliate|community)\.kickapps\.com/ + to + https://$1.kickapps.com/ + + + from + ^http://media\.kickstatic\.com/ + to + https://media.kickstatic.com/ + + + securecookie + + host + ^(?:affiliate|community)\.kickapps\.com$ + name + .+ + + target + + + host + *.kickapps.com + + + host + media.kickstatic.com + + + + + KickAssVPS.com + + ruleset + + name + KickAssVPS.com + platform + mixedcontent + rule + + from + ^http://(manage\.|www\.)?kickassvps\.com/ + to + https://$1kickassvps.com/ + + securecookie + + host + ^manage\.kickassvps\.com$ + name + .+ + + target + + + host + kickassvps.com + + + host + *.kickassvps.com + + + + + KickNews + + ruleset + + name + KickNews + rule + + + from + ^http://(www\.)?(arsenal|kick)news\.net/ + to + https://$1$2news.net/ + + + from + ^http://(?:www\.)?kicknews\.co(?:\.uk|com)/ + to + https://www.kicknews.com/ + + + securecookie + + host + ^(?:.*\.)?(?:arsenal|kick)news\.(?:com|net)$ + name + .+ + + target + + + host + arsenalnews.net + + + host + *.arsenalnews.net + + + host + kicknews.* + + + host + kicknews.co.uk + + + host + www.kicknews.co.uk + + + host + *.kicknews.com + + + host + *.kicknews.net + + + + + KickassTorrents + + ruleset + + name + KickassTorrents + rule + + + from + ^http://(?:www\.)?kat\.ph/ + to + https://kat.ph/ + + + from + ^http://(www\.)?kickass\.to/ + to + https://$1kickass.to/ + + + from + ^http://(?:www\.)?kickasstorrents\.com/ + to + https://kickass.to/ + + + from + ^http://kastatic\.com/ + to + https://kastatic.com/ + + + securecookie + + + host + ^kickass\.to$ + name + .+ + + + host + ^\.kat\.ph$ + name + .* + + + target + + + host + kat.ph + + + host + *.kat.ph + + + host + kickass.to + + + host + www.kickass.to + + + host + kickasstorrents.com + + + host + www.kickasstorrents.com + + + host + kastatic.com + + + + + Kickstarter (partial) + + ruleset + + name + Kickstarter (partial) + rule + + + from + ^http://kickstarter\.com/ + to + https://kickstarter.com/ + + + from + ^http://www\.kickstarter\.com/ + to + https://www.kickstarter.com/ + + + from + ^http://api\.kickstarter\.com/ + to + https://api.kickstarter.com/ + + + securecookie + + host + ^api\.kickstarter\.com$ + name + .+ + + target + + + host + kickstarter.com + + + host + *.kickstarter.com + + + + + Kicktraq + + ruleset + + name + Kicktraq + rule + + from + ^http://(www\.)?kicktraq\.com/ + to + https://$1kicktraq.com/ + + securecookie + + host + ^www\.kicktraq\.com$ + name + .* + + target + + + host + kicktraq.com + + + host + www.kicktraq.com + + + + + Kids Foot Locker + + ruleset + + name + Kids Foot Locker + rule + + + from + ^https?://(?:www\.)?kidsfootlocker\.com/ + to + https://www.kidsfootlocker.com/ + + + from + ^http://m\.kidsfootlocker\.com/ + to + https://m.kidsfootlocker.com/ + + + securecookie + + host + ^.*\.kidsfootlocker\.com$ + name + .+ + + target + + + host + kidsfootlocker.com + + + host + *.kidsfootlocker.com + + + host + *.www.kidsfootlocker.com + + + + + KidsHealth/TeensHealth + + ruleset + + name + KidsHealth/TeensHealth + rule + + + from + ^http://(secure02|websrv01)\.kidshealth\.org/ + to + https://$1.kidshealth.org/ + + + from + ^http://(www\.)?kidshealth\.org/ + to + https://secure02.kidshealth.org/ + + + from + ^http://(www\.)?teenshealth\.org/?$ + to + https://secure02.kidshealth.org/teen/ + + + from + ^http://(www\.)?teenshealth\.org/([^?]+) + to + https://secure02.kidshealth.org/$2 + + + securecookie + + host + ^(secure02|websrv01)\.kidshealth\.org$ + name + .+ + + target + + + host + kidshealth.org + + + host + secure02.kidshealth.org + + + host + websrv01.kidshealth.org + + + host + www.kidshealth.org + + + host + teenshealth.org + + + host + www.teenshealth.org + + + + + Kikatek + + ruleset + + name + Kikatek + rule + + from + ^https?://(?:(?:www)\.)?kikatek\.com/ + to + https://www.kikatek.com/ + + securecookie + + host + ^.*\.kikatek\.com$ + name + .* + + target + + + host + kikatek.com + + + host + *.kikatek.com + + + + + Kimberly-Clark (partial) + + ruleset + + name + Kimberly-Clark (partial) + rule + + from + ^http://(?:www\.)?kimberly-clark\.com(\.au|\.cn)?/ + to + https://www.kimberly-clark.com$1/ + + securecookie + + host + ^www\.kimberly-clark\.com(?:\.au|\.cn)?$ + name + .+ + + target + + + host + kimberly-clark.com + + + host + www.kimberly-clark.com + + + host + kimberly-clark.com.* + + + host + www.kimberly-clark.com.* + + + + + Kinesis-Ergo.com + + ruleset + + name + Kinesis-Ergo.com + rule + + from + ^http://(www\.)?kinesis-ergo\.com/ + to + https://$1kinesis-ergo.com/ + + target + + + host + kinesis-ergo.com + + + host + www.kinesis-ergo.com + + + + + Kinfolk.com (false MCB) + + ruleset + + name + Kinfolk.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?kinfolk\.com/(?!favicon\.ico|(?:join|my-account)(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1kinfolk.com/ + + securecookie + + host + ^(?:w*\.)?kinfolk\.com$ + name + .+ + + target + + + host + kinfolk.com + + + host + *.kinfolk.com + + + + + Kinfolk.com (partial) + + ruleset + + name + Kinfolk.com (partial) + rule + + from + ^http://(www\.)?kinfolk\.com/(?=favicon\.ico|(?:join|my-account)(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1kinfolk.com/ + + target + + + host + kinfolk.com + + + host + www.kinfolk.com + + + + + King's College London (partial) + + ruleset + + name + King's College London (partial) + rule + + from + ^http://(alumni\.|onespace\.|www\.)?kcl\.ac\.uk/ + to + https://$1kcl.ac.uk/ + + securecookie + + host + ^\w.*\.kcl\.ac\.uk$ + name + .* + + target + + + host + kcl.ac.uk + + + host + *.kcl.ac.uk + + + + + King.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?king\.com/(?!(?:login|signup)\.jsp) + + name + King.com (partial) + rule + + + from + ^http://(adtrack\.|www\.)?king\.com/ + to + https://$1king.com/ + + + from + ^https?://i\d\.midasplayer\.com/ + to + https://king.pantherssl.com/ + + + securecookie + + host + ^adtrack\.king\.com$ + name + .+ + + target + + + host + king.com + + + host + *.king.com + + + host + *.midasplayer.com + + + + + KingHost (partial) + + ruleset + + name + KingHost (partial) + rule + + + from + ^http://(www\.)?kinghost\.com\.br/ + to + https://$1kinghost.com.br/ + + + from + ^http://(live|painel2?|web\d{3}|webftp|webmail)\.kinghost\.net/ + to + https://$1.kinghost.net/ + + + from + ^https?://live\.kinghost\.(?:com\.br|net)/ + to + https://live.kinghost.net/ + + + securecookie + + + host + ^\.kinghost\.com\.br$ + name + .+ + + + host + ^(?:painel2?|webftp|webmail)\.kinghost\.net$ + name + .+ + + + target + + + host + kinghost.com.br + + + host + *.kinghost.com.br + + + host + *.kinghost.net + + + + + Kings Road Merch + + ruleset + + name + Kings Road Merch + rule + + from + ^http://(?:secure\.|www\.)?kingsroadmerch\.com/ + to + https://secure.kingsroadmerch.com/ + + securecookie + + host + ^(?:secure)?\.kingsroadmerch\.com$ + name + .+ + + target + + + host + kingsroadmerch.com + + + host + *.kingsroadmerch.com + + + + + Kingston.com (partial) + + ruleset + + name + Kingston.com (partial) + rule + + + from + ^http://media\.kingston\.com/ + to + https://a248.e.akamai.net/f/1949/2751/8/media.kingston.com/ + + + from + ^http://(legacy|shop)\.kingston\.com/ + to + https://$1.kingston.com/ + + + securecookie + + host + ^legacy\.kingston\.com$ + name + .+ + + target + + host + *.kingston.com + + + + Kinja (partial) + + ruleset + + name + Kinja (partial) + rule + + from + ^http://api\.kinja\.com/ + to + https://api.kinja.com/ + + target + + host + api.kinja.com + + + + Kinko.me + + ruleset + + name + Kinko.me + rule + + from + ^http://(www\.)?kinko\.me/ + to + https://$1kinko.me/ + + securecookie + + host + ^(?:www)?\.kinko\.me$ + name + .+ + + target + + + host + kinko.me + + + host + *.kinko.me + + + + + Kinotehnik + + ruleset + + name + Kinotehnik + rule + + from + ^https?://(?:www\.)?kinotehnik\.com/ + to + https://www.kinotehnik.com/ + + securecookie + + host + ^www\.kinotehnik\.com$ + name + .* + + target + + + host + kinotehnik.com + + + host + www.kinotehnik.com + + + + + Kintera Network + + ruleset + + name + Kintera Network + rule + + + from + ^http://(?:www\.)?kintera\.(com|org)/ + to + https://www.kintera.$1/ + + + from + ^http://(?:[\w-]+\.){1,2}kintera\.org/(?=[^/]+/[^/]) + to + https://www.kintera.org/ + + + target + + + host + kintera.com + + + host + www.kintera.com + + + host + kintera.org + + + host + *.kintera.org + + + + + Kirjoitusalusta + + ruleset + + name + Kirjoitusalusta + rule + + from + ^http://([^/:@]+\.)?kirjoitusalusta\.fi/ + to + https://$1kirjoitusalusta.fi/ + + securecookie + + host + ^(?:.*\.)?kirjoitusalusta\.fi + name + .* + + target + + + host + kirjoitusalusta.fi + + + host + *.kirjoitusalusta.fi + + + + + Kirsle.net + + ruleset + + name + Kirsle.net + rule + + from + ^http://(www\.)?kirsle\.net/ + to + https://$1kirsle.net/ + + securecookie + + host + ^(www\.)?kirsle\.net$ + name + .+ + + target + + + host + kirsle.net + + + host + www.kirsle.net + + + + + Kismetwireless.net + + ruleset + + name + Kismetwireless.net + rule + + from + ^http://(?:www\.)?kismetwireless\.net/ + to + https://kismetwireless.net/ + + target + + + host + kismetwireless.net + + + host + www.kismetwireless.net + + + + + Kitapyurdu + + ruleset + + name + Kitapyurdu + platform + mixedcontent + rule + + from + ^http://(www\.)?kitapyurdu\.com/ + to + https://www.kitapyurdu.com/ + + securecookie + + host + ^www\.kitapyurdu\.com$ + name + .* + + target + + + host + www.kitapyurdu.com + + + host + kitapyurdu.com + + + + + Kitchen Riddles.com + + ruleset + + name + Kitchen Riddles.com + rule + + from + ^http://(?:www\.)?kitchenriddles\.com/ + to + https://kitchenriddles.com/ + + securecookie + + host + ^\.kitchenriddles\.com$ + name + .+ + + target + + + host + kitchenriddles.com + + + host + *.kitchenriddles.com + + + + + Kite Packaging.co.uk + + ruleset + + name + Kite Packaging.co.uk + rule + + from + ^http://(www\.)?kitepackaging\.co\.uk/(?=[cC]atapult/|favicon\.ico|images/|stylesandscripts/) + to + https://$1kitepackaging.co.uk/ + + target + + + host + kitepackaging.co.uk + + + host + www.kitepackaging.co.uk + + + + + Kiva.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?kiva\.org/(?!ajax/|favicon\.ico|images/|img/|js/|js-lib/|(?:community/teams/my-teams|help/forgot-password|login|oauth/authorize|profile|register)(?:$|\?|/)|rgit\w{40}-\d/) + + name + Kiva.org (partial) + rule + + + from + ^https://cms\.kiva\.org\.s3\.amazonaws\.com/ + to + https://s3-us-west-1.amazonaws.com/cms.kiva.org.s3.amazonaws.com/ + + + from + ^http://(fellowsblog\.|pages\.)?kiva\.org/ + to + https://$1kiva.org/ + + + from + ^http://(?:l3-[12]|level3cdn|www|zip)\.kiva\.org/ + to + https://www.kiva.org/ + + + from + ^http://mail\.kiva\.org/ + to + https://mail.google.com/a/kiva.org + + + from + ^http://s3(?:-[12])?\.kiva\.org/ + to + https://s3.amazonaws.com/s3.kiva.org/ + + + securecookie + + host + ^(?:\.?pages|zip)\.kiva\.org$ + name + .+ + + target + + + host + kiva.org + + + host + *.kiva.org + + + + + Kivo.com + + ruleset + + name + Kivo.com + rule + + from + ^http://(www\.)?kivo\.com/ + to + https://$1kivo.com/ + + target + + + host + kivo.com + + + host + www.kivo.com + + + + + KiwiIRC.com + + ruleset + + name + KiwiIRC.com + rule + + from + ^http://(www\.)?kiwiirc\.com/ + to + https://$1kiwiirc.com/ + + securecookie + + host + ^\.?kiwiirc\.com$ + name + .+ + + target + + + host + kiwiirc.com + + + host + *.kiwiirc.com + + + + + KlimaSchutzPartner Berlin + + ruleset + + name + KlimaSchutzPartner Berlin + rule + + from + ^https?://(?:www\.)?klimaschutzpartner-berlin\.de/ + to + https://www.klimaschutzpartner-berlin.de/ + + securecookie + + host + ^www\.klimaschutzpartner-berlin\.de$ + name + .* + + target + + + host + klimaschutzpartner-berlin.de + + + host + www.klimaschutzpartner-berlin.de + + + + + Klinika.zdravie.sk + + ruleset + + name + Klinika.zdravie.sk + rule + + from + ^http://klinika\.zdravie\.sk/ + to + https://klinika.zdravie.sk/ + + target + + host + klinika.zdravie.sk + + + + Klubitus.org + + ruleset + + name + Klubitus.org + rule + + from + ^http://(www\.)?klubitus\.org/ + to + https://$1klubitus.org/ + + securecookie + + host + ^klubitus\.org$ + name + .+ + + target + + + host + www.klubitus.org + + + host + klubitus.org + + + + + Kmart.com (partial) + + ruleset + + name + Kmart.com (partial) + rule + + + from + ^http://(?:www\.)?kmart\.com/(?=favicon\.ico|ue/|\d+/ue/) + to + https://www.kmart.com/ + + + from + ^http://(birthdayclub|c|fashionclub|playdateplace|stylesipblog)\.kmart\.com/ + to + https://$1.kmart.com/ + + + from + ^http://om\.kmart\.com/ + to + https://kmart-com.d1.sc.omtrdc.net/ + + + securecookie + + + host + ^\.kmart\.com$ + name + ^s_vi$ + + + host + ^\.?(?:playdateplace|stylesipblog)\.kmart\.com$ + name + .+ + + + target + + + host + kmart.com + + + host + *.kmart.com + + + + + KnCMiner.com + + ruleset + + name + KnCMiner.com + rule + + from + ^http://(?:www\.)?kncminer\.com/ + to + https://www.kncminer.com/ + + securecookie + + host + ^(?:www)?\.kncminer\.com$ + name + .+ + + target + + + host + kncminer.com + + + host + *.kncminer.com + + + + + Knab.nl + + ruleset + + name + Knab.nl + rule + + from + ^http://(persoonlijk\.|www\.)?knab\.nl/ + to + https://$1knab.nl/ + + target + + + host + knab.nl + + + host + *.knab.nl + + + + + Knappschaft-Bahn-See + + ruleset + + name + Knappschaft-Bahn-See + platform + mixedcontent + rule + + from + ^http://(?:www\.)?kbs\.de/ + to + https://www.kbs.de/ + + target + + + host + www.kbs.de + + + host + kbs.de + + + + + Kneon.com (partial) + + ruleset + + name + Kneon.com (partial) + rule + + from + ^http://beta\.kneon\.com/ + to + https://beta.kneon.com/ + + target + + host + beta.kneon.com + + + + KnightSwarm + + ruleset + + name + KnightSwarm + rule + + from + ^https?://(?:(order\.)|www\.)?knightswarm.com/ + to + https://$1knightswarm.com/ + + securecookie + + host + ^(.*\.)?knightswarm\.com$ + name + .* + + target + + + host + knightswarm.com + + + host + *.knightswarm.com + + + + + Knot-DNS.cz + + ruleset + + name + Knot-DNS.cz + rule + + from + ^http://(www\.)?knot-dns\.cz/ + to + https://$1knot-dns.cz/ + + target + + + host + knot-dns.cz + + + host + www.knot-dns.cz + + + + + Knowledge Blog.org (partial) + + ruleset + + name + Knowledge Blog.org (partial) + rule + + from + ^http://(?:www\.)?knowledgeblog\.org/ + to + https://knowledgeblog.org/ + + target + + + host + knowledgeblog.org + + + host + www.knowledgeblog.org + + + + + Kobo (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?kobobooks\.com/(?!Etc/frameresize\.htm) + + + pattern + ^http://(?:securestage[24]|stage[36])\.kobobooks\.pt/ + + + name + Kobo (partial) + rule + + + from + ^https?://kobo\.com/ + to + https://www.kobo.com/ + + + from + ^http://(assets|ptbr|www)\.kobo\.com/ + to + https://$1.kobo.com/ + + + from + ^http://((?:akimagest?|assets|ecimagest|merch|(?:ptbr)?secure|securestage\d?|stage)\.)?kobobooks\.com/ + to + https://$1kobobooks.com/ + + + from + ^https?://(?:ec)?images\.kobobooks\.com/ + to + https://images.kobobooks.com/ + + + from + ^http://s(ecure(?:stage[2456]?|t)?|tage[36]?)\.kobobooks\.(\w\w)/ + to + https://s$1.kobobooks.$2/ + + + from + ^http://stage2\.kobobooks\.(fr|es)/(default\.aspx)?(\?.*)?$ + to + https://stage2.kobobooks.$1/$2$3 + + + securecookie + + + host + ^\.(?:ptbr|www)\.kobo\.com$ + name + .+ + + + host + ^\.kobobooks\.com$ + name + ^(?:tracking|__utm\w)$ + + + host + ^(?!ptbr\.|wwwt?\.)\w+\.kobobooks\.com$ + name + .+ + + + host + ^\.kobobooks\.\w\w$ + name + ^tracking$ + + + host + ^s(?:ecure(?:stage\d?|t)|tage[36]?)\.kobobooks\.\w\w$ + name + .+ + + + target + + + host + kobo.com + + + host + *.kobo.com + + + host + kobobooks.com + + + host + *.kobobooks.com + + + host + *.kobobooks.de + + + host + *.kobobooks.es + + + host + *.kobobooks.fr + + + host + *.kobobooks.it + + + host + *.kobobooks.nl + + + host + *.kobobooks.pt + + + + + Koding + + ruleset + + name + Koding + rule + + from + ^http://(\w+\.)?koding\.com/ + to + https://$1koding.com/ + + securecookie + + host + ^(?:.+\.)?koding\.com$ + name + .+ + + target + + + host + koding.com + + + host + *.koding.com + + + + + Kohls.com + + ruleset + + name + Kohls.com + rule + + + from + ^http://kohls\.com/ + to + https://www.kohls.com/ + + + from + ^http://www\.kohls\.com/ + to + https://www.kohls.com/ + + + target + + + host + kohls.com + + + host + www.kohls.com + + + + + Kokousalusta + + ruleset + + name + Kokousalusta + rule + + from + ^http://(www\.)?kokousalusta\.fi/ + to + https://$1kokousalusta.fi/ + + securecookie + + host + ^(?:www\.)?kokousalusta\.fi$ + name + .+ + + target + + + host + kokousalusta.fi + + + host + www.kokousalusta.fi + + + + + Kolab.org + + ruleset + + name + Kolab.org + rule + + from + ^http://((?:issues|roundup|www)\.)?kolab\.org/ + to + https://$1kolab.org/ + + target + + + host + kolab.org + + + host + *.kolab.org + + + + + KolabSys.com + + ruleset + + name + KolabSys.com + rule + + from + ^http://(www\.)?kolabsys\.com/ + to + https://$1kolabsys.com/ + + securecookie + + host + ^\.kolabsys\.com$ + name + .+ + + target + + + host + kolabsys.com + + + host + *.kolabsys.com + + + + + Komments.net + + ruleset + + name + Komments.net + rule + + from + ^http://(www\.)?komments\.net/ + to + https://$1komments.net/ + + securecookie + + host + ^(?:www\.)?komments\.net$ + name + .+ + + target + + + host + komments.net + + + host + www.komments.net + + + + + Kommunal.se + + ruleset + + name + Kommunal.se + rule + + + from + ^http://kommunal\.se/ + to + https://www.kommunal.se/ + + + from + ^http://www\.kommunal\.se/ + to + https://www.kommunal.se/ + + + target + + + host + kommunal.se + + + host + www.kommunal.se + + + + + Komoona.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.komoona\.com/+(?!favicon\.ico|new/css/|new/images/) + + name + Komoona.com (partial) + rule + + + from + ^http://((?:a|admin|stat|www)\.)?komoona\.com/ + to + https://$1komoona.com/ + + + from + ^http://cdn\.komoona\.com/ + to + https://dimrh7ecexr02.cloudfront.net/ + + + securecookie + + host + ^(?:a|stat)\.komoona\.com$ + name + .+ + + target + + + host + komoona.com + + + host + *.komoona.com + + + + + Komplett.no + + ruleset + + name + Komplett.no + rule + + from + ^http://(?:www\.)?komplett\.no/ + to + https://www.komplett.no/ + + target + + + host + komplett.no + + + host + www.komplett.no + + + + + Konami-Korea.kr + + ruleset + + name + Konami-Korea.kr + rule + + from + ^http://(?:www\.)?konami-korea\.kr/ + to + https://www.konami-korea.kr/ + + securecookie + + host + ^(www\.)?konami-korea\.kr$ + name + .+ + + target + + + host + konami-korea.kr + + + host + www.konami-korea.kr + + + + + Konami.com + + ruleset + + name + Konami.com + rule + + + from + ^http://konami\.com/ + to + https://www.konami.com/ + + + from + ^http://www\.konami\.com/ + to + https://www.konami.com/ + + + target + + + host + konami.com + + + host + www.konami.com + + + + + Konstfack.se + + ruleset + + name + Konstfack.se + platform + mixedcontent + rule + + + from + ^http://konstfack\.se/ + to + https://www.konstfack.se/ + + + from + ^http://www\.konstfack\.se/ + to + https://www.konstfack.se/ + + + target + + + host + www.konstfack.se + + + host + konstfack.se + + + + + Kontera (partial) + + ruleset + + name + Kontera (partial) + rule + + + from + ^http://images\.kontera\.com/ + to + https://a248.e.akamai.net/f/489/5395/2m/images.kontera.com/ + + + from + ^http://kona(c)?\.kontera\.com/ + to + https://a248.e.akamai.net/f/302/9266/9m/kona$1.kontera.com/ + + + from + ^http://(kona3[23]|publishers)\.kontera\.com/ + to + https://$1.kontera.com/ + + + from + ^http://konax\.kontera\.com/ + to + https://a248.e.akamai.net/f/1850/7709/10/konax.kontera.com/ + + + securecookie + + host + ^(?:\.?publishers)?\.kona\.com$ + name + .+ + + target + + host + *.kontera.com + + + + Konto API + + ruleset + + name + Konto API + rule + + from + ^http://(www\.)?kontoapi\.de/ + to + https://$1kontoapi.de/ + + securecookie + + host + ^(?:www)?\.kontoapi\.de$ + name + .+ + + target + + + host + kontoapi.de + + + host + *.kontoapi.de + + + + + Kopiosto + + ruleset + + name + Kopiosto + rule + + + from + ^http://(?:www\.)?kopiosto\.fi/ + to + https://www.kopiosto.fi/ + + + from + ^http://serv3\.kopiosto\.fi/ + to + https://serv3.kopiosto.fi/ + + + target + + + host + kopiosto.fi + + + host + *.kopiosto.fi + + + + + Kore.io + + ruleset + + name + Kore.io + rule + + from + ^http://(?:www\.)?kore\.io/ + to + https://kore.io/ + + target + + + host + kore.io + + + host + www.kore.io + + + + + KoreLogic Security + + ruleset + + name + KoreLogic Security + rule + + from + ^http://((?:blog|git|www)\.)?korelogic\.com/ + to + https://$1korelogic.com/ + + target + + + host + korelogic.com + + + host + *.korelogic.com + + + + + Koreatimes + + ruleset + + name + Koreatimes + rule + + from + ^http://www\.koreatimes\.co\.kr/ + to + https://www.koreatimes.co.kr/ + + target + + host + *.koreatimes.co.kr + + + + Kornerstone Admin.com + + ruleset + + name + Kornerstone Admin.com + rule + + from + ^http://(?:www\.)?kornerstoneadmin\.com/ + to + https://kornerstoneadmin.com/ + + securecookie + + host + ^kornerstoneadmin\.com$ + name + .+ + + target + + + host + kornerstoneadmin.com + + + host + www.kornerstoneadmin.com + + + + + Korora Project.org + + ruleset + + name + Korora Project.org + rule + + from + ^http://(archive\.|www\.)?kororaproject\.org/ + to + https://$1kororaproject.org/ + + target + + + host + kororaproject.org + + + host + *.kororaproject.org + + + + + Kotex + + ruleset + + name + Kotex + rule + + + from + ^http://(?:www\.)?kotex\.com/ + to + https://www.kotex.com/ + + + from + ^http://dare\.kotex\.com/ + to + https://dare.kotex.com/ + + + target + + + host + kotex.com + + + host + www.kotex.com + + + host + dare.kotex.com + + + + + Kotte-zeller.de + + ruleset + + name + Kotte-zeller.de + rule + + from + ^http://(www\.)?kotte-zeller\.de/ + to + https://www.kotte-zeller.de/ + + target + + + host + kotte-zeller.de + + + host + www.kotte-zeller.de + + + + + Kotulas.com + + ruleset + + name + Kotulas.com + rule + + from + ^http://(?:www\.)?kotulas\.com/ + to + https://www.kotulas.com/ + + securecookie + + host + ^www\.kotulas\.com$ + name + .+ + + target + + + host + kotulas.com + + + host + www.kotulas.com + + + + + Koumbit.org + + ruleset + + name + Koumbit.org + rule + + from + ^http://(www\.)?koumbit\.org/ + to + https://www.koumbit.org/ + + target + + + host + koumbit.org + + + host + www.koumbit.org + + + + + KralenStart.nl + + ruleset + + name + KralenStart.nl + rule + + from + ^http://(www\.)?kralenstart\.nl/ + to + https://$1kralenstart.nl/ + + securecookie + + host + ^\.kralenstart\.nl$ + name + .+ + + target + + + host + kralenstart.nl + + + host + *.kralenstart.nl + + + + + Kreativ Media (partial) + + ruleset + + name + Kreativ Media (partial) + rule + + from + ^http://secure\.kreativmedia\.ch/ + to + https://secure.kreativmedia.ch/ + + securecookie + + host + ^secure\.kreativmedia\.ch$ + name + .+ + + target + + host + secure.kreativmedia.ch + + + + Kreatív Vonalak + + ruleset + + name + Kreatív Vonalak + rule + + from + ^http://www\.kreativvonalak\.hu/ + to + https://www.kreativvonalak.hu/ + + target + + host + www.kreativvonalak.hu + + + + Krebs on Security + + ruleset + + name + Krebs on Security + platform + mixedcontent + rule + + from + ^http://(www\.)?krebsonsecurity\.com/ + to + https://$1krebsonsecurity.com/ + + securecookie + + host + ^(www\.)?krebsonsecurity\.com$ + name + .* + + target + + + host + krebsonsecurity.com + + + host + www.krebsonsecurity.com + + + + + KriminalVarden.se + + ruleset + + name + KriminalVarden.se + platform + mixedcontent + rule + + + from + ^http://www\.kriminalvarden\.se/ + to + https://www.kriminalvarden.se/ + + + from + ^http://kriminalvarden\.se/ + to + https://www.kriminalvarden.se/ + + + target + + + host + kriminalvarden.se + + + host + www.kriminalvarden.se + + + + + Krisostomus + + ruleset + + name + Krisostomus + rule + + + from + ^http://(m\.|www\.)?kriso\.ee/ + to + https://$1kriso.ee/ + + + from + ^http://(?:www\.)?kriso\.lv/ + to + https://www.kriso.lv/ + + + from + ^http://m\.kriso\.l(t|v)/ + to + https://m.kriso.l$1/ + + + securecookie + + host + ^m?\.kriso\.ee$ + name + .+ + + target + + + host + kriso.* + + + host + *.kriso.ee + + + host + *.kriso.lt + + + host + *.kriso.lv + + + + + Krita.org + + ruleset + + name + Krita.org + rule + + from + ^http://(www\.)?krita\.org/ + to + https://$1krita.org/ + + securecookie + + host + ^krita\.org$ + name + .+ + + target + + + host + krita.org + + + host + www.krita.org + + + + + Krux Digital + + ruleset + + name + Krux Digital + rule + + + from + ^http://dataconsole\.kruxdigital\.com/ + to + https://dataconsole.kruxdigital.com/ + + + from + ^http://(apiservices|beacon|cdn)\.krxd\.net/ + to + https://$1.krxd.net/ + + + securecookie + + + host + ^dataconsole\.kruxdigital\.com$ + name + .* + + + host + ^\.krxd\.net$ + name + (?:_kuid_|ServedBy)$ + + + target + + + host + dataconsole.kruxdigital.com + + + host + *.krxd.net + + + + + Kryptos.sh (false MCB) + + ruleset + + name + Kryptos.sh (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.kryptos\.sh/ + to + https://www.kryptos.sh/ + + securecookie + + host + ^(?:\.?:www)?\.kryptos\.sh$ + name + .+ + + target + + host + *.kryptos.sh + + + + Kryptos.sh (partial) + + ruleset + + exclusion + + pattern + ^http://www\.kryptos\.sh/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Kryptos.sh (partial) + rule + + from + ^http://(www\.)?kryptos\.sh/ + to + https://$1kryptos.sh/ + + securecookie + + host + ^kryptos\.sh$ + name + .+ + + target + + + host + kryptos.sh + + + host + www.kryptos.sh + + + + + Kryptronic (partial) + + ruleset + + exclusion + + pattern + ^http://(forum|wiki)\. + + name + Kryptronic (partial) + rule + + from + ^http://(\w+\.)?kryptronic\.com/ + to + https://$1kryptronic.com/ + + securecookie + + host + ^(.*\.)?kryptronic\.com$ + name + .* + + target + + + host + kryptronic.com + + + host + *.kryptronic.com + + + + + Krystal Hosting + + ruleset + + name + Krystal Hosting + rule + + + from + ^https?://(?:(aphrodite\.|gobi\.|support\.)|www\.)?krystal\.co\.uk/ + to + https://$1krystal.co.uk/ + + + from + ^http://(www\.)?krystal\.info/ + to + https://$1krystal.info/ + + + securecookie + + host + ^(?:support\.|www\.)?krystal\.(?:co\.uk|info)$ + name + .+ + + target + + + host + krystal.co.uk + + + host + *.krystal.co.uk + + + host + krystal.info + + + host + www.krystal.info + + + + + Ksplice (partial) + + ruleset + + name + Ksplice (partial) + rule + + from + ^http://(uptrack\.|www\.)?ksplice\.com/ + to + https://$1ksplice.com/ + + securecookie + + host + ^.*\.ksplice\.com$ + name + .* + + target + + + host + ksplice.com + + + host + *.ksplice.com + + + + + Kuantokusta.pt + + ruleset + + name + Kuantokusta.pt + platform + mixedcontent + rule + + from + ^http://(?:www\.)?kuantokusta\.pt/ + to + https://www.kuantokusta.pt/ + + target + + + host + kuantokusta.pt + + + host + www.kuantokusta.pt + + + + + Kubieziel.de + + ruleset + + name + Kubieziel.de + platform + cacert + rule + + from + ^http://(www\.)?kubieziel\.de/ + to + https://$1kubieziel.de/ + + securecookie + + host + ^(?:www\.)?kubieziel\.de$$ + name + .+ + + target + + + host + kubieziel.de + + + host + www.kubieziel.de + + + + + Kubuntu Forums.net + + ruleset + + name + Kubuntu Forums.net + rule + + from + ^http://(www\.)?kubuntuforums\.net/ + to + https://$1kubuntuforums.net/ + + securecookie + + host + ^\.kubuntuforums\.net$ + name + .+ + + target + + + host + kubuntuforums.net + + + host + *.kubuntuforums.net + + + + + Kubuntu.org (partial) + + ruleset + + name + Kubuntu.org (partial) + rule + + from + ^http://wiki\.kubuntu\.org/ + to + https://wiki.kubuntu.org/ + + securecookie + + host + ^wiki\.kubuntu\.org$ + name + .+ + + target + + host + wiki.kubuntu.org + + + + Kudelski Security + + ruleset + + name + Kudelski Security + rule + + from + ^http://(?:www\.)?kudelskisecurity\.com/ + to + https://www.kudelskisecurity.com/ + + securecookie + + host + ^\.kudelskisecurity\.com$ + name + .+ + + target + + + host + kudelskisecurity.com + + + host + *.kudelskisecurity.com + + + + + Kulcs-soft.hu + + ruleset + + name + Kulcs-soft.hu + rule + + from + ^http://(www\.)?kulcs-soft\.hu/ + to + https://www.kulcs-soft.hu/ + + target + + + host + kulcs-soft.hu + + + host + www.kulcs-soft.hu + + + + + Kung Fu Store (partial) + + ruleset + + name + Kung Fu Store (partial) + rule + + + from + ^http://kungfu(nation|store)\.com/ + to + https://kungfu$1.com/ + + + from + ^http://(\w\W)\.kungfu(nation|store)\.com/(cart$|favicon\.ico$|login$|(image|stylesheet|theme)s/|(session|user)/\w+|store/) + to + https://$1.kungfu$2.com/$3 + + + target + + + host + kungfunation.com + + + host + *.kungfunation.com + + + host + kungfustore.com + + + host + *.kungfustore.com + + + + + Kurly.fr + + ruleset + + name + Kurly.fr + rule + + from + ^http://(www\.)?kurly\.fr/ + to + https://$1kurly.fr/ + + securecookie + + host + ^(?:www)?\.kurly\.fr$ + name + .+ + + target + + + host + kurly.fr + + + host + *.kurly.fr + + + + + Kuruc.info + + ruleset + + name + Kuruc.info + rule + + from + ^http://(m\.)?(?:kuruc\.info|w\.kuruc\.org)/ + to + https://$1kuruc.info/ + + target + + + host + kuruc.info + + + host + m.kuruc.info + + + host + w.kuruc.org + + + + + Kuther.net + + ruleset + + name + Kuther.net + rule + + from + ^http://(www\.)?kuther\.net/ + to + https://kuther.net/ + + target + + + host + kuther.net + + + host + www.kuther.net + + + + + KwikSurveys + + ruleset + + name + KwikSurveys + rule + + from + ^http://(www\.)?kwiksurveys\.com/ + to + https://$1kwiksurveys.com/ + + securecookie + + host + ^www\.kwiksurveys\.com$ + name + .+ + + target + + + host + kwiksurveys.com + + + host + www.kwiksurveys.com + + + + + Kyani.net + + ruleset + + name + Kyani.net + rule + + + from + ^http://(?:www\.)?kyani\.net/\??$ + to + https://eu.kyani.net/public/eu/en/main + + + from + ^http://(?:www\.)?kyani\.net/\?(.+) + to + https://eu.kyani.net/public/eu/en/main?$1= + + + from + ^http://(?:www\.)?kyani\.net/([^?]+)\??$ + to + https://eu.kyani.net/$1 + + + from + ^http://(?:www\.)?kyani\.net/([^?]+\?.+) + to + https://eu.kyani.net/$1= + + + from + ^http://eu\.kyani\.net/ + to + https://eu.kyani.net/ + + + securecookie + + host + ^\.kyani\.net$ + name + .+ + + target + + + host + kyani.net + + + host + *.kyani.net + + + + + Kyberia.sk + + ruleset + + name + Kyberia.sk + rule + + from + ^http://(?:www\.)?kyberia\.sk/ + to + https://kyberia.sk/ + + target + + + host + www.kyberia.sk + + + host + kyberia.sk + + + + + Kyiv Post.com + + ruleset + + name + Kyiv Post.com + rule + + from + ^http://(www\.)?kyivpost\.com/ + to + https://$1kyivpost.com/ + + securecookie + + host + ^www\.kyivpost\.com$ + name + .+ + + target + + + host + kyivpost.com + + + host + www.kyivpost.com + + + + + Kyoto-U.ac.jp (partial) + + ruleset + + name + Kyoto-U.ac.jp (partial) + rule + + from + ^http://www\.cira\.kyoto-u\.ac\.jp/ + to + https://www.cira.kyoto-u.ac.jp/ + + target + + host + www.cira.kyoto-u.ac.jp + + + + Központi Statisztikai Hivatal + + ruleset + + name + Központi Statisztikai Hivatal + rule + + + from + ^http://(?:www\.)?ksh\.hu/ + to + https://www.ksh.hu/ + + + from + ^http://(statinfo|elektra)\.ksh\.hu/ + to + https://$1.ksh.hu/ + + + target + + + host + ksh.hu + + + host + www.ksh.hu + + + host + statinfo.ksh.hu + + + host + elektra.ksh.hu + + + + + L-auto-entrepreneur.org + + ruleset + + name + L-auto-entrepreneur.org + rule + + from + ^http://(www\.)?l-auto-entrepreneur\.org/ + to + https://$1l-auto-entrepreneur.org/ + + securecookie + + host + ^(?:w*\.)?l-auto-entrepreneur\.org$ + name + .+ + + target + + + host + l-auto-entrepreneur.org + + + host + *.l-auto-entrepreneur.org + + + + + L2C + + ruleset + + name + L2C + rule + + from + ^http://(www\.)?l2c\.co\.kr/ + to + https://$1l2c.co.kr/ + + securecookie + + host + ^(www\.)?l2c\.co\.kr$ + name + .* + + target + + + host + l2c.co.kr + + + host + www.l2c.co.kr + + + + + LCHost + + ruleset + + name + LCHost + rule + + from + ^http://(cloud0\.|www\.)?lchost\.co\.uk/ + to + https://$1lchost.co.uk/ + + target + + + host + lchost.co.uk + + + host + *.lchost.co.uk + + + + + LEAP.se + + ruleset + + name + LEAP.se + rule + + from + ^http://(www\.)?leap\.se/ + to + https://$1leap.se/ + + target + + + host + leap.se + + + host + www.leap.se + + + + + LEGO (partial) + + ruleset + + exclusion + + + pattern + ^http://club\.lego\.com/(?!en-us/join/magazinesubscription) + + + pattern + ^http://education\.lego\.com/(?!\w\w-\w\w/[\w-]+/|Design/|WebResource\.axd) + + + pattern + ^http://shop.lego.com/(?!VIP/modal/vipLearnMoreModal\.jsp) + + + name + LEGO (partial) + rule + + + from + ^https?://(?:www\.|wwwsecure\.)?lego\.com/ + to + https://wwwsecure.lego.com/ + + + from + ^http://(aboutus|account2?|services\.(?:account|community)|assets|club|education|moderation|rebrick|shop)\.lego\.com/ + to + https://$1.lego.com/ + + + from + ^http://cache\.lego\.com/ + to + https://a248.e.akamai.net/cache.lego.com/ + + + securecookie + + host + ^(?:aboutus|account2?|services\.account|assets|rebrick)\.lego\.com$ + name + .+ + + target + + + host + lego.com + + + host + *.lego.com + + + host + services.*.lego.com + + + + + LEspace client.fr + + ruleset + + name + LEspace client.fr + rule + + from + ^http://(www\.)?lespaceclient\.fr/ + to + https://$1lespaceclient.fr/ + + securecookie + + host + ^(?:www\.)?lespaceclient\.fr$ + name + .+ + + target + + + host + lespaceclient.fr + + + host + www.lespaceclient.fr + + + + + LExpress.fr (partial) + + ruleset + + name + LExpress.fr (partial) + rule + + from + ^http://(media-|skin-)?boutique\.lexpress\.fr/ + to + https://$1boutique.lexpress.fr/ + + securecookie + + host + ^\.boutique\.lexpress\.fr$ + name + .+ + + target + + host + *.lexpress.fr + + + + LF Hair.com (partial) + + ruleset + + name + LF Hair.com (partial) + rule + + from + ^http://(www\.)?lfhair\.com/(?=assets/|cdn-cgi/|favicon\.ico|html/|xcart/customer/(?:cart|register)\.php|xcart_images/) + to + https://$1lfhair.com/ + + securecookie + + host + ^\.www\.lfhair\.com$ + name + ^RefererCookie$ + + target + + + host + lfhair.com + + + host + *.lfhair.com + + + + + LFAIT.com + + ruleset + + name + LFAIT.com + rule + + from + ^http://(?:www\.)?lfait\.com/ + to + https://lfait.com/ + + securecookie + + host + ^lfait\.com$ + name + .+ + + target + + + host + lfait.com + + + host + www.lfait.com + + + + + LFC Hosting + + ruleset + + name + LFC Hosting + rule + + + from + ^http://(?:208\.68\.106\.8|webmail\.lfchosting\.com)/ + to + https://208.68.106.8/ + + + from + ^http://(?:((?:account|cp|demo)\.)|www\.)?lfchosting\.com/ + to + https://$1lfchosting.com/ + + + securecookie + + host + ^.+\.lfchosting\.com$ + name + .+ + + target + + + host + 208.68.106.8 + + + host + lfchosting.com + + + host + *.lfchosting.com + + + + + LFGSS.com + + ruleset + + name + LFGSS.com + rule + + from + ^http://(www\.)?lfgss\.com/ + to + https://$1lfgss.com/ + + securecookie + + host + ^www\.lfgss\.com$ + name + .+ + + target + + + host + lfgss.com + + + host + www.lfgss.com + + + + + LFov.net + + ruleset + + name + LFov.net + rule + + from + ^http://(www\.)?lfov\.net/ + to + https://$1lfov.net/ + + securecookie + + host + ^(?:www\.)?lfov\.net$ + name + .+ + + target + + + host + lfov.net + + + host + www.lfov.net + + + + + LG.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www(?:stg)?\.)?lg\.com/(?!\w\w/(?:css|foresee|images|js)/|favicon\.ico|lg3-common(?:-v2)?/) + + name + LG.com (partial) + rule + + + from + ^http://(?:ww[sw]\.)?lg\.com/ + to + https://wws.lg.com/ + + + from + ^http://(akamaitest|admin\.cms|wwwstg)\.lg\.com/ + to + https://$1.lg.com/ + + + securecookie + + + host + ^\.lg\.com$ + name + ^(?:s_\w+|__utm)\w$ + + + host + ^(?:admin\.cm|ww)s\.lg\.com$ + name + .+ + + + target + + + host + lg.com + + + host + *.lg.com + + + + + LINBIT (false MCB) + + ruleset + + name + LINBIT (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?linbit\.com/ + to + https://$1linbit.com/ + + securecookie + + host + ^(?:.*\.)?linbit\.com$ + name + .+ + + target + + + host + linbit.com + + + host + *.linbit.com + + + + + LINBIT (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?linbit\.com/+(?!components/|favicon\.ico|images/|libraries/|modules/|plugins/) + + name + LINBIT (partial) + rule + + from + ^http://(www\.)?linbit\.com/ + to + https://$1linbit.com/ + + target + + + host + linbit.com + + + host + www.linbit.com + + + + + LINCS.fr + + ruleset + + name + LINCS.fr + rule + + from + ^http://(?:www\.)?lincs\.fr/ + to + https://www.lincs.fr/ + + target + + + host + lincs.fr + + + host + www.lincs.fr + + + + + LINGUIST List (partial) + + ruleset + + name + LINGUIST List (partial) + rule + + from + ^https?://(?:www\.)?linguistlist\.org/ + to + https://linguistlist.org/ + + securecookie + + host + ^linguistlist\.org$ + name + .+ + + target + + + host + linguistlist.org + + + host + www.linguistlist.org + + + + + LIU.se + + ruleset + + name + LIU.se + rule + + + from + ^http://(?:www\.)?(lith\.|student\.)?liu\.se/ + to + https://www.$1liu.se/ + + + from + ^http://www\.(hu|ibl|ida|imh|isak|isv|tema)\.liu\.se/ + to + https://www.$1.liu.se/ + + + target + + + host + liu.se + + + host + *.liu.se + + + + + LKML + + ruleset + + name + LKML + rule + + from + ^http://(?:www\.)?lkml\.org/ + to + https://lkml.org/ + + securecookie + + host + ^lkml\.org$ + name + .+ + + target + + + host + lkml.org + + + host + www.lkml.org + + + + + LLS.org (partial) + + ruleset + + name + LLS.org (partial) + rule + + + from + ^http://(community|donate|www)\.lls\.org/ + to + https://$1.lls.org/ + + + from + ^http://image\.lls-email\.org/ + to + https://a248.e.akamai.net/f/1889/6910/5d/image.lls-email.org/ + + + securecookie + + host + ^(?:community|donate|www)\.lls\.org$ + name + .+ + + target + + host + *.lls.org + + + + LM Uni Muenchen + + ruleset + + name + LM Uni Muenchen + rule + + from + ^http://(cms-static|www\.en|(?:login|www)\.portal|www)\.uni-muenchen\.de/ + to + https://$1.uni-muenchen.de/ + + securecookie + + host + .*\.uni-muenchen\.de$ + name + .+ + + target + + host + *.uni-muenchen.de + + + + LONAP + + ruleset + + name + LONAP + rule + + + from + ^https?://lonap\.net/ + to + https://www.lonap.net/ + + + from + ^http://([^/:@]+)?\.lonap\.net/ + to + https://$1.lonap.net/ + + + target + + + host + lonap.net + + + host + *.lonap.net + + + + + LPI.org + + ruleset + + name + LPI.org + rule + + from + ^http://(cs\.|www\.)?lpi\.org/ + to + https://$1lpi.org/ + + securecookie + + host + ^cs\.lpi\.org$ + name + .+ + + target + + + host + lpi.org + + + host + *.lpi.org + + + + + LPICE.eu + + ruleset + + name + LPICE.eu + platform + cacert + rule + + from + ^http://(lpievent\.|www\.)?lpice\.eu/ + to + https://$1lpice.eu/ + + securecookie + + host + ^www\.lpice\.eu$ + name + .+ + + target + + + host + lpice.eu + + + host + *.lpice.eu + + + + + LPO.org.uk (partial) + + ruleset + + name + LPO.org.uk (partial) + rule + + from + ^http://(www\.)?lpo\.org\.uk/(?=components/|images/|register/create-new-account\.html|sign-in\.html|templates/) + to + https://$1lpo.org.uk/ + + target + + + host + lpo.org.uk + + + host + www.lpo.org.uk + + + + + LSE.ac.uk (partial) + + ruleset + + name + LSE.ac.uk (partial) + rule + + from + ^http://(?:www\.)?lse\.ac\.uk/(?=corporatePromotions/|favicon\.ico|ImagesForExternalHomepage/|intranet/images/|(?:Script|Web)Resource\.axd|SiteElements/|v4global/) + to + https://www.lse.ac.uk/ + + target + + + host + lse.ac.uk + + + host + www.lse.ac.uk + + + + + LSI.com (partial) + + ruleset + + name + LSI.com (partial) + rule + + from + ^http://(www\.)?lsi\.com/ + to + https://$1lsi.com/ + + target + + + host + lsi.com + + + host + www.lsi.com + + + + + LTER + + ruleset + + exclusion + + pattern + ^http://intranet2\.lternet\.edu/(?!misc/|modules/|sites/|(?:track|us)er(?:$|\?|/)) + + name + LTER + rule + + + from + ^http://lternet\.edu/ + to + https://www.lternet.edu/ + + + from + ^http://intranet2?\.lternet\.edu/ + to + https://intranet2.lternet.edu/ + + + from + ^http://(metacat|www)\.lternet\.edu/ + to + https://$1.lternet.edu/ + + + securecookie + + host + ^metacat\.lternet\.edu$ + name + .+ + + target + + + host + lternet.edu + + + host + *.lternet.edu + + + + + LTH.se (partial) + + ruleset + + name + LTH.se (partial) + rule + + + from + ^http://(?:www\.)?lth\.se/ + to + https://www.lth.se/ + + + from + ^http://doc\.ddg\.lth\.se/ + to + https://doc.ddg.lth.se/ + + + target + + + host + lth.se + + + host + www.lth.se + + + + + LTTng Project + + ruleset + + name + LTTng Project + rule + + from + ^http://((?:bugs|git|lists|www)\.)?lttng\.org/ + to + https://$1lttng.org/ + + securecookie + + host + ^(?:bugs)?\.lttng\.org$ + name + .+ + + target + + + host + lttng.org + + + host + *.lttng.org + + + + + LU.se (partial) + + ruleset + + name + LU.se (partial) + rule + + + from + ^http://(?:lucs\.ht|(?:www\.)?lucs)\.lu\.se/ + to + https://www.lucs.lu.se/ + + + from + ^http://calendar\.student\.lu\.se/.* + to + https://www.google.com/calendar/hosted/student.lu.se + + + from + ^http://webmail\.student\.lu\.se/.* + to + https://mail.google.com/a/student.lu.se + + + from + ^http://webmail\.lu\.se/ + to + https://webmail.lu.se/ + + + target + + host + *.lu.se + + + + LUGoNS.org + + ruleset + + name + LUGoNS.org + rule + + from + ^http://(?:((?:events|forum|gallery|gentoo-handbook|hacker|lab|libre|milobit|paste|planet|tor|wiki)\.)|www\.)?lugons\.org/ + to + https://$1lugons.org/ + + securecookie + + host + ^(?:(?:events|paste|www)\.)?lugons\.org$ + name + .+ + + target + + + host + lugons.org + + + host + *.lugons.org + + + + + LWN + + ruleset + + name + LWN + rule + + from + ^http://(?:www\.)?lwn\.net/ + to + https://lwn.net/ + + target + + + host + lwn.net + + + host + www.lwn.net + + + + + La Caixa + + ruleset + + name + La Caixa + rule + + + from + ^https?://lacaixa\.es/ + to + https://www.lacaixa.es/ + + + from + ^http://([^/:@\.]+)\.lacaixa\.es/ + to + https://$1.lacaixa.es/ + + + securecookie + + host + ^(.*\.)?lacaixa\.es$ + name + .+ + + target + + + host + lacaixa.es + + + host + *.lacaixa.es + + + + + La Cie.com (partial) + + ruleset + + name + La Cie.com (partial) + rule + + from + ^http://(?:www\.)?lacie\.com/(?=favicon\.ico|img/|imgstore/|js/|stylesheets/) + to + https://www.lacie.com/ + + target + + + host + lacie.com + + + host + www.lacie.com + + + + + La Crosse Alerts.com + + ruleset + + name + La Crosse Alerts.com + rule + + from + ^http://(?:www\.)?lacrossealerts\.com/ + to + https://www.lacrossealerts.com/ + + securecookie + + host + ^www\.lacrossealerts\.com$ + name + .+ + + target + + + host + lacrossealerts.com + + + host + www.lacrossealerts.com + + + + + La Crosse Technology.com + + ruleset + + name + La Crosse Technology.com + rule + + from + ^http://(store\.|www\.)?lacrossetechnology\.com/ + to + https://$1lacrossetechnology.com/ + + securecookie + + host + ^\.store\.lacrossetechnology\.com$ + name + .+ + + target + + + host + lacrossetechnology.com + + + host + *.lacrossetechnology.com + + + + + La Quadrature du Net + + ruleset + + name + La Quadrature du Net + rule + + + from + ^http://(soutien\.|support\.|www\.)?laquadrature\.net/ + to + https://$1laquadrature.net/ + + + from + ^http://memopol\.lqdn\.fr/ + to + https://memopol.lqdn.fr/ + + + securecookie + + host + ^\.laquadrature\.net$ + name + .* + + target + + + host + laquadrature.net + + + host + *.laquadrature.net + + + host + memopol.lqdn.fr + + + + + LaPatilla.com + + ruleset + + name + LaPatilla.com + rule + + + from + ^http://(www\.)?lapatilla\.com/ + to + https://$1lapatilla.com/ + + + from + ^https?://cdn\.lapatilla\.com/imagenes\.lapatilla/ + to + https://www.lapatilla.com/ + + + securecookie + + host + ^(?:www\.)?lapatilla\.com$ + name + .+ + + target + + + host + lapatilla.com + + + host + *.lapatilla.com + + + + + LabCorp + + ruleset + + name + LabCorp + rule + + + from + ^(http://(www\.)?|https://)labcorp\.com/ + to + https://www.labcorp.com/ + + + from + ^http://(datalink2|hypersend|www[3-4]?)\.labcorp\.com/ + to + https://$1.labcorp.com/ + + + from + ^(http://(www\.)?|https://)labcorpsolutions\.com/ + to + https://www.labcorpsolutions.com/ + + + securecookie + + + host + ^(datalink2|hypersend|www[3-4]?)\.labcorp\.com$ + name + .+ + + + host + ^((www)?\.)?labcorpsolutions\.com$ + name + .+ + + + target + + + host + labcorp.com + + + host + datalink2.labcorp.com + + + host + hypersend.labcorp.com + + + host + www.labcorp.com + + + host + www3.labcorp.com + + + host + www4.labcorp.com + + + host + labcorpsolutions.com + + + host + www.labcorpsolutions.com + + + + + Labels IG.com + + ruleset + + name + Labels IG.com + rule + + from + ^http://(www\.)?labelsig\.com/ + to + https://$1labelsig.com/ + + securecookie + + host + ^\.(?:www\.)?labelsig\.com$ + name + .+ + + target + + + host + labelsig.com + + + host + *.labelsig.com + + + + + Labels by the Sheet.com (partial) + + ruleset + + name + Labels by the Sheet.com (partial) + rule + + from + ^http://(www\.)?labelsbythesheet\.com/(?=favicon\.ico|images/|include/) + to + https://$1labelsbythesheet.com/ + + target + + + host + labelsbythesheet.com + + + host + www.labelsbythesheet.com + + + + + Lady Foot Locker + + ruleset + + name + Lady Foot Locker + rule + + + from + ^https?://(?:www\.)?ladyfootlocker\.com/ + to + https://www.ladyfootlocker.com/ + + + from + ^http://m\.ladyfootlocker\.com/ + to + https://m.ladyfootlocker.com/ + + + securecookie + + host + ^.*\.ladyfootlocker\.com$ + name + .+ + + target + + + host + ladyfootlocker.com + + + host + *.ladyfootlocker.com + + + host + *.www.ladyfootlocker.com + + + + + Laffster + + ruleset + + name + Laffster + rule + + from + ^http://(?:www\.)?nextstudioapps\.com/ + to + https://www.nextstudioapps.com/ + + securecookie + + host + ^(?:www)?\.nextstudioapps\.com$ + name + .+ + + target + + + host + nextstudioapps.com + + + host + *.nextstudioapps.com + + + + + Lagardère Publicité (partial) + + ruleset + + name + Lagardère Publicité (partial) + rule + + from + ^http://fb\.lagardere-pub\.com/ + to + https://fb.lagardere-pub.com/ + + target + + host + fb.lagardere-pub.com + + + + Lagen.nu + + ruleset + + name + Lagen.nu + rule + + from + ^http://(?:www\.)?lagen\.nu/ + to + https://lagen.nu/ + + target + + + host + lagen.nu + + + host + www.lagen.nu + + + + + Lakome.com + + ruleset + + name + Lakome.com + rule + + from + ^http://(www\.)?lakome\.com/ + to + https://$1lakome.com/ + + securecookie + + host + ^\.lakome\.com$ + name + .+ + + target + + + host + lakome.com + + + host + *.lakome.com + + + + + LambdaTek + + ruleset + + name + LambdaTek + rule + + from + ^http://(www\.)?lambda-tek\.com/ + to + https://$1lambda-tek.com/ + + securecookie + + host + ^(www\.)?lambda-tek\.com$ + name + .* + + target + + + host + lambda-tek.com + + + host + www.lambda-tek.com + + + + + Lands End.com + + ruleset + + name + Lands End.com + rule + + + from + ^http://(?:www\.)?landsend\.com/ + to + https://www.landsend.com/ + + + from + ^http://ocs\.landsend\.com/ + to + https://ocs.landsend.com/ + + + securecookie + + host + ^\.landsend\.com$ + name + .+ + + target + + + host + landsend.com + + + host + *.landsend.com + + + + + Landscape.io (partial) + + ruleset + + name + Landscape.io (partial) + rule + + from + ^http://(www\.)?landscape\.io/ + to + https://$1landscape.io/ + + securecookie + + host + ^landscape\.io$ + name + .+ + + target + + + host + landscape.io + + + host + www.landscape.io + + + + + Landslide.com + + ruleset + + name + Landslide.com + rule + + + from + ^http://(?:www\.)?landslide\.com/ + to + https://www.campaignercrm.com/ + + + from + ^http://landslide\.landslide\.com/ + to + https://landslide.landslide.com/ + + + securecookie + + host + ^landslide\.landslide\.com$ + name + .+ + + target + + + host + landslide.com + + + host + *.landslide.com + + + + + Landure.fr + + ruleset + + name + Landure.fr + rule + + from + ^http://howto\.landure\.fr/ + to + https://howto.landure.fr/ + + securecookie + + host + ^howto\.landure\.fr$ + name + .+ + + target + + host + howto.landure.fr + + + + Langille.org (partial) + + ruleset + + name + Langille.org (partial) + rule + + from + ^http://dan\.langille\.org/ + to + https://dan.langille.org/ + + target + + host + dan.langille.org + + + + Language Perfect (partial) + + ruleset + + name + Language Perfect (partial) + rule + + + from + ^http://(?:www\.)?languageperfect\.co\.nz/(.+\.(?:jp|pn))g + to + https://d1qtf3qy24bms5.cloudfront.net/$1g + + + from + ^http://(?:www\.)?languageperfect\.com/(.+\.(?:jp|pn))g + to + https://d177cien2ijyro.cloudfront.net/$1g + + + target + + + host + languageperfect.co.nz + + + host + www.languageperfect.co.nz + + + host + languageperfect.com + + + host + www.languageperfect.com + + + + + LankyLife + + ruleset + + name + LankyLife + rule + + from + ^http://(www\.)?lankylife\.com/ + to + https://$1lankylife.com/ + + securecookie + + host + ^\.lankylife\.com$ + name + .+ + + target + + + host + lankylife.com + + + host + *.lankylife.com + + + + + Lansforsakringar.se + + ruleset + + name + Lansforsakringar.se + platform + mixedcontent + rule + + + from + ^http://www\.lansforsakringar\.se/ + to + https://www.lansforsakringar.se/ + + + from + ^http://www1\.lansforsakringar\.se/ + to + https://www1.lansforsakringar.se/ + + + from + ^http://lansforsakringar\.se/ + to + https://www.lansforsakringar.se/ + + + target + + + host + lansforsakringar.se + + + host + www.lansforsakringar.se + + + host + www1.lansforsakringar.se + + + + + Lantmateriet.se + + ruleset + + name + Lantmateriet.se + platform + mixedcontent + rule + + + from + ^http://www\.lantmateriet\.se/ + to + https://www.lantmateriet.se/ + + + from + ^http://lantmateriet\.se/ + to + https://www.lantmateriet.se/ + + + target + + + host + lantmateriet.se + + + host + www.lantmateriet.se + + + + + Lanyrd + + ruleset + + name + Lanyrd + rule + + + from + ^http://(www\.)?lanyrd\.com/s(ignin|tatic/) + to + https://$1lanyrd.com/$2 + + + from + ^https?://static\.lanyrd\.net/ + to + https://s3.amazonaws.com/static.lanyrd.net/ + + + target + + + host + lanyrd.com + + + host + www.lanyrd.com + + + host + static.lanyrd.net + + + + + Laprox Sites + + ruleset + + name + Laprox Sites + rule + + + from + ^http://(?:www\.)?laprox(?:sites)?\.com/ + to + https://laproxsites.com/ + + + from + ^http://support\.laprox\.com/ + to + https://support.laprox.com/ + + + securecookie + + + host + ^support\.laprox.com$ + name + .+ + + + host + ^laproxsites\.com$ + name + .+ + + + target + + + host + laprox.com + + + host + *.laprox.com + + + host + laproxsites.com + + + host + www.laproxsites.com + + + + + Laptop.hu + + ruleset + + name + Laptop.hu + rule + + + from + ^http://(www\.|regi\.)?(l[ae]ptop(online|lap)?|notebook(nagy|\-?kis)ker|onlinenotebook|palmshop)\.hu/ + to + https://laptop.hu/ + + + from + ^http://gfxpro\.hu/ + to + https://gfxpro.hu/ + + + securecookie + + host + ^laptop\.hu$ + name + .+ + + target + + + host + laptop.hu + + + host + www.laptop.hu + + + host + regi.laptop.hu + + + host + leptop.hu + + + host + laptoponline.hu + + + host + palmshop.hu + + + host + notebooknagyker.hu + + + host + notebookkisker.hu + + + host + notebook-kisker.hu + + + host + www.notebooknagyker.hu + + + host + www.onlinenotebook.hu + + + host + www.laptoplap.hu + + + host + gfxpro.hu + + + + + Las Vegas Management + + ruleset + + name + Las Vegas Management + rule + + from + ^https?://(?:www\.)?lvmanagement\.com/ + to + https://www.lvmanagement.com/ + + target + + + host + lvmanagement.com + + + host + www.lvmanagement.com + + + + + Las Vegas Review-Journal (partial) + + ruleset + + name + Las Vegas Review-Journal (partial) + rule + + + from + ^http://oneday\.lvrj\.com/ + to + https://oneday.lvrj.com/ + + + from + ^http://(?:www\.)?reviewjournal\.com/ + to + https://www.reviewjournal.com/ + + + from + ^http://myrjnewsstand\.reviewjournal\.com/ + to + https://myrjnewsstand.reviewjournal.com/ + + + from + ^http://obits\.reviewjournal\.com/(favicon\.ico|Obituaries/(?:AffiliateAdvertisement\.axd|AffiliateArtwork\.axd|_(?:cs|j)s/)|obituaries/lvrj/(?:Images/|ObitsTileCorner\.axd|scripts/)|sites/) + to + https://www.legacy.com/$1 + + + securecookie + + + host + ^\.reviewjournal\.com$ + name + ^UnicaNIODID$ + + + host + ^(?:myrjnewsstand|www)\.reviewjournal\.com$ + name + .+ + + + target + + + host + oneday.lvrj.com + + + host + reviewjournal.com + + + host + *.reviewjournal.com + + + + + Lastminute.com + + ruleset + + name + Lastminute.com + rule + + from + ^http://(?:www\.)?lastminute\.com/ + to + https://www.lastminute.com/ + + target + + + host + www.lastminute.com + + + host + lastminute.com + + + + + Laughing Squid (partial) + + ruleset + + name + Laughing Squid (partial) + rule + + from + ^http://(www\.)?laughingsquid\.us/ + to + https://$1laughingsquid.us/ + + securecookie + + host + ^(?:www\.)?laughingsquid\.us$ + name + .+ + + target + + + host + laughingsquid.us + + + host + www.laughingsquid.us + + + + + LaunchRock (partial) + + ruleset + + exclusion + + pattern + ^http://(?:app|hbtrk|hummingbird|support|www)\. + + name + LaunchRock (partial) + rule + + + from + ^https?://blog\.launchrock\.com/ + to + https://launchrock.wpengine.com/ + + + from + ^http://(\w+)\.launchrock\.com/ + to + https://$1.launchrock.com/ + + + securecookie + + host + ^app\.launchrock\.com$ + name + .+ + + target + + host + *.launchrock.com + + + + Launchkey.com + + ruleset + + name + Launchkey.com + platform + firefox + rule + + from + ^http://launchkey\.com/ + to + https://launchkey.com/ + + securecookie + + host + ^launchkey\.com$ + name + .+ + + target + + host + launchkey.com + + + + Launchpad + + ruleset + + exclusion + + + pattern + ^http://blog\.launchpad\.net/ + + + pattern + ^http://news\.launchpad\.net/ + + + name + Launchpad + rule + + + from + ^https?://launchpad\.net/ + to + https://launchpad.net/ + + + from + ^http://([^/:@]+)?\.launchpad\.net/ + to + https://$1.launchpad.net/ + + + from + ^https?://bazaar\.launchpad\.net/$ + to + https://launchpad.net/ + + + from + ^http://bazaar\.launchpad\.net/(.+) + to + https://bazaar.launchpad.net/$1 + + + from + ^https?://launchpadlibrarian\.net/ + to + https://launchpadlibrarian.net/ + + + from + ^https?://([^/:@]+)?\.launchpadlibrarian\.net/ + to + https://$1.launchpadlibrarian.net/ + + + securecookie + + + host + ^(.*\.)?launchpad\.net$ + name + .+ + + + host + ^(.*\.)?launchpadlibrarian\.net$ + name + .+ + + + target + + + host + launchpad.net + + + host + *.launchpad.net + + + host + launchpadlibrarian.net + + + host + *.launchpadlibrarian.net + + + + + Laup + + ruleset + + name + Laup + rule + + from + ^http://(www\.)?laup\.nu/ + to + https://$1laup.nu/ + + securecookie + + host + ^\.laup\.nu$ + name + .+ + + target + + + host + laup.nu + + + host + *.laup.nu + + + + + Lautre.net admin and webmail area + + ruleset + + name + Lautre.net admin and webmail area + rule + + from + ^http://admin\.lautre\.net/(admin|rc)/ + to + https://admin.lautre.net/$1/ + + target + + host + admin.lautre.net + + + + Lavabit + + ruleset + + name + Lavabit + rule + + + from + ^http://(?:www\.)?lavabit\.com/ + to + https://lavabit.com/ + + + from + ^http://(click|hosting)\.lavabit\.com/ + to + https://$1.lavabit.com/ + + + securecookie + + host + ^(.+\.)?lavabit\.com$ + name + .* + + target + + + host + lavabit.com + + + host + www.lavabit.com + + + host + click.lavabit.com + + + host + hosting.lavabit.com + + + + + Lavabit.com + + ruleset + + name + Lavabit.com + platform + firefox + rule + + from + ^http://liberty\.lavabit\.com/ + to + https://liberty.lavabit.com/ + + securecookie + + host + ^liberty\.lavabit\.com$ + name + .+ + + target + + host + liberty.lavabit.com + + + + Laverna + + ruleset + + name + Laverna + rule + + from + ^http://(?:www\.)?laverna\.cc/ + to + https://laverna.cc/ + + target + + + host + laverna.cc + + + host + *.laverna.cc + + + + + Law Business Research CDN (partial) + + ruleset + + name + Law Business Research CDN (partial) + rule + + from + ^https?://s3\.lbrcdn\.net(?:\.s3-external-3\.amazonaws\.com)?/ + to + https://s3-eu-west-1.amazonaws.com/s3.lbrcdn.net/ + + target + + + host + s3.lbrcdn.net + + + host + s3.lbrcdn.net.s3-external-3.amazonaws.com + + + + + Law School Admission Council (partial) + + ruleset + + name + Law School Admission Council (partial) + rule + + from + ^http://(llm|lsaclookup|os)\.lsac\.org/ + to + https://$1.lsac.org/ + + securecookie + + host + ^.+\.lsac\.org$ + name + .+ + + target + + host + *.lsac.org + + + + LawBlog.de + + ruleset + + name + LawBlog.de + rule + + from + ^http://(?:www\.)?lawblog\.de/ + to + https://www.lawblog.de/ + + target + + + host + www.lawblog.de + + + host + lawblog.de + + + + + Lawn & Landscape + + ruleset + + name + Lawn & Landscape + rule + + from + ^https?://(?:www\.)?lawnandlandscape\.com/ + to + https://www.lawnandlandscape.com/ + + securecookie + + host + ^www\.lawnandlandscape\.com$ + name + .+ + + target + + + host + lawnandlandscape.com + + + host + www.lawnandlandscape.com + + + + + Lawrence Livermore National Laboratory + + ruleset + + name + Lawrence Livermore National Laboratory + rule + + from + ^http://([\w-]+\.)?llnl\.gov/ + to + https://$1llnl.gov/ + + securecookie + + host + ^(?:.*\.)?llnl\.gov$ + name + .+ + + target + + + host + llnl.gov + + + host + *.llnl.gov + + + + + LayerBNC.org + + ruleset + + name + LayerBNC.org + rule + + from + ^http://layerbnc\.org/ + to + https://layerbnc.org/ + + securecookie + + host + ^\.layerbnc\.org$ + name + .+ + + target + + + host + layerbnc.org + + + host + *.layerbnc.org + + + + + Layne Publications + + ruleset + + name + Layne Publications + rule + + from + ^http://(www\.)?laynepublications\.com/ + to + https://$1laynepublications.com/ + + securecookie + + host + ^\.www\.laynepublications\.com$ + name + .+ + + target + + + host + laynepublications.com + + + host + www.laynepublications.com + + + host + *.www.laynepublications.com + + + + + Lazy Kush + + ruleset + + name + Lazy Kush + rule + + from + ^http://(www\.)?lazykush\.com/ + to + https://$1lazykush.com/ + + securecookie + + host + ^(?:w*\.)?lazykush\.com$ + name + .+ + + target + + + host + lazykush.com + + + host + *.lazykush.com + + + + + LboroAcUk + + ruleset + + exclusion + + pattern + ^http://lumen\.lboro\.ac\.uk/+(?!css/|favicon\.ico|images/) + + name + LboroAcUk + rule + + + from + ^http://(alumni|availability|bestmaths|booklab|campuslife|cash-plus|castrovalva|domains|dspace|easimap|email(?:admin)?|engskills|epay|lists|luis|lorls|lumen|mec|mondas|oss|pdwww|pma|prospectus|rapid|vacancies|webdiss|wfa)\.lboro\.ac\.uk/ + to + https://$1.lboro.ac.uk/ + + + from + ^http://(?:mooc|moochost|skaro)\.lboro\.ac\.uk/+ + to + https://easimap.lboro.ac.uk/ + + + securecookie + + host + ^(?:alumni|bestmaths|cash-plus|dspace|email(?:admin)?|engskills|epay|lists|luis|lorls|oss|pdwww|wfa)\.lboro\.ac\.uk$ + name + .+ + + target + + host + *.lboro.ac.uk + + + + Le Monde.fr (partial) + + ruleset + + name + Le Monde.fr (partial) + rule + + + from + ^http://s(1|2)\.lemde\.fr/ + to + https://s$1.lemde.fr/ + + + from + ^http://(abo|boutique|monabo|wwws)\.lemonde\.fr/ + to + https://$1.lemonde.fr/ + + + securecookie + + host + ^\.?(?:abo|boutique|monabo)\.lemonde\.fr$ + name + .+ + + target + + + host + *.lemde.fr + + + host + *.lemonde.fr + + + + + Le-VPN.com (false MCB) + + ruleset + + name + Le-VPN.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?le-vpn\.com/ + to + https://$1le-vpn.com/ + + securecookie + + host + ^\.le-vpn\.com$ + name + .+ + + target + + + host + le-vpn.com + + + host + *.le-vpn.com + + + + + LeFebvre.org + + ruleset + + name + LeFebvre.org + rule + + from + ^http://(www\.)?lefebvre\.org/ + to + https://$1lefebvre.org/ + + target + + + host + lefebvre.org + + + host + www.lefebvre.org + + + + + Lead Forensics (partial) + + ruleset + + name + Lead Forensics (partial) + rule + + from + ^http://(?:(?:secure|tracker)\.leadforensics|(?:www\.)?path-follower)\.com/ + to + https://secure.leadforensics.com/ + + target + + + host + *.leadforensics.com + + + host + path-follower.com + + + + + LeadFormix + + ruleset + + name + LeadFormix + rule + + from + ^http://(vlog\.|www\.)?leadformix\.com/ + to + https://$1leadformix.com/ + + securecookie + + host + ^www\.leadformix\.com$ + name + .+ + + target + + + host + leadformix.com + + + host + *.leadformix.com + + + + + LeadLander (partial) + + ruleset + + name + LeadLander (partial) + rule + + + from + ^https?://(?:www\.)?leadlander\.com/([\w\-]+\.css|images/) + to + https://ssl.leadlander.com/$1 + + + from + ^http://ssl\.leadlander\.com/ + to + https://ssl.leadlander.com/ + + + target + + + host + leadlander.com + + + host + *.leadlander.com + + + + + LeadPages.net + + ruleset + + name + LeadPages.net + rule + + + from + ^http://(?:www\.)?leadpages\.net/ + to + https://www.leadpages.net/ + + + from + ^http://(blog|lp|marketplace|my|podcast|support)\.leadpages\.net/ + to + https://$1.leadpages.net/ + + + securecookie + + host + ^my\.leadpages\.net$ + name + .+ + + target + + + host + leadpages.net + + + host + *.leadpages.net + + + + + Leader Technologies + + ruleset + + name + Leader Technologies + rule + + from + ^https?://(?:www\.)?leadertech\.com/ + to + https://www.leadertech.com/ + + securecookie + + host + ^www\.leadertech\.com$ + name + .* + + target + + + host + leadertech.com + + + host + www.leadertech.com + + + + + Leader-Manager.com + + ruleset + + name + Leader-Manager.com + rule + + from + ^http://(?:www\.)?leader-manager\.com/ + to + https://leader-manager.com/ + + securecookie + + host + ^leader-manager\.com$ + name + .+ + + target + + + host + leader-manager.com + + + host + www.leader-manager.com + + + + + Leadwerks.com (partial) + + ruleset + + name + Leadwerks.com (partial) + rule + + from + ^http://(www\.)?leadwerks\.com/(favicon\.ico|files/|img/|scripts/|/?werkspace/(?:cache/|cometchat/|index\.php|/?public/|uploads/)) + to + https://$1leadwerks.com/$2 + + target + + + host + leadwerks.com + + + host + www.leadwerks.com + + + + + Leaflet JS.com (partial) + + ruleset + + name + Leaflet JS.com (partial) + rule + + from + ^http://cdn\.leafletjs\.com/ + to + https://d591zijq8zntj.cloudfront.net/ + + target + + host + cdn.leafletjs.com + + + + League of Legends.com (partial) + + ruleset + + exclusion + + + pattern + ^http://forums\.na\.leagueoflegends\.com/board/riot-assets/ + + + pattern + ^http://signup\.leagueoflegends\.com/+(?!en/signup(?:$|\?|/captcha/)|favicon\.ico|theme/) + + + name + League of Legends.com (partial) + rule + + + from + ^http://((?:pbesignup\.(?:euw|na)|forums\.na|signup|support|www)\.)?leagueoflegends\.com/ + to + https://$1leagueoflegends.com/ + + + from + ^http://cdn\.leagueoflegends\.com/ + to + https://dx0wf1fepagqw.cloudfront.net/ + + + target + + + host + leagueoflegends.com + + + host + *.leagueoflegends.com + + + + + LeahScape.com + + ruleset + + name + LeahScape.com + rule + + from + ^http://(support\.|www\.)?leahscape\.com/ + to + https://$1leahscape.com/ + + securecookie + + host + ^support\.leahscape.com$ + name + .+ + + target + + + host + leahscape.com + + + host + *.leahscape.com + + + + + Leanpub.com (partial) + + ruleset + + name + Leanpub.com (partial) + rule + + + from + ^http://(www\.)?leanpub\.com/ + to + https://$1leanpub.com/ + + + from + ^http://samples\.leanpub\.com/ + to + https://s3.amazonaws.com/samples.leanpub.com/ + + + securecookie + + host + ^(?:www\.)?leanpub\.com$ + name + .+ + + target + + + host + leanpub.com + + + host + *.leanpub.com + + + + + Leap Motion + + ruleset + + name + Leap Motion + rule + + from + ^http://(www\.)?leapmotion\.com/ + to + https://$1leapmotion.com/ + + securecookie + + host + ^(?:www\.)?leapmotion\.com$ + name + .+ + + target + + + host + leapmotion.com + + + host + www.leapmotion.com + + + + + Learn my way.com + + ruleset + + name + Learn my way.com + rule + + from + ^http://(www\.)?learnmyway\.com/ + to + https://$1learnmyway.com/ + + target + + + host + learnmyway.com + + + host + www.learnmyway.com + + + + + LearnShare.com + + ruleset + + name + LearnShare.com + rule + + from + ^http://(lms4\.|www\.)?learnshare\.com/ + to + https://$1learnshare.com/ + + securecookie + + host + (?:.+\.)?learnshare\.com$ + name + .+ + + target + + + host + learnshare.com + + + host + *.learnshare.com + + + + + Learning Biz Package.com + + ruleset + + name + Learning Biz Package.com + rule + + from + ^http://(www\.)?learningbizpackage\.com/ + to + https://$1learningbizpackage.com/ + + securecookie + + host + ^(?:w*\.)?learningbizpackage\.com$ + name + .+ + + target + + + host + learningbizpackage.com + + + host + *.learningbizpackage.com + + + + + LeaseWeb.com (partial) + + ruleset + + name + LeaseWeb.com (partial) + rule + + from + ^http://(www\.)?leaseweb\.com/ + to + https://$1leaseweb.com/ + + securecookie + + host + ^(?:www\.)?leaseweb\.com$ + name + .+ + + target + + + host + leaseweb.com + + + host + *.leaseweb.com + + + + + Least Authority.com (partial) + + ruleset + + name + Least Authority.com (partial) + rule + + from + ^http://(?:www\.)?leastauthority\.com/ + to + https://leastauthority.com/ + + target + + + host + leastauthority.com + + + host + www.leastauthority.com + + + + + Ledgerscope.net + + ruleset + + name + Ledgerscope.net + platform + firefox + rule + + from + ^http://(www\.)?ledgerscope\.net/ + to + https://www.ledgerscope.net/ + + securecookie + + + host + ^ledgerscope\.net$ + name + .+ + + + host + ^www\.ledgerscope\.net$ + name + .+ + + + target + + + host + ledgerscope.net + + + host + www.ledgerscope.net + + + + + Leechaccess + + ruleset + + name + Leechaccess + rule + + from + ^http://(www\.)?leechaccess\.com/ + to + https://$1leechaccess.com/ + + securecookie + + host + ^(.*\.)?leechaccess\.com$ + name + .* + + target + + + host + leechaccess.com + + + host + www.leechaccess.com + + + + + Leet Media.com + + ruleset + + name + Leet Media.com + rule + + from + ^http://(www\.)?leetmedia\.com/ + to + https://$1leetmedia.com/ + + securecookie + + host + ^(?:w*\.)?leetmedia\.com$ + name + .+ + + target + + + host + leetmedia.com + + + host + *.leetmedia.com + + + + + Leetway.com (false MCB) + + ruleset + + name + Leetway.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?leetway\.com/ + to + https://$1leetway.com/ + + securecookie + + host + ^\.leetway\.com$ + name + .+ + + target + + + host + leetway.com + + + host + *.leetway.com + + + + + Legacy.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?legacy\.com/(?!$|favicon\.ico|globalscripts/tracking/AIMWrapper\.js|Images/|(?:[\w/-]+/)?(?:images/|ObitsTileCorner\.axd|scripts/|Styles/)|ns/|NS/|OBITUARIES/AffiliateArtwork\.axd) + + + pattern + ^http://memorialwebsites\.legacy\.com/(?!create(?:account|memorial)\.aspx|images/|styles/) + + + name + Legacy.com (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?legacy\.com/obituaries/Images/ + to + https://$1legacy.com/obituaries/images/ + + + from + ^http://((?:cache|mi|static|memorialwebsites|www)\.)?legacy\.com/ + to + https://$1legacy.com/ + + + from + ^http://connect\.legacy\.com/ + to + https://legacyconnect.ning.com/ + + + from + ^http://mi-(cache|static)\.legacy\.com/ + to + https://$1.legacy.com/ + + + securecookie + + + host + ^static\.legacy\.com$ + name + .+ + + + host + ^\.legacyconnect\.ning\.com$ + name + .+ + + + target + + + host + legacy.com + + + host + *.legacy.com + + + host + *.legacyconnect.ning.com + + + + + Legacy.net (partial) + + ruleset + + name + Legacy.net (partial) + rule + + from + ^http://ak-(cache|static)\.legacy\.net/ + to + https://a248.e.akamai.net/f/248/5245/7/ak-$1.legacy.net/ + + target + + host + *.legacy.net + + + + Legal Directories + + ruleset + + name + Legal Directories + rule + + from + ^http://(www\.)?legaldirectories\.com/ + to + https://$1legaldirectories.com/ + + securecookie + + host + ^www\.legaldirectories\.com$ + name + .+ + + target + + + host + legaldirectories.com + + + host + www.legaldirectories.com + + + + + LegitScript + + ruleset + + name + LegitScript + rule + + from + ^http://(?:www\.)?legitscript\.com/ + to + https://secure.legitscript.com/ + + target + + + host + www.legitscript.com + + + host + legitscript.com + + + + + Legolas Media (partial) + + ruleset + + name + Legolas Media (partial) + rule + + from + ^http://rt\.legolas-media\.com/ + to + https://rt.legolas-media.com/ + + securecookie + + host + ^\.legolas-media\.com$ + name + ^uid$ + + target + + host + *.legolas-media.com + + + + Legtux (cacert) + + ruleset + + name + Legtux (cacert) + platform + cacert + rule + + + from + ^http://(?:www\.)?legtux\.org/ + to + https://www.legtux.org/ + + + from + ^http://(davask|faq)\.legtux\.org/ + to + https://$1.legtux.org/ + + + securecookie + + host + ^(?:faq|www)\.legtux\.org$ + name + .+ + + target + + + host + legtux.org + + + host + *.legtux.org + + + + + Leibniz Supercomputing Centre + + ruleset + + name + Leibniz Supercomputing Centre + rule + + + from + ^http://www\.leibniz-supercomputing-centre\.(de|eu)/ + to + https://www.leibniz-supercomputing-centre.$1/ + + + from + ^http://www\.lr(-)?z\.(de|eu)/ + to + https://www.lr$1z.$2/ + + + from + ^http://(idportal|(?:www\.)?v2c)\.lrz\.de/ + to + https://$1.lrz.de/ + + + from + ^http://(idportal|www)\.lrz-muenchen\.de/ + to + https://$1.lrz-muenchen.de/ + + + from + ^http://www\.lrz-munich\.eu/ + to + https://www.lrz-munich.eu/ + + + securecookie + + host + ^idportal\.lrz\.de$ + name + .+ + + target + + + host + www.leibniz-supercomputing-centre.* + + + host + *.lrz.de + + + host + www.l-rz.de + + + host + www.lrz.eu + + + host + www.lrz-muenchen.de + + + host + www.lrz-munich.eu + + + + + Leiden Univ.nl (partial) + + ruleset + + exclusion + + pattern + ^http://biosyn\.lic\.leidenuniv\.nl/+(?!files/|modules/|sites/) + + name + Leiden Univ.nl (partial) + rule + + + from + ^http://((?:www\.)?beeldbank|blackboard|(?:www\.)?disc|lic|biosyn\.lic|www\.math|media|nepo|openaccess|socrates|lcserver\.strw|studiegids|(?:login\.)?uaccess|usis|weblog|webmail)\.leidenuniv\.nl/ + to + https://$1.leidenuniv.nl/ + + + from + ^http://(?:www\.)?physics\.leidenuniv\.nl/ + to + https://www.physics.leidenuniv.nl/ + + + target + + host + *.leidenuniv.nl + + + + Lelo.com + + ruleset + + name + Lelo.com + rule + + + from + ^http://lelo\.com/ + to + https://lelo.com/ + + + from + ^http://([^/:@\.]+)\.lelo\.com/ + to + https://$1.lelo.com/ + + + target + + + host + lelo.com + + + host + *.lelo.com + + + + + Lenos Softwarse (partial) + + ruleset + + name + Lenos Softwarse (partial) + rule + + from + ^http://secure\.lenos\.com/ + to + https://secure.lenos.com/ + + securecookie + + host + ^secure\.lenos\.com$ + name + .* + + target + + host + secure.lenos.com + + + + Lenovo (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.lenovo\.com/(?:support|training)/ + + + pattern + ^http://outlet\.lenovo\.com/(?!.+/images/|.+/js/|.+/seutil\.workflow:LoadCombinedResource|ISS_Static/|SEUILibrary/) + + + pattern + http://shop\.lenovo\.com/\w\w/\w\w/services-warranty(?:$|\?|/) + + + name + Lenovo (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?lenovo\.co\.uk/?$ + to + https://www.lenovo.com/uk/en/ + + + from + ^http://(?:www\.)?lenovo\.com(?::80)?/(?!us)(\w\w)/?(?:\?.*)?$ + to + https://www.lenovo.com/$1/$1/ + + + from + ^http://(?:www\.)?lenovo\.com/depotstatus/?$ + to + https://download.lenovo.com/lenovo/content/vru/depotstatus.html + + + from + ^http://(?:www\.)?lenovo\.com/friendsandfamily/?$ + to + https://shop.lenovo.com/SEUILibrary/controller/Lenovo:EnterStdAffinity?affinity=lenovofamily&ConfigContext=StdAffinityPortal + + + from + ^https?://(?:(?:www\.)?lenovo\.com/link/redirect\.www\.lenovo\.com/)?(?:www\.)?thinkpad\.com/(?:.*) + to + https://www.lenovo.com/us/en/?cid=SEO-thinkpadcom + + + from + ^http://lenovo\.com/ + to + https://www.lenovo.com/ + + + from + ^http:///shop\.lenovo\.com/us/?$ + to + https://www.lenovo.com/products/us/desktop/essential/c-series + + + from + ^http://(checkout|download|outlet|s|shop|www)\.lenovo\.com/ + to + https://$1.lenovo.com/ + + + from + ^http://forums?\.lenovo\.com/ + to + https://forums.lenovo.com/ + + + from + ^http://(www\.)?lenovoorders\.com/ + to + https://$1lenovoorders.com/ + + + from + ^https?://(?:www\.)?lenovovision\.com/(?:.*) + to + https://www.lenovo.com/ + + + downgrade + 1 + from + ^https://www\.lenovo\.com/training/ + to + http://www.lenovo.com/training/ + + + downgrade + 1 + from + ^https://(blog|(?:consumer)?support|news|social)\.lenovo\.com/ + to + http://$1.lenovo.com/ + + + target + + + host + lenovo.co.uk + + + host + www.lenovo.co.uk + + + host + lenovo.com + + + host + *.lenovo.com + + + host + lenovoorders.com + + + host + www.lenovoorders.com + + + host + lenovovision.com + + + host + www.lenovovision.com + + + host + thinkpad.com + + + host + www.thinkpad.com + + + + + LensRentals.com + + ruleset + + name + LensRentals.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?lensrentals\.com/ + to + https://www.lensrentals.com/ + + target + + + host + www.lensrentals.com + + + host + lensrentals.com + + + + + Leo.org (partial) + + ruleset + + exclusion + + pattern + http://bar\.leo\.org/ + + name + Leo.org (partial) + rule + + + from + ^http://(?:www\.)?leo\.org/ + to + https://www.leo.org/ + + + from + ^http://([^/:@]+)\.leo\.org/ + to + https://$1.leo.org/ + + + target + + + host + leo.org + + + host + *.leo.org + + + + + Leroy Farmer City Press (partial) + + ruleset + + name + Leroy Farmer City Press (partial) + rule + + from + ^http://(?:www\.)?leroyfcpress\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.leroyfcpress.com/$1 + + target + + + host + leroyfcpress.com + + + host + www.leroyfcpress.com + + + + + LesFurets.com (partial) + + ruleset + + name + LesFurets.com (partial) + rule + + from + ^https?://cdn\.lesfurets\.com/ + to + https://d2f59t599bk8ak.cloudfront.net/ + + target + + host + cdn.lesfurets.com + + + + Lester Chan.net + + ruleset + + name + Lester Chan.net + rule + + + from + ^http://lc2\.lcstatic\.net/ + to + https://lesterchan-lesterchan.netdna-ssl.com/ + + + from + ^http://(www\.)?lesterchan\.net/ + to + https://$1lesterchan.net/ + + + securecookie + + host + ^lesterchan\.net$ + name + .+ + + target + + + host + lc2.lcstatic.net + + + host + lesterchan.net + + + host + www.lesterchan.net + + + + + Lets Encrypt.org + + ruleset + + name + Lets Encrypt.org + rule + + from + ^http://(www\.)?letsencrypt\.org/ + to + https://$1letsencrypt.org/ + + target + + + host + letsencrypt.org + + + host + www.letsencrypt.org + + + + + LetsSingIt (partial) + + ruleset + + name + LetsSingIt (partial) + rule + + from + ^http://cdn\.lsistatic\.com/ + to + https://lsi.cachefly.net/ + + target + + host + cdn.lsistatic.com + + + + Lettre-de-motivation-facile.com + + ruleset + + name + Lettre-de-motivation-facile.com + rule + + from + ^http://(www\.)?lettre-de-motivation-facile\.com/ + to + https://$1lettre-de-motivation-facile.com/ + + securecookie + + host + ^(?:w*\.)?lettre-de-motivation-facile\.com$ + name + .+ + + target + + + host + lettre-de-motivation-facile.com + + + host + *.lettre-de-motivation-facile.com + + + + + Level 3.com (partial) + + ruleset + + name + Level 3.com (partial) + rule + + from + ^http://account\.level3\.com/ + to + https://account.level3.com/ + + securecookie + + host + ^account\.level3\.com$ + name + .+ + + target + + host + account.level3.com + + + + Lever.co + + ruleset + + name + Lever.co + rule + + from + ^http://(jobs\.|www\.)?lever\.co/ + to + https://$1lever.co/ + + securecookie + + host + ^jobs\.lever\.co$ + name + .+ + + target + + + host + lever.co + + + host + *.lever.co + + + + + Levexis (partial) + + ruleset + + name + Levexis (partial) + rule + + + from + ^http://pfa\.levexis\.com/ + to + https://pfa.levexis.com/ + + + from + ^http://(?:res|sec)\.levexis\.com/ + to + https://sec.levexis.com/ + + + securecookie + + host + ^pfa\.levexis\.com$ + name + .+ + + target + + host + *.levexis.com + + + + Leviathan Security.com (false MCB) + + ruleset + + name + Leviathan Security.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?leviathansecurity\.com/ + to + https://$1leviathansecurity.com/ + + target + + + host + leviathansecurity.com + + + host + *.leviathansecurity.com + + + + + Leviathan Security.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?leviathansecurity\.com/+blog(?:$|[?/]) + + name + Leviathan Security.com (partial) + rule + + from + ^http://(www\.)?leviathansecurity\.com/ + to + https://$1leviathansecurity.com/ + + target + + + host + leviathansecurity.com + + + host + www.leviathansecurity.com + + + + + Levny-hosting.cz + + ruleset + + name + Levny-hosting.cz + rule + + from + ^http://(www\.)?levny-hosting\.cz/ + to + https://$1levny-hosting.cz/ + + securecookie + + host + ^www\.levny-hosting\.cz$ + name + .+ + + target + + + host + levny-hosting.cz + + + host + www.levny-hosting.cz + + + + + Levo League.com (partial) + + ruleset + + name + Levo League.com (partial) + rule + + from + ^http://assets\.levoleague\.com/ + to + https://d1liz66zbw1f5h.cloudfront.net/ + + target + + host + assets.levoleague.com + + + + Levonline.com + + ruleset + + name + Levonline.com + rule + + from + ^http://(www\.)?levonline\.com/ + to + https://$1levonline.com/ + + securecookie + + host + ^(?:www\.)?levonline\.com$ + name + .+ + + target + + + host + levonline.com + + + host + www.levonline.com + + + + + LewRockwell.com + + ruleset + + name + LewRockwell.com + rule + + from + ^http://(beta\.|www\.)?lewrockwell\.com/ + to + https://$1lewrockwell.com/ + + securecookie + + host + ^(?:beta|www)\.lewrockwell.com$ + name + .+ + + target + + + host + lewrockwell.com + + + host + *.lewrockwell.com + + + + + Lexity.com + + ruleset + + name + Lexity.com + rule + + from + ^http://(commercecentral\.|www\.)?lexity\.com/ + to + https://$1lexity.com/ + + securecookie + + host + ^(?:\.|www\.)?lexity\.com$ + name + .+ + + target + + + host + lexity.com + + + host + *.lexity.com + + + + + LezloveVideo.com + + ruleset + + name + LezloveVideo.com + rule + + from + ^https?://(?:www\.)?lezlovevideo\.com/ + to + https://www.lezlovevideo.com/ + + securecookie + + host + ^www\.lezlovevideo\.com$ + name + .+ + + target + + + host + lezlovevideo.com + + + host + www.lezlovevideo.com + + + + + Lh.co.th + + ruleset + + name + Lh.co.th + rule + + from + ^http://(www\.)?lh\.co\.th/ + to + https://www.lh.co.th/ + + target + + + host + lh.co.th + + + host + www.lh.co.th + + + + + LiLux.lu + + ruleset + + name + LiLux.lu + rule + + from + ^http://((?:lists|mail|www)\.)?lilux\.lu/ + to + https://$1lilux.lu/ + + securecookie + + host + ^(?:mail|www)\.lilux\.lu$ + name + .+ + + target + + + host + lilux.lu + + + host + *.lilux.lu + + + + + LibAnswers + + ruleset + + name + LibAnswers + rule + + from + ^http://(www\.)?libanswers\.com/ + to + https://$1libanswers.com/ + + target + + + host + libanswers.com + + + host + www.libanswers.com + + + + + LibGuides + + ruleset + + name + LibGuides + rule + + from + ^http://(\w+\.)?libguides\.com/ + to + https://$1libguides.com/ + + target + + + host + libguides.com + + + host + *.libguides.com + + + + + Libcom + + ruleset + + name + Libcom + rule + + from + ^http://(www\.)?libcom\.org/ + to + https://$1libcom.org/ + + target + + + host + libcom.org + + + host + www.libcom.org + + + + + Libdems.org.uk (partial) + + ruleset + + name + Libdems.org.uk (partial) + rule + + + from + ^http://(?:www\.)?libdems\.org\.uk/(app/|favicon\.ico|make_a_donation\.aspx|siteFiles/) + to + https://www.libdems.org.uk/$1 + + + from + ^http://pdd\.libdems\.org\.uk/ + to + https://pdd.libdems.org.uk/ + + + securecookie + + host + ^(?:www\.)?libdems\.org\.uk$ + name + .+ + + target + + + host + libdems.org.uk + + + host + *.libdems.org.uk + + + + + Liberal America.org (false MCB) + + ruleset + + name + Liberal America.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?liberalamerica\.org/ + to + https://www.liberalamerica.org/ + + securecookie + + host + ^\.liberalamerica\.org$ + name + .+ + + target + + + host + liberalamerica.org + + + host + *.liberalamerica.org + + + + + Liberal America.org (partial) + + ruleset + + name + Liberal America.org (partial) + rule + + from + ^http://(?:www\.)?liberalamerica\.org/(?=wp-content/|wp-includes/) + to + https://www.liberalamerica.org/ + + target + + + host + liberalamerica.org + + + host + www.liberalamerica.org + + + + + Liberian Geek.net + + ruleset + + name + Liberian Geek.net + rule + + from + ^http://(www\.)?liberiangeek\.net/ + to + https://$1liberiangeek.net/ + + target + + + host + liberiangeek.net + + + host + www.liberiangeek.net + + + + + Liberty + + ruleset + + name + Liberty + rule + + from + ^http://(www\.)?liberty-human-rights\.org\.uk/ + to + https://$1liberty-human-rights.org.uk/ + + securecookie + + host + ^(?:www\.)?liberty-human-rights\.org\.uk$ + name + .+ + + target + + + host + liberty-human-rights.org.uk + + + host + www.liberty-human-rights.org.uk + + + + + Liberty Flail Mowers.com (partial) + + ruleset + + name + Liberty Flail Mowers.com (partial) + rule + + from + ^http://(www\.)?libertyflailmowers\.com/(?!/*(?:$|\?)) + to + https://$1libertyflailmowers.com/ + + target + + + host + libertyflailmowers.com + + + host + www.libertyflailmowers.com + + + + + Library Anywhere + + ruleset + + name + Library Anywhere + rule + + + from + ^http://(?:www\.)?libanywhere\.com/ + to + https://www.libanywhere.com/ + + + from + ^http://(?:www\.)?syndetics\.com/ + to + https://secure.syndetics.com/ + + + target + + + host + www.libanywhere.com + + + host + libanywhere.com + + + host + syndetics.com + + + host + www.syndetics.com + + + host + secure.syndetics.com + + + + + LibraryThing + + ruleset + + name + LibraryThing + rule + + from + ^http://((?:pics|static|www)\.)?librarything\.com/ + to + https://$1librarything.com/ + + securecookie + + host + ^(?:.*\.)?librarything\.com$ + name + .+ + + target + + + host + librarything.com + + + host + *.librarything.com + + + + + Libravatar.org + + ruleset + + name + Libravatar.org + rule + + + from + ^http://(www\.)?libravatar\.org/ + to + https://$1libravatar.org/ + + + from + ^http://(?:sec)?cdn\.libravatar\.org/ + to + https://seccdn.libravatar.org/ + + + target + + + host + libravatar.org + + + host + *.libravatar.org + + + + + LibreOffice (partial) + + ruleset + + exclusion + + pattern + ^http;//(?:conference|extensions)\.libreoffice\.org/+(?!.+(?:@download/image|\.gif|\.ico|/logo|\.png|/\w+_thumb)(?:$|\?)|(?:\d+/)?portal_[ck]ss/) + + name + LibreOffice (partial) + rule + + + from + ^http://(?:www\.)?libreoffice\.org/ + to + https://www.libreoffice.org/ + + + from + ^http://(conference|donate|extensions|gerrit|help)\.libreoffice\.org/ + to + https://$1.libreoffice.org/ + + + securecookie + + host + ^(?:donate|help|www)\.libreoffice\.org$ + name + .* + + target + + + host + libreoffice.org + + + host + *.libreoffice.org + + + + + LibreOffice-Box + + ruleset + + name + LibreOffice-Box + rule + + from + ^http://(?:www\.)?libreofficebox\.org/ + to + https://www.libreofficebox.org/ + + target + + + host + libreofficebox.org + + + host + www.libreofficebox.org + + + + + LibrePlanet.org + + ruleset + + name + LibrePlanet.org + rule + + from + ^http://(?:(media\.)|www\.)?libreplanet\.org/ + to + https://$1libreplanet.org/ + + securecookie + + host + ^(?:www\.)?libreplanet\.org$ + name + .+ + + target + + + host + libreplanet.org + + + host + *.libreplanet.org + + + + + Libreswan.org + + ruleset + + name + Libreswan.org + rule + + from + ^http://((?:download|lists|www)\.)?libreswan\.org/ + to + https://$1libreswan.org/ + + target + + + host + libreswan.org + + + host + *.libreswan.org + + + + + Libri.de + + ruleset + + name + Libri.de + rule + + + from + ^https?://(?:www\.)?libri\.de/ + to + https://www.libri.de/ + + + from + ^http://media\.libri\.de/ + to + https://media.libri.de/ + + + securecookie + + host + ^www\.libri\.de$ + name + .* + + target + + + host + libri.de + + + host + *.libri.de + + + + + LibriVox (partial) + + ruleset + + name + LibriVox (partial) + rule + + from + ^http://(forum\.|www\.)?librivox\.org/ + to + https://$1librivox.org/ + + target + + + host + librivox.org + + + host + *.librivox.org + + + + + Lichtblick.de + + ruleset + + name + Lichtblick.de + rule + + from + ^http://(www\.)?lichtblick\.de/ + to + https://www.lichtblick.de/ + + target + + + host + www.lichtblick.de + + + host + lichtblick.de + + + + + Lidl (partial) + + ruleset + + name + Lidl (partial) + rule + + from + ^http://webforms\.lidl\.com/ + to + https://webforms.lidl.com/ + + securecookie + + host + ^webforms\.lidl\.com$ + name + .* + + target + + host + webforms.lidl.com + + + + Life Extension Magazine + + ruleset + + name + Life Extension Magazine + rule + + from + ^http://(www\.)?lef\.org/ + to + https://www.lef.org/ + + target + + + host + www.lef.org + + + host + lef.org + + + + + Life in the Fast Lane (partial) + + ruleset + + name + Life in the Fast Lane (partial) + rule + + from + ^http://(?:www\.)?lifeinthefastlane\.ca/(favicon\.ico|wp-content/) + to + https://www.lifeinthefastlane.ca/$1 + + target + + + host + lifeinthefastlane.ca + + + host + www.lifeinthefastlane.ca + + + + + Lifeline Australia + + ruleset + + name + Lifeline Australia + rule + + from + ^(http://(www\.)?|https://)lifeline\.org\.au/ + to + https://www.lifeline.org.au/ + + securecookie + + host + ^www\.lifeline\.org\.au$ + name + .+ + + target + + + host + lifeline.org.au + + + host + www.lifeline.org.au + + + + + Liferay.com + + ruleset + + name + Liferay.com + rule + + + from + ^http://www\.liferay\.com/ + to + https://www.liferay.com/ + + + from + ^http://liferay\.com/ + to + https://liferay.com/ + + + target + + + host + www.liferay.com + + + host + liferay.com + + + + + Lifesaving Resources + + ruleset + + name + Lifesaving Resources + rule + + from + ^http://(www\.)?lifesaving\.com/ + to + https://$1lifesaving.com/ + + securecookie + + host + ^\.lifesaving\.com$ + name + .+ + + target + + + host + lifesaving.com + + + host + *.lifesaving.com + + + + + Lift Security.io + + ruleset + + name + Lift Security.io + rule + + from + ^http://(?:(blog\.)|www\.)?liftsecurity\.io/ + to + https://$1liftsecurity.io/ + + target + + + host + liftsecurity.io + + + host + *.liftsecurity.io + + + + + LiftShare + + ruleset + + name + LiftShare + rule + + + from + ^http://liftshare\.com/ + to + https://liftshare.com/ + + + from + ^http://(images|www|scripts)\.liftshare\.com/ + to + https://$1.liftshare.com/ + + + securecookie + + host + ^(.+\.)?liftshare\.com$ + name + .* + + target + + + host + liftshare.com + + + host + www.liftshare.com + + + host + images.liftshare.com + + + host + scripts.liftshare.com + + + + + Liftdna.com (partial) + + ruleset + + name + Liftdna.com (partial) + rule + + + from + ^http://(?:www\.)?liftdna\.com/(?=\w+\.js|css/|images/|js/) + to + https://a248.e.akamai.net/f/1051/5327/3h/www.liftdna.com/ + + + from + ^http://(hosted|static)\.liftdna\.com/ + to + https://$1.liftdna.com/ + + + from + ^http://marketing\.liftdna\.com/ + to + https://www.actonsoftware.com/ + + + from + ^http://reporting\.liftdna\.com/(users)?(?:\?.*)?$ + to + https://lift.openx.com/$1 + + + from + ^http://reporting\.liftdna\.com/users/([^?]*)(?:$\?.*)? + to + https://lift.openx.com/users/$1 + + + target + + + host + liftdna.com + + + host + *.liftdna.com + + + + + Ligatus (partial) + + ruleset + + name + Ligatus (partial) + rule + + from + ^http://(d|ms|ads-(?:de|fr|nl)\.ret01|x)\.ligatus\.com/ + to + https://$1.ligatus.com/ + + securecookie + + + host + ^\.ligatus\.com$ + name + ^LIG_Y$ + + + host + ^\.ret01\.ligatus\.com$ + name + .+ + + + target + + host + *.ligatus.com + + + + Light Blue Touchpaper.org + + ruleset + + name + Light Blue Touchpaper.org + rule + + from + ^http://(?:www\.)?lightbluetouchpaper\.org/ + to + https://www.lightbluetouchpaper.org/ + + target + + + host + lightbluetouchpaper.org + + + host + www.lightbluetouchpaper.org + + + + + Light-Paint.com + + ruleset + + name + Light-Paint.com + rule + + + from + ^http://(?:www\.)?light-paint\.com/ + to + https://light-paint.com/ + + + from + ^http://secure\.light-paint\.com/ + to + https://secure.light-paint.com/ + + + securecookie + + host + ^light-paint\.com$ + name + .+ + + target + + + host + light-paint.com + + + host + *.light-paint.com + + + + + Liikenneturva + + ruleset + + name + Liikenneturva + rule + + from + ^http://(www\.)?liikenneturva\.fi/ + to + https://$1liikenneturva.fi/ + + securecookie + + host + ^(?:www\.)liikenneturva\.fi$ + name + .+ + + target + + + host + liikenneturva.fi + + + host + www.liikenneturva.fi + + + + + Lijit.com + + ruleset + + name + Lijit.com + platform + mixedcontent + rule + + + from + ^http://(ap\.|ce\.)?lijit\.com/ + to + https://$1lijit.com/ + + + from + ^http://(?:secure|www)\.lijit\.com/ + to + https://secure.lijit.com/ + + + securecookie + + + host + ^\.lijit\.com$ + name + .+ + + + host + ^\.secure\.lijit\.com$ + name + .+ + + + target + + + host + lijit.com + + + host + *.lijit.com + + + + + Likes + + ruleset + + name + Likes + rule + + + from + ^http://(www\.)?likes\.com/ + to + https://$1likes.com/ + + + from + ^http://i\d\.likes-media\.com/ + to + https://d1qfo1bk8s78mq.cloudfront.net/ + + + securecookie + + host + ^\.likes\.com$ + name + .+ + + target + + + host + likes.com + + + host + *.likes.com + + + host + *.likes-media.com + + + + + Liliani + + ruleset + + name + Liliani + rule + + from + ^http://(?:www\.)?liliani\.com\.br/ + to + https://www.liliani.com.br/ + + securecookie + + host + ^www\.liliani\.com\.br$ + name + .* + + target + + + host + liliani.com.br + + + host + www.liliani.com.br + + + + + LimeService + + ruleset + + name + LimeService + rule + + from + ^http://(?:www\.)?limeservice\.com/ + to + https://www.limeservice.com/ + + securecookie + + host + ^www\.limeservice\.com$ + name + .+ + + target + + + host + limeservice.com + + + host + www.limeservice.com + + + + + LimeSurvey + + ruleset + + name + LimeSurvey + rule + + from + ^http://(?:www\.)?limesurvey\.org/ + to + https://www.limesurvey.org/ + + securecookie + + host + ^www\.limesurvey\.org$ + name + .+ + + target + + + host + limesurvey.org + + + host + www.limesurvey.org + + + + + Limelight Networks (partial) + + ruleset + + name + Limelight Networks (partial) + rule + + from + ^http://([\w\-]+)\.hs\.llnwd\.net/ + to + https://$1.hs.llnwd.net/ + + target + + host + *.hs.llnwd.net + + + + Limited 2 Art.com (partial) + + ruleset + + name + Limited 2 Art.com (partial) + rule + + from + ^http://(www\.)?limited2art\.com/(?=content/|default\.asp\?template=l2art_checkout\d\.htm|favicon\.ico|statics/|templates/) + to + https://$1limited2art.com/ + + target + + + host + limited2art.com + + + host + www.limited2art.com + + + + + Lindt USA + + ruleset + + name + Lindt USA + platform + mixedcontent + rule + + from + ^http://(?:www\.)?lindtusa\.com/ + to + https://www.lindtusa.com/ + + target + + + host + www.lindtusa.com + + + host + lindtusa.com + + + + + Linear Collider Collaboration + + ruleset + + name + Linear Collider Collaboration + rule + + from + ^http://(www\.)?linearcollider\.org/ + to + https://$1linearcollider.org/ + + securecookie + + host + ^\.linearcollider\.org$ + name + .+ + + target + + + host + linearcollider.org + + + host + *.linearcollider.org + + + + + Linerunner (partial) + + ruleset + + name + Linerunner (partial) + rule + + + from + ^http://(api\.|www\.)?getcloudapp\.com/ + to + https://$1getcloudapp.com/ + + + from + ^http://store\.getcloudapp\.com//+([^?]+) + to + https://my.cl.ly/plans/$1 + + + from + ^http://store\.getcloudapp\.com//+\?.* + to + https://my.cl.ly/plans + + + from + ^http://store\.getcloudapp\.com/ + to + https://my.cl.ly/plans + + + target + + + host + getcloudapp.com + + + host + *.getcloudapp.com + + + + + Lingospot (partial) + + ruleset + + name + Lingospot (partial) + rule + + + from + ^http://engine\.lingospot\.com/ + to + https://engine.lingospot.com/ + + + from + ^https?://(?:blog|wordpress)\.lingospot\.com/ + to + https://lingonew.wpengine.com/ + + + target + + host + *.lingospot.com + + + + Linguee + + ruleset + + name + Linguee + rule + + + from + ^http://(?:www\.)?\.linguee\.(com|de)/ + to + https://www.linguee.$1/ + + + from + ^http://tool\.linguee\.com/ + to + https://tool.linguee.com/ + + + target + + + host + linguee.com + + + host + www.linguee.com + + + host + tool.linguee.com + + + host + lingue.de + + + host + www.lingue.de + + + + + Link+ Catalog + + ruleset + + name + Link+ Catalog + rule + + + downgrade + 1 + from + ^https://csul\.iii\.com/search~S0\?/([^/]+)/([^/]+)/([^/]+)/bibimage($|[^a-zA-Z]) + to + http://csul.iii.com/search~S0?/$1/$2/$3/bibimage$4 + + + from + ^http://csul\.iii\.com/ + to + https://csul.iii.com/ + + + target + + host + csul.iii.com + + + + Linkbucks + + ruleset + + name + Linkbucks + rule + + from + ^https?://(?:static\.|(www\.))?linkbucks\.com/ + to + https://$1linkbucks.com/ + + securecookie + + host + ^(?:www\.)?linkbucks\.com$ + name + .+ + + target + + + host + linkbucks.com + + + host + *.linkbucks.com + + + + + LinkedIn (partial) + + ruleset + + name + LinkedIn (partial) + rule + + + from + ^http://static\.licdn\.com/ + to + https://static.licdn.com/ + + + from + ^http://((?:\w\w|help|platform|www)\.)?linkedin\.com/ + to + https://$1linkedin.com/ + + + from + ^http://lnkd\.in/+([^?]*)(?:\?)?$ + to + https://www.linkedin.com/slink?code=$1 + + + from + ^http://lnkd\.in/+([^?]*)\? + to + https://www.linkedin.com/slink?code=$1& + + + securecookie + + host + ^(?:help|www)?\.linkedin\.com$ + name + .+ + + target + + + host + static.licdn.com + + + host + linkedin.com + + + host + *.linkedin.com + + + host + lnkd.in + + + + + LinksAlpha.com (partial) + + ruleset + + name + LinksAlpha.com (partial) + rule + + + from + ^http://(?:www\.)?linksalpha\.com/ + to + https://www.linksalpha.com/ + + + from + ^http://api\.linksalpha\.com/ + to + https://api.linksalpha.com/ + + + from + ^http://support\.linksalpha\.com/generated/ + to + https://generated.zendesk.com/generated/ + + + securecookie + + host + ^.+\.linksalpha\.com$ + name + .+ + + target + + + host + linksalpha.com + + + host + *.linksalpha.com + + + + + Linksys (partial) + + ruleset + + exclusion + + pattern + ^http://store\.linksys\.com/(?!\w+\.css$|css/|imagecache/|images/|moduleimages/) + + name + Linksys (partial) + rule + + + from + ^http://(?:www\.)?linksys\.com/ + to + https://www.linksys.com/ + + + from + ^http://(community|store|support)\.linksys\.com/ + to + https://$1.linksys.com/ + + + from + ^http://downloads\.linksys\.com/ + to + https://a248.e.akamai.net/f/248/1126/10/downloads.linksys.com/ + + + from + ^http://linksys-content\.vcommerce\.com/ + to + https://store.linksys.com/ + + + securecookie + + host + ^.*\.linksys\.com$ + name + .+ + + target + + + host + linksys.com + + + host + *.linksys.com + + + host + linksys-content.vcommerce.com + + + + + Linksysbycisco.com + + ruleset + + name + Linksysbycisco.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?linksysbycisco\.com/ + to + https://www.linksysbycisco.com/ + + target + + + host + linksysbycisco.com + + + host + www.linksysbycisco.com + + + + + Linn Records.com (partial) + + ruleset + + name + Linn Records.com (partial) + rule + + + from + ^http://(?:www\.)?linnrecords\.com/(?=(?:account|forgotten|login)\.aspx|css/|images/|img/|img\\comment\.gif|js/|linn\.ico|WebResource\.axd) + to + https://www.linnrecords.com/ + + + from + ^http://small\.linncdn\.com/ + to + https://gp1.wac.edgecastcdn.net/0043E0/ + + + target + + + host + small.linncdn.com + + + host + linnrecords.com + + + host + www.linnrecords.com + + + + + Linode + + ruleset + + name + Linode + rule + + + from + ^http://((?:blog|forum|library|stats|manager|www)\.)?linode\.com/ + to + https://$1linode.com/ + + + from + ^http://status\.linode\.com/ + to + https://linode.statuspage.io/ + + + securecookie + + host + ^(?:.*\.)?linode\.com$ + name + .+ + + target + + + host + linode.com + + + host + *.linode.com + + + + + Linphone + + ruleset + + name + Linphone + rule + + from + ^http://(?:www\.)?linphone\.org/ + to + https://www.linphone.org/ + + target + + + host + linphone.org + + + host + www.linphone.org + + + + + Linux Cloud VPS.com + + ruleset + + name + Linux Cloud VPS.com + rule + + from + ^http://(www\.)?linuxcloudvps\.com/ + to + https://$1linuxcloudvps.com/ + + target + + + host + linuxcloudvps.com + + + host + www.linuxcloudvps.com + + + + + Linux Containers.org + + ruleset + + name + Linux Containers.org + rule + + from + ^http://((?:cgmanager|images|jenkins|lists|qa|www)\.)?linuxcontainers\.org/ + to + https://$1linuxcontainers.org/ + + securecookie + + host + ^jenkins\.linuxcontainers\.org$ + name + .+ + + target + + + host + linuxcontainers.org + + + host + *.linuxcontainers.org + + + + + Linux Counter + + ruleset + + name + Linux Counter + rule + + + from + ^http://counter\.li\.org/ + to + https://linuxcounter.net/ + + + from + ^http://(www\.)?linuxcounter\.net/ + to + https://$1linuxcounter.net/ + + + securecookie + + host + ^linuxcounter.net$ + name + .+ + + target + + + host + counter.li.org + + + host + linuxcounter.net + + + host + www.linuxcounter.net + + + + + Linux Distro Community.com + + ruleset + + name + Linux Distro Community.com + rule + + from + ^http://((?:bbs|media|static|www)\.)?linuxdistrocommunity\.com/ + to + https://$1linuxdistrocommunity.com/ + + securecookie + + host + ^\.bbs\.linuxdistrocommunity\.com$ + name + .+ + + target + + + host + linuxdistrocommunity.com + + + host + *.linuxdistrocommunity.com + + + + + Linux Forums (partial) + + ruleset + + name + Linux Forums (partial) + rule + + from + ^http://(www\.)?linuxforums\.org/ + to + https://$1linuxforums.org/ + + securecookie + + host + ^(?:w*\.)?linuxforums\.org$ + name + .+ + + target + + + host + linuxforums.org + + + host + *.linuxforums.org + + + + + Linux Foundation (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?linuxfoundation\.org/(?!about/join/individual(?:$|\?|/)|misc/|sites/|user(?:$|\?)) + + + pattern + ^http://collabprojects\.linuxfoundation\.org/+(?!sites/) + + + pattern + ^http://events\.linuxfoundation\.org/(?:events(?:/|/[\w-]+)?)?(?!/register)(?:\?.*)?$ + + + name + Linux Foundation (partial) + rule + + + from + ^http://((?:admin|automotive|collabprojects|events|identity|ldn|lsbbugs|training|www)\.)?linuxfoundation\.org/ + to + https://$1linuxfoundation.org/ + + + from + ^http://go\.linuxfoundation\.org/+(?:\?.*)?$ + to + https://www.linuxfoundation.org/ + + + from + ^http://go\.linuxfoundation\.org/ + to + https://pi.pardot.com/ + + + from + ^http://lists\.linux(-)?foundation\.org/ + to + https://lists.linux$1foundation.org/ + + + securecookie + + host + ^(?!collabprojects\.|events\.).*\.linuxfoundation\.org$ + name + .+ + + target + + + host + linuxfoundation.org + + + host + *.linuxfoundation.org + + + host + *.linux-foundation.org + + + + + Linux Game Publishing (partial) + + ruleset + + name + Linux Game Publishing (partial) + rule + + from + ^http://(www\.)?linuxgamepublishing\.com/ + to + https://$1linuxgamepublishing.com/ + + target + + + host + linuxgamepublishing.com + + + host + www.linuxgamepublishing.com + + + + + Linux Magazine (partial) + + ruleset + + name + Linux Magazine (partial) + rule + + + from + ^https?://linux-magazine\.com/ + to + https://www.linux-magazine.com/ + + + from + ^http://www\.linux-magazine\.com/(design/|extension/|lnmshop/|static/|Subscribe/|var/) + to + https://www.linux-magazine.com/$1 + + + target + + + host + linux-magazine.com + + + host + www.linux-magazine.com + + + + + Linux New Media (partial) + + ruleset + + name + Linux New Media (partial) + rule + + + from + ^http://rotation\.linuxnewmedia\.com/ + to + https://rotation.linuxnewmedia.com/ + + + from + ^http://shop\.linuxnewmedia\.(com|de)/ + to + https://shop.linuxnewmedia.$1/ + + + securecookie + + host + ^.*\.linuxnewmedia\.(com|de)$ + name + .* + + target + + + host + *.linuxnewmedia.com + + + host + *.shop.linuxnewmedia.com + + + host + *.linuxnewmedia.de + + + host + *.shop.linuxnewmedia.de + + + + + Linux-Magazin Online (partial) + + ruleset + + name + Linux-Magazin Online (partial) + rule + + + from + ^https?://(?:www\.)?linux-magazin\.de/ + to + https://www.linux-magazin.de/ + + + from + ^http://academy\.linux-magazin\.de/(design|extension|user)/ + to + https://academy.linux-magazin.de/$1/ + + + from + ^https?://academy\.linux-magazin\.de/lnmshop/forward/online-services/academy-schulungen-1\.html + to + https://shop.linuxnewmedia.de/online-services/academy-schulungen-1.html + + + from + ^http://streaming\.linux-magazin\.de/ + to + https://streaming.linux-magazin.de/ + + + securecookie + + host + ^.*\.linux-magazin\.de$ + name + .* + + target + + + host + linux-magazin.de + + + host + *.linux-magazin.de + + + + + Linux.com + + ruleset + + name + Linux.com + platform + mixedcontent + rule + + + from + ^http://((?:store|video|www)\.)?linux\.com/ + to + https://$1linux.com/ + + + from + ^https?://jobs\.linux\.com/(image|file|partner)s/ + to + https://www.jobthread.com/$1s/ + + + securecookie + + host + ^.*\.linux\.com$ + name + .* + + target + + + host + linux.com + + + host + *.linux.com + + + host + *.store.linux.com + + + + + Linux.lu (partial) + + ruleset + + name + Linux.lu (partial) + rule + + + from + ^http://(?:www\.)?linux\.lu/ + to + https://www.lilux.lu/ + + + from + ^http://(www\.)?udpcast\.linux\.lu/ + to + https://$1udpcast.linux.lu/ + + + target + + + host + linux.lu + + + host + *.linux.lu + + + + + Linux.org.au + + ruleset + + name + Linux.org.au + rule + + from + ^http://(?:www\.)?linux\.org\.au/ + to + https://www.linux.org.au/ + + securecookie + + host + ^(?:www)?\.linux\.org\.au$ + name + .+ + + target + + + host + linux.org.au + + + host + *.linux.org.au + + + + + Linux.org.ru + + ruleset + + name + Linux.org.ru + rule + + from + ^http://(www\.)?linux\.org\.ru/ + to + https://$1linux.org.ru/ + + securecookie + + host + ^www\.linux\.org\.ru$ + name + .+ + + target + + + host + www.linux.org.ru + + + host + linux.org.ru + + + + + LinuxMIPS (partial) + + ruleset + + name + LinuxMIPS (partial) + platform + cacert + rule + + from + ^http://(eddie|ftp|git|mail|marvin|operation-cambridge|patchwork|www)\.linux-mips\.org/ + to + https://$1.linux-mips.org/ + + securecookie + + host + ^(?:operation-cambridge|www)\.linux-mips\.org$ + name + .+ + + target + + host + *.linux-mips.org + + + + LinuxQuestions.org (partial) + + ruleset + + name + LinuxQuestions.org (partial) + rule + + + from + ^http://(www\.)?linuxquestions\.org/ + to + https://$1linuxquestions.org/ + + + from + ^http://static\.linuxquestions\.org/ + to + https://lqo-thequestionsnetw.netdna-ssl.com/ + + + securecookie + + host + ^www\.linuxquestions\.org$ + name + .+ + + target + + + host + linuxquestions.org + + + host + *.linuxquestions.org + + + + + LinuxTag.org + + ruleset + + name + LinuxTag.org + platform + cacert + rule + + from + ^http://(?:www\.)?linuxtag\.org/ + to + https://www.linuxtag.org/ + + securecookie + + host + ^www\.linuxtag\.org$ + name + .+ + + target + + + host + linuxtag.org + + + host + www.linuxtag.org + + + + + Linuxaria.com + + ruleset + + name + Linuxaria.com + rule + + + from + ^http://(www\.)?linuxaria\.com/ + to + https://$1linuxaria.com/ + + + from + ^https?://cdn\.linuxaria\.com/ + to + https://d2lwstdywzrz5c.cloudfront.net/ + + + securecookie + + host + ^(?:\.|\.?www\.)?linuxaria\.com$ + name + .+ + + target + + + host + linuxaria.com + + + host + *.linuxaria.com + + + + + Linuxlovers.at (false MCB) + + ruleset + + name + Linuxlovers.at (false MCB) + platform + mixedcontent + rule + + from + ^http://wiki\.linuxlovers\.at/ + to + https://wiki.linuxlovers.at/ + + target + + host + wiki.linuxlovers.at + + + + Linuxlovers.at (partial) + + ruleset + + exclusion + + pattern + ^http://wiki\.linuxlovers\.at/+(?!lib/) + + name + Linuxlovers.at (partial) + rule + + from + ^http://((?:chat|git|jabber|mb|tools|wiki|www)\.)?linuxlovers\.at/ + to + https://$1linuxlovers.at/ + + securecookie + + host + ^git\.linuxlovers\.at$ + name + .+ + + target + + + host + linuxlovers.at + + + host + *.linuxlovers.at + + + + + Linuxpl.com (partial) + + ruleset + + name + Linuxpl.com (partial) + rule + + from + ^http://((?:blog|support|webftp|www)\.)?linuxpl\.com/ + to + https://$1linuxpl.com/ + + securecookie + + host + ^(?:(?:support|webftp|www)\.)?linuxpl\.com$ + name + .+ + + target + + + host + linuxpl.com + + + host + *.linuxpl.com + + + + + Linx.net + + ruleset + + name + Linx.net + platform + firefox + rule + + from + ^http://(www\.)?linx\.net/ + to + https://www.linx.net/ + + securecookie + + + host + ^linx\.net$ + name + .+ + + + host + ^www\.linx\.net$ + name + .+ + + + target + + + host + linx.net + + + host + www.linx.net + + + + + Lippincott Williams & Wilkins (partial) + + ruleset + + name + Lippincott Williams & Wilkins (partial) + rule + + + from + ^http://(?:www\.)?lww\.com/ + to + https://www.lww.com/ + + + from + ^http://journals\.lww\.com/(?=_LAYOUTS/|_layouts/|WebResource\.axd|\w+/(?:_layouts|PublishingImages|Style\ Library)/) + to + https://journals.lww.com/ + + + securecookie + + host + ^www\.lww\.com$ + name + .+ + + target + + + host + lww.com + + + host + *.lww.com + + + + + Lippupiste Oy + + ruleset + + name + Lippupiste Oy + rule + + + from + ^https?://(?:www\.)?(?:eventim|lippu)\.fi/ + to + https://www.lippu.fi/ + + + from + ^http://secure\.lippu\.fi/ + to + https://secure.lippu.fi/ + + + securecookie + + host + ^.*\.lippu\.fi$ + name + .+ + + target + + + host + eventim.fi + + + host + www.eventim.fi + + + host + lippu.fi + + + host + *.lippu.fi + + + + + Liquid Web + + ruleset + + name + Liquid Web + rule + + + from + ^http://(moya\.|www\.)?liquidweb\.com/ + to + https://$1liquidweb.com/ + + + from + ^http://media(?:\.cdn)?\.liquidweb\.com/ + to + https://media.liquidweb.com/ + + + securecookie + + host + ^(.*\.)?liquidweb\.com$ + name + .* + + target + + + host + liquidweb.com + + + host + *.liquidweb.com + + + host + media.cdn.liquidweb.com + + + + + Liquidmatrix.org + + ruleset + + name + Liquidmatrix.org + rule + + from + ^http://(www\.)?liquidmatrix\.org/ + to + https://$1liquidmatrix.org/ + + securecookie + + host + ^\.liquidmatrix\.org$ + name + .+ + + target + + + host + liquidmatrix.org + + + host + *.liquidmatrix.org + + + + + List.ru + + ruleset + + name + List.ru + rule + + from + ^http://top\.list\.ru/ + to + https://top-fwz1.mail.ru/ + + target + + host + top.list.ru + + + + Listbox + + ruleset + + name + Listbox + rule + + from + ^http://(www\.)?listbox\.com/ + to + https://$1listbox.com/ + + securecookie + + host + ^\.listbox\.com$ + name + .* + + target + + + host + listbox.com + + + host + *.listbox.com + + + + + Listener Approved + + ruleset + + name + Listener Approved + rule + + from + ^http://(api\.|www\.)?listenerapproved\.com/ + to + https://$1listenerapproved.com/ + + securecookie + + host + ^\.listenerapproved.com$ + name + .+ + + target + + + host + listenerapproved.com + + + host + *.listenerapproved.com + + + + + Listener.co.nz + + ruleset + + name + Listener.co.nz + rule + + from + ^http://(?:www\.)?listener\.co\.nz/ + to + https://www.listener.co.nz/ + + securecookie + + host + ^www\.listener\.co\.nz$ + name + .+ + + target + + + host + listener.co.nz + + + host + www.listener.co.nz + + + + + Listonic (partial) + + ruleset + + name + Listonic (partial) + rule + + + from + ^http://(www\.)?listonic\.com/(en-us/WebResource\.axd|(?:en-us/)?login(?:$|\?)) + to + https://www.listonic.com/$1 + + + from + ^https?://static\.listonic\.com/contentv2/ + to + https://www.listonic.com/Static/ + + + target + + + host + listonic.com + + + host + *.listonic.com + + + + + ListrakBI.com + + ruleset + + name + ListrakBI.com + rule + + from + ^http://((?:a[lt]|s|sca)\d*|www)\.listrakbi\.com/ + to + https://$1.listrakbi.com/ + + securecookie + + host + .*\.listrakbi\.com$ + name + .+ + + target + + host + *.listrakbi.com + + + + LiteBit.eu + + ruleset + + name + LiteBit.eu + rule + + from + ^http://(www\.)?litebit\.eu/ + to + https://$1litebit.eu/ + + securecookie + + host + ^(?:\.|www\.)?litebit\.eu$ + name + .+ + + target + + + host + litebit.eu + + + host + *.litebit.eu + + + + + LiteHosting.org (partial) + + ruleset + + name + LiteHosting.org (partial) + rule + + from + ^http://(www\.)?litehosting\.org/(API/|(?:cart|clientarea|serverstatus)\.php|images/|sitemap\.xml|templates/) + to + https://$1litehosting.org/$2 + + target + + + host + litehosting.org + + + host + www.litehosting.org + + + + + LiteSpeed Technologies (partial) + + ruleset + + name + LiteSpeed Technologies (partial) + rule + + + from + ^http://blog\.litespeedtech\.com/wp-content/themes/litespeed/litespeed/ + to + https://store.litespeedtech.com/store/templates/litespeedv4/images/ + + + from + ^http://store\.litespeedtech\.com/ + to + https://store.litespeedtech.com/ + + + securecookie + + host + ^store\.litespeedtech\.com$ + name + .+ + + target + + + host + store.litespeedtech.com + + + host + blog.litespeedtech.com + + + + + LiteTree.com + + ruleset + + name + LiteTree.com + rule + + from + ^http://(www\.)?litetree\.com/ + to + https://$1litetree.com/ + + securecookie + + host + ^\.litetree\.com$ + name + .+ + + target + + + host + litetree.com + + + host + *.litetree.com + + + + + Litecoin.info + + ruleset + + name + Litecoin.info + rule + + from + ^http://(?:www\.)?litecoin\.info/ + to + https://litecoin.info/ + + securecookie + + host + ^\.?litecoin\.info$ + name + .+ + + target + + + host + litecoin.info + + + host + *.litecoin.info + + + + + Litecoin.org + + ruleset + + name + Litecoin.org + rule + + from + ^http://(www\.)?litecoin\.org/ + to + https://$1litecoin.org/ + + securecookie + + host + ^\.litecoin\.org$ + name + .+ + + target + + + host + litecoin.org + + + host + *.litecoin.org + + + + + Litecoin24.nl + + ruleset + + name + Litecoin24.nl + rule + + from + ^http://(www\.)?litecoin24\.nl/ + to + https://$1litecoin24.nl/ + + securecookie + + host + ^(?:\.|www\.)?litecoin24\.nl$ + name + .+ + + target + + + host + litecoin24.nl + + + host + *.litecoin24.nl + + + + + LitecoinTalk.org + + ruleset + + name + LitecoinTalk.org + rule + + from + ^http://(www\.)?litecointalk\.org/ + to + https://$1litecointalk.org/ + + securecookie + + host + ^\.?litecointalk\.org$ + name + .+ + + target + + + host + litecointalk.org + + + host + *.litecointalk.org + + + + + Literature and Latte.com + + ruleset + + name + Literature and Latte.com + rule + + from + ^http://(www\.)?literatureandlatte\.com/ + to + https://$1literatureandlatte.com/ + + target + + + host + literatureandlatte.com + + + host + www.literatureandlatte.com + + + + + Lithium + + ruleset + + name + Lithium + rule + + + from + ^https?://74\.86\.17\.250/assets/ + to + https://www.lithium.com/assets/ + + + from + ^https?://(?:www\.)?lithium\.com/ + to + https://www.lithium.com/ + + + from + ^http://(lithosphere|spark)\.lithium\.com/ + to + https://$1.lithium.com/ + + + from + ^http://(\w+)\.i\.lithium\.com/ + to + https://$1.i.lithium.com/ + + + securecookie + + host + ^.*\.lithium\.com$ + name + .+ + + target + + + host + 74.86.17.250 + + + host + lithium.com + + + host + *.lithium.com + + + host + *.i.lithium.com + + + + + Litmus.com + + ruleset + + name + Litmus.com + rule + + from + ^http://((?:api|signup|status|www)\.)?litmus\.com/ + to + https://$1litmus.com/ + + target + + + host + litmus.com + + + host + *.litmus.com + + + + + LitmusCDN.com + + ruleset + + name + LitmusCDN.com + rule + + from + ^http://(img|style)\.litmuscdn\.com/ + to + https://$1.litmuscdn.com/ + + target + + host + *.litmuscdn.com + + + + Littler.com (partial) + + ruleset + + name + Littler.com (partial) + rule + + from + ^http://(?:www\.)?littler\.com/(favicon\.ico|files/|sites/) + to + https://www.littler.com/$1 + + target + + + host + littler.com + + + host + www.littler.com + + + + + Live Nation Entertainment (partial) + + ruleset + + name + Live Nation Entertainment (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?getmein\.com/ + to + https://www.getmein.com/ + + + from + ^http://secure\.getmein\.com/ + to + https://secure.getmein.com/ + + + from + ^http://(?:www(1)?\.)?livenation\.(ae|asia|co\.jp|co\.uk|com\.au|cz|dk|es|fi|fr|hu|it|kr|nl|no|pl|se)/ + to + https://www$1.livenation.$2/ + + + from + ^http://(www1\.)?(fr|nl)\.livenation\.be/ + to + https://$1$2.livenation.be/ + + + from + ^http://(?:www\.)?livenation\.com/(favicon-ln\.ico|ln/) + to + https://www.livenation.com/$1 + + + from + ^http://ads\.livenation\.com/ + to + https://de.livenation.com/ + + + from + ^http://concerts\.livenation\.com/(?!$|concerts) + to + https://concerts.livenation.com/ + + + securecookie + + + host + ^(?:.*\.)?getmein\.com$ + name + .+ + + + host + ^\.ticketmaster\.com$ + name + ^s_v\w$ + + + host + ^www1?\.(?:fr\.|nl\.)?livenation\.(?:\w\w|co\.jp|co\.uk|com\.au) + name + .+ + + + target + + + host + getmein.com + + + host + *.getmein.com + + + host + livenation.* + + + host + www.livenation.* + + + host + www1.livenation.* + + + host + *.livenation.be + + + host + livenation.co.* + + + host + www.livenation.co.* + + + host + www1.livenation.co.* + + + host + concerts.livenation.com + + + host + livenation.com.au + + + host + *.livenation.com.au + + + + + Live Strong.com (partial) + + ruleset + + name + Live Strong.com (partial) + platform + mixedcontent + rule + + + from + ^http://(?:livestrong\.com|i\.lsimg\.net)/ + to + https://www.livestrong.com/ + + + from + ^http://www\.livestrong\.com/(login/|remind/|register/|shop(?:$|\?)) + to + https://www.livestrong.com/$1 + + + securecookie + + host + ^(?:.*\.)?livestrong\.org$ + name + .+ + + target + + + host + livestrong.com + + + host + *.livestrong.com + + + host + i.lsimg.net + + + + + LiveAgent + + ruleset + + name + LiveAgent + rule + + + from + ^http://(\w+)\.ladesk\.com/ + to + https://$1.ladesk.com/ + + + from + ^https?://(?:www\.)?ladesk\.com/ + to + https://www.qualityunit.com/liveagent/ + + + target + + + host + ladesk.com + + + host + *.ladesk.com + + + + + LiveChat (partial) + + ruleset + + exclusion + + pattern + ^http://status\. + + name + LiveChat (partial) + rule + + + from + ^http://(www\.)?livechatinc\.com/(signup|wp-content)/ + to + https://$1livechatinc.com/$2/ + + + from + ^http://(app|cdn)\.livechatinc\.com/ + to + https://$1.livechatinc.com/ + + + from + ^http://support\.livechatinc\.com/ + to + https://livechat.zendesk.com/ + + + from + ^http://chat\.livechatinc\.net/ + to + https://chat.livechatinc.net/ + + + securecookie + + + host + ^(.*\.)?livechatinc\.com$ + name + .* + + + host + ^(www\.)?livechat\.zendesk\.com$ + name + .* + + + target + + + host + livechatinc.com + + + host + *.livechatinc.com + + + host + chat.livechatinc.net + + + host + livechat.zendesk.com + + + host + www.livechat.zendesk.com + + + + + LiveCorp + + ruleset + + name + LiveCorp + rule + + from + ^http://(?:www\.)?livecorp\.com\.au/ + to + https://www.livecorp.com.au/ + + target + + + host + livecorp.com.au + + + host + *.livecorp.com.au + + + + + LiveInternet (false MCB) + + ruleset + + name + LiveInternet (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:i\.|www\.)?li\.ru/ + to + https://www.liveinternet.ru/ + + + from + ^http://(?:www\.)?liveinternet\.ru/ + to + https://www.liveinternet.ru/ + + + securecookie + + host + ^www\.liveinternet\.ru$ + name + .+ + + target + + + host + li.ru + + + host + *.li.ru + + + host + liveinternet.ru + + + host + www.liveinternet.ru + + + + + LiveInternet (partial) + + ruleset + + name + LiveInternet (partial) + rule + + from + ^http://g\.liveinternet\.ru/ + to + https://g.liveinternet.ru/ + + securecookie + + host + ^g\.liveinternet\.ru$ + name + .+ + + target + + host + g.liveinternet.ru + + + + LiveJasmin (partial) + + ruleset + + name + LiveJasmin (partial) + rule + + + from + ^http://new\.livejasmin\.com/en/auth/([\w\-]+)($|\?) + to + https://new.livejasmin.com/en/auth/$1$2 + + + from + ^https?://static\d\.new\.livejasmincdn\.com/ + to + https://new.livejasmin.com/ + + + target + + + host + new.livejasmin.com + + + host + *.new.livejasmincdn.com + + + + + LiveJournal (partial) + + ruleset + + name + LiveJournal (partial) + rule + + + from + ^http://(www\.)?livejournal\.com/(?=(?:changepassword|create|login)\.html|manage/|shop/) + to + https://$1livejournal.com/ + + + from + ^http://status\.livejournal\.com/img/ + to + https://s3.amazonaws.com/status-livejournal/img/ + + + from + ^http://(?:l-)stat\.livejournal\.com/img/error-pages/(?=bg-error-page\.jpg|bullet-round-grey\.gif|frank\.png|logo-lj\.png|rule-grey\.gif) + to + https://s3.amazonaws.com/status-livejournal/img/ + + + from + ^http://(?:l-)?stat\.livejournal\.com/ + to + https://stat.livejournal.com/ + + + from + ^http://([\w-]+)\.livejournal\.com/(?=\d+\.html) + to + https://$1.livejournal.com/ + + + target + + + host + livejournal.com + + + host + *.livejournal.com + + + + + LivePerson (partial) + + ruleset + + name + LivePerson (partial) + platform + mixedcontent + rule + + + from + ^http://hc2\.humanclick\.com/ + to + https://hc2.humanclick.com/ + + + from + ^http://(?:www\.)?liveperson\.com/ + to + https://www.liveperson.com/ + + + from + ^http://(apps|base|community|customercenter|solutions|sr2)\.liveperson\.com/ + to + https://$1.liveperson.com/ + + + from + ^http://(adminlogon|base|dev|lptag|sales|server\.iad|sr[24]|sso|tags)\.liveperson\.net/ + to + https://$1.liveperson.net/ + + + from + ^http://liveperson\.hosted\.jivesoftware\.com/ + to + https://community.liveperson.net/ + + + securecookie + + + host + ^hc2\.humanclick\.com$ + name + .+ + + + host + .*\.liveperson\.(?:com|net)$ + name + .+ + + + target + + + host + hc2.humanclick.com + + + host + liveperson.hosted.jivesoftware.com + + + host + liveperson.com + + + host + *.liveperson.com + + + host + liveperson.net + + + host + *.liveperson.net + + + + + LiveRail (partial) + + ruleset + + name + LiveRail (partial) + rule + + + from + ^http://(ad|t)4\.liverail\.com/ + to + https://$14.liverail.com/ + + + from + ^https?://lp\.liverail\.com/(css|images|rs)/ + to + https://na-n.marketo.com/$1/ + + + target + + host + *.liverail.com + + + + LiveRamp + + ruleset + + name + LiveRamp + rule + + from + ^http://(dashboard\.|www\.)?liveramp\.com/ + to + https://$1liveramp.com/ + + securecookie + + host + ^(?:.+\.)?liveramp\.com$ + name + .+ + + target + + + host + liveramp.com + + + host + *.liveramp.com + + + + + LiveZilla.net + + ruleset + + name + LiveZilla.net + rule + + from + ^http://(?:www\.)?livezilla\.net/ + to + https://www.livezilla.net/ + + securecookie + + host + ^www\.livezilla\.net$ + name + .+ + + target + + + host + livezilla.net + + + host + www.livezilla.net + + + + + Liveclicker.net + + ruleset + + name + Liveclicker.net + rule + + from + ^http://ecdn\.liveclicker\.net/ + to + https://ecdn.liveclicker.net/ + + target + + host + ecdn.liveclicker.net + + + + Livefyre (partial) + + ruleset + + name + Livefyre (partial) + rule + + + from + ^https?://avatars\.fyre\.co/ + to + https://dpstvy7p9whsy.cloudfront.net/ + + + from + ^http://(?:zor\.fyre\.co|(?:www\.|zor\.)?livefyre\.com)/ + to + https://d584h2bjreb1u.cloudfront.net/ + + + from + ^http://3d88duefqgf2d7l2p18hja4194m\.wpengine\.netdna-cdn\.com/ + to + https://livefyre.wpengine.com/ + + + securecookie + + host + ^\.livefyre\.co$ + name + .+ + + target + + + host + *.fyre.co + + + host + livefyre.com + + + host + *.livefyre.com + + + host + 3d88duefqgf2d7l2p18hja4194m.wpengine.netdna-cdn.com + + + + + Liverpool Victoria (partial) + + ruleset + + name + Liverpool Victoria (partial) + rule + + from + ^http://(?:www\.)?lv\.com/ + to + https://www.lv.com/ + + securecookie + + host + ^www\.lv\.com$ + name + .+ + + target + + + host + lv.com + + + host + www.lv.com + + + + + Livestock Transport + + ruleset + + name + Livestock Transport + rule + + from + ^http://(www\.)?livestock-transport\.com/ + to + https://$1livestock-transport.com/ + + securecookie + + host + ^(www\.)?livestock-transport\.com$ + name + .* + + target + + + host + livestock-transport.com + + + host + www.livestock-transport.com + + + + + Livestream + + ruleset + + name + Livestream + rule + + from + ^http://((?:\w+\.api|cdn|new|img\.new|secure|upload-downloads|www)\.)?livestream\.com/ + to + https://$1livestream.com/ + + securecookie + + host + ^.*\.livestream\.com$ + name + .+ + + target + + + host + livestream.com + + + host + *.livestream.com + + + + + Livestrong (partial) + + ruleset + + name + Livestrong (partial) + platform + mixedcontent + rule + + from + ^http://(blog\.|www\.)?livestrong\.org/ + to + https://$1livestrong.org/ + + securecookie + + host + ^(.*\.)?livestrong\.org$ + name + .* + + target + + + host + livestrong.org + + + host + *.livestrong.org + + + + + Living Routes.org (false MCB) + + ruleset + + name + Living Routes.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?livingroutes\.org/ + to + https://$1livingroutes.org/ + + securecookie + + host + ^(?:www)?\.livingroutes\.org$ + name + .+ + + target + + + host + livingroutes.org + + + host + *.livingroutes.org + + + + + LivingSocial (partial) + + ruleset + + name + LivingSocial (partial) + rule + + + from + ^http://help\.livingsocial\.co\.uk/(image|stylesheet)s/ + to + https://help.livingsocial.com/$1s/ + + + from + ^http://(corporate\.|help\.|www\.)?livingsocial\.com/ + to + https://$1livingsocial.com/ + + + from + ^http://a(\d)\.lscdn\.net/ + to + https://a$1.lscdn.net/ + + + from + ^http://a\d\.ak\.lscdn\.net/ + to + https://a248.e.akamai.net/si.lscdn.net/ + + + securecookie + + host + ^(?:www)?\.livingsocial\.com$ + name + .+ + + target + + + host + help.livingsocial.co.uk + + + host + livingsocial.com + + + host + *.livingsocial.com + + + host + *.lscdn.net + + + + + Lizard Wrangler.com (partial) + + ruleset + + name + Lizard Wrangler.com (partial) + rule + + from + ^http://blog\.lizardwrangler\.com/ + to + https://blog.lizardwrangler.com/ + + target + + host + blog.lizardwrangler.com + + + + Lloyds TSB Offshore + + ruleset + + name + Lloyds TSB Offshore + rule + + + from + ^http://online-offshore\.lloydstsb\.com/ + to + https://online-offshore.lloydstsb.com/ + + + from + ^http://(?:www\.)?lloydstsb-offshore\.com/ + to + https://www.lloydstsb-offshore.com/ + + + securecookie + + host + ^www\.lloydstsb-offshore\.com$ + name + .+ + + target + + + host + online-offshore.lloydstsb.com + + + host + lloydstsb-offshore.com + + + host + www.lloydstsb-offshore.com + + + + + LoA.org + + ruleset + + name + LoA.org + rule + + from + ^http://(www\.)?loa\.org/ + to + https://$1loa.org/ + + target + + + host + loa.org + + + host + www.loa.org + + + + + LoadImpact.com + + ruleset + + name + LoadImpact.com + rule + + + from + ^http://www\.loadimpact\.com/ + to + https://www.loadimpact.com/ + + + from + ^http://loadimpact\.com/ + to + https://loadimpact.com/ + + + target + + + host + loadimpact.com + + + host + www.loadimpact.com + + + + + Loan Science + + ruleset + + name + Loan Science + rule + + from + ^https?://(?:www\.)?loanscience\.com/ + to + https://www.loanscience.com/ + + securecookie + + host + ^\.loanscience\.com$ + name + .+ + + target + + + host + loanscience.com + + + host + *.loanscience.com + + + + + Loanliner.com + + ruleset + + name + Loanliner.com + rule + + from + ^http://(?:www\.)?loanliner\.com/ + to + https://www.loanliner.com/ + + securecookie + + host + ^(?:www\.)?loanliner\.com$ + name + .+ + + target + + + host + loanliner.com + + + host + www.loanliner.com + + + + + Locaid (partial) + + ruleset + + name + Locaid (partial) + rule + + from + ^http://instantlocatedemo\.loc-aid\.com/ + to + https://instantlocatedemo.loc-aid.com/ + + securecookie + + host + ^instantlocatedemo\.loc-aid\.com$ + name + .+ + + target + + host + instantlocatedemo.loc-aid.com + + + + Local 20/20 + + ruleset + + name + Local 20/20 + platform + mixedcontent + rule + + from + ^http://(www\.)?l2020\.org/ + to + https://l2020.org/ + + target + + + host + l2020.org + + + host + www.l2020.org + + + + + Local.ch + + ruleset + + name + Local.ch + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?local\.ch/ + to + https://www.local.ch/ + + + from + ^http://(auto|blog|developer|guide|id|immo|info|map|market|my|news|tel|yellow)\.local\.ch/ + to + https://$1.local.ch/ + + + from + ^http://static\.blog\.local\.ch/ + to + https://s3-eu-west-1.amazonaws.com/static.blog.local.ch/ + + + securecookie + + host + ^\.local\.ch$ + name + ^l(?:ang|cl_session_1_production)$ + + target + + + host + local.ch + + + host + *.local.ch + + + + + LocalEdge (partial) + + ruleset + + name + LocalEdge (partial) + platform + mixedcontent + rule + + + from + ^http://((?:extranet|sso|static|www)\.)?localedge\.com/ + to + https://$1localedge.com/ + + + from + ^https?://(?:images\.|www\.)?talkingphonebook\.com/ + to + https://www.localedge.com/ + + + securecookie + + host + ^.*\.localedge\.com$ + name + .* + + target + + + host + localedge.com + + + host + *.localedge.com + + + host + talkingphonebook.com + + + host + *.talkingphonebook.com + + + + + Locaweb (partial) + + ruleset + + name + Locaweb (partial) + rule + + from + ^http://(blog|developer|forum|painel|press|site|statusblog)\.locaweb\.com\.br/ + to + https://$1.locaweb.com.br/ + + securecookie + + host + ^.+\.locaweb\.com\.br$ + name + .+ + + target + + host + *.locaweb.com.br + + + + Lockbox.com + + ruleset + + name + Lockbox.com + rule + + + from + ^http://(support\.|www\.)?lockbox\.com/ + to + https://$1lockbox.com/ + + + from + ^http://client\.lock-box\.net/ + to + https://client.lock-box.net/ + + + target + + + host + lockbox.com + + + host + *.lockbox.com + + + host + client.lock-box.net + + + + + LockerDome.com + + ruleset + + name + LockerDome.com + rule + + from + ^http://(cdn2?\.|www\.)?lockerdome\.com/ + to + https://$1lockerdome.com/ + + target + + + host + lockerdome.com + + + host + *.lockerdome.com + + + + + Lockerz (partial) + + ruleset + + name + Lockerz (partial) + rule + + + from + ^https://shop\.lockerz\.com/ + to + https://shop.lockerz.com/ + + + from + ^https?://static\.lockerz\.com/ + to + https://d8o6wu1tc2zf3.cloudfront.net/ + + + from + ^https?://support\.lockerz\.com/generated/ + to + https://generated.zendesk.com/generated/ + + + from + ^http://api\.plixi\.com/ + to + https://api.plixi.com/ + + + target + + + host + *.lockerz.com + + + host + api.plixi.com + + + + + Lockify.com + + ruleset + + name + Lockify.com + platform + firefox + rule + + from + ^http://lockify\.com/ + to + https://lockify.com/ + + securecookie + + host + ^lockify\.com$ + name + .+ + + target + + host + lockify.com + + + + Loctudy + + ruleset + + name + Loctudy + platform + mixedcontent + rule + + from + ^http://(?:www\.)?loctudy\.fr/ + to + https://www.loctudy.fr/ + + securecookie + + host + ^www\.loctudy\.fr$ + name + .* + + target + + + host + loctudy.fr + + + host + www.loctudy.fr + + + + + LogMeIn.com (partial) + + ruleset + + name + LogMeIn.com (partial) + platform + mixedcontent + rule + + + from + ^http://(secure\.|www\.)?join\.me/ + to + https://$1join.me/ + + + from + ^http://(?:secure\.|www\.)?(logmein(?:rescue)?\.com|remotelyanywhere\.com)/ + to + https://secure.$1/ + + + from + ^http://(content|investor)?\.logmein\.com/ + to + https://$1.logmein.com/ + + + from + ^http://(?:www\.)?remotelyanywhere\.com/$ + to + https://secure.remotelyanywhere.com/template.asp?page=home + + + from + ^http://(?:www\.)?remotelyanywhere\.com/(.+) + to + https://secure.remotelyanywhere.com/$1 + + + securecookie + + + host + ^(?:secure\.)?(?:join\.me|remotelyanywhere\.com)$ + name + .+ + + + host + ^(?:content|\.?investor|secure)?\.logmein\.com$ + name + .+ + + + host + ^secure\.logmeinrescue\.com$ + name + .+ + + + target + + + host + join.me + + + host + *.join.me + + + host + logmein.com + + + host + *.logmein.com + + + host + logmeinrescue.com + + + host + *.logmeinrescue.com + + + host + remotelyanywhere.com + + + host + *.remotelyanywhere.com + + + + + Logentries.com + + ruleset + + name + Logentries.com + platform + firefox + rule + + + from + ^http://logentries\.com/ + to + https://logentries.com/ + + + from + ^http://www\.logentries\.com/ + to + https://www.logentries.com/ + + + securecookie + + + host + ^logentries\.com$ + name + .+ + + + host + ^www\.logentries\.com$ + name + .+ + + + target + + + host + logentries.com + + + host + www.logentries.com + + + + + Loggly.com + + ruleset + + name + Loggly.com + rule + + from + ^http://(logs-01\.|www\.)?loggly\.com/ + to + https://$1loggly.com/ + + target + + + host + loggly.com + + + host + *.loggly.com + + + + + LogicBox Software + + ruleset + + name + LogicBox Software + rule + + from + ^http://([\w-]+\.)?logicboxsoftware\.com/ + to + https://$1logicboxsoftware.com/ + + securecookie + + host + .+\.logicboxsoftware\.com$ + name + .+ + + target + + + host + logicboxsoftware.com + + + host + *.logicboxsoftware.com + + + + + Logilab (partial) + + ruleset + + name + Logilab (partial) + rule + + + from + ^http://(?:www\.)?logilab\.fr/data/ + to + https://www.logilab.fr/data/ + + + from + ^http://piwik\.logilab\.fr/ + to + https://piwik.logilab.fr/ + + + securecookie + + host + ^(.*\.)?logilab\.fr$ + name + .* + + target + + + host + logilab.fr + + + host + *.logilab.fr + + + + + Logitech.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:origin2\.|www\.)?logitech\.com/+(?!\w\w-\w+(?:$|[?/])||assets/|images/|js/|styles/) + + name + Logitech.com (partial) + rule + + + from + ^http://(?:(?:origin2|secure|www)\.)?logitech\.com/ + to + https://secure.logitech.com/ + + + from + ^http://(alert|buy|forums|register)\.logitech\.com/ + to + https://$1.logitech.com/ + + + securecookie + + host + ^(?:buy|forums|secure)\.logitech\.com$ + name + .+ + + target + + + host + logitech.com + + + host + *.logitech.com + + + + + LogoYes + + ruleset + + name + LogoYes + rule + + from + ^https?://(?:www\.)?logoyes\.com/ + to + https://logoyes.com/ + + securecookie + + host + ^logoyes\.com$ + name + .+ + + target + + + host + logoyes.com + + + host + www.logoyes.com + + + + + Logotype.se + + ruleset + + name + Logotype.se + platform + firefox + rule + + from + ^http://logotype\.se/ + to + https://logotype.se/ + + securecookie + + host + ^logotype\.se$ + name + .+ + + target + + host + logotype.se + + + + Lois Kolkhorst + + ruleset + + name + Lois Kolkhorst + rule + + from + ^http://(www\.)?loisfortexas\.com/ + to + https://$1loisfortexas.com/ + + target + + + host + loisfortexas.com + + + host + www.loisfortexas.com + + + + + Lokus.se (partial) + + ruleset + + name + Lokus.se (partial) + rule + + + from + ^http://secure\.lokus\.se/ + to + https://secure.lokus.se/ + + + from + ^http://sifomedia\.lokus\.se/ + to + https://oasc07.247realmedia.com/ + + + securecookie + + + host + ^\.lokus\.se$ + name + ^(?:NXCLICK2|OAX) + + + host + ^secure\.lokus\.se$ + name + .+ + + + target + + host + *.lokus.se + + + + Lolicore.ch + + ruleset + + name + Lolicore.ch + platform + firefox + rule + + from + ^http://lolicore\.ch/ + to + https://lolicore.ch/ + + securecookie + + host + ^lolicore\.ch$ + name + .+ + + target + + host + lolicore.ch + + + + Lolware.net + + ruleset + + name + Lolware.net + rule + + from + ^http://(www\.)?lolware\.net/ + to + https://$1lolware.net/ + + target + + + host + lolware.net + + + host + www.lolware.net + + + + + London 2012 + + ruleset + + exclusion + + pattern + ^http://getset\.london2012\.com/((cy|en)/(home)?)?$ + + name + London 2012 + platform + mixedcontent + rule + + + from + ^http://london2012\.com/ + to + https://www.london2012.com/ + + + from + ^http://getset\.london2012\.com/ + to + https://getset.london2012.com/ + + + from + ^http://www\.festival\.london2012\.com/ + to + https://festival.london2002.com/ + + + from + ^http://(shop|www)\.london2012\.com/ + to + https://$1.london2012.com/ + + + from + ^http://tickets\.london2012\.com/ + to + https://www.tickets.london2012.com/ + + + from + ^http://www\.tickets\.london2012\.com/member + to + https://www.tickets.london2012.com/member + + + securecookie + + host + ^((festival|www)?\.)?london2012\.com$ + name + .* + + target + + + host + london2012.com + + + host + *.london2012.com + + + host + www.festival.london2012.com + + + host + tickets.london2012.com + + + host + www.tickets.london2012.com + + + + + London City Airport + + ruleset + + name + London City Airport + rule + + + from + ^https?://londoncityairport\.com/ + to + https://www.londoncityairport.com/ + + + from + ^http://([^/:@]+)?\.londoncityairport\.com/ + to + https://$1.londoncityairport.com/ + + + securecookie + + host + ^(.*\.)?londoncityairport\.com$ + name + .+ + + target + + + host + londoncityairport.com + + + host + *.londoncityairport.com + + + + + London Hackspace + + ruleset + + name + London Hackspace + rule + + + from + ^https?://london\.hackspace\.org\.uk/ + to + https://london.hackspace.org.uk/ + + + from + ^http://([^/:@]+)?\.london\.hackspace\.org\.uk/ + to + https://$1.london.hackspace.org.uk/ + + + target + + + host + london.hackspace.org.uk + + + host + *.london.hackspace.org.uk + + + + + London Review of Books (partial) + + ruleset + + name + London Review of Books (partial) + rule + + + from + ^http://(?:www\.)?lrb\.co\.uk/(activate/?(?:$|\?)|assets/|Shibboleth\.sso) + to + https://www.lrb.co.uk/$1 + + + from + ^http://cdn\.lrb\.co\.uk/ + to + https://d7mx03fbraf30.cloudfront.net/ + + + target + + + host + lrb.co.uk + + + host + *.lrb.co.uk + + + + + London School of Economics (partial) + + ruleset + + name + London School of Economics (partial) + rule + + from + ^http://www2\.lse\.ac\.uk/(ImagesForExternalHomepage|SiteElements|v4global)/ + to + https://www2.lse.ac.uk/$1/ + + target + + host + www2.lse.ac.uk + + + + London School of Hygiene & Tropical Medicine + + ruleset + + exclusion + + pattern + ^http://blogs\.lshtm\.ac\.uk/(spring|csm|crash3|tbsymposium|bcges|pathways|crises|disabilitycentre|itservices|ucu|ghlc|hme|same|genderviolence)/ + + name + London School of Hygiene & Tropical Medicine + rule + + + from + ^http://lshtm\.ac\.uk/ + to + https://www.lshtm.ac.uk/ + + + from + ^http://(www|jobs|intra|blogs|forums)\.lshtm\.ac\.uk/ + to + https://$1.lshtm.ac.uk/ + + + target + + + host + lshtm.ac.uk + + + host + www.lshtm.ac.uk + + + host + jobs.lshtm.ac.uk + + + host + intra.lshtm.ac.uk + + + host + blogs.lshtm.ac.uk + + + host + forums.lshtm.ac.uk + + + + + London Stock Exchange (partial) + + ruleset + + name + London Stock Exchange (partial) + rule + + from + ^http://(?:www\.)?londonstockexchange\.com/(exchange/user|global|home|media|news)/ + to + https://www.londonstockexchange.com/$1/ + + target + + + host + londonstockexchange.com + + + host + www.londonstockexchange.com + + + + + London-Nano.com + + ruleset + + name + London-Nano.com + rule + + from + ^http://(?:www\.)?london-nano\.com/ + to + https://www.london-nano.com/ + + target + + + host + london-nano.com + + + host + www.london-nano.com + + + + + Londonist.com (partial) + + ruleset + + name + Londonist.com (partial) + rule + + + from + ^http://(www\.)?londonist\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1londonist.com/ + + + from + ^http://cdn\.londonist\.com/ + to + https://londonist.wpengine.com/ + + + securecookie + + host + ^\.londonist\.com$ + name + ^__qca$ + + target + + + host + londonist.com + + + host + *.londonist.com + + + + + Lone Star Overnight + + ruleset + + name + Lone Star Overnight + rule + + from + ^http://(?:www\.)?lso\.com/ + to + https://www.lso.com/ + + target + + + host + lso.com + + + host + www.lso.com + + + + + Long Access.com (partial) + + ruleset + + name + Long Access.com (partial) + rule + + + from + ^http://(?:www\.)?longaccess\.com/ + to + https://www.longaccess.com/ + + + from + ^http://the\.longaccess\.com/(?=assets/|blog/2\d{3}/\d\d/\d\d/[\w-]+/\w+\.(?:jpe?|pn)g) + to + https://s3.amazonaws.com/the.longaccess.com/ + + + securecookie + + host + ^www\.longaccess\.com$ + name + .+ + + target + + + host + longaccess.com + + + host + *.longaccess.com + + + + + Long Now.org (partial) + + ruleset + + name + Long Now.org (partial) + rule + + from + ^http://(?:www\.)?longnow\.org/(?=media/|membership(?:$|[?/])|static/) + to + https://longnow.org/ + + target + + + host + longnow.org + + + host + www.longnow.org + + + + + LongTail (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:s[01]-)?www\.l(?:ongtailvideo|tvimg)\.com/sites/all/themes/(?!community/)\w+/images/\w+\.png$ + + name + LongTail (partial) + rule + + + from + ^http://(a|v)\.jwpcdn\.com/ + to + https://$1.jwpcdn.com/ + + + from + ^http://(?:cdn\.|ssl\.)?p\.jwpcdn\.com/ + to + https://ssl.p.jwpcdn.com/ + + + from + ^http://(i|s)\.jwpltx\.com/ + to + https://$1.jwpltx.com/ + + + from + ^http://(?:www\.)?longtail\.tv/ + to + https://www.longtailvideo.com/ + + + from + ^http://(?:www\.)?longtailvideo\.com/(bits-on-the-run/sign-up|content/|jw/|sites/) + to + https://www.longtailvideo.com/$1 + + + from + ^http://(content|dashboard|l|lp|player|plugins|secure|securelp)\.longtailvideo\.com/ + to + https://$1.longtailvideo.com/ + + + from + ^http://(?:www\.)?ltvimg\.com/ + to + https://s0-www.ltvimg.com/ + + + from + ^http://s(?:0|1)-www\.ltvimg\.com/(\?.*)?$ + to + https://www.longtailvideo.com/$1 + + + from + ^http://s(0|1)-www\.ltvimg\.com/ + to + https://s$1-www.ltvimg.com/ + + + securecookie + + + host + ^\w\.jwpltx\.com$ + name + .+ + + + host + ^.+\.longtailvideo\.com$ + name + .+ + + + target + + + host + *.jwpcdn.com + + + host + *.jwpltx.com + + + host + longtail.tv + + + host + www.longtail.tv + + + host + longtailvideo.com + + + host + *.longtailvideo.com + + + host + ltvimg.com + + + host + *.ltvimg.com + + + + + Longform.org + + ruleset + + name + Longform.org + rule + + from + ^http://(?:www\.)?longform\.org/ + to + https://longform.org/ + + securecookie + + host + ^\.longform\.org$ + name + .+ + + target + + + host + longform.org + + + host + *.longform.org + + + + + Look.co.uk (mixed content) + + ruleset + + exclusion + + pattern + ^http://shop\.look\.co\.uk/(?:[\w-]+\.css|favicon\.ico|images/|javascript/) + + name + Look.co.uk (mixed content) + platform + mixedcontent + rule + + from + ^http://shop\.look\.co\.uk/ + to + https://shop.look.co.uk/ + + target + + host + shop.look.co.uk + + + + Look.co.uk (partial) + + ruleset + + exclusion + + + pattern + ^http://comps\.look\.co\.uk/(?!css/|login/embedded/https/) + + + pattern + ^http://shop\.look\.co\.uk/(?![\w-]+\.css|favicon\.ico|images/|javascript/) + + + name + Look.co.uk (partial) + rule + + from + ^http://(comps|shop)\.look\.co\.uk/ + to + https://$1.look.co.uk/ + + securecookie + + host + ^\.(?:comps\.)?look\.co\.uk$ + name + ^__utm\w$ + + target + + host + *.look.co.uk + + + + Lookback.io + + ruleset + + name + Lookback.io + rule + + from + ^http://(www\.)?lookback\.io/ + to + https://$1lookback.io/ + + target + + + host + lookback.io + + + host + www.lookback.io + + + + + Looking Local + + ruleset + + name + Looking Local + rule + + from + ^http://(www\.)?lookinglocal\.gov\.uk/ + to + https://$1lookinglocal.gov.uk/ + + securecookie + + host + ^(?:www\.)?lookinglocal\.gov\.uk$ + name + .+ + + target + + + host + lookinglocal.gov.uk + + + host + www.lookinglocal.gov.uk + + + + + Lookingglass + + ruleset + + name + Lookingglass + rule + + from + ^http://(www\.)?lgscout\.com/ + to + https://$1lgscout.com/ + + securecookie + + host + ^\.lgscout\.com$ + name + .+ + + target + + + host + lgscout.com + + + host + *.lgscout.com + + + + + Lookout.com + + ruleset + + name + Lookout.com + rule + + from + ^http://((?:blog|dm|faq|www)\.)?(my)?lookout\.com/ + to + https://$1$2lookout.com/ + + securecookie + + host + ^(?:(?:dm|faq|www)\.)?(?:my)?lookout\.com$ + name + .+ + + target + + + host + lookout.com + + + host + *.lookout.com + + + host + mylookout.com + + + host + *.mylookout.com + + + + + Loomio.org (partial) + + ruleset + + name + Loomio.org (partial) + rule + + from + ^http://(www\.)?loomio\.org/ + to + https://$1loomio.org/ + + securecookie + + host + ^(?:www)?\.loomio\.org$ + name + .+ + + target + + + host + loomio.org + + + host + *.loomio.org + + + + + LoopFuse (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?loopfuse\.net/webrecorder/js/listen\.js + + name + LoopFuse (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?loopfuse\.(com|net)/ + to + https://www.loopfuse.$1/ + + + from + ^http://(blog|community|help)\.loopfuse\.com/ + to + https://$1.loopfuse.com/ + + + securecookie + + host + ^(.*\.)?loopfuse\.(com|net)$ + name + .* + + target + + + host + loopfuse.com + + + host + *.loopfuse.com + + + host + loopfuse.net + + + host + *.loopfuse.net + + + + + Loopia + + ruleset + + exclusion + + pattern + ^http://blogg\. + + name + Loopia + rule + + + from + ^http://((static|support|webmail|www)\.)?loopia\.se/ + to + https://$1loopia.se/ + + + from + ^http://loopiasecure\.com/ + to + https://www.loopia.se/ + + + securecookie + + host + ^(.*\.)?loopia\.se$ + name + .* + + target + + + host + loopia.se + + + host + *.loopia.se + + + host + *.www.loopia.se + + + host + loopiasecure.com + + + + + Loopt + + ruleset + + name + Loopt + rule + + from + ^http://(?:www\.)?loopt\.com/ + to + https://www.loopt.com/ + + target + + + host + loopt.com + + + host + www.loopt.com + + + + + Lorea + + ruleset + + name + Lorea + rule + + from + ^http://(www\.)?lorea\.org/ + to + https://$1lorea.org/ + + target + + + host + lorea.org + + + host + www.lorea.org + + + + + Lorentz Center.nl + + ruleset + + name + Lorentz Center.nl + rule + + from + ^http://(www\.)?lorentzcenter\.nl/ + to + https://$1lorentzcenter.nl/ + + target + + + host + lorentzcenter.nl + + + host + www.lorentzcenter.nl + + + + + Los Angeles Times (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?latimes\.com/media/photo/ + + name + Los Angeles Times (partial) + rule + + + from + ^http://(?:(?:origin-)?www\.)?latimes\.com/(favicon\.ico|hive/|images/|includes/|media/|stylesheets/) + to + https://secure.latimes.com/$1 + + + from + ^http://(membership|myaccount2|secure)\.latimes\.com/ + to + https://$1.latimes.com/ + + + from + ^http://circulars\.latimes\.com/(assets/|dist_stage/|favicon\.ico|images/) + to + https://www.flyertown.ca/$1 + + + securecookie + + + host + ^\.latimes\.com$ + name + ^(gpv_p\w|metrics_id|s_\w+|tribanalyticscookie)$ + + + host + ^.+\.latimes\.com$ + name + .+ + + + target + + + host + latimes.com + + + host + *.latimes.com + + + + + Lotame (partial) + + ruleset + + name + Lotame (partial) + rule + + + from + ^http://(ad|bcp|meez|multiply|tags)\.crwdcntrl\.net/ + to + https://$1.crwdcntrl.net/ + + + from + ^http://(crowdcontrol|widgets)\.lotame\.com/ + to + https://$1.lotame.com/ + + + securecookie + + host + ^(ad|bcp|meez|multiply|tags)?\.crwdcntrl\.net$ + name + .+ + + target + + + host + *.crwdcntrl.net + + + host + *.lotame.com + + + + + Lotus (partial) + + ruleset + + name + Lotus (partial) + rule + + from + ^http://www-10\.lotus\.com/ + to + https://www-10.lotus.com/ + + securecookie + + host + ^www-10\.lotus\.com$ + name + .+ + + target + + host + www-10.lotus.com + + + + Lotus Cars (partial) + + ruleset + + name + Lotus Cars (partial) + platform + mixedcontent + rule + + + from + ^http://magazine\.lotus\.com/(modules/|sites/|subscribe) + to + https://magazine.lotus.com/$1 + + + from + ^https?://(?:www\.)?lotusoriginals\.com/ + to + https://www.lotusoriginals.com/ + + + target + + + host + magazine.lotus.com + + + host + lotusoriginals.com + + + host + www.lotusoriginals.com + + + + + Louhi.net (partial) + + ruleset + + name + Louhi.net (partial) + rule + + from + ^http://(oma|webmail|whm\d\d)\.louhi\.net/ + to + https://$1.louhi.net/ + + securecookie + + host + ^(?:oma|webmail)\.louhi\.fi$ + name + .+ + + target + + host + *.louhi.net + + + + Louis Milan + + ruleset + + name + Louis Milan + rule + + from + ^http://(www\.)?louismilan\.com/ + to + https://$1louismilan.com/ + + securecookie + + host + ^(?:.*\.)?louismilan\.com$ + name + .+ + + target + + + host + louismilan.com + + + host + *.louismilan.com + + + + + Louise Harrison Couture.com + + ruleset + + name + Louise Harrison Couture.com + rule + + from + ^http://(www\.)?louiseharrisoncouture\.com/ + to + https://$1louiseharrisoncouture.com/ + + securecookie + + host + ^(?:w*\.)?louiseharrisoncouture\.com$ + name + .+ + + target + + + host + louiseharrisoncouture.com + + + host + *.louiseharrisoncouture.com + + + + + Louisiana State University (partial) + + ruleset + + exclusion + + pattern + ^http://(?:careercenter|(?:www\.)?(?:bengalbound|cas|deanofstudents|disability|families|family|fye|greeks|sg|sfmc|studentlife))\.lsu\.edu/(?!favicon\.ico|misc/|sites/) + + name + Louisiana State University (partial) + rule + + + from + ^http://(?:www\.)?lsu\.edu/ + to + https://www.lsu.edu/ + + + from + ^http://appl0(08|37)(?:\.ocs)?\.lsu\.edu/ + to + https://appl0$1.lsu.edu/ + + + from + ^http://((?:calendar|careercenter|mylsu|myproxy|web)\.apps|courses|(?:connect|moodle2|networking)\.grok|housing|itservice|sso\.paws|photo-management|photos|jlee\.saa|sites01|lsumvs\.sncc|studlife-web1|piwik\.uss)\.lsu\.edu/ + to + https://$1.lsu.edu/ + + + from + ^http://(www\.)?(as|bengalbound|cas|complaints|deanofstudents|disability|fye|greeks|groksaa|sfmc|studentlife)\.lsu\.edu/ + to + https://$1$2.lsu.edu/ + + + from + ^http://(?:www\.)?families\.lsu\.edu/ + to + https://studlife-web1.lsu.edu/ + + + from + ^http://(?:www\.)?(family|sg)\.lsu\.edu/ + to + https://$1.lsu.edu/ + + + from + ^http://(?:www\.)?tigercard\.lsu\.edu/ + to + https://as.lsu.edu/tigercard + + + securecookie + + host + ^(?:(?:calendar|mylsu|myproxy|web)\.apps|\.complaints|courses|\.grok|sso\.paws|photo-management|photos|\.saa|sites01)\.lsu\.edu$ + name + .+ + + target + + + host + lsu.edu + + + host + *.lsu.edu + + + + + Love 2D.org + + ruleset + + name + Love 2D.org + rule + + from + ^http://(www\.)?love2d\.org/ + to + https://$1love2d.org/ + + securecookie + + host + ^\.love2d\.org$ + name + .+ + + target + + + host + love2d.org + + + host + *.love2d.org + + + + + Love Our Local Business + + ruleset + + name + Love Our Local Business + rule + + from + ^https?://(?:www\.)?loveourlocalbusiness\.com/ + to + https://www.loveourlocalbusiness.com/ + + securecookie + + host + ^www\.loveourlocalbusiness\.com$ + name + .+ + + target + + + host + loveourlocalbusiness.com + + + host + www.loveourlocalbusiness.com + + + + + LoveFilm + + ruleset + + name + LoveFilm + rule + + + from + ^http://(?:www\.)?lovefilm\.co\.uk/ + to + https://www.lovefilm.com/ + + + from + ^http://(?:www\.)?lovefilm\.(com|de|dk|no|se)/ + to + https://www.lovefilm.$1/ + + + from + ^http://static\.lovefilm\.(com|de|dk|no|se)/ + to + https://static.lovefilm.$1/ + + + securecookie + + host + ^\.lovefilm\.com$ + name + .+ + + target + + + host + lovefilm.* + + + host + www.lovefilm.* + + + host + static.lovefilm.* + + + host + *.lovefilm.com + + + + + LoveHoney (partial) + + ruleset + + name + LoveHoney (partial) + rule + + from + ^https?://(?:www\.)?lovehoney.co.uk/(help/contact-us|your-account) + to + https://www.lovehoney.co.uk/$1 + + target + + + host + lovehoney.co.uk + + + host + www.lovehoney.co.uk + + + + + Lovemoney.com (partial) + + ruleset + + name + Lovemoney.com (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?love(food|money)\.com/(css|favicon\.ico|[iI]mages/|login/) + to + https://www.love$1.com/$2 + + + from + ^http://energy\.lovemoney\.com/Branding/ + to + https://energy.lovemoney.com/Branding/ + + + from + ^http://sanalytics\.lovemoney\.com/ + to + https://sanalytics.lovemoney.com/ + + + target + + + host + lovefood.com + + + host + www.lovefood.com + + + host + lovemoney.com + + + host + *.lovemoney.com + + + + + Lovett Publishing House.com + + ruleset + + name + Lovett Publishing House.com + rule + + from + ^http://(www\.)?lovettpublishinghouse\.com/ + to + https://$1lovettpublishinghouse.com/ + + securecookie + + host + ^(?:w*\.)?lovettpublishinghouse\.com$ + name + .+ + + target + + + host + lovettpublishinghouse.com + + + host + *.lovettpublishinghouse.com + + + + + Lowes.com (partial) + + ruleset + + name + Lowes.com (partial) + rule + + + from + ^http://ak1\.abmr\.net/is/www\.lowes\.com\? + to + https://ak1s.abmr.net/is/www.lowes.com? + + + from + ^http://(?:www\.)?lowes\.com/(css/|favicon\.ico|(?:espot/.+/)?images/|javascript/|pdf/|UserAccountLanding(?:$|\?|/)|wcstore/|webapp/) + to + https://www.lowes.com/$1 + + + from + ^http://(dpmbapps(?:qa)?|images|lwscomdtq8|(?:pp)?(?:lwssvcs|m|mobileimages)|mobileapps|sadclwscom|www[17])\.lowes\.com/ + to + https://$1.lowes.com/ + + + securecookie + + host + ^(?:lwssvcs|m|pplwssvcs|ppm|www7)\.lowes\.com$ + name + .+ + + target + + + host + ak1.abmr.net + + + host + lowes.com + + + host + *.lowes.com + + + + + Lowyat.NET (partial) + + ruleset + + name + Lowyat.NET (partial) + rule + + from + ^http://(images-cdn|forum)\.lowyat\.net/ + to + https://$1.lowyat.net/ + + securecookie + + host + ^\.forum\.lowyat\.net$ + name + .+ + + target + + host + *.lowyat.net + + + + Loyal Forex + + ruleset + + name + Loyal Forex + rule + + from + ^http://(www\.)?loyalforex\.com/ + to + https://$1loyalforex.com/ + + securecookie + + host + ^\.loyalforex\.com$ + name + .+ + + target + + + host + loyalforex.com + + + host + *.loyalforex.com + + + + + Lucid Reverie + + ruleset + + name + Lucid Reverie + rule + + from + ^https?://(?:www\.)?lrcd\.com/ + to + https://lrcd.com/ + + securecookie + + host + ^lrcd\.com$ + name + .* + + target + + + host + lrcd.com + + + host + www.lrcd.com + + + + + Lucid Solutions.co.nz + + ruleset + + name + Lucid Solutions.co.nz + rule + + from + ^http://(plone\.|www\.)?lucidsolutions\.co\.nz/ + to + https://$1lucidsolutions.co.nz/ + + target + + + host + lucidsolutions.co.nz + + + host + *.lucidsolutions.co.nz + + + + + Lucina.net + + ruleset + + name + Lucina.net + rule + + from + ^http://(www\.)?lucina\.net/ + to + https://$1lucina.net/ + + target + + + host + lucina.net + + + host + www.lucina.net + + + + + Lucio's Gold + + ruleset + + name + Lucio's Gold + rule + + from + ^http://(www\.)?luciosgold\.ca/ + to + https://$1luciosgold.ca/ + + securecookie + + host + ^(?:www)?\.luciosgold\.ca$ + name + .+ + + target + + + host + luciosgold.ca + + + host + *.luciosgold.ca + + + + + LuckyShare + + ruleset + + name + LuckyShare + rule + + from + ^http://(www\.)?luckyshare\.net/ + to + https://$1luckyshare.net/ + + securecookie + + host + ^\.?luckyshare\.net$ + name + .+ + + target + + + host + luckyshare.net + + + host + *.luckyshare.net + + + + + Ludialudom.sk + + ruleset + + name + Ludialudom.sk + rule + + from + ^http://(www\.)?ludialudom\.sk/ + to + https://www.ludialudom.sk/ + + target + + + host + ludialudom.sk + + + host + www.ludialudom.sk + + + + + Ludios.org + + ruleset + + name + Ludios.org + rule + + from + ^http://(www\.)?ludios\.org/ + to + https://ludios.org/ + + securecookie + + host + ^(www\.)?ludios\.org$ + name + .* + + target + + + host + www.ludios.org + + + host + ludios.org + + + + + Lufthansa + + ruleset + + name + Lufthansa + rule + + + from + ^https?://lufthansa\.com/ + to + https://www.lufthansa.com/ + + + from + ^http://([^/:@]+)?\.lufthansa\.com/ + to + https://$1.lufthansa.com/ + + + target + + + host + lufthansa.com + + + host + *.lufthansa.com + + + + + Luleå Municipality + + ruleset + + name + Luleå Municipality + rule + + from + ^http://(www\.)?lulea\.se/ + to + https://$1lulea.se/ + + securecookie + + host + ^(?:www\.)?lulea\.se$ + name + .+ + + target + + + host + lulea.se + + + host + www.lulea.se + + + + + Luleå University of Technology (partial) + + ruleset + + name + Luleå University of Technology (partial) + rule + + + from + ^http://(?:www\.)?ltu\.se/(cms_fs/|css/|easyrec-web/|(?:Header-LTU-7\.2502|internt)(?:$|\?|/)|image/|img/|js/) + to + https://www.ltu.se/$1 + + + from + ^http://weblogon\.ltu\.se/ + to + https://weblogon.ltu.se/ + + + securecookie + + host + ^weblogon\.ltu\.se$ + name + .+ + + target + + + host + ltu.se + + + host + *.ltu.se + + + + + Lullabot.com + + ruleset + + name + Lullabot.com + rule + + from + ^http://(www\.)?lullabot\.com/ + to + https://$1lullabot.com/ + + target + + + host + lullabot.com + + + host + www.lullabot.com + + + + + Lulu (partial) + + ruleset + + name + Lulu (partial) + rule + + + from + ^http://(www\.)?lulu\.com/(login|register)\.php + to + https://$1lulu.com/$2.php + + + from + ^http://static\.lulu\.com/ + to + https://static.lulu.com/ + + + target + + + host + lulu.com + + + host + *.lulu.com + + + + + LulzBot (partial) + + ruleset + + name + LulzBot (partial) + rule + + from + ^http://(www\.)?lulzbot\.com/ + to + https://$1lulzbot.com/ + + securecookie + + host + \.lulzbot\.com$ + name + .+ + + target + + + host + lulzbot.com + + + host + *.lulzbot.com + + + + + Lumension.com (partial) + + ruleset + + exclusion + + pattern + ^http://leic\.lumensions\.com/+(?!css/|images/) + + name + Lumension.com (partial) + rule + + + from + ^http://((?:portal|sftp|support|www)\.)?lumension\.com/ + to + https://$1lumension.com/ + + + from + ^http://blog\.lumension\.com/favicon\.ico + to + https://secure.bluehost.com/~lumensio/blog_prod/favicon.ico + + + from + ^http://blog\.lumension\.com/wp-content/ + to + https://secure.bluehost.com/~lumensio/blog_prod/wp-content/ + + + from + ^http://(marketing\.cdn|leic)\.lumension\.com/ + to + https://a248.e.akamai.net/f/248/6144/10/$1.lumension.com/ + + + from + ^http://my\.lumension\.com/+(?:\?.*)?$ + to + https://www.lumension.com/mylumension/mylumension.aspx + + + from + ^http://my\.lumension\.com/+partner_request_form\.jsp(?:\??$|(\?.+)) + to + https://www.lumension.com/Partners/Become-A-Lumension-Partner.aspx$1 + + + securecookie + + host + ^\.lumension\.com$ + name + ^_mkto_trk$ + + target + + + host + lumension.com + + + host + *.lumension.com + + + + + Lumi.do + + ruleset + + name + Lumi.do + platform + firefox + rule + + from + ^http://lumi\.do/ + to + https://lumi.do/ + + securecookie + + host + ^lumi\.do$ + name + .+ + + target + + host + lumi.do + + + + Lumiblade + + ruleset + + name + Lumiblade + rule + + from + ^http://(www\.)?lumiblade-shop\.com/ + to + https://$1lumiblade-shop.com/ + + securecookie + + host + ^\.www\.lumiblade-shop\.com$ + name + .* + + target + + + host + lumiblade-shop.com + + + host + www.lumiblade-shop.com + + + host + *.www.lumiblade-shop.com + + + + + LuminoWorld.com (partial) + + ruleset + + name + LuminoWorld.com (partial) + rule + + from + ^http://(www\.)?luminoworld\.com/(images/|Portals/|scripts/|show(?:Category|Product)Image\.aspx) + to + https://$1luminoworld.com/$2 + + target + + + host + luminoworld.com + + + host + www.luminoworld.com + + + + + Lumo + + ruleset + + name + Lumo + rule + + from + ^http://(www\.)?lumo\.me/ + to + https://$1lumo.me/ + + securecookie + + host + ^lumo\.me$ + name + .+ + + target + + + host + lumo.me + + + host + www.lumo.me + + + + + Lumosity (partial) + + ruleset + + name + Lumosity (partial) + rule + + + from + ^http://(www\.)?lumosity\.com/((?:contact/billing|gift|login|sign_up)(?:$|[\?/])|compiled/|favicon\.ico|images/|stylesheets/) + to + https://$1lumosity.com/$2 + + + from + ^http://static(?:\.sl)?\.lumosity\.com/ + to + https://www.lumosity.com/ + + + target + + + host + lumosity.com + + + host + *.lumosity.com + + + host + static.sl.lumosity.com + + + + + Lumovies.com (false MCB) + + ruleset + + name + Lumovies.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?lumovies\.com/ + to + https://$1lumovies.com/ + + securecookie + + host + ^www\.lumovies\.com$ + name + .+ + + target + + + host + lumovies.com + + + host + www.lumovies.com + + + + + Luna Nivius + + ruleset + + name + Luna Nivius + rule + + from + ^http://(www\.)?niveusluna\.org/ + to + https://$1niveusluna.org/ + + target + + + host + niveusluna.org + + + host + www.niveusluna.org + + + + + Lurkmore.to + + ruleset + + name + Lurkmore.to + rule + + + from + ^http://(www\.)?lurkmore\.to/ + to + https://lurkmore.to/ + + + from + ^http://(www\.)?lurkmo(\.re|re\.so)/ + to + https://$1lurkmo$2/ + + + securecookie + + host + ^\.?lurkmo(?:\.re|re\.[st]o)$ + name + .+ + + target + + + host + lurkmo.re + + + host + *.lurkmo.re + + + host + lurkmore.so + + + host + *.lurkmore.so + + + host + lurkmore.to + + + host + *.lurkmore.to + + + + + LuxSci + + ruleset + + name + LuxSci + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?luxhv\.com/ + to + https://luxsci.com/extranet/hvmain.html + + + from + ^http://(?:(securesend\.|webmail\.|xpress\.)|www\.)?luxsci\.com/ + to + https://$1luxsci.com/ + + + from + ^http://(?:www\.)?luxsci\.mobi/ + to + https://luxsci.mobi/ + + + target + + + host + luxhv.com + + + host + www.luxhv.com + + + host + luxsci.com + + + host + *.luxsci.com + + + host + luxsci.mobi + + + host + www.luxsci.mobi + + + + + Luxomo.com + + ruleset + + name + Luxomo.com + rule + + from + ^http://(www\.)?luxomo\.com/ + to + https://$1luxomo.com/ + + securecookie + + host + ^\.www\.luxomo\.com$ + name + .+ + + target + + + host + luxomo.com + + + host + *.luxomo.com + + + + + Luxury Custom Wheels + + ruleset + + name + Luxury Custom Wheels + rule + + from + ^http://(www\.)?luxurycustomwheels\.com/ + to + https://$1luxurycustomwheels.com/ + + securecookie + + host + ^(?:.*\.)?luxurycustomwheels\.com$ + name + .+ + + target + + + host + luxurycustomwheels.com + + + host + *.luxurycustomwheels.com + + + + + Luxury Replica + + ruleset + + name + Luxury Replica + rule + + from + ^http://(www\.)?luxuryreplica\.net/ + to + https://$1luxuryreplica.net/ + + securecookie + + host + ^\.luxuryreplica.net$ + name + .+ + + target + + + host + luxuryreplica.net + + + host + *.luxuryreplica.net + + + + + Lynku.com (partial) + + ruleset + + name + Lynku.com (partial) + rule + + from + ^http://images\.lynku\.com/ + to + https://shop.look.co.uk/ + + target + + host + images.lynku.com + + + + Lyris (partial) + + ruleset + + name + Lyris (partial) + platform + mixedcontent + rule + + + from + ^https?://clicktracks\.com/ + to + https://www.clicktracks.com/ + + + from + ^http://(stats1|www)\.clicktracks\.com/ + to + https://$1.clicktracks.com/ + + + from + ^http://lyris\.com/ + to + https://www.lyris.com/ + + + from + ^http://(landing|www)\.lyris\.com/ + to + https://$1.lyris.com/ + + + from + ^http://(?:www\.)?lyrishq\.com/ + to + https://www.lyris.com/blog + + + from + ^http://up0\.net/ + to + https://www.up0.net/ + + + from + ^http://(\w+)\.up0\.net/ + to + https://$1.up0.net/ + + + securecookie + + host + ^(.*\.)?lyris\.com$ + name + .* + + target + + + host + clicktracks.com + + + host + *.clicktracks.com + + + host + lyris.com + + + host + *.lyris.com + + + host + lyrishq.com + + + host + www.lyrishq.com + + + host + up0.net + + + host + *.up0.net + + + + + Lyrk.de + + ruleset + + name + Lyrk.de + rule + + from + ^http://(?:(geodienste\.)|www\.)?lyrk\.de/ + to + https://$1lyrk.de/ + + securecookie + + host + ^geodienste\.lyrk\.de$ + name + .+ + + target + + + host + lyrk.de + + + host + *.lyrk.de + + + + + M&T Bank (partial) + + ruleset + + name + M&T Bank (partial) + rule + + + from + ^http://onlinebanking\.mandtbank\.com/ + to + https://onlinebanking.mandtbank.com/ + + + from + ^https?://(?:www\.)?mtb\.com/ + to + https://www.mtb.com/ + + + from + ^http://(applynow|services|webmail)\.mtb\.com/ + to + https://$1.mtb.com/ + + + from + ^http://mandtbank\.spatialpoint\.com/ + to + https://mandtbank.spatialpoint.com/ + + + securecookie + + + host + ^onlinebanking\.mandtbank\.com$ + name + .+ + + + host + ^.*\.mtb\.com$ + name + .+ + + + target + + + host + onlinebanking.mandtbank.com + + + host + mtb.com + + + host + *.mtb.com + + + host + mandtbank.spatialpoint.com + + + + + M-W.co.uk (false MCB) + + ruleset + + name + M-W.co.uk (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?m-w\.co\.uk/ + to + https://$1m-w.co.uk/ + + target + + + host + m-w.co.uk + + + host + www.m-w.co.uk + + + + + M-net.de + + ruleset + + name + M-net.de + rule + + from + ^http://(www\.)?m-net\.de/ + to + https://www.m-net.de/ + + target + + + host + www.m-net.de + + + host + m-net.de + + + + + M.I.C. Gadget (partial) + + ruleset + + name + M.I.C. Gadget (partial) + rule + + + from + ^https?://images\.micgadget\.com/ + to + https://s3.amazonaws.com/images.micgadget.com/ + + + from + ^http://store\.micgadget\.com/ + to + https://store.micgadget.com/ + + + securecookie + + host + ^\.store\.micgadget\.com$ + name + .+ + + target + + + host + *.micgadget.com + + + host + *.store.micgadget.com + + + + + M01.eu + + ruleset + + name + M01.eu + rule + + from + ^http://(?:(me\.)|www\.)?m01\.eu/ + to + https://$1m01.eu/ + + securecookie + + host + ^(?:me\.)?m01\.eu$ + name + .+ + + target + + + host + m01.eu + + + host + *.m01.eu + + + + + M2pub.com + + ruleset + + name + M2pub.com + rule + + + from + ^http://creative\.m2pub\.com/ + to + https://d3vg9hiogk70qz.cloudfront.net/ + + + from + ^http://s\.m2pub\.com/ + to + https://ads.adk2.com/ + + + target + + host + *.m2pub.com + + + + M86security + + ruleset + + name + M86security + rule + + from + ^http://(?:www\.)?m86security\.com/ + to + https://www.m86security.com/ + + target + + + host + www.m86security.com + + + host + m86security.com + + + + + MAAWG + + ruleset + + name + MAAWG + rule + + from + ^http://(www\.)?maawg\.org/ + to + https://$1maawg.org/ + + target + + + host + maawg.org + + + host + www.maawg.org + + + + + MAC Paper.com (partial) + + ruleset + + name + MAC Paper.com (partial) + rule + + from + ^http://(secure\.|www\.)?macpaper\.com/ + to + https://secure.macpaper.com/ + + securecookie + + host + ^secure\.macpaper\.com$ + name + .+ + + target + + + host + macpaper.com + + + host + *.macpaper.com + + + + + MADD California + + ruleset + + name + MADD California + rule + + from + ^http://(?:www\.)?maddcalifornia\.org/ + to + https://www.maddcalifornia.org/ + + target + + + host + maddcalifornia.org + + + host + www.maddcalifornia.org + + + + + MAGIX (partial) + + ruleset + + name + MAGIX (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?catooh\.com/(catoohthumb\d\d/|html/|magix/|themes/) + to + https://$1catooh.com/$2 + + + from + ^http://(www\.)?magix\.com/(clear\.gif|fileadmin/|typo3temp/) + to + https://$1magix.com/$2 + + + from + ^http://s(hop|upport2)\.magix\.com/ + to + https://s$1.magix.com/ + + + from + ^http://(www\.)?magix\.info/(\w\w)/(courses/|favicon\.ico|forum|knowledge|local/|media/|mcpool01/|media|member|online-training|pages/|performance-check|[\w\-\.]+\.\d+\.html) + to + https://$1magix.info/$2/$3 + + + from + ^http://(www\.)?magix-online\.com/(theme|upload)s/ + to + https://$1magix-online.com/$2s/ + + + from + ^http://(www\.)?mufin\.com/(css/|favicon\.ico|images/|\w\w/(login|register)) + to + https://$1mufin.com/$2 + + + from + ^http://(www\.)?mygoya\.de/(favicon\.ico|themes/|\w\w/(anmelden\.13\|login\.18)\.html) + to + https://$1mygoya.de/$2 + + + from + ^http://service\.xara\.com/ + to + https://service.xara.com/ + + + from + ^http://(?:app|secure)\.xaraonline\.com/ + to + https://secure.xaraonline.com/ + + + target + + + host + catooh.com + + + host + www.catooh.com + + + host + magix.com + + + host + *.magix.com + + + host + magix.info + + + host + www.magix.info + + + host + magix-online.com + + + host + www.magix-online.com + + + host + mufin.com + + + host + www.mufin.com + + + host + mygoya.de + + + host + www.mygoya.de + + + host + service.xara.com + + + host + app.xaraonline.com + + + host + secure.xaraonline.com + + + + + MAH.se + + ruleset + + name + MAH.se + platform + mixedcontent + rule + + + from + ^http://mah\.se/ + to + https://www.mah.se/ + + + from + ^http://www\.mah\.se/ + to + https://www.mah.se/ + + + target + + + host + www.mah.se + + + host + mah.se + + + + + MAPS + + ruleset + + name + MAPS + platform + mixedcontent + rule + + + from + ^http://(www\.)?maps\.org/ + to + https://$1maps.org/ + + + from + ^http://store\.maps\.org/ + to + https://store.maps.org/ + + + target + + + host + maps.org + + + host + www.maps.org + + + + + MARC.info + + ruleset + + name + MARC.info + rule + + from + ^http://(?:www\.)?marc\.info/ + to + https://marc.info/ + + target + + + host + marc.info + + + host + www.marc.info + + + + + MAXROAM (partial) + + ruleset + + name + MAXROAM (partial) + rule + + + from + ^http://(www\.)?maxroam\.com/(App_Themes/|images/|shared/|Shop/OnePageCheckout\.aspx) + to + https://$1maxroam.com/$2 + + + from + ^http://hostels\.maxroam\.com/(App_Themes/|css/|favicon\.ico|images/|shared/|Shop/Checkout\.aspx) + to + https://hostels.maxroam.com/$1 + + + target + + + host + maxroam.com + + + host + *.maxroam.com + + + + + MAZDA Web Members + + ruleset + + name + MAZDA Web Members + rule + + from + ^http://www\.m-wm\.com/ + to + https://www.m-wm.com/ + + target + + host + www.m-wm.com + + + + MB Detox + + ruleset + + name + MB Detox + rule + + from + ^http://(www\.)?mbdetox\.com/ + to + https://$1mbdetox.com/ + + target + + + host + mbdetox.com + + + host + www.mbdetox.com + + + + + MBSportsWeb (partial) + + ruleset + + name + MBSportsWeb (partial) + rule + + from + ^http://(www\.)?mbsportsweb\.c(?:a|om)/ + to + https://$1mbsportsweb.com/ + + securecookie + + host + ^\.mbsportsweb\.com$ + name + .+ + + target + + + host + mbsportsweb.ca + + + host + www.mbsportsweb.ca + + + host + mbsportsweb.com + + + host + *.mbsportsweb.com + + + + + MBnet + + ruleset + + name + MBnet + rule + + from + ^http://(mbi\.|webmail\.|www\.)?mbnet\.fi/ + to + https://$1mbnet.fi/ + + target + + + host + mbnet.fi + + + host + *.mbnet.fi + + + + + MBusa.com + + ruleset + + name + MBusa.com + rule + + + from + ^http://(?:www\.)?mbusa\.com/ + to + https://www.mbusa.com/ + + + from + ^http://stage\.mbusa\.com/ + to + https://stage.mbusa.com/ + + + securecookie + + host + ^(?:stage|www)?\.mbusa\.com$ + name + .+ + + target + + + host + mbusa.com + + + host + *.mbusa.com + + + + + MBuy.com (partial) + + ruleset + + name + MBuy.com (partial) + rule + + from + ^http://app\.mbuy\.com/ + to + https://app.mbuy.com/ + + securecookie + + host + ^app\.mbuy\.com$ + name + .+ + + target + + host + app.mbuy.com + + + + MCM Electronics.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?mcmelectronics\.com/(?!(?:basket|FreeShipping)\.aspx|browse/|css/|favicon\.ico|images/|login/|rss/|scripts/|services/|WebResource\.axd) + + name + MCM Electronics.com (partial) + rule + + from + ^http://(?:www\.)?mcmelectronics\.com/ + to + https://www.mcmelectronics.com/ + + securecookie + + host + ^\.mcmelectronics\.com$ + name + ^(?:gpv_p\w|s_\w\w)$ + + target + + + host + mcmelectronics.com + + + host + www.mcmelectronics.com + + + + + MDC US.com + + ruleset + + name + MDC US.com + rule + + from + ^http://(www\.)?mdcus\.com/ + to + https://$1mdcus.com/ + + target + + + host + mdcus.com + + + host + www.mdcus.com + + + + + MDH.se + + ruleset + + name + MDH.se + platform + mixedcontent + rule + + + from + ^http://mdh\.se/ + to + https://www.mdh.se/ + + + from + ^http://www\.mdh\.se/ + to + https://www.mdh.se/ + + + target + + + host + www.mdh.se + + + host + mdh.se + + + + + MDNX (partial) + + ruleset + + name + MDNX (partial) + rule + + from + ^http://(\w+)\.stcllctrs\.com/ + to + https://$1.stcllctrs.com/ + + target + + host + *.stcllctrs.com + + + + MDTS + + ruleset + + name + MDTS + rule + + from + ^http://mdts\.uk\.com/ + to + https://mdts.uk.com/ + + securecookie + + host + ^mdts\.uk\.com$ + name + .* + + target + + host + mdts.uk.com + + + + MEPhI.ru (partial) + + ruleset + + name + MEPhI.ru (partial) + rule + + from + ^http://(ca|eis|oir|ut|mail\.ut)\.mephi\.ru/ + to + https://$1.mephi.ru/ + + securecookie + + host + ^(?:oir|ut|\.mail\.ut)\.mephi\.ru$ + name + .+ + + target + + host + *.mephi.ru + + + + MESO-Rx + + ruleset + + name + MESO-Rx + rule + + + from + ^http://((?:es|fr|ru|www)\.)?thinksteroids\.com/ + to + https://$1thinksteroids.com/ + + + from + ^http://cdn\.thinksteroids\.com/ + to + https://d1uxx6tvzy89fj.cloudfront.net/ + + + from + ^http://cdn-ru\.thinksteroids\.com/ + to + https://ru.thinksteroids.com/ + + + from + ^http://js-fr\.thinksteroids\.com/ + to + https://fr.thinksteroids.com/ + + + from + ^http://static\.thinksteroids\.com/ + to + https://thinksteroids.com/forum/ + + + securecookie + + host + ^(?:.*\.)?thinksteroids\.com$ + name + .+ + + target + + + host + thinksteroids.com + + + host + *.thinksteroids.com + + + + + METRO Transit (Harris County, Houston, Texas) + + ruleset + + name + METRO Transit (Harris County, Houston, Texas) + rule + + + from + ^((http://((www)\.)?)|https://)ridemetro\.org/ + to + https://www.ridemetro.org/ + + + from + ^http://(pass-web|jobs)\.ridemetro\.org/ + to + https://$1.ridemetro.org/ + + + target + + + host + ridemetro.org + + + host + www.ridemetro.org + + + host + jobs.ridemetro.org + + + host + pass-web.ridemetro.org + + + + + MFi.re + + ruleset + + name + MFi.re + rule + + from + ^http://(www\.)?mfi\.re/ + to + https://$1mfi.re/ + + target + + + host + mfi.re + + + host + www.mfi.re + + + + + MGID.com (partial) + + ruleset + + exclusion + + pattern + ^http://imgn\.dt00\. + + name + MGID.com (partial) + rule + + + from + ^http://(imgn?|jsc|oth)\.(?:dt0[07]\.net|mgid\.com)/ + to + https://$1.mgid.com/ + + + from + ^http://admin(4)?\.dt07\.net/ + to + https://admin$1.dt07.net/ + + + from + ^http://((?:dashboard|freelance|my|usr|www)\.)?mgid\.com/ + to + https://$1mgid.com/ + + + securecookie + + + host + ^admin4\.dt07\.net$ + name + .+ + + + host + ^(?:dashboard|my)?\.mgid\.com$ + name + .+ + + + target + + + host + *.dt00.net + + + host + *.dt07.net + + + host + mgid.com + + + host + *.mgid.com + + + + + MI5 + + ruleset + + name + MI5 + rule + + from + ^http://(?:www\.)?mi5\.gov\.uk/ + to + https://www.mi5.gov.uk/ + + target + + + host + mi5.gov.uk + + + host + www.mi5.gov.uk + + + + + MIN_Commsy + + ruleset + + name + MIN_Commsy + platform + mixedcontent + rule + + from + ^http://(?:www\.)?mincommsy\.uni-hamburg\.de/ + to + https://www.mincommsy.uni-hamburg.de/ + + target + + + host + www.mincommsy.uni-hamburg.de + + + host + mincommsy.uni-hamburg.de + + + + + MIPS Technologies + + ruleset + + name + MIPS Technologies + rule + + from + ^http://(developer\.|www\.)?mips\.com/ + to + https://$1mips.com/ + + securecookie + + host + ^(.*\.)?mips\.com$ + name + .* + + target + + + host + mips.com + + + host + *.mips.com + + + + + MIUN.se + + ruleset + + name + MIUN.se + rule + + + from + ^http://miun\.se/ + to + https://www.miun.se/ + + + from + ^http://www\.miun\.se/ + to + https://www.miun.se/ + + + from + ^http://portal\.miun\.se/ + to + https://portal.miun.se/ + + + target + + + host + www.miun.se + + + host + portal.miun.se + + + host + miun.se + + + + + MIX-Computer.de + + ruleset + + name + MIX-Computer.de + rule + + from + ^http://(www\.)?mix-computer\.de/ + to + https://www.mix-computer.de/ + + target + + + host + www.mix-computer.de + + + host + mix-computer.de + + + + + MJG International + + ruleset + + name + MJG International + rule + + from + ^http://(www\.)?mjg\.in/ + to + https://$1mjg.in/ + + securecookie + + host + ^(?:www\.)?mjg\.in$ + name + .+ + + target + + + host + mjg.in + + + host + www.mjg.in + + + + + ML314.com + + ruleset + + name + ML314.com + rule + + from + ^http://(www\.)?ml314\.com/ + to + https://$1ml314.com/ + + target + + + host + ml314.com + + + host + www.ml314.com + + + + + MLP Forums + + ruleset + + name + MLP Forums + rule + + + from + ^http://(www\.)?mlpforums\.com/(\?.*)?$ + to + https://$1mlpforums.com/index.php$2 + + + from + ^http://(www\.)?mlpforums\.com/ + to + https://$1mlpforums.com/ + + + from + ^https?://s\.mlpforums\.com/ + to + https://mlpforums-feld0.netdna-ssl.com/ + + + securecookie + + host + ^\.mlpforums\.com$ + name + .+ + + target + + + host + mlpforums.com + + + host + *.mlpforums.com + + + + + MLPchan.net + + ruleset + + name + MLPchan.net + rule + + from + ^http://(www\.)?mlpchan\.net/ + to + https://$1mlpchan.net/ + + securecookie + + host + ^\.mlpchan\.net$ + name + .+ + + target + + + host + mlpchan.net + + + host + *.mlpchan.net + + + + + MLSec Project.org + + ruleset + + name + MLSec Project.org + rule + + from + ^http://(www\.)?mlsecproject\.org/ + to + https://$1mlsecproject.org/ + + securecookie + + host + ^\.mlsecproject\.org$ + name + .+ + + target + + + host + mlsecproject.org + + + host + *.mlsecproject.org + + + + + MLive.com (partial) + + ruleset + + exclusion + + pattern + ^http://businessfinder\.mlive\.com/+(?!favicon\.ico) + + name + MLive.com (partial) + rule + + + from + ^http://(businessfinder|members)\.mlive\.com/ + to + https://$1.mlive.com/ + + + from + ^http://media\.mlive\.com/(?!design/alpha/css/(?!nocommentbox\.css)|static/(?:common(?!/css/adv_toprail_classifieds\.css|/css/global\.min\.css)|mlive/static)/css/) + to + https://a248.e.akamai.net/f/68/1176/4/media.mlive.com/ + + + securecookie + + host + ^members\.mlive\.com$ + name + .+ + + target + + host + *.mlive.com + + + + MLno6.com + + ruleset + + name + MLno6.com + rule + + from + ^http://(www\.)?mlno6\.com/ + to + https://$1mlno6.com/ + + target + + + host + mlno6.com + + + host + www.mlno6.com + + + + + MMAHQ + + ruleset + + name + MMAHQ + rule + + from + ^https?://(?:www\.)?mmahq\.com/ + to + https://www.mmahq.com/ + + securecookie + + host + ^(?:www)?\.mmahq\.com$ + name + .+ + + target + + + host + mmahq.com + + + host + *.mmahq.com + + + + + MMO Culture + + ruleset + + name + MMO Culture + rule + + from + ^http://(www\.)?mmoculture\.com/ + to + https://$1mmoculture.com/ + + securecookie + + host + ^\.mmoculture\.com$ + name + .+ + + target + + + host + mmoculture.com + + + host + *.mmoculture.com + + + + + MMOGA + + ruleset + + name + MMOGA + rule + + from + ^http://(blog\.|www\.)?mmoga\.(com|de)/ + to + https://$1mmoga.$2/ + + securecookie + + host + ^\.mmoga\.(?:com|de)$ + name + .+ + + target + + + host + mmoga.com + + + host + *.mmoga.com + + + host + mmoga.de + + + host + *.mmoga.de + + + + + MMonit.com + + ruleset + + name + MMonit.com + rule + + from + ^http://(?:www\.)?mmonit\.com/ + to + https://mmonit.com/ + + securecookie + + host + ^mmonit\.com$ + name + .+ + + target + + + host + mmonit.com + + + host + www.mmonit.com + + + + + MND CDN.com + + ruleset + + name + MND CDN.com + rule + + from + ^http://a\d\.mndcdn\.com/ + to + https://d20tdhwx2i89n1.cloudfront.net/ + + target + + host + *.mndcdn.com + + + + MNGinteractive.com + + ruleset + + name + MNGinteractive.com + rule + + from + ^http://(?:secure\.)?extras\.mnginteractive\.com/ + to + https://secure.extras.mnginteractive.com/ + + target + + host + *.mnginteractive.com + + + + MOBIUS Catalog + + ruleset + + name + MOBIUS Catalog + rule + + from + ^http://searchmobius\.org/ + to + https://searchmobius.org/ + + securecookie + + host + ^\.?searchmobius\.org$ + name + .+ + + target + + + host + searchmobius.org + + + host + *.searchmobius.org + + + + + MODX (partial) + + ruleset + + exclusion + + pattern + ^https?://services\.modx\.com/(?!stylesheets/|user(?:$|\?|/)) + + name + MODX (partial) + platform + mixedcontent + rule + + from + ^http?://(?:pta|services)\.modx\.com/ + to + https://services.modx.com/$1 + + target + + host + *.modx.com + + + + MODX Cloud + + ruleset + + name + MODX Cloud + rule + + from + ^https?://(?:www\.)?modxcloud\.com/ + to + https://modxcloud.com/ + + target + + + host + modxcloud.com + + + host + www.modxcloud.com + + + + + MOG + + ruleset + + name + MOG + rule + + from + ^http://(www\.)?mog\.com/ + to + https://$1mog.com/ + + target + + + host + mog.com + + + host + www.mog.com + + + + + MOOC-List.com (false MCB) + + ruleset + + name + MOOC-List.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.mooc-list\.com/(?!favicon\.ico|sites/) + to + https://www.mooc-list.com/ + + securecookie + + host + ^\.mooc-list\.com$ + name + .+ + + target + + host + *.mooc-list.com + + + + MOOC-List.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.mooc-list.com/(?!favicon\.ico|sites/) + + name + MOOC-List.com (partial) + rule + + from + ^http://(www\.)?mooc-list\.com/ + to + https://$1mooc-list.com/ + + target + + + host + mooc-list.com + + + host + www.mooc-list.com + + + + + MPG.de + + ruleset + + name + MPG.de + rule + + from + ^http://((?:www\.cbs|(?:www\.)?dsb|www)\.)?mpg\.de/ + to + https://$1mpg.de/ + + securecookie + + host + ^www\.(?:cbs\.)?mpg\.de$ + name + .+ + + target + + + host + mpg.de + + + host + *.mpg.de + + + + + MPI web.org (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?mpiweb\.org/+(?![aA]pp_[mM]aster/|favicon\.ico|Libraries/|Scripts/|SignIn\.aspx|sitefinity(?:$|[?/])) + + + pattern + ^http://m\.mpiweb\.org/+(?!Content/) + + + name + MPI web.org (partial) + rule + + from + ^http://((?:m|sts|www)\.)?mpiweb\.org/ + to + https://$1mpiweb.org/ + + target + + + host + mpiweb.org + + + host + *.mpiweb.org + + + + + MPNewMedia + + ruleset + + name + MPNewMedia + rule + + from + ^http://www1\.mpnrs\.com/ + to + https://www1.mpnrs.com/ + + target + + host + *.mpnrs.com + + + + MPlayer + + ruleset + + name + MPlayer + rule + + from + ^http://((?:dvdnav|ftp|lists|rtmpdump|svn|www1?)\.)?mplayerhq\.hu/ + to + https://$1mplayerhq.hu/ + + target + + + host + mplayerhq.hu + + + host + *.mplayerhq.hu + + + + + MR PORTER + + ruleset + + name + MR PORTER + rule + + + from + ^https?://(?:www\.)?mrporter\.com/ + to + https://www.mrporter.com/ + + + from + ^http://(cache|www-lt)\.mrporter\.com/ + to + https://$1.mrporter.com/ + + + securecookie + + host + ^\.?www\.mrporter\.com$ + name + .+ + + target + + + host + mrporter.com + + + host + *.mrporter.com + + + + + MSDN (partial) + + ruleset + + exclusion + + pattern + ^http://blogs\.msdn\.com/ + + name + MSDN (partial) + rule + + + from + ^https?://(?:i1\.)?(blogs|social)\.msdn\.com/ + to + https://$1.msdn.com/ + + + from + ^http://(channel9|(?:(?:forums|profile|users|windowsphone|www)\.)?create)\.msdn\.com/ + to + https://$1.msdn.com/ + + + from + ^https?://public\.create\.msdn\.com/assets/ + to + https://www.create.msdn.com/assets/ + + + securecookie + + host + ^.+\.msdn\.com$ + name + .+ + + target + + + host + *.msdn.com + + + host + i1.*.msdn.com + + + host + create.msdn.com + + + host + *.create.msdn.com + + + + + MSI Computer.com (partial) + + ruleset + + name + MSI Computer.com (partial) + rule + + from + ^http://s(ervice|hop)\.msicomputer\.com/ + to + https://s$1.msicomputer.com/ + + securecookie + + host + ^shop\.msicomputer\.com$ + name + .+ + + target + + host + *.msicomputer.com + + + + MSI-Shop.de + + ruleset + + name + MSI-Shop.de + rule + + from + ^http://(www\.)?msi-shop\.de/ + to + https://$1msi-shop.de/ + + securecookie + + host + ^\.www\.msi-shop\.de$ + name + .+ + + target + + + host + msi-shop.de + + + host + *.msi-shop.de + + + + + MSI.com (false MCB) + + ruleset + + name + MSI.com (false MCB) + platform + mixedcontent + rule + + from + ^http://frsupport\.msi\.com/ + to + https://frsupport.msi.com/ + + securecookie + + host + ^frsupport\.msi\.com$ + name + .+ + + target + + host + frsupport.msi.com + + + + MSI.com (partial) + + ruleset + + exclusion + + pattern + ^http://frsupport\.msi\.com/+(?!__swift/|favicon\.ico|images/|index\.php\?/(?:Base|Core)/) + + name + MSI.com (partial) + rule + + + from + ^http://(be|by|cz|dk|dragoonarmy|es|eu|euinline|euscripts|fi|forum-(?:en|fr|pl|ru)|fr|frsupport|game-static|gr|hu|media|nl|no|pl|pt|register|ro|rs|ru|se|sk|ua|uk)\.msi\.com/ + to + https://$1.msi.com/ + + + from + ^http://support\.msi\.com/[^?]* + to + https://register.msi.com/ + + + securecookie + + host + ^\.?(?:be|cz|dk|dragoonarmy|es|fi|forum-(?:en|fr|pl|ru)|fr|gr|hu|nl|no|pl|pt|register|ro|rs|ru|se|ua|uk)\.msi\.com$ + name + .+ + + target + + + host + msi.com + + + host + *.msi.com + + + + + MSN (partial) + + ruleset + + name + MSN (partial) + rule + + + from + ^http://static[12]?\.glo\.com/ + to + https://glo.msn.com/ + + + from + ^http://c\.(?:msn\.co\.jp|(?:jp|sg)\.msn\.com)/ + to + https://c.msn.co.jp/ + + + from + ^http://(ac3|accountservices|adsyndication|appexforms(?:blu|col|kaw|sg)|bedrock(?:blu|bluenext|col|colnext|cn|emea|emeanext|jp|kawnext|sg|sgnext)|bedrockforms(?:blu|bluenext|cn|col|colnext|emea|emeanext|kaw|kawnext|sg|sgnext)|blstc|c|\w+\.secure\.co1|contacts|entimg|g|h|(?:www\.)?hotmail|hp|imgs1-video|msndata\.jp|moneycentral|eb\.my|now|nowformsblu|preview|\d+\.r|(?:[ab]\.)?rad|stcjp|setstj|(?:\w+\.)?storage|stratosphere|udc|catalog\.video|wonderwall)\.msn\.com/ + to + https://$1.msn.com/ + + + from + ^http://\w\w\.c\.msn\.com/ + to + https://c.msn.com/ + + + from + ^http://assets(\d\w)?\.msnbc\.msn\.com/ + to + https://a248.e.akamai.net/f/1127/349/8m/assets$1.msnbc.msn.com/ + + + from + ^http://m\.now\.msn\.com/sc/i/ + to + https://stc-now.s-msn.com/sc/i/ + + + from + ^http://static\.stratosphere\.msn\.com/ + to + https://az29590.vo.msecnd.net/ + + + from + ^http://img(\d)\.catalog\.video\.msn\.com/ + to + https://a248.e.akamai.net/f/726/5897/8m/img$1.catalog.video.msn.com/ + + + from + ^http://static\d?\.wonderwall\.com/ + to + https://wonderwall.msn.com/ + + + securecookie + + + host + ^\.msn\.co(?:\.jp|m)$ + name + ^MUID$ + + + host + ^\.msn\.com$ + name + ^s_\w+$ + + + host + ^(?:\.c|now|preview)\.msn\.com$ + name + .+ + + + target + + + host + *.glo.com + + + host + *.msn.co.jp + + + host + *.msn.com + + + host + *.wonderwall.com + + + + + MSNBC.com (partial) + + ruleset + + name + MSNBC.com (partial) + rule + + + from + ^http://(www\.)?msnbc\.com/(?=favicon\.ico|sites/) + to + https://$1msnbc.com/ + + + from + ^http://nvcdn\.msnbc\.com/(?=_sites/) + to + https://a248.e.akamai.net/f/248/6135/10/nvcdn.msnbc.com/ + + + target + + + host + msnbc.com + + + host + *.msnbc.com + + + + + MTNA (partial) + + ruleset + + name + MTNA (partial) + rule + + + from + ^http://members\.mtna\.org/ + to + https://members.mtna.org/ + + + from + ^http://(www\.)?mtnafoundation\.org/ + to + https://$1mtnafoundation.org/ + + + target + + + host + members.mtna.org + + + host + mtnafoundation.org + + + host + www.mtnafoundation.org + + + + + MTailor.com + + ruleset + + name + MTailor.com + rule + + from + ^http://(www\.)?mtailor\.com/ + to + https://$1mtailor.com/ + + target + + + host + mtailor.com + + + host + www.mtailor.com + + + + + MVG-mobil.de + + ruleset + + name + MVG-mobil.de + rule + + from + ^http://(?:www\.)?mvg-mobile\.de/ + to + https://www.mvg-mobile.de/ + + securecookie + + host + ^www\.mvg-mobil\.de$ + name + .+ + + target + + + host + mvg-mobil.de + + + host + www.mvg-mobil.de + + + + + MVP National Title + + ruleset + + name + MVP National Title + rule + + from + ^http://(www\.)?mvptitle\.com/ + to + https://$1mvptitle.com/ + + target + + + host + mvptitle.com + + + host + www.mvptitle.com + + + + + MVPs.org (partial) + + ruleset + + name + MVPs.org (partial) + rule + + from + ^http://(www\.)?mvps\.org/ + to + https://$1mvps.org/ + + target + + + host + mvps.org + + + host + www.mvps.org + + + + + MWR InfoSecurity.com + + ruleset + + name + MWR InfoSecurity.com + rule + + from + ^http://(labs\.|www\.)?mwrinfosecurity\.com/ + to + https://$1mwrinfosecurity.com/ + + target + + + host + mwrinfosecurity.com + + + host + *.mwrinfosecurity.com + + + + + MXGuarddog (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?mxguarddog\.com/faq(?:$|[/\.\?]) + + name + MXGuarddog (partial) + rule + + from + ^http://(www\.)?mxguarddog\.com/ + to + https://$1mxguarddog.com/ + + securecookie + + host + ^(www\.)?mxguarddog\.com$ + name + .+ + + target + + + host + mxguarddog.com + + + host + www.mxguarddog.com + + + + + MXToolBox + + ruleset + + name + MXToolBox + rule + + from + ^http://(www\.)?mxtoolbox\.com/ + to + https://$1mxtoolbox.com/ + + securecookie + + host + ^(www\.)?mxtoolbox\.com$ + name + .* + + target + + + host + mxtoolbox.com + + + host + www.mxtoolbox.com + + + + + MYEDDEBT.com + + ruleset + + name + MYEDDEBT.com + rule + + from + ^(http://(www\.)?|https://)myeddebt\.com/ + to + https://www.myeddebt.com/ + + securecookie + + host + (^|\.)myeddebt\.com$ + name + .+ + + target + + + host + myeddebt.com + + + host + www.myeddebt.com + + + + + MaaS360.com (partial) + + ruleset + + name + MaaS360.com (partial) + rule + + + from + ^http://((?:portal|maasters|trials|www2?)\.)?maas360\.com/ + to + https://$1maas360.com/ + + + from + ^http://content\.maas360\.com/ + to + https://content.fiberlink.com/ + + + from + ^http://links\.maas360\.com/demoRequest\?(?=.+=) + to + https://trials.maas360.com/forms/register_service_m.php?I=INFO_REQUEST_DEMO& + + + from + ^http://links\.maas360\.com/demoRequest/*$ + to + https://trials.maas360.com/forms/register_service_m.php?I=INFO_REQUEST_DEMO + + + from + ^http://links\.maas360\.com/getStartedNow\?(?=.+=) + to + https://trials.maas360.com/forms/register_service_m.php?A=YouTube&O=SM& + + + from + ^http://links\.maas360\.com/getStartedNow/*$ + to + https://trials.maas360.com/forms/register_service_m.php?A=YouTube&O=SM + + + from + ^http://links\.maas360\.com/legal\?(?=.+=) + to + https://www.maas360.com/about/privacy-and-legal/? + + + from + ^http://links\.maas360\.com/legal/*$ + to + https://www.maas360.com/about/privacy-and-legal/ + + + from + ^http://links\.maas360\.com/(?:mdm_glossary|trialGeneric)\?(?=.+=) + to + https://trials.maas360.com/forms/register_service_m.php? + + + from + ^http://links\.maas360\.com/(?:mdm_glossary|trialGeneric)/*$ + to + https://trials.maas360.com/forms/register_service_m.php + + + from + ^http://links\.maas360\.com/mobileAppManagement\?(?=.+=) + to + https://www.maas360.com/products/mobile-application-management? + + + from + ^http://links\.maas360\.com/mobileAppManagement/*$ + to + https://www.maas360.com/products/mobile-application-management + + + from + ^http://links\.maas360\.com/webinars(?:/+|\?.*)?$ + to + https://maasters.maas360.com/forum/?forum=all&value=webinar&type=1&include=4&search=1 + + + securecookie + + host + ^(?:de|portal|trials|www)?\.maas360\.com$ + name + .+ + + target + + + host + maas360.com + + + host + *.maas360.com + + + + + MacArthur Foundation (partial) + + ruleset + + name + MacArthur Foundation (partial) + rule + + from + ^http://(autodiscover|client|legacy|owa)\.macfound\.org/ + to + https://$1.macfound.org/ + + securecookie + + host + .+\.macfound\.org$ + name + .+ + + target + + host + *.macfound.org + + + + MacOSForge.org + + ruleset + + exclusion + + + pattern + ^http://xquartz\.macosforge\.org/ + + + pattern + ^http://launchd\.macosforge\.org/ + + + pattern + ^http://fstools\.macosforge\.org/ + + + name + MacOSForge.org + rule + + + from + ^http://(www\.)?macosforge\.org/ + to + https://www.macosforge.org/ + + + from + ^http://([^/:@]*)\.macosforge\.org/ + to + https://$1.macosforge.org/ + + + target + + + host + www.macosforge.org + + + host + macosforge.org + + + host + *.macosforge.org + + + + + MacPorts.org + + ruleset + + name + MacPorts.org + rule + + + from + ^http://(www\.)?macports\.org/ + to + https://www.macports.org/ + + + from + ^http://svn\.macports\.org/ + to + https://svn.macports.org/ + + + from + ^http://trac\.macports\.org/ + to + https://trac.macports.org/ + + + from + ^http://guide\.macports\.org/ + to + https://www.macports.org/guide/ + + + securecookie + + host + ^trac\.macports\.org$ + name + .+ + + target + + + host + www.macports.org + + + host + macports.org + + + host + guide.macports.org + + + host + svn.macports.org + + + host + trac.macports.org + + + + + MacRuby + + ruleset + + name + MacRuby + rule + + from + ^http://(www\.)?macruby\.org/ + to + https://www.macruby.org/ + + securecookie + + host + ^(www)?\.macruby\.org + name + .* + + target + + + host + www.macruby.org + + + host + macruby.org + + + + + MacaInfo.org + + ruleset + + name + MacaInfo.org + rule + + from + ^http://(?:www\.)?macainfo\.org/ + to + https://www.macainfo.org/ + + securecookie + + host + ^\.macainfo\.org$ + name + .+ + + target + + + host + macainfo.org + + + host + *.macainfo.org + + + + + Macfarlane Packaging.com + + ruleset + + name + Macfarlane Packaging.com + rule + + from + ^http://(?:www\.)?macfarlanepackaging\.com/ + to + https://www.macfarlanepackaging.com/ + + securecookie + + host + ^(?:[.w]*\.)?macfarlanepackaging\.com$ + name + .+ + + target + + + host + macfarlanepackaging.com + + + host + *.macfarlanepackaging.com + + + + + Machine Guns Vegas.com + + ruleset + + name + Machine Guns Vegas.com + rule + + from + ^http://(www\.)?machinegunsvegas\.com/ + to + https://$1machinegunsvegas.com/ + + securecookie + + host + ^\.machinegunsvegas\.com$ + name + .+ + + target + + + host + machinegunsvegas.com + + + host + *.machinegunsvegas.com + + + + + Machines Like Us + + ruleset + + name + Machines Like Us + rule + + from + ^https?://(?:www\.)?machineslikeus\.com/ + to + https://machineslikeus.com/ + + target + + + host + machineslikeus.com + + + host + www.machineslikeus.com + + + + + Macmillan Dictionary.com + + ruleset + + name + Macmillan Dictionary.com + rule + + from + ^http://(?:www\.)?macmillandictionary\.com/ + to + https://www.macmillandictionary.com/ + + securecookie + + host + ^www\.macmillandictionary\.com$ + name + .+ + + target + + + host + macmillandictionary.com + + + host + www.macmillandictionary.com + + + + + Mad Mimi.com (partial) + + ruleset + + name + Mad Mimi.com (partial) + rule + + from + ^http://((?:api|billing|go|www)\.)?madmimi\.com/ + to + https://$1madmimi.com/ + + securecookie + + host + ^(?:api|billing)?\.madmimi\.com$ + name + .+ + + target + + + host + madmimi.com + + + host + *.madmimi.com + + + + + Made In a Free World.com (false MCB) + + ruleset + + name + Made In a Free World.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?madeinafreeworld\.com/ + to + https://$1madeinafreeworld.com/ + + securecookie + + host + ^\.madeinafreeworld\.com$ + name + .+ + + target + + + host + madeinafreeworld.com + + + host + *.madeinafreeworld.com + + + + + Madison Logic (partial) + + ruleset + + name + Madison Logic (partial) + rule + + + from + ^http://(?:www\.)?dinclinx\.com/ + to + https://clk.madisonlogic.com/ + + + from + ^http://www\.madisonlogic\.com/images/(arrow|bg|headBg|linkbutton_background|mainNav)\.gif$ + to + https://www.madisonlogic.com/images/$2.gif + + + from + ^http://(blog|clk|js-agent|jsc|st)\.madisonlogic\.com/ + to + https://$1.madisonlogic.com/ + + + securecookie + + host + ^\.madisonlogic\.com$ + name + ^__(?:utm\w|zlcid)$ + + target + + + host + dinclinx.com + + + host + www.dinclinx.com + + + host + *.madisonlogic.com + + + + + Madstein.at + + ruleset + + name + Madstein.at + rule + + from + ^http://(www\.)?madstein\.at/ + to + https://secure.madstein.at/ + + target + + + host + www.madstein.at + + + host + madstein.at + + + + + Maemo (partial) + + ruleset + + name + Maemo (partial) + rule + + + from + ^https?://(?:www\.)?maemo\.org/(midcom-)?static/ + to + https://maemo.org/$1static/ + + + from + ^http://garage\.maemo\.org/ + to + https://garage.maemo.org/ + + + from + ^https?://static\.maemo\.org/ + to + https://maemo.org/midcom-static/ + + + target + + + host + maemo.org + + + host + *.maemo.org + + + + + Mageia + + ruleset + + name + Mageia + rule + + + from + ^http://((?:blog|bugs|doc|forums|identity|ml|nav|planet|wiki|www)\.)?mageia\.org/ + to + https://$1mageia.org/ + + + from + ^http://svn(?:web)?\.mageia\.org/ + to + https://svnweb.mageia.org/ + + + securecookie + + host + ^(?:.*\.)?mageia\.org$ + name + .+ + + target + + + host + mageia.org + + + host + *.mageia.org + + + + + Magellan Models.com (false MCB) + + ruleset + + name + Magellan Models.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?magellanmodels\.com/ + to + https://$1magellanmodels.com/ + + securecookie + + host + ^(?:www)?\.magellanmodels\.com$ + name + .+ + + target + + + host + magellanmodels.com + + + host + *.magellanmodels.com + + + + + Magento Go images + + ruleset + + name + Magento Go images + rule + + from + ^http://(\w+\.)?img\.gostorego\.com/ + to + https://$1img.gostorego.com/ + + target + + host + *.gostorego.com + + + + Magic Affiliate plugin.com + + ruleset + + name + Magic Affiliate plugin.com + rule + + from + ^http://(www\.)?magicaffiliateplugin\.com/ + to + https://$1magicaffiliateplugin.com/ + + securecookie + + host + ^(?:w*\.)?magicaffiliateplugin\.com$ + name + .+ + + target + + + host + magicaffiliateplugin.com + + + host + *.magicaffiliateplugin.com + + + + + Magic Members.com + + ruleset + + name + Magic Members.com + rule + + from + ^http://(www\.)?magicmembers\.com/ + to + https://$1magicmembers.com/ + + securecookie + + host + ^(?:w*\.)?magicmembers\.com$ + name + .+ + + target + + + host + magicmembers.com + + + host + *.magicmembers.com + + + + + Magic.fr + + ruleset + + name + Magic.fr + rule + + from + ^http://(www\.)?magic\.fr/ + to + https://$1magic.fr/ + + securecookie + + host + ^(?:www\.)?magic\.fr$ + name + .+ + + target + + + host + magic.fr + + + host + www.magic.fr + + + + + Magnatune (partial) + + ruleset + + name + Magnatune (partial) + platform + mixedcontent + rule + + from + ^https?://(?:he3\.|(www\.))?magnatune\.com/ + to + https://$1magnatune.com/ + + securecookie + + host + ^(.*\.)magnatune\.com$ + name + .* + + target + + + host + magnatune.com + + + host + *.magnatune.com + + + + + Magnet.ie + + ruleset + + name + Magnet.ie + rule + + from + ^http://(?:www\.)?magnet\.ie/ + to + https://www.magnet.ie/ + + target + + + host + magnet.ie + + + host + www.magnet.ie + + + + + Magyar Telekom (partial) + + ruleset + + name + Magyar Telekom (partial) + rule + + from + ^http://(www|pool)\.telekom\.hu/ + to + https://$1.telekom.hu/ + + target + + + host + pool.telekom.hu + + + host + www.telekom.hu + + + + + Mahomet Citizen (partial) + + ruleset + + name + Mahomet Citizen (partial) + rule + + from + ^http://(?:www\.)?mcitizen\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.mcitizen.com/$1 + + target + + + host + mcitizen.com + + + host + www.mcitizen.com + + + + + Mahones Home Decor + + ruleset + + name + Mahones Home Decor + rule + + from + ^http://(www\.)?mahoneshomedecor\.com/ + to + https://$1mahoneshomedecor.com/ + + securecookie + + host + ^(?:.*\.)?mahoneshomedecor\.com$ + name + .+ + + target + + + host + mahoneshomedecor.com + + + host + *.mahoneshomedecor.com + + + + + Mail-archive.com + + ruleset + + name + Mail-archive.com + rule + + from + ^http://(www\.)?mail-archive\.com/ + to + https://www.mail-archive.com/ + + target + + + host + mail-archive.com + + + host + www.mail-archive.com + + + + + Mail.com + + ruleset + + name + Mail.com + rule + + from + ^http://((?:dl|www\.faq|help|sec-i0|service|www)\.)?mail\.com/ + to + https://$1mail.com/ + + securecookie + + host + .*\.mail\.com$ + name + .+ + + target + + + host + mail.com + + + host + *.mail.com + + + + + Mail.ru (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:afisha|blogs|internet)\.mail\.ru/ + + + pattern + ^http://deti\.mail\.ru/+(?!favicon\.ico|.+\.(?:css|jpe?g|png)(?:$|\?)) + + + pattern + ^http://lady\.mail\.ru/(?![^/]+\.css) + + + pattern + ^http://news\.mail\.ru/(?!_css/|favicon\.ico$|img/|pic/|prev\d{1,6}/) + + + name + Mail.ru (partial) + rule + + + from + ^http://(?:(img)(?:\.tv)?|(?:my\.)?(tv))\.mail\.ru/ + to + https://$1$2.mail.ru/ + + + from + ^http://(?:cdn\.)?connect\.mail\.ru/ + to + https://connect.mail.ru/ + + + from + ^http://((?:1link|ad|agent|amigo|biz|corp|cp-filin|deti|e|avt\.foto|games|help|hi-tech|lady|minigames|money|news|r3?|riot|sales|showbiz|status|target|www)\.)?mail\.ru/ + to + https://$1mail.ru/ + + + from + ^http://m\.news\.mail\.ru/(_css/|favicon\.ico$|img/) + to + https://news.mail.ru/$1 + + + from + ^http://r[2s]\.mail\.ru/ + to + https://rs.mail.ru/ + + + from + ^http://(?:(?:\w\d\.){4}top|top-fwz1)\.mail\.ru/ + to + https://top-fwz1.mail.ru/ + + + securecookie + + + host + ^\.mail\.ru$ + name + ^(?:FT|V)ID$ + + + host + ^(?:1link|hi-tech)\.mail\.ru$ + name + .+ + + + target + + + host + mail.ru + + + host + *.mail.ru + + + + + MailChimp (partial) + + ruleset + + exclusion + + pattern + ^http://mailchimp\.com/+(?!(?:blog|login|signup)(?:$|[?/])|assets/) + + name + MailChimp (partial) + rule + + + from + ^http://((?:(?:\w+\.)?admin|blog|cdn-images|connect|login|sfbloghost|www)\.)?mailchimp\.com/ + to + https://$1mailchimp.com/ + + + from + ^http://downloads\.mailchimp\.com/ + to + https://d1zgderxoe1a.cloudfront.net/ + + + from + ^http://experts\.mailchimp\.com/ + to + https://mc-experts.herokuapp.com/ + + + from + ^http://static\.mailchimp\.com/ + to + https://dbfv8p2wljo34.cloudfront.net/ + + + securecookie + + host + ^.+\.mailchimp\.com$ + name + .+ + + target + + + host + mailchimp.com + + + host + *.mailchimp.com + + + + + MailNull.com + + ruleset + + name + MailNull.com + rule + + from + ^http://(?:www\.)?mailnull\.com/ + to + https://mailnull.com/ + + target + + + host + mailnull.com + + + host + www.mailnull.com + + + + + MailPoet.com + + ruleset + + name + MailPoet.com + rule + + + from + ^http://(?:www\.)?mailpoet\.com/ + to + https://www.mailpoet.com/ + + + from + ^http://support\.mailpoet\.com/ + to + https://support.mailpoet.com/ + + + securecookie + + host + ^support\.mailpoet\.com$ + name + .+ + + target + + + host + mailpoet.com + + + host + *.mailpoet.com + + + + + Mailbox.org + + ruleset + + name + Mailbox.org + rule + + from + ^http://(www\.)?mailbox\.org/ + to + https://$1mailbox.org/ + + securecookie + + host + ^mailbox\.org$ + name + .+ + + target + + + host + mailbox.org + + + host + www.mailbox.org + + + + + Mailgun.com (partial) + + ruleset + + name + Mailgun.com (partial) + rule + + + from + ^http://(help\.)?mailgun\.com/ + to + https://$1mailgun.com/ + + + from + ^http://status\.mailgun\.com/ + to + https://mailgun.statuspage.io/ + + + securecookie + + host + ^mailgun\.com$ + name + .+ + + target + + + host + mailgun.com + + + host + *.mailgun.com + + + + + Mailigen (partial) + + ruleset + + name + Mailigen (partial) + rule + + from + ^http://(adm|log|static-adm)in\.mailigen\.com/ + to + https://$1in.mailigen.com/ + + securecookie + + host + ^.+\.mailigen\.com$ + name + .+ + + target + + host + *.mailigen.com + + + + Mailinator.com + + ruleset + + name + Mailinator.com + rule + + from + ^http://(www\.)?mailinator\.com/ + to + https://$1mailinator.com/ + + securecookie + + host + ^(?:www\.)?mailinator\.com$ + name + .+ + + target + + + host + mailinator.com + + + host + www.mailinator.com + + + + + Mailoo + + ruleset + + name + Mailoo + rule + + from + ^http://(www\.)?mailoo\.org/ + to + https://www.mailoo.org/ + + target + + + host + mailoo.org + + + host + www.mailoo.org + + + + + Mailout Interactive.com (partial) + + ruleset + + name + Mailout Interactive.com (partial) + rule + + from + ^http://(?:www\.)?mailoutinteractive\.com/ + to + https://mailoutinteractive.com/ + + securecookie + + host + ^(?:www\.)?mailoutinteractive\.com$ + name + .+ + + target + + + host + mailoutinteractive.com + + + host + www.mailoutinteractive.com + + + + + Mailpile.is + + ruleset + + name + Mailpile.is + rule + + from + ^http://(?:www\.)?mailpile\.is/ + to + https://www.mailpile.is/ + + target + + + host + mailpile.is + + + host + www.mailpile.is + + + + + Mailvelope + + ruleset + + name + Mailvelope + rule + + from + ^http://(www\.)?mailvelope\.com/ + to + https://$1mailvelope.com/ + + target + + + host + mailvelope.com + + + host + www.mailvelope.com + + + + + Maine Civil Liberties Union + + ruleset + + name + Maine Civil Liberties Union + rule + + from + ^http://(?:www\.)?mclu\.org/ + to + https://www.mclu.org/ + + target + + + host + mclu.org + + + host + www.mclu.org + + + + + Maine.gov (partial) + + ruleset + + name + Maine.gov (partial) + rule + + from + ^http://(www\.)?maine\.gov/((?:agriculture|informe|msl|portal/(?:government|online_services)|tools)(?:$|\?|/)|portal/(?:css|images|img)/) + to + https://$1maine.gov/$2 + + target + + + host + maine.gov + + + host + www.maine.gov + + + + + Majestic-12 (partial) + + ruleset + + name + Majestic-12 (partial) + rule + + + from + ^http://(www\.)?majestic12\.co\.uk/ + to + https://$1majestic12.co.uk/ + + + from + ^http://majesticseo\.com/ + to + https://www.majesticseo.com/ + + + from + ^http://www\.majesticseo\.com/(account|static)/ + to + https://www.majesticseo.com/$1/ + + + target + + + host + majestic12.co.uk + + + host + www.majestic12.co.uk + + + host + majesticseo.com + + + host + www.majesticseo.com + + + + + Major Designs Doll Fashions + + ruleset + + name + Major Designs Doll Fashions + rule + + from + ^http://(www\.)?majordesignsdollfashions\.com/ + to + https://$1majordesignsdollfashions.com/ + + target + + + host + majordesignsdollfashions.com + + + host + www.majordesignsdollfashions.com + + + + + Make My Trip + + ruleset + + name + Make My Trip + platform + mixedcontent + rule + + + from + ^http://makemytrip\.com/ + to + https://www.makemytrip.com/ + + + from + ^http://(cheapfaresindia|image4|image5|m|railtourism|support|us|www)\.makemytrip\.com/ + to + https://$1.makemytrip.com/ + + + target + + + host + makemytrip.com + + + host + *.makemytrip.com + + + + + Make a Gif.com (false MCB) + + ruleset + + name + Make a Gif.com (false MCB) + platform + mixedcontent + rule + + from + ^http://makeagif\.com/ + to + https://makeagif.com/ + + securecookie + + host + ^\.makeagif\.com$ + name + .+ + + target + + + host + makeagif.com + + + host + *.makeagif.com + + + + + Make a Gif.com (partial) + + ruleset + + exclusion + + pattern + ^http://makeagif\.com/+(?!css/|favicon\.ico|js/|s/) + + name + Make a Gif.com (partial) + rule + + from + ^http://(cdn\.|www\.)?makeagif\.com/ + to + https://$1makeagif.com/ + + target + + + host + makeagif.com + + + host + cdn.makeagif.com + + + host + www.makeagif.com + + + + + Make-A-Wish Foundation of Michigan + + ruleset + + name + Make-A-Wish Foundation of Michigan + rule + + from + ^http://(?:www\.)?wishmich\.org/ + to + https://www.wishmich.org/ + + target + + + host + wishmich.org + + + host + www.wishmich.org + + + + + Make: Projects (partial) + + ruleset + + name + Make: Projects (partial) + rule + + + from + ^https?://(?:www\.)?makeprojects\.org/Project/login(/register)?($|\?) + to + https://makeprojects.org/Project/login$1$2 + + + from + ^https?://guide-images\.makeprojects\.org/ + to + https://d1c7nyv5gwvh6t.cloudfront.net/ + + + target + + + host + makeprojects.org + + + host + *.makeprojects.org + + + + + MakeShop.jp (partial) + + ruleset + + name + MakeShop.jp (partial) + rule + + from + ^http://(www\.)?makeshop\.jp/ + to + https://$1makeshop.jp/ + + target + + + host + makeshop.jp + + + host + www.makeshop.jp + + + + + MakeUseOf (partial) + + ruleset + + name + MakeUseOf (partial) + rule + + + from + ^http://(www\.)?makeuseof\.com/(favicon\.ico|wp-content/) + to + https://$1makeuseof.com/$2 + + + from + ^http://main\.makeuseoflimited\.netdna-cdn\.com/ + to + https://makeuseof.com/ + + + target + + + host + makeuseof.com + + + host + www.makeuseof.com + + + host + main.makeuseoflimited.netdna-cdn.com + + + + + Maker Shed + + ruleset + + name + Maker Shed + rule + + from + ^http://(www\.)?makershed\.com/ + to + https://$1makershed.com/ + + securecookie + + host + ^(?:www\.)?makershed\.com$ + name + .+ + + target + + + host + makershed.com + + + host + www.makershed.com + + + + + Makerble + + ruleset + + name + Makerble + rule + + + from + ^https?://makerble\.com/ + to + https://www.makerble.com/ + + + from + ^http://([^/:@]+)\.makerble\.com/ + to + https://$1.makerble.com/ + + + target + + + host + makerble.com + + + host + *.makerble.com + + + + + Makerbot + + ruleset + + name + Makerbot + rule + + + from + ^http://((?:accounts|digitalstore|www)\.)?makerbot\.com/ + to + https://$1makerbot.com/ + + + from + ^http://(?:www\.)?store\.makerbot\.com/ + to + https://store.makerbot.com/ + + + securecookie + + host + ^(?:accounts|\.digitalstore|\.store)?\.makerbot\.com$ + name + .+ + + target + + + host + makerbot.com + + + host + *.makerbot.com + + + + + Makewebeasy.com + + ruleset + + name + Makewebeasy.com + rule + + from + ^http://(www\.)?makewebeasy\.com/ + to + https://www.makewebeasy.com/ + + target + + + host + makewebeasy.com + + + host + www.makewebeasy.com + + + + + Makeyourlaws.org + + ruleset + + name + Makeyourlaws.org + platform + firefox + rule + + + from + ^http://makeyourlaws\.org/ + to + https://makeyourlaws.org/ + + + from + ^http://www\.makeyourlaws\.org/ + to + https://www.makeyourlaws.org/ + + + securecookie + + + host + ^makeyourlaws\.org$ + name + .+ + + + host + ^www\.makeyourlaws\.org$ + name + .+ + + + target + + + host + makeyourlaws.org + + + host + www.makeyourlaws.org + + + + + MakiBox + + ruleset + + name + MakiBox + rule + + from + ^http://(www\.)?makibox\.com/ + to + https://$1makibox.com/ + + securecookie + + host + ^(?:www\.)?makibox\.com$ + name + .+ + + target + + + host + makibox.com + + + host + www.makibox.com + + + + + Makrotex.hu + + ruleset + + name + Makrotex.hu + rule + + from + ^http://makrotex\.hu/ + to + https://makrotex.hu/ + + target + + host + makrotex.hu + + + + Malcovery.com (partial) + + ruleset + + name + Malcovery.com (partial) + rule + + from + ^http://(www\.)?malcovery\.com/ + to + https://$1malcovery.com/ + + target + + + host + malcovery.com + + + host + www.malcovery.com + + + + + Maliit.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?maliit\.org/+(?!\?) + + name + Maliit.org (partial) + rule + + from + ^http://(?:www\.)?(?:wiki\.)?maliit\.org/ + to + https://wiki.maliit.org/ + + securecookie + + host + ^wiki\.maliit\.org$ + name + .+ + + target + + + host + maliit.org + + + host + *.maliit.org + + + + + Mall_sk_cz_hu_pl + + ruleset + + name + Mall_sk_cz_hu_pl + rule + + + from + ^http://(www\.)?mall\.sk/ + to + https://www.mall.sk/ + + + from + ^http://(www\.)?mall\.cz/ + to + https://www.mall.cz/ + + + from + ^http://(www\.)?mall\.hu/ + to + https://www.mall.hu/ + + + from + ^http://(www\.)?mall\.pl/ + to + https://www.mall.pl/ + + + from + ^http://(www\.)?mimovrste\.com/ + to + https://www.mimovrste.com/ + + + target + + + host + mall.sk + + + host + www.mall.sk + + + host + mall.cz + + + host + www.mall.cz + + + host + mall.hu + + + host + www.mall.hu + + + host + mall.pl + + + host + www.mall.pl + + + host + mimovrste.com + + + host + www.mimovrste.com + + + + + Malvern Diabetic Foot.org + + ruleset + + name + Malvern Diabetic Foot.org + rule + + from + ^http://www\.malverndiabeticfoot\.org/ + to + https://www.malverndiabeticfoot.org/ + + securecookie + + host + ^www\.malverndiabeticfoot\.org$ + name + .+ + + target + + host + www.malverndiabeticfoot.org + + + + Malware Tracker.com (partial) + + ruleset + + name + Malware Tracker.com (partial) + rule + + + from + ^http://(app\.|www\.)?malwaretracker\.com/ + to + https://$1malwaretracker.com/ + + + from + ^http://(?:www\.)?malware-tracker\.com/ + to + https://www.malware-tracker.com/ + + + target + + + host + malwaretracker.com + + + host + *.malwaretracker.com + + + host + malware-tracker.com + + + host + www.malware-tracker.com + + + + + Malwarebytes (partial) + + ruleset + + name + Malwarebytes (partial) + rule + + + from + ^http://((?:downloads|facebook|forums|helpdesk|static|(?:\w+\.)?cdn\.static|store|www)\.)?malwarebytes\.org/ + to + https://$1malwarebytes.org/ + + + from + ^http://static(?:-cdn)?\.malwarebytes\.org/ + to + https://static.malwarebytes.org/ + + + securecookie + + host + ^(?:helpdesk|\.?store)?\.malwarebytes\.org$ + name + .+ + + target + + + host + malwarebytes.org + + + host + *.malwarebytes.org + + + + + Mamba + + ruleset + + name + Mamba + platform + mixedcontent + rule + + from + ^http://(?:www\.)?(corp\.|img\.|partner\.)?mamba\.ru/ + to + https://$1mamba.ru/ + + securecookie + + host + ^\.mamba\.ru$ + name + .* + + target + + + host + mamba.ru + + + host + *.mamba.ru + + + host + www.corp.mamba.ru + + + + + Mammut + + ruleset + + name + Mammut + rule + + + from + ^https?://mammut\.ch/ + to + https://www.mammut.ch/ + + + from + ^http://([^/:@]+)?\.mammut\.ch/ + to + https://$1.mammut.ch/ + + + target + + + host + mammut.ch + + + host + www.mammut.ch + + + + + Man Group + + ruleset + + name + Man Group + rule + + + from + ^https?://man\.com/ + to + https://www.man.com/ + + + from + ^http://([^/:@]+)?\.man\.com/ + to + https://$1.man.com/ + + + securecookie + + host + ^(.*\.)?man\.com$ + name + .+ + + target + + + host + man.com + + + host + *.man.com + + + + + Man in the Mirror.org + + ruleset + + name + Man in the Mirror.org + rule + + from + ^http://(www\.)?maninthemirror\.org/ + to + https://$1maninthemirror.org/ + + securecookie + + host + ^(?:w*\.)?maninthemirror\.org$ + name + .+ + + target + + + host + maninthemirror.org + + + host + *.maninthemirror.org + + + + + ManaBalss.lv + + ruleset + + name + ManaBalss.lv + rule + + from + ^http://(www\.)?manabalss\.lv/ + to + https://manabalss.lv/ + + target + + + host + manabalss.lv + + + host + www.manabalss.lv + + + + + ManageEngine + + ruleset + + name + ManageEngine + rule + + from + ^http://((?:blogs|community|forums|ondemand|pitstop|store|www)\.)?manageengine\.com/ + to + https://$1manageengine.com/ + + securecookie + + host + ^forums\.manageengine\.com$ + name + .+ + + target + + + host + manageengine.com + + + host + *.manageengine.com + + + + + Managed Forex Program.com + + ruleset + + name + Managed Forex Program.com + rule + + from + ^http://(www\.)?managedforexprogram\.com/ + to + https://$1managedforexprogram.com/ + + securecookie + + host + ^www\.managedforexprogram\.com$ + name + .+ + + target + + + host + managedforexprogram.com + + + host + www.managedforexprogram.com + + + + + Mandiant (partial) + + ruleset + + name + Mandiant (partial) + rule + + from + ^http://(www\.)?mandiant\.com/ + to + https://www.mandiant.com/ + + target + + + host + mandiant.com + + + host + www.mandiant.com + + + + + Mandriva.com + + ruleset + + exclusion + + pattern + ^http://(?:blog|forum)\.mandriva\.com/(?!cron\.php|favicon\.ico|style\.php|\w\w/(?:styles|wp-content)/) + + name + Mandriva.com + rule + + + from + ^http://((?:blog|expert|forum|git|lists|my|qa|serviceplace|svn|webapps|www2?)\.)?mandriva\.com/ + to + https://$1mandriva.com/ + + + from + ^http://store\.mandriva\.com/[^?]*(?=\?.*)? + to + https://serviceplace.mandriva.com/ + + + securecookie + + host + .+\.mandriva\.com$ + name + .+ + + target + + + host + mandriva.com + + + host + *.mandriva.com + + + + + Mandriva.com (false MCB) + + ruleset + + name + Mandriva.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(blog|forum)\.mandriva\.com/(?!cron\.php|favicon\.ico|style\.php|\w\w/(?:styles|wp-content)/) + to + https://$1.mandriva.com/ + + target + + + host + blog.mandriva.com + + + host + forum.mandriva.com + + + + + Manga (partial) + + ruleset + + name + Manga (partial) + rule + + from + ^http://secure\.manga\.com/ + to + https://secure.manga.com/ + + target + + host + secure.manga.com + + + + Mangaupdates.com + + ruleset + + name + Mangaupdates.com + rule + + from + ^http://(www\.)?mangaupdates\.com/ + to + https://www.mangaupdates.com/ + + target + + + host + mangaupdates.com + + + host + www.mangaupdates.com + + + + + Mango (partial) + + ruleset + + name + Mango (partial) + rule + + from + ^http://s(hop|sl)\.mango\.com/ + to + https://s$1.mango.com/ + + securecookie + + host + ^s(?:hop|ssl)\.mango\.com$ + name + .+ + + target + + host + *.mango.com + + + + Manhattan Institute + + ruleset + + name + Manhattan Institute + platform + mixedcontent + rule + + from + ^http://(www\.)?manhattan-institute\.org/ + to + https://$1manhattan-institute.org/ + + target + + + host + manhattan-institute.org + + + host + www.manhattan-institute.org + + + + + Manhattanite + + ruleset + + name + Manhattanite + rule + + from + ^http://(www\.)?shopmanhattanite\.com/ + to + https://$1shopmanhattanite.com/ + + securecookie + + host + ^\.www\.shopmanhattanite\.com$ + name + .+ + + target + + + host + shopmanhattanite.com + + + host + www.shopmanhattanite.com + + + host + *.www.shopmanhattanite.com + + + + + Manhattanville College (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?mville\.edu/(?!/?images/|favicon\.ico|modules/|plugins/|templates/) + + name + Manhattanville College (partial) + rule + + from + ^http://(community\.|selfservice\.|www\.)?mville\.edu/ + to + https://$1mville.edu/ + + securecookie + + host + ^(?:community|selfservice)\.mville\.edu$ + name + .+ + + target + + + host + mville.edu + + + host + *.mville.edu + + + + + Manjaro.org (partial) + + ruleset + + name + Manjaro.org (partial) + rule + + from + ^http://(de|forum|lists|wiki)\.manjaro\.org/ + to + https://$1.manjaro.org/ + + securecookie + + host + ^(?:de|forum)\.manjaro\.org$ + name + .+ + + target + + host + *.manjaro.org + + + + Manta (partial) + + ruleset + + name + Manta (partial) + rule + + + from + ^http://(?:llnw\.|(www\.))?manta\.com/ + to + https://$1manta.com/ + + + from + ^https?://m\d\.manta-r1\.com/ + to + https://www.mata.com/ + + + securecookie + + host + ^w*\.manta\.com$ + name + .+ + + target + + + host + manta.com + + + host + *.manta.com + + + host + *.manta-r1.com + + + + + Manticore (partial) + + ruleset + + name + Manticore (partial) + rule + + + from + ^http://(?:app|purl)\.manticoretechnology\.com/ + to + https://app.manticoretechnology.com/ + + + from + ^http://stats\.manticoretechnology\.com/ + to + https://stats.manticoretechnology.com/ + + + securecookie + + host + ^stats\.manticoretechnology\.com$ + name + .* + + target + + host + *.manticoretechnology.com + + + + MantisBT + + ruleset + + name + MantisBT + rule + + from + ^http://(?:www\.)?mantisbt\.org/ + to + https://www.mantisbt.org/ + + target + + + host + mantisbt.org + + + host + www.mantisbt.org + + + + + ManuFrog Webbhotell (partial) + + ruleset + + name + ManuFrog Webbhotell (partial) + platform + mixedcontent + rule + + from + ^http://((?:manu\d\d?|webmail|www)\.)?manufrog\.com/ + to + https://$1manufrog.com/ + + securecookie + + host + ^webmail\.manufrog\.com$ + name + .* + + target + + + host + manufrog.com + + + host + *.manufrog.com + + + + + Manx Computer Bureau + + ruleset + + name + Manx Computer Bureau + rule + + from + ^http://(mail\.|www\.)?mcb\.net/ + to + https://$1mcb.net/ + + target + + + host + mcb.net + + + host + *.mcb.net + + + + + MapBox + + ruleset + + name + MapBox + rule + + + from + ^http://((?:tiles|api\.tiles|www)\.)?mapbox\.com/ + to + https://$1mapbox.com/ + + + from + ^http://support\.mapbox\.com/ + to + https://mapbox.tenderapp.com/ + + + securecookie + + host + ^mapbox\.tenderapp\.com$ + name + .+ + + target + + + host + mapbox.com + + + host + *.mapbox.com + + + + + Maplesoft.com + + ruleset + + name + Maplesoft.com + rule + + from + ^http://(www\.)?maplesoft\.com/ + to + https://www.maplesoft.com/ + + target + + + host + maplesoft.com + + + host + www.maplesoft.com + + + + + Mapped in Israel.com + + ruleset + + name + Mapped in Israel.com + rule + + from + ^http://(www\.)?mappedinisrael\.com/ + to + https://$1mappedinisrael.com/ + + target + + + host + mappedinisrael.com + + + host + www.mappedinisrael.com + + + + + Mapraider.com (partial) + + ruleset + + name + Mapraider.com (partial) + rule + + + from + ^http://(www\.)?mapraider\.com/+(login|register)(?=$|\?) + to + https://$1mapraider.com/$2/ + + + from + ^http://(www\.)?mapraider\.com/(?=_css/|_images/|_js/|login/|register/) + to + https://$1mapraider.com/ + + + from + ^http://static\.mapraider\.com/ + to + https://www.mapraider.com/ + + + target + + + host + mapraider.com + + + host + *.mapraider.com + + + + + Marathon Bet.com (partial) + + ruleset + + name + Marathon Bet.com (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?marathonbet\.com/ + to + https://www.marathonbet.com/ + + + from + ^http://static\.marathonbet\.com/ + to + https://static.marathonbet.com/ + + + securecookie + + host + ^(?:www)?\.marathonbet\.com$ + name + .+ + + target + + + host + marathonbet.com + + + host + *.marathonbet.com + + + + + Marc-Stevens.nl + + ruleset + + name + Marc-Stevens.nl + rule + + from + ^http://(www\.)?marc-stevens\.nl/ + to + https://$1marc-stevens.nl/ + + target + + + host + marc-stevens.nl + + + host + www.marc-stevens.nl + + + + + March for Babies.org (partial) + + ruleset + + name + March for Babies.org (partial) + rule + + + from + ^http://(?:www\.)?marchforbabies\.org/ + to + https://www.marchforbabies.org/ + + + from + ^http://m\.marchforbabies\.org/ + to + https://m.marchforbabies.org/ + + + securecookie + + host + ^(?:www)?\.marchforbabies\.org$ + name + .+ + + target + + + host + marchforbabies.org + + + host + *.marchforbabies.org + + + + + Marchex (partial) + + ruleset + + exclusion + + pattern + ^http://www\.industrybrains\.com/(?:$|\?) + + name + Marchex (partial) + rule + + + from + ^http://c\.enhance\.com/ + to + https://c.enhance.com/ + + + from + ^http://(?:www\.)?industrybrains\.com/ + to + https://www.industrybrains.com/ + + + from + ^http://(image|jlink|shlink)s\.industrybrains\.com/ + to + https://$1s.industrybrains.com/ + + + from + ^http://((?:dcm|ppc\.adhere|www)\.)?marchex\.com/ + to + https://$1marchex.com/ + + + from + ^http://(?:www\.)?voicestar\.com/[^?]* + to + https://www.marchex.com/call-tracking/analytics/ + + + securecookie + + + host + ^www\.industrybrains\.com$ + name + .+ + + + host + ^ppc\.adhere\.marchex\.com$ + name + .+ + + + host + ^(?:dcm|www)\.marchex\.com$ + name + .+ + + + target + + + host + c.enhance.com + + + host + industrybrains.com + + + host + *.industrybrains.com + + + host + marchex.com + + + host + *.marchex.com + + + host + voicestar.com + + + host + www.voicestar.com + + + + + Marhab (partial) + + ruleset + + name + Marhab (partial) + rule + + from + ^http://(cdn4|fb1|static)\.marhab\.com/ + to + https://$1.marhab.com/ + + securecookie + + host + ^fb1\.marhab\.com$ + name + .+ + + target + + host + *.marhab.com + + + + Marhaba Brighton + + ruleset + + name + Marhaba Brighton + rule + + from + ^http://(www\.)?marhababrighton\.co\.uk/ + to + https://$1marhababrighton.co.uk/ + + securecookie + + host + ^\.marhababrighton\.co\.uk$ + name + .+ + + target + + + host + marhababrighton.co.uk + + + host + *.marhababrighton.co.uk + + + + + MariaDB + + ruleset + + name + MariaDB + rule + + from + ^http://(blog\.|downloads\.|www\.)?mariadb\.org/ + to + https://$1mariadb.org/ + + target + + + host + mariadb.org + + + host + *.mariadb.org + + + + + MariaDB.com + + ruleset + + name + MariaDB.com + rule + + from + ^http://(www\.)?mariadb\.com/ + to + https://$1mariadb.com/ + + target + + + host + mariadb.com + + + host + www.mariadb.com + + + + + Maricopa Community Colleges (partial) + + ruleset + + name + Maricopa Community Colleges (partial) + rule + + + from + ^https?://(?:www\.)?maricopa\.edu/ + to + https://www.maricopa.edu/ + + + from + ^http://(ecourses|eims|google|memo[23]?|student\.sis)\.maricopa\.edu/ + to + https://$1.maricopa.edu/ + + + securecookie + + + host + ^ecourses\.maricopa\.edu$ + name + .* + + + host + ^\.sis\.maricopa\.edu$ + name + ^PSJSESSIONID$ + + + target + + + host + maricopa.edu + + + host + *.maricopa.edu + + + host + *.sis.maricopa.edu + + + + + Marie Claire.co.uk (partial) + + ruleset + + name + Marie Claire.co.uk (partial) + rule + + from + ^http://(?:www\.)?marieclaire\.co\.uk/(css/|favicon\.ico|images/|js/) + to + https://marieclaire.ipcmediasecure.com/$1 + + target + + + host + marieclaire.co.uk + + + host + www.marieclaire.co.uk + + + + + Marie Stopes International Australia + + ruleset + + name + Marie Stopes International Australia + platform + mixedcontent + rule + + + from + ^http://giveto\.mariestopes\.org\.au/ + to + https://giveto.mariestopes.org.au/ + + + from + ^https?://(www\.)?mariestopes\.org\.au/cms/donate\.html($|#|\?) + to + https://giveto.mariestopes.org.au/$2 + + + from + ^https?://(www\.)?mariestopes\.org\.au/cms/sex-appeal\.html($|#|\?) + to + https://www.mariestopes.org.au/how-we-help$2 + + + from + ^https?://(www\.)?mariestopes\.org\.au/cms/Film-Night-Amelia\.html($|#|\?) + to + https://www.mariestopes.org.au/how-you-can-help/campaigns-and-appeals/film-nights$2 + + + from + ^https?://(www\.)?mariestopes\.org\.au/cms/abortion-aid\.html($|#|\?) + to + https://www.mariestopes.org.au/news-room/international-programs/media-releases/item/389-abortion-aid-why-is-rudd-the-last-man-standing$2 + + + from + ^https?://(www\.)?mariestopes\.org\.au/cms/Country-Programs\.html($|#|\?) + to + https://www.mariestopes.org.au/how-we-help/where-we-work$2 + + + from + ^https?://(www\.)?mariestopes\.org\.au/cms/contact-us\.html($|#|\?) + to + https://www.mariestopes.org.au/contact-us$2 + + + from + ^(http://(www\.)?|https://)mariestopes\.org\.au/ + to + https://www.mariestopes.org.au/ + + + securecookie + + host + ^(giveto|www)\.mariestopes\.org\.au$ + name + .+ + + target + + + host + mariestopes.org.au + + + host + giveto.mariestopes.org.au + + + host + www.mariestopes.org.au + + + + + Marijauana Majority + + ruleset + + name + Marijauana Majority + rule + + from + ^http://(www\.)?marijuanamajority\.com/ + to + https://$1marijuanamajority.com/ + + securecookie + + host + ^\.marijuanamajority\.com$ + name + .+ + + target + + + host + marijuanamajority.com + + + host + *.marijuanamajority.com + + + + + Marin Software (partial) + + ruleset + + name + Marin Software (partial) + rule + + + from + ^https?://(?:www\.)?marinsm\.com/ + to + https://www.marinsm.com/ + + + from + ^http://tracker\.marinsm\.com/ + to + https://tracker.marinsm.com/ + + + from + ^http://((?:app|cs|lvw4|pro|rt|www)\.)?marinsoftware\.com/ + to + https://$1marinsoftware.com/ + + + from + ^https?://prosupport\.marinsoftware\.com/generated/ + to + https://generated.zendesk.com/generated/ + + + securecookie + + + host + ^\.marinsm\.com$ + name + ^_msuuid$ + + + host + ^(?:app|lvw4|pro|rt)\.marinsoftware\.com$ + name + .+ + + + target + + + host + marinsm.com + + + host + *.marinsm.com + + + host + marinsoftware.com + + + host + *.marinsoftware.com + + + + + Marine Depot.com (partial) + + ruleset + + name + Marine Depot.com (partial) + rule + + + from + ^http://(?:www\.)?marinedepot\.com/(?=App_Themes/|favicon\.ico) + to + https://www.marinedepot.com/ + + + from + ^http://shop\.marinedepot\.com/ + to + https://shop.marinedepot.com/ + + + target + + + host + marinedepot.com + + + host + *.marinedepot.com + + + + + MarinellaRose.com + + ruleset + + name + MarinellaRose.com + rule + + from + ^http://(www\.)?(bellareed|marinellarose)\.com/ + to + https://$1$2.com/ + + securecookie + + host + ^(?:w*\.)?(?:bellareed|marinellarose)\.com + name + .+ + + target + + + host + bellareed.com + + + host + *.bellareed.com + + + host + marinellarose.com + + + host + *.marinellarose.com + + + + + Mark Monitor + + ruleset + + name + Mark Monitor + rule + + + from + ^http://(?:www\.)?markmonitor\.com/ + to + https://www.markmonitor.com/ + + + from + ^http://corp\.markmonitor\.com/ + to + https://corp.markmonitor.com/ + + + securecookie + + host + ^corp\.markmonitor\.com$ + name + .+ + + target + + + host + markmonitor.com + + + host + *.markmonitor.com + + + + + Mark NG.co.uk + + ruleset + + name + Mark NG.co.uk + rule + + from + ^http://(www\.)?markng\.co\.uk/ + to + https://$1markng.co.uk/ + + securecookie + + host + ^(?:www)?\.markng\.co\.uk$ + name + .+ + + target + + + host + markng.co.uk + + + host + *.markng.co.uk + + + + + MarkRuler (partial) + + ruleset + + name + MarkRuler (partial) + rule + + from + ^http://(\w+\.)?conversionruler\.com/ + to + https://$1conversionruler.com/ + + securecookie + + host + ^(?:.*\.)?conversionruler\.com$ + name + .+ + + target + + + host + conversionruler.com + + + host + *.conversionruler.com + + + + + Markee Dragon + + ruleset + + name + Markee Dragon + rule + + from + ^http://(www\.)?markeedragon\.com/ + to + https://$1markeedragon.com/ + + target + + + host + markeedragon.com + + + host + www.markeedragon.com + + + + + Market Dojo + + ruleset + + name + Market Dojo + rule + + from + ^http://(community\.|content\.|www\.)?marketdojo\.com/ + to + https://$1marketdojo.com/ + + securecookie + + host + ^(?:.*\.)?marketdojo\.com$ + name + .+ + + target + + + host + marketdojo.com + + + host + *.marketdojo.com + + + + + MarketPress.com + + ruleset + + name + MarketPress.com + rule + + from + ^http://(www\.)?marketpress\.com/ + to + https://$1marketpress.com/ + + securecookie + + host + ^\.?marketpress\.com$ + name + .+ + + target + + + host + marketpress.com + + + host + *.marketpress.com + + + + + Marketing G2 + + ruleset + + name + Marketing G2 + rule + + from + ^http://(digitaldoor\.|www\.)?subscriberconcierge\.com/ + to + https://$1subscriberconcierge.com/ + + target + + + host + subscriberconcierge.com + + + host + *.subscriberconcierge.com + + + + + Marketing Matters + + ruleset + + name + Marketing Matters + rule + + from + ^http://(www\.)?meeting-reg\.com/ + to + https://$1meeting-reg.com/ + + securecookie + + host + ^(?:www\.)?meeting-reg\.com$ + name + .+ + + target + + + host + meeting-reg.com + + + host + www.meeting-reg.com + + + + + Marketingoops.com + + ruleset + + name + Marketingoops.com + rule + + from + ^http://(www\.)?marketingoops\.com/ + to + https://www.marketingoops.com/ + + target + + + host + marketingoops.com + + + host + www.marketingoops.com + + + + + Marketo + + ruleset + + name + Marketo + rule + + + from + ^http://(?:www\.)?marketo\.(?:com|net)/ + to + https://www.marketo.com/ + + + from + ^http://(app(?:-\w+)?|b2c-mlm|blog|micro|na-\w+)\.marketo\.com/ + to + https://$1.marketo.com/ + + + from + ^http://app\.marketo\.net/ + to + https://app-a.marketo.com/ + + + from + ^http://(ssl-)?munchkin\.marketo\.(?:com|net)/ + to + https://$1munchkin.marketo.net/ + + + securecookie + + host + ^(?:.*\.)?marketo\.(?:com|net)$ + name + .+ + + target + + + host + marketo.com + + + host + *.marketo.com + + + host + marketo.net + + + host + *.marketo.net + + + + + Marketplace Used (partial) + + ruleset + + name + Marketplace Used (partial) + rule + + from + ^http://(www\.)?marketplace-used\.com/(addons/|geo_templates/|index\.php\?a=10|user_images/) + to + https://$1marketplace-used.com/$2 + + target + + + host + marketplace-used.com + + + host + www.marketplace-used.com + + + + + Marketplace.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?marketplace\.org/(?!favicon\.ico|misc/|modules/|sites/) + + name + Marketplace.org (partial) + rule + + + from + ^http://(?:www\.)?marketplace\.org/ + to + https://a248.e.akamai.net/f/38/9212/7m/www.marketplace.org/ + + + from + ^http://thenumbers\.marketplace\.org/ + to + https://markets.financialcontent.com/ + + + from + ^http://tracker\.financialcontent\.com/ + to + https://tracker.financialcontent.com/ + + + securecookie + + host + ^\.marketplace\.org$ + name + ^WT_FPC$ + + target + + + host + marketplace.org + + + host + *.marketplace.org + + + + + Marketwatch.com + + ruleset + + name + Marketwatch.com + rule + + + from + ^https?://(communitycontent|[is]|static)\.marketwatch\.com/ + to + https://a248.e.akamai.net/f/1731/67675/12h/$1.marketwatch.com/ + + + from + ^https?://i\.mktw\.net/ + to + https://a248.e.akamai.net/f/1731/67675/12h/i.mktw.net/ + + + from + ^http://i\.origin\.mktw\.net/ + to + https://i.origin.mktw.net/ + + + from + ^http://(?:secure\.|www\.)?marketwatch\.com/ + to + https://secure.marketwatch.com/ + + + securecookie + + host + ^\.marketwatch\.com$ + name + .* + + target + + + host + marketwatch.com + + + host + *.marketwatch.com + + + host + i.mktw.net + + + host + i.origin.mktw.net + + + + + Marketwire + + ruleset + + name + Marketwire + rule + + + from + ^http://(www\.)?marketwire\.com/ + to + https://marketwire.com/ + + + from + ^http://media\.marketwire\.com/ + to + https://media.marketwire.com/ + + + target + + + host + marketwire.com + + + host + media.marketwire.com + + + host + www.marketwire.com + + + + + Markit (partial) + + ruleset + + name + Markit (partial) + rule + + + from + ^https?://markit\.com/ + to + https://www.markit.com/ + + + from + ^http://(web\.apps|www)\.markit\.com/ + to + https://$1.markit.com/ + + + from + ^https?://(?:www\.)?feedback\.markit\.com/dashboard/(?:\w+\.(?:cs|j)s|org/) + to + https://www.clicktools.com/dashboard/$1 + + + securecookie + + host + ^.*\.markit\.com$ + name + .+ + + target + + + host + markit.com + + + host + *.markit.com + + + + + Markit On Demand + + ruleset + + name + Markit On Demand + rule + + + from + ^http://((?:cdn\.markit|media\.scottrade|www)\.)?wallst\.com/ + to + https://$1wallst.com/ + + + from + ^http://([\w-]+)\.wsod\.com/ + to + https://$1.wsod.com/ + + + from + ^http://(ad|media)\.wsodcdn\.com/ + to + https://$1.wsodcdn.com/ + + + securecookie + + + host + ^(?:www\.)?wallst\.com$ + name + .+ + + + host + .*\.wsod\.com$ + name + .+ + + + target + + + host + wallst.com + + + host + *.wallst.com + + + host + *.wsod.com + + + host + *.wsodcdn.com + + + + + Marks & Spencer + + ruleset + + name + Marks & Spencer + platform + mixedcontent + rule + + + from + ^http://(?:www(7|10|11)?\.)?marksandspencer\.com/ + to + https://www$1.marksandspencer.com/ + + + from + ^http://(asset[12]|help|m|plana)\.marksandspencer\.com/ + to + https://$1.marksandspencer.com/ + + + securecookie + + host + ^(?:.*\.)?marksandspencer\.com$ + name + .+ + + target + + + host + marksandspencer.com + + + host + *.marksandspencer.com + + + + + Mars One (partial) + + ruleset + + name + Mars One (partial) + rule + + from + ^https?://cdn\.mars-one\.com/ + to + https://d1qhvyunt8f5y3.cloudfront.net/ + + target + + host + cdn.mars-one.com + + + + Martha Stewart (partial) + + ruleset + + name + Martha Stewart (partial) + rule + + + from + ^http://(?:www\.)?marthastewart(?:weddings)?\.com/images//? + to + https://images.marthastewart.com/images/ + + + from + ^https?://images\.(?:marthastewart(?:weddings)?|wholeliving)\.com/ + to + https://images.marthastewart.com/ + + + from + ^http://my\.(marthastewart(?:weddings)?|wholeliving)\.com/ + to + https://my.$1.com/ + + + from + ^https?://metric\.marthastewart\.com/ + to + https://marthacom-marthacomglobal.122.2o7.net/ + + + securecookie + + host + ^my\.marthastewart(weddings)?\.com$ + name + .* + + target + + + host + marthastewart.com + + + host + *.marthastewart.com + + + host + marthastewartweddings.com + + + host + *.marthastewartweddings.com + + + host + *.wholeliving.com + + + + + Martin Eve.com + + ruleset + + name + Martin Eve.com + rule + + from + ^http://(www\.)?martineve\.com/ + to + https://$1martineve.com/ + + target + + + host + martineve.com + + + host + www.martineve.com + + + + + Martin Pitt + + ruleset + + name + Martin Pitt + platform + cacert + rule + + + from + ^http://(www\.)?(franziskawellner|mwellner|piware)\.de/ + to + https://$1$2.de/ + + + from + ^http://(?:(?:www\.)?mh21|mh21\.piware)\.de/ + to + https://mh21.de/ + + + securecookie + + host + ^(?:www\.)?mwellner\.de$ + name + .+ + + target + + + host + www.franziskawellner.de + + + host + mh21.de + + + host + www.mh21.de + + + host + mwellner.de + + + host + www.mwellner.de + + + host + piware.de + + + host + *.piware.de + + + + + Martus + + ruleset + + name + Martus + rule + + from + ^http://(www\.)?martus\.org/ + to + https://$1martus.org/ + + target + + + host + martus.org + + + host + www.martus.org + + + + + Marum.de + + ruleset + + name + Marum.de + rule + + from + ^http://(www\.)?marum\.de/ + to + https://$1marum.de/ + + target + + + host + marum.de + + + host + www.marum.de + + + + + Marvel Heroes.com (partial) + + ruleset + + name + Marvel Heroes.com (partial) + rule + + from + ^http://((?:forums|login|store|www)\.)?marvelheroes\.com/ + to + https://$1marvelheroes.com/ + + securecookie + + host + ^(?:login|\.store)\.marvelheroes\.com$ + name + .+ + + target + + + host + marvelheroes.com + + + host + *.marvelheroes.com + + + + + Marvel Store.com + + ruleset + + exclusion + + pattern + ^http://www\.marvelstore\.com/(?!marvel/store/(?:DSIAjaxOrderItemAdd|DSIProcessWidget)(?:$|\?)|static/) + + name + Marvel Store.com + rule + + + from + ^http://(img|static1|www)\.marvelstore\.com/ + to + https://$1.marvelstore.com/ + + + from + ^http://cdn\.img\.marvelstore\.com/ + to + https://a248.e.akamai.net/f/1073/1/5m/cdn.img.marvelstore.com/ + + + from + ^http://cdn\.s7\.marvelstore\.com/ + to + https://a248.e.akamai.net/f/1467/1/5m/cdn.s7.marvelstore.com/ + + + from + ^http://cdn\.static1\.marvelstore\.com/static/\?\?css/ + to + https://static1.marvelstore.com/static/??css/ + + + from + ^http://cdn\.static1\.marvelstore\.com/ + to + https://a248.e.akamai.net/f/1170/1/5m/cdn.static1.marvelstore.com/ + + + from + ^http://cdn\.static2\.marvelstore\.com/ + to + https://a248.e.akamai.net/f/402/1/5m/cdn.static2.marvelstore.com/ + + + securecookie + + host + ^\.marvelstore\.com$ + name + s_(?:per|ses)s$ + + target + + + host + marvelstore.com + + + host + *.marvelstore.com + + + + + Marvel.com (partial) + + ruleset + + exclusion + + + pattern + ^http://comicstore\.marvel\.com/(?!assets/) + + + pattern + ^http://secure\.marvel\.com/(?:\?.*)?$ + + + pattern + ^http://subscriptions\.marvel\.com/(?!css/|i/|images/|(?:login|store/shippingr)\.asp|script/) + + + name + Marvel.com (partial) + rule + + from + ^http://((?:comicstore|secure|subscriptions|www)\.)?marvel\.com/ + to + https://$1marvel.com/ + + securecookie + + host + ^marvel\.com$ + name + .+ + + target + + + host + marvel.com + + + host + *.marvel.com + + + + + Marvell + + ruleset + + name + Marvell + rule + + + from + ^http://(?:(?:origin-)?www\.)?marvell\.com/ + to + https://origin-www.marvell.com/ + + + from + ^http://extranet\.marvell\.com/ + to + https://extranet.marvell.com/ + + + securecookie + + host + ^origin-www\.marvell\.com$ + name + .* + + target + + + host + marvell.com + + + host + *.marvell.com + + + + + Marxists Internet Archive + + ruleset + + name + Marxists Internet Archive + rule + + + from + ^https?://(?:www\.)?marxists\.org/ + to + https://www.marxists.org/ + + + from + ^https?://(?:www\.)?marx\.org/ + to + https://www.marxists.org/ + + + target + + + host + marxists.org + + + host + www.marxists.org + + + host + marx.org + + + host + www.marx.org + + + + + Maryland Shooters + + ruleset + + name + Maryland Shooters + rule + + from + ^http://(www\.)?mdshooters\.com/ + to + https://$1mdshooters.com/ + + securecookie + + host + ^(?:www\.)?mdshooters\.com$ + name + .+ + + target + + + host + mdshooters.com + + + host + www.mdshooters.com + + + + + Mashable.com (partial) + + ruleset + + name + Mashable.com (partial) + rule + + from + ^http://rack\.(\d)\.mshcdn\.com/ + to + https://a248.e.akamai.net/f/248/6650/10/rack.$1.mshcdn.com/ + + target + + host + *.mshcdn.com + + + + Mashape.com (partial) + + ruleset + + name + Mashape.com (partial) + rule + + from + ^http://(www\.)?mashape\.com/ + to + https://$1mashape.com/ + + securecookie + + host + ^www\.mashape\.com$ + name + .+ + + target + + + host + mashape.com + + + host + www.mashape.com + + + + + Mashery (partial) + + ruleset + + name + Mashery (partial) + rule + + + from + ^http://developer\.mashery\.com/files/ + to + https://developer.mashery.com/files/ + + + from + ^https?://content\.developer\.mashery\.com/ + to + https://s3.amazonaws.com/content.developer.mashery.com/ + + + from + ^http://secure\.mashery\.com/ + to + https://secure.mashery.com/ + + + securecookie + + host + ^secure\.mashery\.com$ + name + .* + + target + + + host + *.mashery.com + + + host + content.developer.mashery.com + + + + + Mashery clients + + ruleset + + name + Mashery clients + rule + + from + ^https?://dev(?:eloper\.netflix\.|\.pipl\.com)/public/Mashery/ + to + https://secure.mashery.com/public/Mashery/ + + target + + + host + developer.netflix.com + + + host + dev.pipl.com + + + + + Mass Relevance + + ruleset + + name + Mass Relevance + rule + + + from + ^http://(api\.|secure-up\.)?massrelevance\.com/ + to + https://$1massrelevance.com/ + + + from + ^https?://up\.massrelevance\.com/ + to + https://d1rts87l9itzp2.cloudfront.net/ + + + from + ^https?://(?:www\.)?tweetriver\.com/ + to + https://tweetriver.com/ + + + from + ^http://proxy\.tweetriver\.com/ + to + https://proxy.tweetriver.com/ + + + target + + + host + massrelevance.com + + + host + *.massrelevance.com + + + host + tweetriver.com + + + host + *.tweetriver.com + + + + + MassLive.com (partial) + + ruleset + + name + MassLive.com (partial) + rule + + + from + ^http://marketingsolutions\.masslive\.com/ + to + https://marketingsolutions.masslive.com/ + + + from + ^http://media\.masslive\.com/(?!(?:(?:design/alpha/css/nocommentbox|design/baseline/css/community\.min|static/common/css/global\.min)\.css).+\.css) + to + https://a248.e.akamai.net/f/68/9305/8/media.masslive.com/ + + + target + + host + *.masslive.com + + + + Massachusetts General Hospital OCD & Related Disorders Program + + ruleset + + name + Massachusetts General Hospital OCD & Related Disorders Program + rule + + from + ^http://(www\.)?mghocd\.org/ + to + https://mghocd.org/ + + target + + + host + mghocd.org + + + host + www.mghocd.org + + + + + Massachusetts Institute of Technology (partial) + + ruleset + + name + Massachusetts Institute of Technology (partial) + rule + + + from + ^http://mit\.edu/ + to + https://mit.edu/ + + + from + ^http://(alum|alumsso|athena10|ca|(?:groups|pdos|people|projects)\.csail|debathena|future|giving|gsc|idp|ist|kb|librar(?:ies|y)|lids|linerva|mail|immersion\.media|mit150|newsoffice|odge|orgchart|pgp|picker|(?:www\.|zyan\.)?scripts|sipb|slice|stellar|techtv|wayf|webpub|whereis|wikis)\.mit\.edu/ + to + https://$1.mit.edu/ + + + from + ^http://ideabank\.mit\.edu/ + to + https://future.mit.edu/ + + + from + ^http://(?:www\.)?(csail|mitpress)\.mit\.edu/ + to + https://mitpress.mit.edu/ + + + from + ^http://scripts\.mit\.edu:444/ + to + https://scripts.mit.edu:444/ + + + from + ^http://(www\.)?mitpressjournals\.org/((?:entityImage|na101|sda|templates|userimages)/|action/(?:registration|showLogin)$) + to + https://www.mitpressjournals.org/$2 + + + securecookie + + + host + ^(?:alum|alumsso|athena10|ca|debathena|giving|gsc|idp|kb|lids|mitpress|scripts|stellar|techtv|webpub|wikis).mit\.edu$ + name + .* + + + host + ^wayf\.mit\.edu$ + name + .* + + + target + + + host + mit.edu + + + host + *.mit.edu + + + host + www.*.mit.edu + + + host + people.csail.mit.edu + + + host + mitpressjournals.org + + + host + www.mitpressjournals.org + + + + + Massage Magazine + + ruleset + + name + Massage Magazine + platform + mixedcontent + rule + + from + ^http://(?:www\.)?massagemag\.com/ + to + https://www.massagemag.com/ + + securecookie + + host + ^(.*\.)?massagemag\.com$ + name + .* + + target + + + host + massagemag.com + + + host + www.massagemag.com + + + + + Massdrop.com + + ruleset + + name + Massdrop.com + rule + + from + ^http://(www\.)?massdrop\.com/ + to + https://$1massdrop.com/ + + securecookie + + host + ^www\.massdrop\.com$ + name + .+ + + target + + + host + massdrop.com + + + host + www.massdrop.com + + + + + Master Spas WI.com + + ruleset + + name + Master Spas WI.com + rule + + from + ^http://(www\.)?masterspaswi\.com/ + to + https://$1masterspaswi.com/ + + securecookie + + host + ^\.?masterspaswi\.com$ + name + .+ + + target + + + host + masterspaswi.com + + + host + *.masterspaswi.com + + + + + MasterCard + + ruleset + + name + MasterCard + rule + + + from + ^https?://(?:www\.)?mastercard\.com/ + to + https://www.mastercard.com/ + + + from + ^http://newsroom\.mastercard\.com/ + to + https://newsroom.mastercard.com/ + + + from + ^http://smetrics\.mastercardintl\.com/ + to + https://smetrics.mastercardintl.com/ + + + from + ^https?://(?:www\.)?securecode\.com/ + to + https://www.securecode.com/ + + + securecookie + + + host + ^.*\.mastercard\.com$ + name + .+ + + + host + ^www\.securecode\.com$ + name + .+ + + + target + + + host + mastercard.com + + + host + *.mastercard.com + + + host + smetrics.mastercardintl.com + + + host + securecode.com + + + host + www.securecode.com + + + + + MasterNet + + ruleset + + name + MasterNet + rule + + from + ^http://(www\.)?masternet\.org/ + to + https://$1masternet.org/ + + securecookie + + host + ^(?:www)?\.masternet\.org$ + name + .+ + + target + + + host + masternet.org + + + host + *.masternet.org + + + + + Mastermind + + ruleset + + name + Mastermind + rule + + from + ^http://(secure2\.|www\.)?mastermindpro\.com/ + to + https://$1mastermindpro.com/ + + securecookie + + host + ^www\.mastermindpro\.com$ + name + .+ + + target + + + host + mastermindpro.com + + + host + *.mastermindpro.com + + + + + Mastozytose-Schweiz.org + + ruleset + + name + Mastozytose-Schweiz.org + rule + + from + ^http://(www\.)?mastozytose-schweiz\.org/ + to + https://$1mastozytose-schweiz.org/ + + securecookie + + host + ^\.?mastozytose-schweiz\.org$ + name + .+ + + target + + + host + mastozytose-schweiz.org + + + host + *.mastozytose-schweiz.org + + + + + Masty.nl + + ruleset + + name + Masty.nl + rule + + from + ^http://(www\.)?masty\.nl/ + to + https://$1masty.nl/ + + securecookie + + host + ^\.masty\.nl$ + name + .+ + + target + + + host + masty.nl + + + host + *.masty.nl + + + + + Match.com (partial) + + ruleset + + name + Match.com (partial) + rule + + + from + ^http://(?:www\.)?match\.com/(?=favicon\.ico) + to + https://www.match.com/ + + + from + ^http://images\.match\.com/ + to + https://a248.e.akamai.net/f/419/396/4/images.match.com/ + + + from + ^http://secure2\.intl\.match\.com/ + to + https://secure2.intl.match.com/ + + + securecookie + + host + ^secure2\.intl\.match\.com$ + name + .+ + + target + + + host + match.com + + + host + *.match.com + + + + + MateLife + + ruleset + + name + MateLife + rule + + from + ^http://(assets\.|static\.|www\.)?matelife\.net/ + to + https://$1matelife.net/ + + securecookie + + host + ^\.matelife\.net$ + name + .+ + + target + + + host + matelife.net + + + host + *.matelife.net + + + + + Materiel.net + + ruleset + + name + Materiel.net + platform + mixedcontent + rule + + + from + ^http://materiel\.net/ + to + https://www.materiel.net/ + + + from + ^http://([^@/:]*)\.materiel\.net/ + to + https://$1.materiel.net/ + + + target + + + host + *.materiel.net + + + host + materiel.net + + + + + MathJax (partial) + + ruleset + + name + MathJax (partial) + rule + + from + ^http://(cdn\.)?mathjax\.org/ + to + https://$1mathjax.org/ + + securecookie + + host + ^\.?mathjax\.org$ + name + ^__cfduid$ + + target + + + host + mathjax.org + + + host + *.mathjax.org + + + + + MathOverflow.net + + ruleset + + name + MathOverflow.net + rule + + from + ^http://(?:(meta\.)|www\.)?mathoverflow\.net/ + to + https://$1mathoverflow.net/ + + securecookie + + host + ^\.(?:meta\.)?mathoverflow\.net$ + name + .+ + + target + + + host + mathoverflow.net + + + host + *.mathoverflow.net + + + + + MathWorks.com + + ruleset + + name + MathWorks.com + rule + + from + ^http://(?:www\.)?mathworks\.com/ + to + https://www.mathworks.com/ + + target + + + host + mathworks.com + + + host + www.mathworks.com + + + + + Mathias Bynens.be + + ruleset + + name + Mathias Bynens.be + rule + + from + ^http://(www\.)?mathiasbynens\.be/ + to + https://$1mathiasbynens.be/ + + target + + + host + mathiasbynens.be + + + host + www.mathiasbynens.be + + + + + Mathias-Kettner.de + + ruleset + + name + Mathias-Kettner.de + rule + + from + ^http://(?:www\.)?mathias-kettner\.de/ + to + https://mathias-kettner.de/ + + target + + + host + mathias-kettner.de + + + host + www.mathias-kettner.de + + + + + Matkahuolto + + ruleset + + name + Matkahuolto + rule + + from + ^http://(?:www\.)?matkahuolto\.info/ + to + https://www.matkahuolto.info/ + + securecookie + + host + ^www\.matkahuolto\.info$ + name + .+ + + target + + + host + matkahuolto.info + + + host + www.matkahuolto.info + + + + + Matomy Market + + ruleset + + name + Matomy Market + rule + + from + ^http://network\.adsmarket\.com/ + to + https://network.adsmarket.com/ + + securecookie + + host + ^\.?network\.adsmarket\.com$ + name + .+ + + target + + host + *.adsmarket.com + + + + Matrix Group + + ruleset + + name + Matrix Group + rule + + + from + ^http://matrixgroup\.net/.* + to + https://www.matrixgroup.net/ + + + from + ^http://(clients|www)\.matrixgroup\.net/ + to + https://$1.matrixgroup.net/ + + + securecookie + + host + ^www\.matrixgroup\.net$ + name + .+ + + target + + + host + matrixgroup.net + + + host + *.matrixgroup.net + + + + + Matrox (partial) + + ruleset + + name + Matrox (partial) + rule + + from + ^http://(www\.)?matrox\.com/video/media/ + to + https://$1matrox.com/video/media/ + + target + + + host + matrox.com + + + host + www.matrox.com + + + + + Matt Drollette + + ruleset + + name + Matt Drollette + rule + + from + ^http://(www\.)?drollette\.com/ + to + https://$1drollette.com/ + + securecookie + + host + ^\.drollette\.com$ + name + .+ + + target + + + host + drollette.com + + + host + *.drollette.com + + + + + MattMccutchen.net + + ruleset + + name + MattMccutchen.net + platform + firefox + rule + + from + ^http://(www\.)?mattmccutchen\.net/ + to + https://mattmccutchen.net/ + + securecookie + + host + ^mattmccutchen\.net$ + name + .+ + + target + + + host + mattmccutchen.net + + + host + www.mattmccutchen.net + + + + + Matthews Marking.com (partial) + + ruleset + + name + Matthews Marking.com (partial) + rule + + from + ^http://(www\.)?matthewsmarking\.com/(?=css/|distributors(?:$|[?/])|favicon\.ico|images/|images_old/|wp-content/|wp-includes/) + to + https://$1matthewsmarking.com/ + + target + + + host + matthewsmarking.com + + + host + www.matthewsmarking.com + + + + + MauivaAirCruise.com (partial) + + ruleset + + name + MauivaAirCruise.com (partial) + rule + + from + ^http://(www\.)?mauivaaircruise\.com/(misc|modules|profiles|sites)/ + to + https://$1mauivaaircruise.com/$2/ + + target + + + host + mauivaaircruise.com + + + host + www.mauivaaircruise.com + + + + + Max Hamburgare + + ruleset + + name + Max Hamburgare + rule + + from + ^http://(www\.)?max\.se/ + to + https://www.max.se/ + + target + + + host + www.max.se + + + host + max.se + + + + + Max Kitap.com + + ruleset + + name + Max Kitap.com + rule + + from + ^http://(www\.)?maxkitap\.com/ + to + https://$1maxkitap.com/ + + securecookie + + host + ^(?:www)?\.maxkitap\.com$ + name + .+ + + target + + + host + maxkitap.com + + + host + *.maxkitap.com + + + + + MaxCDN.com (partial) + + ruleset + + name + MaxCDN.com (partial) + rule + + + from + ^http://(?:www\.)?maxcdn\.com/ + to + https://www.maxcdn.com/ + + + from + ^http://blog\.maxcdn\.com/wp-content/plugins/lytebox/ + to + https://www.maxcdn.com/wp-content/plugins/lytebox/ + + + from + ^http://blog\.maxcdn\.com/wp-content/themes/Akdesigner2/ + to + https://www.maxcdn.com/wp-content/themes/AKD2/ + + + from + ^http://(cp|rws|secure|secure-cdn)\.maxcdn\.com/ + to + https://$1.maxcn.com/ + + + from + ^http://status\.maxcdn\.com/ + to + https://maxcdn.statuspage.io/ + + + securecookie + + + host + ^\.(?:[\w-]\.)?maxcdn\.com$ + name + ^optimizely\w+$ + + + host + ^secure(?:-cdn)?\.maxcdn\.com$ + name + .+ + + + target + + + host + maxcdn.com + + + host + *.maxcdn.com + + + + + MaxMind (partial) + + ruleset + + name + MaxMind (partial) + rule + + from + ^http://((?:dev|geoip\d?|geolite|j|minfraud|www)\.)?maxmind\.com/ + to + https://$1maxmind.com/ + + securecookie + + host + ^www\.maxmind\.com$ + name + .* + + target + + + host + maxmind.com + + + host + *.maxmind.com + + + + + MaxSpeed CDN.com + + ruleset + + name + MaxSpeed CDN.com + rule + + from + ^http://(on\.|www\.)?maxspeedcdn\.com/ + to + https://$1maxspeedcdn.com/ + + securecookie + + host + ^\.maxspeedcdn\.com$ + name + .+ + + target + + + host + maxspeedcdn.com + + + host + *.maxspeedcdn.com + + + + + Maxim Integrated.com (partial) + + ruleset + + name + Maxim Integrated.com (partial) + rule + + + from + ^http://(?:www\.)?maxim-ic\.com/ + to + https://www.maxim-ic.com/ + + + from + ^http://memcenter\.maximintegrated\.com/ + to + https://memcenter.maximintegrated.com/ + + + target + + + host + maxim-ic.com + + + host + www.maxim-ic.com + + + host + memcenter.maximintegrated.com + + + + + Maxymiser (partial) + + ruleset + + name + Maxymiser (partial) + rule + + + from + ^http://(cg-global\.|hub\.|www\.)?maxymiser\.com/ + to + https://$1maxymiser.com/ + + + from + ^http://service\.maxymiser\.net/ + to + https://service.maxymiser.net/ + + + securecookie + + host + ^.*\.maxymiser\.com$ + name + .+ + + target + + + host + maxymiser.com + + + host + *.maxymiser.com + + + host + *.www.maxymiser.com + + + host + service.maxymiser.net + + + + + May First/People Link (partial) + + ruleset + + exclusion + + pattern + ^http://didier\. + + name + May First/People Link (partial) + rule + + + from + ^http://(?:www\.)?mayfirst\.org/ + to + https://mayfirst.org/ + + + from + ^http://(id|lists|live|members|roundcube|support|webmail)\.mayfirst\.org/ + to + https://$1.mayfirst.org/ + + + securecookie + + host + ^(.*\.)?mayfirst\.org$ + name + .* + + target + + + host + mayfirst.org + + + host + *.mayfirst.org + + + + + MayFlower Software (partial) + + ruleset + + name + MayFlower Software (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?maysoft\.com/ + to + https://maysoft.com/ + + + from + ^http://(www\.)?notesappstore\.com/ + to + https://www.notesappstore.com/ + + + target + + + host + maysoft.com + + + host + www.maysoft.com + + + host + notesappstore.com + + + host + www.notesappstore.com + + + + + Mayday.us + + ruleset + + name + Mayday.us + rule + + from + ^http://((?:auth|my|www)\.)?mayday\.us/ + to + https://$1mayday.us/ + + securecookie + + host + ^\.mayday\.us$ + name + .+ + + target + + + host + mayday.us + + + host + *.mayday.us + + + + + Mayo Clinic (partial) + + ruleset + + name + Mayo Clinic (partial) + platform + mixedcontent + rule + + + from + ^https?://mayoclinic\.com/ + to + https://www.mayoclinic.com/ + + + from + ^http://(healthletter|(?:book)?store|www)\.mayoclinic\.com/ + to + https://$1.mayoclinic.com/ + + + from + ^http://(www\.)?mayoclinic\.org/ + to + https://$1mayoclinic.org/ + + + securecookie + + host + ^(?:.*\.)?mayoclinic\.(?:com|org)$ + name + .+ + + target + + + host + mayoclinic.com + + + host + *.mayoclinic.com + + + host + mayoclinic.org + + + host + *.mayoclinic.org + + + + + McAfee MX Logic + + ruleset + + name + McAfee MX Logic + rule + + + from + ^http://(?:www\.)?mxlogic\.com/ + to + https://www.mxlogic.com/ + + + from + ^http://([^\.]\.)?(console|portal)\.mxlogic\.com/ + to + https://$1$2.mxlogic.com/ + + + securecookie + + host + ^(.*\.)?mxlogic\.com$ + name + .* + + target + + + host + mxlogic.com + + + host + *.mxlogic.com + + + + + McAfee SECURE + + ruleset + + name + McAfee SECURE + rule + + from + ^http://(images\.|www\.)?mcafeesecure\.com/ + to + https://$1mcafeesecure.com/ + + securecookie + + host + ^(?:www\.)?mcafeesecure\.com$ + name + .+ + + target + + + host + mcafeesecure.com + + + host + *.mcafeesecure.com + + + + + McAffee Mobile Security + + ruleset + + name + McAffee Mobile Security + rule + + from + ^http://(?:www\.)?mcafeemobilesecurity\.com/ + to + https://www.mcafeemobilesecurity.com/ + + securecookie + + host + ^www\.mcafeemobilesecurity\.com$ + name + .+ + + target + + + host + mcafeemobilesecurity.com + + + host + www.mcafeemobilesecurity.com + + + + + McClatchy Interactive.com (partial) + + ruleset + + name + McClatchy Interactive.com (partial) + rule + + from + ^http://media\.mcclatchyinteractive\.com/ + to + https://media.mcclatchyinteractive.com/ + + target + + host + media.mcclatchyinteractive.com + + + + McClatchy.com (partial) + + ruleset + + name + McClatchy.com (partial) + rule + + from + ^http://subscriberservices\.mcclatchy\.com/ + to + https://subscriberservices.mcclatchy.com/ + + securecookie + + host + ^subscriberservices\.mcclatchy\.com$ + name + .+ + + target + + host + subscriberservices.mcclatchy.com + + + + McEvoy Group (partial) + + ruleset + + name + McEvoy Group (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?chroniclebooks\.com/ + to + https://$1chroniclebooks.com/ + + securecookie + + host + ^(.*\.)?chroniclebooks.com$ + name + .* + + target + + + host + chroniclebooks.com + + + host + *.chroniclebooks.com + + + + + McMaster University + + ruleset + + name + McMaster University + rule + + from + ^http://(www\.)?mcmaster\.ca/ + to + https://$1mcmaster.ca/ + + target + + + host + mcmaster.ca + + + host + www.mcmaster.ca + + + + + McWhirter.com.au + + ruleset + + name + McWhirter.com.au + rule + + from + ^http://(?:www\.)?mcwhirter\.com\.au/ + to + https://mcwhirter.com.au/ + + target + + + host + mcwhirter.com.au + + + host + www.mcwhirter.com.au + + + + + Mean Stinks + + ruleset + + name + Mean Stinks + rule + + from + ^http://(www\.)?meanstinks\.com/ + to + https://$1meanstinks.com/ + + securecookie + + host + ^\.meanstinks\.com$ + name + .+ + + target + + + host + meanstinks.com + + + host + *.meanstinks.com + + + + + Meat and Livestock Australia + + ruleset + + name + Meat and Livestock Australia + rule + + from + ^http://(?:www\.)?mla\.com\.au/ + to + https://www.mla.com.au/ + + target + + + host + mla.com.au + + + host + *.mla.com.au + + + + + Mederra Group (partial) + + ruleset + + name + Mederra Group (partial) + rule + + from + ^http://(?:www\.)?digipaper\.fi/ + to + https://www.digipaper.fi/ + + securecookie + + host + ^www\.digipaper\.fi$ + name + .* + + target + + + host + digipaper.fi + + + host + www.digipaper.fi + + + + + Medgadget + + ruleset + + name + Medgadget + rule + + + from + ^http://(www\.)?medgadget\.com/ + to + https://$1medgadget.com/ + + + from + ^http://cdn\.medgadget\.com/ + to + https://dsuktxmmtzwrn.cloudfront.net/ + + + target + + + host + medgadget.com + + + host + *.medgadget.com + + + + + MediPreis.de + + ruleset + + name + MediPreis.de + rule + + from + ^http://(www\.)?medipreis\.de/ + to + https://$1medipreis.de/ + + securecookie + + host + ^www\.medipreis\.de$ + name + .+ + + target + + + host + medipreis.de + + + host + www.medipreis.de + + + + + MediStack.com + + ruleset + + name + MediStack.com + rule + + from + ^http://(www\.)?medistack\.com/ + to + https://$1medistack.com/ + + securecookie + + host + ^\.medistack\.com$ + name + .+ + + target + + + host + medistack.com + + + host + *.medistack.com + + + + + Media Factory + + ruleset + + name + Media Factory + rule + + from + ^http://(\w+\.)?mediafactory\.fm/ + to + https://$1mediafactory.fm/ + + securecookie + + host + ^(?:www\.)?mediafactory\.fm$ + name + .+ + + target + + + host + mediafactory.fm + + + host + *.mediafactory.fm + + + + + Media Storehouse (partial) + + ruleset + + name + Media Storehouse (partial) + rule + + + from + ^http://(?:static|www)\.mediastorehouse\.com/ + to + https://secure.mediastorehouse.com/ + + + from + ^http://(?:www\.)?mediastorehouse\.net/ + to + https://secure.mediastorehouse.com/ + + + securecookie + + host + ^secure\.mediastorehouse\.com$ + name + .* + + target + + + host + mediastorehouse.com + + + host + *.mediastorehouse.com + + + host + mediastorehouse.net + + + host + www.mediastorehouse.net + + + + + Media Temple (partial) + + ruleset + + name + Media Temple (partial) + platform + mixedcontent + rule + + + from + ^http://(s\d+\.)?gridserver\.com/ + to + https://$1gridserver.com/ + + + from + ^http://mediatemple\.net/ + to + https://mediatemple.net/ + + + from + ^http://(ac|affiliate|api|bin|forum|www)\.mediatemple\.net/ + to + https://$1.mediatemple.net/ + + + from + ^http://(?:origin|s\d)\.mt-cdn\.net/ + to + https://www.mediatemple.net/ + + + securecookie + + host + .*\.mediatemple\.net$ + name + .* + + target + + + host + gridserver.com + + + host + *.gridserver.com + + + host + mediatemple.net + + + host + *.mediatemple.net + + + host + *.mt-cdn.net + + + + + MediaHub (partial) + + ruleset + + name + MediaHub (partial) + rule + + + from + ^https?://mail\.mediahub\.com/(?:.*) + to + https://mail.google.com/a/mediahub.com + + + from + ^http://my\.mediahub\.com/ + to + https://my.mediahub.com/ + + + target + + host + *.mediahub.com + + + + MediaInfo + + ruleset + + name + MediaInfo + rule + + from + ^http://(www\.)?mediaarea\.net/ + to + https://$1mediaarea.net/ + + target + + + host + mediaarea.net + + + host + www.mediaarea.net + + + + + MediaLayer.com (partial) + + ruleset + + name + MediaLayer.com (partial) + rule + + + from + ^http://(clients|support)\.medialayer\.com/ + to + https://$1.medialayer.com/ + + + from + ^http://(www\.)?medialayer\.net/ + to + https://www.medialayer.net/ + + + target + + + host + clients.medialayer.com + + + host + support.medialayer.com + + + host + medialayer.net + + + host + www.medialayer.net + + + + + MediaMath + + ruleset + + name + MediaMath + platform + mixedcontent + rule + + + from + ^http://(action|akamai|pixel|sync)\.mathtag\.com/ + to + https://$1.mathtag.com/ + + + from + ^http://(t1\.|www\.)?mediamath\.com/ + to + https://$1mediamath.com/ + + + securecookie + + + host + ^\.mathtag\.com$ + name + .* + + + host + ^(.*\.)?mediamath\.com$ + name + .* + + + target + + + host + *.mathtag.com + + + host + mediamath.com + + + host + t1.mediamath.com + + + host + www.mediamath.com + + + + + MediaMatters.org (partial) + + ruleset + + exclusion + + pattern + ^http://mediamatters\.org/static/stylesheets/ + + name + MediaMatters.org (partial) + rule + + from + ^http://([csw]\w+\.)?mediamatters\.org/static/ + to + https://s3.amazonaws.com/s3.mediamatters.org/static/ + + target + + + host + mediamatters.org + + + host + cloudfront.mediamatters.org + + + host + s3.mediamatters.org + + + host + www.mediamatters.org + + + + + MediaMind (partial) + + ruleset + + name + MediaMind (partial) + rule + + + from + ^http://(?:www\.)?eyeblasterwiz\.com/ + to + https://www.eyeblasterwiz.com/ + + + from + ^http://(creativezone|demo|origin\.demo|platform|sandbox)\.mediamind\.com/ + to + https://$1.mediamind.com/ + + + from + ^http://a\.pgtb\.me/ + to + https://a.pgtb.me/ + + + securecookie + + host + ^(?:creativezone|platform)\.mediamind\.com$ + name + .* + + target + + + host + *.mediamind.com + + + host + a.pgtb.me + + + + + MediaNet (partial) + + ruleset + + name + MediaNet (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?mndigital\.com/ + to + https://$1mndigital.com/ + + + from + ^http://images\.musicnet\.com/ + to + https://images.musicnet.com/ + + + securecookie + + host + ^www\.mndigital\.com$ + name + .* + + target + + + host + mndigital.com + + + host + www.mndigital.com + + + host + images.musicnet.com + + + + + MediaNews Group (partial) + + ruleset + + name + MediaNews Group (partial) + rule + + from + ^http://weather\.mercurynews\.com/ + to + https://www.weatherunderground.com/ + + target + + host + weather.mercurynews.com + + + + MediaPost (partial) + + ruleset + + name + MediaPost (partial) + rule + + + from + ^http://(www\.)?mediapost\.com/(favicon\.ico|register(?:/?$|\?)) + to + https://$1mediapost.com/$2 + + + from + ^https?://media\.mediapost\.com/ + to + https://s3.amazonaws.com/media.mediapost.com/ + + + target + + + host + mediapost.com + + + host + *.mediapost.com + + + + + MediaSpan (partial) + + ruleset + + name + MediaSpan (partial) + rule + + from + ^http://(assets\.|www\.)?(?:fimc\.net|mediaspanonline\.com)/ + to + https://$1mediaspanonline.com/ + + securecookie + + host + ^(?:.+\.)?mediaspanonline\.com$ + name + .+ + + target + + + host + fimc.net + + + host + www.fimc.net + + + host + mediaspanonline.com + + + host + *.mediaspanonline.com + + + + + MediaWorks (partial) + + ruleset + + name + MediaWorks (partial) + rule + + from + ^http://(cdn|static)\.mediaworks\.co\.nz/ + to + https://$1.mediaworks.co.nz/ + + securecookie + + host + ^(?:cdn|static)\.mediaworks\.co\.nz$ + name + .+ + + target + + host + *.mediaworks.co.nz + + + + Mediabistro + + ruleset + + name + Mediabistro + rule + + from + ^http://(oxs?\.|www\.)?mediabistro\.com/ + to + https://$1mediabistro.com/ + + securecookie + + host + ^(?:.*\.)?mediabistro\.com$ + name + .+ + + target + + + host + mediabistro.com + + + host + *.mediabistro.com + + + + + Mediacru.sh + + ruleset + + name + Mediacru.sh + rule + + from + ^http://((?:blog|cdn|www)\.)?mediacru\.sh/ + to + https://$1mediacru.sh/ + + securecookie + + host + ^mediacru\.sh$ + name + .+ + + target + + + host + mediacru.sh + + + host + *.mediacru.sh + + + + + Medialand.ru (partial) + + ruleset + + name + Medialand.ru (partial) + rule + + from + ^http://mediamir\.medialand\.ru/ + to + https://mediamir.medialand.ru/ + + securecookie + + host + ^mediamir\.medialand\.ru$ + name + .+ + + target + + host + mediamir.medialand.ru + + + + Medialinx Academy.de (partial) + + ruleset + + name + Medialinx Academy.de (partial) + rule + + from + ^http://(?:www\.)?medialinx-academy\.de/sites/ + to + https://www.medialinx-academy.de/sites/ + + target + + + host + medialinx-academy.de + + + host + www.medialinx-academy.de + + + + + Medialoot.com + + ruleset + + name + Medialoot.com + rule + + from + ^http://(www\.)?medialoot\.com/ + to + https://$1medialoot.com/ + + securecookie + + host + ^\.?medialoot\.com$ + name + .+ + + target + + + host + medialoot.com + + + host + *.medialoot.com + + + + + Mediamarkt.se + + ruleset + + name + Mediamarkt.se + rule + + from + ^http://(?:www\.)?mediamarkt\.se/ + to + https://www.mediamarkt.se/ + + target + + + host + mediamarkt.se + + + host + www.mediamarkt.se + + + + + Median + + ruleset + + name + Median + rule + + from + ^http://audit\.median\.hu/ + to + https://audit.median.hu/ + + securecookie + + host + ^audit\.median\.hu$ + name + .* + + target + + host + audit.median.hu + + + + Mediant + + ruleset + + name + Mediant + rule + + from + ^http://(www\.)?mandiant\.net/ + to + https://$1mandiant.net/ + + securecookie + + host + ^(?:w*\.)?mandiant\.net$ + name + .+ + + target + + + host + mandiant.net + + + host + *.mandiant.net + + + + + Mediaquest Corp.com + + ruleset + + name + Mediaquest Corp.com + rule + + from + ^http://(www\.)?mediaquestcorp\.com/ + to + https://$1mediaquestcorp.com/ + + securecookie + + host + ^(?:www)?\.mediaquestcorp\.com$ + name + .+ + + target + + + host + mediaquestcorp.com + + + host + *.mediaquestcorp.com + + + + + Mediate.com + + ruleset + + name + Mediate.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?mediate\.com/ + to + https://www.mediate.com/ + + securecookie + + host + ^(.*\.)mediate\.com$ + name + .* + + target + + + host + mediate.com + + + host + www.mediate.com + + + + + Mediaxus.com + + ruleset + + name + Mediaxus.com + rule + + from + ^http://(www\.)?mediaxus\.com/ + to + https://$1mediaxus.com/ + + securecookie + + host + ^\.mediaxus\.com4 + name + .+ + + target + + + host + mediaxus.com + + + host + *.mediaxus.com + + + + + Medibank Health Solutions + + ruleset + + name + Medibank Health Solutions + rule + + from + ^http://(?:www\.)?medibankhealth\.com\.au/ + to + https://www.medibankhealth.com.au/ + + target + + + host + medibankhealth.com.au + + + host + *.medibankhealth.com.au + + + + + MedicAlert + + ruleset + + name + MedicAlert + rule + + from + ^http://(?:www\.)?medicalert\.org/ + to + https://www.medicalert.org/ + + target + + + host + medicalert.org + + + host + www.medicalert.org + + + + + Medical Express + + ruleset + + name + Medical Express + platform + mixedcontent + rule + + + from + ^http://(www\.)?medicalxpress\.com/ + to + https://$1medicalxpress.com/ + + + from + ^https?://m\.ph-cdn\.com/tmpl/ + to + https://medicalxpress.com/tmpl/ + + + target + + + host + medicalxpress.com + + + host + www.medicalxpress.com + + + host + m.ph-cdn.com + + + + + Medical Jane + + ruleset + + name + Medical Jane + rule + + from + ^http://(www\.)?medicaljane\.com/ + to + https://$1medicaljane.com/ + + securecookie + + host + ^\.medicaljane\.com$ + name + .+ + + target + + + host + medicaljane.com + + + host + *.medicaljane.com + + + + + Medical Treatments Management + + ruleset + + name + Medical Treatments Management + rule + + + from + ^http://(www\.)?m(?:edical-treatments-management|tmweb)\.com/ + to + https://$1medical-treatments-management.com/ + + + from + ^http://(www\.)?mtmweb\.biz/ + to + https://$1mtmweb.biz/ + + + securecookie + + host + ^(?:.*\.)?m(?:edical-treatments-management|tmweb)\.com$ + name + .+ + + target + + + host + medical-treatments-management.com + + + host + *.medical-treatments-management.com + + + host + mtmweb.biz + + + host + www.mtmweb.biz + + + host + mtmweb.com + + + host + www.mtmweb.com + + + + + Medici-manager.com + + ruleset + + name + Medici-manager.com + rule + + from + ^http://(www\.)?medici-manager\.com/ + to + https://$1medici-manager.com/ + + target + + + host + medici-manager.com + + + host + www.medici-manager.com + + + + + MediciGlobal.com (false MCB) + + ruleset + + name + MediciGlobal.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?mediciglobal\.com/ + to + https://$1mediciglobal.com/ + + securecookie + + host + ^mediciglobal\.com$ + name + .+ + + target + + + host + mediciglobal.com + + + host + www.mediciglobal.com + + + + + MediciGlobal.com (partial) + + ruleset + + exclusion + + pattern + ^http://mediciglobal\.com/+(?!css/|favicon\.ico|images/|js/) + + name + MediciGlobal.com (partial) + rule + + from + ^http://(stats\.|www\.)?mediciglobal\.com/ + to + https://$1mediciglobal.com/ + + target + + + host + mediciglobal.com + + + host + *.mediciglobal.com + + + + + MedicineNet.com (partial) + + ruleset + + exclusion + + + pattern + ^http://images\.medicinenet\.com/css/ + + + pattern + ^http://(?:www\.)?medicinenet\.com/(?!images/) + + + name + MedicineNet.com (partial) + rule + + from + ^http://(?:images\.|(www\.))?medicinenet\.com/ + to + https://$1medicinenet.com/ + + target + + + host + medicinenet.com + + + host + *.medicinenet.com + + + + + MedicinesComplete (partial) + + ruleset + + exclusion + + pattern + ^http://www\.medicinescomplete\.com/(?!about/(?:269|images|style)/|mc(?:$|\?|/)|pdf/) + + name + MedicinesComplete (partial) + rule + + + from + ^http://medicinescomplete\.com/.* + to + https://www.medicinescomplete.com/ + + + from + ^http://www\.medicinescomplete\.com/ + to + https://www.medicinescomplete.com/ + + + target + + + host + medicinescomplete.com + + + host + www.medicinescomplete.com + + + + + Mediekompaniet.com (partial) + + ruleset + + name + Mediekompaniet.com (partial) + rule + + from + ^http://nysk\.mediekompaniet\.com/ + to + https://nysk.mediekompaniet.com/ + + target + + host + nysk.mediekompaniet.com + + + + Medikamente-Per-Klick + + ruleset + + name + Medikamente-Per-Klick + platform + mixedcontent + rule + + + from + ^http://(?:www\.|shop\.)?medikamente-per-klick\.de/ + to + https://www.medikamente-per-klick.de/ + + + from + ^http://(?:www\.)?kosmetik-per-klick\.de/ + to + https://www.kosmetik-per-klick.de/ + + + from + ^http://(?:www\.)?ernaehrung-per-klick\.de/ + to + https://www.ernaehrung-per-klick.de/ + + + target + + + host + www.medikamente-per-klick.de + + + host + medikamente-per-klick.de + + + host + shop.medikamente-per-klick.de + + + host + www.kosmetik-per-klick.de + + + host + kosmetik-per-klick.de + + + host + www.ernaehrung-per-klick.de + + + host + ernaehrung-per-klick.de + + + + + Medium + + ruleset + + name + Medium + rule + + from + ^http://(www\.)?medium\.com/ + to + https://$1medium.com/ + + securecookie + + host + ^medium\.com$ + name + .+ + + target + + + host + medium.com + + + host + www.medium.com + + + + + Medius Corp.com (partial) + + ruleset + + name + Medius Corp.com (partial) + rule + + from + ^http://services-sj\.mediuscorp\.com/ + to + https://services-sj.mediuscorp.com/ + + target + + host + services-sj.mediuscorp.com + + + + Medius Viewer.com + + ruleset + + name + Medius Viewer.com + rule + + from + ^http://services-sj\.mediusviewer\.com/ + to + https://services-sj.mediuscorp.com/ + + target + + host + services-sj.mediusviewer.com + + + + Medscape (partial) + + ruleset + + name + Medscape (partial) + rule + + + from + ^https?://images\.medscape\.com/ + to + https://img.medscape.com/ + + + from + ^http://(img|login|profreg)\.medscape\.com/ + to + https://$1.medscape.com/ + + + securecookie + + host + ^(?:login|profreg)\.medscape\.com$ + name + .* + + target + + host + *.medscape.com + + + + Medstop.se + + ruleset + + name + Medstop.se + rule + + + from + ^http://medstop\.se/ + to + https://www.medstop.se/ + + + from + ^http://www\.medstop\.se/ + to + https://www.medstop.se/ + + + target + + + host + medstop.se + + + host + www.medstop.se + + + + + Meebey.net + + ruleset + + name + Meebey.net + rule + + from + ^http://(?:www\.)?meebey\.net/ + to + https://www.meebey.net/ + + securecookie + + host + ^www\.meebey\.net$ + name + .+ + + target + + + host + meebey.net + + + host + www.meebey.net + + + + + Meebo + + ruleset + + name + Meebo + rule + + + from + ^http://(?:www\.)?meebo\.com/ + to + https://www.meebo.com/ + + + from + ^http://(cim|dashboard)\.meebo\.com/ + to + https://$1.meebo.com/ + + + securecookie + + host + ^\.meebo\.com$ + name + .+ + + target + + + host + meebo.com + + + host + *.meebo.com + + + + + Meego + + ruleset + + name + Meego + rule + + from + ^http://(www\.)?meego\.com/ + to + https://$1meego.com/ + + securecookie + + host + ^\.meego\.com$ + name + .+ + + target + + + host + meego.com + + + host + *.meego.com + + + + + Meet.fm + + ruleset + + name + Meet.fm + rule + + from + ^http://(www\.)?meet\.fm/ + to + https://$1meet.fm/ + + securecookie + + host + ^\.meet\.fm$ + name + .+ + + target + + + host + meet.fm + + + host + *.meet.fm + + + + + MeetInLeeds + + ruleset + + name + MeetInLeeds + rule + + from + ^http://(?:www\.)?meetinleeds\.co\.uk/ + to + https://www.meetinleeds.co.uk/ + + target + + + host + meetinleeds.co.uk + + + host + www.meetinleeds.co.uk + + + + + MeetMe + + ruleset + + name + MeetMe + rule + + + from + ^http://((?:api|blinddate|canvas|causes|cpa|feed|friends|games|help|home|live|m|match|messages|nerve|photos|platform|profile|ssl|vip|www)\.)?meetme\.com/ + to + https://$1meetme.com/ + + + from + ^http://en\.mtmei18n\.com/ + to + https://en.mtmei18n.com/ + + + securecookie + + host + ^m?\.meetme\.com$ + name + .+ + + target + + + host + meetme.com + + + host + *.meetme.com + + + host + en.mtmei18n.com + + + + + Meetey.com + + ruleset + + name + Meetey.com + rule + + from + ^http://(www\.)?meetey\.com/ + to + https://$1meetey.com/ + + securecookie + + host + ^(?:w*\.)?meetey\.com$ + name + .+ + + target + + + host + meetey.com + + + host + *.meetey.com + + + + + Meetic (partial) + + ruleset + + name + Meetic (partial) + rule + + + from + ^http://tk\.ilius\.net/ + to + https://tk.ilius.net/ + + + from + ^http://stda\.ilius\.net/(?!css/(?!components/core/forgot\.css)) + to + https://a248.e.akamai.net/f/1129/7423/4/stda.ilius.net/ + + + from + ^http://static\.editor\.meetic\.com/ + to + https://a248.e.akamai.net/f/1627/8414/3/static.editor.meetic.com/ + + + securecookie + + host + ^tk\.ilius\.net$ + name + .+ + + target + + + host + stda.ilius.net + + + host + tk.ilius.net + + + host + static.editor.meetic.com + + + + + Meetings.io (partial) + + ruleset + + name + Meetings.io (partial) + rule + + from + ^http://(oi\.|www\.)?meetings\.io/ + to + https://$1meetings.io/ + + securecookie + + host + ^(?:w*\.)?meetings\.io$ + name + .+ + + target + + + host + meetings.io + + + host + *.meetings.io + + + + + Meetrics + + ruleset + + name + Meetrics + rule + + + from + ^http://(s\d+)\.research\.de\.com/ + to + https://$1.research.de.com/ + + + from + ^http://((dc\d+\.)?s\d+)\.meetrics\.net/ + to + https://$1.meetrics.net/ + + + from + ^http://(s\d+)\.mxcdn\.net/ + to + https://$1.mxcdn.net/ + + + target + + + host + *.meetrics.com + + + host + *.meetrics.de + + + host + *.meetrics.net + + + host + meetrics.com + + + host + meetrics.de + + + host + meetrics.net + + + host + *.mxcdn.net + + + host + *.research.de.com + + + host + research.de.com + + + + + Meetup (partial) + + ruleset + + name + Meetup (partial) + rule + + + from + ^http://(www\.)?meetup\.com/(?=favicon\.ico) + to + https://$1meetup.com/ + + + from + ^http://(?:secure|static[12])\.meetup\.com/ + to + https://secure.meetup.com/ + + + securecookie + + host + ^\.meetup\.com$ + name + ^MEETUP_(?:AFFIL|TRACK)$ + + target + + + host + meetup.com + + + host + *.meetup.com + + + + + Meetup static.com (partial) + + ruleset + + name + Meetup static.com (partial) + rule + + from + ^http://(img[12]|photos[1-4])\.meetupstatic\.com/ + to + https://a248.e.akamai.net/f/248/1673/2/$1.meetupstatic.com/ + + target + + host + *.meetupstatic.com + + + + MegWorld + + ruleset + + name + MegWorld + rule + + from + ^http://(?:(pump\.|webchat\.)|www\.)?megworld\.co\.uk/ + to + https://$1megworld.co.uk/ + + securecookie + + host + ^pump\.megworld\.co\.uk$ + name + .+ + + target + + + host + megworld.co.uk + + + host + *.megworld.co.uk + + + + + Mega + + ruleset + + name + Mega + rule + + from + ^http://((?:\w\w\.(?:api|static)|\w+\.userstorage|www)\.)?mega\.co\.nz/ + to + https://$1mega.co.nz/ + + securecookie + + host + ^mega\.co\.nz$ + name + .+ + + target + + + host + mega.co.nz + + + host + *.mega.co.nz + + + + + Mega Youtube Views + + ruleset + + name + Mega Youtube Views + rule + + from + ^http://(www\.)?megayoutubeviews\.com/ + to + https://$1megayoutubeviews.com/ + + securecookie + + host + ^(?:www\.)?megayoutubeviews\.com$ + name + .+ + + target + + + host + megayoutubeviews.com + + + host + www.megayoutubeviews.com + + + + + Mega.com (partial) + + ruleset + + name + Mega.com (partial) + rule + + from + ^http://community\.mega\.com/ + to + https://community.mega.com/ + + securecookie + + host + ^community\.mega\.com$ + name + .+ + + target + + host + community.mega.com + + + + MegaBigPower.com + + ruleset + + name + MegaBigPower.com + rule + + from + ^http://(www\.)?megabigpower\.com/ + to + https://$1megabigpower.com/ + + securecookie + + host + ^(?:www\.)?megabigpower\.com$ + name + .+ + + target + + + host + megabigpower.com + + + host + www.megabigpower.com + + + + + MegaFon (partial) + + ruleset + + name + MegaFon (partial) + rule + + + from + ^https?://megafon\.ru/ + to + https://www.megafon.ru/ + + + from + ^http://(cdnmf11|corp|english|m|sg|static\d|www)\.megafon\.ru/ + to + https://$1.megafon.ru/ + + + securecookie + + host + ^.+\.megafon\.ru$ + name + .+ + + target + + + host + megafon.ru + + + host + *.megafon.ru + + + + + MegaGlest.org (false MCB) + + ruleset + + name + MegaGlest.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?megaglest\.org/ + to + https://megaglest.org/ + + securecookie + + host + ^megaglest\.org$ + name + .+ + + target + + + host + megaglest.org + + + host + www.megaglest.org + + + + + MegaGlest.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?megaglest\.org/+(?!megaglest\.ico|tmp/|uploads/) + + name + MegaGlest.org (partial) + rule + + + from + ^http://(?:(docs\.|forum\.)|www\.)?megaglest\.org/ + to + https://$1megaglest.org/ + + + from + ^http://faq\.megaglest\.org/ + to + https://docs.megaglest.org/MG/FAQ + + + from + ^http://readme\.megaglest\.org/ + to + https://raw.github.com/MegaGlest/megaglest-source/master/docs/README.txt + + + from + ^http://wiki\.megaglest\.org/ + to + https://docs.megaglest.org/MG + + + target + + + host + megaglest.org + + + host + *.megaglest.org + + + + + MegaPath (partial) + + ruleset + + exclusion + + pattern + ^http://support\.covad\.com/export/ + + name + MegaPath (partial) + platform + mixedcontent + rule + + + from + ^http://(dashboard|my|support)\.covad\.com/ + to + https://$1.covad.com/ + + + from + ^http://(?:www\.)?megapath\.com/ + to + https://www.megapath.com/ + + + from + ^http://vp1-voiceportal\.megapath\.com/ + to + https://vp1-voiceportal.megapath.com/Login/ + + + from + ^http://connect\.megapathwholesale\.com/ + to + https://connect.megapathwholesale.com/ + + + from + ^http://(?:www\.)?speakeasy\.net/ + to + https://speakeasy.net/ + + + securecookie + + + host + ^my\.covad\.com$ + name + .* + + + host + ^(vp1-voiceportal|www)\.megapath\.com$ + name + .* + + + host + ^(www)?\.?speakeasy\.net$ + name + .* + + + target + + + host + dashboard.covad.com + + + host + my.covad.com + + + host + support.covad.com + + + host + megapath.com + + + host + vp1-voiceportal.megapath.com + + + host + www.megapath.com + + + host + connect.megapathwholesale.com + + + host + speakeasy.net + + + host + *.speakeasy.net + + + + + MegaShare.im + + ruleset + + name + MegaShare.im + rule + + from + ^http://(www\.)?megashare\.im/ + to + https://$1megashare.im/ + + securecookie + + host + ^\.megashare\.im$ + name + .+ + + target + + + host + megashare.im + + + host + *.megashare.im + + + + + Meinfernbus.de + + ruleset + + name + Meinfernbus.de + rule + + from + ^http://(www\.)?meinfernbus\.de/ + to + https://meinfernbus.de/ + + target + + + host + meinfernbus.de + + + host + www.meinfernbus.de + + + + + Mekanist + + ruleset + + name + Mekanist + rule + + from + ^http://(www\.)?mekanist\.net/ + to + https://www.mekanist.net/ + + securecookie + + host + ^www\.mekanist\.net$ + name + .* + + target + + + host + www.mekanist.net + + + host + mekanist.net + + + + + Meldium.com + + ruleset + + name + Meldium.com + rule + + from + ^http://(www\.)?meldium\.com/ + to + https://$1meldium.com/ + + target + + + host + meldium.com + + + host + www.meldium.com + + + + + Mellanox (partial) + + ruleset + + name + Mellanox (partial) + rule + + + from + ^http://(?:www\.)?mellanox\.com/ + to + https://www.mellanox.com/ + + + from + ^http://calc\.mellanox\.com/(?:\?.*)?$ + to + https://www.mellanox.com/ + + + from + ^http://(www\.)?partners\.mellanox\.com/ + to + https://$1partners.mellanox.com/ + + + securecookie + + host + ^(?:(?:www\.)?partners\.|www\.)?mellanox\.com$ + name + .+ + + target + + + host + mellanox.com + + + host + *.mellanox.com + + + + + Meltin.net (partial) + + ruleset + + name + Meltin.net (partial) + platform + cacert + rule + + from + ^http://(www\.)?meltin\.net/ + to + https://$1meltin.net/ + + target + + + host + meltin.net + + + host + www.meltin.net + + + + + Meltwater News + + ruleset + + name + Meltwater News + rule + + from + ^http://(service\.|www\.)?meltwaternews\.com/ + to + https://$1meltwaternews.com/ + + securecookie + + host + ^(.*\.)?meltwaternews\.com$ + name + .* + + target + + + host + meltwaternews.com + + + host + *.meltwaternews.com + + + + + MemberCentral + + ruleset + + name + MemberCentral + rule + + from + ^http://(www\.)?membercentral\.com/ + to + https://$1membercentral.com/ + + securecookie + + host + ^(?:www\.)?membercentral\.com$ + name + .+ + + target + + + host + membercentral.com + + + host + www.membercentral.com + + + + + MemberClicks.com (partial) + + ruleset + + name + MemberClicks.com (partial) + rule + + from + ^http://(data|help)\.memberclicks\.com/ + to + https://$1.memberclicks.com/ + + target + + host + *.memberclicks.com + + + + MemberClicks.net + + ruleset + + name + MemberClicks.net + rule + + from + ^http://([\w-]+\.)?memberclicks\.net/ + to + https://$1memberclicks.net/ + + securecookie + + host + ^[\w-]+\.memberclicks\.net$ + name + .+ + + target + + + host + memberclicks.net + + + host + *.memberclicks.net + + + + + Meme Center (partial) + + ruleset + + name + Meme Center (partial) + rule + + + from + ^http://(global3|scdn)\.memecdn\.com/ + to + https://$1.memecdn.com/ + + + from + ^http://((?:ovh|red|rn|www|yntmeme)\.)?memecenter\.com/ + to + https://$1memecenter.com/ + + + securecookie + + host + ^\.memecenter\.com$ + name + .+ + + target + + + host + *.memecdn.com + + + host + memecenter.com + + + host + *.memecenter.com + + + + + Memorydealers + + ruleset + + name + Memorydealers + platform + mixedcontent + rule + + from + ^http://(www\.)?memorydealers\.com/ + to + https://$1memorydealers.com/ + + securecookie + + host + ^\.memorydealers\.com$ + name + .* + + target + + + host + memorydealers.com + + + host + *.memorydealers.com + + + + + Memrise (partial) + + ruleset + + name + Memrise (partial) + rule + + from + ^http://(?:media|static)\.memrise\.com/ + to + https://d107cgb5lgj7br.cloudfront.net/ + + target + + host + *.memrise.com + + + + Memset + + ruleset + + name + Memset + rule + + from + ^http://(\w+\.)?memset\.com/ + to + https://$1memset.com/ + + securecookie + + host + ^(.*\.)?memset\.com$ + name + .* + + target + + + host + memset.com + + + host + *.memset.com + + + + + Mendeley (partial) + + ruleset + + name + Mendeley (partial) + rule + + + from + ^https?://ha3\.www\.mendeley\.com/ + to + https://www.mendeley.com/ + + + from + ^http://(www\.)?mendeley\.com/(jo|log)in/ + to + https://$1mendeley.com/$2in/ + + + from + ^https?://support\.mendeley\.com/(images/|track\.gif) + to + https://mendeley.uservoice.com/$1 + + + target + + host + *.mendeley.com + + + + Mendiant.com (partial) + + ruleset + + name + Mendiant.com (partial) + rule + + + from + ^http://(forums\.|www\.)?mandiant\.com/ + to + https://$1mandiant.com/ + + + from + ^http://images\.connect\.mandiant\.com/ + to + https://secure.eloqua.com/ + + + securecookie + + host + ^(?:\.|www\.)?mandiant\.com$ + name + .+ + + target + + + host + mandiant.com + + + host + *.mandiant.com + + + + + Meningitus Trust (partial) + + ruleset + + name + Meningitus Trust (partial) + rule + + from + ^http://www\.meningitis-trust\.org/(blocks/|concrete/|favicon\.ico|files/|packages/|themes/) + to + https://www.meningitis-trust.org/$1 + + target + + host + www.meningitis-trust.org + + + + Menshealth.de + + ruleset + + name + Menshealth.de + platform + mixedcontent + rule + + + from + ^http://www\.menshealth\.de/ + to + https://www.menshealth.de/ + + + from + ^http://mhstatic\.de/ + to + https://mhstatic.de/ + + + target + + + host + www.menshealth.de + + + host + mhastic.de + + + + + Mental health services in Australia + + ruleset + + name + Mental health services in Australia + rule + + from + ^http://(?:www\.)?mhsa\.aihw\.gov\.au/ + to + https://mhsa.aihw.gov.au/ + + target + + + host + mhsa.aihw.gov.au + + + host + *.mhsa.aihw.gov.au + + + + + Mentor Graphics (partial) + + ruleset + + name + Mentor Graphics (partial) + rule + + + from + ^https?://(?:www\.)?codesourcery\.com/ + to + https://www.mentor.com/embedded-software/codesourcery + + + from + ^http://mentor\.com/ + to + https://www.mentor.com/ + + + from + ^http://(accounts|store1?|supportnet)\.mentor\.com/ + to + https://$1.mentor.com/ + + + from + ^https?://cache\.mentor\.com/ + to + https://d30fqqf2omcq1k.cloudfront.net/ + + + securecookie + + host + ^\.store1\.mentor\.com$ + name + .* + + target + + + host + codesourcery.com + + + host + www.codesourcery.com + + + host + mentor.com + + + host + *.mentor.com + + + host + *.store1.mentor.com + + + + + Mentoring Central + + ruleset + + name + Mentoring Central + rule + + from + ^http://(resources\.|www\.)?mentoringcentral\.net/ + to + https://$1mentoringcentral.net/ + + securecookie + + host + ^(?:.*\.)?mentoringcentral\.net$ + name + .+ + + target + + + host + mentoringcentral.net + + + host + *.mentoringcentral.net + + + + + Mequoda.com (partial) + + ruleset + + name + Mequoda.com (partial) + rule + + from + ^http://(?:www\.)?mequoda\.com/ + to + https://www.mequoda.com/ + + securecookie + + host + ^www\.mequoda\.com$ + name + .+ + + target + + + host + mequoda.com + + + host + www.mequoda.com + + + + + Mer Project (partial) + + ruleset + + name + Mer Project (partial) + rule + + from + ^http://bugs\.merproject\.org/ + to + https://bugs.merproject.org/ + + target + + host + bugs.merproject.org + + + + Mer Project.org (partial) + + ruleset + + name + Mer Project.org (partial) + rule + + + from + ^http://(bugs|build|wiki)\.merproject\.org/ + to + https://$1.merproject.org/ + + + from + ^http://review\.merproject\.org/(?:\?.*)?$ + to + https://code.google.com/p/gerrit/ + + + securecookie + + host + ^(?:bugs|build|wiki)\.merproject\.org$ + name + .+ + + target + + host + *.merproject.org + + + + Meraki + + ruleset + + name + Meraki + rule + + from + ^http://(account\.|www\.)?meraki\.com/ + to + https://$1meraki.com/ + + securecookie + + host + .*\.meraki\.com$ + name + .+ + + target + + + host + meraki.com + + + host + *.meraki.com + + + + + MerchDirect (partial) + + ruleset + + name + MerchDirect (partial) + rule + + from + ^https?://(?:www\.)?merchdirect\.com/($|\?|home(?:$|\?|/)|stores/(?:account_login\.php|images/|skins/)) + to + https://www.merchdirect.com/$1 + + target + + + host + merchdirect.com + + + host + www.merchdirect.com + + + + + Merchant City Music (partial) + + ruleset + + name + Merchant City Music (partial) + rule + + from + ^https?://(?:www\.)?guitar\.co\.uk/(asset|image|stylesheet)s/ + to + https://www.guitar.co.uk/$1s/ + + target + + + host + guitar.co.uk + + + host + www.guitar.co.uk + + + + + Mercola + + ruleset + + name + Mercola + rule + + + from + ^http://(www\.)?mercola\.com/ + to + https://www.mercola.com/ + + + from + ^http://products\.mercola\.com/ + to + https://products.mercola.com/ + + + target + + + host + mercola.com + + + host + products.mercola.com + + + + + Mercury News + + ruleset + + name + Mercury News + rule + + from + ^http://(now\.|rss\.|www\.)?mmedia\.me/ + to + https://$1mmedia.me/ + + securecookie + + host + ^(?:.*\.)?mmedia\.me$ + name + .+ + + target + + + host + mmedia.me + + + host + *.mmedia.me + + + + + Mercury News.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?mercurynews\.com/(?:\w+/ci_\d+(?:$|[?/])) + + name + Mercury News.com (partial) + rule + + from + ^http://(?:(?:secure\.)?www\.)?mercurynews\.com/ + to + https://secure.www.mercurynews.com/ + + target + + + host + mercurynews.com + + + host + *.mercurynews.com + + + + + Mercy Ships (partial) + + ruleset + + name + Mercy Ships (partial) + rule + + + from + ^https?://www\.mercyships\.org\.s3-us-west-1\.amazonaws\.com/ + to + https://s3-us-west-1.amazonaws.com/www.mercyships.org/ + + + from + ^http://(www\.)?mercyships\.org/ + to + https://$1mercyships.org/ + + + securecookie + + host + ^(?:w*\.)?mercyships\.org$ + name + .+ + + target + + + host + www.mercyships.org.s3.amazonaws.com + + + host + mercyships.org + + + host + *.mercyships.org + + + + + Meritrust CU.org + + ruleset + + name + Meritrust CU.org + rule + + + from + ^http://(?:www\.)?meritrustcu\.org/ + to + https://www.meritrustcu.org/ + + + from + ^http://xenapp\.meritrustcu\.org/ + to + https://xenapp.meritrustcu.org/ + + + securecookie + + host + ^(?:www)?\.meritrustcu\org$ + name + .+ + + target + + + host + meritrustcu.org + + + host + *.meritrustcu.org + + + + + Mesh Internet (partial) + + ruleset + + name + Mesh Internet (partial) + rule + + from + ^http://(my|secure)\.mesh-internet\.co\.uk/ + to + https://$1.mesh-internet.co.uk/ + + securecookie + + host + ^\w+\.mesh-internet\.co\.uk$ + name + .* + + target + + host + *.mesh-internet.co.uk + + + + Messer Financial + + ruleset + + name + Messer Financial + rule + + from + ^http://(www\.)?messerfinancial\.com/ + to + https://$1messerfinancial.com/ + + securecookie + + host + ^(?:.*\.)?messerfinancial\.com$ + name + .+ + + target + + + host + messerfinancial.com + + + host + *.messerfinancial.com + + + + + MetaCPAN + + ruleset + + name + MetaCPAN + rule + + from + ^http://(api\.|www\.|cpan\.)?metacpan\.org/ + to + https://$1metacpan.org/ + + securecookie + + host + ^(.*\.)?metacpan\.org$ + name + .* + + target + + + host + metacpan.org + + + host + *.metacpan.org + + + + + MetaPress (partial) + + ruleset + + name + MetaPress (partial) + rule + + from + ^http://(www\.)?metapress\.org/(dynamic-file\.axd|images/) + to + https://www.metapress.org/$2 + + target + + + host + metapress.org + + + host + www.metapress.org + + + + + Metaboli.co.uk + + ruleset + + name + Metaboli.co.uk + rule + + from + ^http://(www\.)?metaboli\.co\.uk/ + to + https://www.metaboli.co.uk/ + + target + + + host + metaboli.co.uk + + + host + www.metaboli.co.uk + + + + + Metal-Detector-Town.com + + ruleset + + name + Metal-Detector-Town.com + rule + + from + ^http://(old\.|www\.)?metal-detector-town\.com/ + to + https://$1metal-detector-town.com/ + + securecookie + + host + ^\.(?:www\.)?metal-detector-town\.com$ + name + .+ + + target + + + host + metal-detector-town.com + + + host + *.metal-detector-town.com + + + + + Metallica (partial) + + ruleset + + name + Metallica (partial) + rule + + from + ^http://(www\.)?metallica\.com/ + to + https://$1metallica.com/ + + securecookie + + host + ^(?:w*\.)?metallica\.com$ + name + .+ + + target + + + host + metallica.com + + + host + *.metallica.com + + + + + Metapress (partial) + + ruleset + + name + Metapress (partial) + rule + + + from + ^https?://(?:www\.)?metapress\.com/(account/|dynamic-file\.axd|identities/(?:help|me)/|images/|personalization/) + to + https://www.metapress.com/$1 + + + from + ^http://ons\.metapress\.com/(dynamic-file\.axd|identities(?:$|[\?/])|images/) + to + https://ons.metapress.com/$1 + + + from + ^http://(psycontent|shibboleth|springerlink3)\.metapress\.com/ + to + https://$1.metapress.com/ + + + securecookie + + host + ^s(?:hibboleth|pringerlink3)\.metapress\.com$ + name + .+ + + target + + + host + metapress.com + + + host + *.metapress.com + + + + + Metasploit + + ruleset + + name + Metasploit + rule + + + from + ^http://(?:www\.)?metasploit\.(?:com|org)/ + to + https://www.metasploit.com/ + + + from + ^http://(dev|help|mail)\.metasploit\.com/ + to + https://$1.metasploit.com/ + + + securecookie + + host + ^dev\.metasploit\.com$ + name + .+ + + target + + + host + metasploit.com + + + host + *.metasploit.com + + + host + metasploit.org + + + host + www.metasploit.org + + + + + MeteoNews (partial) + + ruleset + + name + MeteoNews (partial) + rule + + from + ^http://(js|static-media)\.meteonews\.net/ + to + https://$1.meteonews.net/ + + target + + host + *.meteonews.net + + + + Meteor.com + + ruleset + + name + Meteor.com + rule + + from + ^http://(www\.)?meteor\.com/ + to + https://$1meteor.com/ + + target + + + host + meteor.com + + + host + www.meteor.com + + + + + Method Acting Strasberg.com + + ruleset + + name + Method Acting Strasberg.com + rule + + from + ^http://(www\.)?methodactingstrasberg\.com/ + to + https://$1methodactingstrasberg.com/ + + securecookie + + host + ^(?:w*\.)?methodactingstrasberg.com$ + name + .+ + + target + + + host + methodactingstrasberg.com + + + host + *.methodactingstrasberg.com + + + + + Metin2.co.nz + + ruleset + + name + Metin2.co.nz + rule + + from + ^http://(www\.)?metin2\.co\.nz/ + to + https://$1metin2.co.nz/ + + securecookie + + host + ^\.?metin2\.co\.nz$ + name + .+ + + target + + + host + metin2.co.nz + + + host + *.metin2.co.nz + + + + + Metrix + + ruleset + + name + Metrix + rule + + from + ^http://(secure\.|www\.)?metrix\.net/ + to + https://secure.metrix.net/ + + securecookie + + host + ^\.secure\.metrix\.net$ + name + .* + + target + + + host + metrix.net + + + host + secure.metrix.net + + + host + www.metrix.net + + + + + Metro Ethernet Forum.com (partial) + + ruleset + + name + Metro Ethernet Forum.com (partial) + rule + + from + ^http://(wiki\.|www\.)?metroethernetforum\.com/ + to + https://$1metroethernetforum.com/ + + securecookie + + host + ^(?:.*\.)?metroethernetforum\.com$ + name + .+ + + target + + + host + metroethernetforum.com + + + host + *.metroethernetforum.com + + + + + Metro Transit + + ruleset + + name + Metro Transit + rule + + from + ^http://(www\.)?metrotransit\.org/ + to + https://www.metrotransit.org/ + + target + + + host + metrotransit.org + + + host + www.metrotransit.org + + + + + Metro.co.uk + + ruleset + + name + Metro.co.uk + rule + + from + ^http://(www\.)?metro\.co\.uk/ + to + https://$1metro.co.uk/ + + target + + + host + metro.co.uk + + + host + www.metro.co.uk + + + + + Metropolia University of Applied Sciences + + ruleset + + name + Metropolia University of Applied Sciences + rule + + from + ^http://(moodle|metropooli)\.metropolia\.fi/ + to + https://$1.metropolia.fi/ + + target + + host + *.metropolia.fi + + + + Mew + + ruleset + + name + Mew + rule + + from + ^http://(www\.)?mewsite\.com/ + to + https://$1mewsite.com/ + + target + + + host + mewsite.com + + + host + www.mewsite.com + + + + + MeynConnect + + ruleset + + name + MeynConnect + rule + + from + ^https?://(?:www\.)?meynconnect\.com/ + to + https://www.meynconnect.com/ + + securecookie + + host + ^www\.meynconnect\.com$ + name + .+ + + target + + + host + meynconnect.com + + + host + www.meynconnect.com + + + + + Mg2 mobile.com + + ruleset + + name + Mg2 mobile.com + rule + + from + ^http://(lte\.|www\.)?mg2mobile\.com/ + to + https://$1mg2mobile.com/ + + target + + + host + mg2mobile.com + + + host + *.mg2mobile.com + + + + + Miamire.com (partial) + + ruleset + + name + Miamire.com (partial) + rule + + from + ^http://(www\.)?miamire\.com/(?=(?:[pP]ortal/)?[aA]pp_[tT]hemes/|docs/|favicon\.ico|images/|js/|portal/(?:Authentication/SAML/)?Login\.aspx|(?:portal/)?Script(?:Resource|Web)\.axd|Telerik\.Web\.UI\.WebResource\.axd|Widgets/) + to + https://$1miamire.com/ + + target + + + host + miamire.com + + + host + www.miamire.com + + + + + Mibbit + + ruleset + + name + Mibbit + rule + + from + ^http://((?:chat|(?:02|client01)\.chat|data|search|widget(?:0\d|manager)?|www)\.)?mibbit\.com/ + to + https://$1mibbit.com/ + + securecookie + + host + ^(?:.*\.)?mibbit.com$ + name + .+ + + target + + + host + mibbit.com + + + host + *.mibbit.com + + + + + Micah F Lee.com + + ruleset + + name + Micah F Lee.com + rule + + from + ^http://(www\.)?micahflee\.com/ + to + https://$1micahflee.com/ + + target + + + host + micahflee.com + + + host + www.micahflee.com + + + + + Michael W Lucas.com + + ruleset + + name + Michael W Lucas.com + rule + + from + ^http://(www\.)?michaelwlucas\.com/ + to + https://$1michaelwlucas.com/ + + target + + + host + michaelwlucas.com + + + host + www.michaelwlucas.com + + + + + Michal Hrušecký + + ruleset + + name + Michal Hrušecký + platform + cacert + rule + + + from + ^http://(?:www\.)?hrusecky\.net/ + to + https://www.hrusecky.net/ + + + from + ^http://michal\.hrusecky\.net/ + to + https://michal.hrusecky.net/ + + + target + + + host + hrusecky.net + + + host + *.hrusecky.net + + + + + Michelle Bridges 12 Week Body Transformation (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?12wbt\.com/(?!assets/|(?:login|sign-up)(?:$|[\?/])) + + + pattern + ^http://shop\.12wbt\.com/(?!assets/|spree/) + + + name + Michelle Bridges 12 Week Body Transformation (partial) + rule + + from + ^http://(images\.|shop\.|www\.)?12wbt\.com/ + to + https://$112wbt.com/ + + target + + + host + 12wbt.com + + + host + *.12wbt.com + + + + + Michigan Nonprofit Association (partial) + + ruleset + + name + Michigan Nonprofit Association (partial) + rule + + + from + ^http://(www\.)?mnaonline\.org/ + to + https://$1mnaonline.org/ + + + from + ^http://mnaadmin\.mnaonline\.org/(cmi|CMI)mages/ + to + https://www.mnaonline.org/$1mages/ + + + securecookie + + host + ^(?:www\.)?mnaonline\.org$ + name + .+ + + target + + + host + mnaonline.org + + + host + *.mnaonline.org + + + + + Micro Polia (partial) + + ruleset + + name + Micro Polia (partial) + rule + + from + ^http://idp\.micropolia\.com/ + to + https://idp.micropolia.com/ + + securecookie + + host + ^idp\.micropolia\.com$ + name + .+ + + target + + host + idp.micropolia.com + + + + MicroAd.jp + + ruleset + + name + MicroAd.jp + rule + + + from + ^http://((?:d-track\.)?send\.|www\.)?microad\.jp/ + to + https://$1microad.jp/ + + + from + ^http://d-cache\.microad\.jp/ + to + https://d-track.send.microad.jp/ + + + securecookie + + host + ^\.(?:send\.)?microad\.jp$ + name + .+ + + target + + + host + microad.jp + + + host + *.microad.jp + + + + + Microca.st + + ruleset + + name + Microca.st + rule + + from + ^http://(www\.)?microca\.st/ + to + https://$1microca.st/ + + target + + + host + microca.st + + + host + www.microca.st + + + + + Microchip Direct.com + + ruleset + + name + Microchip Direct.com + rule + + + from + ^http://microchipdirect\.com/.* + to + https://www.microchipdirect.com/ + + + from + ^http://www\.microchipdirect\.com/ + to + https://www.microchipdirect.com/ + + + securecookie + + host + ^www\.microchipdirect\.com$$ + name + .+ + + target + + + host + microchipdirect.com + + + host + www.microchipdirect.com + + + + + Microchip.com + + ruleset + + name + Microchip.com + rule + + from + ^http://(?:www\.)?microchip\.com/ + to + https://www.microchip.com/ + + target + + + host + www.microchip.com + + + host + microchip.com + + + + + Microgaming + + ruleset + + name + Microgaming + rule + + from + ^http://www\.tickerassist\.co\.uk/ + to + https://www.tickerassist.co.uk/ + + securecookie + + host + ^www\.tickerassist\.co\.uk$ + name + .+ + + target + + host + www.tickerassist.co.uk + + + + Micron (partial) + + ruleset + + name + Micron (partial) + rule + + from + ^http://(www\.)?micron\.com/(~|my|ui)/ + to + https://$1micron.com/$2/ + + target + + + host + micron.com + + + host + www.micron.com + + + + + MicropartsUSA + + ruleset + + name + MicropartsUSA + rule + + from + ^http://(www\.)?micropartsusa\.com/ + to + https://$1micropartsusa.com/ + + target + + + host + micropartsusa.com + + + host + www.micropartsusa.com + + + + + Microsec + + ruleset + + name + Microsec + rule + + from + ^http://([^@:/]*)\.microsec\.hu/ + to + https://$1.microsec.hu/ + + target + + host + *.microsec.hu + + + + Microsoft (mixed content) + + ruleset + + exclusion + + + pattern + ^http://social\.technet\.microsoft\.com/Forums(?:$|[?/]) + + + pattern + ^https?://blogs\.msdn\.com/.*\?Redirected=true + + + name + Microsoft (mixed content) + platform + mixedcontent + rule + + + from + ^https?://blogs\.msdn\.com/(.*(?:\.aspx|\.xml|/))?$ + to + https://blogs.msdn.com/$1?Redirected=true + + + from + ^http://(social\.technet|www)\.microsoft\.com/ + to + https://$1.microsoft.com/ + + + target + + + host + blogs.msdn.com + + + host + social.technet.microsoft.com + + + host + www.microsoft.com + + + + + Microsoft (partial) + + ruleset + + exclusion + + + pattern + ^http://msdn\.microsoft\.com + + + pattern + ^http://www\.microsoft\.com/.*[fF]amily[iI][dD] + + + pattern + ^http://(?:www\.)?microsoft\.com/health/(?:$|\?|.+\.aspx) + + + pattern + ^http://www\.microsoft\.com/security/.+\.aspx(?:$|\?) + + + pattern + ^http://(?:www\.)?microsoft\.com/[oO][eE][mM]/ + + + pattern + ^http://www\.microsoft\.com/Surface/\w\w-\w\w(?:$|\?|/) + + + pattern + ^http://answers\.microsoft\.com/(?!\w\w-\w\w/\w+/forum/[\w-]+/[\w-]+/) + + + pattern + ^http://msdn\.microsoft\.com/(?:$|en-us/$|.+(?:/$|\.aspx|/\w\w\d{6,10}$)) + + + pattern + ^http://code\.msdn\.microsoft\.com/(?![cC]content/|RequestReduceContent/) + + + pattern + ^https?://search\.microsoft\.com/(?!global/oneMscomSettings/|shared/) + + + pattern + ^http://technet\.microsoft\.com/(?!en-us/(?:library/[^\.]\.rss(?:$|\?)|security/(?:advisory|bulletin)(?:$|\?|/))) + + + pattern + ^http://social\.technet\.microsoft\.com/Forums(?:$|[?/]) + + + pattern + ^http://tag\.microsoft\.com/+(?![Aa]pp_[Tt]hemes/|favicon\.ico|Images/|[Ll]ibraries/|[Ww]eb[Rr]esource\.axd) + + + pattern + ^http://social\.technet\.microsoft\.com/+wiki(?!/CustomWidgets/|/themes/|/Utility/) + + + name + Microsoft (partial) + rule + + + from + ^http://(?:i\d?\.|js\.|search\.|spcache\.)?microsoft\.com/ + to + https://www.microsoft.com/ + + + from + ^http://(accountservices|(?:feedback\.)?adcenter|advertising|ajax|(?:fb\.)?answers|c1?|choice|commerce|(?:innovation\.|services\.)?connect|sas\.css|events|social\.expression|go?|ieonline|m|mobile|code\.msdn|msdn|social\.msdn|office(?:15client|365|2010|preview|redir)?|o15\.officeredir|profile|rad|research|profileapi\.services|signature|snackbox|(?:services\.)?social|store|corp\.sts|support|tag|(?:social\.)?technet|www\.update|(?:v[45]\.)?windowsupdate)\.microsoft\.com/ + to + https://$1.microsoft.com/ + + + from + ^http://wscont\d?\.apps\.microsoft\.com/ + to + https://wscont.apps.microsoft.com/ + + + from + ^http://i\.s-microsoft\.com/ + to + https://i.s-microsoft.com/ + + + from + ^http://i\d\.social\.s-msft\.com/wiki/ + to + https://social.technet.microsoft.com/wiki/ + + + from + ^http://i\d?\.((?:code\.)?msdn|onlinehelp|(?:services\.)?social|(?:gallery\.)?technet)\.(?:microso|s-ms)ft\.com/ + to + https://$1.microsoft.com/ + + + from + ^http://i\d\.connect\.microsoft\.com/ + to + https://services.connect.microsoft.com/ + + + from + ^http://i1\.mobile\.microsoft\.com/ + to + https://m.microsoft.com/ + + + from + ^http://scache\.microsoft\.com/ + to + https://www.microsoft.com/ + + + from + ^http://img3\.store\.microsoft\.com/ + to + https://msstore.vo.msecnd.net/ + + + from + ^http://update\.microsoft\.com/ + to + https://www.update.microsoft.com/ + + + from + ^http://origin-res\.windows\.microsoft\.com/ + to + https://origin-res.windows.microsoft.com/ + + + from + ^http://res(1|2)\.windows\.microsoft\.com/ + to + https://a248.e.akamai.net/f/1737/7533/6/res$1.windows.microsoft.com/ + + + from + ^http://(?:www\.)?office\.com/ + to + https://www.office.com/ + + + from + ^http://([\w-]+)\.sec\.s-msft\.com/ + to + https://$1.sec.s-msft.com/ + + + from + ^http://widgets\.membership\.(?:s-ms|microso)ft\.com/ + to + https://widgets.membership.microsoft.com/ + + + from + ^http://i\d\.social\.s-msft\.com/ + to + https://social.expression.microsoft.com/ + + + securecookie + + + host + ^\.microsoft\.com$ + name + ^(?:A|GsfxStatsLog|MC1|MS0|OnlineTrackingV2\.0|R|RioTracking\..+|s_.+)$ + + + host + ^(?:feedback\.adcenter|advertising|advertise\.bingads|choice|commerce|ieonline|m|\.?office|office(?:15client|2010|preview|redir)|corp\.sts|\.?support|\.?www)\.microsoft\.com$ + name + .+ + + + host + ^social\.technet\.microsoft\.com$ + name + ^CSExtendedAnalytics(?:Session)?$ + + + host + ^www\.office\.com$ + name + .+ + + + target + + + host + microsoft.com + + + host + *.microsoft.com + + + host + office.com + + + host + www.office.com + + + host + i.s-microsoft.com + + + host + *.s-msft.com + + + + + Microsoft Atlas + + ruleset + + exclusion + + pattern + ^http://view\.atdmt\.com/action/windows_downloads_Upgrade + + name + Microsoft Atlas + rule + + + from + ^http://(c1?|clk|flex|h|image|rad|switch|view)\.atdmt\.com/ + to + https://$1.atdmt.com/ + + + from + ^http://cdn\.atdmt\.com/ + to + https://atlasdmt.vo.msecnd.net/ + + + from + ^http://exch-eu\.atdmt\.com/ + to + https://view.atdmt.com/ + + + from + ^http://img\.atdmt\.com/ + to + https://a248.e.akamai.net/img.atdmt.com/ + + + from + ^http://spe\.atdmt\.com/ + to + https://image.atdmt.com/ + + + securecookie + + host + ^(?:.*\.)?atdmt\.com$ + name + .+ + + target + + host + *.atdmt.com + + + + Microsoft Online Services (partial) + + ruleset + + name + Microsoft Online Services (partial) + rule + + + from + ^https?://go\.microsoftonline\.com/ + to + https://g.live.com/ + + + from + ^http://(login|loginex|portal)\.microsoftonline\.com/ + to + https://$1.microsoftonline.com/ + + + from + ^http://secure\.aadcdn\.microsoftonline-p\.com/ + to + https://secure.aadcdn.microsoftonline-p.com/ + + + from + ^http://(secure\.aadcdn|accountservices)\.microsoftonline-p\.net/ + to + https://$1.microsoftonline-p.net/ + + + securecookie + + host + ^(?:\.?login|loginex|portal)\.microsoftonline\.com$ + name + .+ + + target + + + host + *.microsoftonline.com + + + host + *.login.microsoftonline.com + + + host + secure.aadcdn.microsoftonline-p.com + + + host + secure.aadcdn.microsoftonline-p.net + + + host + accountservices.microsoftonline-p.net + + + + + Microsoft Store (partial) + + ruleset + + exclusion + + + pattern + ^http://emea\.microsoftstore\.com/(?!\w+/(?:desktopdefault\.aspx|portaldata/|services/|tags\.axd)) + + + pattern + ^https?://(?:www\.)?microsoftstore\.com/store(?:$|\?) + + + name + Microsoft Store (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?microsoftstore\.com/ + to + https://www.microsoftstore.com/ + + + from + ^http://(content|emea)\.microsoftstore\.com/ + to + https://$1.microsoftstore.com/ + + + from + ^http://assets-(\d)\.microsoftstoreassets\.com/ + to + https://assets-$1.microsoftstoreassets.com/ + + + from + ^http://external\.microsoftstoreservices\.com/ + to + https://external.microsoftstoreservices.com/ + + + target + + + host + microsoftstore.com + + + host + *.microsoftstore.com + + + host + *.microsoftstoreassets.com + + + host + external.microsoftstoreservices.com + + + + + Microsoft.com (false MCB) + + ruleset + + name + Microsoft.com (false MCB) + platform + mixedcontent + rule + + from + ^http://onlinehelp\.microsoft\.com/ + to + https://onlinehelp.microsoft.com/ + + securecookie + + host + ^onlinehelp\.microsoft\.com$ + name + .+ + + target + + host + onlinehelp.microsoft.com + + + + Microtech (partial) + + ruleset + + name + Microtech (partial) + platform + mixedcontent + rule + + + from + ^http://my\.cloudfloordns\.com/ + to + https://www.mtgsy.net/myaccount.php + + + from + ^http://(?:images\d\.|www\.)mtgsy\.net/ + to + https://www.mtgsy.net/ + + + securecookie + + host + ^(.*\.)?mtgsy\.com$ + name + .* + + target + + + host + my.cloudfloordns.com + + + host + mtgsy.net + + + host + *.mtgsy.net + + + + + Microtronix (partial) + + ruleset + + name + Microtronix (partial) + rule + + from + ^http://clients\.microtronix-tech\.com/((?:affiliates|clientarea|contact|pwreset|register|submitticket)\.php|(?:imag|includ|templat)es/) + to + https://clients.microtronix-tech.com/$1 + + target + + host + clients.microtronix-tech.com + + + + Midas Green Tech.com (false MCB) + + ruleset + + name + Midas Green Tech.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?midasgreentech\.com/ + to + https://$1midasgreentech.com/ + + securecookie + + host + ^(?:www\.)?midasgreentech\.com$ + name + .+ + + target + + + host + midasgreentech.com + + + host + *.midasgreentech.com + + + + + Midas Green Tech.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?midasgreentech\.com/+(?!data/|favicon\.ico|images/|plugins/|theme/) + + name + Midas Green Tech.com (partial) + rule + + from + ^http://(www\.)?midasgreentech\.com/ + to + https://$1midasgreentech.com/ + + target + + + host + midasgreentech.com + + + host + www.midasgreentech.com + + + + + Middle East Monitor.com + + ruleset + + name + Middle East Monitor.com + rule + + from + ^http://(www\.)?middleeastmonitor\.com/ + to + https://$1middleeastmonitor.com/ + + securecookie + + host + ^\.middleeastmonitor\.com$ + name + .+ + + target + + + host + middleeastmonitor.com + + + host + *.middleeastmonitor.com + + + + + Midnight Commander + + ruleset + + name + Midnight Commander + rule + + from + ^http://(www\.)?midnight-commander\.org/ + to + https://$1midnight-commander.org/ + + securecookie + + host + ^(?:www\.)?midnight-commander\.org$ + name + .* + + target + + + host + midnight-commander.org + + + host + www.midnight-commander.org + + + + + Midphase (partial) + + ruleset + + name + Midphase (partial) + rule + + from + ^http://(www\.)?midphase\.com/ + to + https://$1midphase.com/ + + securecookie + + host + ^www\.midphase\.com$ + name + .+ + + target + + + host + midphase.com + + + host + www.midphase.com + + + + + Migros + + ruleset + + name + Migros + rule + + + from + ^http://(?:www\.)?migros\.ch/ + to + https://www.migros.ch/ + + + from + ^http://(?:www\.)?melectronics\.ch/ + to + https://www.melectronics.ch/ + + + from + ^http://(?:www\.)?migrosbank\.ch/ + to + https://www.migrosbank.ch/ + + + from + ^http://m-go\.migros\.ch/ + to + https://m-go.migros.ch/ + + + from + ^http://sommer\.migros\.ch/ + to + https://sommer.migros.ch/ + + + from + ^http://twistymania\.migros\.ch/ + to + https://twistymania.migros.ch/ + + + from + ^http://migros-service\.migros\.ch/ + to + https://migros-service.migros.ch/ + + + from + ^http://m-budget\.migros\.ch/ + to + https://m-budget.migros.ch/ + + + from + ^http://minimania\.migros\.ch/ + to + https://minimania.migros.ch/ + + + from + ^http://filialen\.migros\.ch/ + to + https://filialen.migros.ch/ + + + from + ^http://shop\.m-budget\.migros\.ch/ + to + https://shop.m-budget.migros.ch/ + + + from + ^http://(?:www\.)?m-fanshop\.ch/ + to + https://www.m-fanshop.ch/ + + + from + ^http://(?:www\.)?migros-shop\.de/ + to + https://www.migros-shop.de/ + + + from + ^http://(?:www\.)?migrosmagazin\.ch/ + to + https://www.migrosmagazin.ch/ + + + from + ^http://(?:www\.)?migrosmagazine\.ch/ + to + https://www.migrosmagazine.ch/ + + + from + ^http://(?:www\.)?brueckenbauer\.ch/ + to + https://www.migrosmagazin.ch/ + + + target + + + host + migros.ch + + + host + www.migros.ch + + + host + melectronics.ch + + + host + www.melectronics.ch + + + host + migrosbank.ch + + + host + www.migrosbank.ch + + + host + m-go.migros.ch + + + host + sommer.migros.ch + + + host + twistymania.migros.ch + + + host + migros-service.migros.ch + + + host + m-budget.migros.ch + + + host + minimania.migros.ch + + + host + filialen.migros.ch + + + host + shop.m-budget.migros.ch + + + host + m-fanshop.ch + + + host + www.m-fanshop.ch + + + host + migros-shop.de + + + host + www.migros-shop.de + + + host + migrosmagazin.ch + + + host + www.migrosmagazin.ch + + + host + migrosmagazine.ch + + + host + www.migrosmagazine.ch + + + host + brueckenbauer.ch + + + host + www.brueckenbauer.ch + + + + + Mike Masin + + ruleset + + name + Mike Masin + rule + + from + ^http://(www\.)?mikemasin\.com/ + to + https://$1mikemasin.com/ + + securecookie + + host + ^\.mikemasin\.com$ + name + .+ + + target + + + host + mikemasin.com + + + host + *.mikemasin.com + + + + + Mikel Olasagasti Uranga (partial) + + ruleset + + name + Mikel Olasagasti Uranga (partial) + platform + cacert + rule + + from + ^http://(mikel\.)?olasagasti\.info/ + to + https://$1olasagasti.info/ + + target + + + host + olasagasti.info + + + host + mikel.olasagasti.info + + + + + MikroTik.com (partial) + + ruleset + + name + MikroTik.com (partial) + rule + + + from + ^http://(?:www\.)?mikrotik\.com/ + to + https://www.mikrotik.com/ + + + from + ^http://training\.mikrotik\.com/.* + to + https://www.mikrotik.com/training/ + + + securecookie + + host + ^www\.mikrotik\.com$ + name + .+ + + target + + + host + mikrotik.com + + + host + *.mikrotik.com + + + + + Mikrocontroller.net + + ruleset + + name + Mikrocontroller.net + rule + + from + ^http://(www\.)?mikrocontroller\.net/ + to + https://www.mikrocontroller.net/ + + target + + + host + mikrocontroller.net + + + host + www.mikrocontroller.net + + + + + Milepoint.com + + ruleset + + name + Milepoint.com + rule + + from + ^http://(?:www\.)?milepoint\.com/ + to + https://secure.milepoint.com/ + + target + + host + milepoint.com + + + + Miles-and-more.com + + ruleset + + name + Miles-and-more.com + rule + + + from + ^http://(?:www\.)?miles-and-more\.com/ + to + https://www.miles-and-more.com/ + + + from + ^https?://meilenrechner\.de/ + to + https://www.meilenrechner.de/ + + + from + ^http://([^/:@]+)?\.meilenrechner\.de/ + to + https://$1.meilenrechner.de/ + + + from + ^https?://miles-and-more-kreditkarte\.com/ + to + https://www.miles-and-more-kreditkarte.com/ + + + from + ^http://([^/:@]+)?\.miles-and-more-kreditkarte\.com/ + to + https://$1.miles-and-more-kreditkarte.com/ + + + securecookie + + host + ^(.*\.)?miles-and-more.com$ + name + .* + + target + + + host + miles-and-more.com + + + host + www.miles-and-more.com + + + host + meilenrechner.de + + + host + *.meilenrechner.de + + + host + miles-and-more-kreditkarte.com + + + host + *.miles-and-more-kreditkarte.com + + + + + Military Super + + ruleset + + name + Military Super + rule + + from + ^http://(?:www\.)?militarysuper\.gov\.au/ + to + https://www.militarysuper.gov.au/ + + target + + + host + militarysuper.gov.au + + + host + *.militarysuper.gov.au + + + + + MilkAndMore + + ruleset + + name + MilkAndMore + rule + + from + ^http://(?:www\.)?milkandmore\.co\.uk/ + to + https://www.milkandmore.co.uk/ + + securecookie + + host + ^([^@:/]+\.)?milkandmore\.co\.uk$ + name + .* + + target + + + host + milkandmore.co.uk + + + host + www.milkandmore.co.uk + + + + + Millennium Seating (partial) + + ruleset + + name + Millennium Seating (partial) + rule + + + from + ^http://(www\.)?millenniumseating\.com/(buttons/|favicon\.ico|images/|[sS]tore/(?:i/|inc/|login\.aspx|[tT]emplates/)) + to + https://$1millenniumseating.com/$2 + + + from + ^https?://static\.millenniumseating\.com/ + to + https://d2oplcg29czvvo.cloudfront.net/ + + + target + + + host + millenniumseating.com + + + host + www.millenniumseating.com + + + + + Millward Brown + + ruleset + + name + Millward Brown + rule + + from + ^https?://(?:www\.)?millwardbrown\.com/ + to + https://www.millwardbrown.com/ + + securecookie + + host + ^www\.millwardbrown\.com$ + name + .* + + target + + + host + millwardbrown.com + + + host + www.millwardbrown.com + + + + + Milonic (partial) + + ruleset + + name + Milonic (partial) + rule + + from + ^http://(www\.)?milonic\.com/(cbuy\.php(?:$|\?)|images/|templates/) + to + https://$1milonic.com/$2 + + target + + + host + milonic.com + + + host + www.milonic.com + + + + + Minacs.com + + ruleset + + name + Minacs.com + rule + + from + ^http://clientchat\.minacs\.com/ + to + https://clientchat.minacs.com/ + + securecookie + + host + ^clientchat\.minacs\.com$ + name + .+ + + target + + host + clientchat.minacs.com + + + + Minalyzer.com (partial) + + ruleset + + name + Minalyzer.com (partial) + rule + + from + ^http://images\.minalyzer\.com/ + to + https://s3.amazonaws.com/images.minalyzer.com/ + + target + + host + images.minalyzer.com + + + + Minazo.net + + ruleset + + name + Minazo.net + platform + firefox + rule + + from + ^http://bigshinylock\.minazo\.net/ + to + https://bigshinylock.minazo.net/ + + securecookie + + host + ^bigshinylock\.minazo\.net$ + name + .+ + + target + + host + bigshinylock.minazo.net + + + + Mind (partial) + + ruleset + + name + Mind (partial) + rule + + from + ^http://(?:www\.)?mind\.org\.uk/(assets/|favicon\.ico|images/|javascripts/|login(?:$|\?|/)|stylesheets/) + to + https://www.mind.org.uk/$1 + + target + + + host + mind.org.uk + + + host + www.mind.org.uk + + + + + Mindhealthconnect + + ruleset + + name + Mindhealthconnect + rule + + from + ^http://(?:www\.)?mindhealthconnect\.org\.au/ + to + https://www.mindhealthconnect.org.au/ + + target + + + host + mindhealthconnect.org.au + + + host + *.mindhealthconnect.org.au + + + + + Mindshare Technologies + + ruleset + + name + Mindshare Technologies + rule + + from + ^http://(?:www\.)?mshare\.net/ + to + https://www.mshare.net/ + + securecookie + + host + ^(www\.)?mshare\.net$ + name + .+ + + target + + + host + mshare.net + + + host + www.mshare.net + + + + + Minecraft + + ruleset + + name + Minecraft + rule + + from + ^https?://(?:www\.)?minecraft\.net/ + to + https://www.minecraft.net/ + + securecookie + + host + ^www\.minecraft\.net$ + name + .* + + target + + + host + minecraft.net + + + host + www.minecraft.net + + + + + Minecraft Server Lijst.NL + + ruleset + + name + Minecraft Server Lijst.NL + rule + + from + ^http://(www\.)?minecraftserverlijst\.nl/ + to + https://$1minecraftserverlijst.nl/ + + securecookie + + host + ^\.?minecraftserverlijst\.nl$ + name + .+ + + target + + + host + minecraftserverlijst.nl + + + host + *.minecraftserverlijst.nl + + + + + Minecraft.org + + ruleset + + name + Minecraft.org + rule + + from + ^http://(forum\.|www\.)?minecraft\.org/ + to + https://$1minecraft.org/ + + securecookie + + host + ^\.minecraft\.org$ + name + .+ + + target + + + host + minecraft.org + + + host + *.minecraft.org + + + + + Minetest.ru (partial) + + ruleset + + name + Minetest.ru (partial) + rule + + from + ^http://minetest\.ru/ + to + https://minetest.ru/ + + securecookie + + host + ^minetest\.ru$ + name + .+ + + target + + host + minetest.ru + + + + MiniJuegos gratis.com (partial) + + ruleset + + name + MiniJuegos gratis.com (partial) + rule + + from + ^http://(?:ssl|www)\.minijuegosgratis\.com/ + to + https://$1.minijuegosgratis.com/ + + target + + host + *.minijuegosgratis.com + + + + Miniand Tech (partial) + + ruleset + + name + Miniand Tech (partial) + rule + + from + ^http://(www\.)?miniand\.com/ + to + https://$1miniand.com/ + + securecookie + + host + ^(?:www)?\.miniand\.com$ + name + .* + + target + + + host + miniand.com + + + host + *.miniand.com + + + + + Miniatur Wunderland + + ruleset + + name + Miniatur Wunderland + platform + mixedcontent + rule + + from + ^http://(www\.)?miniatur-wunderland\.de/ + to + https://www.miniatur-wunderland.de/ + + target + + + host + www.miniatur-wunderland.de + + + host + miniatur-wunderland.de + + + + + Miniclip CDN.com + + ruleset + + name + Miniclip CDN.com + rule + + from + ^http://static(3)?\.miniclipcdn\.com/ + to + https://static$1.miniclipcdn.com/ + + target + + host + *.miniclipcdn.com + + + + Mining.Bitcoin.cz + + ruleset + + name + Mining.Bitcoin.cz + rule + + from + ^http://(www\.)?mining\.bitcoin\.cz/ + to + https://mining.bitcoin.cz/ + + target + + host + *.bitcoin.cz + + + + Ministry of Justice + + ruleset + + name + Ministry of Justice + rule + + from + ^http://(www\.)?justice\.gov\.uk/ + to + https://$1justice.gov.uk/ + + securecookie + + host + ^\.www\.justice\.gov\.uk$ + name + .+ + + target + + + host + justice.gov.uk + + + host + www.justice.gov.uk + + + host + *.www.justice.gov.uk + + + + + Minnesota Public Radio (partial) + + ruleset + + name + Minnesota Public Radio (partial) + rule + + + from + ^http://(contribute|www)\.publicradio\.org/ + to + https://$1.publicradio.org/ + + + from + ^https?://minnesota\.publicradio\.org/www_publicradio/ + to + https://www.publicradio.org/www_publicradio/ + + + securecookie + + + host + ^\.publicradio\.org$ + name + ^WT_FPC$ + + + host + ^\.contribute\.publicradio\.org$ + name + .+ + + + target + + host + *.publicradio.org + + + + Mint + + ruleset + + name + Mint + platform + mixedcontent + rule + + from + ^http://(?:www\.)?mint\.com/ + to + https://www.mint.com/ + + target + + + host + www.mint.com + + + host + mint.com + + + + + Minted (partial) + + ruleset + + name + Minted (partial) + rule + + + from + ^http://(?:www\.)?minted\.com/(__\w+__/|(?:forgot|login|register)(?:$|\?)|modules/|static/|themes/) + to + https://www.minted.com/$1 + + + from + ^http://cdn[012]\.(?:minted\.com|live1\.mintedcdn\.net)/ + to + https://www.minted.com/ + + + from + ^http://cdn3\.minted\.com/ + to + https://d2bhls43bg90ow.cloudfront.net/ + + + from + ^http://cdn4\.minted\.com/ + to + https://d27r269iws82ha.cloudfront.net/ + + + from + ^http://cdn5\.minted\.com/ + to + https://dyx88w6kx3fik.cloudfront.net/ + + + target + + + host + minted.com + + + host + *.minted.com + + + host + *.live1.mintedcdn.net + + + + + Minus.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|feedback)\. + + name + Minus.com (partial) + platform + mixedcontent + rule + + from + ^https?://([^/:@\.]+\.)?min(?:\.us|us\.com)/ + to + https://$1minus.com/ + + securecookie + + host + ^\.?minus\.com$ + name + .+ + + target + + + host + min.us + + + host + *.min.us + + + host + minus.com + + + host + *.minus.com + + + + + MirBSD + + ruleset + + name + MirBSD + rule + + from + ^http://(www\.)?mirbsd\.org/ + to + https://$1mirbsd.org/ + + target + + + host + mirbsd.org + + + host + www.mirbsd.org + + + + + Mirakar.com + + ruleset + + name + Mirakar.com + rule + + from + ^http://(www\.)?mirakar\.com/ + to + https://www.mirakar.com/ + + target + + + host + mirakar.com + + + host + www.mirakar.com + + + + + Miramax.com + + ruleset + + name + Miramax.com + rule + + from + ^http://(www\.)?miramax\.com/ + to + https://$1miramax.com/ + + securecookie + + host + ^(?:www\.)?miramax\.com$ + name + .+ + + target + + + host + miramax.com + + + host + www.miramax.com + + + + + Miranda IM (partial) + + ruleset + + name + Miranda IM (partial) + rule + + + from + ^http://(?:www\.)?miranda-im\.org/wp-content/themes/miranda/images/ + to + https://addons.miranda-im.org/images/ + + + from + ^http://addons\.miranda-im\.org/ + to + https://addons.miranda-im.org/ + + + securecookie + + host + ^.*\.miranda-im\.org$ + name + .* + + target + + + host + miranda-im.org + + + host + *.miranda-im.org + + + + + Mirantis.com + + ruleset + + name + Mirantis.com + rule + + from + ^http://((?:software|training|www)\.)?mirantis\.com/ + to + https://$1mirantis.com/ + + securecookie + + host + ^training\.mirantis\.com$ + name + .+ + + target + + + host + mirantis.com + + + host + *.mirantis.com + + + + + Mirror Image Internet (partial) + + ruleset + + name + Mirror Image Internet (partial) + rule + + from + ^http://(\w+)\.service\.mirror-image\.net/ + to + https://$1.service.mirror-image.net/ + + target + + host + *.service.mirror-image.net + + + + Misadventures with Andi (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?misadventureswithandi.com/(?!\?drawer-css=|favicon\.ico|wp-content/) + + name + Misadventures with Andi (partial) + rule + + from + ^http://(?:www\.)?misadventureswithandi\.com/ + to + https://www.misadventureswithandi.com/ + + target + + + host + misadventureswithandi.com + + + host + www.misadventureswithandi.com + + + + + Misco.co.uk (partial) + + ruleset + + name + Misco.co.uk (partial) + rule + + from + ^http://(?:www\.)?misco\.co\.uk/(?=[aA]ccount/|(?:Basket|Order)(?:$|[?/])|bundles/|Content/|favicon\.ico|[iI]mages/|Scripts/) + to + https://www.misco.co.uk/ + + securecookie + + host + ^\.misco\.co\.uk$ + name + ^__utm\w+$ + + target + + + host + misco.co.uk + + + host + *.misco.co.uk + + + + + Mises.org + + ruleset + + exclusion + + pattern + ^http://mises\.org/store/ + + name + Mises.org + rule + + from + ^http://(www\.)?mises\.org/ + to + https://$1mises.org/ + + securecookie + + host + ^\.?mises\.org$ + name + .* + + target + + + host + mises.org + + + host + *.mises.org + + + + + Mitsubishi.com + + ruleset + + name + Mitsubishi.com + rule + + from + ^http://(?:www\.)?mitsubishi\.com/ + to + https://www.mitsubishi.com/ + + target + + + host + www.mitsubishi.com + + + host + mitsubishi.com + + + + + Miva Merchant + + ruleset + + name + Miva Merchant + rule + + from + ^http://(www\.)?mivamerchant\.com/ + to + https://$1mivamerchant.com/ + + securecookie + + host + ^www\.mivamerchant\.com$ + name + .+ + + target + + + host + mivamerchant.com + + + host + www.mivamerchant.com + + + + + MivaCentral + + ruleset + + name + MivaCentral + rule + + from + ^http://(?:www\.)?mivacentral\.com/ + to + https://www.mivacentral.com/ + + securecookie + + host + ^www\.mivacentral\.com$ + name + .+ + + target + + + host + mivacentral.com + + + host + www.mivacentral.com + + + + + MixBit.com + + ruleset + + name + MixBit.com + rule + + from + ^http://(api\.|www\.)?mixbit\.com/ + to + https://$1mixbit.com/ + + securecookie + + host + ^\.mixbit\.com$ + name + .+ + + target + + + host + mixbit.com + + + host + *.mixbit.com + + + + + Mixcloud.com (partial) + + ruleset + + name + Mixcloud.com (partial) + rule + + from + ^http://(api\.|www\.)?mixcloud\.com/ + to + https://$1mixcloud.com/ + + securecookie + + host + ^\.mixcloud\.com$ + name + ^(?:csrftoken|s)$ + + target + + + host + mixcloud.com + + + host + *.mixcloud.com + + + + + Mixpanel (partial) + + ruleset + + exclusion + + pattern + ^http://blog\. + + name + Mixpanel (partial) + rule + + + from + ^http://(\w+\.)?mixpanel\.com/ + to + https://$1mixpanel.com/ + + + from + ^http://cdn\.mxpnl\.com/ + to + https://cdn.mxpnl.com/ + + + securecookie + + host + ^(.*\.)?mixpanel\.com$ + name + .* + + target + + + host + mixpanel.com + + + host + *.mixpanel.com + + + host + cdn.mxpnl.com + + + + + MixtapeLeak + + ruleset + + name + MixtapeLeak + rule + + from + ^http://(static\.|www\.)?mixtapeleak\.com/ + to + https://$1mixtapeleak.com/ + + securecookie + + host + ^\.?mixtapeleak\.com$ + name + .+ + + target + + + host + mixtapeleak.com + + + host + *.mixtapeleak.com + + + + + Mixxx.org + + ruleset + + name + Mixxx.org + rule + + from + ^http://(www\.)?mixxx\.org/ + to + https://$1mixxx.org/ + + securecookie + + host + ^(?:\.|www\.)?mixxx\.org$ + name + .+ + + target + + + host + mixxx.org + + + host + *.mixxx.org + + + + + Mjam + + ruleset + + name + Mjam + rule + + from + ^http://(?:www\.)?mjam\.net/ + to + https://www.mjam.net/ + + target + + + host + mjam.net + + + host + www.mjam.net + + + + + Mkateb.com + + ruleset + + name + Mkateb.com + rule + + from + ^http://(www\.)?mkateb\.com/ + to + https://$1mkateb.com/ + + securecookie + + host + ^\.mkateb\.com$ + name + .+ + + target + + + host + mkateb.com + + + host + *.mkateb.com + + + + + Mktoresp.com + + ruleset + + name + Mktoresp.com + rule + + from + ^http://(\d{3}-\w{3}-\d{3})\.mktoresp\.com/ + to + https://$1.mktoresp.com/ + + securecookie + + host + .+\.mktoresp\.com$ + name + .+ + + target + + host + *.mktoresp.com + + + + Moana Surfrider (partial) + + ruleset + + name + Moana Surfrider (partial) + rule + + from + ^http://(?:www\.)?moana-surfrider\.com/images/ + to + https://www.moana-surfrider.com/images/ + + target + + + host + moana-surfrider.com + + + host + www.moana-surfrider.com + + + + + Moat (partial) + + ruleset + + name + Moat (partial) + rule + + + from + ^http://(www\.)?moat\.com/ + to + https://$1moat.com/ + + + from + ^https?://(?:www\.)?moatads\.com/$ + to + https://www.moat.com/ + + + securecookie + + host + ^(?:www\.)?moat\.com$ + name + .* + + target + + + host + moat.com + + + host + *.moat.com + + + host + moatads.com + + + host + www.moatads.com + + + + + Moava + + ruleset + + name + Moava + rule + + from + ^http://(www\.)?moava\.org/ + to + https://$1moava.org/ + + securecookie + + host + ^.*\.moava\.org$ + name + .+ + + target + + + host + moava.org + + + host + *.moava.org + + + + + MobStac (partial) + + ruleset + + name + MobStac (partial) + rule + + + from + ^https?://(www\.)?mobstac\.com/a/(login|password/reset)(/)? + to + https://$1mobstac.com/a/login$2$3 + + + from + ^https?://cdn\.mobstac\.com/ + to + https://d9ic2hg1x4ep8.cloudfront.net/ + + + target + + + host + mobstac.com + + + host + *.mobstac.com + + + + + MobiGum.com + + ruleset + + name + MobiGum.com + rule + + from + ^http://(ndpeeps\.|www\.)?mobigum\.com/ + to + https://$1mobigum.com/ + + securecookie + + host + ^\.mobigum\.com$ + name + .+ + + target + + + host + mobigum.com + + + host + *.mobigum.com + + + + + MobiHand + + ruleset + + name + MobiHand + rule + + + from + ^https?://(?:www\.)?mobihand\.com/ + to + https://www.mobihand.com/ + + + from + ^http://(www\.)?mobireach\.com/ + to + https://$1mobireach.com/ + + + securecookie + + host + ^(www\.)?mobi(hand|reach)\.com$ + name + .* + + target + + + host + mobihand.com + + + host + www.mobihand.com + + + host + mobireach.com + + + host + www.mobireach.com + + + + + MobiHand clients + + ruleset + + name + MobiHand clients + rule + + from + ^https?://store\.androidguys\.com/common_files/ + to + https://www.mobihand.com/common_files/ + + target + + host + store.androidguys.com + + + + Mobify + + ruleset + + exclusion + + pattern + ^http://support\. + + name + Mobify + rule + + + from + ^http://(\w+\.)?mobify\.com/ + to + https://$1mobify.com/ + + + from + ^http://(?:(community\.)|www\.)?mobify\.me/ + to + https://$1mobify.com/ + + + from + ^http://(?:www\.)?mobify\.net/ + to + https://mobify.com/ + + + from + ^http://mobifyagogo\.wpengine\.netdna-cdn\.com/ + to + https://www.mobify.com/ + + + securecookie + + host + ^.*\.mobify\.com$ + name + .* + + target + + + host + mobify.com + + + host + *.mobify.com + + + host + mobify.me + + + host + *.mobify.me + + + host + mobifyagogo.wpengine.netdna-cdn.com + + + + + Mobile Asia Expo (partial) + + ruleset + + name + Mobile Asia Expo (partial) + rule + + from + ^http://content\.mobileasiaexpo\.com/ + to + https://d1cu38qo94v965.cloudfront.net/ + + target + + host + content.mobileasiaexpo.com + + + + Mobile Nations (partial) + + ruleset + + exclusion + + pattern + ^http://shop\.mobilenations\.com/+(?!images/|store_images/|v3_templates/) + + name + Mobile Nations (partial) + rule + + + from + ^http://(passport|shop)\.mobilenations\.com/ + to + https://$1.mobilenations.com/ + + + from + ^http://(?:cdn\.passport|passport-cdn)\.mobilenations\.com/ + to + https://passport-cdn.mobilenations.com/ + + + target + + host + *.mobilenations.com + + + + Mobile Vikings (partial) + + ruleset + + name + Mobile Vikings (partial) + rule + + from + ^http://(www\.)?mobilevikings\.com/ + to + https://$1mobilevikings.com/ + + securecookie + + host + ^(?:www\.)?mobilevikings\.com$ + name + .+ + + target + + + host + mobilevikings.com + + + host + www.mobilevikings.com + + + + + MobileCore.com + + ruleset + + name + MobileCore.com + rule + + from + ^http://(www\.)?mobilecore\.com/ + to + https://$1mobilecore.com/ + + target + + + host + mobilecore.com + + + host + www.mobilecore.com + + + + + MobileRead (partial) + + ruleset + + name + MobileRead (partial) + rule + + from + ^http://dev\.mobileread\.com/ + to + https://dev.mobileread.com/ + + securecookie + + host + ^dev.mobileread.com$ + name + .+ + + target + + host + dev.mobileread.com + + + + Mobio INsider + + ruleset + + name + Mobio INsider + rule + + + from + ^http://(s\.|www\.)?mobioinsider\.com/ + to + https://$1mobioinsider.com/ + + + from + ^http://(www\.)?stage-mobioinsider\.com/ + to + https://$1stage-mobioinsider.com/ + + + securecookie + + host + ^(?:w*\.)?(?:stage-)?mobioinsider\.com$ + name + .+ + + target + + + host + mobioinsider.com + + + host + *.mobioinsider.com + + + host + stage-mobioinsider.com + + + host + *.stage-mobioinsider.com + + + + + Mobygames.com + + ruleset + + name + Mobygames.com + rule + + + from + ^https?://(?:pics\.|www\.)?mobygames\.com/ + to + https://www.mobygames.com/ + + + from + ^https://www\.mobygames\.com/http://pics\.mobygames\.com/ + to + https://www.mobygames.com/ + + + target + + + host + *.mobygames.com + + + host + mobygames.com + + + + + Mobypicture + + ruleset + + name + Mobypicture + rule + + + from + ^http://(?:\w+\.)?media\.mobyhub\.com/ + to + https://d1u33j8blhxgzy.cloudfront.net/ + + + from + ^http://((?:www\.)?api\.|www\.)?mobypicture\.com/ + to + https://$1mobypicture.com/ + + + from + ^http://secure\.mobypicture\.com/ + to + https://www.mobypicture.com/ + + + from + ^http://(?:a\d\.)?img\.mobypicture\.com/ + to + https://d2d8v8ddwfpkhk.cloudfront.net/ + + + from + ^http://layout\.mobypicture\.com/ + to + https://dq8u4hkdxtrwa.cloudfront.net/ + + + from + ^http://static\.mobypicture\.com/ + to + https://d3l076gtvxuom7.cloudfront.net/ + + + from + ^http://vid\.mobypicture\.com/ + to + https://dxujr96dorra9.cloudfront.net/ + + + target + + + host + media.mobyhub.com + + + host + *.media.mobyhub.com + + + host + mobypicture.com + + + host + *.mobypicture.com + + + + + MochaHost + + ruleset + + name + MochaHost + platform + mixedcontent + rule + + from + ^http://(www\.)?mochahost\.com/ + to + https://$1mochahost.com/ + + securecookie + + host + ^(www\.)?mochahost\.com$ + name + .* + + target + + + host + mochahost.com + + + host + www.mochahost.com + + + + + Mochi ads.com + + ruleset + + name + Mochi ads.com + rule + + from + ^http://thumbs\.mochiads\.com/ + to + https://a248.e.akamai.net/f/478/4144/6/thumbs.mochiads.com/ + + target + + host + thumbs.mochiads.com + + + + Mochimedia (partial) + + ruleset + + exclusion + + pattern + ^http://(games|wiki)\.mochimedia\.com/ + + name + Mochimedia (partial) + rule + + from + ^http://([^@:/]*)\.mochimedia\.com/ + to + https://$1.mochimedia.com/ + + target + + host + *.mochimedia.com + + + + Mod DB.com (partial) + + ruleset + + name + Mod DB.com (partial) + rule + + from + ^http://s(?:ecure|tatic)\.moddb\.com/ + to + https://secure.moddb.com/ + + target + + host + *.moddb.com + + + + ModCloth.com (partial) + + ruleset + + name + ModCloth.com (partial) + rule + + + from + ^http://(?:www\.)?modcloth\.com/(?=favicon\.ico|customers/(?:account|login)s/create\.json|personalization\.json|storefront/(?:latest/(?:\w+_image_url|header_links)|modal_windows/sign_in_or_join)(?:$|[?/])) + to + https://www.modcloth.com/ + + + from + ^http://cdn0\.modcloth\.com/ + to + https://cdn0.modcloth.com/ + + + from + ^http://(cdn1\d|productshots\d)\.modcloth\.net/ + to + https://$1.modcloth.net/ + + + securecookie + + host + ^\.modcloth\.com$ + name + ^s_\w+$ + + target + + + host + modcloth.com + + + host + *.modcloth.com + + + host + *.modcloth.net + + + + + ModMyPi + + ruleset + + name + ModMyPi + rule + + from + ^http://(www\.)?modmypi\.com/ + to + https://$1modmypi.com/ + + securecookie + + host + ^\.?www\.modmypi\.com$ + name + .+ + + target + + + host + modmypi.com + + + host + *.modmypi.com + + + + + ModMyi + + ruleset + + name + ModMyi + rule + + from + ^http://(www\.)?modmyi\.com/ + to + https://$1modmyi.com/ + + securecookie + + host + ^\.?modmyi\.com$ + name + .+ + + target + + + host + modmyi.com + + + host + *.modmyi.com + + + + + ModSecurity + + ruleset + + name + ModSecurity + rule + + from + ^http://(?:www\.)?modsecurity\.org/ + to + https://modsecurity.org/ + + target + + + host + modsecurity.org + + + host + www.modsecurity.org + + + + + Model Mayhem (partial) + + ruleset + + name + Model Mayhem (partial) + platform + mixedcontent + rule + + from + ^https?://(?:secure\.|www\.)?modelmayhem\.com/ + to + https://secure.modelmayhem.com/ + + securecookie + + host + ^.*\.modelmayhem\.com$ + name + .+ + + target + + + host + modelmayhem.com + + + host + *.modelmayhem.com + + + + + Model View Culture.com (false MCB) + + ruleset + + name + Model View Culture.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?modelviewculture\.com/ + to + https://$1modelviewculture.com/ + + target + + + host + modelviewculture.com + + + host + www.modelviewculture.com + + + + + Model View Culture.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?modelviewculture.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Model View Culture.com (partial) + platform + mixedcontent + rule + + from + ^http://(images\.|www\.)?modelviewculture\.com/ + to + https://$1modelviewculture.com/ + + target + + + host + modelviewculture.com + + + host + *.modelviewculture.com + + + + + Modern Crypto.org + + ruleset + + name + Modern Crypto.org + rule + + from + ^http://(www\.)?moderncrypto\.org/ + to + https://$1moderncrypto.org/ + + target + + + host + moderncrypto.org + + + host + www.moderncrypto.org + + + + + Modern Giver + + ruleset + + name + Modern Giver + rule + + + from + ^http://(?:www\.)?moderngiver\.com/ + to + https://moderngiver.com/ + + + from + ^http://(?:www\.)?simplegiver\.com/ + to + https://www.moderngiver.com/ + + + securecookie + + host + ^\.moderngiver\.com$ + name + .+ + + target + + + host + moderngiver.com + + + host + *.moderngiver.com + + + host + simplegiver.com + + + host + www.simplegiver.com + + + + + Modernus + + ruleset + + name + Modernus + rule + + + from + ^http://login\.modernus\.is/ + to + https://login.modernus.is/ + + + from + ^http://secure\.teljari\.is/ + to + https://secure.teljari.is/ + + + target + + + host + login.modernus.is + + + host + secure.teljari.is + + + + + Modlife + + ruleset + + name + Modlife + rule + + + from + ^http://(?:www\.)?modlife\.com/ + to + https://modlife.com/ + + + from + ^http://images\.modlife\.com/ + to + https://d1gy20lpqgjyb5.cloudfront.net/ + + + target + + + host + modlife.com + + + host + *.modlife.com + + + + + Modulus.io (partial) + + ruleset + + name + Modulus.io (partial) + rule + + from + ^http://(?:(addons\.)|www\.)?modulus\.io/ + to + https://$1modulus.io/ + + securecookie + + host + ^\.modulus\.io$ + name + ^modulus\.sid$ + + target + + + host + modulus.io + + + host + *.modulus.io + + + + + Moevideo + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?moevideo\.net/geocode\.php(?:\?|$) + + + pattern + ^http://(?:www\.)?moevideo\.net/(?:crossdomain\.xml|geocode\.php)(?:\?|$) + + + name + Moevideo + rule + + from + ^http://(www\.)?moevideo\.net/ + to + https://$1moevideo.net/ + + securecookie + + host + ^(?:www\.)?moevideo\.net$ + name + .+ + + target + + + host + moevideo.net + + + host + www.moevideo.net + + + + + Mofobian.com (partial) + + ruleset + + name + Mofobian.com (partial) + rule + + from + ^http://(?:www\.)?mofobian\.com/(favicon\.ico|wp-content/|wp-includes/) + to + https://secure.bluehost.com/~mofobian/$1 + + target + + + host + mofobian.com + + + host + www.mofobian.com + + + + + MoinMoin + + ruleset + + name + MoinMoin + rule + + from + ^http://(www\.)?moinmo\.in/ + to + https://$1moinmo.in/ + + target + + + host + moinmo.in + + + host + www.moinmo.in + + + + + Moja.tatrabanka.sk + + ruleset + + name + Moja.tatrabanka.sk + rule + + from + ^http://moja\.tatrabanka\.sk/ + to + https://moja.tatrabanka.sk/ + + target + + host + moja.tatrabanka.sk + + + + Mojandroid.sk + + ruleset + + name + Mojandroid.sk + rule + + from + ^http://(www\.)?mojandroid\.sk/ + to + https://www.mojandroid.sk/ + + target + + + host + mojandroid.sk + + + host + www.mojandroid.sk + + + + + MokaFive (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?moka5\.com/ios$ + + name + MokaFive (partial) + rule + + + from + ^http://(blog\.|www\.)?moka(?:5|five)\.com/ + to + https://$1mokafive.com/ + + + downgrade + 1 + from + ^https?://(www\.)?mokafive\.com/ios$ + to + http://$1moka5.com/ios + + + securecookie + + host + ^(.*\.)?mokafive\.com$ + name + .* + + target + + + host + moka5.com + + + host + *.moka5.com + + + host + mokafive.com + + + host + *.mokafive.com + + + + + Mollom + + ruleset + + name + Mollom + rule + + from + ^http://((?:wdc-api04|wdc-cmp01|www|xmlrpc2)\.)?mollom\.com/ + to + https://$1mollom.com/ + + securecookie + + host + ^\.mollom\.com$ + name + .+ + + target + + + host + mollom.com + + + host + *.mollom.com + + + + + MomentusMedia + + ruleset + + name + MomentusMedia + platform + mixedcontent + rule + + + from + ^http://momentusmedia\.com/ + to + https://momentusmedia.com/ + + + from + ^http://www\.momentusmedia\.com/ + to + https://www.momentusmedia.com/ + + + securecookie + + host + ^(.+\.)?momentusmedia\.com$ + name + .* + + target + + + host + momentusmedia.com + + + host + www.momentusmedia.com + + + + + Mommys Little Sunshine.com (partial) + + ruleset + + name + Mommys Little Sunshine.com (partial) + rule + + from + ^http://(www\.)?mommyslittlesunshine\.com/(?=favicon\.ico|images/|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1mommyslittlesunshine.com/ + + target + + + host + mommyslittlesunshine.com + + + host + www.mommyslittlesunshine.com + + + + + Monarch.co.uk + + ruleset + + name + Monarch.co.uk + platform + mixedcontent + rule + + from + ^http://(?:www\.)?monarch\.co\.uk/ + to + https://www.monarch.co.uk/ + + target + + + host + monarch.co.uk + + + host + www.monarch.co.uk + + + + + Monetate (partial) + + ruleset + + name + Monetate (partial) + rule + + + from + ^http://university\.monetate\.com/ + to + https://monetate-university.herokuapp.com/ + + + from + ^http://b\.monetate\.net/ + to + https://a248.e.akamai.net/f/727/7826/3m/b.monetate.net/ + + + from + ^http://(d|marketer|sb)\.monetate\.net/ + to + https://$1.monetate.net/ + + + securecookie + + host + ^.+\.monetate\.net$ + name + .+ + + target + + + host + university.monetate.com + + + host + *.monetate.net + + + + + Money Advice Service (UK) + + ruleset + + name + Money Advice Service (UK) + rule + + + from + ^https?://moneyadviceservice\.org\.uk/ + to + https://www.moneyadviceservice.org.uk/ + + + from + ^http://([^/:@]+)?\.moneyadviceservice\.org\.uk/ + to + https://$1.moneyadviceservice.org.uk/ + + + target + + + host + moneyadviceservice.org.uk + + + host + *.moneyadviceservice.org.uk + + + + + Money Saving Expert.com (partial) + + ruleset + + name + Money Saving Expert.com (partial) + rule + + + from + ^http://images\d?\.moneysavingexpert\.com/ + to + https://c95735.ssl.cf3.rackcdn.com/ + + + from + ^http://static\d?\.moneysavingexpert\.com/ + to + https://c950035.ssl.cf3.rackcdn.com/ + + + target + + host + *.moneysavingexpert.com + + + + Money.pl (false MCB) + + ruleset + + exclusion + + + pattern + ^http;//(?:fundusze-(?:emerytal|inwestycyj)ne|karty-kredytowe|kredyty-(?:gotowk|samochod)owe|lokaty-bankowe)\.money\.com/[ijs]/ + + + pattern + ^http://praca\.money\.pl/img/ + + + pattern + ^http://www\.money\.pl/(?:i/|d/\w+/|u/money_chart/graphchart_hp\.php) + + + name + Money.pl (false MCB) + platform + mixedcontent + rule + + from + ^http://((?:autogielda|dom|edukacja|fundusze-(?:emerytal|inwestycyj)ne|grupy-dyskusyjne|karty-kredytowe|kredyty-(?:gotowk|samochod)owe|login|lokaty-bankowe|manager|moto|msp|news|pogoda|praca|prawo|tech|www)\.)?money\.pl/ + to + https://$1money.pl/ + + securecookie + + host + ^(?!direct\.)(?:.+\.)?money\.pl$ + name + .+ + + target + + + host + autogielda.money.pl + + + host + dom.money.pl + + + host + edukacja.money.pl + + + host + fundusze-emerytalne.money.pl + + + host + fundusze-inwestycyjne.money.pl + + + host + grupy-dyskusyjne.money.pl + + + host + karty-kredytowe.money.pl + + + host + kredyty-gotowkowe.money.pl + + + host + kredyty-samochodowe.money.pl + + + host + login.money.pl + + + host + lokaty-bankowe.money.pl + + + host + manager.money.pl + + + host + moto.money.pl + + + host + msp.money.pl + + + host + news.money.pl + + + host + pogoda.money.pl + + + host + praca.money.pl + + + host + prawo.money.pl + + + host + tech.money.pl + + + host + www.money.pl + + + host + *.www.money.pl + + + + + Money.pl (partial) + + ruleset + + exclusion + + + pattern + ^http://direct\.money\.pl/(?:kartykredytowe|leasing)(?:$|[?/]) + + + pattern + ^http;//(?:fundusze-(?:emerytal|inwestycyj)ne|karty-kredytowe|kredyty-(?:gotowk|samochod)owe|lokaty-bankowe)\.money\.com/(?![ijs]/) + + + pattern + ^http://praca\.money\.pl/(?!img/) + + + pattern + ^http://www\.money\.pl/(?!i/|d/\w+/|u/money_chart/graphchart_hp\.php) + + + name + Money.pl (partial) + rule + + from + ^http://(akademia|direct|fundusze-(?:emerytal|inwestycyj)ne|grupy-dyskusyjne|karty-kredytowe|kredyt(?:-mieszkaniowy|y-gotowkowe|y-samochodowe)|lokaty-bankowe|paszport|praca|static[12]|www)\.money\.pl/ + to + https://$1.money.pl/ + + securecookie + + + host + ^\.money\.pl$ + name + ^usertrack$ + + + host + ^(?:\.?akademia|\.direct|kredyt-mieszkaniowy)\.money\.pl$ + name + .+ + + + target + + host + *.money.pl + + + + Moneybookers + + ruleset + + name + Moneybookers + rule + + + from + ^http://i(1|2)\.mbsvr\.net/ + to + https://i$1.mbsvr.net/ + + + from + ^http://(www\.)?moneybookers\.com/ + to + https://$1moneybookers.com/ + + + securecookie + + host + ^(?:.*\.)?moneybookers\.com$ + name + .+ + + target + + + host + *.mbsvr.net + + + host + moneybookers.com + + + host + *.moneybookers.com + + + + + Mongabay.com (partial) + + ruleset + + name + Mongabay.com (partial) + rule + + + from + ^http://(news|supporter)\.mongabay\.com/ + to + https://$1.mongabay.com/ + + + from + ^http://www\.supporter\.mongabay\.com/(?:\?.*)?$ + to + https://news.mongabay.com/ + + + securecookie + + host + ^(?:news|supporter)\.mongabay\.com$ + name + .+ + + target + + host + *.mongabay.com + + + + MongoDB.com (partial) + + ruleset + + name + MongoDB.com (partial) + rule + + from + ^http://((?:education|university|www)\.)?mongodb\.com/ + to + https://$1mongodb.com/ + + securecookie + + host + ^(?:education|university)\.mongodb\.com$ + name + .+ + + target + + + host + mongodb.com + + + host + *.mongodb.com + + + + + MonkeyGuts.com + + ruleset + + name + MonkeyGuts.com + rule + + from + ^http://(www\.)?monkeyguts\.com/ + to + https://$1monkeyguts.com/ + + securecookie + + host + ^monkeyguts\.com$ + name + .+ + + target + + + host + monkeyguts.com + + + host + www.monkeyguts.com + + + + + Monoprice + + ruleset + + name + Monoprice + rule + + + from + ^https?://(?:www\.)?monoprice\.com/ + to + https://www.monoprice.com/ + + + from + ^http://images\.monoprice\.com/ + to + https://images.monoprice.com/ + + + securecookie + + host + ^(?:www)?\.monoprice\.com$ + name + .+ + + target + + + host + monoprice.com + + + host + *.monoprice.com + + + + + Monotype Imaging (partial) + + ruleset + + exclusion + + pattern + ^http://www\.fonts\.com/+web-fonts/\w+ + + name + Monotype Imaging (partial) + rule + + + from + ^http://(?:www\.)?ascenderfonts\.com/(?=account/login/|af/|local/) + to + https://www.ascenderfonts.com/ + + + from + ^http://(?:www\.)?fontmarketplace\.com/(?=images/|local/|signin\.aspx$) + to + https://www.fontmarketplace.com/ + + + from + ^http://(?:www(?:\d\d)?\.)?fonts\.com/(?!$) + to + https://www.fonts.com/ + + + from + ^http://fast\.fonts\.com/ + to + https://fast.fonts.com/ + + + from + ^http://(?:www\.)?webfonts\.fonts\.com/(?=[Cc]ontent/|min/|.+/Subscription/) + to + https://webfonts.fonts.com/ + + + from + ^http://webfonts\.fontslive\.com/ + to + https://webfonts.fontslive.com/ + + + from + ^http://frs\.monotypeimaging\.com/ + to + https://frs.monotypeimaging.com/ + + + target + + + host + ascenderfonts.com + + + host + www.ascenderfonts.com + + + host + fontmarketplace.com + + + host + www.fontmarketplace.com + + + host + fonts.com + + + host + *.fonts.com + + + host + webfonts.fonts.com + + + host + www.webfonts.fonts.com + + + host + webfonts.fontslive.com + + + host + frs.monotypeimaging.com + + + + + Monsoon (partial) + + ruleset + + name + Monsoon (partial) + rule + + + from + ^https?://media\.monsoon\.co\.uk/ + to + https://uk.monsoon.co.uk/ + + + from + ^http://uk\.monsoon\.co\.uk/(medias/|monsoon/|registerSession\.gif|static/) + to + https://uk.monsoon.co.uk/$1 + + + target + + host + *.monsoon.co.uk + + + + Monster (partial) + + ruleset + + exclusion + + pattern + ^http://hiring\.(?:[\w-]+\.)?monster\.com/(?!favicon\.ico|images/|(?:Script|Web)Resource\.axd|[sS]ervices/|SharedUI/) + + name + Monster (partial) + rule + + + from + ^http://(hiring(?:\.[\w-]+)?|cookie|login|oas)\.monster\.com/ + to + https://$1.monster.com/ + + + from + ^http://jdn\.monster\.com/ + to + https://a248.e.akamai.net/f/479/5386/8/jdn.monster.com/ + + + from + ^http://media\.monster\.com/ + to + https://a248.e.akamai.net/f/1015/8220/1m/media.monster.com/ + + + securecookie + + + host + ^\.monster\.com$ + name + ^(?:OAX|v1st|WT_FPC)$ + + + host + ^(?:cookie|login|oas)\.monster\.com$ + name + .+ + + + target + + host + *.monster.com + + + + Monster WoW + + ruleset + + name + Monster WoW + rule + + from + ^http://(armory\.|forum\.|www\.)?monster-wow\.com/ + to + https://$1monster-wow.com/ + + securecookie + + host + ^(?:.*\.)?monster-wow\.com$ + name + .+ + + target + + + host + monster-wow.com + + + host + *.monster-wow.com + + + + + MonsterDivx.com (partial) + + ruleset + + name + MonsterDivx.com (partial) + rule + + from + ^http://(www\.)?monsterdivx\.com/ + to + https://$1monsterdivx.com/ + + securecookie + + host + ^monsterdivx\.com$ + name + .+ + + target + + + host + monsterdivx.com + + + host + www.monsterdivx.com + + + + + Monterey Bay Aquarium + + ruleset + + name + Monterey Bay Aquarium + rule + + from + ^http://(www\.)?montereybayaquarium\.org/ + to + https://$1montereybayaquarium.org/ + + securecookie + + host + ^www\.montereybayaquarium\.org$ + name + .+ + + target + + + host + montereybayaquarium.org + + + host + www.montereybayaquarium.org + + + + + Monty Program + + ruleset + + name + Monty Program + rule + + from + ^https?://(?:(blog\.)|www\.)?montyprogram\.com/ + to + https://$1montyprogram.com/ + + target + + + host + montyprogram.com + + + host + *.montyprogram.com + + + + + MoodSmith.com + + ruleset + + name + MoodSmith.com + rule + + from + ^http://(www\.)?moodsmith\.com/ + to + https://$1moodsmith.com/ + + securecookie + + host + ^(?:w*\.)?moodsmith\.com$ + name + .+ + + target + + + host + moodsmith.com + + + host + *.moodsmith.com + + + + + Moodle.org (partial) + + ruleset + + name + Moodle.org (partial) + rule + + from + ^http://(?:(download\.|tracker\.)|www\.)?moodle\.org/ + to + https://$1moodle.org/ + + securecookie + + host + ^(?:download\.|tracker\.|\.)?moodle\.org$ + name + .+ + + target + + + host + moodle.org + + + host + *.moodle.org + + + + + Mookie1.com + + ruleset + + name + Mookie1.com + rule + + from + ^http://(t1?|b3-uk|b3|dna1|ib)\.mookie1\.com/ + to + https://$1.mookie1.com/ + + securecookie + + host + .*\.mookie1\.com$ + name + .+ + + target + + host + *.mookie1.com + + + + MoonPig + + ruleset + + name + MoonPig + rule + + + from + ^http://(?:www\.)?moonpig\.com/ + to + https://moonpig.com/ + + + from + ^http://(?:www\.)?moonpig\.com\.au/ + to + https://www.moonpig.com.au/ + + + securecookie + + host + ^(.+\.)?moonpig\.com(\.au)?$ + name + .* + + target + + + host + moonpig.com + + + host + www.moonpig.com + + + host + moonpig.com.au + + + host + www.moonpig.com.au + + + + + Moonfruit.com (partial) + + ruleset + + name + Moonfruit.com (partial) + rule + + + from + ^http://(?:www\.)?moonfruit\.com/ + to + https://www.moonfruit.com/ + + + from + ^http://secure\.moonfruit\.com/ + to + https://secure.moonfruit.com/ + + + target + + + host + moonfruit.com + + + host + *.moonfruit.com + + + + + Mooshi.com.au (partial) + + ruleset + + name + Mooshi.com.au (partial) + rule + + from + ^http://(www\.)?mooshi\.com\.au/(\?ai1ec_render_css=|(?:my-account|pay)(?:$|\?|/)|wp-content/) + to + https://$1mooshi.com.au/$1 + + target + + + host + mooshi.com.au + + + host + www.mooshi.com.au + + + + + Moot.it + + ruleset + + name + Moot.it + rule + + + from + ^http://(?:(api\.)|www\.)?moot\.it/ + to + https://$1moot.it/ + + + from + ^http://(?:cd|origi)n\.moot\.it/ + to + https://cdn.moot.it/ + + + securecookie + + host + ^moot\.it$ + name + .+ + + target + + + host + moot.it + + + host + *.moot.it + + + + + Moovweb (partial) + + ruleset + + name + Moovweb (partial) + rule + + + from + ^http://(?:www\.)?moovweb\.com/ + to + https://www.moovweb.com/ + + + from + ^http://(console|help)\.moovweb\.com/ + to + https://$1.moovweb.com/ + + + from + ^http://(assets|cloud)\.moovweb\.net/ + to + https://$1.moovweb.net/ + + + securecookie + + host + ^(?:help)?\.moovweb\.com$ + name + .+ + + target + + + host + moovweb.com + + + host + *.moovweb.com + + + host + *.moovweb.net + + + + + Mopidy.com (partial) + + ruleset + + name + Mopidy.com (partial) + rule + + from + ^http://(apt|docs)\.mopidy\.com/ + to + https://$1.mopidy.com/ + + securecookie + + host + ^\.mopidy\.com$ + name + ^__cfduid$ + + target + + host + *.mopidy.com + + + + Moreal.co + + ruleset + + name + Moreal.co + rule + + from + ^http://(crypteia\.|www\.)?moreal\.co/ + to + https://$1moreal.co/ + + securecookie + + host + ^(?:crypteia|www)?\.moreal\.co$ + name + .+ + + target + + + host + moreal.co + + + host + *.moreal.co + + + + + Morello.se + + ruleset + + name + Morello.se + rule + + from + ^http://(www\.)?morello\.se/ + to + https://$1morello.se/ + + securecookie + + host + ^\.morello\.se$ + name + .+ + + target + + + host + morello.se + + + host + *.morello.se + + + + + Moreover Technologies (partial) + + ruleset + + name + Moreover Technologies (partial) + rule + + from + ^http://(c|newsdesk4)\.moreover\.com/ + to + https://$1.moreover.com/ + + securecookie + + host + ^newsdesk4\.moreover\.com$ + name + .+ + + target + + host + *.moreover.com + + + + Morning Star Online.co.uk + + ruleset + + name + Morning Star Online.co.uk + rule + + from + ^http://(shop\.|www\.)?morningstaronline\.co\.uk/ + to + https://$1morningstaronline.co.uk/ + + securecookie + + host + ^(?:\.|www\.)?morningstaronline\.co\.uk$ + name + .+ + + target + + + host + morningstaronline.co.uk + + + host + *.morningstaronline.co.uk + + + + + Morningstar (partial) + + ruleset + + name + Morningstar (partial) + rule + + from + ^http://(corporate|media|video)\.morningstar\.com/ + to + https://$1.morningstar.com/ + + securecookie + + host + ^corporate\.morningstar\.com$ + name + .+ + + target + + host + *.morningstar.com + + + + Morningstar.co.uk (partial) + + ruleset + + name + Morningstar.co.uk (partial) + rule + + from + ^http://(?:www\.)?morningstar\.co\.uk/(?=.+/css/|favicon\.ico|includes/|static/) + to + https://www.morningstar.co.uk/ + + target + + + host + morningstar.co.uk + + + host + www.morningstar.co.uk + + + + + Moroccan Bazaar + + ruleset + + name + Moroccan Bazaar + rule + + from + ^http://(www\.)?moroccanbazaar\.co\.uk/ + to + https://$1moroccanbazaar.co.uk/ + + securecookie + + host + ^(.*\.)?moroccanbazaar\.co\.uk$ + name + .* + + target + + + host + moroccanbazaar.co.uk + + + host + *.moroccanbazaar.co.uk + + + + + Morpho.hu + + ruleset + + name + Morpho.hu + rule + + from + ^http://morpho\.hu/ + to + https://morpho.hu/ + + securecookie + + host + ^morpho\.hu$ + name + .+ + + target + + host + morpho.hu + + + + Morrisons + + ruleset + + name + Morrisons + rule + + + from + ^http://(?:www\.)?morrisons\.co\.uk/ + to + https://your.morrisons.com/ + + + from + ^http://(admin|groceries|your)\.morrisons\.co(?:\.uk|m)/ + to + https://$1.morrisons.com/ + + + from + ^http://(www\.)?morrisons\.com/ + to + https://$1morrisons.com/ + + + securecookie + + host + ^(?:\.?groceries|\.?your)?\.morrisons\.com$ + name + .+ + + target + + + host + morrisons.co.uk + + + host + *.morrisons.co.uk + + + host + morrisons.com + + + host + *.morrisons.com + + + + + Morrisons Cellar.com + + ruleset + + name + Morrisons Cellar.com + rule + + + from + ^http://(www\.)?morrisonscellar\.com/+(?:\?(.+))?$ + to + https://$1morrisonscellar.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?storeId=10701&$2 + + + from + ^http://(www\.)?morrisonscellar\.com/+(?:\?)?$ + to + https://$1morrisonscellar.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?storeId=10701 + + + from + ^http://(img\.|www\.)?morrisonscellar\.com/ + to + https://$1morrisonscellar.com/ + + + securecookie + + host + ^www\.morrisonscellar\.com$ + name + .+ + + target + + + host + morrisonscellar.com + + + host + *.morrisonscellar.com + + + + + Mosaic Science.com (partial) + + ruleset + + name + Mosaic Science.com (partial) + rule + + from + ^http://(?:www\.)?mosaicscience\.com/(?=sites/) + to + https://mosaicscience.com/ + + target + + + host + mosaicscience.com + + + host + www.mosaicscience.com + + + + + Motesplatsen.se + + ruleset + + name + Motesplatsen.se + rule + + from + ^http://www\.motesplatsen\.se/ + to + https://www.motesplatsen.se/ + + target + + host + www.motesplatsen.se + + + + MotherJones.com (partial) + + ruleset + + name + MotherJones.com (partial) + rule + + + from + ^http://(www\.)?motherjones\.com/(files|misc|sites|transition)/ + to + https://$1motherjones.com/$2/ + + + from + ^https?://(?:(assets)|mj(cdn))\.motherjones\.com/ + to + https://mj$1$2.s3.amazonaws.com/ + + + from + ^https?://oascentral\.motherjones\.com/ + to + https://oasc11a.247realmedia.com/ + + + from + ^http://secure\.motherjones\.com/ + to + https://secure.motherjones.com/ + + + target + + + host + motherjones.com + + + host + *.motherjones.com + + + + + Motherless (partial) + + ruleset + + name + Motherless (partial) + rule + + from + ^http://(?:www\.)?motherless\.com/(favicon\.ico|images/|login|scripts/|styles/) + to + https://motherless.com/$1 + + target + + + host + motherless.com + + + host + www.motherless.com + + + + + Moto-G.com + + ruleset + + name + Moto-G.com + rule + + from + ^http://(?:www\.)?moto-g\.com/ + to + https://www.moto-g.com/ + + target + + + host + moto-g.com + + + host + www.moto-g.com + + + + + Motorola (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?motorola\.com/(?:Business|staticfiles)/ + + name + Motorola (partial) + rule + + + from + ^http://[ls]\.email-motorola\.com/ + to + https://s.email-motorola.com/ + + + from + ^http://motorola\.com/ + to + https://www.motorola.com/ + + + from + ^http://(globalrepairtools|mediacenter|membership|sdc|www)\.motorola\.com/ + to + https://$1.motorola.com/ + + + from + ^http://cdn\.motorola-2\.com/ + to + https://cdn.motorola-2.com/ + + + from + ^https?://(?:www\.)?motorolasolutions.com/web/ + to + https://www.motorolasolutions.com/web/ + + + from + ^http://mediacenter\.motorolasolutions\.com/ + to + https://mediacenter.motorolasolutions.com/ + + + securecookie + + + host + ^(?:globalrepairtools|mediacenter|membership)\.motorola\.com$ + name + .+ + + + host + ^mediacenter\.motorolasolutions\.com$ + name + .+ + + + target + + + host + *.email-motorola.com + + + host + *.motorola.com + + + host + cdn.motorola-2.com + + + host + motorolasolutions.com + + + host + *.motorolasolutions.com + + + + + Motorola Trade Up + + ruleset + + name + Motorola Trade Up + rule + + from + ^http://(?:www\.)?mototradeup\.com/ + to + https://www.mototradeup.com/ + + securecookie + + host + ^\.mototradeup\.com$ + name + .+ + + target + + + host + mototradeup.com + + + host + *.mototradeup.com + + + + + Motricity (partial) + + ruleset + + name + Motricity (partial) + rule + + from + ^http://(alltel\.web|webshared)\.mcore\.com/ + to + https://$1.mcore.com/ + + target + + + host + alltel.web.mcore.com + + + host + webshared.mcore.com + + + + + Mount Sinai.org + + ruleset + + name + Mount Sinai.org + rule + + from + ^http://((?:mychart|philanthropy|www)\.)?mountsinai\.org/ + to + https://$1mountsinai.org/ + + securecookie + + host + ^(?:(?:mychart|philanthropy|www)\.)?mountsinai\.org$ + name + .+ + + target + + + host + mountsinai.org + + + host + *.mountsinai.org + + + + + Mountspace.com + + ruleset + + name + Mountspace.com + rule + + from + ^http://(www\.)?mountspace\.com/ + to + https://www.mountspace.com/ + + target + + + host + www.mountspace.com + + + host + mountspace.com + + + + + Mouse Blocker.com + + ruleset + + name + Mouse Blocker.com + rule + + from + ^http://(www\.)?mouseblocker\.com/ + to + https://$1mouseblocker.com/ + + securecookie + + host + ^(?:w*\.)?mouseblocker\.com$ + name + .+ + + target + + + host + mouseblocker.com + + + host + *.mouseblocker.com + + + + + Mouseflow (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?mouseflow\.com/sign-in + + name + Mouseflow (partial) + rule + + from + ^http://(cdn\.|www\.)?mouseflow\.com/ + to + https://$1mouseflow.com/ + + target + + + host + mouseflow.com + + + host + *.mouseflow.com + + + + + Mousematrix.com + + ruleset + + name + Mousematrix.com + rule + + from + ^http://(www\.)?mousematrix\.com/ + to + https://$1mousematrix.com/ + + target + + + host + mousematrix.com + + + host + www.mousematrix.com + + + + + Movable Type.com + + ruleset + + name + Movable Type.com + rule + + from + ^http://(www\.)?movabletype\.com/ + to + https://$1movabletype.com/ + + target + + + host + movabletype.com + + + host + www.movabletype.com + + + + + MoveOn + + ruleset + + name + MoveOn + rule + + + from + ^https?://(?:www\.)?moveon\.org/([a-z0-9]+)$ + to + https://www.moveon.org/$1/ + + + from + ^https?://(pol|civic|civ)\.moveon\.org/([a-z0-9]+)$ + to + https://$1.moveon.org/$2/ + + + from + ^https?://civic\.moveon\.org/([a-z0-9]+){1}/{2,} + to + https://civic.moveon.org/$1/ + + + from + ^http://(?:www\.)?moveon\.org/r\? + to + https://www.moveon.org/r/? + + + from + ^http://(?:www\.)?moveon\.org/((?:[^a-z0-9]+)|(?:[a-z0-9]{2,}\?)|(?:[a-qs-z0-9]\?)|(?:[a-z0-9]+[^a-z0-9?]+)){1} + to + https://www.moveon.org/$1 + + + from + ^http://(pol|civ)\.moveon\.org/([^a-z0-9]+|(?:[a-z0-9]+[^a-z0-9]+)|$){1} + to + https://$1.moveon.org/$2 + + + from + ^http://civic\.moveon\.org/((?:[^a-z0-9]+)|(?:[a-z0-9]+[^a-z0-9/]+)|(?:[a-z0-9]+/(?:$|[^/]+))|$){1} + to + https://civic.moveon.org/$1 + + + from + ^https?://static\.petitions\.moveon\.org/ + to + https://d83190g0d3lhr.cloudfront.net/ + + + from + ^http://(?:www\.)?moveonpac\.org/ + to + https://www.moveonpac.org/ + + + target + + + host + moveon.org + + + host + *.moveon.org + + + host + moveonpac.org + + + host + www.moveonpac.org + + + + + MoveOn.org (false MCB) + + ruleset + + name + MoveOn.org (false MCB) + platform + mixedcontent + rule + + + from + ^http://petitions\.moveon\.org/ + to + https://petitions.moveon.org/ + + + from + ^http://(www\.)?signon\.org/ + to + https://$1signon.org/ + + + securecookie + + + host + ^petitions\.moveon\.org$ + name + .+ + + + host + ^\.signon\.org$ + name + .+ + + + target + + + host + petitions.moveon.org + + + host + signon.org + + + host + *.signon.org + + + + + Movelia + + ruleset + + name + Movelia + rule + + from + ^http://(?:www\.)?movelia\.es/ + to + https://www.movelia.es/ + + target + + + host + movelia.es + + + host + www.movelia.es + + + + + MovieTH.com + + ruleset + + name + MovieTH.com + rule + + from + ^http://(sexy\.|www2?\.)?movieth\.com/ + to + https://$1movieth.com/ + + securecookie + + host + ^\.movieth\.com$ + name + .+ + + target + + + host + movieth.com + + + host + *.movieth.com + + + + + MovieTickets.com + + ruleset + + name + MovieTickets.com + rule + + + from + ^http://(www\.)?movietickets\.com/ + to + https://$1movietickets.com/ + + + from + ^https?://a1608\.g\.akamai\.net/7/1608/1174/20136715301/ + to + https://a248.e.akamai.net/7/1608/1174/20136715301/ + + + from + ^https?://reviews\.movietickets\.com/(6056|module|static)/ + to + https://a248.e.akamai.net/7/1608/1174/20136715301/reviews.movietickets.com/$1/ + + + securecookie + + + host + ^(?:www\.)?movietickets\.com$ + name + .+ + + + host + ^\.movietickets\.com$ + name + ^s_\w\w$ + + + target + + + host + a1608.g.akamai.net + + + host + movietickets.com + + + host + *.movietickets.com + + + + + Moviefone + + ruleset + + name + Moviefone + rule + + from + ^https?://(?:(?:www\.)?blogsmithmedia\.com/)?(?:www\.)?moviefone\.com/ + to + https://www.moviefone.com/ + + securecookie + + host + ^(?:www)?\.moviefone\.com$ + name + .+ + + target + + + host + blogsmithmedia.com + + + host + www.blogsmithmedia.com + + + host + moviefone.com + + + host + www.moviefone.com + + + + + Movieposter.com + + ruleset + + name + Movieposter.com + rule + + from + ^http://(www\.)?movieposter\.com/ + to + https://$1movieposter.com/ + + target + + + host + movieposter.com + + + host + www.movieposter.com + + + + + Moxie Soft.com + + ruleset + + name + Moxie Soft.com + rule + + + from + ^http://(support\.|www\.)?gomoxie\.com/ + to + https://$1gomoxie.com/ + + + from + ^http://(www\.)?moxiesoft\.com/ + to + https://$1moxiesoft.com/ + + + from + ^http://resources\.moxiesoft\.com/(?=css/|images/|js/|rs/) + to + https://na-sjg.marketo.com/ + + + securecookie + + + host + ^(?:www\.)?(?:gomoxie|moxiesoft)\.com$ + name + .+ + + + host + ^support\.gomoxie\.com$ + name + ^$ + + + target + + + host + gomoxie.com + + + host + *.gomoxie.com + + + host + moxiesoft.com + + + host + *.moxiesoft.com + + + + + Mozdev (partial) + + ruleset + + name + Mozdev (partial) + rule + + + from + ^http://(hg\.|svn\.|www\.)?mozdev\.org/ + to + https://$1mozdev.org/ + + + from + ^http://bugzilla\.mozdev\.org/+ + to + https://www.mozdev.org/bugs/ + + + securecookie + + host + ^(.*\.)?mozdev\.org$ + name + .* + + target + + + host + mozdev.org + + + host + bugzilla.mozdev.org + + + host + hg.mozdev.org + + + host + svn.mozdev.org + + + host + www.mozdev.org + + + host + *.www.mozdev.org + + + + + Mozdev Group.com (partial) + + ruleset + + name + Mozdev Group.com (partial) + rule + + from + ^http://((?:air|emory|fresenius|ipcache|measurement|okcd|vantage|www)\.)?mozdevgroup\.com/ + to + https://$1mozdevgroup.com/ + + securecookie + + host + ^(?:air|emory|fresenius|ipcache|measurement|okcd|vantage)\.mozdevgroup\.com$ + name + .+ + + target + + + host + mozdevgroup.com + + + host + *.mozdevgroup.com + + + + + Mozest + + ruleset + + name + Mozest + rule + + + from + ^http://(g\.|j\.|z\.|narro\.)?mozest\.com/ + to + https://$1mozest.com/ + + + from + ^http://mozest\.org/ + to + https://mozest.org/ + + + target + + + host + g.mozest.com + + + host + j.mozest.com + + + host + z.mozest.com + + + host + narro.mozest.com + + + host + mozest.com + + + host + mozest.org + + + + + Mozilla + + ruleset + + exclusion + + + pattern + ^http://(?:www\.authstage|fxfeeds|identity|www-trunk\.stage|status)\.mozilla\.com/ + + + pattern + ^http://(?:[\w\.-]+\.)?phish-report\.mozilla\.com/ + + + pattern + ^http://(?:cdn|hardhat)\.mozilla\.net/ + + + pattern + ^http://(?:bonsai|browserquest|trychooser\.pub\.build|dxr|(?:(?!image)\w)+\.e|graphs|krakenbenchmark|mig|releases|sfx-images|start|w(?:ebsite|ww)-archive)\.mozilla\.org/ + + + name + Mozilla + rule + + + from + ^http://image\.e\.mozilla\.org/ + to + https://a248.e.akamai.net/f/1/1/1/image.e.mozilla.org/ + + + from + ^http://(www\.)?(drumbeat|webfwd)\.org/ + to + https://$1$2.org/ + + + from + ^http://labs\.mozilla\.(?:com|org)/+ + to + https://mozillalabs.com/ + + + from + ^https?://www\.mozilla\.net/ + to + https://www.mozilla.org/ + + + from + ^https?://download\.cdn\.mozilla\.net/ + to + https://ftp.mozilla.org/ + + + from + ^https?://getpersonas-cdn\.mozilla\.net/ + to + https://getpersonas.cdn.mozilla.net/ + + + from + ^http://([\w.-]+)\.mozilla\.net/ + to + https://$1.mozilla.net/ + + + from + ^https?://affiliates-cdn\.mozilla\.org/ + to + https://affiliates.mozilla.org/ + + + from + ^https?://talkback-public\.mozilla\.org/ + to + https://crash-stats.mozilla.com/ + + + from + ^http://([\w.-]+\.)?mozilla\.(com|org)/ + to + https://$1mozilla.$2/ + + + from + ^http://mdn\.mozillademos\.org/ + to + https://mdn.mozillademos.org/ + + + from + ^http://(\w+\.)?mozillaignite\.com/ + to + https://$1mozillaignite.com/ + + + from + ^http://(planet|support)\.mozillamessaging\.com/ + to + https://$1.mozillamessaging.com/ + + + securecookie + + + host + .*\.mozilla\.(?:com|org)$ + name + .+ + + + host + ^mozillaignite\.com$ + name + .+ + + + target + + + host + drumbeat.org + + + host + www.drumbeat.org + + + host + mozilla.com + + + host + *.mozilla.com + + + host + *.mozilla.net + + + host + mozilla.org + + + host + *.mozilla.org + + + host + mdn.mozillademos.org + + + host + mozillaignite.com + + + host + *.mozillaignite.com + + + host + *.mozillamessaging.com + + + host + webfwd.org + + + host + www.webfwd.org + + + + + Mozilla Labs.com + + ruleset + + name + Mozilla Labs.com + rule + + from + ^http://(\w+\.)?mozillalabs\.com/ + to + https://$1mozillalabs.com/ + + securecookie + + host + ^mozillalabs\.com$ + name + .+ + + target + + + host + mozillalabs.com + + + host + *.mozillalabs.com + + + + + Mozilla Persona + + ruleset + + name + Mozilla Persona + rule + + from + ^http://(apps\.|(?:static\.|verifier\.)?login\.|www\.)?persona\.org/ + to + https://$1persona.org/ + + target + + + host + persona.org + + + host + *.persona.org + + + + + Mozilla Webmaker + + ruleset + + name + Mozilla Webmaker + rule + + from + ^http://(popcorn\.|www\.)?webmaker\.org/ + to + https://$1webmaker.org/ + + securecookie + + host + ^(?:.+\.)?webmaker\.org$ + name + .+ + + target + + + host + webmaker.org + + + host + *.webmaker.org + + + + + Mozilla-Russia.org (partial) + + ruleset + + name + Mozilla-Russia.org (partial) + rule + + from + ^http://(?:(bugzilla\.|forum\.)|www\.)?mozilla-russia\.org/ + to + https://$1mozilla-russia.org/ + + securecookie + + host + ^(?:bugzilla|forum)\.mozilla-russia\.org$ + name + .+ + + target + + + host + mozilla-russia.org + + + host + *.mozilla-russia.org + + + + + Mozilla.com.tw (partial) + + ruleset + + name + Mozilla.com.tw (partial) + rule + + from + ^http://fxosphone\.mozilla\.com\.tw/ + to + https://fxosphone.mozilla.com.tw/ + + target + + host + fxosphone.mozilla.com.tw + + + + Mozilla.jp (partial) + + ruleset + + name + Mozilla.jp (partial) + rule + + from + ^http://(addons|dev|secure)\.mozilla\.jp/ + to + https://$1.mozilla.jp/ + + securecookie + + host + ^(?:addons|secure)\.mozilla\.jp$ + name + .+ + + target + + host + *.mozilla.jp + + + + Mozo.com.au (false MCB) + + ruleset + + name + Mozo.com.au (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.mozo\.co|(?:www\.)?mozo\.com\.au)/ + to + https://$1/ + + target + + + host + www.mozo.co + + + host + mozo.com.au + + + host + www.mozo.com.au + + + + + Mozo.com.au (partial) + + ruleset + + name + Mozo.com.au (partial) + rule + + + from + ^http://(www\.mozo\.co|(?:www\.)?mozo\.com\.au)/(?=favicon\.ico|images/|mozo_favicon\.ico) + to + https://$1/ + + + from + ^http://mozo4-assets\.mozo\.co/ + to + https://d2z6hwhdmvwrl2.cloudfront.net/ + + + from + ^http://news-assets\.mozo\.com\.au/ + to + https://d3ce7u6cfep64i.cloudfront.net/ + + + target + + + host + *.mozo.co + + + host + mozo.com.au + + + host + *.mozo.com.au + + + + + Mozy + + ruleset + + name + Mozy + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?mozy\.com/ + to + https://mozy.com/ + + + from + ^http://(?:www\.)?mozy\.co\.uk/ + to + https://mozy.co.uk/ + + + securecookie + + + host + ^(.+\.)?mozy\.com$ + name + .* + + + host + ^(.+\.)?mozy\.co\.uk$ + name + .* + + + target + + + host + mozy.com + + + host + mozy.co.uk + + + host + www.mozy.com + + + host + www.mozy.co.uk + + + + + Mpx + + ruleset + + name + Mpx + platform + mixedcontent + rule + + from + ^http://(?:www\.)?mpx\.no/ + to + https://www.mpx.no/ + + target + + + host + mpx.no + + + host + www.mpx.no + + + + + Mrs. McNasty's + + ruleset + + name + Mrs. McNasty's + rule + + from + ^http://(www\.)?mrsmcnastys\.com/ + to + https://$1mrsmcnastys.com/ + + securecookie + + host + ^(?:.*\.)?mrsmcnastys\.com$ + name + .+ + + target + + + host + mrsmcnastys.com + + + host + *.mrsmcnastys.com + + + + + Mstar.com (partial) + + ruleset + + name + Mstar.com (partial) + rule + + from + ^http://euim\.mstar\.com/ + to + https://euim.mstar.com/ + + target + + host + euim.mstar.com + + + + Mt.Gox + + ruleset + + name + Mt.Gox + rule + + from + ^http://((?:bitcoind|data|m|support|www|yubikey)\.)?mtgox\.com/ + to + https://$1mtgox.com/ + + securecookie + + host + ^(?:.*\.)?mtgox\.com$ + name + .+ + + target + + + host + mtgox.com + + + host + *.mtgox.com + + + + + Muckrock + + ruleset + + name + Muckrock + rule + + from + ^http://(www\.)?muckrock\.com/ + to + https://$1muckrock.com/ + + securecookie + + host + ^www\.muckrock\.com$ + name + .+ + + target + + + host + muckrock.com + + + host + www.muckrock.com + + + + + Mudcrab.us + + ruleset + + name + Mudcrab.us + platform + firefox + rule + + from + ^http://mudcrab\.us/ + to + https://mudcrab.us/ + + securecookie + + host + ^mudcrab\.us$ + name + .+ + + target + + host + mudcrab.us + + + + Muenchen.de + + ruleset + + name + Muenchen.de + rule + + from + ^http://www\.muenchen\.de/ + to + https://www.muenchen.de/ + + target + + host + *.muenchen.de + + + + MugenMonkey.com + + ruleset + + name + MugenMonkey.com + rule + + from + ^http://(beta\.|www\.)?mugenmonkey\.com/ + to + https://$1mugenmonkey.com/ + + securecookie + + host + ^\.?mugenmonkey\.com$ + name + .+ + + target + + + host + mugenmonkey.com + + + host + *.mugenmonkey.com + + + + + Mullet.se + + ruleset + + name + Mullet.se + rule + + + from + ^http://www\.mullet\.se/ + to + https://www.mullet.se/ + + + from + ^http://mullet\.se/ + to + https://mullet.se/ + + + target + + + host + mullet.se + + + host + www.mullet.se + + + + + Mullvad.net + + ruleset + + name + Mullvad.net + rule + + from + ^http://(www\.)?mullvad\.net/ + to + https://$1mullvad.net/ + + securecookie + + host + ^(?:www\.)?mullvad\.net$ + name + .+ + + target + + + host + mullvad.net + + + host + www.mullvad.net + + + + + MultiBit + + ruleset + + name + MultiBit + rule + + from + ^http://(www\.)?multibit\.org/ + to + https://$1multibit.org/ + + target + + + host + multibit.org + + + host + www.multibit.org + + + + + MultiSeek + + ruleset + + name + MultiSeek + rule + + from + ^https?://(?:(mail\.)|www\.)?multiseek\.net/ + to + https://$1multiseek.net/ + + target + + + host + multiseek.net + + + host + *.multiseek.net + + + + + MultiSoft (partial) + + ruleset + + name + MultiSoft (partial) + rule + + from + ^http://(www\.)?multisoft\.com/([aA]pp_[tT]hemes/|jssrc/|moduleskins/|[mM]ulti[sS]oft[cC]orporation/|[rR]ad[sS]kins/|[sS]kinning/|[wW]eb[rR]esource\.axd) + to + https://$1multisoft.com/$2 + + target + + + host + multisoft.com + + + host + www.multisoft.com + + + + + MultiVPN + + ruleset + + name + MultiVPN + rule + + from + ^http://(www\.)?multi-vpn\.biz/ + to + https://$1multi-vpn.biz/ + + securecookie + + host + ^(?:.*\.)?multi-vpn\.biz$ + name + .+ + + target + + + host + multi-vpn.biz + + + host + *.multi-vpn.biz + + + + + Multicast Media + + ruleset + + name + Multicast Media + rule + + + from + ^http://(?:www\.)?multicastmedia\.com/[^\?]*(\?.*)? + to + https://www.kitd.com/multicast/$1 + + + from + ^http://(static\.|vidego\.)?multicastmedia\.com/ + to + https://$1multicastmedia.com/ + + + securecookie + + host + ^vidego\.multicastmedia\.com$ + name + .+ + + target + + + host + multicastmedia.com + + + host + *.multicastmedia.com + + + + + Multicore-DevCon.com + + ruleset + + name + Multicore-DevCon.com + rule + + from + ^http://(www\.)?multicore-devcon\.com/ + to + https://$1multicore-devcon.com/ + + securecookie + + host + ^(?:www\.)?multicore-devcon\.com$ + name + .+ + + target + + + host + multicore-devcon.com + + + host + www.multicore-devcon.com + + + + + Multiply (partial) + + ruleset + + name + Multiply (partial) + rule + + from + ^http://(www\.)?multiply\.com/ + to + https://$1multiply.com/ + + securecookie + + host + ^\.multiply\.com$ + name + .+ + + target + + + host + multiply.com + + + host + *.multiply.com + + + + + Mumzworld.com + + ruleset + + name + Mumzworld.com + rule + + from + ^http://(?:media\.|(www\.))?mumzworld\.com/ + to + https://$1mumzworld.com/ + + securecookie + + host + ^\.mumzworld\.com$ + name + .+ + + target + + + host + mumzworld.com + + + host + *.mumzworld.com + + + + + Muni.cz (partial) + + ruleset + + exclusion + + + pattern + ^http://isc\.muni\.cz/+(?!\w+\.css|favicon\.(?:ico|png)|images/) + + + pattern + ^http://(?:www\.)?kite\.muni\.cz/+(?!css/|favicon\.ico|img/|online-application/public/login(?:$|[?/])) + + + name + Muni.cz (partial) + rule + + + from + ^http://((?:(?:www\.)?em2il|ezdroje|fadmin\.fi|(?:(?:dior|inet\.dis|idp2|marach|webserver|www)\.)?ics|inet|isc?|(?:www\.)?kite|knihovna|knihovna-tst|library|mailman|isois\.ois|intranet\.skm|www)\.)?muni\.cz/ + to + https://$1muni.cz/ + + + from + ^http://(?:www\.)?(cz|oi)s\.muni\.cz/ + to + https://$1s.muni.cz/ + + + from + ^http://discovery\.muni\.cz/+([^?]).* + to + https://search.ebscohost.com/login.aspx?authtype=cookie,ip,guest&profile=eds&groupid=infolib&custid=s8431878$1 + + + from + ^http://(?:www\.)?(fi|online|skm)\.muni\.cz/ + to + https://www.$1.muni.cz/ + + + from + ^http://scb\.ics\.muni\.cz/[^?]* + to + https://www.cerit.cz/cs/cerit-sc/ + + + from + ^http://(?:www\.)?info\.muni\.cz/+ + to + https://www.online.muni.cz/ + + + securecookie + + host + ^(?:czs|(?:www\.)?em2il|inet\.dis\.ics|inet|is|isois\.ois|www\.online|intranet\.skm|www)\.muni\.cz$ + name + .+ + + target + + + host + muni.cz + + + host + *.muni.cz + + + + + Munich Security Conference + + ruleset + + name + Munich Security Conference + rule + + + from + ^https?://securityconference\.de/ + to + https://www.securityconference.de/ + + + from + ^http://([^/:@]+)?\.securityconference\.de/ + to + https://$1.securityconference.de/ + + + securecookie + + host + ^(.*\.)?securityconference\.de$ + name + .+ + + target + + + host + securityconference.de + + + host + www.securityconference.de + + + + + Munzinger.de + + ruleset + + name + Munzinger.de + rule + + from + ^http://(?:www\.)?munzinger\.de/ + to + https://www.munzinger.de/ + + securecookie + + host + ^www\.munzinger\.de$ + name + .+ + + target + + + host + munzinger.de + + + host + www.munzinger.de + + + + + Muse.mu (partial) + + ruleset + + name + Muse.mu (partial) + rule + + + from + ^https?://(?:www\.)?muse\.mu/((?:_handlers|_iiwm|_popup|_static|_widgets|ugc_1)/|(?:Script|Web)Resource\.axd(?:$|\?)) + to + https://muse.mu/$1 + + + from + ^https?://musecdn\.warnerartists\.com/ + to + https://muse.mu/ + + + target + + + host + muse.mu + + + host + www.muse.mu + + + host + musecdn.warnerartists.com + + + + + Museter.com (partial) + + ruleset + + name + Museter.com (partial) + rule + + from + ^http://client\.museter\.com/ + to + https://client.museter.com/ + + securecookie + + host + ^client\.museter\.com$ + name + .+ + + target + + host + client.museter.com + + + + Museum of Science (partial) + + ruleset + + exclusion + + pattern + http://legacy\.mos\.org/(?!media/) + + name + Museum of Science (partial) + rule + + + from + ^https?://(?:www\.)?mos\.org/sites/dev-elvis\.mos\.org/themes/(.*)\.(jp|pn)g$ + to + https://store.mos.org/common/themes/$1.$2g + + + from + ^http://(legacy|store)\.mos\.org/ + to + https://$1.mos.org/ + + + securecookie + + host + ^\.mos\.org$ + name + ^MOS_store$ + + target + + + host + mos.org + + + host + *.mos.org + + + + + Music Teachers' Association of California + + ruleset + + name + Music Teachers' Association of California + rule + + from + ^http://(?:www\.)?mtac\.org/ + to + https://www.mtac.org/ + + target + + + host + mtac.org + + + host + *.mtac.org + + + + + Music Week + + ruleset + + name + Music Week + rule + + from + ^https?://(?:www\.)?musicweek\.com/ + to + https://www.musicweek.com/ + + securecookie + + host + ^www\.musicweek\.com$ + name + .* + + target + + + host + musicweek.com + + + host + www.musicweek.com + + + + + MusicBrainz + + ruleset + + name + MusicBrainz + rule + + + from + ^http://(www\.)?musicbrainz\.org/ + to + https://musicbrainz.org/ + + + from + ^http://([^/:@]*)\.musicbrainz\.org/ + to + https://$1.musicbrainz.org/ + + + from + ^http://(www\.)?coverartarchive\.org/ + to + https://coverartarchive.org/ + + + securecookie + + host + ^([^/:@]*\.)?musicbrainz\.org$ + name + .* + + target + + + host + musicbrainz.org + + + host + www.musicbrainz.org + + + host + wiki.musicbrainz.org + + + host + test.musicbrainz.org + + + host + beta.musicbrainz.org + + + host + coverartarchive.org + + + host + www.coverartarchive.org + + + + + Musician's Friend (partial) + + ruleset + + name + Musician's Friend (partial) + rule + + + from + ^http://(?:www\.)?musiciansfriend\.com/(checkout|mediaCenter/feeds/) + to + https://www.musiciansfriend.com/$1 + + + from + ^http://(origin-)?static\.musiciansfriend\.com/ + to + https://$1static.musiciansfriend.com/ + + + securecookie + + host + ^origin-static\.musiciansfriend\.com$ + name + .+ + + target + + + host + musiciansfriend.com + + + host + *.musiciansfriend.com + + + + + Musicmetric + + ruleset + + name + Musicmetric + rule + + + from + ^https?://(?:www\.)?musicmetric\.com/ + to + https://www.musicmetric.com/ + + + from + ^http://app\.musicmetric\.com/ + to + https://app.musicmetric.com/ + + + securecookie + + host + ^.+\.musicmetric\.com$ + name + .+ + + target + + + host + musicmetric.com + + + host + *.musicmetric.com + + + + + Musicnotes.com (partial) + + ruleset + + name + Musicnotes.com (partial) + rule + + + from + ^http://(?:www\.)?musicnotes\.com/ + to + https://www.musicnotes.com/ + + + from + ^http://(help|origin-www|sheetmusic|stage|tx)\.musicnotes\.com/ + to + https://$1.musicnotes.com/ + + + securecookie + + host + ^(?:origin-www|stage|www)?\.musicnotes\.com$ + name + .+ + + target + + + host + musicnotes.com + + + host + *.musicnotes.com + + + + + Musikerforbundet.se + + ruleset + + name + Musikerforbundet.se + platform + mixedcontent + rule + + + from + ^http://musikerforbundet\.se/ + to + https://www.musikerforbundet.se/ + + + from + ^http://www\.musikerforbundet\.se/ + to + https://www.musikerforbundet.se/ + + + target + + + host + musikerforbundet.se + + + host + www.musikerforbundet.se + + + + + Musopen (partial) + + ruleset + + name + Musopen (partial) + rule + + from + ^http://(?:www\.)?musopen\.org/ + to + https://musopen.org/ + + securecookie + + host + ^musopen\.org$ + name + .* + + target + + + host + musopen.org + + + host + www.musopen.org + + + + + Mutelight.org + + ruleset + + name + Mutelight.org + rule + + from + ^http://(www\.)?mutelight\.org/ + to + https://$1mutelight.org/ + + target + + + host + mutelight.org + + + host + www.mutelight.org + + + + + Muttscomics.com + + ruleset + + name + Muttscomics.com + rule + + from + ^http://(staging\.|www\.)?muttscomics\.com/ + to + https://$1muttscomics.com/ + + securecookie + + host + ^\.muttscomics\.com$ + name + .+ + + target + + + host + muttscomics.com + + + host + *.muttscomics.com + + + + + Mutual of America + + ruleset + + name + Mutual of America + rule + + + from + ^http://(?:www\.)?mutualofamerica\.com/ + to + https://www.mutualofamerica.com/ + + + from + ^http://(bocam|common|hotlineplus|myaccount)\.mutualofamerica\.com/ + to + https://$1.mutualofamerica.com/ + + + securecookie + + host + ^.+\.mutualofamerica\.com$ + name + .+ + + target + + + host + mutualofamerica.com + + + host + *.mutualofamerica.com + + + + + MutualArt.com + + ruleset + + name + MutualArt.com + rule + + from + ^https?://(?:www\.)?mutualart\.com/ + to + https://www.mutualart.com/ + + securecookie + + host + ^www\.mutualart\.com$ + name + .+ + + target + + + host + mutualart.com + + + host + www.mutualart.com + + + + + Muusikoiden.net + + ruleset + + name + Muusikoiden.net + rule + + from + ^http://(www\.)?muusikoiden\.net/ + to + https://$1muusikoiden.net/ + + securecookie + + host + ^muusikoiden\.net$ + name + .+ + + target + + + host + muusikoiden.net + + + host + www.muusikoiden.net + + + + + Mwave Australia (partial) + + ruleset + + name + Mwave Australia (partial) + rule + + from + ^https?://(?:www\.)?mwave\.com\.au/((?:businesscorp|checkout|help|myaccount|privacy-policy|terms-and-conditions)(?:$|\?|/)|catalog/emailsubscribe|[cC]ontent/|favicon\.ico|images/|[sS]ecure/) + to + https://www.mwave.com.au/$1 + + target + + + host + mwave.com.au + + + host + www.mwave.com.au + + + + + My Aloe Cleanse.com + + ruleset + + name + My Aloe Cleanse.com + rule + + from + ^http://(www\.)?(myaloe|trypto)cleanse\.com/ + to + https://$1$2cleanse.com/ + + securecookie + + host + ^\.(?:myaloe|trypto)cleanse\.com$ + name + .+ + + target + + + host + myaloecleanse.com + + + host + *.myaloecleanse.com + + + host + tryprocleanse.com + + + host + *.tryprocleanse.com + + + + + My Cliplister.com + + ruleset + + name + My Cliplister.com + rule + + from + ^http://mycliplister\.com/ + to + https://mycliplister.com/ + + target + + host + mycliplister.com + + + + My Healthcare Contacts + + ruleset + + name + My Healthcare Contacts + rule + + from + ^http://(kontakt\.|www\.)?minavardkontakter\.se/ + to + https://minavardkontakter.se/ + + securecookie + + host + ^kontakt\.minavardkontakter\.se$ + name + .+ + + target + + + host + minavardkontakter.se + + + host + *.minavardkontakter.se + + + + + My LiveChat + + ruleset + + name + My LiveChat + rule + + from + ^http://(www\.)?mylivechat\.com/ + to + https://$1mylivechat.com/ + + securecookie + + host + ^\.mylivechat\.com$ + name + .+ + + target + + + host + mylivechat.com + + + host + *.mylivechat.com + + + + + My OptPlus secure.com + + ruleset + + name + My OptPlus secure.com + rule + + from + ^http://(www\.)?myoptplussecure\.com/ + to + https://$1myoptplussecure.com/ + + target + + + host + myoptplussecure.com + + + host + www.myoptplussecure.com + + + + + My OptimizerPlus.com + + ruleset + + name + My OptimizerPlus.com + rule + + from + ^http://(www\.)?myoptimizerplus\.com/ + to + https://$1myoptimizerplus.com/ + + securecookie + + host + ^www\.myoptimizerplus\.com$ + name + .+ + + target + + + host + myoptimizerplus.com + + + host + www.myoptimizerplus.com + + + + + My Portable World.com + + ruleset + + name + My Portable World.com + rule + + from + ^http://(www\.)?myportableworld\.com/ + to + https://$1myportableworld.com/ + + securecookie + + host + ^\.?myportableworld\.com$ + name + .+ + + target + + + host + myportableworld.com + + + host + *.myportableworld.com + + + + + My Radio Creative + + ruleset + + name + My Radio Creative + rule + + from + ^http://(www\.)myradiocreative\.com/ + to + https://$1myradiocreative.com/ + + securecookie + + host + ^\.myradiocreative\.com$ + name + .+ + + target + + + host + myradiocreative.com + + + host + *.myradiocreative.com + + + + + My Shadow.com + + ruleset + + name + My Shadow.com + rule + + from + ^http://(www\.)?myshadow\.org/ + to + https://$1myshadow.org/ + + target + + + host + myshadow.org + + + host + www.myshadow.org + + + + + My SlideRule.com + + ruleset + + name + My SlideRule.com + rule + + from + ^http://(www\.)?mysliderule\.com/ + to + https://$1mysliderule.com/ + + securecookie + + host + ^(?:\.|www\.)?mysliderule\.com$ + name + .+ + + target + + + host + mysliderule.com + + + host + *.mysliderule.com + + + + + My Sullivan News.com (partial) + + ruleset + + name + My Sullivan News.com (partial) + rule + + from + ^http://(?:www\.)?mysullivannews\.com/(?=wp-content/|wp-includes/) + to + https://secure.hostmonster.com/~mysulliv/ + + target + + + host + mysullivannews.com + + + host + www.mysullivannews.com + + + + + My Virtual Paper (partial) + + ruleset + + name + My Virtual Paper (partial) + rule + + from + ^http://secure\.admin\.myvirtualpaper\.com/ + to + https://secure.admin.myvirtualpaper.com/ + + securecookie + + host + ^secure\.admin\.myvirtualpaper\.com$ + name + .+ + + target + + host + secure.admin.myvirtualpaper.com + + + + My Year Book (partial) + + ruleset + + name + My Year Book (partial) + rule + + + from + ^http://live\.assets\.mybcdna\.com/ + to + https://live.assets.mybcdna.com/ + + + from + ^http://(assets|content1)\.myyearbook\.com/ + to + https://$1.myyearbook.com/ + + + target + + + host + live.assets.mybcdna.com + + + host + *.myyearbook.com + + + + + My-files.de + + ruleset + + name + My-files.de + rule + + from + ^http://w01\.my-files\.de/ + to + https://w01.my-files.de/ + + target + + host + w01.my-files.de + + + + My.com (partial) + + ruleset + + name + My.com (partial) + rule + + from + ^http://((?:mymail|press|r|www)\.)?my\.com/ + to + https://$1my.com/ + + securecookie + + host + ^\.my\.com$ + name + .+ + + target + + + host + my.com + + + host + *.my.com + + + + + MyBB Central + + ruleset + + name + MyBB Central + rule + + from + ^http://(www\.)?mybbcentral\.com/ + to + https://$1mybbcentral.com/ + + securecookie + + host + ^\.mybbcentral\.com$ + name + .+ + + target + + + host + mybbcentral.com + + + host + *.mybbcentral.com + + + + + MyBenefits CalWIN + + ruleset + + name + MyBenefits CalWIN + rule + + + from + ^(http://(www\.)?|https://)mybenefitscalwin\.(com|net|org)/ + to + https://www.mybenefitscalwin.org/ + + + from + ^https://www\.mybenefitscalwin\.(com|net)/ + to + https://www.mybenefitscalwin.org/ + + + securecookie + + host + ^www\.mybenefitscalwin\.org$ + name + .+ + + target + + + host + mybenefitscalwin.com + + + host + www.mybenefitscalwin.com + + + host + mybenefitscalwin.net + + + host + www.mybenefitscalwin.net + + + host + mybenefitscalwin.org + + + host + www.mybenefitscalwin.org + + + + + MyBetter.com + + ruleset + + name + MyBetter.com + rule + + + from + ^http://(server2\.|www\.)?mybetter\.com/ + to + https://$1mybetter.com/ + + + from + ^http://server2\.mybetter\.com:2222/ + to + https://server2.mybetter.com:2222/ + + + securecookie + + host + ^server2\.mybetter\.com$ + name + .+ + + target + + + host + mybetter.com + + + host + *.mybetter.com + + + + + MyBuys (partial) + + ruleset + + name + MyBuys (partial) + rule + + + from + ^http://((?:(?:bi5|portal|t|w)\.p|www)\.)?mybuys\.com/ + to + https://$1mybuys.com/ + + + from + ^http://www2\.mybuys\.com/(?=css/|js/|images/|rs/) + to + https://na-sjh.marketo.com/ + + + securecookie + + host + .*\.mybuys\.com$ + name + .+ + + target + + + host + mybuys.com + + + host + *.mybuys.com + + + + + MyCalendar + + ruleset + + name + MyCalendar + rule + + from + ^https?://(?:www\.)?mycalendarbook\.com/ + to + https://mycalendarbook.com/ + + target + + + host + mycalendarbook.com + + + host + www.mycalendarbook.com + + + + + MyCanvas.com (false MCB) + + ruleset + + name + MyCanvas.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?mycanvas\.com/ + to + https://secure.mycanvas.com/ + + securecookie + + host + ^(?:.*\.)?mycanvas\.com$ + name + .+ + + target + + + host + mycanvas.com + + + host + www.mycanvas.com + + + + + MyCanvas.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?mycanvas\.com/+(?!App_Themes/|favicon\.ico) + + name + MyCanvas.com (partial) + rule + + from + ^http://(?:secure\.|www\.)?mycanvas\.com/ + to + https://secure.mycanvas.com/ + + target + + + host + mycanvas.com + + + host + *.mycanvas.com + + + + + MyCharity.ie + + ruleset + + name + MyCharity.ie + rule + + from + ^http://(?:www\.)?mycharity\.ie/ + to + https://www.mycharity.ie/ + + target + + + host + mycharity.ie + + + host + www.mycharity.ie + + + + + MyChart + + ruleset + + name + MyChart + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?viewmychart\.com/ + to + https://www.viewmychart.com/ + + securecookie + + host + ^(.*\.)?viewmychart\.com$ + name + .+ + + target + + + host + viewmychart.com + + + host + *.viewmychart.com + + + + + MyCommerce + + ruleset + + name + MyCommerce + rule + + + from + ^http://esellerate\.net/ + to + https://www.esellerate.net/ + + + from + ^http://(partner|publishers|store\d?|www)\.esellerate\.net/ + to + https://$1.esellerate.net/ + + + from + ^http://(www\.)?mycommerce\.com/ + to + https://mycommerce.com/ + + + from + ^http://(?:www\.)?shareit\.com/signup\.html + to + https://secure.shareit.com/signup.html + + + from + ^http://(ccc|secure)\.shareit\.com/ + to + https://$1.shareit.com/ + + + securecookie + + host + ^(?:.*\.)?(?:esellerate|mycommerce|shareit)\.com$ + name + .+ + + target + + + host + esellerate.net + + + host + *.esellerate.net + + + host + mycommerce.com + + + host + www.mycommerce.com + + + host + shareit.com + + + host + *.shareit.com + + + + + MyComputer.com + + ruleset + + name + MyComputer.com + rule + + + from + ^http://(?:www\.)?mycomputer\.com/ + to + https://www.mycomputer.com/ + + + from + ^http://watchdog\.mycomputer\.com/ + to + https://watchdog.mycomputer.com/ + + + target + + + host + mycomputer.com + + + host + www.mycomputer.com + + + + + MyEdAccount.Com + + ruleset + + name + MyEdAccount.Com + rule + + from + ^(http://(www\.)?|https://)myedaccount\.com/ + to + https://www.myedaccount.com/ + + securecookie + + host + (^|\.)myedaccount\.com$ + name + .+ + + target + + + host + myedaccount.com + + + host + www.myedaccount.com + + + + + MyFitnessPal + + ruleset + + name + MyFitnessPal + rule + + from + ^http://(www\.)?myfitnesspal\.com/ + to + https://$1myfitnesspal.com/ + + securecookie + + host + ^www\.myfitnesspal\.com$ + name + .+ + + target + + + host + myfitnesspal.com + + + host + www.myfitnesspal.com + + + + + MyFonts.com (partial) + + ruleset + + name + MyFonts.com (partial) + rule + + + from + ^http://(origin\.|www\.)?myfonts\.com/ + to + https://$1myfonts.com/ + + + from + ^http://cdn\.myfonts\.(?:com|net)/ + to + https://cdn.myfonts.net/ + + + from + ^http://(easy|foundry|hello|origin|your)\.myfonts\.net/ + to + https://$1.myfonts.net/ + + + securecookie + + host + ^www\.myfonts\.com$ + name + .+ + + target + + + host + myfonts.com + + + host + *.myfonts.com + + + host + *.myfonts.net + + + + + MyFreeCopyright.com (partial) + + ruleset + + name + MyFreeCopyright.com (partial) + rule + + from + ^http://storage\.myfreecopyright\.com/ + to + https://myfreecopyright.s3.amazonaws.com/ + + target + + host + storage.myfreecopyright.com + + + + MyGurlFund + + ruleset + + name + MyGurlFund + rule + + from + ^http://(www\.)?mygirlfund\.com/ + to + https://$1mygirlfund.com/ + + securecookie + + host + ^\.mygirlfund\.com$ + name + .+ + + target + + + host + mygirlfund.com + + + host + *.mygirlfund.com + + + + + MyInteriorDecorator.com + + ruleset + + name + MyInteriorDecorator.com + rule + + from + ^http://(www\.)?myinteriordecorator\.com/ + to + https://$1myinteriordecorator.com/ + + securecookie + + host + ^(?:w*\.)?myinteriordecorator\.com$ + name + .+ + + target + + + host + myinteriordecorator.com + + + host + *.myinteriordecorator.com + + + + + MyKolab.com + + ruleset + + name + MyKolab.com + rule + + from + ^http://((?:cockpit|webmail|www)\.)?mykolab\.com/ + to + https://$1mykolab.com/ + + securecookie + + host + ^(?:cockpit)?\.mykolab\.com$ + name + .+ + + target + + + host + mykolab.com + + + host + *.mykolab.com + + + + + MyLeague + + ruleset + + name + MyLeague + rule + + from + ^https?://(?:www\.)?myleague\.com/ + to + https://www.myleague.com/ + + securecookie + + host + ^\.myleague\.com$ + name + .+ + + target + + + host + myleague.com + + + host + *.myleague.com + + + + + MyLikes + + ruleset + + name + MyLikes + rule + + + from + ^http://(clnk\.me|longurl\.it)/ + to + https://$1/ + + + from + ^http://mlv-cdn\.com/ + to + https://mylikes.com/ + + + from + ^http://w\.mlv-cdn\.com/ + to + https://d1t8hc7w4sf1nn.cloudfront.net/ + + + from + ^http://(ads\.|www\.)?mylikes\.com/ + to + https://$1mylikes.com/ + + + securecookie + + + host + ^\.longurl\.it$ + name + .+ + + + host + ^(?:ads\.|www\.)?mylikes\.com$ + name + .+ + + + target + + + host + clnk.me + + + host + longurl.it + + + host + *.longurl.it + + + host + mlv-cdn.com + + + host + w.mlv-cdn.com + + + host + mylikes.com + + + host + *.mylikes.com + + + + + MyPlayDirect + + ruleset + + name + MyPlayDirect + rule + + from + ^http://(?:www\.)?myplaydirect\.com/ + to + https://www.myplaydirect.com/ + + securecookie + + host + ^(.+\.)?myplaydirect\.com$ + name + .* + + target + + + host + myplaydirect.com + + + host + www.myplaydirect.com + + + + + MyPoints + + ruleset + + name + MyPoints + rule + + from + ^http://(?:www\.)?mypoints\.com/ + to + https://www.mypoints.com/ + + target + + + host + mypoints.com + + + host + www.mypoints.com + + + + + MyPreferences.com (partial) + + ruleset + + name + MyPreferences.com (partial) + rule + + from + ^http://pc2\.mypreferences\.com/ + to + https://pc2.mypreferences.com/ + + securecookie + + host + ^pc2\.mypreferences\.com$ + name + .+ + + target + + host + pc2.mypreferences.com + + + + MySQL + + ruleset + + exclusion + + pattern + ^http://(bugs|cdn|downloads|forge|lists|planet|wb|forums)\.mysql\.com/ + + name + MySQL + rule + + + from + ^http://([^/:@\.]+\.)?mysql\.com/ + to + https://$1mysql.com/ + + + from + ^http://(?:www\.)?mysql\.(\w\w)/ + to + https://www.mysql.$1/ + + + securecookie + + host + ^\.mysql\.\w{2,3}$ + name + ^MySQL_S$ + + target + + + host + mysql.com + + + host + *.mysql.com + + + host + mysql.de + + + host + www.mysql.de + + + host + mysql.fr + + + host + www.mysql.fr + + + host + mysql.it + + + host + www.mysql.it + + + + + MyScienceWork.com + + ruleset + + name + MyScienceWork.com + rule + + from + ^http://(www\.)?mysciencework\.com/ + to + https://$1mysciencework.com/ + + securecookie + + host + ^(?:www\.)?\.mysciencework\.com$ + name + .+ + + target + + + host + mysciencework.com + + + host + *.mysciencework.com + + + + + MyScore180.com + + ruleset + + name + MyScore180.com + rule + + from + ^http://(www\.)?myscore180\.com/ + to + https://$1myscore180.com/ + + securecookie + + host + ^(?:[w.]*\.)?myscore180\.com$ + name + .+ + + target + + + host + myscore180.com + + + host + *.myscore180.com + + + + + MyTUM.de + + ruleset + + name + MyTUM.de + rule + + from + ^http://portal\.mytum\.de/ + to + https://portal.mytum.de/ + + securecookie + + host + portal.mytum\.de$ + name + .* + + target + + host + portal.mytum.de + + + + MyTextGraphics.com (partial) + + ruleset + + name + MyTextGraphics.com (partial) + rule + + + from + ^http://img(?:\d|10)\.mytextgraphics\.com/ + to + https://d7gjtd9kdx0w5.cloudfront.net/ + + + from + ^http://img(?:1[1-9]|20)\.mytextgraphics\.com/ + to + https://d1qy5u3l21z5db.cloudfront.net/ + + + from + ^http://img(?:2[1-9]|30)\.mytextgraphics\.com/ + to + https://d2y5xryjzuetvr.cloudfront.net/ + + + from + ^http://img702\.mytextgraphics\.com/ + to + https://d2cmody3lz4pfa.cloudfront.net/ + + + from + ^http://img-s3-01\.mytextgraphics\.com/ + to + https://dn7bb6u52b8om.cloudfront.net/ + + + target + + host + *.mytextgraphics.com + + + + MyUHC + + ruleset + + name + MyUHC + rule + + from + ^http://(?:www\.)?myuhc\.com/ + to + https://www.myuhc.com/ + + target + + + host + myuhc.com + + + host + www.myuhc.com + + + + + MyUS.com (partial) + + ruleset + + name + MyUS.com (partial) + rule + + + from + ^http://(account)?myus\.com/ + to + https://$1myus.com/ + + + from + ^http://www\.myus\.com/([aA]pp_[tT]hemes/|CMSPages/|en/(?:blog|customer-reviews|global-commerce|home|my-account|news-press|our-services|our-story|personal-shopper|price-register|register|ship-globally|shop-smarter|top-usa-stores|whichmembership|why-myus)/|favicon\.ico|MyUs/) + to + https://www.myus.com/$1 + + + from + ^http://www\.myus\.com/en/login$ + to + https://www.myus.com/en/login/ + + + target + + + host + myus.com + + + host + *.myus.com + + + + + MyVarian.com + + ruleset + + name + MyVarian.com + rule + + from + ^http://(?:www\.)?myvarian\.com/ + to + https://myvarian.com/ + + securecookie + + host + ^\.myvarian\.com$ + name + .+ + + target + + + host + myvarian.com + + + host + *.myvarian.com + + + + + MyWOT (partial) + + ruleset + + name + MyWOT (partial) + rule + + + from + ^http://(search\.|www\.)?mywot\.com/ + to + https://$1mywot.com/ + + + from + ^http://(cdn-cf\.|www\.)?mywot\.net/ + to + https://$1mywot.net/ + + + securecookie + + + host + ^(?:search\.|www\.)?mywot\.com + name + .* + + + host + ^\.mywot\.net$ + name + .+ + + + target + + + host + mywot.com + + + host + *.mywot.com + + + host + mywot.net + + + host + *.mywot.net + + + + + MyWell-Being.com + + ruleset + + name + MyWell-Being.com + rule + + from + ^http://(?:www\.)?mywell-being\.com/ + to + https://www.mywell-being.com/ + + target + + + host + mywell-being.com + + + host + www.mywell-being.com + + + + + Mycotopia.net + + ruleset + + name + Mycotopia.net + rule + + from + ^http://(?:www\.)?mycotopia\.net/ + to + https://mycotopia.net/ + + securecookie + + host + ^mycotopia\.net$ + name + .+ + + target + + + host + mycotopia.net + + + host + www.mycotopia.net + + + + + Mydigipass.com + + ruleset + + name + Mydigipass.com + platform + firefox + rule + + + from + ^http://([a-z]+\.)?mydigipass\.com/ + to + https://$1mydigipass.com/ + + + from + ^http://www\.sandbox\.mydigipass\.com/ + to + https://www.sandbox.mydigipass.com/ + + + securecookie + + host + ^([a-z]+\.)mydigipass\.com$ + name + .+ + + target + + + host + mydigipass.com + + + host + www.mydigipass.com + + + host + developer.mydigipass.com + + + host + www.developer.mydigipass.com + + + host + sandbox.mydigipass.com + + + host + www.sandbox.mydigipass.com + + + + + Mydrive + + ruleset + + name + Mydrive + rule + + from + ^http://(www|static|webdav)\.?mydrive\.ch/ + to + https://$1.mydrive.ch/ + + securecookie + + host + ^(.*\.)?mydrive\.ch$ + name + .* + + target + + + host + mydrive.ch + + + host + www.mydrive.ch + + + host + static.mydrive.ch + + + host + webdav.mydrive.ch + + + + + Myftp.utechsoft.com + + ruleset + + name + Myftp.utechsoft.com + rule + + from + ^http://(www\.)?myftp\.utechsoft\.com/ + to + https://myftp.utechsoft.com/ + + target + + host + myftp.utechsoft.com + + + + Mynaweb.com (partial) + + ruleset + + name + Mynaweb.com (partial) + rule + + + from + ^http://(api\.|www\.)?mynaweb\.com/ + to + https://$1mynaweb.com/ + + + from + ^http://cdn\.mynaweb\.com/ + to + https://ddnxkh4q55q4m.cloudfront.net/ + + + securecookie + + host + ^mynaweb\.com$ + name + .+ + + target + + + host + mynaweb.com + + + host + *.mynaweb.com + + + + + Mynewsdesk.com (partial) + + ruleset + + name + Mynewsdesk.com (partial) + rule + + from + ^http://((?:insight|publish|www)\.)?mynewsdesk\.com/ + to + https://$1mynewsdesk.com/ + + securecookie + + host + ^\.mynewsdesk.com$ + name + .+ + + target + + + host + mynewsdesk.com + + + host + *.mynewsdesk.com + + + + + MyrtleBeachShows.com (partial) + + ruleset + + name + MyrtleBeachShows.com (partial) + rule + + from + ^http://secure\.myrtlebeachshows\.com/ + to + https://secure.myrtlebeachshows.com/ + + securecookie + + host + ^secure\.myrtlebeachshows\.com$ + name + .+ + + target + + host + secure.myrtlebeachshows.com + + + + Mysitemyway + + ruleset + + name + Mysitemyway + rule + + from + ^http://(www\.)?mysitemyway\.com/ + to + https://$1mysitemyway.com/ + + target + + + host + mysitemyway.com + + + host + www.mysitemyway.com + + + + + Mysn.de + + ruleset + + name + Mysn.de + rule + + from + ^http://(www\.)?mysn\.de/ + to + https://www.mysn.de/ + + target + + + host + mysn.de + + + host + www.mysn.de + + + + + Myspace (mixed content) + + ruleset + + name + Myspace (mixed content) + platform + mixedcontent + rule + + + from + ^http://secure\.adviva\.net/ + to + https://secure.adviva.net/ + + + from + ^https?://(?:www\.)?imeem\.com/ + to + https://www.myspace.com/music/ + + + from + ^http://(new\.|www\.)?myspace\.com/ + to + https://$1myspace.com/ + + + from + ^http://(a\d-images|x)\.myspacecdn\.com/ + to + https://$1.myspacecdn.com/ + + + from + ^https?://a(\d)\.ec-images\.myspacecdn\.com/ + to + https://a$1-images.myspacecdn.com/ + + + securecookie + + host + ^\.myspace\.com$ + name + .* + + target + + + host + secure.adviva.net + + + host + imeem.com + + + host + www.imeem.com + + + host + myspace.com + + + host + *.myspace.com + + + host + *.myspacecdn.com + + + host + *.ec-images.myspacecdn.com + + + + + Mythic Beasts (partial) + + ruleset + + name + Mythic Beasts (partial) + rule + + from + ^http://((?:ctrlpanel|secure|static|wiki|www)\.)?mythic-beasts\.com/ + to + https://$1mythic-beasts.com/$1 + + securecookie + + host + ^\w+\.mythic-beasts\.com$ + name + .* + + target + + + host + mythic-beasts.com + + + host + *.mythic-beasts.com + + + + + Médiamétrie-eStat (partial) + + ruleset + + name + Médiamétrie-eStat (partial) + rule + + from + ^http://(prof|w)\.estat\.com/ + to + https://$1.estat.com/ + + securecookie + + host + \.estat\.com$ + name + .* + + target + + host + *.estat.com + + + + N-JOY.de + + ruleset + + name + N-JOY.de + rule + + from + ^http://(www\.)?n-joy\.de/ + to + https://$1n-joy.de/ + + target + + + host + n-joy.de + + + host + www.n-joy.de + + + + + N-able.com (partial) + + ruleset + + name + N-able.com (partial) + rule + + from + ^http://secure\.n-able\.com/ + to + https://secure.n-able.com/ + + securecookie + + host + ^secure\.n-able\.com$ + name + .+ + + target + + host + secure.n-able.com + + + + NAACP + + ruleset + + name + NAACP + rule + + from + ^http://(?:donate\.|www\.)?naacp\.org/ + to + https://donate.naacp.org/ + + securecookie + + host + ^\.?donate\.naacp\.org$ + name + .+ + + target + + + host + naacp.org + + + host + *.naacp.org + + + + + NAACP Company Store + + ruleset + + name + NAACP Company Store + rule + + from + ^http://(www\.)?naacpcompanystore\.org/ + to + https://$1naacpcompanystore.org/ + + securecookie + + host + ^(?:www\.)?naacpcompanystore\.org$ + name + .+ + + target + + + host + naacpcompanystore.org + + + host + www.naacpcompanystore.org + + + + + NAACP Image Awards + + ruleset + + name + NAACP Image Awards + rule + + from + ^http://www\.naacpimageawards\.net/ + to + https://www.naacpimageawards.net/ + + target + + host + www.naacpimageawards.net + + + + NAB + + ruleset + + name + NAB + rule + + + from + ^http://nab\.com\.au/ + to + https://www.nab.com.au/ + + + from + ^http://(equitylending|ib|mobile|transact|www)\.nab\.com\.au/ + to + https://$1.nab.com.au/ + + + from + ^http://www\.nabtrade\.com\.au/ + to + https://nabtrade.com.au/ + + + from + ^http://(auth|cdn\.research|res2|www)\.nabtrade\.com\.au/ + to + https://$1.nabtrade.com.au/ + + + target + + + host + nab.com.au + + + host + *.nab.com.au + + + host + nabtrade.com.au + + + host + *.nabtrade.com.au + + + + + NAB.org + + ruleset + + name + NAB.org + rule + + from + ^http://(?:www\.)?nab\.org/ + to + https://www.nab.org/ + + securecookie + + host + ^www\.nab\.org$ + name + .+ + + target + + + host + nab.org + + + host + www.nab.org + + + + + NACL.org + + ruleset + + name + NACL.org + rule + + from + ^http://(www\.)?nacdl\.org/ + to + https://$1nacdl.org/ + + securecookie + + host + ^(?:www\.)?nacdl\.org$ + name + .+ + + target + + + host + nacdl.org + + + host + www.nacdl.org + + + + + NADAguides + + ruleset + + name + NADAguides + rule + + + from + ^https?://(?:www\.)?nadaguides(store)?\.com/ + to + https://www.nadaguides$1.com/ + + + from + ^https?://images(?:-ssl)?\.nadaguides\.com/ + to + https://images-ssl.nadaguides.com/ + + + securecookie + + host + ^.*\.nadaguides(?:store)?\.com$ + name + .* + + target + + + host + nadaguides.com + + + host + *.nadaguides.com + + + host + nadaguidesstore.com + + + host + www.nadaguidesstore.com + + + + + NASA + + ruleset + + exclusion + + pattern + ^http://rosetta\.jpl\.nasa\.gov/+(?!favicon\.ico|modules/|sites/) + + name + NASA + rule + + + from + ^http://(airbornescience|cloud1\.arc|astrobiology|ws1\.ems\.eosdis|esdpubs|(?:www\.)?(?:espo|spacecomm)|espoarchive|eyes|rt\.grc|heasarc\.gsfc|(?:corts|www)\.hq|(?:acquisition|beacon|careerlaunch|dir|enose|exep|icis|jpldataeval|jplnet|jplspaceship|nightsky|pds|rosetta|science(?:andtechnology)?|solarsystem|sse|studentprograms|telework)\.jpl|people|ras|solarsystem|www)\.nasa\.gov/ + to + https://$1.nasa.gov/ + + + from + ^https?://heasarc\.nasa\.gov/ + to + https://heasarc.gsfc.nasa.gov/ + + + from + ^http://mars\.(?:jpl\.)?nasa\.gov/ + to + https://d2cj35nmzi9erd.cloudfront.net/ + + + from + ^http://marsrovers\.jpl\.nasa\.gov/ + to + https://d1p01lglytwktu.cloudfront.net/ + + + from + ^http://marsstaticcdn\.jpl\.nasa\.gov/ + to + https://d3r05mwudimf00.cloudfront.net/ + + + from + ^https?://metrics\.jpl\.nasa\.gov/ + to + https://jpl-nasa-gov.122.2o7.net/ + + + securecookie + + host + ^.*\.nasa\.gov$ + name + .+ + + target + + host + *.nasa.gov + + + + NASASpaceFlight.com (partial) + + ruleset + + name + NASASpaceFlight.com (partial) + rule + + from + ^http://forum\.nasaspaceflight\.com/ + to + https://forum.nasaspaceflight.com/ + + target + + host + forum.nasaspaceflight.com + + + + NASDAQ (partial) + + ruleset + + name + NASDAQ (partial) + platform + mixedcontent + rule + + + from + ^http://secure\.directorsdesk\.com/ + to + https://secure.directorsdesk.com/ + + + from + ^http://community\.nasdaq\.com/ + to + https://community.nasdaq.com/ + + + from + ^http://(corporateintelligence|listingcenter)\.nasdaqomx\.com/ + to + https://$1.nasdaqomx.com/ + + + from + ^http://dialogue\.openboard\.info/ + to + https://dialogue.openboard.info/ + + + securecookie + + + host + ^(?:secure\.|www\.)?directorsdesk\.com$ + name + .+ + + + host + ^community\.nasdaq\.com$ + name + .+ + + + host + ^corporateintelligence\.nasdaqomx\.com$ + name + .+ + + + host + ^dialogue\.openboard\.info$ + name + .+ + + + target + + + host + secure.directorsdesk.com + + + host + community.nasdaq.com + + + host + *.nasdaqomx.com + + + host + dialogue.openboard.info + + + + + NAVTEQ (partial) + + ruleset + + name + NAVTEQ (partial) + rule + + + from + ^https?://(www(?:2-test)?\.)?navteq\.com/ + to + https://www.navteq.com/ + + + from + ^https?://(?:css\.)?mapreporter\.navteq\.com/ + to + https://mapreporter.navteq.com/ + + + from + ^https?://(?:www\.)?navteqmedia\.com/ + to + https://primeplace.nokia.com/ + + + securecookie + + host + ^mapreporter\.navteq\.com$ + name + .+ + + target + + + host + navteq.com + + + host + *.navteq.com + + + host + css.mapreporter.navteq.com + + + host + navteqmedia.com + + + host + www.navteqmedia.com + + + + + NBCUniversal Media (partial) + + ruleset + + name + NBCUniversal Media (partial) + rule + + from + ^https?://(?:(origin-)?www\.)?nbcudigitaladops\.com/ + to + https://$1www.nbcudigitaladops.com/ + + securecookie + + host + ^(?:origin-)?www\.nbcudigitaladops\.com$ + name + .+ + + target + + + host + nbcudigitaladops.com + + + host + *.nbcudigitaladops.com + + + + + NBN Co.com.au + + ruleset + + name + NBN Co.com.au + rule + + + from + ^http://(?:www1?\.)?nbnco\.com\.au/ + to + https://www1.nbnco.com.au/ + + + from + ^http://(autodiscover|exch-cas-[12]|outlook\d?|www2)\.nbnco\.com\.au/ + to + https://$1.nbnco.com.au/ + + + securecookie + + host + ^(?:www\d?)?\.nbnco\.com\.au$ + name + .+ + + target + + + host + nbnco.com.au + + + host + *.nbnco.com.au + + + + + NC Bar.org + + ruleset + + name + NC Bar.org + rule + + from + ^http://(www\.)?ncbar\.org/ + to + https://$1ncbar.org/ + + securecookie + + host + ^(?:\.|www\.)?ncbar\.org$ + name + .+ + + target + + + host + ncbar.org + + + host + *.ncbar.org + + + + + NCC Group Domain Services.com + + ruleset + + name + NCC Group Domain Services.com + rule + + from + ^http://(www\.)?nccgroupdomainservices\.com/ + to + https://$1nccgroupdomainservices.com/ + + target + + + host + nccgroupdomainservices.com + + + host + www.nccgroupdomainservices.com + + + + + NCC Group.com + + ruleset + + name + NCC Group.com + rule + + from + ^http://(portal\.|www\.)?nccgroup\.com/ + to + https://$1nccgroup.com/ + + target + + + host + nccgroup.com + + + host + *.nccgroup.com + + + + + NCJS.gov + + ruleset + + name + NCJS.gov + rule + + from + ^http://(puborder\.|www\.)?ncjrs\.gov/ + to + https://$1ncjrs.gov/ + + securecookie + + host + ^(?:puborder\.|www\.)?ncjrs\.gov$ + name + .+ + + target + + + host + ncjrs.gov + + + host + *.ncjrs.gov + + + + + NCRIC + + ruleset + + name + NCRIC + rule + + + from + ^http://ncric\.org/ + to + https://ncric.org/ + + + from + ^http://www\.ncric\.org/.* + to + https://ncric.org/ + + + securecookie + + host + ^ncric\.org$ + name + .+ + + target + + + host + ncric.org + + + host + www.ncric.org + + + + + NCSC.nl + + ruleset + + name + NCSC.nl + rule + + from + ^http://(?:www\.)?ncsc\.nl/ + to + https://www.ncsc.nl/ + + target + + + host + ncsc.nl + + + host + www.ncsc.nl + + + + + NCSI.com + + ruleset + + name + NCSI.com + rule + + from + ^http://(www\.)?ncsi\.com/ + to + https://$1ncsi.com/ + + target + + + host + ncsi.com + + + host + www.ncsi.com + + + + + NCTA.com + + ruleset + + name + NCTA.com + rule + + from + ^http://(?:www\.)?ncta\.com/ + to + https://www.ncta.com/ + + target + + + host + ncta.com + + + host + www.ncta.com + + + + + NCsoft.com + + ruleset + + name + NCsoft.com + rule + + from + ^http://((?:help|secure|static|us|www)\.)?ncsoft\.com/ + to + https://$1ncsoft.com/ + + target + + + host + ncsoft.com + + + host + *.ncsoft.com + + + + + NDCHost.com + + ruleset + + name + NDCHost.com + rule + + from + ^http://((?:customer|helpdesk|www)\.)?ndchost\.com/ + to + https://$1ndchost.com/ + + securecookie + + host + ^(?:customer|helpdesk|www)\.ndchost\.com$ + name + .+ + + target + + + host + ndchost.com + + + host + *.ndchost.com + + + + + NDI.org + + ruleset + + name + NDI.org + rule + + + from + ^http://(?:www\.)?ndi\.org/ + to + https://www.ndi.org/ + + + from + ^http://(contribute|idp|portal)\.ndi\.org/ + to + https://$1.ndi.org/ + + + target + + + host + ndi.org + + + host + *.ndi.org + + + + + NDN media services.com + + ruleset + + name + NDN media services.com + rule + + from + ^http://vault\.studio\.ndnmediaservices\.com/ + to + https://dithr9x6satds.cloudfront.net/ + + target + + host + vault.studio.ndnmediaservices.com + + + + NEC Display.com (partial) + + ruleset + + name + NEC Display.com (partial) + rule + + + from + ^http://(?:www\.)?necdisplay\.com/(?=App_Themes/|favicon\.ico|flash/assets/(?:image|j)s/|(?:Script|Web)Resource\.axd|NECHandler\.ashx|Scripts/|Services/|ShoppingCart/Cart\.aspx|sifr/|style-css/|style-images/) + to + https://www.necdisplay.com/ + + + from + ^http://partners\.necdisplay\.com/ + to + https://partners.necdisplay.com/ + + + securecookie + + host + ^partners\.necdisplay\.com$ + name + .+ + + target + + + host + necdisplay.com + + + host + *.necdisplay.com + + + + + NEK Vapor.com + + ruleset + + name + NEK Vapor.com + rule + + from + ^http://(www\.)?nekvapor\.com/ + to + https://$1nekvapor.com/ + + securecookie + + host + ^\.nekvapor\.com$ + name + .+ + + target + + + host + nekvapor.com + + + host + *.nekvapor.com + + + + + NEO Direct + + ruleset + + name + NEO Direct + rule + + from + ^https?://(?:www\.)?neo-direct\.com/ + to + https://www.neo-direct.com/ + + securecookie + + host + ^www\.neo-direct\.com$ + name + .+ + + target + + + host + neo-direct.com + + + host + www.neo-direct.com + + + + + NESEA + + ruleset + + name + NESEA + rule + + from + ^http://(www\.)?nesea\.org/ + to + https://$1nesea.org/ + + target + + + host + nesea.org + + + host + www.nesea.org + + + + + NESL.edu + + ruleset + + name + NESL.edu + rule + + from + ^http://(www\.)?nesl\.edu/ + to + https://$1nesl.edu/ + + target + + + host + nesl.edu + + + host + www.nesl.edu + + + + + NEXTINpact (partial) + + ruleset + + name + NEXTINpact (partial) + rule + + from + ^http://(?:www\.)?nextinpact\.com/ + to + https://www.nextinpact.com/ + + securecookie + + host + ^(?:www)?\.nextinpact\.com$ + name + .+ + + target + + + host + nextinpact.com + + + host + *.nextinpact.com + + + + + NFrance (partial) + + ruleset + + name + NFrance (partial) + rule + + from + ^http://(www\.)?nfadmin\.net/ + to + https://$1nfadmin.net/ + + target + + + host + nfadmin.net + + + host + www.nfadmin.net + + + + + NGP VAN + + ruleset + + name + NGP VAN + rule + + + from + ^https?://(?:www\.)?ngpvan\.com/ + to + https://ngpvan.ngpvanhost.com/ + + + from + ^http://(\w+)\.ngpvanhost\.com/ + to + https://$1.ngpvanhost.com/ + + + target + + + host + ngpvan.com + + + host + www.ngpvan.com + + + host + *.ngpvanhost.com + + + + + NHM.ac.uk (partial) + + ruleset + + name + NHM.ac.uk (partial) + rule + + from + ^http://(wpymedia\.)?nhm\.ac\.uk/ + to + https://$1nhm.ac.uk/ + + securecookie + + host + ^wpymedia\.nhm\.ac\.uk$ + name + .+ + + target + + + host + nhm.ac.uk + + + host + wpymedia.nhm.ac.uk + + + + + NHN Corporation + + ruleset + + name + NHN Corporation + rule + + from + ^https?://(?:www\.)?nhn(?:corp)?\.com/ + to + https://www.nhncorp.com/ + + securecookie + + host + ^www\.nhncorp\.com$ + name + .+ + + target + + + host + nhn.com + + + host + www.nhn.com + + + host + nhncorp.com + + + host + www.nhncorp.com + + + + + NHN Next.org + + ruleset + + name + NHN Next.org + rule + + from + ^http://(?:www\.)?nhnnext\.org/ + to + https://www.nhnnext.org/ + + target + + + host + nhnnext.org + + + host + www.nhnnext.org + + + + + NHS (partial) + + ruleset + + name + NHS (partial) + rule + + + from + ^http://(www2?\.)?healthunlocked\.com/ + to + https://$1healthunlocked.com/ + + + from + ^http://([\w\-]+)\.healthunlocked\.com/(assets/|images/) + to + https://$1.healthunlocked.com/$2 + + + from + ^http://(?:www\.)?nhs\.uk/(\?.*)?$ + to + https://www.nhs.uk/Pages/HomePage.aspx$1 + + + from + ^http://(?:www\.)?nhs\.uk/(_layouts/\d\d\d\d/styles/Menu\.css|conditions/|css/(?:base|find-services|personalisation|print|reset|screen)\.css|img/(?:buttons/btn-arrow\.gif|header/|(?:chevron-grey|directgov|information-standards|sprite-footer)\.gif|sub-nav-b(?:g|order))|News/|NHSEngland/(?:Healthcosts/Pages/(?:Dentalcosts|PPC|universal-credit)|Pages/NHSEngland)\.aspx|Pages/HomePage\.aspx|Personalisation/|PublishingImages/PersonalisationModules/Modules/newsletterpromo\.jpg) + to + https://www.nhs.uk/$1 + + + from + ^http://(www\.)?wales\.nhs\.uk/ + to + https://$1wales.nhs.uk/ + + + from + ^http://(www\.)?talkhealthpartnership\.com/ + to + https://$1talkhealthpartnership.com/ + + + securecookie + + + host + ^(www2?\.)?healthunlocked\.com$ + name + .* + + + host + ^(.*\.)?talkhealthpartnership\.com$ + name + .* + + + target + + + host + healthunlocked.com + + + host + *.healthunlocked.com + + + host + nhs.uk + + + host + *.nhs.uk + + + host + talkhealthpartnership.com + + + host + *.talkhealthpartnership.com + + + + + NHS Direct (partial) + + ruleset + + name + NHS Direct (partial) + rule + + + from + ^https?://nhsdirect\.nhs\.uk/ + to + https://www.nhsdirect.nhs.uk/ + + + from + ^http://(mobile|www)\.nhsdirect\.nhs\.uk/(CheckSymptoms/|fc\.axd|images/|sitecore/|(?:\w+/)*~/) + to + https://$1.nhsdirect.nhs.uk/$1 + + + target + + + host + nhsdirect.nhs.uk + + + host + *.nhsdirect.nhs.uk + + + + + NIAP-CCEVS.org + + ruleset + + name + NIAP-CCEVS.org + rule + + from + ^http://(www\.)?niap-ccevs\.org/ + to + https://$1niap-ccevs.org/ + + securecookie + + host + ^www\.niap-ccevs\.org$ + name + .+ + + target + + + host + niap-ccevs.org + + + host + www.niap-ccevs.org + + + + + NIBC Direct.nl + + ruleset + + name + NIBC Direct.nl + rule + + + from + ^http://(?:www\.)?nibcdirect\.nl/ + to + https://www.nibcdirect.nl/ + + + from + ^http://s(ervice|paren)\.nibcdirect\.nl/ + to + https://s$1.nibcdirect.nl/ + + + securecookie + + host + .+\.nibcdirect\.nl$ + name + .+ + + target + + + host + nibcdirect.nl + + + host + *.nibcdirect.nl + + + + + NIC.ad.jp + + ruleset + + name + NIC.ad.jp + rule + + from + ^http://(?:www\.)?nic\.ad\.jp/ + to + https://www.nic.ad.jp/ + + target + + + host + nic.ad.jp + + + host + www.nic.ad.jp + + + + + NIC.br (partial) + + ruleset + + name + NIC.br (partial) + rule + + from + ^http://((?:eventos|gter|www\.gter|www)\.)?nic\.br/ + to + https://$1nic.br/ + + securecookie + + host + ^(?:eventos|gter|www\.gter)\.nic\.br$ + name + .+ + + target + + + host + nic.br + + + host + *.nic.br + + + + + NIC.ch + + ruleset + + name + NIC.ch + rule + + from + ^http://(?:www\.)?nic\.ch/ + to + https://www.nic.ch/ + + securecookie + + host + ^www\.nic\.ch$ + name + .+ + + target + + + host + nic.ch + + + host + www.nic.ch + + + + + NICTA (partial) + + ruleset + + name + NICTA (partial) + rule + + from + ^http://((?:owa|ssrg|webmail|www)\.)?nicta\.com\.au/ + to + https://$1nicta.com.au/ + + target + + + host + nicta.com.au + + + host + *.nicta.com.au + + + + + NIIF Intézet (partial) + + ruleset + + name + NIIF Intézet (partial) + rule + + + from + ^http://www\.hboneplus\.hu/ + to + https://www.hboneplus.hu/ + + + from + ^http://([^@:/]*)\.niif\.hu/ + to + https://$1.niif.hu/ + + + target + + + host + www.hboneplus.hu + + + host + www.niif.hu + + + host + www.ca.niif.hu + + + + + NJ Edge.Net (partial) + + ruleset + + name + NJ Edge.Net (partial) + rule + + from + ^http://(federation|lists)\.njedge\.net/ + to + https://$1.njedge.net/ + + target + + host + *.njedge.net + + + + NJ.com (partial) + + ruleset + + name + NJ.com (partial) + rule + + + from + ^http://findnsave\.nj\.com/(?=static/) + to + https://njcom.findnsave.com/ + + + from + ^http://media\.nj\.com/(?!.+\.css(?:$|\?)) + to + https://a248.e.akamai.net/f/248/8526/10/media.nj.com/ + + + from + ^http://signup\.nj\.com/ + to + https://signup.nj.com/ + + + target + + host + *.nj.com + + + + NJIT.edu (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?njit\.edu/+(?!.+\.(?:css|jpg|gif|ico|png)(?:$|\?)|calendar(?:$|\?)|cp/login\.php|uws/feeds/thumb\.php|uws/ldapimage\.php) + + + pattern + ^http://r25livepr1\.njit\.edu/+(?!.+\.jpg(?:$|\?)) + + + pattern + ^http://cp4\.njit\.edu/+(?!favicon\.ico|misc/|cp/content/|cps/images/|custom/|site/) + + + name + NJIT.edu (partial) + rule + + + from + ^http://(?:www\.)?njit\.edu/ + to + https://www.njit.edu/ + + + from + ^http://(courseschedules|cp4|directory|ist|njit-connect|r25livepr1|webmail)\.njit\.edu/ + to + https://$1.njit.edu/ + + + from + ^http://mail\.g\.njit\.edu/.* + to + https://mail.google.com/a/njit.edu + + + from + ^http://my\.njit\.edu/[^?]* + to + https://www.njit.edu/cp/login.php + + + securecookie + + host + ^(?:directory|njit-connect)\.njit\.edu$ + name + .+ + + target + + + host + njit.edu + + + host + *.njit.edu + + + + + NK News.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?nknews\.org/+(?!favicon\.ico|register(?:$|[?/])|wp-content/|wp-includes/) + + name + NK News.org (partial) + rule + + from + ^http://(shop\.|www\.)?nknews\.org/ + to + https://$1nknews.org/ + + securecookie + + host + ^shop\.nknews\.org$ + name + .+ + + target + + + host + nknews.org + + + host + *.nknews.org + + + + + NL Overheid + + ruleset + + name + NL Overheid + platform + mixedcontent + rule + + from + ^http://(?:www\.)?([\w-]+)\.nl/ + to + https://www.$1.nl/ + + target + + + host + digid.nl + + + host + www.digid.nl + + + host + overheid.nl + + + host + www.overheid.nl + + + host + internetconsultatie.nl + + + host + www.internetconsultatie.nl + + + host + werkenbijdeoverheid.nl + + + host + www.werkenbijdeoverheid.nl + + + host + nationaleombudsman.nl + + + host + www.nationaleombudsman.nl + + + host + govcert.nl + + + host + www.govcert.nl + + + host + politie.nl + + + host + www.politie.nl + + + host + depolitiezoekt.nl + + + host + www.depolitiezoekt.nl + + + host + minbzk.nl + + + host + www.minbzk.nl + + + host + waarschuwingsdienst.nl + + + host + www.waarschuwingsdienst.nl + + + host + bprbzk.nl + + + host + www.bprbzk.nl + + + host + minfin.nl + + + host + www.minfin.nl + + + host + domeinenrz.nl + + + host + www.domeinenrz.nl + + + host + justitie.nl + + + host + www.justitie.nl + + + host + cjib.nl + + + host + www.cjib.nl + + + host + wodc.nl + + + host + www.wodc.nl + + + host + forensischinstituut.nl + + + host + www.forensischinstituut.nl + + + host + hetlnvloket.nl + + + host + www.hetlnvloket.nl + + + host + donorregister.nl + + + host + www.donorregister.nl + + + host + brabant.nl + + + host + www.brabant.nl + + + host + overijssel.nl + + + host + www.overijssel.nl + + + host + zeeland.nl + + + host + www.zeeland.nl + + + host + aaenhunze.nl + + + host + www.aaenhunze.nl + + + host + amersfoort.nl + + + host + www.amersfoort.nl + + + host + amstelveen.nl + + + host + www.amstelveen.nl + + + host + amsterdam.nl + + + host + www.amsterdam.nl + + + host + bergenopzoom.nl + + + host + www.bergenopzoom.nl + + + host + gemeenteberkelland.nl + + + host + www.gemeenteberkelland.nl + + + host + gemeentebest.nl + + + host + www.gemeentebest.nl + + + host + boarnsterhim.nl + + + host + www.boarnsterhim.nl + + + host + borne.nl + + + host + www.borne.nl + + + host + coevorden.nl + + + host + www.coevorden.nl + + + host + doesburg.nl + + + host + www.doesburg.nl + + + host + duiven.nl + + + host + www.duiven.nl + + + host + elburg.nl + + + host + www.elburg.nl + + + host + geldermalsen.nl + + + host + www.geldermalsen.nl + + + host + haaksbergen.nl + + + host + www.haaksbergen.nl + + + host + haarlemmermeer.nl + + + host + www.haarlemmermeer.nl + + + host + heerenveen.nl + + + host + www.heerenveen.nl + + + host + s-hertogenbosch.nl + + + host + www.s-hertogenbosch.nl + + + host + heusden.nl + + + host + www.heusden.nl + + + host + hilversum.nl + + + host + www.hilversum.nl + + + host + hoorn.nl + + + host + www.hoorn.nl + + + host + horstaandemaas.nl + + + host + www.horstaandemaas.nl + + + host + houten.nl + + + host + www.houten.nl + + + host + huizen.nl + + + host + www.huizen.nl + + + host + lochem.nl + + + host + www.lochem.nl + + + host + maarssen.nl + + + host + www.maarssen.nl + + + host + maastricht.nl + + + host + www.maastricht.nl + + + host + meerssen.nl + + + host + www.meerssen.nl + + + host + middelburg.nl + + + host + www.middelburg.nl + + + host + middendrenthe.nl + + + host + www.middendrenthe.nl + + + host + moerdijk.nl + + + host + www.moerdijk.nl + + + host + gemeentenoordenveld.nl + + + host + www.gemeentenoordenveld.nl + + + host + noordwijkerhout.nl + + + host + www.noordwijkerhout.nl + + + host + oldebroek.nl + + + host + www.oldebroek.nl + + + host + opsterland.nl + + + host + www.opsterland.nl + + + host + oss.nl + + + host + www.oss.nl + + + host + pijnacker-nootdorp.nl + + + host + www.pijnacker-nootdorp.nl + + + host + renkum.nl + + + host + www.renkum.nl + + + host + rheden.nl + + + host + www.rheden.nl + + + host + rijswijk.nl + + + host + www.rijswijk.nl + + + host + schiedam.nl + + + host + www.schiedam.nl + + + host + schijndel.nl + + + host + www.schijndel.nl + + + host + sittard-geleen.nl + + + host + www.sittard-geleen.nl + + + host + smallingerland.nl + + + host + www.smallingerland.nl + + + host + stedebroec.nl + + + host + www.stedebroec.nl + + + host + steenwijkerland.nl + + + host + www.steenwijkerland.nl + + + host + terneuzen.nl + + + host + www.terneuzen.nl + + + host + teylingen.nl + + + host + www.teylingen.nl + + + host + tubbergen.nl + + + host + www.tubbergen.nl + + + host + uden.nl + + + host + www.uden.nl + + + host + utrecht.nl + + + host + www.utrecht.nl + + + host + vlagtwedde.nl + + + host + www.vlagtwedde.nl + + + host + vlissingen.nl + + + host + www.vlissingen.nl + + + host + wageningen.nl + + + host + www.wageningen.nl + + + host + weert.nl + + + host + www.weert.nl + + + host + gemeentewesterveld.nl + + + host + www.gemeentewesterveld.nl + + + host + gemeentewestland.nl + + + host + www.gemeentewestland.nl + + + host + wierden.nl + + + host + www.wierden.nl + + + host + wijchen.nl + + + host + www.wijchen.nl + + + host + winterswijk.nl + + + host + www.winterswijk.nl + + + host + zaltbommel.nl + + + host + www.zaltbommel.nl + + + host + zandvoort.nl + + + host + www.zandvoort.nl + + + host + zeist.nl + + + host + www.zeist.nl + + + host + zutphen.nl + + + host + www.zutphen.nl + + + host + zwijndrecht.nl + + + host + www.zwijndrecht.nl + + + + + NL Politiek + + ruleset + + name + NL Politiek + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?(cda|d66|sp)\.nl/ + to + https://www.$1.nl/ + + + from + ^http://(?:www\.)?(groenlinks)\.nl/ + to + https://$1.nl/ + + + target + + + host + cda.nl + + + host + www.cda.nl + + + host + d66.nl + + + host + www.d66.nl + + + host + groenlinks.nl + + + host + www.groenlinks.nl + + + host + sp.nl + + + host + www.sp.nl + + + + + NLLGG.nl + + ruleset + + name + NLLGG.nl + platform + cacert + rule + + from + ^http://(?:www\.)?nllgg\.nl/ + to + https://www.nllgg.nl/ + + target + + + host + nllgg.nl + + + host + www.nllgg.nl + + + + + NLUUG.nl (partial) + + ruleset + + name + NLUUG.nl (partial) + rule + + from + ^http://(?:www\.)?nluug\.nl/ + to + https://www.nluug.nl/ + + target + + + host + nluug.nl + + + host + www.nluug.nl + + + + + NLnet Labs + + ruleset + + name + NLnet Labs + rule + + + from + ^http://opendnssec\.org/ + to + https://www.opendnssec.org/ + + + from + ^http://(svn|wiki|www)\.opendnssec\.org/ + to + https://$1.opendnssec.org/ + + + securecookie + + host + ^wiki\.opendnssec\.org$ + name + .* + + target + + + host + opendnssec.org + + + host + *.opendnssec.org + + + + + NLnet Labs CACert + + ruleset + + name + NLnet Labs CACert + platform + cacert + rule + + + from + ^http://(www\.)?net-dns\.org/ + to + https://$1net-dns.org/ + + + from + ^http://(open\.|www\.)?nlnetlabs\.nl/ + to + https://$1nlnetlabs.nl/ + + + from + ^http://(?:www\.)?unbound\.net/ + to + https://unbound.net/ + + + target + + + host + net-dns.org + + + host + www.net-dns.org + + + host + nlnetlabs.nl + + + host + *.nlnetlabs.nl + + + host + unbound.net + + + host + www.unbound.net + + + + + NMU + + ruleset + + name + NMU + rule + + from + ^http://((?:mail|portal|webmail|www)\.)?nmugroup\.com/ + to + https://$1nmugroup.com/ + + securecookie + + host + ^(?:.*\.)?nmugroup\.com$ + name + .+ + + target + + + host + nmugroup.com + + + host + *.nmugroup.com + + + + + NNM-Club + + ruleset + + name + NNM-Club + rule + + from + ^http://([\w\W]+\.)?nnm-club\.me/ + to + https://nnm-club.me/ + + securecookie + + host + ^(?:.*\.)?nnm-club\.me$ + name + .+ + + target + + + host + nnm-club.me + + + host + *.nnm-club.me + + + + + NOS (partial) + + ruleset + + name + NOS (partial) + rule + + from + ^http://download\.nos\.nl/ + to + https://download.nos.nl/ + + target + + host + download.nos.nl + + + + NPD Group + + ruleset + + name + NPD Group + rule + + + from + ^http://(autodiscover\.|webmail\.|www0?\.)?npd\.com/ + to + https://$1npd.com/ + + + from + ^http://(www\.)?npdgroup\.com/ + to + https://$1npdgroup.com/ + + + securecookie + + host + ^.+\.npd\.com$ + name + .+ + + target + + + host + npd.com + + + host + *.npd.com + + + host + npdgroup.com + + + host + www.npdgroup.com + + + + + NPO.nl (partial) + + ruleset + + name + NPO.nl (partial) + rule + + from + ^http://(help|mijn|assets\.www)\.npo\.nl/ + to + https://$1.npo.nl/ + + securecookie + + host + ^(?:help|mijn)\.npo\.nl$ + name + .+ + + target + + host + assets.www.npo.nl + + + + NPR.org (partial) + + ruleset + + name + NPR.org (partial) + rule + + + from + ^https?://(?:www\.)?kunk\.org/ + to + https://kunc.drupal.publicbroadcasting.net/ + + + from + ^http://support\.kunc\.org/ + to + https://support.kunc.org/ + + + from + ^https?://help\.npr\.org/$ + to + https://www.fuzeqna.com/npr/consumer/search.asp + + + from + ^http://help\.npr\.org/npr/ + to + https://www.fuzeqna.com/npr/ + + + from + ^http://shop\.npr\.org/ + to + https://shop.npr.org/ + + + securecookie + + host + ^support\.kunc\.org$ + name + .+ + + target + + + host + kunk.org + + + host + *.kunk.org + + + host + npr.org + + + host + *.npr.org + + + + + NPTEd.org + + ruleset + + name + NPTEd.org + rule + + from + ^http://www\.npted\.org/ + to + https://www.npted.org/ + + target + + host + www.npted.org + + + + NR-assets.net + + ruleset + + name + NR-assets.net + rule + + from + ^http://storefront\.nr-assets\.net/ + to + https://storefront.nr-assets.net/ + + target + + host + storefront.nr-assets.net + + + + NRAO.edu (partial) + + ruleset + + name + NRAO.edu (partial) + rule + + + from + ^http://((?:svn\.aoc|archive|blogs|bugs|svn\.cv|www\.cv|inside|my|public|safe|science|search|staff|www)\.)?nrao\.edu/ + to + https://$1nrao.edu/ + + + from + ^http://rsync\.aoc\.nrao\.edu/+ + to + https://svn.aoc.nrao.edu/ + + + from + ^http://www\.vla\.nrao\.edu/genpub/tours(?=$|\?) + to + https://public.nrao.edu/tours/visitvla + + + securecookie + + host + ^(?:bugs|www)?\.nrao\.edu$ + name + .+ + + target + + + host + nrao.edu + + + host + *.nrao.edu + + + + + NSRC + + ruleset + + name + NSRC + rule + + from + ^http://(photos\.|www\.)?nsrc\.org/ + to + https://$1nsrc.org/ + + securecookie + + host + ^(?:www\.)?nsrc\.org$ + name + .+ + + target + + + host + nsrc.org + + + host + *.nsrc.org + + + + + NSS Labs.com + + ruleset + + name + NSS Labs.com + rule + + from + ^http://(dev\.|www\.)?nsslabs\.com/ + to + https://$1nsslabs.com/ + + target + + + host + nsslabs.com + + + host + *.nsslabs.com + + + + + NTC Hosting + + ruleset + + name + NTC Hosting + platform + mixedcontent + rule + + from + ^http://(www\.)?ntchosting\.com/ + to + https://$1ntchosting.com/ + + target + + + host + ntchosting.com + + + host + www.ntchosting.com + + + + + NTI.org (partial) + + ruleset + + name + NTI.org (partial) + rule + + from + ^http://(?:www\.)?nti\.org/(?=get-involved(?:$|[?/])|media/|static/) + to + https://www.nti.org/ + + target + + + host + nti.org + + + host + www.nti.org + + + + + NTNU.no + + ruleset + + name + NTNU.no + rule + + + from + ^http://(?:www\.)?ntnu\.no/ + to + https://www.ntnu.no/ + + + from + ^http://(?:www\.)?idi\.ntnu\.no/ + to + https://www.idi.ntnu.no/ + + + from + ^http://(alumni|er|innsida|videre)\.ntnu\.no/ + to + https://$1.ntnu.no/ + + + target + + + host + ntnu.no + + + host + *.ntnu.no + + + + + NTP.org (partial) + + ruleset + + name + NTP.org (partial) + platform + cacert + rule + + from + ^http://(support|lists)\.ntp\.org/ + to + https://$1.ntp.org/ + + securecookie + + host + ^(?:support|lists)\.ntp\.org$ + name + .+ + + target + + host + *.ntp.org + + + + NTT.com + + ruleset + + name + NTT.com + rule + + + from + ^http://(?:www\.)?ntt\.com/ + to + https://www.ntt.com/ + + + from + ^http://support\.ntt\.com/ + to + https://support.ntt.com/ + + + securecookie + + host + ^(?:support|www)\.ntt\.com$ + name + .+ + + target + + + host + ntt.com + + + host + *.ntt.com + + + + + NTTCom + + ruleset + + name + NTTCom + rule + + + from + ^http://www\.digitalforest\.co\.jp/ + to + https://www.digitalforest.co.jp/ + + + from + ^https?://(?:www\.)?nttcoms\.com/ + to + https://www.nttcoms.com/ + + + from + ^http://www01\.tracer\.jp/ + to + https://www01.tracer.jp/ + + + securecookie + + host + ^www\.nttcoms\.com$ + name + .+ + + target + + + host + www.digitalforest.co.jp + + + host + nttcoms.com + + + host + www.nttcoms.com + + + host + www01.tracer.jp + + + + + NTU + + ruleset + + name + NTU + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?ntu\.ac\.uk/ + to + https://www.ntu.ac.uk/ + + + from + ^http://(?:www\.)?ntualumni\.org\.uk/ + to + https://www.ntualumni.org.uk/ + + + target + + + host + ntu.ac.uk + + + host + www.ntu.ac.uk + + + host + ntualumni.org.uk + + + host + www.ntualumni.org.uk + + + + + NTVB Media (partial) + + ruleset + + name + NTVB Media (partial) + rule + + from + ^http://(secure\.|www\.)?iwantmytvmagazine\.com/ + to + https://$1iwantmytvmagazine.com/ + + securecookie + + host + .*\.iwantmytvmagazine\.com$ + name + .+ + + target + + + host + iwantmytvmagazine.com + + + host + *.iwantmytvmagazine.com + + + + + NTVSpor + + ruleset + + name + NTVSpor + platform + mixedcontent + rule + + from + ^http://(www\.)?ntvspor\.net/ + to + https://www.ntvspor.net/ + + securecookie + + host + ^(www\.)?ntvspor\.net$ + name + .* + + target + + + host + www.ntvspor.net + + + host + ntvspor.net + + + + + NTpandp.com + + ruleset + + name + NTpandp.com + rule + + from + ^http://(www\.)?ntpandp\.com/ + to + https://$1ntpandp.com/ + + securecookie + + host + ^(?:w*\.)?ntpandp\.com$ + name + .+ + + target + + + host + ntpandp.com + + + host + *.ntpandp.com + + + + + NUUG.no (false MCB) + + ruleset + + name + NUUG.no (false MCB) + platform + cacert mixedcontent + rule + + from + ^http://memberdb\.nuug\.no/(?=favicon\.ico|/*global\.css) + to + https://memberdb.nuug.no/ + + target + + host + memberdb.nuug.no + + + + NUUG.no (partial) + + ruleset + + exclusion + + pattern + ^http://memberdb\.nuug\.no/+(?!favicon\.ico|global\.css) + + name + NUUG.no (partial) + platform + cacert + rule + + from + ^http://((?:approve|lists|memberdb|nerdhaven|rt|www)\.)?nuug\.no/ + to + https://$1nuug.no/ + + target + + + host + nuug.no + + + host + *.nuug.no + + + + + NV Energy.com + + ruleset + + name + NV Energy.com + rule + + from + ^http://(www\.)?nvenergy\.com/ + to + https://$1nvenergy.com/ + + target + + + host + nvenergy.com + + + host + www.nvenergy.com + + + + + NYCLA.org + + ruleset + + name + NYCLA.org + rule + + from + ^http://(www\.)?nycla\.org/ + to + https://$1nycla.org/ + + securecookie + + host + ^(?:www\.)?nycla\.org$ + name + .+ + + target + + + host + nycla.org + + + host + www.nycla.org + + + + + NYDailyNews (false MCB) + + ruleset + + name + NYDailyNews (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?nydailynews\.com/ + to + https://www.nydailynews.com/ + + target + + + host + nydailynews.com + + + host + www.nydailynews.com + + + + + NYDailyNews (partial) + + ruleset + + exclusion + + + pattern + ^http://classifieds\.nydailynews\.com/+(?!resource/) + + + pattern + ^http://www\.nydailynews\.com/+(?!cmlink/|nydn/|polopoly_fs/) + + + name + NYDailyNews (partial) + rule + + + from + ^http://(?:assets|static\d|www)\.nydailynews\.com/ + to + https://www.nydailynews.com/ + + + from + ^http://(classifiedads|homedelivery|webport1?)\.nydailynews\.com(:8443)?/ + to + https://$1.nydailynews.com$2/ + + + from + ^http://classifieds\.nydailynews\.com/resource/ + to + https://casmp.adperfect.com/resource/ + + + securecookie + + host + ^[^@:/]*\.nydailynews\.com$ + name + .+ + + target + + + host + nydailynews.com + + + host + *.nydailynews.com + + + + + NYK Europe.com (false MCB) + + ruleset + + name + NYK Europe.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?nykeurope\.com/(?!favicon\.ico|images/|media/|modules/|templates/) + to + https://$1nykeurope.com/ + + securecookie + + host + ^(?:w*\.)?nykeurope\.com$ + name + .+ + + target + + + host + nykeurope.com + + + host + *.nykeurope.com + + + + + NYK Europe.com (partial) + + ruleset + + name + NYK Europe.com (partial) + rule + + from + ^http://(www\.)?nykeurope\.com/(?=favicon\.ico|images/|media/|modules/|templates/) + to + https://$1nykeurope.com/ + + target + + + host + nykeurope.com + + + host + www.nykeurope.com + + + + + NYSE Euronext + + ruleset + + name + NYSE Euronext + rule + + + from + ^http://(?:www\.)?nyx\.com/ + to + https://www.nyx.com/ + + + from + ^http://(bonds|connect|corporate|etp|euconsumer|europeanequities|exchanges|globalderivatives|indices|markets|nyse|nysetechnologies|usequities)\.nyx\.com/ + to + https://$1.nyx.com/ + + + securecookie + + host + ^(?:bonds|connect|etp|euconsumer|europeanequities|exchanges|globalderivatives|indices|markets|nyse|nysetechnologies|usequities|www)\.nyx\.com$ + name + .+ + + target + + + host + nyx.com + + + host + *.nyx.com + + + + + NYT eXaminer.com + + ruleset + + name + NYT eXaminer.com + rule + + from + ^http://(www\.)?nytexaminer\.com/ + to + https://$1nytexaminer.com/ + + securecookie + + host + ^(?:www)?\.nytexaminer\.com$ + name + .+ + + target + + + host + nytexaminer.com + + + host + *.nytexaminer.com + + + + + NZBIndex + + ruleset + + name + NZBIndex + rule + + from + ^http://(www\.)?nzbindex\.(?:nl|com)/ + to + https://$1nzbindex.com/ + + securecookie + + host + ^(www\.)?nzbindex\.com$ + name + .* + + target + + + host + nzbindex.com + + + host + www.nzbindex.com + + + host + nzbindex.nl + + + host + www.nzbindex.nl + + + + + Nabers.com + + ruleset + + name + Nabers.com + rule + + from + ^http://(www\.)?(nabers|unlimited401k)\.com/ + to + https://$1$2.com/ + + securecookie + + host + ^\.(?:nabers|unlimited401k)\.com$ + name + .+ + + target + + + host + nabers.com + + + host + *.nabers.com + + + host + unlimited401k.com + + + host + *.unlimited401k.com + + + + + Nagra.com + + ruleset + + name + Nagra.com + rule + + + from + ^http://(?:www\.)?nagra\.com/ + to + https://www.nagra.com/ + + + from + ^http://(careers|www2014)\.nagra\.com/ + to + https://$1.nagra.com/ + + + target + + + host + nagra.com + + + host + *.nagra.com + + + + + Naiin.com + + ruleset + + name + Naiin.com + rule + + from + ^http://(www\.)?naiin\.com/ + to + https://www.naiin.com/ + + target + + + host + naiin.com + + + host + www.naiin.com + + + + + Naked citizens + + ruleset + + name + Naked citizens + rule + + from + ^http://(www\.)?nakedcitizens\.eu/ + to + https://$1nakedcitizens.eu/ + + securecookie + + host + ^(?:www\.)?nakedcitizens\.eu$ + name + .+ + + target + + + host + nakedcitizens.eu + + + host + www.nakedcitizens.eu + + + + + Name.com (partial) + + ruleset + + name + Name.com (partial) + rule + + + from + ^http://(manage\.|www\.)?name\.com/ + to + https://$1name.com/ + + + from + ^http://support\.name\.com/(generated|system)/ + to + https://assets.zendesk.com/$1/ + + + securecookie + + host + ^www\.name\.com$ + name + .+ + + target + + + host + name.com + + + host + *.name.com + + + + + NameCentr.al + + ruleset + + name + NameCentr.al + rule + + from + ^http://(?:www\.)?namecentr(\.al|al\.com)/ + to + https://namecentr$1/ + + securecookie + + host + ^\.namecentr(?:\.al|al\.com)$ + name + .+ + + target + + + host + namecentr.al + + + host + *.namecentr.al + + + host + namecentral.com + + + host + *.namecentral.com + + + + + NameCheap + + ruleset + + name + NameCheap + rule + + + from + ^http://(?:www\.)?namecheap\.com/ + to + https://www.namecheap.com/ + + + from + ^http://files\.namecheap\.com/ + to + https://files.namecheap.com/ + + + from + ^http://(?:www\.)?nc\.me/ + to + https://www.nc.me/ + + + securecookie + + host + ^\.?www\.namecheap\.com$ + name + .* + + target + + + host + namecheap.com + + + host + www.namecheap.com + + + host + *.www.namecheap.com + + + host + files.namecheap.com + + + host + nc.me + + + host + *.nc.me + + + + + NameID.org + + ruleset + + name + NameID.org + rule + + from + ^http://(www\.)?nameid\.org/ + to + https://$1nameid.org/ + + target + + + host + nameid.org + + + host + www.nameid.org + + + + + NameMedia (partial) + + ruleset + + name + NameMedia (partial) + rule + + + from + ^http://(?:origin-)?images\.sitesense-oo\.com/ + to + https://origin-images.sitesense-oo.com/ + + + from + ^http://partners\.smartname\.com/ + to + https://partners.smartname.com/ + + + securecookie + + host + ^partners\.smartname\.com$ + name + .* + + target + + + host + partners.smartname.com + + + host + *.sitesense-oo.com + + + + + Namecoin.info (partial) + + ruleset + + name + Namecoin.info (partial) + rule + + from + ^http://(forum|wiki)\.namecoin\.info/ + to + https://$1.namecoin.info/ + + target + + host + *.namecoin.info + + + + Names + + ruleset + + name + Names + rule + + + from + ^http://(?:www\.)?names\.co\.uk/ + to + https://www.names.co.uk/ + + + from + ^http://(admin|webmail4?)\.names\.co\.uk/ + to + https://$1.names.co.uk/ + + + target + + + host + names.co.uk + + + host + www.names.co.uk + + + host + admin.names.co.uk + + + host + webmail4.names.co.uk + + + + + Nancys Gone Green.com + + ruleset + + name + Nancys Gone Green.com + rule + + from + ^http://(www\.)?nancysgonegreen\.com/ + to + https://$1nancysgonegreen.com/ + + securecookie + + host + ^(?:www)?\.nancysgonegreen\.com$ + name + .+ + + target + + + host + nancysgonegreen.com + + + host + *.nancysgonegreen.com + + + + + Nandos.com (partial) + + ruleset + + name + Nandos.com (partial) + rule + + from + ^http://(?:www\.)?nandos\.com/(?=faq(?:$|[?/])|favicon\.ico|sites/) + to + https://www.nandos.com/ + + target + + + host + nandos.com + + + host + www.nandos.com + + + + + Nanigans (partial) + + ruleset + + name + Nanigans (partial) + rule + + + from + ^http://(api|lp)\.nanigans\.com/ + to + https://$1.nanigans.com/ + + + from + ^http://(?:www\.)?(socialtyze|unified)tracking\.com/ + to + https://www.$1tracking.com/ + + + securecookie + + + host + ^lp\.nanigans\.com$ + name + .+ + + + host + ^www\.(?:socialtyze|unified)tracking\.com$ + name + .+ + + + target + + + host + *.nanigans.com + + + host + socialtyzetracking.com + + + host + www.socialtyzetracking.com + + + host + unifiedtracking.com + + + host + www.unifiedtracking.com + + + + + NanoHUB + + ruleset + + name + NanoHUB + rule + + from + ^http://(?:www\.)?nanohub\.org/ + to + https://nanohub.org/ + + target + + + host + nanohub.org + + + host + www.nanohub.org + + + + + Nanyang Technological University (partial) + + ruleset + + name + Nanyang Technological University (partial) + rule + + + from + ^https?://(?:www\.)?ntu\.edu\.sg/ + to + https://www.ntu.edu.sg/ + + + from + ^http://wis\.ntu\.edu\.sg/ + to + https://wis.ntu.edu.sg/ + + + target + + + host + ntu.edu.sg + + + host + *.ntu.edu.sg + + + + + Naples News.com (partial) + + ruleset + + name + Naples News.com (partial) + rule + + + from + ^http://(?:www\.)?naplesnews\.com/ + to + https://www.naplesnews.com/ + + + from + ^http://login\.naplesnews\.com/ + to + https://login.naplesnews.com/ + + + from + ^http://media\.naplesnews\.com/ + to + https://a248.e.akamai.net/f/1092/7939/6m/media.naplesnews.com/ + + + from + ^http://web\.naplesnews\.com/ + to + https://a248.e.akamai.net/f/1075/5672/8m/web.naplesnews.com/ + + + securecookie + + host + ^(?:login)?\.naplesnews\.com$ + name + .+ + + target + + + host + naplesnews.com + + + host + *.naplesnews.com + + + + + Napoleon Makeup Academy.com + + ruleset + + name + Napoleon Makeup Academy.com + rule + + from + ^http://(www\.)?napoleonmakeupacademy\.com(\.au)?/ + to + https://$1napoleonmakeupacademy.com$2/ + + securecookie + + host + ^\.napoleonmakeupacademy\.com(?:\.au)?$ + name + .+ + + target + + + host + napoleonmakeupacademy.com + + + host + *.napoleonmakeupacademy.com + + + host + napoleonmakeupacademy.com.au + + + host + *.napoleonmakeupacademy.com.au + + + + + Narac.com + + ruleset + + name + Narac.com + rule + + from + ^http://(?:www\.)?narac\.com/ + to + https://www.narac.com/ + + target + + + host + narac.com + + + host + www.narac.com + + + + + Naromax + + ruleset + + name + Naromax + rule + + from + ^http://(www\.)?naromax\.com/ + to + https://$1naromax.com/ + + securecookie + + host + ^(?:w*\.)?naromax\.com$ + name + .+ + + target + + + host + naromax.com + + + host + *.naromax.com + + + + + Nasjonal Sikkerhetsmyndighet (NSM) + + ruleset + + name + Nasjonal Sikkerhetsmyndighet (NSM) + rule + + + from + ^https?://nsm\.stat\.no/ + to + https://www.nsm.stat.no/ + + + from + ^http://([^/:@]+)?\.nsm\.stat\.no/ + to + https://$1.nsm.stat.no/ + + + securecookie + + host + ^(.*\.)?nsm\.stat\.no$ + name + .+ + + target + + + host + nsm.stat.no + + + host + *.nsm.stat.no + + + + + Nasuni.com (partial) + + ruleset + + name + Nasuni.com (partial) + rule + + + from + ^http://(www\.)?nasuni\.com/(account|evaluate|fonts/|img/|writable/) + to + https://www.nasuni.com/$2 + + + from + ^http://account\.nasuni\.com/ + to + https://account.nasuni.com/ + + + securecookie + + host + ^account\.nasuni\.com$ + name + .* + + target + + + host + nasuni.com + + + host + account.nasuni.com + + + host + www.nasuni.com + + + + + NationBuilder (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?nationbuilder\.com/(?!assets/|themes/) + + name + NationBuilder (partial) + rule + + + from + ^https?://(?:www\.)?nationbuilder\.com/ + to + https://nationbuilder.com/ + + + from + ^http://([\w-]+)\.nationbuilder\.com/ + to + https://$1.nationbuilder.com/ + + + target + + + host + nationbuilder.com + + + host + *.nationbuilder.com + + + + + NationStates.net + + ruleset + + name + NationStates.net + rule + + from + ^http://(www\.)?nationstates\.net/ + to + https://$1nationstates.net/ + + securecookie + + host + ^\.nationstates\.net$ + name + .+ + + target + + + host + nationstates.net + + + host + *.nationstates.net + + + + + National Abortion Federation + + ruleset + + name + National Abortion Federation + rule + + from + ^http://(?:www\.)?prochoice\.org/ + to + https://www.prochoice.org/ + + target + + + host + prochoice.org + + + host + www.prochoice.org + + + + + National Academy of Engineering + + ruleset + + name + National Academy of Engineering + rule + + from + ^http://(?:www\.)?nae\.edu/ + to + https://www.nae.edu/ + + securecookie + + host + ^(?:.*\.)?nae\.edu$ + name + .+ + + target + + + host + nae.edu + + + host + www.nae.edu + + + + + National American Arab Nursing Association + + ruleset + + name + National American Arab Nursing Association + rule + + from + ^(http://(www\.)?|https://www\.)n-aana\.org/ + to + https://n-aana.org/ + + target + + + host + n-aana.org + + + host + www.n-aana.org + + + + + National Arbitration Forum (partial) + + ruleset + + name + National Arbitration Forum (partial) + rule + + from + ^http://secure\.arb-forum\.com/ + to + https://secure.arb-forum.com/ + + securecookie + + host + ^secure\.arb-forum\.com$ + name + .* + + target + + host + secure.arb-forum.com + + + + National Bureau of Economic Research + + ruleset + + name + National Bureau of Economic Research + rule + + from + ^http://(img\.|www\.)?nber\.org/ + to + https://$1nber.org/ + + target + + + host + nber.org + + + host + *.nber.org + + + + + National Capital Authority + + ruleset + + name + National Capital Authority + rule + + from + ^http://(?:www\.)?nationalcapital\.gov\.au/ + to + https://www.nationalcapital.gov.au/ + + target + + + host + nationalcapital.gov.au + + + host + *.nationalcapital.gov.au + + + + + National Children's Leukemia Foundation + + ruleset + + name + National Children's Leukemia Foundation + rule + + + from + ^http://(www\.)?leukemiafoundation\.org/ + to + https://www.leukemiafoundation.org/ + + + from + ^https://leukemiafoundation\.org/ + to + https://www.leukemiafoundation.org/ + + + target + + + host + leukemiafoundation.org + + + host + www.leukemiafoundation.org + + + + + National Consumer Protection Week + + ruleset + + name + National Consumer Protection Week + rule + + + from + ^http://(?:www\.)?(ncpw|protecciondelconsumidor)\.gov/ + to + https://www.$1.gov/ + + + from + ^http://(?:www\.)?military\.ncpw\.gov/ + to + https://www.military.ncpw.gov/ + + + target + + + host + ncpw.gov + + + host + *.ncpw.gov + + + host + protecciondelconsumidor.gov + + + host + www.protecciondelconsumidor.gov + + + + + National Defense Industrial Association (partial) + + ruleset + + name + National Defense Industrial Association (partial) + rule + + from + ^http://(www\.)?n(ationaldefensemagazine|dia)\.org/(_layouts/|banman/|Divisions/|favicon\.ico|flash/|images/|(Publishing|SiteCollection)Images/|Style%20Library/|WebResource\.axd) + to + https://$1n$2.org/$3 + + target + + + host + nationaldefensemagazine.org + + + host + www.nationaldefensemagazine.org + + + host + ndia.org + + + host + www.ndia.org + + + + + National E-Health Transition Authority + + ruleset + + name + National E-Health Transition Authority + rule + + from + ^http://(?:www\.)?nehta\.gov\.au/ + to + https://www.nehta.gov.au/ + + target + + + host + nehta.gov.au + + + host + *.nehta.gov.au + + + + + National Eating Disorders Association + + ruleset + + exclusion + + + pattern + ^http://(www.)?nationaleatingdisorders\.org/photo-gallery/ + + + pattern + ^http://(www.)?nationaleatingdisorders\.org/cmtadmin/ + + + name + National Eating Disorders Association + rule + + from + ^(http://(www\.)?|https://)nationaleatingdisorders\.org/ + to + https://www.nationaleatingdisorders.org/ + + target + + + host + nationaleatingdisorders.org + + + host + www.nationaleatingdisorders.org + + + + + National Ethics Application Form + + ruleset + + name + National Ethics Application Form + rule + + from + ^http://(?:www\.)?neaf\.gov\.au/ + to + https://www.neaf.gov.au/ + + target + + + host + neaf.gov.au + + + host + *.neaf.gov.au + + + + + National Express (partial) + + ruleset + + name + National Express (partial) + rule + + + from + ^http://(www\.)?nationalexpress\.com/(coach_(?:cs|im)s|im)/ + to + https://$1nationalexpress.com/$2/ + + + from + ^http://(coach|help)\.nationalexpress\.com/ + to + https://$1.nationalexpress.com/ + + + from + ^http://(www\.)?nationalexpress\.jobs/ + to + https://$1nationalexpress.jobs/ + + + securecookie + + host + ^(?:coach|help)\.nationalexpress\.com$ + name + .+ + + target + + + host + nationalexpress.com + + + host + *.nationalexpress.com + + + host + nationalexpress.jobs + + + host + www.nationalexpress.jobs + + + + + National Federation of the Blind (partial) + + ruleset + + name + National Federation of the Blind (partial) + rule + + from + ^(http://|https?://www\.)nfb\.org/ + to + https://nfb.org/ + + target + + + host + nfb.org + + + host + www.nfb.org + + + + + National Geographic (partial) + + ruleset + + exclusion + + pattern + ^http://m?shop\.nationalgeographic\.com/(?!css/|favicon\.ico|html/|images/|javascript/|ngs/(?:m/)?myaccount/login\.jsp|omniture/|pwr/) + + name + National Geographic (partial) + rule + + + from + ^https?://(?:www\.)?nationalgeographic\.com/($|\?|leaderboard/quiz/) + to + https://www-s.nationalgeographic.com/$1 + + + from + ^http://(channel|donate|genographic|media-(?:channel|members|mmdb|yourshot)|members|metrics|mmdb|m?shop|(?:stage\.)?natgeotv|www-s)\.nationalgeographic\.com/ + to + https://$1.nationalgeographic.com/ + + + from + ^http://dotcom-media\.nationalgeographic\.com/ + to + https://a248.e.akamai.net/f/1843/2965/3/dotcom-media.nationalgeographic.com/ + + + from + ^http://images\.nationalgeographic\.com/ + to + https://a248.e.akamai.net/f/1621/2601/6h/images.nationalgeographic.com/ + + + from + ^http://kids\.nationalgeographic\.com/(?=exposure/core_media/|fastfacts/get_json_fact_list/|favicon\.ico|sites/) + to + https://a248.e.akamai.net/f/1966/8789/10f/kids.nationalgeographic.com/ + + + from + ^http://metric\.nationalgeographic\.com/ + to + https://nationalgeographic-com.112.2o7.net/ + + + from + ^http://news\.nationalgeographic\.com/exposure/core_media/ + to + https://a248.e.akamai.net/f/1420/6828/10/news.nationalgeographic.com/exposure/core_media/ + + + securecookie + + + host + ^\.nationalgeographic\.com$ + name + ^(?:gpv_p\d+|s_\w+|__utm)\w$ + + + host + ^donate\.nationalgeographic\.com$ + name + .+ + + + target + + + host + nationalgeographic.com + + + host + *.nationalgeographic.com + + + + + National Grid + + ruleset + + name + National Grid + rule + + + from + ^https?://nationalgrid\.com/ + to + https://www.nationalgrid.com/ + + + from + ^http://([^/:@]+)?\.nationalgrid\.com/ + to + https://$1.nationalgrid.com/ + + + target + + + host + nationalgrid.com + + + host + *.nationalgrid.com + + + + + National Health and Medical Research Council + + ruleset + + name + National Health and Medical Research Council + rule + + from + ^http://(?:www\.)?nhmrc\.gov\.au/ + to + https://www.nhmrc.gov.au/ + + target + + + host + nhmrc.gov.au + + + host + *.nhmrc.gov.au + + + + + National Institute for Social Media + + ruleset + + name + National Institute for Social Media + rule + + from + ^http://(www\.)?nismonline\.org/ + to + https://$1nismonline.org/ + + securecookie + + host + ^(?:w*\.)?nismonline\.org$ + name + .+ + + target + + + host + nismonline.org + + + host + *.nismonline.org + + + + + National Institute of Standards and Technology (partial) + + ruleset + + name + National Institute of Standards and Technology (partial) + rule + + from + ^http://((?:web\.)?nvd|tsapps)\.nist\.gov/ + to + https://$1.nist.gov/ + + securecookie + + host + ^.*\.nist\.gov$ + name + .* + + target + + + host + *.nist.gov + + + host + web.nvd.nist.gov + + + + + National Institutes of Health (partial) + + ruleset + + name + National Institutes of Health (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?(nlm|training)\.nih\.gov/ + to + https://www.$1.nih.gov/ + + + from + ^http://((?:pubchem\.|www\.)?ncbi|www\.niaid|www\.nidcd)\.nlm\.nih\.gov/ + to + https://$1.nlm.nih.gov/ + + + from + ^https?://(?:www\.)?pubmed\.gov/ + to + https://www.ncbi.nlm.nih.gov/pubmed/ + + + securecookie + + host + ^.*\.nih\.gov$ + name + .+ + + target + + + host + *.nih.gov + + + host + pubmed.gov + + + host + *.pubmed.gov + + + + + National Lawyers Guild + + ruleset + + name + National Lawyers Guild + rule + + from + ^http://(?:www\.)?nlg\.org/ + to + https://www.nlg.org/ + + target + + + host + nlg.org + + + host + www.nlg.org + + + + + National Library of Australia + + ruleset + + name + National Library of Australia + rule + + from + ^http://(?:www\.)?nla\.gov\.au/ + to + https://www.nla.gov.au/ + + target + + + host + nla.gov.au + + + host + *.nla.gov.au + + + + + National Oceanic and Atmospheric Administration (partial) + + ruleset + + name + National Oceanic and Atmospheric Administration (partial) + rule + + from + ^https?://(?:www\.)?ncdc\.noaa\.gov/ + to + https://www.ncdc.noaa.gov/ + + securecookie + + host + ^www\.ncdc\.noaa\.gov$ + name + .+ + + target + + + host + ncdc.noaa.gov + + + host + www.ncdc.noaa.gov + + + + + National Optical Astronomy Observatory (partial) + + ruleset + + name + National Optical Astronomy Observatory (partial) + rule + + from + ^https?://(?:www\.)?noao\.edu/ + to + https://www.noao.edu/ + + target + + + host + noao.edu + + + host + www.noao.edu + + + + + National Park Service (partial) + + ruleset + + name + National Park Service (partial) + rule + + from + ^http://(irma|science\.nature|ncptt|npssa|parkplanning|pepc|zionpermits)\.nps\.gov/ + to + https://$1.nps.gov/ + + securecookie + + host + ^.+\.nps\.gov$ + name + .+ + + target + + host + *.nps.gov + + + + National Portrait Gallery + + ruleset + + name + National Portrait Gallery + rule + + from + ^http://(?:www\.)?portrait\.gov\.au/ + to + https://www.portrait.gov.au/ + + target + + + host + portrait.gov.au + + + host + *.portrait.gov.au + + + + + National Press Photographers Association + + ruleset + + name + National Press Photographers Association + rule + + from + ^https?://(?:www\.)?nppa\.org/ + to + https://www.nppa.org/ + + target + + + host + nppa.org + + + host + www.nppa.org + + + + + National Rail Enquiries (partial) + + ruleset + + exclusion + + pattern + ^http://ojp\.nationalrail\.co\.uk/service/ + + name + National Rail Enquiries (partial) + rule + + + from + ^http://(?:www\.)?nationalrail\.co\.uk/images/ + to + https://ojp.nationalrail.co.uk/redesign/default/images/ + + + from + ^http://img\.nationalrail\.co\.uk/ + to + https://d7cizd44vlm94.cloudfront.net/ + + + from + ^https?://js\.nationalrail\.co\.uk/ + to + https://d2uncb19xzxhzx.cloudfront.net/ + + + from + ^http://ojp\.nationalrail\.co\.uk/ + to + https://ojp.nationalrail.co.uk/ + + + target + + + host + nationalrail.co.uk + + + host + *.nationalrail.co.uk + + + + + National Renewable Energy Laboratory (partial) + + ruleset + + name + National Renewable Energy Laboratory (partial) + rule + + + from + ^http://(www\.)?nrel\.gov/(?:((?:news/features/|sustainable_nrel/)?images)1?|((?:data/pix/)?includes|includes_tableless))/ + to + https://$1nrel.gov/$2$3/ + + + from + ^http://rredc\.nrel\.gov/gifs/ + to + https://rredc.nrel.gov/gifs/ + + + target + + + host + nrel.gov + + + host + rredc.nrel.gov + + + host + www.nrel.gov + + + + + National Research Council Canada + + ruleset + + name + National Research Council Canada + rule + + from + ^http://(www\.)?nrc-cnrc\.gc\.ca/ + to + https://$1nrc-cnrc.gc.ca/ + + target + + + host + nrc-cnrc.gc.ca + + + host + www.nrc-cnrc.gc.ca + + + + + National Retail Federation (partial) + + ruleset + + name + National Retail Federation (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?nrf\.com/ + to + https://$1nrf.com/ + + target + + + host + nrf.com + + + host + www.nrf.com + + + + + National Science Foundation (partial) + + ruleset + + exclusion + + pattern + ^http://www\.nsf\.gov/($|\?|index\.jsp|awardsearch|statistics) + + name + National Science Foundation (partial) + rule + + + from + ^https?://(?:www\.)?nsf\.gov/ + to + https://www.nsf.gov/ + + + from + ^https?://(?:www\.)?f(astlane|ldemo)\.nsf\.gov/ + to + https://www.f$1.nsf.gov/ + + + securecookie + + host + ^.*\.nsf\.gov$ + name + .* + + target + + + host + nsf.gov + + + host + *.nsf.gov + + + host + www.*.nsf.gov + + + + + National Security Agency + + ruleset + + name + National Security Agency + platform + mixedcontent + rule + + from + ^http://(www\.)?nsa\.gov/ + to + https://$1nsa.gov/ + + target + + + host + nsa.gov + + + host + www.nsa.gov + + + + + National Snow and Ice Data Center + + ruleset + + name + National Snow and Ice Data Center + rule + + from + ^http://(?:((?:staging\.)?extranet\.|(?:integration\.|qa\.|staging\.)?igloo\.|integration\.|monitor\.|qa\.|staging\.)|www\.)?nsidc\.org/ + to + https://$1nsidc.org/ + + target + + + host + nsidc.org + + + host + *.nsidc.org + + + host + staging.extranet.nsidc.org + + + host + *.igloo.nsidc.org + + + + + National Suicide Prevention Lifeline + + ruleset + + name + National Suicide Prevention Lifeline + platform + mixedcontent + rule + + from + ^http://(?:www\.)?suicidepreventionlifeline\.org/ + to + https://www.suicidepreventionlifeline.org/ + + target + + + host + suicidepreventionlifeline.org + + + host + www.suicidepreventionlifeline.org + + + + + National Transport Safety Board + + ruleset + + name + National Transport Safety Board + rule + + from + ^https?://(?:www\.)?ntsb\.gov/ + to + https://www.ntsb.gov/ + + target + + + host + ntsb.gov + + + host + www.ntsb.gov + + + + + National Travel Health Network and Centre (NaTHNaC) + + ruleset + + name + National Travel Health Network and Centre (NaTHNaC) + rule + + + from + ^https?://nathnac\.org/ + to + https://www.nathnac.org/ + + + from + ^http://([^/:@]+)?\.nathnac\.org/ + to + https://$1.nathnac.org/ + + + target + + + host + nathnac.org + + + host + *.nathnac.org + + + + + National University of Ireland (partial) + + ruleset + + name + National University of Ireland (partial) + rule + + + from + ^http://(www\.)?deri\.ie/ + to + https://$1deri.ie/ + + + from + ^http://(?:www\.)?nuigalway\.ie/ + to + https://www.nuigalway.ie/ + + + securecookie + + host + ^(?:www\.)?deri\.ie$ + name + .* + + target + + + host + deri.ie + + + host + www.deri.ie + + + host + nuigalway.ie + + + host + www.nuigalway.ie + + + + + National Vulvodynia Association + + ruleset + + name + National Vulvodynia Association + rule + + from + ^(http://(www\.)?|https://)nva\.org/ + to + https://www.nva.org/ + + target + + + host + nva.org + + + host + www.nva.org + + + + + National Wildlife Foundation (partial) + + ruleset + + name + National Wildlife Foundation (partial) + rule + + + from + ^https?://(?:www\.)?nwf\.org/ + to + https://www.nwf.org/ + + + from + ^http://online\.nwf\.org/(?!site/PageServer) + to + https://online.nwf.org/ + + + securecookie + + host + ^www\.nwf\.org$ + name + .+ + + target + + + host + nwf.org + + + host + *.nwf.org + + + + + NationalArchivesGovUK (partial) + + ruleset + + exclusion + + pattern + ^http://discovery\.nationalarchives\.gov\.uk/+(?!SearchUI/Content/) + + name + NationalArchivesGovUK (partial) + rule + + + from + ^http://(?:www\.)?nationalarchives\.gov\.uk/ + to + https://www.nationalarchives.gov.uk/ + + + from + ^http://(community|discovery|images)\.nationalarchives\.gov\.uk/ + to + https://$1.nationalarchives.gov.uk/ + + + securecookie + + host + .+\.nationalarchives\.gov\.uk$ + name + .+ + + target + + + host + nationalarchives.gov.uk + + + host + *.nationalarchives.gov.uk + + + + + NationalLottery + + ruleset + + name + NationalLottery + rule + + from + ^http://(?:www\.)?national-lottery\.co\.uk/ + to + https://www.national-lottery.co.uk/ + + securecookie + + host + ^(.+\.)?national-lottery\.co\.uk$ + name + .* + + target + + + host + national-lottery.co.uk + + + host + www.national-lottery.co.uk + + + + + NationalReview.com (partial) + + ruleset + + name + NationalReview.com (partial) + rule + + + from + ^http://(nr-media-01|www2)\.nationalreview\.com/ + to + https://$1.nationalreview.com/ + + + from + ^http://(www\.)?nationalreview\.com/(images|sites)/ + to + https://www.nationalreview.com/$2/ + + + target + + + host + nationalreview.com + + + host + nr-media-01.nationalreview.com + + + host + www.nationalreview.com + + + host + www2.nationalreview.com + + + + + Nationwide Building Society (partial) + + ruleset + + name + Nationwide Building Society (partial) + rule + + + from + ^http://olb2\.nationet\.com/ + to + https://olb2.nationet.com/ + + + from + ^https?://metrics\.nationwide\.co\.uk/ + to + https://nationwide-co-uk.d2.sc.omtrdc.net/ + + + from + ^http://(onlinebanking|savings|securemail)\.nationwide\.co\.uk/ + to + https://$1.nationwide.co.uk/ + + + from + ^https?://(?:www\.)?nationwide-jobs\.co\.uk/ + to + https://www.nationwide-jobs.co.uk/ + + + from + ^http://olb\.nationwide(international\.com|uk\.ie)/ + to + https://olb.nationwide$1/ + + + securecookie + + + host + ^olb2\.nationet\.com$ + name + .+ + + + host + ^\.nationwide\.co\.uk$ + name + ^s_\w\w$ + + + host + ^(?:\.?onlinebanking|savings|securemail)\.nationwide\.co\.uk$ + name + .+ + + + host + ^www\.nationwide-jobs\.co\.uk$ + name + .+ + + + target + + + host + olb2.nationet.com + + + host + *.nationwide.co.uk + + + host + olb.nationwideinternational.com + + + host + nationwide-jobs.co.uk + + + host + www.nationwide-jobs.co.uk + + + host + olb.nationwideuk.ie + + + + + Nativo.net (partial) + + ruleset + + name + Nativo.net (partial) + rule + + + from + ^http://(?:www\.)?nativo\.net/(?=favicon\.ico|v2/) + to + https://www.nativo.net/ + + + from + ^http://beta\.nativo\.net/(?:\?.*)?$ + to + https://beta.nativo.net/Account/Login + + + from + ^http://(admin|beta)\.nativo\.net/ + to + https://$1.nativo.net/ + + + securecookie + + host + ^(?:admin|beta)\.nativo\.net$ + name + .+ + + target + + + host + nativo.net + + + host + *.nativo.net + + + + + Nattstad.se + + ruleset + + name + Nattstad.se + platform + mixedcontent + rule + + + from + ^http://www\.nattstad\.se/ + to + https://www.nattstad.se/ + + + from + ^http://nattstad\.se/ + to + https://www.nattstad.se/ + + + target + + + host + nattstad.se + + + host + www.nattstad.se + + + + + Natural Environment Research Council (partial) + + ruleset + + name + Natural Environment Research Council (partial) + rule + + from + ^http://hds\.nerc\.ac\.uk/ + to + https://hds.nerc.ac.uk/ + + securecookie + + host + ^hds\.nerc\.ac\.uk$ + name + .* + + target + + host + hds.nerc.ac.uk + + + + Natural Skin Shop + + ruleset + + name + Natural Skin Shop + rule + + from + ^http://(store\.|www\.)?naturalskinshop\.com/ + to + https://$1naturalskinshop.com/ + + securecookie + + host + ^.*\.naturalskinshop\.com$ + name + .+ + + target + + + host + naturalskinshop.com + + + host + *.naturalskinshop.com + + + + + Nature (partial) + + ruleset + + name + Nature (partial) + rule + + + from + ^https?://(?:www\.)?nature\.com/(cimages/|common/|favicon\.ico|info/|myaccount|(?:view/(?:\w+/)?)?(?:imag|styl)es/) + to + https://secure.nature.com/$1 + + + from + ^http://s(ecure|tatus)\.nature\.com/ + to + https://s$1.nature.com/ + + + securecookie + + host + ^secure\.nature\.com$ + name + .* + + target + + + host + nature.com + + + host + *.nature.com + + + + + Nature Shop (partial) + + ruleset + + name + Nature Shop (partial) + rule + + from + ^http://(www\.)?natureshop\.com/(cart/|Content/|s/|secure/|Support/index|upload/) + to + https://$1natureshop.com/$2 + + target + + + host + natureshop.com + + + host + www.natureshop.com + + + + + Naturvardsverket.se + + ruleset + + name + Naturvardsverket.se + rule + + + from + ^http://www\.naturvardsverket\.se/ + to + https://www.naturvardsverket.se/ + + + from + ^http://naturvardsverket\.se/ + to + https://naturvardsverket.se/ + + + target + + + host + naturvardsverket.se + + + host + www.naturvardsverket.se + + + + + Naughty Dog + + ruleset + + name + Naughty Dog + rule + + from + ^http://(www\.)?naughtydog\.com/ + to + https://$1naughtydog.com/ + + securecookie + + host + ^(?:w*\.)?naughtydog\.com$ + name + .+ + + target + + + host + naughtydog.com + + + host + *.naughtydog.com + + + + + Naukri + + ruleset + + name + Naukri + rule + + from + ^http://login\.naukri\.com/ + to + https://login.naukri.com/ + + target + + host + login.naukri.com + + + + Nautil.us (partial) + + ruleset + + name + Nautil.us (partial) + rule + + + from + ^http://shop\.nautil\.us/ + to + https://shop.nautil.us/ + + + from + ^http://static\.nautil\.us/ + to + https://d3chnh8fr629l6.cloudfront.net/ + + + target + + host + *.nautil.us + + + + Naver Corp.com + + ruleset + + name + Naver Corp.com + rule + + from + ^http://(?:www\.)?navercorp\.com/ + to + https://www.navercorp.com/ + + target + + + host + navercorp.com + + + host + www.navercorp.com + + + + + Naver.com (partial) + + ruleset + + exclusion + + + pattern + ^http://crossmedia\.naver\.com/+(?!css/|favicon\.ico|renewal_\d+/) + + + pattern + ^http://help\.checkout\.naver\.com/+(?!fpsfiles/|static/) + + + pattern + ^http://partners\.naver\.com/+(?!css/|img/) + + + pattern + ^http://ips\.storefarm\.naver\.com/+(?!css/) + + + name + Naver.com (partial) + rule + + + from + ^http://(calendar|(?:(?:admin|help|order)\.)?checkout|crossmedia|happybean|help|(?:m\.)?mail[12]?|ssl\.mileage|nid|static\.nid|partners|img\.searchad|sell\.shop|(?:ips|sell)\.storefarm|submit)\.naver\.com/ + to + https://$1.naver.com/ + + + from + ^http://(?:ssl\.)?mileage\.naver\.com/ + to + https://ssl.mileage.naver.com/ + + + from + ^http://sstatic\.naver\.com/ + to + https://a248.e.akamai.net/f/248/10/10/sstatic.naver.com/ + + + securecookie + + host + ^(?:(?:admin\.|order\.)?checkout|sell\.storefarm)\.naver\.com$ + name + .+ + + target + + host + *.naver.com + + + + Naver.net (partial) + + ruleset + + name + Naver.net (partial) + rule + + + from + ^http://(t\.static\.blog|imgmovie|static\.land|static\.shopping|static)\.naver\.net/ + to + https://a248.e.akamai.net/f/248/10/10/$1.naver.net/ + + + from + ^http://img\.calendar\.naver\.net/ + to + https://img.calendar.naver.net/ + + + from + ^http://(static\.checkout|static\.mileage)\.naver\.net/ + to + https://ssl.pstatic.net/$1/ + + + target + + host + *.naver.net + + + + Navigant Research.com (partial) + + ruleset + + name + Navigant Research.com (partial) + rule + + from + ^http://(www\.)?navigantresearch\.com/(?=favicon\.ico|wordpress/wp-content/|wordpress/wp-login\.php|wp-assets/|wp-content/) + to + https://$1navigantresearch.com/ + + target + + + host + navigantresearch.com + + + host + www.navigantresearch.com + + + + + Nawaat + + ruleset + + name + Nawaat + rule + + from + ^http://(www\.)?nawaat\.org/ + to + https://$1nawaat.org/ + + securecookie + + host + ^nawaat\.org$ + name + .+ + + target + + + host + nawaat.org + + + host + www.nawaat.org + + + + + Ndr.de + + ruleset + + name + Ndr.de + rule + + from + ^http://(?:www\.)?ndr\.de/ + to + https://www.ndr.de/ + + target + + host + www.ndr.de + + + + Neal Poole + + ruleset + + name + Neal Poole + rule + + from + ^https?://(?:www\.)?nealpoole\.com/ + to + https://nealpoole.com/ + + target + + + host + nealpoole.com + + + host + www.nealpoole.com + + + + + Nearbuysystems.com + + ruleset + + name + Nearbuysystems.com + platform + firefox + rule + + from + ^http://luneta\.nearbuysystems\.com/ + to + https://luneta.nearbuysystems.com/ + + securecookie + + host + ^luneta\.nearbuysystems\.com$ + name + .+ + + target + + host + luneta.nearbuysystems.com + + + + NearlyFreeSpeech.NET + + ruleset + + name + NearlyFreeSpeech.NET + rule + + + from + ^https?://(?:www\.)?nearlyfreespeech\.net/ + to + https://www.nearlyfreespeech.net/ + + + from + ^http://(members|blog|faq)\.nearlyfreespeech\.net/ + to + https://$1.nearlyfreespeech.net/ + + + securecookie + + host + ^\.members\.nearlyfreespeech\.net$ + name + .+ + + target + + + host + nearlyfreespeech.net + + + host + *.nearlyfreespeech.net + + + host + *.members.nearlyfreespeech.net + + + + + NeatoShop.com + + ruleset + + name + NeatoShop.com + rule + + from + ^http://(?:static\.|(www\.))?neatoshop\.com/ + to + https://$1neatoshop.com/ + + securecookie + + host + ^\.neatoshop\.com$ + name + .* + + target + + + host + neatoshop.com + + + host + *.neatoshop.com + + + + + Neave.tv + + ruleset + + name + Neave.tv + rule + + from + ^http://(www\.)?neave\.tv/ + to + https://$1neave.tv/ + + securecookie + + host + ^\.neave\.tv$ + name + .+ + + target + + + host + neave.tv + + + host + *.neave.tv + + + + + Nebula + + ruleset + + name + Nebula + rule + + from + ^http://(www\.)?nebula\.com/ + to + https://$1nebula.com/ + + securecookie + + host + ^(?:www)?\.nebula\.com$ + name + .+ + + target + + + host + nebula.com + + + host + *.nebula.com + + + + + Necessary and Proportionate.org + + ruleset + + name + Necessary and Proportionate.org + rule + + from + ^http://(\w\w\.|www\.)?necessaryandproportionate\.(net|org)/ + to + https://$1necessaryandproportionate.$2/ + + target + + + host + necessaryandproportionate.net + + + host + *.necessaryandproportionate.net + + + host + necessaryandproportionate.org + + + host + *.necessaryandproportionate.org + + + + + Neck2Neck + + ruleset + + name + Neck2Neck + rule + + from + ^http://(www\.)?neck2neck\.com/ + to + https://$1neck2neck.com/ + + target + + + host + neck2neck.com + + + host + www.neck2neck.com + + + + + Nectarine Demoscene Music + + ruleset + + name + Nectarine Demoscene Music + rule + + from + ^http://(www\.)?scenemusic\.net/ + to + https://www.scenemusic.net/ + + target + + + host + www.scenemusic.net + + + host + scenemusic.net + + + + + NedLinux.com + + ruleset + + name + NedLinux.com + rule + + + from + ^http://(www\.)?nccc\.nl/ + to + https://www.nccc.nl/ + + + from + ^http://(www\.)?nedlinux\.com/ + to + https://nedlinux.com/ + + + from + ^http://webmail\.nedlinux\.com/ + to + https://webmail.nedlinux.com/ + + + securecookie + + + host + ^www\.nccc\.nl$ + name + .* + + + host + ^(www\.)?nedlinux\.com$ + name + .* + + + target + + + host + nccc.nl + + + host + www.nccc.nl + + + host + nedlinux.com + + + host + webmail.nedlinux.com + + + host + www.nedlinux.com + + + + + Neelwafurat.com + + ruleset + + name + Neelwafurat.com + platform + mixedcontent + rule + + from + ^http://(www\.)?neelwafurat\.com/ + to + https://$1neelwafurat.com/ + + target + + + host + neelwafurat.com + + + host + www.neelwafurat.com + + + + + Neg9.org + + ruleset + + name + Neg9.org + platform + firefox + rule + + from + ^http://neg9\.org/ + to + https://neg9.org/ + + securecookie + + host + ^neg9\.org$ + name + .+ + + target + + host + neg9.org + + + + NegotiatingSalary.com + + ruleset + + name + NegotiatingSalary.com + rule + + from + ^http://(www\.)?negotiatingsalary\.com/ + to + https://$1negotiatingsalary.com/ + + securecookie + + host + ^\.negotiatingsalary.com$ + name + .+ + + target + + + host + negotiatingsalary.com + + + host + *.negotiatingsalary.com + + + + + Nelly.com + + ruleset + + name + Nelly.com + rule + + + from + ^http://www\.nelly\.com/ + to + https://nelly.com/ + + + from + ^http://nelly\.com/ + to + https://nelly.com/ + + + target + + + host + www.nelly.com + + + host + nelly.com + + + + + Nelonen.fi (mixed videos) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?nelonen\.fi/(?:crossdomain\.xml|utils/video_config/geoblock\.php) + + + pattern + ^http://(?:www\.)?nelonen\.fi/utils/virheenmaaritys/(?:\w+\.jpg|css/|img/|js/|save\.php) + + + name + Nelonen.fi (mixed videos) + platform + mixedcontent + rule + + from + ^http://(www\.)?nelonen\.fi/ + to + https://$1nelonen.fi/ + + securecookie + + host + ^www\.nelonen\.fi$ + name + .+ + + target + + + host + nelonen.fi + + + host + www.nelonen.fi + + + + + Nelonen.fi (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?nelonen\.fi/crossdomain\.xml + + + pattern + ^http://(?:www\.)?nelonen\.fi/utils/(?!virheenmaaritys/(?:\w+\.jpg|css/|img/|js/|save\.php)) + + + name + Nelonen.fi (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?nelonen\.fi/ + to + https://$1nelonen.fi/ + + securecookie + + host + ^\.nelonen\.fi$ + name + ^(?:adptset|enzgd|evid1st|evid(?:_ref|_set)?|__utm\w)$ + + target + + + host + nelonen.fi + + + host + *.nelonen.fi + + + + + Nelonmedia.fi (partial) + + ruleset + + exclusion + + pattern + ^http://sso\.nelonenmedia\.fi/logout(?:$|[?/]) + + name + Nelonmedia.fi (partial) + rule + + from + ^http://(crossbow|sso)\.nelonenmedia\.fi/ + to + https://$1.nelonenmedia.fi/ + + securecookie + + host + ^crossbow\.nelonenmedia\.fi$ + name + .+ + + target + + host + *.nelonenmedia.fi + + + + NemID + + ruleset + + name + NemID + rule + + from + ^http://(www\.)?nemid\.nu/ + to + https://$1nemid.nu/ + + securecookie + + host + ^(www)?\.nemid\.nu$ + name + .* + + target + + + host + nemid.nu + + + host + *.nemid.nu + + + + + Nemertes.com + + ruleset + + name + Nemertes.com + rule + + from + ^http://(www\.)?nemertes\.com/ + to + https://$1nemertes.com/ + + target + + + host + nemertes.com + + + host + www.nemertes.com + + + + + Neo-interactive.hu + + ruleset + + name + Neo-interactive.hu + rule + + from + ^http://([^@:/]*)(\.?)neo-interactive\.hu/ + to + https://$1$2neo-interactive.hu/ + + securecookie + + host + neo-interactive\.hu$ + name + .+ + + target + + + host + *.neo-interactive.hu + + + host + neo-interactive.hu + + + + + NeoBux.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.neobux\.com/+(?!favicon\.ico|m/(?:l|r|rpp|run)(?:$|[?/])) + + name + NeoBux.com (partial) + rule + + + from + ^http://(img\.|www\.)?neobux\.com/ + to + https://$1neobux.com/ + + + from + ^http://cache1\.neodevlda\.netdna-cdn\.com/ + to + https://cache1-neodevlda.netdna-ssl.com/ + + + securecookie + + + host + ^\.neobux\.com$ + name + ^incap_ses_[\d_]+$ + + + host + ^www\.neobux\.com$ + name + ^___utm\w+$ + + + target + + + host + neobux.com + + + host + *.neobux.com + + + host + cache1.neodevlda.netdna-cdn.com + + + + + NeoOffice.org (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?neooffice\.org/(?!default\.css|favicon\.png|images/|neojava/\w\w/(?:contact|download|(?:old)?langpackdownload|mirrors)\.php) + + + pattern + ^http://neowiki\.neooffice\.org/(?!index\.php/Special:Userlogin|skins/) + + + name + NeoOffice.org (partial) + rule + + from + ^http://(neowiki\.|www\.)?neooffice\.org/ + to + https://$1neooffice.org/ + + target + + + host + neooffice.org + + + host + *.neooffice.org + + + + + NeoSmart.net + + ruleset + + name + NeoSmart.net + rule + + + from + ^http://(?:www\.)?neosmart\.net/ + to + https://neosmart.net/ + + + from + ^http://secure\.neosmart\.net/ + to + https://secure.neosmart.net/ + + + securecookie + + host + ^\.?(?:secure\.)?neosmart\.com$ + name + .+ + + target + + + host + neosmart.net + + + host + *.neosmart.net + + + + + Neobits (partial) + + ruleset + + name + Neobits (partial) + rule + + from + ^http://(www\.)?neobits\.com/(css|images|img)/ + to + https://$1neobits.com/$1/ + + target + + + host + neobits.com + + + host + www.neobits.com + + + + + NeonMob.com + + ruleset + + name + NeonMob.com + rule + + from + ^http://(?:www\.)?neonmob\.com/ + to + https://www.neonmob.com/ + + securecookie + + host + ^(?:www)?\.neonmob\.com$ + name + .+ + + target + + + host + neonmob.com + + + host + *.neonmob.com + + + + + Neonisi.com + + ruleset + + name + Neonisi.com + platform + firefox + rule + + + from + ^http://neonisi\.com/ + to + https://neonisi.com/ + + + from + ^http://www\.neonisi\.com/ + to + https://www.neonisi.com/ + + + from + ^http://shops\.neonisi\.com/ + to + https://shops.neonisi.com/ + + + securecookie + + + host + ^neonisi\.com$ + name + .+ + + + host + ^www\.neonisi\.com$ + name + .+ + + + host + ^shops\.neonisi\.com$ + name + .+ + + + target + + + host + neonisi.com + + + host + www.neonisi.com + + + host + shops.neonisi.com + + + + + Neoseeker + + ruleset + + name + Neoseeker + rule + + + from + ^https?://i(?:mg)?\.neoseeker\.com/ + to + https://img.neoseeker.com/ + + + from + ^http://cdn\.staticneo\.com/ + to + https://cdn.staticneo.com/ + + + from + ^http://(\w+\.)?neoseeker\.com/ + to + https://$1neoseeker.com/ + + + securecookie + + host + ^\.neoseeker\.com$ + name + .+ + + target + + + host + neoseeker.com + + + host + *.neoseeker.com + + + host + cdn.staticneo.com + + + + + Neowin.net (partial) + + ruleset + + name + Neowin.net (partial) + rule + + from + ^http://(?:www\.)?neowin\.net/(?=css/|favicon\.ico|forum(?:$|[?/])|images/|js/) + to + https://www.neowin.net/ + + target + + + host + neowin.net + + + host + www.neowin.net + + + + + Nerf NOW + + ruleset + + name + Nerf NOW + rule + + from + ^http://(www\.)?nerfnow\.com/ + to + https://$1nerfnow.com/ + + target + + + host + nerfnow.com + + + host + www.nerfnow.com + + + + + Nero (partial) + + ruleset + + name + Nero (partial) + rule + + from + ^http://(apps|shop(?:ing)?|stats)\.nero\.com/ + to + https://$1.nero.com/ + + securecookie + + host + ^apps\.nero\.com$ + name + .+ + + target + + host + *.nero.com + + + + Nessus.org (partial) + + ruleset + + name + Nessus.org (partial) + rule + + from + ^http://discussions\.nessus\.org/ + to + https://discussions.nessus.org/ + + securecookie + + host + ^discussions\.nessus\.org$ + name + .+ + + target + + host + discussions.nessus.org + + + + Nest.com + + ruleset + + name + Nest.com + rule + + from + ^http://(www\.)?nest\.com/ + to + https://$1nest.com/ + + target + + + host + nest.com + + + host + www.nest.com + + + + + Nestlé (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?nestle\.com/(?![aA]sset-library/|skin-engine-shared/|staticlocal/) + + name + Nestlé (partial) + rule + + + from + ^http://((?:eur-tools|hosting|www)\.)?nestle\.com/ + to + https://$1nestle.com/ + + + from + ^http://cdn\.nestle\.com/ + to + https://a248.e.akamai.net/f/1961/1/5m/cdn.nestle.com/ + + + from + ^https?://(?:www\.)?nestle\.de/(_layouts/|DownloadPDF\.ashx|Helper/|MetaNavigation/|Style Library/) + to + https://www.nestle.de/$1 + + + securecookie + + host + ^hosting\.nestle\.com$ + name + .+ + + target + + + host + nestle.com + + + host + *.nestle.com + + + host + nestle.de + + + host + www.nestle.de + + + + + Nestlé Schöller (partial) + + ruleset + + name + Nestlé Schöller (partial) + rule + + from + ^https?://(?:www\.)?schoeller\.de/(NR|schoeller/Images)/ + to + https://www.schoeller.de/$1/ + + target + + + host + schoeller.de + + + host + www.schoeller.de + + + + + Net Applications + + ruleset + + name + Net Applications + rule + + + from + ^http://(www\.)?1stwarning\.com/ + to + https://$11stwarning.com/ + + + from + ^http://(partners\.|www\.)?netapplications\.com/ + to + https://$1netapplications.com/ + + + from + ^http://(www\.)?searchterms\.com/ + to + https://$1searchterms.com/ + + + securecookie + + + host + ^(.*\.)?1stwarning\.com$ + name + .* + + + host + ^(.*\.)?netapplications\.com$ + name + .* + + + target + + + host + 1stwarning.com + + + host + www.1stwarning.com + + + host + netapplications.com + + + host + *.netapplications.com + + + host + searchterms.com + + + host + www.searchterms.com + + + + + Net Communities (partial) + + ruleset + + name + Net Communities (partial) + rule + + + from + ^http://cdn\.itproportal\.com/ + to + https://itpp.s3.amazonaws.com/ + + + from + ^https?://ad\.netcommunities\.com/ + to + https://ad.rmxads.com/ + + + target + + + host + cdn.itproportal.com + + + host + ad.netcommunities.com + + + + + Net Dynamics (partial) + + ruleset + + name + Net Dynamics (partial) + rule + + from + ^http://(www\.)?p3pwiz\.com/ + to + https://$1p3pwiz.com/ + + securecookie + + host + ^(.*\.)?p3pwiz.com$ + name + .* + + target + + + host + p3pwiz.com + + + host + www.p3pwiz.com + + + + + Net Mobile + + ruleset + + name + Net Mobile + rule + + from + ^http://ssl\.net-m\.net/ + to + https://ssl.net-m.net/ + + target + + host + ssl.net-m.net + + + + Net Mundial.net + + ruleset + + name + Net Mundial.net + rule + + from + ^http://(www\.)?netmundial\.net/ + to + https://$1netmundial.net/ + + target + + + host + netmundial.net + + + host + www.netmundial.net + + + + + Net Nanny + + ruleset + + name + Net Nanny + rule + + from + ^http://(www\.)?netnanny\.com/ + to + https://$1netnanny.com/ + + securecookie + + host + ^(?:www\.)?netnanny\.com$ + name + .+ + + target + + + host + netnanny.com + + + host + www.netnanny.com + + + + + Net Semi + + ruleset + + name + Net Semi + rule + + from + ^http://(?:www\.)?netsemi\.com/ + to + https://netsemi.com/ + + securecookie + + host + ^\.?netsemi\.com$ + name + .+ + + target + + + host + netsemi.com + + + host + *.netsemi.com + + + + + Net-A-Porter.com + + ruleset + + name + Net-A-Porter.com + rule + + + from + ^http://(?:www\.)?net-a-porter\.com/ + to + https://www.net-a-porter.com/ + + + from + ^http://(cache|fashionfix|weathertop|www-lt)\.net-a-porter\.com/ + to + https://$1.net-a-porter.com/ + + + securecookie + + host + .*\.net-a-porter\.com$ + name + .+ + + target + + + host + net-a-porter.com + + + host + *.net-a-porter.com + + + + + Net-Housting.de (partial) + + ruleset + + name + Net-Housting.de (partial) + rule + + from + ^http://(www\.)?(?:net-)?housting\.de/ + to + https://$1net-housting.de/ + + securecookie + + host + ^(?:www\.)?net-housting\.de$ + name + .+ + + target + + + host + housting.de + + + host + www.housting.de + + + host + net-housting.de + + + host + www.net-housting.de + + + + + Net-Results (partial) + + ruleset + + name + Net-Results (partial) + rule + + + from + ^http://(sc\.)?cdnma\.com/ + to + https://$1cdnma.com/ + + + from + ^http://(apps|secure)\.net-results\.com/ + to + https://$1.net-results.com/ + + + from + ^http://nr7\.us/ + to + https://nr7.us/ + + + securecookie + + + host + ^\.net-results\.com$ + name + ^__utm\w$ + + + host + ^(?:apps|\.?secure)\.net-results\.com$ + name + .+ + + + target + + + host + cdnma.com + + + host + sc.cdnma.com + + + host + *.net-results.com + + + host + nr7.us + + + + + Net-Safe + + ruleset + + name + Net-Safe + rule + + from + ^http://(www\.)?net-safe\.info/ + to + https://$1net-safe.info/ + + securecookie + + host + ^\.net-safe\.info$ + name + .+ + + target + + + host + net-safe.info + + + host + *.net-safe.info + + + + + NetApp (partial) + + ruleset + + name + NetApp (partial) + rule + + + from + ^http://blogs\.netapp\.com/(\w+)/(\?.*)?$ + to + https://communities.netapp.com/community/netapp-blogs/$1$2 + + + from + ^http://blogs\.netapp\.com/ + to + https://communities.netapp.com/community/netapp-blogs/ + + + from + ^http://(communities|fast|fast-new|fieldportal|forums|learningcent(?:er|re)|login|now|services(?:-new)?|solutionconnection|support|tech)\.netapp\.com/ + to + https://$1.netapp.com/ + + + securecookie + + host + ^\w+\.netapp\.com$ + name + .+ + + target + + host + *.netapp.com + + + + NetBSD (partial) + + ruleset + + name + NetBSD (partial) + rule + + from + ^http://((?:blog|gnats|mail-index|releng|wiki|www)\.)?netbsd\.org/ + to + https://$1netbsd.org/ + + securecookie + + host + ^blog\.netbsd\.org$ + name + .+ + + target + + + host + netbsd.org + + + host + *.netbsd.org + + + + + NetBeans (partial) + + ruleset + + name + NetBeans (partial) + rule + + from + ^http://(?:((?:assets-\d+|edu|forums|services)\.)|www\.)?netbeans\.org/ + to + https://$1netbeans.org/ + + securecookie + + host + ^(?:forums\.|www\.)?netbeans\.org$ + name + .+ + + target + + + host + netbeans.org + + + host + *.netbeans.org + + + + + NetClean.com (partial) + + ruleset + + name + NetClean.com (partial) + rule + + from + ^http://(my\.|www\.)?netclean\.com/ + to + https://$1netclean.com/ + + target + + + host + netclean.com + + + host + *.netclean.com + + + + + NetDNA (partial) + + ruleset + + name + NetDNA (partial) + rule + + + from + ^http://(login\.|www\.)?hddn\.com/ + to + https://$1hddn.com/ + + + from + ^http://((?:blog|cp|developer|login|rws|status|(?:cp3)?support|www)\.)?netdna\.com/ + to + https://$1netdna.com/ + + + from + ^https?://netdnasite\.wpengine\.netdna-cdn\.com/ + to + https://www.netdna.com/ + + + from + ^http://([\w-]+)\.netdna-ssl\.com/ + to + https://$1.netdna-ssl.com/ + + + securecookie + + + host + ^login\.hddn\.com$ + name + .+ + + + host + ^maxcdn\.com$ + name + .+ + + + host + ^.+\.netdna\.com$ + name + .+ + + + target + + + host + hddn.com + + + host + *.hddn.com + + + host + netdna.com + + + host + *.netdna.com + + + host + netdnasite.wpengine.netdna-cdn.com + + + host + *.netdna-ssl.com + + + + + NetFronts (partial) + + ruleset + + name + NetFronts (partial) + rule + + from + ^http://(\w+\.)?hosting-advantage\.com/ + to + https://$1hosting-advantage.com/ + + securecookie + + host + ^order\.hosting-advantage\.com$ + name + .* + + target + + + host + hosting-advantage.com + + + host + *.hosting-advantage.com + + + + + NetGo.hu + + ruleset + + name + NetGo.hu + rule + + from + ^http://www\.netgo\.hu/ + to + https://www.netgo.hu/ + + securecookie + + host + ^www\.netgo\.hu$ + name + .+ + + target + + host + www.netgo.hu + + + + NetIQ (partial) + + ruleset + + name + NetIQ (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?netiq\.com/ + to + https://www.netiq.com/ + + + from + ^http://forums\.netiq\.com/ + to + https://forums.netiq.com/ + + + securecookie + + host + ^(?:www)?\.netiq\.com$ + name + .+ + + target + + + host + netiq.com + + + host + *.netiq.com + + + + + NetLock (partial) + + ruleset + + name + NetLock (partial) + rule + + from + ^http://(www\.)?netlock\.hu/(\S+) + to + https://$1netlock.hu/$2 + + target + + + host + www.netlock.hu + + + host + netlock.hu + + + + + NetMarketShare.com + + ruleset + + name + NetMarketShare.com + rule + + from + ^http://(www\.)?netmarketshare\.com/ + to + https://$1netmarketshare.com/ + + securecookie + + host + ^(?:www\.)?netmarketshare\.com$ + name + .+ + + target + + + host + netmarketshare.com + + + host + www.netmarketshare.com + + + + + NetMile.co.jp + + ruleset + + name + NetMile.co.jp + rule + + from + ^http://www\.netmile\.co\.jp/ + to + https://www.netmile.co.jp/ + + securecookie + + host + ^www\.netmile\.co\.jp$ + name + .+ + + target + + host + www.netmile.co.jp + + + + NetPivotal + + ruleset + + name + NetPivotal + rule + + + from + ^http://(?:www\.)?netpivotal\.(co\.uk|com|eu)/ + to + https://www.netpivotal.$1/ + + + from + ^http://alpha\.netpivotal\.com/ + to + https://alpha.netpivotal.com/ + + + securecookie + + host + ^www\.netpivotal\.(?:co\.uk|com|eu)$ + name + .+ + + target + + + host + netpivotal.* + + + host + netpivotal.co.uk + + + host + www.netpivotal.co.uk + + + host + *.netpivotal.com + + + host + www.netpivotal.eu + + + + + NetSeer + + ruleset + + name + NetSeer + rule + + + from + ^http://(cmi|pixel)\.netseer\.com/ + to + https://$1.netseer.com/ + + + from + ^https?://(?:cl|contextlinks|leadback|media|staging)\.netseer\.com/ + to + https://leadback.netseer.com/ + + + securecookie + + + host + ^\.netseer\.com$ + name + ^netseer_v3_(?:gp|vi)$ + + + host + ^pixel\.netseer\.com$ + name + .+ + + + target + + host + *.netseer.com + + + + NetShelter (partial) + + ruleset + + name + NetShelter (partial) + rule + + + from + ^http://ad\d\.netshelter\.net/ + to + https://ad.doubleclick.net/ + + + from + ^https?://track\.netshelter\.net/ + to + https://s3.amazonaws.com/track.netshelter.net/ + + + target + + host + *.netshelter.net + + + + NetSuite.com (partial) + + ruleset + + name + NetSuite.com (partial) + rule + + from + ^http://(checkout|forms|system)\.netsuite\.com/ + to + https://$1.netsuite.com/ + + securecookie + + host + ^\.?(?:checkout|forms|system)\.netsuite\.com$ + name + .+ + + target + + host + *.netsuite.com + + + + Netbeat Webmail + + ruleset + + name + Netbeat Webmail + rule + + from + ^http://(www\.)?netbeat\.de/webmail/ + to + https://www.netbeat.de/webmail/ + + target + + + host + netbeat.de + + + host + www.netbeat.de + + + + + Netcraft.com (partial) + + ruleset + + name + Netcraft.com (partial) + rule + + from + ^http://uptime\.netcraft\.com/(?=css/|images/|js/) + to + https://d2ybgbvpmfimch.cloudfront.net/ + + target + + host + uptime.netcraft.com + + + + Netdialog.se (partial) + + ruleset + + name + Netdialog.se (partial) + rule + + from + ^http://s3\.netdialog\.se/ + to + https://s3-eu-west-1.amazonaws.com/s3.netdialog.se/ + + target + + host + s3.netdialog.se + + + + Netdoktor.se + + ruleset + + name + Netdoktor.se + platform + mixedcontent + rule + + + from + ^http://www\.netdoktor\.se/ + to + https://www.netdoktor.se/ + + + from + ^http://netdoktor\.se/ + to + https://www.netdoktor.se/ + + + target + + + host + www.netdoktor.se + + + host + netdoktor.se + + + + + Netelligent (partial) + + ruleset + + name + Netelligent (partial) + platform + mixedcontent + rule + + from + ^http://(\w+\.)?netelligent\.ca/ + to + https://$1netelligent.ca/ + + securecookie + + host + ^(\w+\.)?netelligent\.ca$ + name + .* + + target + + + host + netelligent.ca + + + host + iam.netelligent.ca + + + host + www.netelligent.ca + + + + + Netfilter.org (partial) + + ruleset + + name + Netfilter.org (partial) + platform + cacert + rule + + from + ^http://(bugzilla|git|lists|svn)\.netfilter\.org/ + to + https://$1.netfilter.org/ + + securecookie + + host + .+\.netfilter\.org$ + name + .+ + + target + + host + *.netfilter.org + + + + Netfirms + + ruleset + + name + Netfirms + rule + + from + ^http://(images\.|secure\.|www2?\.)?netfirms\.com/ + to + https://$1netfirms.com/ + + securecookie + + host + ^\.netfirms\.com$ + name + .* + + target + + + host + netfirms.com + + + host + *.netfirms.com + + + + + Netflix (partial) + + ruleset + + name + Netflix (partial) + rule + + from + ^http://((?:account|contactus|help|image|jobs|ncds|secure|signup|www[123]?)\.)?netflix\.com/ + to + https://$1netflix.com/ + + securecookie + + host + ^(contactus|signup)\.netflix\.com$ + name + .* + + target + + + host + netflix.com + + + host + account.netflix.com + + + host + contactus.netflix.com + + + host + help.netflix.com + + + host + image.netflix.com + + + host + jobs.netflix.com + + + host + ncds.netflix.com + + + host + secure.netflix.com + + + host + signup.netflix.com + + + host + www.netflix.com + + + host + www1.netflix.com + + + host + www2.netflix.com + + + host + www3.netflix.com + + + + + Netgear (partial) + + ruleset + + name + Netgear (partial) + rule + + + from + ^https?://(?:www\.)?netgear\.com/css/img/(?:(backgrounds/(?:body|nav)_bg\.jpg)|logos/(logo-netgear\.gif)) + to + https://my.netgear.com/myNETGEAR/includes/images/$1$2 + + + from + ^http://my\.netgear\.com/ + to + https://my.netgear.com/ + + + securecookie + + host + ^my\.netgear\.com$ + name + .* + + target + + + host + netgear.com + + + host + *.netgear.com + + + + + Netgroup.dk + + ruleset + + name + Netgroup.dk + rule + + from + ^http://(www\.)?netgroup\.dk/ + to + https://$1netgroup.dk/ + + target + + + host + netgroup.dk + + + host + www.netgroup.dk + + + + + Netguava (partial) + + ruleset + + name + Netguava (partial) + rule + + from + ^http://(www\.)?netguava\.com/(app/|contact(?:$|\?)|c[ms]s/|favicon\.ico|images/|js/|scripts/) + to + https://$1netguava.com/$2 + + target + + + host + netguava.com + + + host + www.netguava.com + + + + + Nether + + ruleset + + name + Nether + rule + + from + ^http://puck\.nether\.net/ + to + https://puck.nether.net/ + + securecookie + + host + ^puck\.nether\.net$ + name + .* + + target + + host + puck.nether.net + + + + Netload + + ruleset + + name + Netload + rule + + from + ^http://(www\.)?netload\.in/ + to + https://$1netload.in/ + + securecookie + + host + ^(?:w*\.)?netload\.in$ + name + .+ + + target + + + host + netload.in + + + host + *.netload.in + + + + + Netmarble (partial) + + ruleset + + name + Netmarble (partial) + rule + + + from + ^http://netmarble\.com/ + to + https://www.netmarble.com/ + + + from + ^http://(auth|n?bill|s?img|member|www)\.netmarble\.com/ + to + https://$1.netmarble.com/ + + + from + ^http://img\.cdn\.global\.netmarble\.com/ + to + https://simg.netmarble.com/ + + + securecookie + + host + ^(?:auth|www)\.netmarble\.com$ + name + .+ + + target + + + host + netmarble.com + + + host + *.netmarble.com + + + + + Netnod.se + + ruleset + + name + Netnod.se + rule + + from + ^http://(?:www\.)?netnod\.se/ + to + https://www.netnod.se/ + + securecookie + + host + ^(?:www)?\.netnod.se$ + name + .+ + + target + + + host + netnod.se + + + host + *.netnod.se + + + + + Nets DanID + + ruleset + + name + Nets DanID + rule + + from + ^http://(www\.)?nets-danid\.dk/ + to + https://$1nets-danid.dk/ + + securecookie + + host + ^www\.nets-danid\.dk$ + name + .* + + target + + + host + nets-danid.dk + + + host + www.nets-danid.dk + + + + + Netsparker.com + + ruleset + + name + Netsparker.com + rule + + from + ^http://(www\.)?netsparker\.com/ + to + https://$1netsparker.com/ + + target + + + host + netsparker.com + + + host + www.netsparker.com + + + + + Nettica + + ruleset + + name + Nettica + rule + + from + ^http://(?:www\.)?nettica\.com/ + to + https://www.nettica.com/ + + target + + + host + nettica.com + + + host + www.netteca.com + + + + + Netverify + + ruleset + + name + Netverify + rule + + from + ^http://(pay\.|static\.)?netverify\.com/ + to + https://$1netverify.com/ + + securecookie + + host + ^(?:pay\.)?netverify\.com$ + name + .+ + + target + + + host + netverify.com + + + host + *.netverify.com + + + + + Network Advertising Initiative + + ruleset + + name + Network Advertising Initiative + rule + + from + ^http://(www\.)?networkadvertising\.org/ + to + https://$1networkadvertising.org/ + + securecookie + + host + ^(?:w*\.)?networkadvertising\.org$ + name + .+ + + target + + + host + networkadvertising.org + + + host + *.networkadvertising.org + + + + + Network Depot (partial) + + ruleset + + name + Network Depot (partial) + rule + + from + ^http://(onestepahead|support|tips)\.networkdepot\.com/ + to + https://$1.networkdepot.com/ + + securecookie + + host + ^.+\.networkdepot\.com$ + name + .+ + + target + + host + *.networkdepot.com + + + + Network Maker (partial) + + ruleset + + name + Network Maker (partial) + rule + + from + ^http://signup\.network-maker\.com/ + to + https://signup.network-maker.com/ + + securecookie + + host + ^signup\.network-maker\.com$ + name + .+ + + target + + host + signup.network-maker.com + + + + Network Solutions (false MCB) + + ruleset + + name + Network Solutions (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:cms\.|www\.)?networksolutions\.com(:443)?/ + to + https://www.networksolutions.com$1/ + + + from + ^http://(about|seal)\.networksolutions\.com/ + to + https://$1.networksolutions.com/ + + + from + ^http://amp\.networksolutions\.com/$ + to + https://www.networksolutions.com/ + + + from + ^http://amp\.networksolutions\.com/landing\?code=(\w+)$ + to + https://www.networksolutions.com/affiliates/select-unknown.jsp?siteid=100&channelid=$1 + + + securecookie + + + host + ^\.networksolutions\.com$ + name + ^s_\w+$ + + + host + ^www\.networksolutions\.com$ + name + .* + + + target + + + host + networksolutions.com + + + host + *.networksolutions.com + + + + + Network Time Foundation.org (partial) + + ruleset + + name + Network Time Foundation.org (partial) + platform + cacert + rule + + + from + ^http://((?:ic|imap|shop|www)\.)?networktimefoundation\.org/ + to + https://$1networktimefoundation.org/ + + + from + ^http://((?:ic|lists|rt|www)\.)?nwtime\.org/ + to + https://$1nwtime.org/ + + + securecookie + + host + ^rt\.nwtime\.org$ + name + .+ + + target + + + host + networktimefoundation.org + + + host + *.networktimefoundation.org + + + host + nwtime.org + + + host + *.nwtime.org + + + + + Network for Good + + ruleset + + exclusion + + pattern + ^http://www1\. + + name + Network for Good + rule + + from + ^http://(\w+\.)?networkforgood\.org/ + to + https://$1networkforgood.org/ + + securecookie + + host + ^\w+\.networkforgood\.org$ + name + .+ + + target + + + host + networkforgood.org + + + host + *.networkforgood.org + + + + + NetworkWorld (partial) + + ruleset + + name + NetworkWorld (partial) + rule + + + from + ^http://(?:edge\.|www\.)?networkworld\.com/ + to + https://www.networkworld.com/ + + + from + ^http://m\.networkworld\.com/(mobify|static)/ + to + https://networkworld.mobify.com/$1/ + + + from + ^http://(www\.)?subscribenww\.com/ + to + https://$1subscribenww.com/ + + + securecookie + + host + ^(?:.*\.)?(?:networkworld|subscribenww)\.com$ + name + .+ + + target + + + host + networkworld.com + + + host + *.networkworld.com + + + host + subscribenww.com + + + host + *.subscribenww.com + + + + + NetworkedBlogs + + ruleset + + exclusion + + pattern + ^http://networkedblogs\.com/\w{5}$ + + name + NetworkedBlogs + rule + + + from + ^https?://(?:www\.)?networkedblogs\.com/ + to + https://www.networkedblogs.com/ + + + from + ^https?://nwidget\.networkedblogs\.com/getnetworkwidget + to + https://www.networkedblogs.com/getnetworkwidget + + + securecookie + + host + ^www\.networkedblogs\.com$ + name + .+ + + target + + + host + networkedblogs.com + + + host + *.networkedblogs.com + + + + + Networking4all.com + + ruleset + + name + Networking4all.com + rule + + from + ^http://(www\.)?networking4all\.com/ + to + https://$1networking4all.com/ + + target + + + host + networking4all.com + + + host + www.networking4all.com + + + + + Netzpolitik.org + + ruleset + + name + Netzpolitik.org + rule + + from + ^http://(www\.)?netzpolitik\.org/ + to + https://$1netzpolitik.org/ + + target + + + host + netzpolitik.org + + + host + www.netzpolitik.org + + + + + NeuStar + + ruleset + + name + NeuStar + rule + + + from + ^http://(www\.)?neustar\.biz/ + to + https://$1neustar.biz/ + + + from + ^https?://(?:www\.)?neustar\.com/ + to + https://www.neustar.biz/ + + + from + ^http://payment\.neustar\.com/ + to + https://payment.neustar.com/ + + + securecookie + + + host + ^(www\.)?neustar\.biz$ + name + .* + + + host + ^payment\.neustar\.com$ + name + .* + + + target + + + host + neustar.biz + + + host + www.neustar.biz + + + host + neustar.com + + + host + *.neustar.com + + + host + neustarultraservices.biz + + + host + www.neustarultraservices.biz + + + + + Neudesic Media Group (partial) + + ruleset + + name + Neudesic Media Group (partial) + rule + + from + ^http://ads\.neudesicmediagroup\.com/ + to + https://ads.neudesicmediagroup.com/ + + securecookie + + host + ^(.*\.)?ads\.neudesicmediagroup\.com$ + name + .* + + target + + + host + ads.neudesicmediagroup.com + + + host + *.ads.neudesicmediagroup.com + + + + + NeverDDoS.com + + ruleset + + name + NeverDDoS.com + rule + + from + ^http://(www\.)?neverddos\.com/ + to + https://$1neverddos.com/ + + securecookie + + host + ^(?:w*\.)?neverddos\.com$ + name + .+ + + target + + + host + neverddos.com + + + host + *.neverddos.com + + + + + Nevill Holt Opera + + ruleset + + name + Nevill Holt Opera + rule + + from + ^https?://(?:www\.)?nevillholtopera\.net/ + to + https://www.nevillholtopera.net/ + + securecookie + + host + ^w*\.nevillholtopera\.net$ + name + .+ + + target + + + host + nevillholtopera.net + + + host + *.nevillholtopera.net + + + + + Nevistas Health.com + + ruleset + + name + Nevistas Health.com + rule + + from + ^http://(www\.)?nevistashealth\.com/ + to + https://$1nevistashealth.com/ + + target + + + host + nevistashealth.com + + + host + www.nevistashealth.com + + + + + New Dream Network + + ruleset + + name + New Dream Network + rule + + from + ^http://(?:(secure\.)|www\.)?newdream\.net/ + to + https://$1newdream.net/ + + target + + + host + newdream.net + + + host + *.newdream.net + + + + + New England Journal of Medicine (partial) + + ruleset + + name + New England Journal of Medicine (partial) + rule + + + from + ^https?://(?:www\.)?nejm\.org/(action/s(?:howCDFLogin|so)|favicon\.ico|na101/|sda/) + to + https://www.nejm.org/$1 + + + from + ^http://cdf\.nejm\.org/ + to + https://cdf.nejm.org/ + + + from + ^https?://cdn\.nejm\.org/5\.0/ + to + https://cdf.nejm.org/files/ + + + securecookie + + host + ^cdf\.nejm\.org$ + name + .+ + + target + + + host + nejm.org + + + host + *.nejm.org + + + + + New Flag + + ruleset + + name + New Flag + rule + + from + ^http://(www\.)?mynewflag\.com/ + to + https://$1mynewflag.com/ + + securecookie + + host + ^\.mynewflag\.com$ + name + .+ + + target + + + host + mynewflag.com + + + host + *.mynewflag.com + + + + + New Look (partial) + + ruleset + + name + New Look (partial) + rule + + + from + ^https?://(?:www\.)?newlook\.com/(css|images|MEDIA_\w+|secure)/ + to + https://www.newlook.com/$1/ + + + from + ^https?://images\.newlook\.com/ + to + https://a248.e.akamai.net/f/248/9086/10h/origin-g3.scene7.com/ + + + target + + + host + newlook.com + + + host + www.newlook.com + + + + + New Moon Girls Online + + ruleset + + name + New Moon Girls Online + rule + + from + ^http://(www\.)?newmoon\.com/ + to + https://www.newmoon.com/ + + target + + + host + newmoon.com + + + host + www.newmoon.com + + + + + New Relic.com + + ruleset + + name + New Relic.com + rule + + + from + ^http://blog-assets\.newrelic\.com/ + to + https://blog.newrelic.com/ + + + from + ^http://([\w-]+\.)?newrelic\.com/ + to + https://$1newrelic.com/ + + + securecookie + + host + ^(?:.*\.)?newrelic\.com$ + name + .+ + + target + + + host + newrelic.com + + + host + *.newrelic.com + + + + + New Repubic (partial) + + ruleset + + exclusion + + pattern + ^http://(?:(?:www\.)?newrepublic|blogs\.tnr)\.com/(?!favicon\.ico|sites/) + + name + New Repubic (partial) + rule + + from + ^http://(?:(?:secure\.|www\.)?newrepublic|blogs\.tnr)\.com/ + to + https://secure.newrepublic.com/ + + target + + + host + newrepublic.com + + + host + secure.newrepublic.com + + + host + www.newrepublic.com + + + + + New York City (partial) + + ruleset + + name + New York City (partial) + rule + + + from + ^http://(www\.)?nyc\.gov/(portal/(?:apps/threeoneone/site_launch/(?:css|img)|css|images)/) + to + https://$1nyc.gov/$2 + + + from + ^https?://(?:www\.)?comptroller\.nyc\.gov/ + to + https://comptroller.nyc.gov/ + + + securecookie + + host + ^comptroller\.nyc\.gov$ + name + .* + + target + + + host + nyc.gov + + + host + *.nyc.gov + + + host + www.comptroller.nyc.gov + + + + + New York Needs You.com + + ruleset + + name + New York Needs You.com + rule + + from + ^http://(www\.)?newyorkneedsyou\.org/ + to + https://$1newyorkneedsyou.org/ + + securecookie + + host + ^www\.newyorkneedsyou\.org$ + name + .+ + + target + + + host + newyorkneedsyou.org + + + host + www.newyorkneedsyou.org + + + + + New York University (partial) + + ruleset + + name + New York University (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?(bookstores\.)?nyu\.edu/ + to + https://www.$1nyu.edu/ + + + from + ^http://admissions\.nyu\.edu/ + to + https://www.nyu.edu/admissions/undergraduate-admissions.html + + + from + ^http://(?:www\.)?(cims|cs|g4li|home|math|mrl|steinhardt)\.nyu\.edu/ + to + https://$1.nyu.edu/ + + + from + ^http://(vlg\.cs|its\.law|(?:(?:arch|getit|login)\.)?library|login|(?:frms\.|orientation\.)?nursing|admin\.portal|shibboleth|start|steinhardt|web\.home\.syr|wikis)\.nyu\.edu/ + to + https://$1.nyu.edu/ + + + securecookie + + host + ^\w+[\w.]+\.nyu\.edu$ + name + .* + + target + + + host + nyu.edu + + + host + *.nyu.edu + + + host + www.*.nyu.edu + + + host + vlg.cs.nyu.edu + + + + + New Zealand Herald (partial) + + ruleset + + name + New Zealand Herald (partial) + rule + + from + ^http://(newspix|subscriptions|zen)\.nzherald\.co\.nz/ + to + https://$1.nzherald.co.nz/ + + securecookie + + + host + ^\.nzherald\.co\.nz$ + name + ^s_\w+$ + + + host + ^.+\.nzherald\.co\.nz$ + name + .+ + + + target + + host + *.nzherald.co.nz + + + + NewIT + + ruleset + + name + NewIT + rule + + from + ^http://(?:www\.)?newit\.co\.uk/ + to + https://newit.co.uk/ + + securecookie + + host + ^(.+\.)?newit\.co\.uk$ + name + .* + + target + + + host + newit.co.uk + + + host + www.newit.co.uk + + + + + NewScientist.com (partial) + + ruleset + + name + NewScientist.com (partial) + rule + + + from + ^http://(?:www\.)?newscientist\.com/(css/|img/|script/|user(?:$|[?/])) + to + https://www.newscientist.com/$1 + + + from + ^http://subscribe\.newscientist\.com/ + to + https://subscribe.newscientist.com/ + + + securecookie + + + host + ^\.newscientist\.com$ + name + ^(?:__qca|s_\w+)$ + + + host + ^subscribe\.newscientist\.com$ + name + .* + + + target + + + host + newscientist.com + + + host + *.newscientist.com + + + + + Newegg (partial) + + ruleset + + exclusion + + pattern + ^http://(?:images10\.newegg|c1\.neweggimages)\.com/WebResource/Themes/2005/Nest/\w+.html(?:$|\?) + + name + Newegg (partial) + rule + + + from + ^http://(content|nm|secure)\.newegg\.com/ + to + https://$1.newegg.com/ + + + from + ^http://(?:(?:images10|ssl-images)\.newegg|c1\.neweggimages)\.com/ + to + https://ssl-images.newegg.com/ + + + from + ^http://images17\.newegg\.com/ + to + https://a248.e.akamai.net/f/1268/6718/1/images17.newegg.com/ + + + from + ^http://promotions\.newegg\.com/ + to + https://a248.e.akamai.net/f/363/9331/6/promotions.newegg.com/ + + + securecookie + + host + ^content\.newegg\.com$ + name + .+ + + target + + + host + *.newegg.com + + + host + c1.neweggimages.com + + + + + Newport Motorsports + + ruleset + + name + Newport Motorsports + rule + + from + ^http://(www\.)?newportmotorsports\.com/ + to + https://$1newportmotorsports.com/ + + securecookie + + host + ^(?:.*\.)?newportmotorsports\.com$ + name + .+ + + target + + + host + newportmotorsports.com + + + host + *.newportmotorsports.com + + + + + News Challenge.org + + ruleset + + name + News Challenge.org + rule + + from + ^http://(?:www\.)?newschallenge\.org/ + to + https://www.newschallenge.org/ + + securecookie + + host + ^www\.newschallenge\.org$ + name + .+ + + target + + + host + newschallenge.org + + + host + www.newschallenge.org + + + + + News Corporation (partial) + + ruleset + + exclusion + + + pattern + ^http://barrons\.wsj\.net/css/barronsDependencies/ + + + pattern + ^https?://si?\.wsj\.net/ + + + name + News Corporation (partial) + rule + + + from + ^https?://online.barrons.com/img/ + to + https://a248.e.akamai.net/f/1731/67675/12h/s.wsj.net/img/ + + + from + ^https?://om\.dowjoneson\.com/ + to + https://djglobal.122.2o7.net/ + + + from + ^http://djrc\.portal\.dowjones\.com/ + to + https://djrc.portal.dowjones.com/ + + + from + ^http://(www\.)?efinancialnews\.com/(about-us/tour/|css/|img/|js/|login/|forgot-password|register) + to + https://$1efinancialnews.com/$2 + + + from + ^https?://media\.efinancialnews\.com/ + to + https://a248.e.akamai.net/f/1731/67675/12h/media.efinancialnews.com/ + + + from + ^https?://factiva\.com/ + to + https://www.factiva.com/ + + + from + ^http://(customer|global|www)\.factiva\.com/ + to + https://$1.factiva.com/ + + + from + ^http://(?:www\.)?fins\.com/Finance/(cs|Image)s/ + to + https://www.fins.com/Finance/$1s/ + + + from + ^https?://s\.fins\.com/ + to + https://a248.e.akamai.net/f/1731/67675/12h/s.fins.com/ + + + from + ^http://secure\.nypost\.com/ + to + https://secure.nypost.com/ + + + from + ^https?://(?:www\.)?smartmoney\.com/img/ + to + https://a248.e.akamai.net/f/1731/67675/12h/s.smartmoney.net/img/ + + + from + ^https?://charts\.smartmoney\.com/gifbuilder/ + to + https://a248.e.akamai.net/f/1731/67675/12h/charts.smartmoney.com/gifbuilder/ + + + from + ^https?://fonts\.(smartmoney|wsj)\.com/ + to + https://a248.e.akamai.net/f/1731/67675/12h/fonts.smartmoney.com/ + + + from + ^https?://j(?:tools|secure)?\.smartmoney\.com/ + to + https://jsecure.smartmoney.com/ + + + from + ^https?://(charts|m1|s)\.smartmoney\.net/ + to + https://a248.e.akamai.net/f/1731/67675/12h/$1.smartmoney.net/ + + + from + ^https?://sc\.smartmoney\.net/css/cssDependencies/hat-icons\.css + to + https://a248.e.akamai.net/f/1731/67675/12h/sc.smartmoney.net/css/cssDependencies/hat-icons.css + + + from + ^http://\w+\.wsj\.com/(dscript/|favicon\.ico|img/|j20type\.css|static_html_files/) + to + https://a248.e.akamai.net/f/1731/67675/12h/s.wsj.net/$1 + + + from + ^http://(classifieds|customercenter)\.wsj\.com/ + to + https://buy.wsj.com/ + + + from + ^http://id\.wsj\.com/ + to + https://id.wsj.com/ + + + from + ^https?://live\.wsj\.com/djscript/ + to + https://a248.e.akamai.net/f/1731/67675/12h/live.wsj.com/djscript/ + + + from + ^http://services\.wsj(e)?\.com/ + to + https://services.wsj$1.com/ + + + from + ^https?://barrons\.wsj\.net/ + to + https://a248.e.akamai.net/f/1731/67675/12h/s.wsj.net/ + + + from + ^https?://(bc|cc|m|s[1-4cgij]?)\.wsj\.net/ + to + https://a248.e.akamai.net/f/1731/67675/12h/$1.wsj.net/ + + + from + ^https?://mw(\d)\.wsj\.net/([mM][wW])5/ + to + https://a248.e.akamai.net/f/1731/67675/12h/mw$1.wsj.net/$25/ + + + from + ^http://(www\.)?wsjeuropesubs\.com/ + to + https://$1wsjeuropesubs.com/ + + + from + ^http://(?:www\.)?wsjsafehouse\.com/ + to + https://www.wsjsafehouse.com/ + + + securecookie + + + host + ^.*\.factiva\.com$ + name + .* + + + host + ^secure\.nypost\.com$ + name + .* + + + host + ^secure\.smartmoney\.com$ + name + .* + + + host + ^(classifieds|customerceter)\.wsj\.com$ + name + .* + + + host + ^services\.wsje?\.com$ + name + .* + + + host + ^(.*\.)?wsj(eurosubs|safehouse)\.com$ + name + .* + + + target + + + host + online.barrons.com + + + host + om.dowjoneson.com + + + host + djrc.portal.dowjones.com + + + host + efinancialnews.com + + + host + *.efinancialnews.com + + + host + factiva.com + + + host + *.factiva.com + + + host + fins.com + + + host + *.fins.com + + + host + secure.nypost.com + + + host + *.wsj.com + + + host + *.wsj.net + + + host + services.wsje.com + + + host + smartmoney.com + + + host + *.smartmoney.com + + + host + *.smartmoney.net + + + host + wsjeuropesubs.com + + + host + *.wsjeuropesubs.com + + + host + wsjsafehouse.com + + + host + *.wsjsafehouse.com + + + + + News Distribution Network (partial) + + ruleset + + name + News Distribution Network (partial) + rule + + + from + ^http://(assets|landing|widget)\.newsinc\.com/ + to + https://s3.amazonaws.com/$1.newsinc.com/ + + + from + ^http://autodiscover\.newsinc\.com/ + to + https://autodiscover-s.outlook.com/ + + + from + ^http://(embed|mail|launch|mailfire)\.newsinc\.com/ + to + https://$1.newsinc.com/ + + + securecookie + + host + ^mail(?:fire)?\.newsinc\.com$ + name + .+ + + target + + host + *.newsinc.com + + + + News Limited (partial) + + ruleset + + name + News Limited (partial) + rule + + + from + ^http://media\.news\.com\.au/ + to + https://a248.e.akamai.net/f/248/5306/10/media.news.com.au/ + + + from + ^http://(controlpanel\.blogs|myaccount|preferences|sops|sslcam|tags|traktr)\.news\.com\.au/ + to + https://$1.news.com.au/ + + + from + ^http://connect\.news\.com\.au/ + to + https://newsportal.pureprofile.com/ + + + securecookie + + host + ^myaccount\.news\.com\.au$ + name + .+ + + target + + host + *.news.com.au + + + + News Registry (partial) + + ruleset + + name + News Registry (partial) + rule + + from + ^http://(www\.)?newsregistry\.com/ + to + https://$1newsregistry.com/ + + target + + + host + newsregistry.com + + + host + www.newsregistry.com + + + + + NewsBlur + + ruleset + + exclusion + + pattern + ^http://blog\.newsblur\.com/ + + name + NewsBlur + rule + + + from + ^http://(icons|pages)\.newsblur\.com/ + to + https://s3.amazonaws.com/$1.newsblur.com/ + + + from + ^http://newsblur\.com/ + to + https://www.newsblur.com/ + + + from + ^http://([^/:@.]*)\.newsblur\.com/ + to + https://$1.newsblur.com/ + + + downgrade + 1 + from + ^https://popular\.global\.newsblur\.com/ + to + http://popular.global.newsblur.com/ + + + securecookie + + host + ^(?:www)?\.newsblur\.com$ + name + .* + + target + + + host + newsblur.com + + + host + *.newsblur.com + + + + + NewsCred.com (partial) + + ruleset + + name + NewsCred.com (partial) + rule + + + from + ^http://static\.cms\.newscred\.com/ + to + https://d35o6c6ifjoa8g.cloudfront.net/ + + + from + ^http://(newsdaily\.cms|images)\.newscred\.com/ + to + https://$1.newscred.com/ + + + from + ^http://info\.newscred\.com/(?=css/|images/|js/) + to + https://na-sjn.marketo.com/ + + + target + + host + *.newscred.com + + + + NewsDaily.com + + ruleset + + name + NewsDaily.com + rule + + from + ^http://(www\.)?newsdaily\.com/ + to + https://$1newsdaily.com/ + + securecookie + + host + ^\.newsdaily\.com$ + name + .+ + + target + + + host + newsdaily.com + + + host + *.newsdaily.com + + + + + NewsGator + + ruleset + + name + NewsGator + rule + + from + ^http://(?:www\.)?newsgator\.com/ + to + https://www.newsgator.com/ + + securecookie + + host + ^www\.newsgator\.com$ + name + .* + + target + + + host + newsgator.com + + + host + www.newsgator.com + + + + + NewsLook (partial) + + ruleset + + name + NewsLook (partial) + rule + + + from + ^http://(www\.)?newslook\.com/assets/ + to + https://$1newslook.com/assets/ + + + from + ^https?://cdn\.newslook\.com/ + to + https://d2nj14si6cadzm.cloudfront.net/ + + + from + ^https?://img[0-3]\.newslook\.com/ + to + https://d24y7pjjfar7k.cloudfront.net/ + + + from + ^https?://sta[0-3]\.newslook\.com/ + to + https://d24lblqer3jbtz.cloudfront.net/ + + + target + + + host + newslook.com + + + host + *.newslook.com + + + + + NewsNow (partial) + + ruleset + + name + NewsNow (partial) + rule + + from + ^http://delivery\.ad\.newsnow\.net/ + to + https://delivery.ad.newsnow.net/ + + securecookie + + host + ^delivery\.ad\.newsnow\.net$ + name + .+ + + target + + host + delivery.ad.newsnow.net + + + + NewsWhip (partial) + + ruleset + + name + NewsWhip (partial) + rule + + from + ^http://(www\.)?newswhip\.com/(css/|StartNewsWhipDaily) + to + https://$1newswhip.com/$2 + + target + + + host + newswhip.com + + + host + www.newswhip.com + + + + + Newsday.com (partial) + + ruleset + + name + Newsday.com (partial) + rule + + + from + ^http://(?:www\.)?newsday\.com/ + to + https://www.newsday.com/ + + + from + ^http://long-island\.newsday\.com/ + to + https://long-island.newsday.com/ + + + target + + + host + newsday.com + + + host + *.newsday.com + + + + + Newsmax.com (partial) + + ruleset + + name + Newsmax.com (partial) + rule + + + from + ^http://(?:www\.)?newsmax\.com/ + to + https://www.newsmax.com/ + + + from + ^http://shop\.newsmax\.com/ + to + https://shop.newsmax.com/ + + + securecookie + + + host + ^\.newsmax\.com$ + name + ^__utm\w$ + + + host + ^(?:shop|www)\.newsmax\.com$ + name + .+ + + + target + + + host + newsmax.com + + + host + *.newsmax.com + + + + + NewspaperDirect (partial) + + ruleset + + name + NewspaperDirect (partial) + rule + + from + ^http://(www\.)?newspaperdirect\.com/ + to + https://$1newspaperdirect.com/ + + securecookie + + host + ^(www\.)?newspaperdirect\.com$ + name + .* + + target + + + host + newspaperdirect.com + + + host + www.newspaperdirect.com + + + + + Newyorkcasual.com + + ruleset + + name + Newyorkcasual.com + rule + + from + ^http://(www\.)?newyorkcasual\.com/ + to + https://www.newyorkcasual.com/ + + securecookie + + host + ^\.newyorkcasual\.com$ + name + .+ + + target + + + host + newyorkcasual.com + + + host + www.newyorkcasual.com + + + + + Newzbin + + ruleset + + name + Newzbin + rule + + + from + ^http://(?:www\.)?newzbin(?:\.com|2\.es)/? + to + https://www.newzbin2.es/ + + + from + ^http://docs\.newzbin2\.es/? + to + https://docs.newzbin2.es/ + + + target + + + host + newzbin.com + + + host + newzbin2.es + + + host + *.newzbin.com + + + host + *.newzbin2.es + + + + + Nexaway (partial) + + ruleset + + name + Nexaway (partial) + rule + + from + ^http://(www\.)?nexaway\.com/ + to + https://$1nexaway.com/ + + target + + + host + nexway.com + + + host + *.nexway.com + + + + + Nexcess (partial) + + ruleset + + name + Nexcess (partial) + rule + + + from + ^http://(?:www\.)?nexcess\.net/ + to + https://www.nexcess.net/ + + + from + ^http://(affiliates|blog|docs|nocworx|order|portal|static)\.nexcess\.net/ + to + https://$1.nexcess.net/ + + + securecookie + + host + .*\.nexcess\.net$ + name + .+ + + target + + + host + nexcess.net + + + host + *.nexcess.net + + + + + Next + + ruleset + + name + Next + rule + + from + ^http://(?:www\.)?next\.co\.uk/ + to + https://www.next.co.uk/ + + securecookie + + host + ^(.+\.)?next\.co\.uk$ + name + .* + + target + + + host + next.co.uk + + + host + www.next.co.uk + + + + + Next Gen Auto Parts.com (partial) + + ruleset + + name + Next Gen Auto Parts.com (partial) + rule + + from + ^http://(www\.)?nextgenautoparts\.com/(?=favicon\.ico|files/|images/|Portals/(?:\d+/portal\.css|\d+/theme\d/|_default/)|scripts/) + to + https://$1nextgenautoparts.com/ + + target + + + host + nextgenautoparts.com + + + host + *.nextgenautoparts.com + + + + + Next Update (partial) + + ruleset + + exclusion + + pattern + ^http://(journal|status)\. + + name + Next Update (partial) + rule + + from + ^http://(\w+\.)?sifterapp\.com/ + to + https://$1sifterapp.com/ + + target + + + host + sifterapp.com + + + host + *.sifterapp.com + + + + + NextBus + + ruleset + + name + NextBus + rule + + from + ^http://(?:www\.)?nextbus\.com/ + to + https://www.nextbus.com/ + + target + + + host + nextbus.com + + + host + www.nextbus.com + + + + + Nextag (partial) + + ruleset + + name + Nextag (partial) + rule + + + from + ^https?://(?:www\.)?nextag\.(ca|com|de|fr|it)/ + to + https://www.nextag.$1/ + + + from + ^https?://img(?:srv)?\.nextag\.com/ + to + https://imgsrv.nextag.com/ + + + from + ^http://(merchants|stores|travel)\.nextag\.com/ + to + https://$1.nextag.com/ + + + from + ^https?://tickets\.nextag\.com/la/ + to + https://www.fansnap.com/la/ + + + from + ^https?://www42.nextag\.com/ + to + https://www.nextag.com/ + + + from + ^https?://img\d\d\.static-nextag\.com/ + to + https://imgsrv.nextag.com/ + + + securecookie + + host + ^.*\.nextag\.com$ + name + .* + + target + + + host + nextag.* + + + host + *.nextag.ca + + + host + *.nextag.com + + + host + *.nextag.de + + + host + *.nextag.fr + + + host + *.nextag.it + + + host + *.static-nextag.com + + + + + Nextbit.com + + ruleset + + name + Nextbit.com + rule + + from + ^http://(www\.)?nextbit\.com/ + to + https://$1nextbit.com/ + + target + + + host + nextbit.com + + + host + www.nextbit.com + + + + + Nexternal + + ruleset + + name + Nexternal + rule + + + from + ^https?://(?:www\.)?nexternal\.com/ + to + https://www.nexternal.com/ + + + from + ^http://(max)?cdn\.nexternal\.com/ + to + https://$1cdn.nexternal.com/ + + + securecookie + + host + ^.*\.nexternal\.com$ + name + .* + + target + + + host + nexternal.com + + + host + *.nexternal.com + + + + + Nextiva + + ruleset + + name + Nextiva + rule + + from + ^http://(www\.)?nextiva\.com/ + to + https://$1nextiva.com/ + + securecookie + + host + ^\.nextiva\.com$ + name + .+ + + target + + + host + nextiva.com + + + host + *.nextiva.com + + + + + Nexus Pay + + ruleset + + name + Nexus Pay + rule + + from + ^http://(www\.)?nexuspay\.com/ + to + https://$1nexuspay.com/ + + securecookie + + host + ^(?:w*\.)?nexuspay\.com$ + name + .+ + + target + + + host + nexuspays.com + + + host + *.nexuspays.com + + + + + Ngage ICS (partial) + + ruleset + + name + Ngage ICS (partial) + rule + + + from + ^http://messenger\.ngageics\.com/ + to + https://messenger.ngageics.com/ + + + from + ^http://secure\.ngagelive\.com/ + to + https://secure.ngagelive.com/ + + + securecookie + + host + ^messenger\.ngageics\.com$ + name + .+ + + target + + + host + messenger.ngageics.com + + + host + secure.ngagelive.com + + + + + NicAc + + ruleset + + name + NicAc + rule + + from + ^http://(?:www\.)?nic\.ac/ + to + https://www.nic.ac/ + + securecookie + + host + ^(.+\.)?nic\.ac$ + name + .* + + target + + + host + nic.ac + + + host + www.nic.ac + + + + + NicIo + + ruleset + + name + NicIo + platform + mixedcontent + rule + + from + ^http://(?:www\.)?nic\.io/ + to + https://www.nic.io/ + + securecookie + + host + ^(.+\.)?nic\.io$ + name + .* + + target + + + host + nic.io + + + host + www.nic.io + + + + + Nice 'n' Naughty + + ruleset + + name + Nice 'n' Naughty + rule + + from + ^http://(www\.)?nicennaughty\.co\.uk/ + to + https://$1nicennaughty.co.uk/ + + securecookie + + host + ^\.www\.nicennaughty\.co\.uk$ + name + .+ + + target + + + host + nicennaughty.co.uk + + + host + www.nicennaughty.co.uk + + + host + *.www.nicennaughty.co.uk + + + + + NiceHash.com + + ruleset + + name + NiceHash.com + rule + + from + ^http://(www\.)?nicehash\.com/ + to + https://$1nicehash.com/ + + securecookie + + host + ^(?:\.|www\.)?nicehash\.com$ + name + .+ + + target + + + host + nicehash.com + + + host + *.nicehash.com + + + + + NiceKicks.com (partial) + + ruleset + + name + NiceKicks.com (partial) + rule + + from + ^https?://\d\.nicekicks\.com/ + to + https://d34jsf1j24280j.cloudfront.net/ + + target + + host + *.nicekicks.com + + + + Nicholas Ranallo (partial) + + ruleset + + name + Nicholas Ranallo (partial) + rule + + from + ^http://(?:www\.)?ranallolawoffice\.com/(?:favicon\.ico|wp-content/|wp-includes/) + to + https://secure.bluehost.com/~ranallol/$1 + + target + + + host + ranallolawoffice.com + + + host + www.ranallolawoffice.com + + + + + Nicky Hager (partial) + + ruleset + + name + Nicky Hager (partial) + rule + + from + ^http://(?:www\.)?nickyhager\.info/wp-content/ + to + https://secure.bluehost.com/~nickyhag/wp-content/ + + target + + + host + nickyhager.info + + + host + www.nickyhager.info + + + + + Nicotine Anonymous + + ruleset + + name + Nicotine Anonymous + rule + + from + ^http://(www\.)?nicotine-anonymous\.org/ + to + https://$1nicotine-anonymous.org/ + + securecookie + + host + ^(?:w*\.)?nicotine-anonymous\.org$ + name + .+ + + target + + + host + nicotine-anonymous.org + + + host + *.nicotine-anonymous.org + + + + + NightLove + + ruleset + + name + NightLove + rule + + from + ^http://(www\.)?nightlove\.me/ + to + https://$1nightlove.me/ + + securecookie + + host + ^\.nightlove\.me$ + name + .+ + + target + + + host + nightlove.me + + + host + *.nightlove.me + + + + + Nightcode.info + + ruleset + + name + Nightcode.info + rule + + from + ^http://nightcode\.info/ + to + https://nightcode.info/ + + target + + host + nightcode.info + + + + Nightweb.net + + ruleset + + name + Nightweb.net + rule + + from + ^http://nightweb\.net/ + to + https://nightweb.net/ + + target + + host + nightweb.net + + + + Nijyuyon-Bimuunzu + + ruleset + + name + Nijyuyon-Bimuunzu + rule + + + from + ^https?://(?:www\.)?e-nls\.com/ + to + https://www.e-nls.com/ + + + from + ^http://img\.e-nls\.com/ + to + https://img.e-nls.com/ + + + target + + + host + e-nls.com + + + host + www.e-nls.com + + + + + Nik Cub.com + + ruleset + + name + Nik Cub.com + rule + + from + ^http://(www\.)?nikcub\.com/ + to + https://$1nikcub.com/ + + target + + + host + nikcub.com + + + host + www.nikcub.com + + + + + Nik Software (partial) + + ruleset + + name + Nik Software (partial) + rule + + from + ^http://shop\.niksoftware\.com/ + to + https://shop.niksoftware.com/ + + securecookie + + host + ^shop\.niksoftware\.com$ + name + .+ + + target + + host + shop.niksoftware.com + + + + Nike.com (partial) + + ruleset + + name + Nike.com (partial) + rule + + + from + ^http://(?:www\.)?nike\.com/(?=/?apps/|/?content/|dat/tealeaftarget\.html|/?etc/|nikeos/scripts/) + to + https://www.nike.com/ + + + from + ^http://(developer|help-(?:all|de-de|de-eu|en-cn|en-eu|en-gb|en-us|es-eu|es-la|fr-eu|fr-fr|it-eu|ja-jp|nl-eu|pt-br|zh-tw)|origin-www|secure-nike(?:plus|town)|smodus)\.nike\.com/ + to + https://$1.nike.com/ + + + from + ^http://images\.nike\.com/ + to + https://a248.e.akamai.net/f/471/3529/6d/images.nike.com/ + + + from + ^http://modus\.nike\.com/ + to + https://nike-com.112.2o7.net/ + + + from + ^http://nikeplus\.nike\.com/(?=plus/(?:static/css/(?:places_main|logged_out_\w+)/|static/js/|static/translations(?:$|\?)|web/css/modules/activity_select\.css|web/images/|web/login/(?:image|j)s/)) + to + https://a248.e.akamai.net/f/1758/2152/1m/nikeplus.nike.com/ + + + from + ^http://nikeplus\.nike\.com/plus/static/css/core/ + to + https://secure-nikeplus.nike.com/plus/static/css/core/ + + + from + ^http://nikevideo\.nike\.com/(?=\d+/[\w-]+\.jpg) + to + https://a248.e.akamai.net/f/1758/6850/6f/nikevideo.nike.com/ + + + from + ^http://(?:secure-)?store\.nike\.com/ + to + https://secure-store.nike.com/ + + + from + ^http://ugc\.nike\.com/ + to + https://a248.e.akamai.net/f/259/7435/9m/ugc.nike.com/ + + + securecookie + + + host + ^\.nike\.com$ + name + ^(?:AnalysisUserId|ResonanceSegment|RES_TRACKINGID|s_\w+|utag_main)$ + + + host + ^(?:help-[\w-]+|secure-store)\.nike\.com$ + name + .+ + + + target + + + host + nike.com + + + host + *.nike.com + + + + + Nikhef.nl + + ruleset + + name + Nikhef.nl + rule + + from + ^http://www\.nikhef\.nl/ + to + https://www.nikhef.nl/ + + securecookie + + host + ^www\.nikhef\.nl$ + name + .+ + + target + + host + www.nikhef.nl + + + + Nimbus Hosting (partial) + + ruleset + + exclusion + + pattern + ^http://youraccount\.nimbushosting\.co\.uk/index\.php + + name + Nimbus Hosting (partial) + rule + + + from + ^http://(?:www\.)?nimbushosting\.co\.uk/ + to + https://www.nimbushosting.co.uk/ + + + from + ^http://youraccount\.nimbushosting\.co\.uk/ + to + https://youtaccount.nimbushosting.co.uk/ + + + securecookie + + host + ^www\.nimbushosting\.co\.uk$ + name + .+ + + target + + + host + nimbushosting.co.uk + + + host + *.nimbushosting.co.uk + + + + + Nine + + ruleset + + name + Nine + rule + + + from + ^https?://(?:www\.)?nine\.ch/ + to + https://www.nine.ch/ + + + from + ^http://webmail\.nine\.ch/ + to + https://webmail.nine.ch/ + + + securecookie + + host + ^\.?webmail\.nine\.ch$ + name + .* + + target + + + host + nine.ch + + + host + *.nine.ch + + + host + *.webmail.nine.ch + + + + + Nines.nl + + ruleset + + name + Nines.nl + rule + + from + ^http://(www\.)?nines\.nl/ + to + https://$1nines.nl/ + + securecookie + + host + ^www\.nines\.nl$ + name + .+ + + target + + + host + nines.nl + + + host + www.nines.nl + + + + + Ning (false MCB) + + ruleset + + exclusion + + + pattern + ^http://creators\.ning\.com/(?:activity/|(?:[\w-]+/)?(?:cs|image)s/|favicon\.ico) + + + pattern + ^http://makemodules\.ning\.com/(?:activity/|colorbox/|(?:[\w-]+/)?(?:css|error|images)/|favicon\.ico|js/|xn/) + + + name + Ning (false MCB) + platform + mixedcontent + rule + + from + ^http://(creator|makemodule)s\.ning\.com/ + to + https://$1s.ning.com/ + + target + + + host + creators.ning.com + + + host + makemodules.ning.com + + + + + Ning (partial) + + ruleset + + exclusion + + + pattern + ^http://creators\.ning\.com/(?!activity/|(?:[\w-]+/)?(?:cs|image)s/|favicon\.ico) + + + pattern + ^http://makemodules\.ning\.com/(?!activity/|colorbox/|(?:[\w-]+/)?(?:css|error|images)/|favicon\.ico|js/|xn/) + + + name + Ning (partial) + rule + + + from + ^http://((?:about|build|creators|developer|go|help|makemodules|socialnetworkmain|uk|www)\.)?ning\.com/ + to + https://$1ning.com/ + + + from + ^http://static\.ning\.com/([^/]+)/ + to + https://$1.ning.com/xn_resources/ + + + securecookie + + host + .*\.ning\.com$ + name + .+ + + target + + + host + ning.com + + + host + *.ning.com + + + + + Ninite + + ruleset + + name + Ninite + rule + + from + ^http://(?:www\.)?ninite\.com/ + to + https://ninite.com/ + + securecookie + + host + ^(?:www\.)?ninite\.com$ + name + .* + + target + + + host + ninite.com + + + host + www.ninite.com + + + + + Nintendo World Report + + ruleset + + name + Nintendo World Report + rule + + from + ^http://(www\.)?nintendoworldreport\.com/ + to + https://$1nintendoworldreport.com/ + + securecookie + + host + ^(?:www\.)?nintendoworldreport\.com$ + name + .+ + + target + + + host + nintendoworldreport.com + + + host + www.nintendoworldreport.com + + + + + Nintendo.com (partial) + + ruleset + + name + Nintendo.com (partial) + rule + + + from + ^http://((?:club|happyholidays|iwataasks|share|smetrics|store|www)\.)?nintendo\.com/ + to + https://$1nintendo.com/ + + + from + ^http://support\.nintento\.com/(?:\?.*)?$ + to + https://www.nintendo.com/consumer/assets/region_select.jsp + + + securecookie + + host + ^.*\.nintendo\.com$ + name + .+ + + target + + + host + nintendo.com + + + host + *.nintendo.com + + + + + NiteTimeToys.com + + ruleset + + name + NiteTimeToys.com + rule + + from + ^http://(affiliates\.|www\.)?nitetimetoys\.com/ + to + https://$1nitetimetoys.com/ + + securecookie + + host + ^(?:affiliates|\.www)?\.nitetimetoys\.com$ + name + .+ + + target + + + host + nitetimetoys.com + + + host + *.nitetimetoys.com + + + + + Nitro Cloud.com + + ruleset + + name + Nitro Cloud.com + rule + + from + ^http://(www\.)?nitrocloud\.com/ + to + https://$1nitrocloud.com/ + + securecookie + + host + ^\.nitrocloud\.com$ + name + .+ + + target + + + host + nitrocloud.com + + + host + *.nitrocloud.com + + + + + NitroSell.com (partial) + + ruleset + + name + NitroSell.com (partial) + rule + + + from + ^http://images\.nitrosell\.com/(?=product_images/|public_html/(?!.+\.css)|store_images/) + to + https://a248.e.akamai.net/f/1500/6788/3/images.nitrosell.com/ + + + from + ^http://p(artner|ortal)\.nitrosell\.com/ + to + https://p$1.nitrosell.com/ + + + target + + host + *.nitrosell.com + + + + Nmap.org (partial) + + ruleset + + name + Nmap.org (partial) + rule + + from + ^http://svn\.nmap\.org/ + to + https://svn.nmap.org/ + + target + + host + svn.nmap.org + + + + Nnetworks + + ruleset + + name + Nnetworks + rule + + from + ^http://(www\.)?nnetworks\.co\.jp/ + to + https://$1nnetworks.co.jp/ + + target + + + host + nnetworks.co.jp + + + host + www.nnetworks.co.jp + + + + + No Deep Packet Inspection campaign + + ruleset + + name + No Deep Packet Inspection campaign + rule + + from + ^http://(www\.)?nodpi\.org/ + to + https://$1nodpi.org/ + + securecookie + + host + ^(?:www\.)?nodpi\.org$ + name + .+ + + target + + + host + nodpi.org + + + host + www.nodpi.org + + + + + No Hats.ca + + ruleset + + name + No Hats.ca + rule + + from + ^http://(www\.)?nohats\.ca/ + to + https://$1nohats.ca/ + + target + + + host + nohats.ca + + + host + www.nohats.ca + + + + + No IP.com + + ruleset + + name + No IP.com + rule + + from + ^http://(www\.)?noip\.com/ + to + https://$1noip.com/ + + securecookie + + host + ^(?:www)?\.noip\.com$ + name + .+ + + target + + + host + noip.com + + + host + *.noip.com + + + + + No Starch Press (partial) + + ruleset + + name + No Starch Press (partial) + rule + + + from + ^http://(www\.)?nostarch\.com/(?=(?:about|catalog|media|writeforus)\.htm|cart(?:$|[?/])|downloads/|favicon\.ico|images/|misc/|modules/|sites/) + to + https://$1nostarch.com/ + + + from + ^http://mail\.nostarch\.com/(?=$|\?) + to + https://mail.google.com/a/nostarch.com + + + from + ^http://media\.nostarch\.com/ + to + https://d19tnq0ilrg6a.cloudfront.net/ + + + securecookie + + host + ^\.nostarch\.com$ + name + ^__utm\w$ + + target + + + host + nostarch.com + + + host + *.nostarch.com + + + + + NoMachine.com + + ruleset + + name + NoMachine.com + rule + + from + ^http://(?:www\.)?nomachine\.com/ + to + https://www.nomachine.com/ + + securecookie + + host + ^www\.nomachine\.com$ + name + .+ + + target + + + host + nomachine.com + + + host + www.nomachine.com + + + + + NoScript.net + + ruleset + + name + NoScript.net + rule + + from + ^http://(www\.)?noscript\.net/ + to + https://$1noscript.net/ + + securecookie + + host + ^noscript\.net$ + name + .+ + + target + + + host + noscript.net + + + host + www.noscript.net + + + + + NoTex + + ruleset + + name + NoTex + rule + + from + ^http://notex\.ch/ + to + https://notex.ch/ + + securecookie + + host + ^\.?notex\.ch$ + name + .+ + + target + + + host + notex.ch + + + host + *.notex.ch + + + + + NoVA Infosec + + ruleset + + name + NoVA Infosec + rule + + from + ^http://(www\.)?novainfosec\.com/ + to + https://$1novainfosec.com/ + + securecookie + + host + ^\.novainfosec.com$ + name + .+ + + target + + + host + novainfosec.com + + + host + *.novainfosec.com + + + + + NobleHour.com + + ruleset + + name + NobleHour.com + rule + + from + ^http://(support\.|www\.)?noblehour\.com/ + to + https://$1noblehour.com/ + + target + + + host + noblehour.com + + + host + *.noblehour.com + + + + + NodeJS Modules.org + + ruleset + + name + NodeJS Modules.org + rule + + from + ^http://(www\.)?nodejsmodules\.org/ + to + https://$1nodejsmodules.org/ + + target + + + host + nodejsmodules.org + + + host + www.nodejsmodules.org + + + + + NodeServ.com + + ruleset + + name + NodeServ.com + rule + + from + ^http://((?:billing|manage|www)\.)?nodeserv\.com/ + to + https://$1nodeserv.com/ + + securecookie + + host + ^(?:billing|manage)\.nodeserv\.com$ + name + .+ + + target + + + host + nodeserv.com + + + host + *.nodeserv.com + + + + + Nodejitsu.com (partial) + + ruleset + + name + Nodejitsu.com (partial) + rule + + + from + ^http://(www\.)?nodejitsu\.com/ + to + https://$1nodejitsu.com/ + + + from + ^http://(?:www\.)?(blog|legal|versions)\.nodejitsu\.com/ + to + https://$1.nodejitsu.com/ + + + securecookie + + host + ^\.nodejitsu\.com$ + name + .+ + + target + + + host + nodejitsu.com + + + host + *.nodejitsu.com + + + + + Noelia + + ruleset + + name + Noelia + rule + + from + ^http://(www\.)?noelia\.fi/ + to + https://$1noelia.fi/ + + securecookie + + host + ^noelia\.fi$ + name + .+ + + target + + + host + noelia.fi + + + host + www.noelia.fi + + + + + Noembed.com + + ruleset + + name + Noembed.com + rule + + from + ^http://(www\.)?noembed\.com/ + to + https://$1noembed.com/ + + securecookie + + host + ^\.noembed\.com$ + name + .+ + + target + + + host + noembed.com + + + host + *.noembed.com + + + + + Noisebridge + + ruleset + + name + Noisebridge + rule + + from + ^http://(www\.)?noisebridge\.net/ + to + https://$1noisebridge.net/ + + target + + + host + www.noisebridge.net + + + host + noisebridge.net + + + + + Noiseless Vault.org + + ruleset + + name + Noiseless Vault.org + rule + + from + ^http://(www\.)?noiselessvault\.org/ + to + https://$1noiselessvault.org/ + + target + + + host + noiselessvault.org + + + host + www.noiselessvault.org + + + + + Nokia (partial) + + ruleset + + exclusion + + pattern + ^http://www\.developer\.nokia\.com/(?:$|De(?:sign|velop|vices)/|Distribute/|info/) + + name + Nokia (partial) + rule + + + from + ^https?://(?:www\.)?nokia\.ca/ + to + https://www.nokia.com/ca-en/ + + + from + ^https?://(?:www\.)?nokia\.(co\.uk|de|fr)/ + to + https://www.nokia.$1/ + + + from + ^https?://advertising\.nokia\.com/ + to + https://primeplace.nokia.com/ + + + from + ^http://((?:account|(?:(?:analytics|projects|sso|www)\.)?developer|discussions\.europe|[ir](?:\.prod)?|maps\.nlp|api\.maps|\d\.maps\.nlp|primeplace|www)\.)?nokia\.com/ + to + https://$1nokia.com/ + + + from + ^http://developer\.nokia\.com/ + to + https://qt-project.org/ + + + from + ^http://(?:www\.)?maps\.nokia\.com/+ + to + https://here.com/ + + + from + ^http://qt\.nokia\.com/ + to + https://qt.digia.com/ + + + from + ^https?://(?:blog|labs)\.qt\.nokia\.com/ + to + https://blog.qt.digia.com/ + + + from + ^https?://discussions.nokia.co.uk/html/images/ + to + https://discussions.europe.nokia.com/html/images/ + + + from + ^https?://(?:www\.)?nokiausa\.com/ + to + https://www.nokiausa.com/ + + + securecookie + + host + ^(?:.*\.)?nokia\.(?:com|co\.uk|de|fr)$ + name + .+ + + target + + + host + nokia.* + + + host + www.nokia.* + + + host + nokia.co.uk + + + host + www.nokia.co.uk + + + host + *.nokia.com + + + host + nokiausa.com + + + host + www.nokiausa.com + + + + + Nokia Siemens Networks (partial) + + ruleset + + name + Nokia Siemens Networks (partial) + rule + + + from + ^http://(?:www\.)?nokiasiemensnetworks\.com/(?=jwbox/|sites/) + to + https://www.nokiasiemensnetworks.com/ + + + from + ^http://(blogs|industryanalyst|(?:online|supplier)\.portal)\.nokiasiemensnetworks\.com/ + to + https://$1.nokiasiemensnetworks.com/ + + + from + ^http://(www\.)?nsn\.com/(?=jwbox/|sites/) + to + https://$1nsn.com/ + + + securecookie + + + host + ^\.nokiasiemensnetworks\.com$ + name + ^(?:s_\w{1,3}|__utm)\w$ + + + host + ^(?:supplier)?\.portal\.nokiasiemensnetworks\.com$ + name + .+ + + + target + + + host + nokiasiemensnetworks.com + + + host + *.nokiasiemensnetworks.com + + + host + nsn.com + + + host + www.nsn.com + + + + + Nomadesk (partial) + + ruleset + + name + Nomadesk (partial) + rule + + + from + ^http://(?:www\.)?mynomadesk\.com/ + to + https://mynomadesk.com/ + + + from + ^http://(?:www\.)?nomadesk\.com/ + to + https://www.nomadesk.com/ + + + from + ^http://secure\.nomadesk\.com/ + to + https://secure.nomadesk.com/ + + + securecookie + + host + ^secure\.nomadesk\.com$ + name + .+ + + target + + + host + mynomadesk.com + + + host + www.mynomadesk.com + + + host + nomadesk.com + + + host + *.nomadesk.com + + + + + Nomura Research Institute + + ruleset + + name + Nomura Research Institute + rule + + from + ^http://www\.nri\.co\.jp/ + to + https://www.nri.co.jp/ + + target + + host + www.nri.co.jp + + + + Non Profit Soapbox.com (partial) + + ruleset + + name + Non Profit Soapbox.com (partial) + rule + + from + ^http://(\w+)\.secure\.nonprofitsoapbox\.com/ + to + https://$1.secure.nonprofitsoapbox.com/ + + securecookie + + host + ^\w+\.secure\.nonprofitsoapbox\.com$ + name + .+ + + target + + host + *.secure.nonprofitsoapbox.com + + + + NooElec.com + + ruleset + + name + NooElec.com + rule + + from + ^http://(www\.)?nooelec\.com/ + to + https://$1nooelec.com/ + + target + + + host + nooelec.com + + + host + www.nooelec.com + + + + + Nordea + + ruleset + + name + Nordea + rule + + from + ^http://(?:www\.)?nordea\.(com|dk|ee|fi|lv|no|se)/ + to + https://www.nordea.$1/ + + target + + + host + www.nordea.* + + + host + nordea.* + + + + + Nordic Academy.no (partial) + + ruleset + + name + Nordic Academy.no (partial) + rule + + from + ^http://vpn\.nordicacademy\.no/ + to + https://vpn.nordicacademy.no/ + + securecookie + + host + ^vpn\.nordicacademy\.no$ + name + .+ + + target + + host + vpn.nordicacademy.no + + + + Nordic Hosting.com + + ruleset + + name + Nordic Hosting.com + rule + + from + ^http://(www\.)?nordichosting\.com/ + to + https://$1nordichosting.com/ + + securecookie + + host + ^www\.nordichosting\.com$ + name + .+ + + target + + + host + nordichosting.com + + + host + www.nordichosting.com + + + + + Nordic Semiconductor + + ruleset + + name + Nordic Semiconductor + rule + + from + ^https?://(?:www\.)?nordicsemi\.com/ + to + https://www.nordicsemi.com/ + + securecookie + + host + ^www\.nordicsemi\.com$ + name + .+ + + target + + + host + nordicsemi.com + + + host + www.nordicsemi.com + + + + + NordicHardware + + ruleset + + name + NordicHardware + platform + mixedcontent + rule + + + from + ^http://(www\.)?nhw\.se/ + to + https://www.nordichardware.se/ + + + from + ^http://(www\.)?nordichardware\.(com|se)/ + to + https://www.nordichardware.$2/ + + + securecookie + + host + ^www\.nordichardware\.com$ + name + .+ + + target + + + host + nhw.se + + + host + www.nhw.se + + + host + nordichardware.com + + + host + www.nordichardware.com + + + host + nordichardware.se + + + host + www.nordichardware.se + + + + + NordkappNett.no + + ruleset + + name + NordkappNett.no + rule + + + from + ^http://(?:www\.)?nordkapp\.net/ + to + https://nordkappnett.no/ + + + from + ^http://(www\.)?nordkappnett\.no/ + to + https://$1nordkappnett.no/ + + + securecookie + + host + ^(?:www\.)?nordkappnett\.no$ + name + .+ + + target + + + host + nordkapp.net + + + host + www.nordkapp.net + + + host + nordkappnett.no + + + host + www.nordkappnett.no + + + + + Nordnet.se + + ruleset + + name + Nordnet.se + platform + mixedcontent + rule + + + from + ^http://www\.nordnet\.se/ + to + https://www.nordnet.se/ + + + from + ^http://nordnet\.se/ + to + https://www.nordnet.se/ + + + target + + + host + www.nordnet.se + + + host + nordnet.se + + + + + Nordu.net + + ruleset + + name + Nordu.net + rule + + + from + ^http://www\.nordu\.net/ + to + https://www.nordu.net/ + + + from + ^http://nordu\.net/ + to + https://www.nordu.net/ + + + target + + + host + nordu.net + + + host + www.nordu.net + + + + + Nordvpn.com + + ruleset + + name + Nordvpn.com + rule + + from + ^http://(www\.)?nordvpn\.com/ + to + https://$1nordvpn.com/ + + securecookie + + host + ^(?:www\.)?nordvpn\.com$ + name + .+ + + target + + + host + nordvpn.com + + + host + www.nordvpn.com + + + + + Norman.com (partial) + + ruleset + + name + Norman.com (partial) + rule + + from + ^http://(www\.)?norman\.com/ + to + https://$1norman.com/ + + securecookie + + host + ^(www\.)?norman\.com$ + name + .* + + target + + + host + norman.com + + + host + www.norman.com + + + + + Norrgruppen.se (partial) + + ruleset + + name + Norrgruppen.se (partial) + rule + + from + ^http://sifomedia\.norrgruppen\.se/ + to + https://oasc07.247realmedia.com/ + + securecookie + + host + ^\.norrgruppen\.se$ + name + ^(?:NXCLICK2|OAX)$ + + target + + host + *.norrgruppen.se + + + + North American Network Operators' Group + + ruleset + + name + North American Network Operators' Group + rule + + + from + ^http://((?:secretariat|text|www)\.)?nanog\.org/ + to + https://$1nanog.org/ + + + from + ^https?://mail(?:man|test)\.nanog\.org/ + to + https://mailman.nanog.org/ + + + target + + + host + nanog.org + + + host + *.nanog.org + + + + + North Carolina State University (partial) + + ruleset + + exclusion + + pattern + ^http://libraryh3lp\.com/(?:chat/|follow/) + + name + North Carolina State University (partial) + rule + + + from + ^http://libraryh3lp\.com/ + to + https://libraryh3lp.com/ + + + from + ^https?://(?:www\.)?ncsu\.edu/directory/ + to + https://www.ncsu.edu/directory/ + + + from + ^http://((?:(?:mypack|portalsp|www)\.acs|cdn|(?:eval|ptmt|stem|surveys)\.fi|go|jobs|(?:(?:my|staff|www)\.)?lib|(?:www\.)?mypack|oit|shib|ssl|webauth)\.)?ncsu\.edu/ + to + https://$1ncsu.edu/ + + + from + ^http://(?:www\.)?fi\.ncsu\.edu/(?=wp-content/|wp-includes/) + to + https://www.fi.ncsu.edu/ + + + from + ^http://miso\.(?:fi\.)?ncsu\.edu/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://miso.fi.ncsu.edu/ + + + securecookie + + + host + ^libraryh3lp\.com$ + name + .* + + + host + ^(.*\.)?ncsu\.edu$ + name + .* + + + target + + + host + libraryh3lp.com + + + host + ncsu.edu + + + host + www.*.ncsu.edu + + + host + portalsp.acs.ncsu.edu + + + host + *.lib.ncsu.edu + + + + + North Korea Tech.org + + ruleset + + name + North Korea Tech.org + rule + + from + ^http://(www\.)?northkoreatech\.org/ + to + https://$1northkoreatech.org/ + + target + + + host + northkoreatech.org + + + host + www.northkoreatech.org + + + + + NorthClicks + + ruleset + + name + NorthClicks + rule + + from + ^https?://(?:www\.)?northclicks\.com/ + to + https://www.northclicks.com/ + + securecookie + + host + ^(?:www)?\.northclicks\.com$ + name + .+ + + target + + + host + northclicks.com + + + host + *.northclicks.com + + + + + Northeast Credit Union + + ruleset + + name + Northeast Credit Union + platform + mixedcontent + rule + + + from + ^http://([^/:@]*)\.necuhb\.org/ + to + https://$1.necuhb.org/ + + + from + ^https://(www\.)?necu\.org/ + to + https://$1.necu.org/ + + + target + + + host + necuhb.org + + + host + necu.org + + + host + www.necu.org + + + host + *.necuhb.org + + + + + Northern Tool.com (partial) + + ruleset + + name + Northern Tool.com (partial) + rule + + + from + ^http://(?:northerntool\.ugc\.bazaarvoice|(?:answer|review)s\.northerntool)\.com/ + to + https://northerntool.ugc.bazaarvoice.com/ + + + from + ^http://(?:www\.)?northerntool\.com/(?=css/|favicon\.ico|images/|s(?:hop|tores)(?:$|[?/])|wcsstore/) + to + https://www.northerntool.com/ + + + from + ^http://m\.northerntool\.com/ + to + https://m.northerntool.com/ + + + securecookie + + host + ^m\.northerntool\.com$ + name + .+ + + target + + + host + northerntool.ugc.bazaarvoice.com + + + host + northerntool.com + + + host + *.northerntool.com + + + + + Northpole.fi + + ruleset + + name + Northpole.fi + rule + + from + ^http://(?:www\.)?northpole\.fi/ + to + https://northpole.fi/ + + securecookie + + host + ^(.*\.)northpole\.fi$ + name + .* + + target + + + host + northpole.fi + + + host + www.northpole.fi + + + + + Northwest Swim Shop + + ruleset + + name + Northwest Swim Shop + rule + + from + ^https?://(?:www\.)?nwswimshop\.com/ + to + https://nwswimshop.myshopify.com/ + + target + + + host + nwswimshop.com + + + host + www.nwswimshop.com + + + + + Northwestern University (partial) + + ruleset + + exclusion + + pattern + ^http://www\.library\.northwestern\.edu/(?!misc/|modules/|sites/) + + name + Northwestern University (partial) + rule + + + from + ^http://((?:blog\.nuamps|websecurity)\.at|autodiscover|bfmf|carlsmith|mail\.(?:chicago|evanston)|(?:www\.)?collaborate|courses|directory|blog\.ipd|(?:fed|validate|websso)\.it|(?:careerspace\.|www\.)?law|www\.library|mail|(?:www\.)?math|chitrec\.nubic|nuhr|blog\.oncofertility|(?:autodiscover|(?:www\.)?collaborate|mail|webmail)\.qatar|(?:www\.)?research|blog\.scienceinsociety|(?:www\.)?scs|tss|umail|blog\.undergradresearch|(?:blog\.)?womenshealth)\.northwestern\.edu/ + to + https://$1.northwestern.edu/ + + + from + ^http://(?:www\.)?(cafe|ses|undergradresearch)\.northwestern\.edu/ + to + https://$1.northwestern.edu/ + + + from + ^http://u\.northwestern\.edu/ + to + https://mail.google.com/a/u.northwestern.edu/ + + + from + ^http://(?:www\.)?wcas\.northwestern\.edu/ + to + https://www.wcas.northwestern.edu/ + + + securecookie + + + host + ^(?:blog\.nuamps\.at|autodiscover|bfmf|carlsmith|mail\.(?:chicago|evanston)|(?:www\.)?collaborate(?:\.qatar)?|courses|cscdc|(?:validate|websso)\.it|blogs\.kellogg|(?:www\.)?law|mail|chitrec\.nubic|nuhr|blog\.oncofertility|umail|blog\.undergradresearch|blog\.womenshealth)\.northwestern\.edu$ + name + .+ + + + host + ^\.undergradresearch\.northwestern\.edu$ + name + ^SESS\w{32}$ + + + target + + host + *.northwestern.edu + + + + Norton (partial) + + ruleset + + name + Norton (partial) + platform + mixedcontent + rule + + + from + ^https?://(mynortonaccount|norton)\.com/ + to + https://www.$1.com/ + + + from + ^http://((?:www\.)?account|au|be|be-nl|br|buy|buy-static1?|c[ahlnz]|ca-fr|community|de|dk|dns|es|fi|fr|gr|hk|hk-en|hotspot|hu|i[ent]|jp|kr|login|malaysia|mx|n[loz]|now-static|onlinefamily|p[lrt]|ru|safeweb|se|sg|static-wap(?:-stg)?|store|support(?:-stg)?|tr|tw|uk|us|www|za)\.norton\.com/ + to + https://$1.norton.com/ + + + from + ^https?://(?:arabic|il|ro)\.norton\.com/(?:.*) + to + https://uk.norton.com/ + + + from + ^https?://asia\.norton\.com/(?:.*) + to + https://sg.norton.com/ + + + from + ^https?://at\.norton\.com/(?:.*) + to + https://de.norton.com/ + + + from + ^https?://lu\.norton\.com/(?:.*) + to + https://fr.norton.com/ + + + from + ^http://sta(ge|tic)\.nortoncdn\.com/ + to + https://sta$1.nortoncdn.com/ + + + securecookie + + host + ^(?:.*\.)?norton\.com$ + name + .+ + + target + + + host + mynortonaccount.com + + + host + www.mynortonaccount.com + + + host + norton.com + + + host + *.norton.com + + + host + *.nortoncdn.com + + + + + Norton Online Backup + + ruleset + + name + Norton Online Backup + rule + + + from + ^https?://(?:www\.)?backup\.com/ + to + https://www.backup.com/ + + + from + ^https?://(?:secure-)?assets\.backup\.com/ + to + https://secure-assets.backup.com/ + + + from + ^http://(centurylink|delldatasafe|[dn]obu|nis|nobu-nis|vipprotection)\.backup\.com/ + to + https://$1.backup.com/ + + + securecookie + + host + ^.+\.backup\.com$ + name + .+ + + target + + + host + backup.com + + + host + *.backup.com + + + + + Norwalk Reflector (partial) + + ruleset + + name + Norwalk Reflector (partial) + rule + + from + ^http://(?:www\.)?norwalkreflector\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.norwalkreflector.com/$1 + + target + + + host + norwalkreflector.com + + + host + www.norwalkreflector.com + + + + + Norwegian.com + + ruleset + + name + Norwegian.com + platform + mixedcontent + rule + + + from + ^http://www\.norwegian\.com/ + to + https://www.norwegian.com/ + + + from + ^http://norwegian\.com/ + to + https://www.norwegian.com/ + + + target + + + host + www.norwegian.com + + + host + norwegian.com + + + + + Nos-oignons.net + + ruleset + + name + Nos-oignons.net + rule + + from + ^http://(www\.)?nos-oignons\.(net|org|fr)/ + to + https://nos-oignons.net/ + + target + + + host + nos-oignons.net + + + host + www.nos-oignons.net + + + host + nos-oignons.org + + + host + www.nos-oignons.org + + + host + nos-oignons.fr + + + host + www.nos-oignons.fr + + + + + Nos.pt + + ruleset + + name + Nos.pt + rule + + from + ^http://(www\.)?nos\.pt/ + to + https://www.nos.pt/ + + target + + + host + nos.pt + + + host + www.nos.pt + + + + + Not Alone.gov + + ruleset + + name + Not Alone.gov + rule + + from + ^http://(www\.)?notalone\.gov/ + to + https://$1notalone.gov/ + + target + + + host + notalone.gov + + + host + www.notalone.gov + + + + + Not Enough Shaders.com + + ruleset + + name + Not Enough Shaders.com + rule + + from + ^http://(www\.)?notenoughshaders\.com/ + to + https://$1notenoughshaders.com/ + + securecookie + + host + ^(?:www\.)?notenoughshaders\.com$ + name + .+ + + target + + + host + notenoughshaders.com + + + host + www.notenoughshaders.com + + + + + Notacon.org + + ruleset + + name + Notacon.org + rule + + from + ^http://(www\.)?notacon\.org/ + to + https://$1notacon.org/ + + target + + + host + notacon.org + + + host + www.notacon.org + + + + + Notebooks Wie Neu + + ruleset + + name + Notebooks Wie Neu + rule + + from + ^http://(www\.)?nbwn\.de/ + to + https://www.nbwn.de/ + + target + + + host + nbwn.de + + + host + www.nbwn.de + + + + + Notebooksbilliger.de + + ruleset + + name + Notebooksbilliger.de + rule + + from + ^http://(blog|img|www)\.notebooksbilliger\.de/ + to + https://$1.notebooksbilliger.de/ + + target + + host + *.notebooksbilliger.de + + + + Nothing.ch + + ruleset + + name + Nothing.ch + rule + + from + ^http://(www\.)?nothing\.ch/ + to + https://$1nothing.ch/ + + target + + + host + nothing.ch + + + host + *.nothing.ch + + + + + NottinghamAC + + ruleset + + name + NottinghamAC + rule + + from + ^http://((?:email|jobs|owa|www)\.)?nottingham\.ac\.uk/ + to + https://$1nottingham.ac.uk/ + + securecookie + + host + ^(.+\.)?nottingham\.ac\.uk$ + name + .* + + target + + + host + nottingham.ac.uk + + + host + *.nottingham.ac.uk + + + + + Novell (partial) + + ruleset + + name + Novell (partial) + rule + + + from + ^https?://novell\.com/ + to + https://www.novell.com/ + + + from + ^http://(bugzilla|forums|login|shop|secure-www|support|(?:c2c\.|eservice\.)?websupport|wiki|www)\.novell\.com/ + to + https://$1.novell.com/ + + + securecookie + + + host + ^\.novell\.com$ + name + ^bb_(?:sessionhash|lastactivity|lastvisit)$ + + + host + ^(?:shop|(?:c2c\.|eservice\.)?websupport|wiki|www)\.novell\.com$ + name + .+ + + + target + + + host + novell.com + + + host + *.novell.com + + + + + Nowtilus.tv (partial) + + ruleset + + name + Nowtilus.tv (partial) + rule + + from + ^http://hansenet\.download\.nowtilus\.tv/ + to + https://a248.e.akamai.net/f/629/9478/5m/hansenet.download.nowtilus.tv/ + + target + + host + hansenet.download.nowtilus.tv + + + + Nttxstore + + ruleset + + name + Nttxstore + rule + + from + ^http://(www\.)?nttxstore\.jp/ + to + https://nttxstore.jp/ + + target + + + host + nttxstore.jp + + + host + www.nttxstore.jp + + + + + Nu Image Medical (partial) + + ruleset + + name + Nu Image Medical (partial) + rule + + from + ^http://(www\.)?nuimagemedical\.com/(order-hgh(?:$|\?|/)|wp-content/) + to + https://$1nuimagemedical.com/$2 + + target + + + host + nuimagemedical.com + + + host + www.nuimagemedical.com + + + + + NuBlue + + ruleset + + name + NuBlue + rule + + from + ^http://(www\.)?nublue\.co\.uk/ + to + https://$1nublue.co.uk/ + + securecookie + + host + ^\.nublue\.co\.uk$ + name + .+ + + target + + + host + nublue.co.uk + + + host + *.nublue.co.uk + + + + + NuGet (partial) + + ruleset + + name + NuGet (partial) + rule + + from + ^http://(docs\.|www\.)?nuget\.org/ + to + https://$1nuget.org/ + + securecookie + + host + ^\.docs\.nuget\.org$ + name + .+ + + target + + + host + nuget.org + + + host + *.nuget.org + + + + + NuStarz.com (false MCB) + + ruleset + + name + NuStarz.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(blog\.|www\.)?nustarz\.com/ + to + https://$1nustarz.com/ + + securecookie + + host + ^\.nustarz\.com$ + name + .+ + + target + + + host + nustarz.com + + + host + *.nustarz.com + + + + + NuStarz.com (partial) + + ruleset + + name + NuStarz.com (partial) + rule + + from + ^http://customz\.nustarz\.com/ + to + https://customz.nustarz.com/ + + securecookie + + host + ^customz\.nustarz\.com$ + name + .+ + + target + + host + customz.nustarz.com + + + + Nuand.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?nuand\.com/blog/(?!(?:checkou|my-accoun)t(?:$|[?/])|css/|images/|wp-admin/|wp-content/) + + name + Nuand.com (partial) + rule + + from + ^http://(www\.)?nuand\.com/ + to + https://$1nuand.com/ + + target + + + host + nuand.com + + + host + www.nuand.com + + + + + Nuclear Blast (partial) + + ruleset + + name + Nuclear Blast (partial) + rule + + from + ^https?://(?:www\.)?nuclearblast\.de/(css|en/(?:data|shop/(?:order|registration)|system)|images|static)/ + to + https://www.nuclearblast.de/$1/ + + target + + + host + nuclearblast.de + + + host + www.nuclearblast.de + + + + + NuclearCat.com + + ruleset + + name + NuclearCat.com + rule + + from + ^http://(?:www\.)?nuclearcat\.com/ + to + https://nuclearcat.com/ + + target + + + host + nuclearcat.com + + + host + www.nuclearcat.com + + + + + NuevaSync (partial) + + ruleset + + name + NuevaSync (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?nuevasync\.com/ + to + https://www.nuevasync.com/ + + target + + + host + nuevasync.com + + + host + www.nuevasync.com + + + + + Nulab-Inc.com + + ruleset + + name + Nulab-Inc.com + rule + + from + ^http://(?:(developer\.)|www\.)?nulab-inc\.com/ + to + https://$1nulab-inc.com/ + + target + + + host + nulab-inc.com + + + host + *.nulab-inc.com + + + + + Numato.com (partial) + + ruleset + + name + Numato.com (partial) + rule + + from + ^http://(www\.)?numato\.com/(?=[\w-]+\.(?:gif|jpg|png)|cart/checkout(?:$|\?.*|/\??$)|misc/|sites/) + to + https://$1numato.com/ + + target + + + host + numato.com + + + host + www.numato.com + + + + + Number Resource Organization + + ruleset + + name + Number Resource Organization + platform + mixedcontent + rule + + from + ^http://(www\.)?nro\.net/ + to + https://$1nro.net/ + + securecookie + + host + ^(.*\.)nro\.net$ + name + .* + + target + + + host + nro.net + + + host + *.nro.net + + + + + NumbersUSA + + ruleset + + name + NumbersUSA + rule + + from + ^http://(www\.)?numbersusa\.com/ + to + https://$1numbersusa.com/ + + securecookie + + host + ^\.numbersusa\.com$ + name + .+ + + target + + + host + numbersusa.com + + + host + *.numbersusa.com + + + + + Numergy + + ruleset + + name + Numergy + rule + + + from + ^https?://numergy\.com/ + to + https://www.numergy.com/ + + + from + ^http://([^/:@]+)?\.numergy\.com/ + to + https://$1.numergy.com/ + + + securecookie + + host + ^(.*\.)?numergy\.com$ + name + .+ + + target + + + host + numergy.com + + + host + www.numergy.com + + + host + login.numergy.com + + + + + NutriCentre + + ruleset + + name + NutriCentre + rule + + from + ^http://(?:www\.)?nutricentre\.com/ + to + https://www.nutricentre.com/ + + securecookie + + host + ^(.*\.)?nutricentre\.com$ + name + .* + + target + + + host + nutricentre.com + + + host + www.nutricentre.com + + + + + Nuwear + + ruleset + + name + Nuwear + rule + + from + ^http://(www\.)?nuwear\.com/ + to + https://$1nuwear.com/ + + securecookie + + host + ^(?:w*\.)?nuwear\.com$ + name + .+ + + target + + + host + nuwear.com + + + host + *.nuwear.com + + + + + Nyx.cz + + ruleset + + name + Nyx.cz + rule + + from + ^http://(www\.)?nyx\.cz/ + to + https://www.nyx.cz/ + + target + + + host + nyx.cz + + + host + www.nyx.cz + + + + + Nzbplanet.net + + ruleset + + name + Nzbplanet.net + rule + + from + ^http://(www\.)?nzbplanet\.net/ + to + https://$1nzbplanet.net/ + + target + + + host + nzbplanet.net + + + host + www.nzbplanet.net + + + + + Näkövammaisten keskusliitto + + ruleset + + name + Näkövammaisten keskusliitto + rule + + from + ^http://(?:www\.)?nkl\.fi/ + to + https://www.nkl.fi/ + + securecookie + + host + ^www\.nkl\.fi$ + name + .+ + + target + + + host + nkl.fi + + + host + www.nkl.fi + + + + + O.S. Systems (partial) + + ruleset + + name + O.S. Systems (partial) + rule + + from + ^http://projetos\.ossystems\.com\.br/ + to + https://projetos.ossystems.com.br/ + + securecookie + + host + ^projetos\.ossystems\.com\.br$ + name + .+ + + target + + host + projetos.ossystems.com.br + + + + OAG (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?oag\.com/+(?!favicon\.ico|misc/|modules/|sites/) + + name + OAG (partial) + rule + + from + ^http://(tppro\.|www\.)?oag\.com/ + to + https://$1oag.com/ + + securecookie + + host + ^tppro\.oag\.com$ + name + .* + + target + + + host + oag.com + + + host + *.oag.com + + + + + OAG.com (false MCB) + + ruleset + + name + OAG.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?oag\.com/ + to + https://$1oag.com/ + + target + + + host + oag.com + + + host + www.oag.com + + + + + OASIS Open.org + + ruleset + + name + OASIS Open.org + rule + + from + ^http://(www\.)?oasis-open\.org/ + to + https://$1oasis-open.org/ + + securecookie + + host + ^\.oasis-open\.org$ + name + .+ + + target + + + host + oasis-open.org + + + host + *.oasis-open.org + + + + + OCaml (partial) + + ruleset + + name + OCaml (partial) + rule + + from + ^http://(forge|static)\.ocamlcore\.org/ + to + https://$1.ocamlcore.org/ + + target + + + host + forge.ocamlcore.org + + + host + lists.ocamlcore.org + + + + + OD.org + + ruleset + + name + OD.org + rule + + from + ^http://shared\.od\.org/ + to + https://shared.od.org/ + + securecookie + + host + ^shared\.od\.org$ + name + .+ + + target + + host + shared.od.org + + + + ODMWheels + + ruleset + + name + ODMWheels + rule + + from + ^http://(www\.)?odmwheels\.com/ + to + https://$1odmwheels.com/ + + securecookie + + host + ^(?:.*\.)?odmwheels\.com$ + name + .+ + + target + + + host + odmwheels.com + + + host + *.odmwheels.com + + + + + OECD + + ruleset + + name + OECD + rule + + from + ^http://www\.oecd\.org/ + to + https://www.oecd.org/ + + target + + host + www.oecd.org + + + + OFB (partial) + + ruleset + + name + OFB (partial) + rule + + + from + ^https?://(?:www\.)?ofb\.net/ + to + https://ofb.net/ + + + from + ^https?://mail.ofb.net/ + to + https://ofb.net:441/squirrelmail-apache2/ + + + securecookie + + host + ^ofb\.net$ + name + .+ + + target + + + host + ofb.net + + + host + *.ofb.net + + + + + OFTC Webchat + + ruleset + + name + OFTC Webchat + rule + + from + ^http://webchat\.oftc\.net/ + to + https://webchat.oftc.net/ + + target + + host + webchat.oftc.net + + + + OHM2013.org + + ruleset + + name + OHM2013.org + rule + + from + ^http://(?:www\.)?ohm2013\.org/ + to + https://ohm2013.org/ + + target + + + host + ohm2013.org + + + host + www.ohm2013.org + + + + + OK.de + + ruleset + + name + OK.de + rule + + from + ^http://(?:www\.)?ok\.de/ + to + https://www.ok.de/ + + securecookie + + host + ^(?:www\.)?ok\.de$ + name + .+ + + target + + + host + ok.de + + + host + www.ok.de + + + + + OKCoin.com + + ruleset + + name + OKCoin.com + rule + + + from + ^http://(?:www\.)?okcoin\.com/ + to + https://www.okcoin.com/ + + + from + ^http://img\.okcoin\.com/ + to + https://img.okcoin.com/ + + + securecookie + + host + ^(?:www)?\.okcoin\.com$ + name + .+ + + target + + + host + okcoin.com + + + host + *.okcoin.com + + + + + OKFn.org (false MCB) + + ruleset + + name + OKFn.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?okfn\.org/(?!\?ver=\w+$|favicon\.ico|wp-content/|wp-includes/) + to + https://$1okfn.org/ + + securecookie + + host + ^\.okfn\.org$ + name + .+ + + target + + + host + okfn.org + + + host + *.okfn.org + + + + + OKPAY.com + + ruleset + + name + OKPAY.com + rule + + + from + ^http://(?:www\.)?okpay\.com/ + to + https://www.okpay.com/ + + + from + ^http://support\.okpay\.com/ + to + https://support.okay.com/ + + + securecookie + + host + ^(?:support|www)\.okpay\.com$ + name + .+ + + target + + + host + okpay.com + + + host + *.okpay.com + + + + + OLMN.org + + ruleset + + name + OLMN.org + rule + + from + ^http://(?:www\.)?olmn\.org/ + to + https://www.olmn.org/ + + securecookie + + host + ^www\.olmn\.org$ + name + .+ + + target + + + host + olmn.org + + + host + www.olmn.org + + + + + OLPC (partial) + + ruleset + + name + OLPC (partial) + rule + + from + ^http://dev\.laptop\.org/ + to + https://dev.laptop.org/ + + securecookie + + host + ^dev\.laptop\.org$ + name + .* + + target + + host + dev.laptop.org + + + + OMG! Ubuntu! (partial) + + ruleset + + name + OMG! Ubuntu! (partial) + rule + + from + ^https?://cloudfront\.omgubuntu\.co\.uk/ + to + https://omgubuntu.s3-eu-west-1.amazonaws.com/ + + target + + host + cloudfront.omgubuntu.co.uk + + + + OMICRON (partial) + + ruleset + + name + OMICRON (partial) + rule + + from + ^http://(www\.)?omicron\.at/ + to + https://$1omicron.at/ + + target + + + host + omicron.at + + + host + www.omicron.at + + + + + ON24.com (partial) + + ruleset + + name + ON24.com (partial) + rule + + + from + ^http://(?:www\.)?on24\.com/ + to + https://www.on24.com/ + + + from + ^http://(event|eventprd10b|w)\.on24\.com/ + to + https://$1.on24.com/ + + + securecookie + + host + ^(?:event\.|eventprd10b\.|www\.)?on24\.com$ + name + .+ + + target + + + host + on24.com + + + host + *.on24.com + + + + + ONE.org + + ruleset + + name + ONE.org + rule + + + from + ^http://(www\.)?one\.org/ + to + https://$1one.org/ + + + from + ^http://(?:one\.actionkit\.com|give\.one\.org)/ + to + https://one.actionkit.com/ + + + securecookie + + host + ^one\.actionkit\.com + name + .+ + + target + + + host + one.org + + + host + *.one.org + + + host + one.actionkit.com + + + + + ONEadmin (partial) + + ruleset + + name + ONEadmin (partial) + rule + + + from + ^http://oneadmin\.cz/[^\?]*(\?.*) + to + https://www.oneadmin.cz/$1 + + + from + ^http://www\.oneadmin\.cz/ + to + https://www.oneadmin.cz/ + + + securecookie + + host + ^www\.oneadmin\.cz$ + name + .+ + + target + + + host + oneadmin.cz + + + host + www.oneadmin.cz + + + + + ONEbit + + ruleset + + name + ONEbit + rule + + + from + ^http://(?:www\.)?one(bit|server)\.cz/ + to + https://www.one$1.cz/ + + + from + ^http://webmail\.onebit\.cz/ + to + https://webmail.onebit.cz/ + + + securecookie + + host + ^webmail\.onebit\.cz$ + name + .+ + + target + + + host + onebit.cz + + + host + *.onebit.cz + + + host + oneserver.cz + + + host + www.oneserver.cz + + + + + ONEhelp + + ruleset + + name + ONEhelp + rule + + + from + ^http://onehelp\.cz/(?:\?.*)?$ + to + https://www.onehelp.cz/onebit/ + + + from + ^http://onehelp\.cz/onebit/(?:\?.*)?$ + to + https://www.onehelp.cz/ + + + from + ^http://www\.onehelp\.cz/ + to + https://www.onehelp.cz/ + + + securecookie + + host + ^www\.onehelp\.cz$ + name + .+ + + target + + + host + onehelp.cz + + + host + www.onehelp.cz + + + + + ONEsite (partial) + + ruleset + + name + ONEsite (partial) + rule + + + from + ^http://admin\.onesite\.com/ + to + https://admin.onesite.com/ + + + from + ^https?://(?:fast1|images)\.onesite\.com/ + to + https://images.onesite.com/ + + + securecookie + + host + ^\.admin\.onesite\.com$ + name + .+ + + target + + + host + *.onesite.com + + + host + *.admin.onesite.com + + + + + ONEsolution + + ruleset + + name + ONEsolution + rule + + from + ^http://(?:www\.)?onesolution\.cz/ + to + https://www.onesolution.cz/ + + securecookie + + host + ^www\.onesolution\.cz$ + name + .+ + + target + + + host + onesolution.cz + + + host + www.onesolution.cz + + + + + ONEweb (partial) + + ruleset + + name + ONEweb (partial) + rule + + from + ^http://(?:www\.)?oneweb\.cz/ + to + https://www.oneweb.cz/ + + securecookie + + host + ^www\.oneweb\.cz$ + name + .+ + + target + + + host + oneweb.cz + + + host + www.oneweb.cz + + + + + ONOrobot.org + + ruleset + + name + ONOrobot.org + rule + + from + ^http://(www\.)?onorobot\.org/ + to + https://$1onorobot.org/ + + securecookie + + host + ^\.onorobot\.org$ + name + .+ + + target + + + host + onorobot.org + + + host + *.onorobot.org + + + + + OODA Loop.com + + ruleset + + name + OODA Loop.com + rule + + from + ^http://(?:www\.)?oodaloop\.com/ + to + https://www.oodaloop.com/ + + securecookie + + host + ^www\.oodaloop\.com$ + name + .+ + + target + + + host + oodaloop.com + + + host + www.oodaloop.com + + + + + OODA.com + + ruleset + + name + OODA.com + rule + + from + ^http://(?:www\.)?ooda\.com/ + to + https://www.ooda.com/ + + target + + + host + ooda.com + + + host + www.ooda.com + + + + + OPCW.org + + ruleset + + name + OPCW.org + rule + + from + ^http://(www\.)?opcw\.org/ + to + https://$1opcw.org/ + + target + + + host + opcw.org + + + host + www.opcw.org + + + + + OPML (partial) + + ruleset + + name + OPML (partial) + rule + + from + ^https?://static\.opml\.org/ + to + https://s3.amazonaws.com/static.opml.org/ + + target + + host + static.opml.org + + + + ORA + + ruleset + + name + ORA + rule + + from + ^http://(www\.)?orafarm\.com/ + to + https://$1orafarm.com/ + + securecookie + + host + ^\.orafarm\.com$ + name + .+ + + target + + + host + orafarm.com + + + host + *.orafarm.com + + + + + ORB-International.com + + ruleset + + name + ORB-International.com + rule + + from + ^http://(www\.)?orb-international\.com/ + to + https://$1orb-international.com/ + + target + + + host + orb-international.com + + + host + www.orb-international.com + + + + + OSADL.org + + ruleset + + name + OSADL.org + rule + + from + ^http://(lists\.|www\.)?osadl\.org/ + to + https://$1osadl.org/ + + securecookie + + host + ^\.osadl\.org$ + name + .+ + + target + + + host + osadl.org + + + host + *.osadl.org + + + + + OSDV.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?osdv\.org/(?!wp-content/|wp-includes/) + + name + OSDV.org (partial) + rule + + from + ^http://(?:www\.)?osdv\.org/ + to + https://wordpress2.trustthevote.org/ + + securecookie + + host + ^\.osdv\.org$ + name + ^__utm\w$ + + target + + + host + osdv.org + + + host + *.osdv.org + + + + + OSDir.com + + ruleset + + name + OSDir.com + rule + + from + ^http://(www\.)?osdir\.com/ + to + https://$1osdir.com/ + + securecookie + + host + ^\.osdir\.com$ + name + .+ + + target + + + host + osdir.com + + + host + *.osdir.com + + + + + OSGeo.org (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?osgeo\.org/(?!favicon\.ico|files/|images/|misc/|modules/|sites/) + + + pattern + ^http://wiki\.osgeo\.org/(?!favicon\.ico|index\.php\?title=Special:UserLogin|mycaptcha_num\.png|skins/) + + + name + OSGeo.org (partial) + rule + + + from + ^http://((?:lists|svn|trac|wiki|www)\.)?osgeo\.org/ + to + https://$1osgeo.org/ + + + from + ^http://osgeo4w\.osgeo\.org/[^?]*(\?.*)? + to + https://trac.osgeo.org/osgeo4w/$1 + + + securecookie + + host + ^trac\.osgeo\.org$ + name + .+ + + target + + + host + osgeo.org + + + host + *.osgeo.org + + + + + OSI Codes + + ruleset + + name + OSI Codes + rule + + from + ^http://(www\.)?osicodesinc\.com/ + to + https://$1osicodesinc.com/ + + target + + + host + osicodesinc.com + + + host + www.osicodesinc.com + + + + + OSM Group + + ruleset + + name + OSM Group + rule + + from + ^http://(?:www\.)?osmglobal\.com/ + to + https://www.osmglobal.com/ + + securecookie + + host + ^www\.osmglobal\.com$ + name + .+ + + target + + + host + osmglobal.com + + + host + www.osmglobal.com + + + + + OSVDB.org (partial) + + ruleset + + name + OSVDB.org (partial) + rule + + + from + ^http://(www\.)?osvdb\.org/account/?(?:\?.*)$ + to + https://$1osvdb.org/account/login + + + from + ^http://(www\.)?osvdb\.org/(account/(?:login|signup)(?:$|\?)|images/|javascripts/|stylesheets/) + to + https://$1osvdb.org/$2 + + + securecookie + + host + ^\.osvdb\.org$ + name + ^__utm\w$ + + target + + + host + osvdb.org + + + host + *.osvdb.org + + + + + OTAlliance.org + + ruleset + + name + OTAlliance.org + rule + + from + ^http://(www\.)?otalliance\.org/ + to + https://otalliance.org/ + + target + + + host + otalliance.org + + + host + www.otalliance.org + + + + + OTE + + ruleset + + name + OTE + rule + + + from + ^http://((adman|corpmail|ps|domainmanager|managedservices|tools|my)\.)?otenet\.gr/ + to + https://$1otenet.gr/ + + + from + ^http://((www|11888)\.)?ote\.gr/ + to + https://$1ote.gr/ + + + securecookie + + + host + ^(.*\.)?otenet\.gr$ + name + .* + + + host + ^(.*\.)?ote\.gr$ + name + .* + + + target + + + host + adman.otenet.gr + + + host + corpmail.otenet.gr + + + host + domainmanager.otenet.gr + + + host + managedservices.otenet.gr + + + host + my.otenet.gr + + + host + ps.otenet.gr + + + host + tools.otenet.gr + + + host + ote.gr + + + host + 11888.ote.gr + + + host + www.ote.gr + + + + + OTR.im + + ruleset + + name + OTR.im + rule + + from + ^http://((?:bugs|coverage|www)\.)?otr\.im/ + to + https://$1otr.im/ + + securecookie + + host + ^bugs\.otr\.im$ + name + .+ + + target + + + host + otr.im + + + host + *.otr.im + + + + + OU.edu (partial) + + ruleset + + name + OU.edu (partial) + rule + + + from + ^http://(?:www\.)?ou\.edu/ + to + https://www.ou.edu/ + + + from + ^http://(account|benefitsenrollment|checksheets|financialaid|forms|apps\.hr|janux|jobs|learn|market|ozone|platform)\.ou\.edu/ + to + https://$1.ou.edu/ + + + from + ^http://(?:www\.)?hr\.ou\.edu/ + to + https://hr.ou.edu/ + + + securecookie + + host + ^(?:account|hr|apps\.hr|janux|ozone)\.ou\.edu$ + name + .+ + + target + + host + *.ou.edu + + + + OUYA (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ouya\.tv/(?!favicon\.ico|wp-content/) + + name + OUYA (partial) + rule + + + from + ^http://(devs\.|www\.)?ouya\.tv/ + to + https://$1ouya.tv/ + + + from + ^https?://shop\.ouya\.tv/ + to + https://ouya.myshopify.com/ + + + securecookie + + host + ^devs\.ouya\.tv$ + name + .+ + + target + + + host + ouya.tv + + + host + *.ouya.tv + + + + + OVH + + ruleset + + name + OVH + rule + + + from + ^http://(?:www\.)?ovh(-hosting)?\.(co\.uk|com|cz|de|es|fi|lt|nl|ie|it|pl|pt|sn)/ + to + https://www.ovh$1.$2/ + + + from + ^http://(?:imp|webmail)\.ovh\.net/ + to + https://ssl0.ovh.net/ + + + from + ^http://mailconfig\.ovh\.net/ + to + https://mailconfig.ovh.net/ + + + from + ^http://ssl([023567]|1[0-5])\.ovh\.net/ + to + https://ssl$1.ovh.net/ + + + securecookie + + host + ^(?:.*\.)?ovh(?:-hosting)?\.(?:net|co\.uk|com|cz|de|es|fi|lt|nl|ie|it|pl|pt|sn)$ + name + .+ + + target + + + host + *.ovh.net + + + host + ovh.co.uk + + + host + www.ovh.co.uk + + + host + ovh.com + + + host + www.ovh.com + + + host + ovh.cz + + + host + www.ovh.cz + + + host + ovh.de + + + host + www.ovh.de + + + host + ovh.es + + + host + www.ovh.es + + + host + ovh.lt + + + host + www.ovh.lt + + + host + ovh.nl + + + host + www.ovh.nl + + + host + ovh.ie + + + host + www.ovh.ie + + + host + ovh.it + + + host + www.ovh.it + + + host + ovh.pl + + + host + www.ovh.pl + + + host + ovh.pt + + + host + www.ovh.pt + + + host + ovh.sn + + + host + www.ovh.sn + + + host + ovh-hosting.fi + + + host + www.ovh-hosting.fi + + + + + OWASP + + ruleset + + name + OWASP + platform + mixedcontent + rule + + from + ^http://(www\.)?owasp\.org/ + to + https://$1owasp.org/ + + securecookie + + host + ^(?:www\.)?owasp\.org$ + name + .+ + + target + + + host + owasp.org + + + host + www.owasp.org + + + + + Oak Ridge National Laboratory (partial) + + ruleset + + exclusion + + pattern + ^http://www\.ornl\.gov/(adm/|info/|ornlreview/|partnerships/(css/handheld\.css|university)|search) + + name + Oak Ridge National Laboratory (partial) + rule + + + from + ^https?://ornl\.gov/ + to + https://www.ornl.gov/ + + + from + ^http://www\.ornl\.gov/($|ornlhome/|partnerships/) + to + https://www.ornl.gov/$1 + + + downgrade + 1 + from + ^https://www\.ornl\.gov/(adm|info|ornlreview)/ + to + http://www.ornl.gov/$1/ + + + from + ^https?://(?:www\.)?olcf\.ornl\.gov/ + to + https://www.olcf.ornl.gov/ + + + from + ^http://sustainability-ornl\.org/ + to + https://sustainability-ornl.org/ + + + target + + + host + ornl.gov + + + host + *.ornl.gov + + + host + sustainability-ornl.org + + + + + Oaklandish + + ruleset + + name + Oaklandish + rule + + from + ^http://(www\.)?oaklandish\.com/ + to + https://$1oaklandish.com/ + + securecookie + + host + ^\.oaklandish\.com$ + name + .+ + + target + + + host + oaklandish.com + + + host + *.oaklandish.com + + + + + Obedovat.sk + + ruleset + + name + Obedovat.sk + rule + + from + ^http://(www\.)?obedovat\.sk/ + to + https://www.obedovat.sk/ + + target + + + host + obedovat.sk + + + host + www.obedovat.sk + + + + + Oberlin College (partial) + + ruleset + + name + Oberlin College (partial) + rule + + + from + ^http://(blackboard|classifieds|new|oncampus(?:\.csr)?)\.oberlin\.edu/ + to + https://$1.oberlin.edu/ + + + from + ^http://(?:occs\.|www\.)?cs\.oberlin\.edu/ + to + https://occs.cs.oberlin.edu/ + + + securecookie + + host + ^.+\.oberlin\.edu$ + name + .+ + + target + + + host + *.oberlin.edu + + + host + *.cs.oberlin.edu + + + host + oncampus.csr.oberlin.edu + + + + + ObiTalk + + ruleset + + name + ObiTalk + rule + + from + ^http://(www\.)?obitalk\.com/ + to + https://www.obihai.com/ + + target + + + host + www.obitalk.com + + + host + obitalk.com + + + + + Object Management Group (partial) + + ruleset + + name + Object Management Group (partial) + rule + + from + ^http://secure\.omg\.org/ + to + https://secure.omg.org/ + + target + + host + secure.omg.org + + + + Objectif-Securite.ch + + ruleset + + name + Objectif-Securite.ch + rule + + from + ^http://(www\.)?objectif-securite\.ch/ + to + https://$1objectif-securite.ch/ + + target + + + host + objectif-securite.ch + + + host + www.objectif-securite.ch + + + + + Occupy Corporatism.com + + ruleset + + name + Occupy Corporatism.com + rule + + from + ^http://(www\.)?occupycorporatism\.com/ + to + https://$1occupycorporatism.com/ + + securecookie + + host + ^(?:w*\.)?occupycorporatism\.com$ + name + .+ + + target + + + host + occupycorporatism.com + + + host + *.occupycorporatism.com + + + + + Occupywallst.org + + ruleset + + name + Occupywallst.org + rule + + from + ^http://(www\.)?occupywallst\.org/ + to + https://occupywallst.org/ + + target + + + host + occupywallst.org + + + host + www.occupywallst.org + + + + + Octopoos.com + + ruleset + + name + Octopoos.com + rule + + from + ^http://(www\.)?octopoos\.com/ + to + https://$1octopoos.com/ + + securecookie + + host + ^www\.octopoos\.com$ + name + .+ + + target + + + host + octopoos.com + + + host + www.octopoos.com + + + + + Oculu.com (partial) + + ruleset + + name + Oculu.com (partial) + rule + + from + ^http://(?:(www\.)|zinc\.)?oculu\.com/ + to + https://$1oculu.com/ + + securecookie + + host + ^(?:www\.)?oculu\.com$ + name + .+ + + target + + + host + oculu.com + + + host + *.oculu.com + + + + + Oculus VR (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?oculusvr\.com/(?!_core/|pre-order|wp-content/|wp-includes/) + + name + Oculus VR (partial) + rule + + from + ^http://((?:careers|developer|www)\.)?oculusvr\.com/ + to + https://$1oculusvr.com/ + + securecookie + + host + ^(?:careers|developer)\.oculusvr\.com$ + name + .+ + + target + + + host + oculusvr.com + + + host + *.oculusvr.com + + + + + Oderland.se + + ruleset + + name + Oderland.se + rule + + from + ^http://(www\.)?oderland\.se/ + to + https://$1oderland.se/ + + target + + + host + oderland.se + + + host + www.oderland.se + + + + + Odevzdej.cz + + ruleset + + name + Odevzdej.cz + rule + + from + ^http://(?:www\.)?odevzdej\.cz/ + to + https://odevzdej.cz/ + + securecookie + + host + ^odevzdej\.cz$ + name + .+ + + target + + + host + odevzdej.cz + + + host + www.odevzdej.cz + + + + + Off-the-Record Messaging + + ruleset + + name + Off-the-Record Messaging + rule + + from + ^http://otr\.cypherpunks\.ca/ + to + https://otr.cypherpunks.ca/ + + target + + host + otr.cypherpunks.ca + + + + Offensive-Security.com + + ruleset + + name + Offensive-Security.com + rule + + from + ^http://(forums\.|www\.)?offensive-security\.com/ + to + https://$1offensive-security.com/ + + securecookie + + + host + ^\.offensive-security\.com$ + name + ^__utm\w$ + + + host + ^forums\.offensive-security\.com$ + name + .+ + + + target + + + host + offensive-security.com + + + host + *.offensive-security.com + + + + + Offers CDN.net + + ruleset + + name + Offers CDN.net + rule + + + from + ^http://assets\.offerscdn\.net/ + to + https://assets.offerscdn.net/ + + + from + ^http://0\.i\.offerscdn\.net/ + to + https://d3uc8eo6m5ta05.cloudfront.net/ + + + target + + host + *.offerscdn.net + + + + Office Depot (partial) + + ruleset + + name + Office Depot (partial) + rule + + + from + ^http://s(?:ecure|tatic)\.www\.odcdn\.com/ + to + https://secure.www.odcdn.com/ + + + from + ^http://(?:www\.)?officedepot\.com/(account/|cart/checkout\.do|favicon\.ico|images/|links/(?!links)|orderhistory(?:$|\?|/)) + to + https://www.officedepot.com/$1 + + + from + ^http://storelocator\.officedepot\.com/(images|javascript)/ + to + https://hosted.where2getit.com/officedepot/$1/ + + + from + ^http://storelocator\.officedepot\.com/w2gi/images/ + to + https://hosted.where2getit.com/w2gi/images/ + + + from + ^http://www18\.officedepot\.com/ + to + https://www18.officedepot.com/ + + + securecookie + + host + ^www18\.officedepot\.com$ + name + .+ + + target + + + host + *.www.odcdn.com + + + host + officedepot.com + + + host + *.officedepot.com + + + + + Office of National Assessments + + ruleset + + name + Office of National Assessments + rule + + from + ^http://(?:www\.)?ona\.gov\.au/ + to + https://www.ona.gov.au/ + + target + + + host + ona.gov.au + + + host + *.ona.gov.au + + + + + Office of Parliamentary Counsel + + ruleset + + name + Office of Parliamentary Counsel + rule + + from + ^http://(?:www\.)?opc\.gov\.au/ + to + https://www.opc.gov.au/ + + target + + + host + opc.gov.au + + + host + *.opc.gov.au + + + + + Office of the Commissioner of Lobbying of Canada + + ruleset + + name + Office of the Commissioner of Lobbying of Canada + rule + + + from + ^https?://ocl-cal\.gc\.ca/ + to + https://ocl-cal.gc.ca/eic/site/012.nsf/Intro + + + from + ^http://ocl-cal\.gc\.ca/ + to + https://ocl-cal.gc.ca/ + + + securecookie + + host + ^ocl-cal\.gc\.ca$ + name + .* + + target + + host + ocl-cal.gc.ca + + + + Office of the Migration Agents Registration Authority + + ruleset + + name + Office of the Migration Agents Registration Authority + rule + + from + ^http://(?:www\.)?mara\.gov\.au/ + to + https://www.mara.gov.au/ + + target + + + host + mara.gov.au + + + host + *.mara.gov.au + + + + + Office.co.uk (partial) + + ruleset + + name + Office.co.uk (partial) + rule + + from + ^http://(?:www\.)?office\.co\.uk/(img|images|javascript|scripts|styles)/ + to + https://www.office.co.uk/$1/ + + target + + + host + office.co.uk + + + host + www.office.co.uk + + + + + Officer Down Memorial Page (partial) + + ruleset + + name + Officer Down Memorial Page (partial) + rule + + + from + ^http://(www\.)?odmp\.org/ + to + https://$1odmp.org/ + + + from + ^https?://store\.odmp\.org/lib/ + to + https://lib.store.yahoo.net/lib/ + + + securecookie + + host + ^(?:www)?\.odmp\.org$ + name + .+ + + target + + + host + odmp.org + + + host + *.odmp.org + + + + + Officersforbundet.se + + ruleset + + name + Officersforbundet.se + rule + + + from + ^http://officersforbundet\.se/ + to + https://www.officersforbundet.se/ + + + from + ^http://www\.officersforbundet\.se/ + to + https://www.officersforbundet.se/ + + + target + + + host + officersforbundet.se + + + host + www.officersforbundet.se + + + + + Officeworks.com.au + + ruleset + + name + Officeworks.com.au + rule + + from + ^http://(www\.)?officeworks\.com\.au/ + to + https://www.officeworks.com.au/ + + securecookie + + host + ^(www\.)?officeworks.com.au$ + name + .+ + + target + + + host + officeworks.com.au + + + host + www.officeworks.com.au + + + + + Official Colorado No-Call List + + ruleset + + name + Official Colorado No-Call List + rule + + from + ^http://(?:www\.)?coloradonocall\.com/ + to + https://www.coloradonocall.com/ + + target + + + host + coloradonocall.com + + + host + www.coloradonocall.com + + + + + Ogone + + ruleset + + name + Ogone + rule + + from + ^http://([^/:@]+)?\.ogone\.com/ + to + https://$1.ogone.com/ + + target + + host + secure.ogone.com + + + + Oh So Cool ! + + ruleset + + name + Oh So Cool ! + rule + + from + ^http://(www\.)?ohsocool\.org/ + to + https://$1ohsocool.org/ + + target + + + host + ohsocool.org + + + host + www.ohsocool.org + + + + + Ohio State University (partial) + + ruleset + + name + Ohio State University (partial) + rule + + + from + ^http://(?:www\.)?jobsatosu\.com/ + to + https://www.jobsatosu.com/ + + + from + ^http://(www\.)?esue\.ohio-state\.edu/ + to + https://$1esue.ohio-state.edu/ + + + from + ^http://(?:www\.)?ohiostatealumni\.org/ + to + https://www.ohiostatealumni.org/ + + + from + ^http://(?:www\.)?osu\.edu/(\d{4})/(css|images|inc)/ + to + https://www.osu.edu/$1/$2/ + + + from + ^http://(carmen|ced|contoller|email|go|hr|library|lt|my|ocio|mooculus|registrar|webmail)\.osu\.edu/ + to + https://$1.osu.edu/ + + + from + ^http://(?:www\.)?giveto\.osu\.edu/ + to + https://www.giveto.osu.edu/ + + + from + ^http://opensource\.osu\.edu/ + to + https://opensource.osu.edu/ + + + from + ^http://opensource\.cse\.ohio\-state\.edu/ + to + https://opensource.cse.ohio-state.edu/ + + + securecookie + + + host + ^www\.jobsatosu\.com$ + name + .* + + + host + ^.*\.osu\.edu$ + name + .* + + + host + ^.*\.ohio\-state\.edu$ + name + .* + + + host + ^.*opensource\.osu\.edu$ + name + .* + + + host + ^.*opensource\.ohio\-state\.edu$ + name + .* + + + target + + + host + jobsatosu.com + + + host + www.jobsatosu.com + + + host + esue.ohio-state.edu + + + host + www.esue.ohio-state.edu + + + host + ohiostatealumni.org + + + host + www.ohiostatealumni.org + + + host + osu.edu + + + host + *.osu.edu + + + host + *.ohio-state.edu + + + host + opensource.osu.edu + + + host + opensource.cse.ohio-state.edu + + + + + OhioLINK.edu (partial) + + ruleset + + name + OhioLINK.edu (partial) + rule + + from + ^http://((?:auth|databases|drc|etd|olc1|www)\.)?ohiolink\.edu/ + to + https://$1ohiolink.edu/ + + securecookie + + host + ^(?:(?:databases|etd|olc1|www)\.)?ohiolink\.edu$ + name + .+ + + target + + + host + ohiolink.edu + + + host + *.ohiolink.edu + + + + + Ohloh + + ruleset + + name + Ohloh + rule + + + from + ^http://(?:www\.)?ohloh\.(?:net|com|org)/ + to + https://www.ohloh.net/ + + + from + ^http://meta\.ohloh\.net/ + to + https://meta.ohloh.net/ + + + securecookie + + host + ^(.+\.)?ohloh\.(net|com|org)$ + name + .* + + target + + + host + ohloh.net + + + host + *.ohloh.net + + + host + ohloh.com + + + host + www.ohloh.com + + + host + ohloh.org + + + host + www.ohloh.org + + + + + OkCupid (partial) + + ruleset + + name + OkCupid (partial) + rule + + + from + ^http://(?:akcdn\.okccdn|cdn\.okcimg)\.com/media/ + to + https://www.okcupid.com/flat/media/ + + + from + ^http://(?:(?:ak)?includes\.okccdn|(?:ads|includes)\.okcimg|okcupid)\.com/ + to + https://www.okcupid.com/ + + + from + ^http://www\.okcupid\.com/(about/okcupid|careers|contact-us|daisy|flat/|help/\w+|legal/terms|login|press/news|w3c/) + to + https://www.okcupid.com/$1 + + + target + + + host + akcdn.okccdn.com + + + host + akincludes.okccdn.com + + + host + ads.okcimg.com + + + host + cdn.okcimg.com + + + host + includes.okcimg.com + + + host + okcupid.com + + + host + www.okcupid.com + + + + + Oktatási Hivatal + + ruleset + + name + Oktatási Hivatal + platform + mixedcontent + rule + + from + ^http://(?:www\.)?(oktatas|kir)\.hu/ + to + https://www.$1.hu/ + + target + + + host + kir.hu + + + host + oktatas.hu + + + host + www.kir.hu + + + host + www.oktatas.hu + + + + + Olark + + ruleset + + name + Olark + rule + + from + ^http://((?:assets|chat2?|static|\d+-async|testcdn|www)\.)?olark\.com/ + to + https://$1olark.com/ + + securecookie + + host + ^(?:.+\.)?olark\.com$ + name + .+ + + target + + + host + olark.com + + + host + *.olark.com + + + + + Olimex.com + + ruleset + + name + Olimex.com + rule + + from + ^http://(www\.)?olimex\.com/ + to + https://$1olimex.com/ + + securecookie + + host + ^www\.olimex\.com$ + name + .+ + + target + + + host + olimex.com + + + host + www.olimex.com + + + + + Ology.com (partial) + + ruleset + + name + Ology.com (partial) + rule + + from + ^http://cdn\.ology\.com/ + to + https://d2hddv4f3m6vd2.cloudfront.net/ + + target + + host + cdn.ology.com + + + + Olvi.fi + + ruleset + + name + Olvi.fi + rule + + + from + ^http://(www\.)?olvi\.fi/ + to + https://www.olvi.fi/ + + + from + ^https://olvi\.fi/ + to + https://www.olvi.fi/ + + + from + ^http://(puoti|palaute)\.olvi\.fi/ + to + https://$1.olvi.fi/ + + + target + + + host + www.olvi.fi + + + host + olvi.fi + + + host + puoti.olvi.fi + + + host + palaute.olvi.fi + + + + + OmakaseWeb.com + + ruleset + + name + OmakaseWeb.com + rule + + from + ^http://(www\.)?omakaseweb\.com/ + to + https://$1omakaseweb.com/ + + target + + + host + omakaseweb.com + + + host + www.omakaseweb.com + + + + + Omaze.com (partial) + + ruleset + + name + Omaze.com (partial) + rule + + from + ^http://(www\.)?omaze\.com/(?=favicon\.ico|wp-content/|wp-includes) + to + https://$1omaze.com/ + + target + + + host + omaze.com + + + host + www.omaze.com + + + + + Omaze.info + + ruleset + + name + Omaze.info + rule + + from + ^http://(\d\.)?omaze\.info/ + to + https://$1omaze.info/ + + securecookie + + host + ^\.omaze\.info$ + name + ^__cfduid$ + + target + + + host + omaze.info + + + host + *.omaze.info + + + + + Omeda (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + Omeda (partial) + rule + + from + ^http://(\w+)\.omeda\.com/ + to + https://$1.omeda.com/ + + securecookie + + host + ^.*\.omeda\.com$ + name + .* + + target + + host + *.omeda.com + + + + OmniGroup.com + + ruleset + + name + OmniGroup.com + rule + + + from + ^http://omnigroup\.com/ + to + https://www.omnigroup.com/ + + + from + ^http://www\.omnigroup\.com/ + to + https://www.omnigroup.com/ + + + target + + + host + omnigroup.com + + + host + www.omnigroup.com + + + + + OmniUpdate.com + + ruleset + + name + OmniUpdate.com + rule + + from + ^http://((?:apps|commons|support|www)\.)?omniupdate\.com/ + to + https://$1omniupdate.com/ + + securecookie + + host + ^www\.omniupdate\.com$ + name + .+ + + target + + + host + omniupdate.com + + + host + *.omniupdate.com + + + + + Omniref.com + + ruleset + + name + Omniref.com + rule + + from + ^http://(www\.)?omniref\.com/ + to + https://$1omniref.com/ + + securecookie + + host + ^www\.omniref\.com$ + name + .+ + + target + + + host + omniref.com + + + host + www.omniref.com + + + + + Omnirom.org + + ruleset + + name + Omnirom.org + rule + + from + ^http://(www\.)?omnirom\.org/ + to + https://omnirom.org/ + + target + + + host + omnirom.org + + + host + www.omnirom.org + + + + + Omnitec + + ruleset + + name + Omnitec + rule + + + from + ^http://omnitec\.com/ + to + https://www.omnitec.com/ + + + from + ^http://(\w+)\.omnitec\.com/ + to + https://$1.omnitec.com/ + + + securecookie + + host + ^(.*\.)?omnitec\.com$ + name + .* + + target + + + host + omnitec.com + + + host + *.omnitec.com + + + + + Omron.com + + ruleset + + name + Omron.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?omron\.com/ + to + https://www.omron.com/ + + target + + + host + www.omron.com + + + host + omron.com + + + + + On Landscape.co.uk + + ruleset + + name + On Landscape.co.uk + rule + + from + ^http://(www\.)?onlandscape\.co\.uk/ + to + https://$1onlandscape.co.uk/ + + securecookie + + host + ^(?:\.|www\.)?onlandscape\.co\.uk$ + name + .+ + + target + + + host + onlandscape.co.uk + + + host + *.onlandscape.co.uk + + + + + On-Disk.com + + ruleset + + name + On-Disk.com + rule + + from + ^http://(?:www\.)?on-disk\.com/ + to + https://on-disk.com/ + + securecookie + + host + ^\.on-disk\.com$ + name + .+ + + target + + + host + on-disk.com + + + host + *.on-disk.com + + + + + OnBeing.org + + ruleset + + name + OnBeing.org + rule + + from + ^http://(?:ssl\.|www\.)?onbeing\.org/ + to + https://ssl.onbeing.org/ + + target + + + host + onbeing.org + + + host + *.onbeing.org + + + + + OnGuard Online + + ruleset + + name + OnGuard Online + rule + + from + ^https?://(?:www\.)?(alertaenlinea|onguardonline)\.gov/ + to + https://www.$1.gov/ + + target + + + host + alertaenlinea.gov + + + host + www.alertaenlinea.gov + + + host + onguardonline.gov + + + host + www.onguardonline.gov + + + + + OnLive.com (partial) + + ruleset + + name + OnLive.com (partial) + rule + + from + ^http://((?:games|support|www)\.)?onlive\.com/ + to + https://$1onlive.com/ + + target + + + host + onlive.com + + + host + *.onlive.com + + + + + OnScroll.com (partial) + + ruleset + + name + OnScroll.com (partial) + rule + + from + ^http://cdn\.onscroll\.com/ + to + https://do4jjo8w6mmm0.cloudfront.net/ + + target + + host + cdn.onscroll.com + + + + OnSecure + + ruleset + + name + OnSecure + rule + + from + ^http://(?:www\.)?onsecure\.gov\.au/ + to + https://www.onsecure.gov.au/ + + target + + + host + onsecure.gov.au + + + host + *.onsecure.gov.au + + + + + OnSugar + + ruleset + + exclusion + + pattern + ^http://www\.onsugar\.com/($|\?) + + name + OnSugar + rule + + + from + ^http://(?:www\.)?onsugar\.com/ + to + https://secure.onsugar.com/ + + + from + ^https?://media(\d|[12]\d|3[1-5])?\.onsugar\.com/ + to + https://sugarinc-a.akamaihd.net/ + + + from + ^https?://(?:secure\.|www\.)?(dev[123567]|local)\.onsugar\.com/ + to + https://secure.$1.onsugar.com/ + + + from + ^http://(www\.)?secure\.onsugar\.com/ + to + https://$1secure.onsugar.com/ + + + from + ^https?://(?:www\.)?shopsense\.onsugar\.com/ + to + https://shopsense.shopstyle.com/ + + + securecookie + + host + ^.*\.onsugar\.com$ + name + .* + + target + + + host + onsugar.com + + + host + *.onsugar.com + + + host + secure.*.onsugar.com + + + host + www.*.onsugar.com + + + + + OnTheHub (partial) + + ruleset + + name + OnTheHub (partial) + rule + + from + ^http://(www\.)?onthehub\.com/ + to + https://onthehub.com/ + + target + + + host + onthehub.com + + + host + www.onthehub.com + + + + + OnTrac + + ruleset + + name + OnTrac + rule + + from + ^http://(?:www\.)?ontrac\.com/ + to + https://www.ontrac.com/ + + target + + + host + ontrac.com + + + host + www.ontrac.com + + + + + Onamae-server.com (partial) + + ruleset + + name + Onamae-server.com (partial) + rule + + from + ^http://(www\.)?onamae-server\.com/ + to + https://$1onamae-server.com/ + + securecookie + + host + ^\.(?:www\.)?onamae-server\.com$ + name + .+ + + target + + + host + onamae-server.com + + + host + *.onamae-server.com + + + + + Onamae.com (partial) + + ruleset + + exclusion + + pattern + http://www\.onamae\.com/+(?!common/|dd_menu/|favicon\.ico|images/|navi(?:$|[?/])) + + name + Onamae.com (partial) + rule + + from + ^http://((?:help|jp|www)\.)?onamae\.com/ + to + https://$1onamae.com/ + + securecookie + + + host + ^www\.onamae\.com$ + name + ^adsense$ + + + host + ^help\.onamae\.com$ + name + .+ + + + target + + + host + onamae.com + + + host + *.onamae.com + + + + + OndaRossa.info + + ruleset + + name + OndaRossa.info + platform + cacert + rule + + from + ^http://(web\.|www\.)?ondarossa\.info/ + to + https://$1ondarossa.info/ + + target + + + host + ondarossa.info + + + host + *.ondarossa.info + + + + + One Good Driver + + ruleset + + name + One Good Driver + rule + + from + ^https?://(?:www\.)?onegooddriver\.com/ + to + https://www.onegooddriver.com/ + + securecookie + + host + ^www\.onegooddriver\.com$ + name + .* + + target + + + host + onegooddriver.com + + + host + www.onegooddriver.com + + + + + One Green Planet.org + + ruleset + + name + One Green Planet.org + rule + + + from + ^http://(www\.)?onegreenplanet\.org/ + to + https://$1onegreenplanet.org/ + + + from + ^https?://cdn\.onegreenplanet\.org/ + to + https://www.onegreenplanet.org/ + + + securecookie + + host + ^\.onegreenplanet\.org$ + name + .+ + + target + + + host + onegreenplanet.org + + + host + *.onegreenplanet.org + + + + + One Health Talk.org (partial) + + ruleset + + name + One Health Talk.org (partial) + rule + + from + ^http://(www\.)?onehealthtalk\.org/(1/(?:assets|cache|css|includes|js)/|favicon\.ico|images/|_Incapsula_Resource(?:$|\?)|member(?:$|[?/])) + to + https://$1onehealthtalk.org/$2 + + target + + + host + onehealthtalk.org + + + host + www.onehealthtalk.org + + + + + One Man Can + + ruleset + + name + One Man Can + rule + + from + ^http://(www\.)?onemancan\.org/ + to + https://$1onemancan.org/ + + securecookie + + host + ^(?:\.?www\.)?\.onemancan\.org$ + name + .+ + + target + + + host + onemancan.org + + + host + *.onemancan.org + + + + + One in 3 Campaign + + ruleset + + name + One in 3 Campaign + rule + + from + ^http://(?:www\.)?1in3campaign\.org/ + to + https://onein3.wpengine.com/ + + target + + + host + 1in3campaign.org + + + host + www.1in3campaign.org + + + + + One-Tab.com + + ruleset + + name + One-Tab.com + rule + + from + ^http://(www\.)?one-tab\.com/ + to + https://$1one-tab.com/ + + securecookie + + host + ^\.one-tab\.com$ + name + .+ + + target + + + host + one-tab.com + + + host + *.one-tab.com + + + + + One2Buy (partial) + + ruleset + + name + One2Buy (partial) + rule + + from + ^http://(www\.)?one2buy\.com/(media|skin)/ + to + https://$1one2buy.com/$2/ + + target + + + host + one2buy.com + + + host + www.one2buy.com + + + + + OneCloudSecurity.com + + ruleset + + name + OneCloudSecurity.com + rule + + from + ^http://(www\.)?onecloudsecurity\.com/ + to + https://$1onecloudsecurity.com/ + + securecookie + + host + ^(?:w*\.)?onecloudsecurity\.com$ + name + .+ + + target + + + host + onecloudsecurity.com + + + host + *.onecloudsecurity.com + + + + + OneDrive.com + + ruleset + + name + OneDrive.com + rule + + from + ^http://(blog\.|www\.)?onedrive\.com/ + to + https://$1onedrive.com/ + + target + + + host + onedrive.com + + + host + *.onedrive.com + + + + + OneLogin.com + + ruleset + + name + OneLogin.com + platform + mixedcontent + rule + + + from + ^http://(?:(staging\.)?www\.)?onelogin\.com/ + to + https://$1www.onelogin.com/ + + + from + ^http://a(pp|ssets)\.onelogin\.com/ + to + https://a$1.onelogin.com/ + + + from + ^http://support\.onelogin\.com/ + to + https://onelogin.zendesk.com/ + + + securecookie + + host + ^(?:www)?\.onelogin\.com$ + name + .+ + + target + + + host + onelogin.com + + + host + *.onelogin.com + + + + + OneStat (partial) + + ruleset + + name + OneStat (partial) + rule + + from + ^http://stat\.onestat\.com/ + to + https://stat.onestat.com/ + + securecookie + + host + ^stat\.onestat\.com$ + name + .* + + target + + host + stat.onestat.com + + + + Onehub.com + + ruleset + + name + Onehub.com + rule + + from + ^http://(?:www\.)?onehub\.com/ + to + https://onehub.com/ + + target + + + host + onehub.com + + + host + www.onehub.com + + + + + Onepager (partial) + + ruleset + + name + Onepager (partial) + rule + + from + ^http://(www\.)?onepagerapp\.com/(assets/|errors/|signin(?:$|\?|/)) + to + https://$1onepagerapp.com/$2 + + target + + + host + onepagerapp.com + + + host + www.onepagerapp.com + + + + + OnionTip.com + + ruleset + + name + OnionTip.com + rule + + from + ^http://(www\.)?oniontip\.com/ + to + https://$1oniontip.com/ + + target + + + host + oniontip.com + + + host + www.oniontip.com + + + + + Onlime.ch + + ruleset + + name + Onlime.ch + platform + firefox + rule + + + from + ^http://my\.onlime\.ch/ + to + https://my.onlime.ch/ + + + from + ^http://webmail\.onlime\.ch/ + to + https://webmail.onlime.ch/ + + + from + ^http://crm\.onlime\.ch/ + to + https://crm.onlime.ch/ + + + securecookie + + + host + ^my\.onlime\.ch$ + name + .+ + + + host + ^webmail\.onlime\.ch$ + name + .+ + + + host + ^crm\.onlime\.ch$ + name + .+ + + + target + + + host + my.onlime.ch + + + host + webmail.onlime.ch + + + host + crm.onlime.ch + + + + + Online EMR + + ruleset + + name + Online EMR + rule + + from + ^http://(www\.)?online-emr\.com/ + to + https://$1online-emr.com/ + + securecookie + + host + ^\.online-emr\.com$ + name + .+ + + target + + + host + online-emr.com + + + host + *.online-emr.com + + + + + Online Register + + ruleset + + name + Online Register + rule + + from + ^https?://(?:www\.)?onlineregister.com/ + to + https://www.onlineregister.com/ + + securecookie + + host + ^www\.onlineregister\.com$ + name + .* + + target + + + host + onlineregister.com + + + host + www.onlineregister.com + + + + + Online Registration Center.com + + ruleset + + name + Online Registration Center.com + rule + + from + ^http://(?:www\.)?onlineregistrationcenter\.com/ + to + https://www.onlineregistrationcenter.com/ + + securecookie + + host + ^www\.onlineregistrationcenter\.com$ + name + .+ + + target + + + host + onlineregistrationcenter.com + + + host + www.onlineregistrationcenter.com + + + + + Online Threat Alerts.com + + ruleset + + name + Online Threat Alerts.com + rule + + from + ^http://(www\.)?onlinethreatalerts\.com/ + to + https://$1onlinethreatalerts.com/ + + target + + + host + onlinethreatalerts.com + + + host + www.onlinethreatalerts.com + + + + + Online Wellness Association + + ruleset + + name + Online Wellness Association + rule + + from + ^http://(www\.)?onlinewellnessassociation\.com/ + to + https://$1onlinewellnessassociation.com/ + + securecookie + + host + ^(?:w*\.)?onlinewellnessassociation\.com$ + name + .+ + + target + + + host + onlinewellnessassociation.com + + + host + *.onlinewellnessassociation.com + + + + + Online.nl + + ruleset + + name + Online.nl + rule + + + from + ^http://(?:www\.)?online\.nl/ + to + https://www.online.nl/ + + + from + ^http://registratie\.online\.nl/ + to + https://registratie.online.nl/ + + + target + + host + *.online.nl + + + + OnlineShoes.com + + ruleset + + name + OnlineShoes.com + rule + + + from + ^https?://(?:www\.)?onlineshoes\.com/ + to + https://www.onlineshoes.com/ + + + from + ^http://static\.onlineshoes\.com/ + to + https://static.onlineshoes.com/ + + + securecookie + + host + ^(?:static|www)\.onlineshoes\.com$ + name + .+ + + target + + + host + onlineshoes.com + + + host + *.onlineshoes.com + + + + + Ono + + ruleset + + name + Ono + rule + + from + ^http://(?:www\.)?ono\.es/ + to + https://www.ono.es/ + + securecookie + + host + ^www\.ono\.es$ + name + .+ + + target + + + host + ono.es + + + host + www.ono.es + + + + + Onsalesit.com + + ruleset + + name + Onsalesit.com + rule + + from + ^http://(www\.)?onsalesit\.com/ + to + https://$1onsalesit.com/ + + securecookie + + host + ^(?:www)?\.onsalesit\.com$ + name + .+ + + target + + + host + onsalesit.com + + + host + *.onsalesit.com + + + + + Onstream secure.com + + ruleset + + name + Onstream secure.com + rule + + from + ^http://([\w-]+)\.onstreamsecure\.com/ + to + https://$1.onstreamsecure.com/ + + target + + host + *.onstreamsecure.com + + + + Onswipe + + ruleset + + name + Onswipe + rule + + + from + ^http://static\.onswipe\.com/synapse/ + to + https://s3.amazonaws.com/cdn.onswipe.com/synapse/ + + + from + ^https?://(cdn|plug)\.onswipe\.com/ + to + https://s3.amazonaws.com/$1.onswipe.com/ + + + target + + host + *.onswipe.com + + + + Ontario Lung Association + + ruleset + + name + Ontario Lung Association + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?on\.lung\.ca/ + to + https://www.on.lung.ca/ + + + from + ^https://on\.lung\.ca/ + to + https://www.on.lung.ca/ + + + target + + + host + on.lung.ca + + + host + www.on.lung.ca + + + + + Ontario Minor Hockey Association + + ruleset + + name + Ontario Minor Hockey Association + rule + + from + ^http://(www\.)?omha\.net/ + to + https://$1omha.net/ + + securecookie + + host + ^(?:w*\.)?omha\.net$ + name + .+ + + target + + + host + omha.net + + + host + *.omha.net + + + + + Ontology.co + + ruleset + + name + Ontology.co + rule + + from + ^http://(www\.)?ontology\.co/ + to + https://$1ontology.co/ + + securecookie + + host + ^\.ontology\.co$ + name + .+ + + target + + + host + ontology.co + + + host + *.ontology.co + + + + + Ookla (partial) + + ruleset + + name + Ookla (partial) + rule + + + from + ^https?://(?:www\.)?ookla\.com/ + to + https://www.ookla.com/ + + + from + ^http://support\.ookla\.com/ + to + https://support.ookla.com/ + + + securecookie + + host + ^.*\.ookla\.com$ + name + .* + + target + + + host + ookla.com + + + host + *.ookla.com + + + + + Ooyala (partial) + + ruleset + + exclusion + + pattern + crossdomain\.xml$ + + name + Ooyala (partial) + rule + + + from + ^http://ooyala\.com/ + to + https://www.ooyala.com/ + + + from + ^http://(ak-c|backlot|cdn-api|extras|info|l|www)\.ooyala\.com/ + to + https://$1.ooyala.com/ + + + from + ^http://(?:ak\.)?c\.ooyala\.com/ + to + https://s3.amazonaws.com/c.ooyala.com/ + + + securecookie + + host + ^(?:.*\.)?ooyala\.com$ + name + .+ + + target + + + host + ooyala.com + + + host + *.ooyala.com + + + + + Opa (partial) + + ruleset + + name + Opa (partial) + rule + + from + ^http://(www\.)?opalang\.org/ + to + https://$1opalang.org/ + + securecookie + + host + ^(www.)?opalang\.org$ + name + .* + + target + + + host + opalang.org + + + host + www.opalang.org + + + + + Open Access Button.org + + ruleset + + name + Open Access Button.org + rule + + from + ^http://(www\.)?openaccessbutton\.org/ + to + https://$1openaccessbutton.org/ + + securecookie + + host + ^(?:www\.)?openaccessbutton\.org$ + name + .+ + + target + + + host + openaccessbutton.org + + + host + www.openaccessbutton.org + + + + + Open Badges + + ruleset + + name + Open Badges + rule + + from + ^http://(backpack\.|beta\.|www\.)?openbadges\.org/ + to + https://$1openbadges.org/ + + securecookie + + host + ^.+\.openbadges\.org$ + name + .+ + + target + + + host + openbadges.org + + + host + *.openbadges.org + + + + + Open Clipart Library + + ruleset + + name + Open Clipart Library + rule + + from + ^http://(www\.)?openclipart\.org/ + to + https://$1openclipart.org/ + + securecookie + + host + ^\.openclipart\.org$ + name + .+ + + target + + + host + openclipart.org + + + host + *.openclipart.org + + + + + Open Crypto Audit.org + + ruleset + + name + Open Crypto Audit.org + rule + + from + ^http://(www\.)?opencryptoaudit\.org/ + to + https://$1opencryptoaudit.org/ + + securecookie + + host + ^\.opencryptoaudit\.org$ + name + .+ + + target + + + host + opencryptoaudit.org + + + host + *.opencryptoaudit.org + + + + + Open Culture.com (partial) + + ruleset + + name + Open Culture.com (partial) + rule + + + from + ^http://cdn[2-5]?\.openculture\.com/ + to + https://d2dd5oq2irx77.cloudfront.net/ + + + from + ^http://cdn[6-9]\.openculture\.com/ + to + https://d1ayzv28eu3kt6.cloudfront.net/ + + + securecookie + + host + ^\.openculture\.com$ + name + __qca + + target + + host + *.openculture.com + + + + Open Directory + + ruleset + + name + Open Directory + rule + + from + ^http://(www\.)?odir\.org/ + to + https://$1odir.org/ + + securecookie + + host + ^\.odir\.org$ + name + .+ + + target + + + host + odir.org + + + host + *.odir.org + + + + + Open Doors.org (partial) + + ruleset + + name + Open Doors.org (partial) + rule + + from + ^http://(www\.)?opendoors\.org/(?=Assets/|countryprofiles/|css/|favicon\.ico|ImageHandler\.ashx|images/) + to + https://$1opendoors.org/ + + target + + + host + opendoors.org + + + host + www.opendoors.org + + + + + Open Farm Game + + ruleset + + name + Open Farm Game + rule + + from + ^http://(?:www\.)?openfarmgame\.com/ + to + https://openfarmgame.com/ + + securecookie + + host + ^openfarmgame\.com$ + name + .+ + + target + + + host + openfarmgame.com + + + host + www.openfarmgame.com + + + + + Open Hub.net (false MCB) + + ruleset + + name + Open Hub.net (false MCB) + platform + mixedcontent + rule + + from + ^http://blog\.openhub\.net/ + to + https://blog.openhub.net/ + + target + + host + blog.openhub.net + + + + Open Hub.net (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.openhub\.net/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Open Hub.net (partial) + rule + + from + ^http://((?:blog|code|www)\.)?openhub\.net/ + to + https://$1openhub.net/ + + securecookie + + host + ^(?:code\.|www\.)?openhub\.net$ + name + .+ + + target + + + host + openhub.net + + + host + *.openhub.net + + + + + Open InfoSec Foundation.org + + ruleset + + name + Open InfoSec Foundation.org + rule + + from + ^http://((?:lists|redmine|www)\.)?openinfosecfoundation\.org/ + to + https://$1openinfosecfoundation.org/ + + securecookie + + host + ^(?:redmine\.|www\.)?openinfosecfoundation\.org$ + name + .+ + + target + + + host + openinfosecfoundation.org + + + host + *.openinfosecfoundation.org + + + + + Open Library.org + + ruleset + + name + Open Library.org + rule + + from + ^http://(blog\.|www\.)?openlibrary\.org/ + to + https://$1openlibrary.org/ + + target + + + host + openlibrary.org + + + host + www.openlibrary.org + + + + + Open MPI + + ruleset + + name + Open MPI + rule + + from + ^http://(?:www\.)?open-mpi\.org/ + to + https://www.open-mpi.org/ + + target + + + host + open-mpi.org + + + host + www.open-mpi.org + + + + + Open Mesh + + ruleset + + name + Open Mesh + platform + cacert + rule + + from + ^https?://(?:www\.)?open-mesh\.org/ + to + https://www.open-mesh.org/ + + securecookie + + host + ^www\.open-mesh\.org$ + name + .+ + + target + + + host + open-mesh.org + + + host + www.open-mesh.org + + + + + Open Rights Group + + ruleset + + name + Open Rights Group + rule + + from + ^http://((?:bug|cardiff|lists|sheffield|wiki|www|zine)\.)?openrightsgroup\.org/ + to + https://$1openrightsgroup.org/ + + securecookie + + host + ^(?:wiki|www)?\.openrightsgroup\.org$ + name + .+ + + target + + + host + openrightsgroup.org + + + host + *.openrightsgroup.org + + + + + Open Source Education Center + + ruleset + + name + Open Source Education Center + rule + + from + ^http://(www\.)?osec\.pl/ + to + https://$1osec.pl/ + + securecookie + + host + ^\.osec\.pl$ + name + .* + + target + + + host + osec.pl + + + host + *.osec.pl + + + + + Open Virtualization Alliance.org + + ruleset + + name + Open Virtualization Alliance.org + rule + + from + ^http://(www\.)?openvirtualizationalliance\.org/ + to + https://$1openvirtualizationalliance.org/ + + target + + + host + openvirtualizationalliance.org + + + host + www.openvirtualizationalliance.org + + + + + Open Walls + + ruleset + + name + Open Walls + rule + + from + ^http://(www\.)?openwalls\.com/ + to + https://$1openwalls.com/ + + securecookie + + host + ^openwalls\.com$ + name + .+ + + target + + + host + openwalls.com + + + host + www.openwalls.com + + + + + Open Web.or.kr + + ruleset + + name + Open Web.or.kr + rule + + from + ^http://(www\.)?openweb\.or\.kr/ + to + https://$1openweb.or.kr/ + + securecookie + + host + ^(?:www\.)?openweb\.or\.kr$ + name + .+ + + target + + + host + openweb.or.kr + + + host + www.openweb.or.kr + + + + + Open Wireless Movement + + ruleset + + name + Open Wireless Movement + rule + + from + ^http://(srv1\.|www\.)?openwireless\.org/ + to + https://$1openwireless.org/ + + target + + + host + openwireless.org + + + host + *.openwireless.org + + + + + Open-Mesh + + ruleset + + name + Open-Mesh + rule + + + from + ^http://(www\.)?open-mesh\.com/ + to + https://$1open-mesh.com/ + + + from + ^http://dashboard\.open-mesh\.com/ + to + https://cloudtrax.com/ + + + securecookie + + host + ^\.www\.open-mesh\.com$ + name + .+ + + target + + + host + open-mesh.com + + + host + *.open-mesh.com + + + + + OpenAFS.org + + ruleset + + name + OpenAFS.org + rule + + from + ^http://((?:docs|lists|worshop|www)\.)?openafs\.org/ + to + https://$1openafs.org/ + + target + + + host + openafs.org + + + host + *.openafs.org + + + + + OpenAdultDirectory.com (partial) + + ruleset + + name + OpenAdultDirectory.com (partial) + rule + + from + ^http://(www\.)?openadultdirectory\.com/(banner-img/|favicon\.ico|oad_html/images/) + to + https://$1openadultdirectory.com/$2 + + target + + + host + openadultdirectory.com + + + host + www.openadultdirectory.com + + + + + OpenAthens (partial) + + ruleset + + name + OpenAthens (partial) + rule + + from + ^http://auth\.athensams\.net/ + to + https://auth.athensams.net/ + + target + + host + auth.athensams.net + + + + OpenBSD Europe + + ruleset + + name + OpenBSD Europe + rule + + from + ^http://(?:shop\.)?openbsdeurope\.com/ + to + https://shop.openbsdeurope.com/ + + target + + + host + openbsdeurope.com + + + host + shop.openbsdeurope.com + + + + + OpenBSD Store.com + + ruleset + + name + OpenBSD Store.com + rule + + from + ^http://(www\.)?openbsdstore\.com/ + to + https://$1openbsdstore.com/ + + securecookie + + host + ^\.openbsdstore\.com$ + name + .+ + + target + + + host + openbsdstore.com + + + host + *.openbsdstore.com + + + + + OpenBSD.org (partial) + + ruleset + + name + OpenBSD.org (partial) + rule + + from + ^http://https\.openbsd\.org/ + to + https://https.openbsd.org/ + + target + + host + https.openbsd.org + + + + OpenCSW.org (partial) + + ruleset + + name + OpenCSW.org (partial) + rule + + from + ^http://(lists\.|www\.)?opencsw\.org/ + to + https://$1opencsw.org/ + + target + + + host + opencsw.org + + + host + *.opencsw.org + + + + + OpenCalais (partial) + + ruleset + + name + OpenCalais (partial) + rule + + + from + ^http://(www\.)?opencalais\.org/(files|misc|sites|themes)/ + to + https://$1opencalais.org/$2/ + + + from + ^http://api\.opencalais\.org/ + to + https://api.opencalais.org/ + + + target + + + host + opencalais.org + + + host + *.opencalais.org + + + + + OpenDaylight + + ruleset + + name + OpenDaylight + rule + + from + ^http://(www\.)?opendaylight\.org/ + to + https://$1opendaylight.org/ + + target + + + host + opendaylight.org + + + host + www.opendaylight.org + + + + + OpenEZX.org (CAcert, partial) + + ruleset + + name + OpenEZX.org (CAcert, partial) + platform + cacert + rule + + from + ^http://svn\.openezx\.(com|net|org)/ + to + https://svn.openezx.org/ + + target + + + host + svn.openezx.com + + + host + svn.openezx.net + + + host + svn.openezx.org + + + + + OpenF2.org (partial) + + ruleset + + name + OpenF2.org (partial) + rule + + + from + ^http://www\.openf2\.com/ + to + https://www.openf2.org/ + + + from + ^http://developer\.openf2\.com/ + to + https://developer.openf2.com/ + + + from + ^http://((?:cdn|developer(?:\.[bl]tc)?|services|www)\.)?openf2\.org/ + to + https://$1openf2.org/ + + + securecookie + + + host + ^developer\.openf2\.com$ + name + .+ + + + host + ^(?:.*\.)?openf2\.org$ + name + .+ + + + target + + + host + *.openf2.com + + + host + openf2.org + + + host + *.openf2.org + + + + + OpenFabrics Alliance + + ruleset + + name + OpenFabrics Alliance + rule + + from + ^http://(www\.)?openfabrics\.org/ + to + https://$1openfabrice.org/ + + securecookie + + host + ^(www\.)?openfabrics\.org$ + name + .* + + target + + + host + openfabrics.org + + + host + www.openfabrics.org + + + + + OpenFoundry.org + + ruleset + + name + OpenFoundry.org + rule + + + from + ^http://openfoundry\.org/.* + to + https://www.openfoundry.org/ + + + from + ^http://www\.openfoundry\.org/ + to + https://www.openfoundry.org/ + + + securecookie + + host + ^www\.openfoundry\.org$ + name + .+ + + target + + + host + openfoundry.org + + + host + www.openfoundry.org + + + + + OpenGL + + ruleset + + name + OpenGL + rule + + from + ^http://(www\.)?opengl\.org/ + to + https://$1opengl.org/ + + securecookie + + host + ^www\.opengl\.org$ + name + .* + + target + + + host + opengl.org + + + host + www.opengl.org + + + + + OpenHatch.org (partial) + + ruleset + + name + OpenHatch.org (partial) + rule + + from + ^http://(www\.)?openhatch\.org/ + to + https://$1openhatch.org/ + + securecookie + + host + ^\.?openhatch\.org$ + name + .+ + + target + + + host + openhatch.org + + + host + *.openhatch.org + + + + + OpenID + + ruleset + + name + OpenID + platform + mixedcontent + rule + + from + ^http://(?:www\.)?openid\.net/ + to + https://openid.net/ + + securecookie + + host + ^openid\.net$ + name + .+ + + target + + + host + openid.net + + + host + www.openid.net + + + + + OpenIT + + ruleset + + name + OpenIT + rule + + from + ^https?://(?:www\.)?openit\.de/ + to + https://www.openit.de/ + + securecookie + + host + ^www\.openit\.de$ + name + .+ + + target + + + host + openit.de + + + host + www.openit.de + + + + + OpenITP.org + + ruleset + + name + OpenITP.org + rule + + from + ^http://((?:docs|projects|tracker|wiki|www)\.)?openitp\.org/ + to + https://$1openitp.org/ + + securecookie + + host + ^(?:.+\.)?openitp\.org$ + name + .+ + + target + + + host + openitp.org + + + host + *.openitp.org + + + + + OpenLeaks + + ruleset + + name + OpenLeaks + rule + + from + ^http://(www\.)?openleaks\.org/ + to + https://$1openleaks.org/ + + target + + + host + openleaks.org + + + host + www.openleaks.org + + + + + OpenLinksys.info + + ruleset + + name + OpenLinksys.info + rule + + from + ^http://(www\.)?openlinksys\.info/ + to + https://$1openlinksys.info/ + + target + + + host + openlinksys.info + + + host + www.openlinksys.info + + + + + OpenMRS + + ruleset + + name + OpenMRS + rule + + from + ^https?://(?:www\.)?openmrs\.org/ + to + https://openmrs.org/ + + securecookie + + host + ^openmrs\.org$ + name + .+ + + target + + + host + openmrs.org + + + host + www.openmrs.org + + + + + OpenMW + + ruleset + + name + OpenMW + rule + + from + ^http://((?:bugs|forum|wiki|www)\.)?openmw\.org/ + to + https://$1openmw.org/ + + securecookie + + host + ^(?:.*\.)?openmw\.org$ + name + .+ + + target + + + host + openmw.org + + + host + *.openmw.org + + + + + OpenMailBox.org + + ruleset + + name + OpenMailBox.org + rule + + from + ^http://(www\.)?openmailbox\.org/ + to + https://$1openmailbox.org/ + + securecookie + + host + ^www\.openmailbox\.org$ + name + .+ + + target + + + host + openmailbox.org + + + host + www.openmailbox.org + + + + + OpenMandriva + + ruleset + + name + OpenMandriva + platform + cacert + rule + + from + ^http://((?:blog|doc|forums|ftp|garnet|issues|wiki|www)\.)?openmandriva\.org/ + to + https://$1openmandriva.org/ + + securecookie + + host + ^(?:\.?blog|doc|\.ftp|issues|\.?wiki|\.www)?\.openmandriva\.org$ + name + .+ + + target + + + host + openmandriva.org + + + host + *.openmandriva.org + + + + + OpenMedia.ca (partial) + + ruleset + + name + OpenMedia.ca (partial) + rule + + from + ^http://(?:www\.)?openmedia\.ca/(donate(?:$|[?/])|favicon\.ico|sites/) + to + https://openmedia.ca/$1 + + target + + + host + openmedia.ca + + + host + www.openmedia.ca + + + + + OpenMedia.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?openmedia\.org/(?!donate(?:$|[?/])|sites/|tppconsole/) + + name + OpenMedia.org (partial) + rule + + from + ^http://(?:www\.)?openmedia(\.org|now\.net)/ + to + https://openmedia$1/ + + target + + + host + openmedia.org + + + host + www.openmedia.org + + + host + openmedianow.net + + + host + www.openmedianow.net + + + + + OpenNet.net (partial) + + ruleset + + name + OpenNet.net (partial) + rule + + from + ^http://(www\.)?opennet\.net/ + to + https://$1opennet.net/ + + securecookie + + host + ^\.opennet\.net$ + name + .+ + + target + + + host + opennet.net + + + host + *.opennet.net + + + + + OpenNews.org (partial) + + ruleset + + name + OpenNews.org (partial) + rule + + from + ^http://source\.opennews\.org/ + to + https://source.opennews.org/ + + target + + host + source.opennews.org + + + + OpenRCE + + ruleset + + name + OpenRCE + rule + + from + ^http://(www\.)?openrce\.org/ + to + https://$1openrce.org/ + + securecookie + + host + ^www\.openrce\.org$ + name + .+ + + target + + + host + openrce.org + + + host + www.openrce.org + + + + + OpenSC Project + + ruleset + + name + OpenSC Project + rule + + from + ^http://(www\.)?opensc-project\.org/ + to + https://$1opensc-project.org/ + + securecookie + + host + ^(?:www\.)?opensc-project\.org$ + name + .+ + + target + + + host + opensc-project.org + + + host + www.opensc-project.org + + + + + OpenSRS.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.opensrs\.com/blog[\w/-]*/$ + + name + OpenSRS.com (partial) + rule + + + from + ^http://(?:(signup\.)|www\.)?opensrs\.(?:com|net)/ + to + https://$1opensrs.com/ + + + from + ^http://rr-n1-tor\.opensrs\.net/ + to + https://rr-n1-tor.opensrs.net/ + + + securecookie + + host + ^(?:signup\.)?opensrs\.com$ + name + .+ + + target + + + host + opensrs.com + + + host + *.opensrs.com + + + host + opensrs.net + + + host + *.opensrs.net + + + + + OpenSSL (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?openssl\.org/(?:news/changelog|support/faq)\.html$ + + name + OpenSSL (partial) + rule + + from + ^http://((?:cvs|git|rt|www)\.)?openssl\.org/ + to + https://$1openssl.org/ + + securecookie + + host + ^rt\.openssl\.org$ + name + .+ + + target + + + host + openssl.org + + + host + *.openssl.org + + + + + OpenSVC (partial) + + ruleset + + name + OpenSVC (partial) + rule + + + from + ^https?://(?:www\.)?opensvc\.com/ + to + https://www.opensvc.com/ + + + from + ^http://(collector|docs|lists)\.opensvc\.com/ + to + https://$1.opensvc.com/ + + + securecookie + + host + ^\w+\.opensvc\.com$ + name + .* + + target + + + host + opensvc.com + + + host + *.opensvc.com + + + + + OpenShift + + ruleset + + name + OpenShift + rule + + from + ^http://(www\.)?openshift\.com/ + to + https://$1openshift.com/ + + securecookie + + host + ^\.openshift\.com$ + name + .+ + + target + + + host + openshift.com + + + host + *.openshift.com + + + + + OpenStack (partial) + + ruleset + + name + OpenStack (partial) + rule + + from + ^http://((?:ask|review|wiki|www)\.)?openstack\.org/ + to + https://$1openstack.org/ + + securecookie + + host + ^(?:(?:ask|wiki|www)\.)?openstack\.org$ + name + .+ + + target + + + host + openstack.org + + + host + *.openstack.org + + + + + OpenStat.net + + ruleset + + name + OpenStat.net + rule + + from + ^http://openstat\.net/ + to + https://openstat.net/ + + securecookie + + host + ^\.openstat\.net$ + name + .+ + + target + + host + *.openstat.net + + + + OpenStat.ru (partial) + + ruleset + + name + OpenStat.ru (partial) + rule + + from + ^http://(?:www\.)?openstat\.ru/ + to + https://www.openstat.ru/ + + securecookie + + host + ^\.openstat\.ru$ + name + .+ + + target + + + host + openstat.ru + + + host + *.openstat.ru + + + + + OpenStreetMap + + ruleset + + name + OpenStreetMap + rule + + + from + ^http://(?:www\.)?openstreetmap\.org/ + to + https://www.openstreetmap.org/ + + + from + ^http://tile\.openstreetmap\.org/ + to + https://a.tile.openstreetmap.org/ + + + from + ^http://(blog|help|lists|nominatim|piwik|taginfo|[abc]\.tile|trac|wiki)\.openstreetmap\.org/ + to + https://$1.openstreetmap.org/ + + + target + + + host + openstreetmap.org + + + host + *.openstreetmap.org + + + + + OpenTTD (partial) + + ruleset + + exclusion + + pattern + ^http://(devs|media)\.openttd\.org/ + + name + OpenTTD (partial) + platform + mixedcontent + rule + + + from + ^http://(\w+\.)?openttd\.org/ + to + https://$1openttd.org/ + + + from + ^http://((?:blog|dev|paste|www)\.)?openttdcoop\.org/ + to + https://$1openttdcoop.org/ + + + securecookie + + + host + ^secure\.openttd\.org$ + name + .* + + + host + ^(.*\.)?openttdcoop\.org$ + name + .* + + + target + + + host + openttd.org + + + host + *.openttd.org + + + host + openttdcoop.org + + + host + blog.openttdcoop.org + + + host + dev.openttdcoop.org + + + host + paste.openttdcoop.org + + + host + www.openttdcoop.org + + + + + OpenTechFund + + ruleset + + name + OpenTechFund + rule + + + from + ^http://(?:www\.)?opentechfund\.com/ + to + https://www.opentechfund.org/ + + + from + ^http://(www\.)?opentechfund\.org/ + to + https://$1opentechfund.org/ + + + securecookie + + host + ^\.opentechfund\.org$ + name + .+ + + target + + + host + opentechfund.com + + + host + www.opentechfund.com + + + host + opentechfund.org + + + host + *.opentechfund.org + + + + + OpenText (partial) + + ruleset + + exclusion + + pattern + ^http://mimage\.opentext\.com/alt_content/binary/ot/newmedia/ot_html5/ot_slider/(?:ot_banner_system/default/rs-default|preview-assets/css/smoothness/jquery-ui-1\.8\.22\.custom)\.css + + name + OpenText (partial) + rule + + + from + ^http://(communities\.|www\.)?opentext\.com/ + to + https://$1opentext.com/ + + + from + ^http://mimage\.opentext\.com/ + to + https://a248.e.akamai.net/f/248/9057/1d/mimage.opentext.com/ + + + securecookie + + host + ^www\.opentext\.com$ + name + .+ + + target + + + host + opentext.com + + + host + *.opentext.com + + + + + OpenUserJS.org + + ruleset + + name + OpenUserJS.org + rule + + from + ^http://(?:www\.)?openuserjs\.org/ + to + https://openuserjs.org/ + + securecookie + + host + ^openuserjs\.org$ + name + .+ + + target + + + host + openuserjs.org + + + host + www.openuserjs.org + + + + + OpenVAS.org (partial) + + ruleset + + name + OpenVAS.org (partial) + rule + + from + ^http://wiki\.openvas\.org/ + to + https://wiki.openvas.org/ + + target + + host + wiki.openvas.org + + + + OpenVPN + + ruleset + + name + OpenVPN + rule + + from + ^http://((?:community|forums|www)\.)?openvpn\.net/ + to + https://$1openvpn.net/ + + securecookie + + host + ^(?:community\.|w*\.)?openvpn\.net$ + name + .* + + target + + + host + openvpn.net + + + host + *.openvpn.net + + + + + OpenVZ.org (false MCB) + + ruleset + + name + OpenVZ.org (false MCB) + platform + mixedcontent + rule + + from + ^http://forum\.openvz\.org/ + to + https://forum.openvz.org/ + + securecookie + + host + ^\.forum\.openvz\.org$ + name + .+ + + target + + + host + forum.openvz.org + + + host + *.forum.openvz.org + + + + + OpenVZ.org (partial) + + ruleset + + exclusion + + + pattern + ^http://forum\.openvz\.org/+(?!favicon\.ico|js/|theme/) + + + pattern + ^http://static\.openvz\.org/+(?:$|\?|supported_by_parallels_88x31\.gif) + + + name + OpenVZ.org (partial) + rule + + from + ^http://((?:bugzilla|forum|static|wiki|www)\.)?openvz\.org/ + to + https://$1openvz.org/ + + securecookie + + host + ^(?:bugzilla\.|www\.)?openvz\.org$ + name + .+ + + target + + + host + openvz.org + + + host + *.openvz.org + + + + + OpenWRT (partial) + + ruleset + + name + OpenWRT (partial) + rule + + + from + ^http://openwrt\.org/ + to + https://openwrt.org/ + + + from + ^http://(dev|downloads|forum|lists|www)\.openwrt\.org/ + to + https://$1.openwrt.org/ + + + from + ^https?://wiki\.openwrt\.org/lib/tpl/ameoto/images/(bg(?:-2)?|footer|openwrt-logo)\.png$ + to + https://openwrt.org/.styles/img/$1.png + + + securecookie + + host + ^(?:.*\.)?openwrt\.org$ + name + .* + + target + + + host + openwrt.org + + + host + *.openwrt.org + + + + + OpenWatch.nl + + ruleset + + name + OpenWatch.nl + rule + + from + ^http://(www\.)?openwatch\.nl/ + to + https://$1openwatch.nl/ + + target + + + host + openwatch.nl + + + host + www.openwatch.nl + + + + + OpenX (partial) + + ruleset + + exclusion + + pattern + ^http://(?:edit-)?blog\.openx\.org/(?!wp-content/) + + name + OpenX (partial) + rule + + + from + ^http://(?:www\.)?fhserve\.com/ + to + https://www.fhserve.com/ + + + from + ^http://(ac|ssl-i\.cdn|lift|pc|sso|d\.tradex|uk-ac|ssl-i\.xx)\.openx\.com/ + to + https://$1.openx.com/ + + + from + ^http://i-cdn\.(?:servedby)?openx\.com/ + to + https://i-cdn.openx.com/ + + + from + ^http://(bid|[ru]|us-ads)\.openx\.net/ + to + https://$1.openx.net/ + + + from + ^http://(?:www\.)?(?:openx\.org|servedbyopenx\.com)/ + to + https://www.openx.org/ + + + from + ^http://(adserver|d1|developer|svn)\.openx\.org/ + to + https://$1.openx.org/ + + + from + ^http://(?:edit-)?blog\.openx\.org/ + to + https://a248.e.akamai.net/=/1051/7326/7m/blog.openx.org/ + + + from + ^http://(\w+)-d\.openxenterprise\.com/ + to + https://$1-d.openxenterprise.com/ + + + securecookie + + + host + ^(?:ac|i-cdn|lift|sso|d\.tradex|uk-ac)?\.openx\.com$ + name + .+ + + + host + ^(?:us-ads)?\.openx\.net$ + name + .+ + + + host + ^(?:adserver|d1|developer)\.openx\.org$ + name + .+ + + + host + ^\w+-d\.openxenterprise\.com$ + name + .+ + + + target + + + host + openx.com + + + host + *.openx.com + + + host + *.openx.net + + + host + *.openx.org + + + host + *.openxenterprise.com + + + host + servedbyopenx.com + + + host + *.servedbyopenx.com + + + + + Openbaar Ministerie (partial) + + ruleset + + name + Openbaar Ministerie (partial) + rule + + from + ^http://(www\.)?om\.nl/(\?xdl=|publish|views)/ + to + https://$1om.nl/$2/ + + target + + + host + om.nl + + + host + www.om.nl + + + + + OpenfMRI + + ruleset + + name + OpenfMRI + rule + + from + ^http://(www\.)?openfmri\.org/ + to + https://$1openfmri.org/ + + target + + + host + openfmri.org + + + host + www.openfmri.org + + + + + Opengarden.com (partial) + + ruleset + + name + Opengarden.com (partial) + rule + + from + ^http://(www\.)?opengarden\.com/ + to + https://opengarden.com/ + + target + + + host + opengarden.com + + + host + www.opengarden.com + + + + + Openhost + + ruleset + + name + Openhost + rule + + + from + ^http://(?:www\.)?mycp\.co\.nz/ + to + https://hspc.openhost.net.nz/sign_in.php + + + from + ^http://(www\.)?openhost\.(?:co|net)\.nz/ + to + https://$1openhost.net.nz/ + + + from + ^http://support\.webhost\.co\.nz/ + to + https://support.webhost.co.nz/ + + + from + ^http://(hspc|store)\.openhost\.net\.nz/ + to + https://$1.openhost.net.nz/ + + + securecookie + + + host + ^hspc\.openhost\.net\.nz$ + name + .* + + + host + ^support\.openhost\.co\.nz$ + name + .* + + + host + ^store\.openhost\.net\.nz$ + name + .* + + + target + + + host + mycp.co.nz + + + host + www.mycp.co.nz + + + host + openhost.co.nz + + + host + *.openhost.co.nz + + + host + openhost.net.nz + + + host + *.openhost.net.nz + + + + + Openprinting + + ruleset + + name + Openprinting + rule + + from + ^http://(www\.)?openprinting\.org/ + to + https://www.openprinting.org/ + + target + + + host + www.openprinting.org + + + host + openprinting.org + + + + + Openswan + + ruleset + + name + Openswan + rule + + + from + ^http://(?:www\.)?openswan\.org/ + to + https://www.openswan.org/ + + + from + ^http://(downloads|lists)\.openswan\.org/ + to + https://$1.openswan.org/ + + + securecookie + + host + ^www\.openswan\.org$ + name + .+ + + target + + + host + openswan.org + + + host + *.openswan.org + + + + + Operating Systems.io + + ruleset + + name + Operating Systems.io + rule + + from + ^http://(www\.)?operatingsystems\.io/ + to + https://$1operatingsystems.io/ + + securecookie + + host + ^\.operatingsystems\.io$ + name + .+ + + target + + + host + operatingsystems.io + + + host + *.operatingsystems.io + + + + + Operation Fabulous + + ruleset + + name + Operation Fabulous + rule + + from + ^http://(www\.)?operationfabulous\.com/ + to + https://$1operationfabulous.com/ + + target + + + host + operationfabulous.com + + + host + www.operationfabulous.com + + + + + OpinionLab (partial) + + ruleset + + name + OpinionLab (partial) + rule + + from + ^http://(oo|secure)\.opinionlab\.com/ + to + https://$1.opinionlab.com/ + + securecookie + + host + ^.*\.opinionlab\.com$ + name + .* + + target + + host + *.opinionlab.com + + + + Opinionmeter (partial) + + ruleset + + name + Opinionmeter (partial) + rule + + + from + ^http://opinionmeter\.com/(cdn-cgi|wp-content)/ + to + https://opinionmeter.com/$1/ + + + from + ^http://www\.opinionmeter\.com/OVM2($|\?|/) + to + https://www.opinionmeter.com/OVM2$1 + + + target + + + host + opinionmeter.com + + + host + www.opinionmeter.com + + + + + Opintoluotsi + + ruleset + + name + Opintoluotsi + rule + + from + ^http://(www\.)?opintoluotsi\.fi/ + to + https://$1opintoluotsi.fi/ + + securecookie + + host + ^(?:www\.)?opintoluotsi\.fi$ + name + .+ + + target + + + host + opintoluotsi.fi + + + host + www.opintoluotsi.fi + + + + + Oplata.info + + ruleset + + name + Oplata.info + rule + + from + ^http://(?:www\.)?oplata\.info/ + to + https://www.oplata.info/ + + securecookie + + host + ^www\.oplata\.info$ + name + .+ + + target + + + host + oplata.info + + + host + www.oplata.info + + + + + Oppelt.com + + ruleset + + name + Oppelt.com + rule + + from + ^http://(piwik\.|www\.)?oppelt\.com/ + to + https://$1oppelt.com/ + + securecookie + + host + ^piwik\.oppelt\.com$ + name + .+ + + target + + + host + oppelt.com + + + host + *.oppelt.com + + + + + Oppo.com (partial) + + ruleset + + name + Oppo.com (partial) + rule + + + from + ^http://(?:www\.)?oppo\.com/+$ + to + https://en.oppo.com/ + + + from + ^http://(account|en)\.oppo\.com/ + to + https://$1.oppo.com/ + + + securecookie + + host + ^en\.oppo\.com$ + name + .+ + + target + + + host + oppo.com + + + host + *.oppo.com + + + + + Opscode.com (partial) + + ruleset + + name + Opscode.com (partial) + rule + + from + ^http://((?:manage|learnchef|tickets|wiki|www)\.)?opscode\.com/ + to + https://$1opscode.com/ + + target + + + host + opscode.com + + + host + *.opscode.com + + + + + Opsmate + + ruleset + + name + Opsmate + rule + + + from + ^http://opsmate\.com/ + to + https://opsmate.com/ + + + from + ^http://www\.opsmate\.com/ + to + https://www.opsmate.com/ + + + target + + + host + opsmate.com + + + host + www.opsmate.com + + + + + OptMD.com (partial) + + ruleset + + name + OptMD.com (partial) + rule + + from + ^http://cdn-sec\.optmd\.com/ + to + https://cdn-sec.optmd.com/ + + target + + host + cdn-sec.optmd.com + + + + OptOutPrescreen.com + + ruleset + + name + OptOutPrescreen.com + rule + + from + ^(http://(www\.)?|https://)optoutprescreen\.com/ + to + https://www.optoutprescreen.com/ + + securecookie + + host + ^www\.optoutprescreen\.com$ + name + .+ + + target + + + host + optoutprescreen.com + + + host + www.optoutprescreen.com + + + + + Optical Society of America (partial) + + ruleset + + exclusion + + pattern + ^http://www\.osa\.org/(?:en-us|video_library)/ + + name + Optical Society of America (partial) + rule + + + from + ^http://o(pticsinfobase|sa)\.org/ + to + https://www.o$1.org/ + + + from + ^http://www\.opticsinfobase\.org/ + to + https://www.opticsinfobase.org/ + + + from + ^http://(account|eweb2|www)\.osa\.org/ + to + https://$1.osa.org/ + + + securecookie + + + host + ^www\.opticsinfobase\.org$ + name + .* + + + host + ^.*\.osa\.org$ + name + .* + + + target + + + host + opticsinfobase.org + + + host + www.opticsinfobase.org + + + host + osa.org + + + host + *.osa.org + + + + + Optify + + ruleset + + name + Optify + rule + + from + ^http://(dashboard\.|service\.|www\.)?optify\.net/ + to + https://$1optify.net/ + + securecookie + + host + ^service\.optify\.net$ + name + .+ + + target + + + host + optify.net + + + host + *.optify.net + + + + + Optimal Payments (partial) + + ruleset + + name + Optimal Payments (partial) + platform + mixedcontent + rule + + + from + ^http://(help\.|member\.|merchant\.|www\.)?neteller\.com/ + to + https://$1neteller.com/ + + + from + ^http://(?:(www\.)?neteller-group|optimalpayments)\.com/ + to + https://www.optimalpayments.com/ + + + from + ^http://www\.optimalpayments\.com/wp-content/ + to + https://www.optimalpayments.com/wp-content/ + + + securecookie + + host + ^(.*\.)?neteller\.com$ + name + .* + + target + + + host + neteller.com + + + host + *.neteller.com + + + host + neteller-group.com + + + host + www.neteller-group.com + + + host + optimalpayments.com + + + host + www.optimalpayments.com + + + + + Optimizely + + ruleset + + name + Optimizely + rule + + + from + ^http://optimizely\.com/ + to + https://www.optimizely.com/ + + + from + ^http://(cdn\d?|\d+\.log|log3|www)\.optimizely\.com/ + to + https://$1.optimizely.com/ + + + from + ^http://support\.optimizely\.com/(help|pkg|stylesheets)/ + to + https://asset-2.tenderapp.com/$1/ + + + securecookie + + host + ^(.*\.)?optimizely\.com$ + name + .* + + target + + + host + optimizely.com + + + host + *.optimizely.com + + + + + Optimost (partial) + + ruleset + + name + Optimost (partial) + rule + + from + ^https?://(?:es|by\.essl)\.optimost\.com/ + to + https://by.essl.optimost.com/ + + target + + host + *.optimost.com + + + + OptionBit + + ruleset + + name + OptionBit + rule + + from + ^http://(www\.)?optionbit\.com/ + to + https://$1optionbit.com/ + + securecookie + + host + ^(?:w*\.)?optionbit\.com$ + name + .+ + + target + + + host + optionbit.com + + + host + *.optionbit.com + + + + + OptionsAnimal.com + + ruleset + + name + OptionsAnimal.com + rule + + + from + ^http://optionsanimal\.com/ + to + https://optionsanimal.com/ + + + from + ^http://(?:fast|www)\.optionsanimal\.com/ + to + https://www.optionsanimal.com/ + + + securecookie + + host + ^\.optionsanimal\.com$ + name + .+ + + target + + + host + optionsanimal.com + + + host + *.optionsanimal.com + + + + + Oracle (partial) + + ruleset + + exclusion + + pattern + ^http://www\.oracle(?:img)?\.com/(?!(?:\w+/)?assets/|\w+/[^/]+\.(?:css|gif|jpg|js|png)$|javaone(?:$|[?/])) + + name + Oracle (partial) + rule + + + from + ^http://(?:www\.)?oracle(img)?\.com/us/(?=[^/]+\.(?:css|gif|jpg|js|png)$) + to + https://www.oracle$1.com/us/assets/ + + + from + ^https?://(?:www\.)?oracle(img)?\.com/ + to + https://www.oracle$1.com/ + + + from + ^http://(i?academy|acsportal|advancedsupport|amr|amr-stage|apex|apexea|asktom|blogs(?:-stage)?|campus|cloud|\w+\.(?:em1|us0|us1)\.cloud|communities|competencycentre|conference|digitalmedia|dne|edelivery(?:-hqdc-test)?|education(?:-stage)?|emeajobs|emeapressoffice|etrm|(?:cn\.|kr\.)?forums(?:-stage)?|(?:bi-|crm-|fin-|[hs]cm-|ic-|pr[cj]-)?fusioncrm|fusionhelp(?:-stage)?|gcmprm|hs-ws1|ilearning(?:content)?|irecruitment|itsp|itsp-stage|linux|login(?:-stage)?|medianetwork|my?|myprofile(?:-mktas)?|oai|oss|otn|partners|plmap|public-yum|search|shop|solutions|stbeehive|strtc|suppliers|support(?:html)?|updates|wfs|wikis(?:-stage)?|workforce|www(?:-portal)?-stage)\.oracle\.com/ + to + https://$1.oracle.com/ + + + from + ^http://crmondemand\.oracle\.com/ + to + https://www.oracle.com/us/products/applications/crmondemand/index.html + + + from + ^http://docs\.oracle\.com/(?=favicon\.ico|.+/(?:cs|graphic)s/) + to + https://a248.e.akamai.net/f/1049/1606/6m/docs.oracle.com/ + + + from + ^http://(bi|crm|fin|fs|[hs]cm|ic|pr[cj])-(\w+)\.oracleoutsourcing\.com/ + to + https://$1-$2.oracleoutsourcing.com/ + + + securecookie + + + host + ^(?:\w+|\.edelivery)\.oracle\.com$ + name + .+ + + + host + ^\.oracle\.com$ + name + ^(?:Order_Marketing(?:CampaignSuccess|Trigger)|gpw_e24|s_(?:cc|nr|sq))$ + + + target + + + host + oracle.com + + + host + *.oracle.com + + + host + oracleimg.com + + + host + www.oracleimg.com + + + host + *.oracleoutsourcing.com + + + + + Orange + + ruleset + + name + Orange + rule + + + from + ^http://(?:www\.)?orange\.co\.il/ + to + https://www.orange.co.il/ + + + from + ^http://(kareena|services|shop|wassup|web)\.orange\.co\.uk/ + to + https://$1.orange.co.uk/ + + + from + ^http://(?:www\.)?orange\.ch/ + to + https://www.orange.ch/ + + + from + ^http://(apps|community|mobilesettings|my|rbt|shop)\.orange\.ch/ + to + https://$1.orange.ch/ + + + securecookie + + host + ^(kareena|shop)\.orange\.co\.uk$ + name + .* + + target + + + host + orange.co.il + + + host + www.orange.co.il + + + host + *.orange.co.uk + + + host + orange.ch + + + host + *.orange.ch + + + + + Orange Geek + + ruleset + + name + Orange Geek + rule + + from + ^http://(www\.)?orangegeek\.com/ + to + https://$1orangegeek.com/ + + securecookie + + host + ^\.orangegeek\.com$ + name + .+ + + target + + + host + orangegeek.com + + + host + *.orangegeek.com + + + + + Orange.Jobs (false MCB) + + ruleset + + name + Orange.Jobs (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?orange\.jobs/ + to + https://orange.jobs/ + + target + + + host + orange.jobs + + + host + www.orange.jobs + + + + + Orange.Jobs (partial) + + ruleset + + exclusion + + pattern + http://(?:www\.)?orange\.jobs/+(?!css/|favicon\.ico|images/|media/) + + name + Orange.Jobs (partial) + rule + + from + ^http://(?:(jobsmap\.)|www\.)?orange\.jobs/ + to + https://$1orange.jobs/ + + target + + + host + orange.jobs + + + host + *.orange.jobs + + + + + Orange.sk + + ruleset + + name + Orange.sk + rule + + from + ^http://(www\.)?orange\.sk/ + to + https://www.orange.sk/ + + target + + + host + orange.sk + + + host + www.orange.sk + + + + + OrangeWebsite.com (partial) + + ruleset + + name + OrangeWebsite.com (partial) + rule + + from + ^http://(jolnir|secure)\.orangewebsite\.com/ + to + https://$1.orangewebsite.com/ + + securecookie + + host + ^secure\.orangewebsite\.com$ + name + .+ + + target + + host + *.orangewebsite.com + + + + OrangeandWhite.com + + ruleset + + name + OrangeandWhite.com + rule + + + from + ^http://(?:www\.)?orangeandwhite\.com/ + to + https://www.orangeandwhite.com/ + + + from + ^http://media\.orangeandwhite\.com/ + to + https://a248.e.akamai.net/f/1017/7389/3m/media.orangeandwhite.com/ + + + target + + + host + orangeandwhite.com + + + host + *.orangeandwhite.com + + + + + Orbital Sciences + + ruleset + + name + Orbital Sciences + rule + + from + ^http://(www\.)?orbital\.com/ + to + https://$1orbital.com/ + + securecookie + + host + ^(?:www\.)?orbital\.com$ + name + .+ + + target + + + host + orbital.com + + + host + www.orbital.com + + + + + Orchid Diva + + ruleset + + name + Orchid Diva + rule + + from + ^http://(www\.)?orchiddiva\.com/ + to + https://$1orchiddiva.com/ + + securecookie + + host + ^\.(?:www\.)?orchiddiva\.com$ + name + .+ + + target + + + host + orchiddiva.com + + + host + *.orchiddiva.com + + + + + Ordbogen.com + + ruleset + + name + Ordbogen.com + rule + + from + ^http://(www\.)?ordbogen\.com/ + to + https://www.ordbogen.com/ + + target + + + host + ordbogen.com + + + host + www.ordbogen.com + + + + + Ordnance Survey + + ruleset + + name + Ordnance Survey + rule + + + from + ^https?://ordnancesurvey\.co\.uk/ + to + https://www.ordnancesurvey.co.uk/ + + + from + ^http://([^/:@]+)?\.ordnancesurvey\.co\.uk/ + to + https://$1.ordnancesurvey.co.uk/ + + + target + + + host + ordnancesurvey.co.uk + + + host + *.ordnancesurvey.co.uk + + + + + Oregon Live.com (partial) + + ruleset + + exclusion + + pattern + ^http://businessfinder\.oregonlive\.com/+(?!favicon.ico) + + name + Oregon Live.com (partial) + rule + + + from + ^http://(businessfind|memb)er\.oregonlive\.com/ + to + https://$1er.oregonlive.com/ + + + from + ^http://findnsave\.oregonlive\.com/(?=(?:join|login)(?:$|[?/])|static/) + to + https://oregonlive.findnsave.com/ + + + from + ^http://media\.oregonlive\.com/(?!.+\.css(?:$|\?)) + to + https://a248.e.akamai.net/f/68/1435/8/media.oregonlive.com/ + + + securecookie + + host + ^member\.oregonlive\.com$ + name + .+ + + target + + host + *.oregonlive.com + + + + Oregon State University (partial) + + ruleset + + name + Oregon State University (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?oregonstate\.edu/(favicon\.ico$|u_central/images/) + to + https://secure.oregonstate.edu/$1 + + + from + ^http://(drupalweb\.forestry|osulibrary|secure)\.oregonstate\.edu/ + to + https://$1.oregonstate.edu/ + + + from + ^http://(?:www\.)?osufoundation\.org/ + to + https://osufoundation.org/ + + + from + ^http://(www\.)?osuosl\.org/ + to + https://$1osuosl.org/ + + + securecookie + + host + ^\.osuosl\.org$ + name + .* + + target + + + host + oregonstate.edu + + + host + *.oregonstate.edu + + + host + osufoundation.org + + + host + www.osufoundation.org + + + host + osuosl.org + + + host + *.osuosl.org + + + + + Orez Praw.com + + ruleset + + name + Orez Praw.com + platform + cacert + rule + + from + ^http://(?:www\.)?orezpraw\.com/ + to + https://orezpraw.com/ + + target + + + host + orezpraw.com + + + host + www.orezpraw.com + + + + + Organization of American States + + ruleset + + name + Organization of American States + rule + + from + ^http://(?:www\.)?(cidh\.)?oas\.org/ + to + https://www.$1oas.org/ + + securecookie + + host + ^www\.(?:cidh\.)?oas\.org$ + name + .+ + + target + + + host + oas.org + + + host + *.oas.org + + + + + Orgreen Optics.com + + ruleset + + name + Orgreen Optics.com + rule + + from + ^http://(?:www\.)?orgreenoptics\.com/ + to + https://orgreenoptics.com/ + + target + + + host + orgreenoptics.com + + + host + www.orgreenoptics.com + + + + + Orion + + ruleset + + name + Orion + rule + + from + ^http://(?:www\.)?orionhub\.org/ + to + https://orionhub.org/ + + target + + + host + orionhub.org + + + host + www.orionhub.org + + + + + Orion Systems Integrators + + ruleset + + name + Orion Systems Integrators + rule + + from + ^http://(time\.|www\.)?orioninc\.com/ + to + https://$1orioninc.com/ + + securecookie + + host + ^(?:time)?\.orioninc\.com$ + name + .+ + + target + + + host + orioninc.com + + + host + *.orioninc.com + + + + + Orkut (partial) + + ruleset + + name + Orkut (partial) + rule + + + from + ^http://a\.orkut\.gmodules\.com/ + to + https://a.orkut.gmodules.com/ + + + from + ^http://((?:demo|img\d|staging|www)\.)?orkut\.co(\.in|m|m\.br)/ + to + https://$1orkut.co$2/ + + + securecookie + + host + ^www\.orkut\.co(?:\.in|m|m\.br)$ + name + .+ + + target + + + host + a.orkut.gmodules.com + + + host + orkut.co.in + + + host + www.orkut.co.in + + + host + orkut.com + + + host + *.orkut.com + + + host + orkut.com.br + + + host + www.orkut.com.br + + + + + Oron (partial) + + ruleset + + name + Oron (partial) + rule + + + from + ^http://(www\.)?oron\.com/(favicon\.ico$|images/|.+\.(css|js($|\?\d?$))|\?op=) + to + https://secure.oron.com/$2 + + + from + ^http://secure\.oron\.com/ + to + https://secure.oron.com/ + + + target + + + host + oron.com + + + host + secure.oron.com + + + host + www.oron.com + + + + + Ortolo.eu (false MCB) + + ruleset + + name + Ortolo.eu (false MCB) + platform + cacert mixedcontent + rule + + from + ^http://(tanguy|www)\.ortolo\.eu/ + to + https://$1.ortolo.eu/ + + securecookie + + host + ^tanguy\.ortolo\.eu$ + name + .+ + + target + + host + *.ortolo.eu + + + + Oscigen (CAcert) + + ruleset + + name + Oscigen (CAcert) + platform + cacert + rule + + from + ^http://(www\.)?oscigen\.org/ + to + https://oscigen.org/ + + securecookie + + host + ^oscigen\.org$ + name + .* + + target + + + host + oscigen.org + + + host + www.oscigen.org + + + + + Osmocom.org (partial) + + ruleset + + name + Osmocom.org (partial) + platform + cacert + rule + + from + ^http://(bb|gmr|lists|sdr|security|simtrace)\.osmocom\.org/ + to + https://$1.osmocom.org/ + + securecookie + + host + ^(?:bb|gmr|sdr)\.osmocom\.org$ + name + .+ + + target + + host + *.osmocom.org + + + + Ostel.co + + ruleset + + name + Ostel.co + rule + + from + ^http://(?:www\.)?ostel\.co/ + to + https://ostel.co/ + + securecookie + + host + ^(?:www\.)?ostel\.co$ + name + .+ + + target + + + host + ostel.co + + + host + www.ostel.co + + + + + Otavamedia (partial) + + ruleset + + name + Otavamedia (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?(?:kuvalehdet|otavamedia)\.fi/ + to + https://www.otavamedia.fi/ + + + from + ^http://aulis\.plaza\.fi/ + to + https://aulis.plaza.fi/ + + + from + ^http://(?:www\.)plazakauppa\.fi/ + to + https://www.plazakauppa.fi/ + + + securecookie + + host + ^www\.plazakauppa\.fi$ + name + .* + + target + + + host + kuvalehdet.fi + + + host + www.kuvalehdet.fi + + + host + otavamedia.fi + + + host + www.otavamedia.fi + + + host + aulis.plaza.fi + + + host + plazakauppa.fi + + + host + www.plazakauppa.fi + + + + + Otpdirekt.sk + + ruleset + + name + Otpdirekt.sk + rule + + from + ^http://(www\.)?otpdirekt\.sk/ + to + https://www.otpdirekt.sk/ + + target + + + host + otpdirekt.sk + + + host + www.otpdirekt.sk + + + + + Otsuka-shokai.co.jp + + ruleset + + name + Otsuka-shokai.co.jp + rule + + + from + ^http://(?:www\.)?otsuka-shokai\.co\.jp/ + to + https://www.otsuka-shokai.co.jp/ + + + from + ^http://(campaign|sdc)\.otsuka-shokai\.co\.jp/ + to + https://$1.otsuka-shokai.co.jp/ + + + target + + + host + otsuka-shokai.co.jp + + + host + *.otsuka-shokai.co.jp + + + + + Ottospora.nl + + ruleset + + name + Ottospora.nl + platform + firefox + rule + + + from + ^http://ottospora\.nl/ + to + https://ottospora.nl/ + + + from + ^http://www\.ottospora\.nl/ + to + https://www.ottospora.nl/ + + + securecookie + + + host + ^ottospora\.nl$ + name + .+ + + + host + ^www\.ottospora\.nl$ + name + .+ + + + target + + + host + ottospora.nl + + + host + www.ottospora.nl + + + + + Otumm Store.se + + ruleset + + name + Otumm Store.se + rule + + from + ^http://(www\.)?otummstore\.se/ + to + https://$1otummstore.se/ + + securecookie + + host + ^\.otummstore\.se$ + name + .+ + + target + + + host + otummstore.se + + + host + *.otummstore.se + + + + + Our Hometown + + ruleset + + name + Our Hometown + rule + + from + ^https?://(?:www\.)?our-hometown\.com/ + to + https://www.our-hometown.com/ + + securecookie + + host + ^\.our-hometown\.com$ + name + .* + + target + + + host + our-hometown.com + + + host + *.our-hometown.com + + + + + OurCommonPlace + + ruleset + + name + OurCommonPlace + rule + + from + ^http://(www\.)?ourcommonplace\.com/ + to + https://$1ourcommonplace.com/ + + securecookie + + host + ^\.ourcommonplace.com$ + name + .+ + + target + + + host + ourcommonplace.com + + + host + *.ourcommonplace.com + + + + + Out of Control + + ruleset + + name + Out of Control + rule + + from + ^https?://(?:www\.)?outofcontrol\.ca/ + to + https://outofcontrol.ca/ + + securecookie + + host + ^outofcontrol\.ca$ + name + .* + + target + + + host + outofcontrol.ca + + + host + www.outofcontrol.ca + + + + + Out-Law.com + + ruleset + + name + Out-Law.com + rule + + + from + ^http://(?:www\.)?out-law\.com/ + to + https://www.out-law.com/ + + + from + ^http://www\.pinsentmasons\.com/(?=mediafiles/) + to + https://www.out-law.com/ + + + target + + + host + out-law.com + + + host + www.out-law.com + + + host + www.pinsentmasons.com + + + + + OutWit.com (partial) + + ruleset + + name + OutWit.com (partial) + rule + + from + ^http://(?:www\.)?outwit\.com/ + to + https://www.outwit.com/ + + securecookie + + host + ^\.outwit\.com$ + name + .+ + + target + + + host + outwit.com + + + host + *.outwit.com + + + + + Outbrain (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?outbrain\.com/+(?!wp-content/|wp-includes/) + + name + Outbrain (partial) + rule + + + from + ^http://(?:wp\.|www\.)?outbrain\.com/ + to + https://www.outbrain.com/ + + + from + ^http://(editorial|u|widgets|images|my|paid|traffic)\.outbrain\.com/ + to + https://$1.outbrain.com/ + + + securecookie + + host + ^\w+\.outbrain\.com$ + name + .+ + + target + + + host + outbrain.com + + + host + *.outbrain.com + + + + + Outbrain.com (false MCB) + + ruleset + + name + Outbrain.com (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?outbrain\.com/ + to + https://www.outbrain.com/ + + + from + ^http://blog\.outbrain\.com/ + to + https://blog.outbrain.com/ + + + target + + + host + outbrain.com + + + host + blog.outbrain.com + + + host + www.outbrain.com + + + + + Outernet + + ruleset + + name + Outernet + rule + + + from + ^https?://outernet\.is/ + to + https://www.outernet.is/ + + + from + ^http://([^/:@]+)?\.outernet\.is/ + to + https://$1.outernet.is/ + + + securecookie + + host + ^(.*\.)?outernet\.is$ + name + .+ + + target + + + host + outernet.is + + + host + *.outernet.is + + + + + Outlook Live + + ruleset + + name + Outlook Live + rule + + from + ^http://((?:autodiscover-s|m|r3\.res|www)\.)?outlook\.com/ + to + https://$1outlook.com/ + + securecookie + + host + ^(?:.*\.)?outlook\.com$ + name + .+ + + target + + + host + outlook.com + + + host + *.outlook.com + + + + + Outspark (partial) + + ruleset + + name + Outspark (partial) + rule + + from + ^http://((?:cdn[23]|(?:cdn)?static|login|payment|www)\.)?outspark\.com/ + to + https://$1outspark.com/ + + securecookie + + host + ^(.*\.)?outspark\.com$ + name + .* + + target + + + host + outspark.com + + + host + *.outspark.com + + + + + Ouï FM (partial) + + ruleset + + name + Ouï FM (partial) + rule + + from + ^https?://(?:www\.)?ouifm\.fr/ + to + https://www.ouifm.fr/ + + securecookie + + host + ^www\.ouifm\.fr$ + name + .+ + + target + + + host + ouifm.fr + + + host + www.ouifm.fr + + + + + OverClockers.co.uk + + ruleset + + name + OverClockers.co.uk + rule + + from + ^http://(?:www\.)?overclockers\.co\.uk/ + to + https://www.overclockers.co.uk/ + + securecookie + + host + .*\.overclockers\.co\.uk + name + .+ + + target + + + host + overclockers.co.uk + + + host + *.overclockers.co.uk + + + + + Overcast + + ruleset + + name + Overcast + rule + + from + ^http://(?:www\.)?overcast\.fm/ + to + https://overcast.fm/ + + target + + + host + overcast.fm + + + host + *.overcast.fm + + + + + Overlake Hospital Medical Center + + ruleset + + name + Overlake Hospital Medical Center + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?overlakehospital\.org/ + to + https://www.overlakehospital.org/ + + securecookie + + host + ^(.*\.)?overlakehospital\.org + name + .+ + + target + + + host + overlakehospital.org + + + host + *.overlakehospital.org + + + + + Oversee.net (partial) + + ruleset + + name + Oversee.net (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?aboutairportparking\.com/ + to + https://www.aboutairportparking.com/ + + + from + ^http://static\.couponfinder\.com/ + to + https://d2q7dxlbtbvkph.cloudfront.net/ + + + from + ^http://(www\.)?domainfest\.com/ + to + https://$1domainfest.com/ + + + from + ^http://(support\.|www\.)?oversee\.net/ + to + https://$1oversee.net/ + + + securecookie + + + host + .*\.aboutairportparking\.com$ + name + .+ + + + host + ^(?:.*\.)?domainfest\.com$ + name + .+ + + + host + ^(?:.*\.)?oversee\.net$ + name + .+ + + + target + + + host + aboutairportparking.com + + + host + www.aboutairportparking.com + + + host + static.couponfinder.com + + + host + domainfest.com + + + host + www.domainfest.com + + + host + oversee.net + + + host + *.oversee.net + + + + + Overstock.com (partial) + + ruleset + + name + Overstock.com (partial) + rule + + + from + ^http://ak(1|2)\.ostkcdn\.com/img/ + to + https://a248.e.akamai.net/f/1696/5554/8/ak$1.ostkcdn.com/img/ + + + from + ^http://ak(?:1|2|-s)\.ostkcdn\.com/ + to + https://ak-s.ostkcdn.com/ + + + from + ^http://(?:www\.)?overstock\.com/(?=css/|(?:dlp|intlcheckout)(?:$|[?/])|favicon\.ico|img/) + to + https://www.overstock.com/ + + + from + ^http://help\.overstock\.com/ + to + https://help.overstock.com/ + + + from + ^http://(?:secure\.)?newcars\.overstock\.com/ + to + https://secure.newcars.overstock.com/ + + + securecookie + + host + ^\.newcars\.overstock\.com$ + name + .+ + + target + + + host + *.ostkcdn.com + + + host + overstock.com + + + host + *.overstock.com + + + + + Ovi.com (partial) + + ruleset + + name + Ovi.com (partial) + rule + + from + ^http://(p\.d|publish|store|static\.store)\.ovi\.com/ + to + https://$1.ovi.com/ + + securecookie + + host + ^\.store\.ovi\.com$ + name + .+ + + target + + host + *.ovi.com + + + + Ovid (partial) + + ruleset + + name + Ovid (partial) + rule + + from + ^http://(e-bea|gateway|ovidsp(?:\.tx)?|shibboleth)\.ovid\.com/ + to + https://$1.ovid.com/ + + target + + + host + *.ovid.com + + + host + ovidsp.tx.ovid.com + + + + + Ow.ly (partial) + + ruleset + + name + Ow.ly (partial) + rule + + from + ^http://static\.ow\.ly/ + to + https://d2jhuj1whasmze.cloudfront.net/ + + target + + host + static.ow.ly + + + + Owen Services.com + + ruleset + + name + Owen Services.com + rule + + from + ^http://(www\.)?owenservices\.com/ + to + https://$1owenservices.com/ + + securecookie + + host + ^\.?owenservices\.com$ + name + .+ + + target + + + host + owenservices.com + + + host + *.owenservices.com + + + + + OwnCube + + ruleset + + name + OwnCube + rule + + from + ^http://(billing\.|www\.)?owncube\.com/ + to + https://$1owncube.com/ + + securecookie + + host + ^(?:billing\.|www\.)?owncube\.com$ + name + .+ + + target + + + host + owncube.com + + + host + *.owncube.com + + + + + OwnerIQ (partial) + + ruleset + + name + OwnerIQ (partial) + rule + + from + ^http://px\.owneriq\.net/ + to + https://px.owneriq.net/ + + securecookie + + host + ^\.owneriq\.net$ + name + .+ + + target + + host + *.owneriq.net + + + + Oxfam Unwrapped + + ruleset + + name + Oxfam Unwrapped + rule + + + from + ^http://(?:www\.)?oxfamirelandunwrapped\.com/ + to + https://www.oxfamirelandunwrapped.com/ + + + from + ^http://netbel\.oxfamireland\.org/ + to + https://netbel.oxfamireland.org/ + + + target + + + host + oxfamirelandunwrapped.com + + + host + www.oxfamirelandunwrapped.com + + + host + netbel.oxfamireland.org + + + + + Oxford Journals (partial) + + ruleset + + name + Oxford Journals (partial) + rule + + + from + ^https?://(?:www\.)?oxfordjournals\.org/resource/image/ + to + https://secure.oxfordjournals.org/resource/image/ + + + from + ^http://(access|secure|services)\.oxfordjournals\.org/ + to + https://$1.oxfordjournals.org/ + + + securecookie + + host + ^\w+\.oxfordjournals\.org$ + name + .* + + target + + host + *.oxfordjournals.org + + + + Oxford University Press (partial) + + ruleset + + name + Oxford University Press (partial) + rule + + from + ^http://gab\.cookie\.oup\.com/ + to + https://d3hc5ng33pisks.cloudfront.net/ + + target + + host + gab.cookie.oup.com + + + + OzBargain + + ruleset + + name + OzBargain + rule + + + from + ^https?://(?:www\.)?ozbargain\.com\.au/ + to + https://www.ozbargain.com.au/ + + + from + ^http://cdn\.ozb\.me/ + to + https://cdn.ozb.me/ + + + target + + + host + ozbargain.com.au + + + host + www.ozbargain.com.au + + + host + ozb.me + + + host + *.ozb.me + + + + + OzLabs (CAcert) + + ruleset + + exclusion + + pattern + ^http://(?:jk|librtas|powerpc-utils|yaboot)\. + + name + OzLabs (CAcert) + platform + cacert + rule + + from + ^http://([\w\.-]+\.)?ozlabs\.org/ + to + https://$1ozlabs.org/ + + target + + + host + ozlabs.org + + + host + *.ozlabs.org + + + + + Ozon.Travel + + ruleset + + name + Ozon.Travel + rule + + from + ^http://(www\.)?ozon\.travel/ + to + https://$1ozon.travel/ + + securecookie + + host + ^www\.ozon\.travel$ + name + .* + + target + + + host + ozon.travel + + + host + www.ozon.travel + + + + + O’Heffernan + + ruleset + + name + O’Heffernan + rule + + from + ^http://(?:www\.)?inchinashop\.com/ + to + https://pingplanet.squarespace.com/ + + target + + + host + inachinashop.com + + + host + www.inachinashop.com + + + + + O’Reilly Media (partial) + + ruleset + + exclusion + + + pattern + ^http://examples\.oreilly\.com/+(?!$) + + + pattern + ^http://shop\.oreilly\.com/(?!images/|includes/|mod/|text/) + + + name + O’Reilly Media (partial) + rule + + + from + ^http://(examples|members|shop)\.oreilly\.com/ + to + https://$1.oreilly.com/ + + + from + ^http://cdn\.oreillystatic\.com/ + to + https://cdn.oreillystatic.com/ + + + target + + + host + *.oreilly.com + + + host + cdn.oreillystatic.com + + + + + P Kimber.net + + ruleset + + name + P Kimber.net + rule + + from + ^http://(www\.)?pkimber\.net/ + to + https://$1pkimber.net/ + + target + + + host + pkimber.net + + + host + www.pkimber.net + + + + + P-tano.com + + ruleset + + name + P-tano.com + rule + + from + ^http://(?:www\.)?p-tano\.com/ + to + https://www.p-tano.com/ + + target + + + host + p-tano.com + + + host + www.p-tano.com + + + + + P2P Foundation.net (partial) + + ruleset + + name + P2P Foundation.net (partial) + rule + + from + ^http://blog\.p2pfoundation\.net/ + to + https://blog.p2pfoundation.net/ + + target + + host + blog.p2pfoundation.net + + + + P6R.com + + ruleset + + name + P6R.com + rule + + from + ^http://(www\.)?p6r\.com/ + to + https://$1p6r.com/ + + target + + + host + p6r.com + + + host + www.p6r.com + + + + + PACW.org + + ruleset + + name + PACW.org + rule + + from + ^http://(?:www\.)?pacw\.org/ + to + https://www.pacw.org/ + + target + + + host + pacw.org + + + host + www.pacw.org + + + + + PAETEC (partial) + + ruleset + + name + PAETEC (partial) + rule + + from + ^http://(?:www\.)?paetec\.com/ + to + https://www.paetec.com/ + + target + + + host + paetec.com + + + host + www.paetec.com + + + + + PAL cdn.com + + ruleset + + name + PAL cdn.com + rule + + from + ^http://(image|cs)s\.palcdn\.com/ + to + https://$1s.palcdn.com/ + + target + + host + images.palcdn.com + + + + PANGAEA (partial) + + ruleset + + name + PANGAEA (partial) + rule + + from + ^http://(?:www\.)?secure\.pangaea\.de/ + to + https://secure.pangaea.de/ + + target + + + host + secure.pangaea.de + + + host + www.secure.pangaea.de + + + + + PBHS (partial) + + ruleset + + name + PBHS (partial) + rule + + from + ^http://(www\.)?pbhs\.com/ + to + https://$1pbhs.com/ + + securecookie + + host + ^www\.pbhs\.com$ + name + .+ + + target + + + host + pbhs.com + + + host + www.pbhs.com + + + + + PBase (partial) + + ruleset + + name + PBase (partial) + rule + + + from + ^https?://(?:secure2\.|www\.)?pbase\.com/ + to + https://secure2.pbase.com/ + + + from + ^https?://ap1\.pbase\.com/ + to + https://d1lvd91299t0s2.cloudfront.net/ + + + target + + + host + pbase.com + + + host + *.pbase.com + + + + + PBwiki (partial) + + ruleset + + name + PBwiki (partial) + rule + + + from + ^http://(files|my|(pb-api)?docs|secure|vs1|www)\.pbworks\.com/ + to + https://$1.pbworks.com/ + + + from + ^http://usermanual\.pbworks\.com/([fw]/|theme_image\.php) + to + https://usermanual.pbworks.com/$1 + + + target + + host + *.pbwiki.com + + + + PBworks (partial) + + ruleset + + name + PBworks (partial) + rule + + + from + ^http://(files|vs1)\.pbworks\.com/ + to + https://$1.pbworks.com/ + + + from + ^http://([\w\-]+)\.pbworks\.com/f/(\d+)/ + to + https://$1.pbworks.com/f/$2/ + + + securecookie + + host + ^(.*\.)?pbworks\.com$ + name + .* + + target + + host + *.pbworks.com + + + + PC Booster + + ruleset + + name + PC Booster + rule + + + from + ^http://(www\.)?pcbooster\.com/ + to + https://$1pcbooster.com/ + + + from + ^https?://files\.pcbooster\.com/ + to + https://d1xmanv2p9uj30.cloudfront.net/ + + + securecookie + + host + ^\.?pcbooster\.com$ + name + .+ + + target + + + host + pcbooster.com + + + host + *.pcbooster.com + + + + + PC Users Group (ACT) (partial) + + ruleset + + name + PC Users Group (ACT) (partial) + platform + cacert mixedcontent + rule + + + from + ^http://(www\.)?pcug\.org\.au/ + to + https://$1pcug.org.au/ + + + from + ^http://members\.tip\.net\.au/ + to + https://members.tip.net.au/ + + + securecookie + + host + ^members\.tip\.net\.au$ + name + .* + + target + + + host + pcug.org.au + + + host + www.pcug.org.au + + + host + members.tip.net.au + + + + + PC-BSD (partial) + + ruleset + + name + PC-BSD (partial) + rule + + from + ^http://trac\.pcbsd\.org/ + to + https://trac.pcbsd.org/ + + securecookie + + host + ^trac\.pcbsd\.org$ + name + .+ + + target + + host + trac.pcbsd.org + + + + PCCaseGear + + ruleset + + name + PCCaseGear + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?pccasegear\.com(?:\.au)?/ + to + https://www.pccasegear.com/ + + target + + + host + pccasegear.com + + + host + www.pccasegear.com + + + host + pccasegear.com.au + + + host + www.pccasegear.com.au + + + + + PCEL + + ruleset + + name + PCEL + rule + + from + ^http://(images\.|www\.)?pcel\.com/ + to + https://$1pcel.com/ + + securecookie + + host + ^(?:w*\.)?pcel\.com$ + name + .+ + + target + + + host + pcel.com + + + host + *.pcel.com + + + + + PCI Compliance Guide.org + + ruleset + + name + PCI Compliance Guide.org + rule + + from + ^http://(www\.)?pcicomplianceguide\.org/ + to + https://$1pcicomplianceguide.org/ + + securecookie + + host + ^(?:www)?\.pcicomplianceguide\.org$ + name + .+ + + target + + + host + pcicomplianceguide.org + + + host + *.pcicomplianceguide.org + + + + + PCI Security Standards Council + + ruleset + + name + PCI Security Standards Council + rule + + + from + ^https?://(?:www\.)?pcisecuritystandards\.org/ + to + https://www.pcisecuritystandards.org/ + + + from + ^http://(de|es|fr|frca|ja|pt|zh)\.pcisecuritystandards\.org/ + to + https://$1.pcisecuritystandards.org/ + + + target + + + host + pcisecuritystandards.org + + + host + *.pcisecuritystandards.org + + + + + PCPro.co.uk (partial) + + ruleset + + name + PCPro.co.uk (partial) + rule + + from + ^https?://(?:photo|sprite)s\.pcpro\.co\.uk/ + to + https://desawk404a9v3.cloudfront.net/ + + target + + + host + photos.pcpro.co.uk + + + host + sprites.pcpro.co.uk + + + + + PDF to Word.com + + ruleset + + name + PDF to Word.com + rule + + from + ^http://(?:www\.)?pdftoword\.com/ + to + https://www.pdftoword.com/ + + securecookie + + host + ^www\.pdftoword\.com$ + name + .+ + + target + + + host + pdftoword.com + + + host + www.pdftoword.com + + + + + PDF.yt + + ruleset + + name + PDF.yt + rule + + from + ^http://(www\.)?pdf\.yt/ + to + https://$1pdf.yt/ + + securecookie + + host + ^pdf\.yt$ + name + .+ + + target + + + host + pdf.yt + + + host + www.pdf.yt + + + + + PEN.org (partial) + + ruleset + + name + PEN.org (partial) + rule + + from + ^http://(www\.)?pen\.org/ + to + https://$1pen.org/ + + target + + + host + pen.org + + + host + www.pen.org + + + + + PET Symposium.org + + ruleset + + name + PET Symposium.org + rule + + from + ^http://(www\.)?petsymposium\.org/ + to + https://$1petsymposium.org/ + + target + + + host + petsymposium.org + + + host + www.petsymposium.org + + + + + PFLAG-Parents, Families, & Friends of Lesbians and Gays (partial) + + ruleset + + name + PFLAG-Parents, Families, & Friends of Lesbians and Gays (partial) + rule + + from + ^http://((?:community|www)\.)?pflag\.org/ + to + https://$1pflag.org/ + + target + + + host + pflag.org + + + host + *.pflag.org + + + + + PGCon (partial) + + ruleset + + name + PGCon (partial) + rule + + from + ^http://(www\.)?pgcon\.org/ + to + https://$1pgcon.org/ + + securecookie + + host + ^(?:www\.)?pgcon\.org$ + name + .+ + + target + + + host + pgcon.org + + + host + www.pgcon.org + + + + + PGP + + ruleset + + name + PGP + rule + + + from + ^http://(?:www\.)?pgp\.com/ + to + https://www.pgp.com/ + + + from + ^http://(keyserver|sstats)\.pgp\.com/ + to + https://$1.pgp.com/ + + + from + ^http://([^/:@\.]+)\.store\.pgp\.com/ + to + https://$1.store.pgp.com/ + + + target + + + host + pgp.com + + + host + *.pgp.com + + + host + *.store.pgp.com + + + + + PGi (partial) + + ruleset + + name + PGi (partial) + rule + + + from + ^https?://(?:www\.)?pgi\.com/ + to + https://www.pgi.com/ + + + from + ^http://(legacy|webmail)\.pgi\.com/ + to + https://$1.pgi.com/ + + + securecookie + + host + ^webmail\.pgi\.com$ + name + .+ + + target + + + host + pgi.com + + + host + www.pgi.com + + + + + PH Cheats + + ruleset + + name + PH Cheats + rule + + from + ^http://(www\.)?phcheats\.com/ + to + https://$1phcheats.com/ + + securecookie + + host + ^(?:w*\.)?phcheats\.com$ + name + .+ + + target + + + host + phcheats.com + + + host + *.phcheats.com + + + + + PHP (partial) + + ruleset + + name + PHP (partial) + rule + + from + ^http://((?:bugs|downloads|edit|git|master|museum|pear|qa|shared|snaps|static|svn|wiki|www)\.)?php\.net/ + to + https://$1php.net/ + + securecookie + + host + ^(?:\w*\.)?php\.net$ + name + .+ + + target + + + host + php.net + + + host + *.php.net + + + + + PHP magazin (partial) + + ruleset + + name + PHP magazin (partial) + rule + + from + ^http://(www\.)?phpmagazin\.de/((?:cart|user)(?:$|\?|/)|modules/|sites/) + to + https://$1phpmagazin.de/$2 + + target + + + host + phpmagazin.de + + + host + www.phpmagazin.de + + + + + PHP-Fusion.co.uk (partial) + + ruleset + + name + PHP-Fusion.co.uk (partial) + rule + + from + ^http://(www\.)?php-fusion\.co\.uk/ + to + https://$1php-fusion.co.uk/ + + target + + + host + php-fusion.co.uk + + + host + www.php-fusion.co.uk + + + + + PHPNET (partial) + + ruleset + + name + PHPNET (partial) + rule + + from + ^http://(panel|ssl)\.phpnet\.org/ + to + https://$1.phpnet.org/ + + target + + host + *.phpnet.org + + + + PIERS (partial) + + ruleset + + name + PIERS (partial) + rule + + from + ^http://directories\.piers\.com/Portals/ + to + https://directories.piers.com/Portals/ + + securecookie + + host + ^directories\.piers\.com$ + name + .* + + target + + host + directories.piers.com + + + + PIXinsight.com.tw (partial) + + ruleset + + name + PIXinsight.com.tw (partial) + rule + + from + ^http://www\.pixinsight\.com\.tw/ + to + https://www.pixinsight.com.tw/ + + securecookie + + host + ^\.pixinsight\.com\.tw$ + name + .+ + + target + + host + *.pixinsight.com.tw + + + + PJ Media + + ruleset + + name + PJ Media + rule + + from + ^http://(?:cdn\.|www\.)?pjmedia\.com/ + to + https://pjmedia.com/ + + securecookie + + host + ^\.?pjmedia\.com$ + name + .+ + + target + + + host + pjmedia.com + + + host + *.pjmedia.com + + + + + PJM.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?pjm\.com/+(?!assets/|(?:[\w/-]+/)?~/media/|(?:Script|Web)Resource\.axd) + + name + PJM.com (partial) + rule + + from + ^http://(esuite\.|www\.)?pjm\.com/ + to + https://$1pjm.com/ + + securecookie + + host + ^esuite.pjm.com$ + name + .+ + + target + + + host + pjm.com + + + host + *.pjm.com + + + + + PJRC.com + + ruleset + + name + PJRC.com + rule + + from + ^http://(www\.)?pjrc\.com/ + to + https://$1pjrc.com/ + + target + + + host + pjrc.com + + + host + www.pjrc.com + + + + + PJTV.com + + ruleset + + name + PJTV.com + rule + + + from + ^http://pjtv\.com/([^?]*)(?:\?.*)?$ + to + https://www.pjtv.com/$1 + + + from + ^http://(?:cdn[1-3]|www)\.pjtv\.com/ + to + https://www.pjtv.com/ + + + securecookie + + host + ^(?:www)?\.pjtv\.com$ + name + .+ + + target + + + host + pjtv.com + + + host + *.pjtv.com + + + + + PKWARE.com (partial) + + ruleset + + name + PKWARE.com (partial) + rule + + + from + ^http://(www\.)?pkware\.com/ + to + https://$1pkware.com/ + + + from + ^http://comm\.pkware\.com/(cs|image|j|r)s/ + to + https://na-k.marketo.com/$1s/ + + + securecookie + + host + ^(?:www)?\.pkware\.com$ + name + .+ + + target + + + host + pkware.com + + + host + *.pkware.com + + + + + PLD-Linux.org (partial) + + ruleset + + name + PLD-Linux.org (partial) + rule + + + from + ^http://(?:www\.)?pld-linux\.org/ + to + https://www.pld-linux.org/ + + + from + ^http://(cvs|git|svn)\.pld-linux\.org/ + to + https://$1.pld-linux.org/ + + + from + ^http://docs\.pld-linux\.org/ + to + https://www.pld-linux.org/Docs/man + + + securecookie + + host + ^www\.pld-linux\.org$ + name + .+ + + target + + + host + pld-linux.org + + + host + *.pld-linux.org + + + + + PLE.com.au + + ruleset + + name + PLE.com.au + rule + + from + ^http://(www\.)?ple\.com\.au/ + to + https://$1ple.com.au/ + + target + + + host + ple.com.au + + + host + www.ple.com.au + + + + + PLYmedia.com (partial) + + ruleset + + name + PLYmedia.com (partial) + rule + + from + ^http://static\.plymedia\.com/ + to + https://d13y8ya6dr17ji.cloudfront.net/ + + target + + host + static.plymedia.com + + + + PNAS First Look (partial) + + ruleset + + name + PNAS First Look (partial) + rule + + from + ^http://(?:firstlook\.pnas|(?:www\.)?pnasfirstlook)\.org/wp-(admin|content)/ + to + https://secure.bluehost.com/~pnasfirs/wp-$1/ + + target + + + host + firstlook.pnas.org + + + host + pnasfirstlook.org + + + host + www.pnasfirstlook.org + + + + + PNC + + ruleset + + name + PNC + rule + + + from + ^http://pnc\.com/ + to + https://www.pnc.com/ + + + from + ^http://(ra|www|www\.ilink|www\.recognition)\.pnc\.com/ + to + https://$1.pnc.com/ + + + target + + + host + pnc.com + + + host + *.pnc.com + + + + + PNP4Nagios.org + + ruleset + + name + PNP4Nagios.org + rule + + + from + ^http://(?:(docs\.)|www\.)?pnp4nagios\.org/ + to + https://$1pnp4nagios.org/ + + + from + ^http://(oc\.|www\.)?ederdrom\.de/ + to + https://$1ederdrom.de/ + + + securecookie + + + host + ^oc\.ederdrom\.de$ + name + .+ + + + host + ^docs\.pnp4nagios\.org$ + name + .+ + + + target + + + host + ederdrom.de + + + host + *.ederdrom.de + + + host + pnp4nagios.org + + + host + *.pnp4nagios.org + + + + + POODLE Test.com + + ruleset + + name + POODLE Test.com + rule + + from + ^http://(www\.)?poodletest\.com/ + to + https://$1poodletest.com/ + + target + + + host + poodletest.com + + + host + www.poodletest.com + + + + + POODLE.io + + ruleset + + name + POODLE.io + rule + + from + ^http://(www\.)?poodle\.io/ + to + https://$1poodle.io/ + + target + + + host + poodle.io + + + host + www.poodle.io + + + + + POP (partial) + + ruleset + + name + POP (partial) + rule + + + from + ^http://pop\.com\.br/ + to + https://pop.com.br/ + + + from + ^http://www\.pop\.com\.br/_(css|fonts|imagens|swf)/ + to + https://www.pop.com.br/_$1/ + + + target + + + host + pop.com.br + + + host + www.pop.com.br + + + + + PORTAL Masq.com + + ruleset + + name + PORTAL Masq.com + rule + + from + ^http://(www\.)?portalmasq\.com/ + to + https://$1portalmasq.com/ + + securecookie + + host + ^\.portalmasq\.com$ + name + .+ + + target + + + host + portalmasq.com + + + host + *.portalmasq.com + + + + + POS Portal.com (partial) + + ruleset + + name + POS Portal.com (partial) + rule + + + from + ^http://(?:www\.)?posportal\.com/(cam|mmc|omc)(?=$|[?/]) + to + https://www.posportal.com/$1 + + + from + ^http://buy\.posportal\.com/ + to + https://buy.posportal.com/ + + + securecookie + + host + ^\.buy\.posportal\.com$ + name + .+ + + target + + + host + posportal.com + + + host + *.posportal.com + + + + + PPCoin (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ppcoin\.org/(?!static/) + + name + PPCoin (partial) + rule + + from + ^http://(?:www\.)?ppcoin\.org/ + to + https://electric-day-4087.herokuapp.com/ + + target + + + host + ppcoin.org + + + host + www.ppcoin.org + + + + + PPS + + ruleset + + exclusion + + + pattern + ^http://projects\.partipirate\.ch/ + + + pattern + ^http://projects\.pirateparty\.ch/ + + + pattern + ^http://projects\.partitopirata\.ch/ + + + pattern + ^http://info\.partipirate\.ch/ + + + pattern + ^http://info\.partitopirata\.ch/ + + + pattern + ^http://info\.pirateparty\.ch/ + + + pattern + ^http://stadt\.zh\.piratenpartei\.ch/ + + + name + PPS + rule + + + from + ^http://([^/:@]*)\.piratenpartei\.ch/ + to + https://$1.piratenpartei.ch/ + + + from + ^http://piratenpartei\.ch/ + to + https://piratenpartei.ch/ + + + from + ^http://([^/:@]*)\.pirateparty\.ch/ + to + https://$1.pirateparty.ch/ + + + from + ^http://pirateparty\.ch/ + to + https://pirateparty.ch/ + + + from + ^http://([^/:@]*)\.partipirate\.ch/ + to + https://$1.partipirate.ch/ + + + from + ^http://partipirate\.ch/ + to + https://partipirate.ch/ + + + from + ^http://([^/:@]*)\.partitopirata\.ch/ + to + https://$1.partitopirata.ch/ + + + from + ^http://partitopirata\.ch/ + to + https://partitopirata.ch/ + + + from + ^https://([^/:@]*)\.piraten-partei\.ch/ + to + https://$1.piratenpartei.ch/ + + + from + ^http://piraten-partei\.ch/ + to + https://piratenpartei.ch/ + + + from + ^https://([^/:@]*)\.parti-pirate\.ch/ + to + https://$1.partipirate.ch/ + + + from + ^http://parti-pirate\.ch/ + to + https://partipirate.ch/ + + + from + ^https://([^/:@]*)\.partito-pirata\.ch/ + to + https://$1.partitopirata.ch/ + + + from + ^http://partito-pirata\.ch/ + to + https://partitopirata.ch/ + + + from + ^https://([^/:@]*)\.pirate-party\.ch/ + to + https://$1.pirateparty.ch/ + + + from + ^http://pirate-party\.ch/ + to + https://pirateparty.ch/ + + + from + ^http://(?:www\.)?piraten-aargau\.ch/ + to + https://www.piraten-aargau.ch/ + + + from + ^http://(?:www\.)?piraten-basel\.ch/ + to + https://piraten-basel.ch/ + + + from + ^http://winterthur\.zh\.piratenpartei\.ch/ + to + https://winterthur.zh.piratenpartei.ch/ + + + from + ^http://winterthur\.zh\.partipirate\.ch/ + to + https://winterthur.zh.piratenpartei.ch/ + + + from + ^http://winterthur\.zh\.partitopirata\.ch/ + to + https://winterthur.zh.piratenpartei.ch/ + + + from + ^http://winterthur\.zh\.pirateparty\.ch/ + to + https://winterthur.zh.piratenpartei.ch/ + + + target + + + host + piratenpartei.ch + + + host + *.piratenpartei.ch + + + host + piraten-partei.ch + + + host + *.piraten-partei.ch + + + host + pirateparty.ch + + + host + *.pirateparty.ch + + + host + pirate-party.ch + + + host + *.pirate-party.ch + + + host + partipirate.ch + + + host + *.partipirate.ch + + + host + parti-pirate.ch + + + host + *.parti-pirate.ch + + + host + partitopirata.ch + + + host + *.partitopirata.ch + + + host + partito-pirata.ch + + + host + *.partito-pirata.ch + + + host + piraten-aargau.ch + + + host + www.piraten-aargau.ch + + + host + piraten-basel.ch + + + host + www.piraten-basel.ch + + + host + stadt.zh.piratenpartei.ch + + + host + winterthur.zh.piratenpartei.ch + + + + + PR Newswire (partial) + + ruleset + + name + PR Newswire (partial) + rule + + + from + ^https?://filecache\.drivetheweb\.com/ + to + https://s3.amazonaws.com/filecache.drivetheweb.com/ + + + from + ^https?://content\.prnewswire\.com/designimages/l(ine-horz|ogo-prn)-01_PRN\.gif + to + https://portal.prnewswire.com/images/l$1-01.gif + + + from + ^http://p(hotos|ortal)\.prnewswire\.com/ + to + https://p$1.prnewswire.com/ + + + securecookie + + host + ^p\w+\.prnewswire\.com$ + name + .* + + target + + + host + filecache.drivetheweb.com + + + host + content.prnewswire.com + + + host + photos.prnewswire.com + + + host + portal.prnewswire.com + + + + + PRISM Break.org + + ruleset + + name + PRISM Break.org + rule + + from + ^http://(www\.)?prism-break\.org/ + to + https://$1prism-break.org/ + + securecookie + + host + ^(?:www\.)?prism-break\.org$ + name + .+ + + target + + + host + prism-break.org + + + host + www.prism-break.org + + + + + PRV.se + + ruleset + + name + PRV.se + platform + mixedcontent + rule + + + from + ^http://www\.prv\.se/ + to + https://www.prv.se/ + + + from + ^http://prv\.se/ + to + https://www.prv.se/ + + + target + + + host + prv.se + + + host + www.prv.se + + + + + PRWeb (partial) + + ruleset + + name + PRWeb (partial) + rule + + + from + ^http://app\.prweb\.com/ + to + https://app.prweb.com/ + + + from + ^https?://service\.prweb\.com/_res/images/common/(carousel-(?:next|prev)\.png|logo\.gif|rss\.gif) + to + https://app.prweb.com/prweb/images/$1 + + + from + ^https?://service\.prweb\.com/_res/images/awards/(best-search|codie|upshot-50)\.gif + to + https://app.prweb.com/images/$1.gif + + + from + ^https?://service\.prweb\.com/_res/images/bg/(counter-(?:left|right)|header-main|image-frame-big|main-content|section-bottom|shadow-lighter|usernav-on)\.gif + to + https://app.prweb.com/prweb/images/$1.gif + + + from + ^https?://service\.prweb\.com/_res/images/bg/(create-account\.jpg|(?:dotted-divider|footer-divided|mainnav|navigation|usernav)\.gif) + to + https://app.prweb.com/prweb/images/bg/$1 + + + from + ^https?://service\.prweb\.com/_res/images/common/us-flag\.gif + to + https://app.prweb.com/prweb/images/bg/us-flag.gif + + + from + ^https?://service\.prweb\.com/_res/images/bullets/breadcrumb-arrow\.gif + to + https://app.prweb.com/prweb/images/bullets/breadcrumb-arrow.gif + + + from + ^https?://service\.prweb\.com/_res/images/common/((?:facebook|linkedin|twitter)-icon\|medallion|search-go-smaller|vocus-logo)\.gif + to + https://app.prweb.com/prweb/images/common/$1.gif + + + from + ^https?://service\.prweb\.com/_res/images/headers/(call|here-to-help)\.gif + to + https://app.prweb.com/prweb/images/headers/$1.gif + + + from + ^https?://service\.prweb\.com/_res/images/bullets/more\.gif + to + https://app.prweb.com/prweb/images/more.gif + + + target + + host + *.prweb.com + + + + PRX (partial) + + ruleset + + name + PRX (partial) + rule + + + from + ^http://(www\.)?prx\.org/ + to + https://$1prx.org/ + + + from + ^https?://assets1\.prx\.org/ + to + https://d11pcyef3meeu9.cloudfront.net/ + + + securecookie + + host + ^\.prx\.org$ + name + .+ + + target + + + host + prx.org + + + host + *.prx.org + + + + + PS-Webhosting Webmail + + ruleset + + name + PS-Webhosting Webmail + rule + + from + ^http://webmail\.planet-school\.de/ + to + https://webmail.planet-school.de/ + + securecookie + + host + ^webmail\.planet-school\.de$ + name + .* + + target + + host + webmail.planet-school.de + + + + PSC.edu + + ruleset + + name + PSC.edu + rule + + from + ^http://(delicate\.|www\.)?psc\.edu/ + to + https://$1psc.edu/ + + securecookie + + host + ^(?:.+\.)?psc\.edu$ + name + .+ + + target + + + host + psc.edu + + + host + *.psc.edu + + + + + PSSL.com + + ruleset + + name + PSSL.com + rule + + + from + ^http://(?:www\.)?pssl\.com/ + to + https://www.pssl.com/ + + + from + ^http://espanol\.pssl\.com/ + to + https://espanol.pssl.com/ + + + securecookie + + host + .+\.pssl\.com$ + name + .+ + + target + + + host + pssl.com + + + host + *.pssl.com + + + + + PSX Extreme (partial) + + ruleset + + name + PSX Extreme (partial) + rule + + from + ^https?://images\.psxextreme\.com/ + to + https://dhtxsuc4vsorr.cloudfront.net/ + + target + + host + images.psxextreme.com + + + + PSZÁF + + ruleset + + name + PSZÁF + rule + + from + ^http://([^/:@]*)\.pszaf\.hu/ + to + https://$1.pszaf.hu/ + + target + + host + *.pszaf.hu + + + + PTT.br + + ruleset + + name + PTT.br + rule + + from + ^http://(www\.)?ptt\.br/ + to + https://$1ptt.br/ + + securecookie + + host + ^\.ptt\.br$ + name + .+ + + target + + + host + ptt.br + + + host + *.ptt.br + + + + + PULP + + ruleset + + name + PULP + rule + + from + ^http://(ssl\.|www\.)?pulpcentral\.com/ + to + https://$1pulpcentral.com/ + + securecookie + + host + ^ssl\.pulpcentral\.com$ + name + .+ + + target + + + host + pulpcentral.com + + + host + *.pulpcentral.com + + + + + Pabo (partial) + + ruleset + + name + Pabo (partial) + rule + + from + ^http://(www\.)?pabo\.nl/(/?assets_bu-hard/|data/|product/images/|selfhelp/(?:login|password_recover/)) + to + https://$1pabo.nl/$2 + + target + + + host + pabo.nl + + + host + www.pabo.nl + + + + + PacSec.jp + + ruleset + + name + PacSec.jp + rule + + from + ^http://(?:www\.)?pacsec\.jp/ + to + https://pacsec.jp/ + + target + + + host + pacsec.jp + + + host + www.pacsec.jp + + + + + Pace Bus.com (partial) + + ruleset + + name + Pace Bus.com (partial) + rule + + from + ^http://(?:www\.)?pacebus\.com/ + to + https://www.pacebus.com/ + + securecookie + + host + ^www\.pacebus\.com$ + name + .+ + + target + + + host + pacebus.com + + + host + www.pacebus.com + + + + + Pace.com (partial) + + ruleset + + name + Pace.com (partial) + rule + + from + ^http://(?:www\.)?pace\.com/(?=css/|Global/Images/|images/|(?:Script|Web)Resource\.axd) + to + https://www.pace.com/ + + target + + + host + pace.com + + + host + www.pace.com + + + + + Pace2Race (partial) + + ruleset + + name + Pace2Race (partial) + rule + + from + ^http://(www\.)?pace2race\.com/(wp-content/|wp-includes/|online-store(?:$|\?|/)) + to + https://$1pace2race.com/$2 + + target + + + host + pace2race.com + + + host + www.pace2race.com + + + + + Pachube.com + + ruleset + + name + Pachube.com + rule + + from + ^http://api\.pachube\.com/ + to + https://api.pachube.com/ + + target + + host + api.pachube.com + + + + Package Lab.com + + ruleset + + name + Package Lab.com + rule + + from + ^http://(static\.|www\.)?packagelab\.com/ + to + https://$1packagelab.com/ + + securecookie + + host + ^www\.packagelab\.com$ + name + .+ + + target + + + host + packagelab.com + + + host + *.packagelab.com + + + + + Packagist.org + + ruleset + + name + Packagist.org + rule + + from + ^http://(www\.)?packagist\.org/ + to + https://$1packagist.org/ + + securecookie + + host + ^packagist\.org$ + name + .+ + + target + + + host + packagist.org + + + host + www.packagist.org + + + + + Packet Storm Security.com (partial) + + ruleset + + name + Packet Storm Security.com (partial) + rule + + + from + ^http://(?:www\.)?packetstatic\.com/(?=art/|(?:css|img|js)\d*/) + to + https://packetstormsecurity.com/ + + + from + ^http://(www\.)?packetstormsecurity\.com/(?=(?:account|forgot|register)(?:$|[?/])|art/|(?:css|img|js)\d*/|favicon\.ico) + to + https://$1packetstormsecurity.com/ + + + target + + + host + packetstatic.com + + + host + www.packetstatic.com + + + host + packetstormsecurity.com + + + host + www.packetstormsecurity.com + + + + + Packetwerk.com + + ruleset + + name + Packetwerk.com + rule + + from + ^http://(?:www\.)?packetwerk\.com/ + to + https://packetwerk.com/ + + securecookie + + host + ^packetwerk\.com$ + name + .+ + + target + + + host + packetwerk.com + + + host + www.packetwerk.com + + + + + Packt Publishing (partial) + + ruleset + + name + Packt Publishing (partial) + rule + + from + ^http://((?:careers|packtlib|salesdb|www)\.)?packtpub\.com/ + to + https://$1packtpub.com/ + + securecookie + + host + .*\.packtpub\.com$ + name + .+ + + target + + + host + packtpub.com + + + host + *.packtpub.com + + + + + Pacnet (partial) + + ruleset + + name + Pacnet (partial) + rule + + from + ^http://wm4\.pacific\.net\.au/ + to + https://wm4.pacific.net.au/ + + securecookie + + host + ^wm4\.pacific\.net\.au$ + name + .+ + + target + + host + wm4.pacific.net.au + + + + PadMapper (partial) + + ruleset + + name + PadMapper (partial) + rule + + + from + ^http://(www\.)?padmapper\.com/ + to + https://$1padmapper.com/ + + + from + ^http://(www\.)?padlister\.com/(assets/|images/|users/login(?:$|\?)) + to + https://$1padlister.com/$2 + + + securecookie + + host + ^www\.padmapper\.com$ + name + .+ + + target + + + host + padlister.com + + + host + www.padlister.com + + + host + padmapper.com + + + host + www.padmapper.com + + + + + Paddle.com + + ruleset + + name + Paddle.com + rule + + from + ^http://(www\.)?paddle(api)?\.com/ + to + https://$1paddle$2.com/ + + securecookie + + host + ^(?:www)?\.paddle(?:api)?\.com$ + name + .+ + + target + + + host + paddle.com + + + host + *.paddle.com + + + host + paddleapi.com + + + host + *.paddleapi.com + + + + + Padlet.com (partial) + + ruleset + + name + Padlet.com (partial) + rule + + from + ^http://(www\.)?padlet\.com/ + to + https://$1padlet.com/ + + securecookie + + host + ^\.padlet\.com$ + name + .+ + + target + + + host + padlet.com + + + host + *.padlet.com + + + + + PagPop + + ruleset + + name + PagPop + rule + + from + ^http://(www\.)?(pagpop|vitalcred)\.com\.br/ + to + https://$1$2.com.br/ + + securecookie + + host + ^(?:.*\.)?(?:pagpop|vitalcred)\.com\.br$ + name + .+ + + target + + + host + pagpop.com.br + + + host + *.pagpop.com.br + + + host + vitalcred.com.br + + + host + *.vitalcred.com.br + + + + + PageKite + + ruleset + + name + PageKite + rule + + from + ^http://(g1-bre\.|www\.)?pagekite\.net/ + to + https://$1pagekite.net/ + + securecookie + + host + ^pagekite\.net$ + name + .+ + + target + + + host + www.pagekite.net + + + host + pagekite.net + + + + + Pagely (partial) + + ruleset + + name + Pagely (partial) + rule + + + from + ^http://(www\.)?page\.ly/(favicon\.ico|public/|signup/|wp-content/) + to + https://$1page.ly/$2 + + + from + ^http://pagely\.presscdn\.com/wp-content/ + to + https://page.ly/wp-content/ + + + target + + + host + page.ly + + + host + www.page.ly + + + + + Pagoda Box + + ruleset + + name + Pagoda Box + rule + + + from + ^https?://(?:www\.)?godl.co/ + to + https://www.godl.co/ + + + from + ^http://((?:assistly-assets|blog|dashboard|www)\.)?pagodabox\.com/ + to + https://$1pagodabox.com/ + + + securecookie + + + host + ^\.godl.co$ + name + .+ + + + host + ^(?:dashboard\.)?pagodabox\.com$ + name + .+ + + + target + + + host + godl.co + + + host + *.godl.co + + + host + pagodabox.com + + + host + *.pagodabox.com + + + + + Paket.de + + ruleset + + name + Paket.de + rule + + from + ^http://(www\.)?paket\.de/ + to + https://www.paket.de/ + + target + + + host + paket.de + + + host + www.paket.de + + + + + Palantir.com + + ruleset + + name + Palantir.com + rule + + from + ^http://www\.palantir\.com/ + to + https://www.palantir.com/ + + target + + host + www.palantir.com + + + + Palbin.com + + ruleset + + name + Palbin.com + rule + + + from + ^http://(?:www\.)?palbin\.com/ + to + https://www.palbin.com/ + + + from + ^http://cdn\.palbin\.com/ + to + https://cdn.palbin.com/ + + + securecookie + + host + ^(?:www)?\.palbin\.com$ + name + .+ + + target + + + host + palbin.com + + + host + *.palbin.com + + + + + Pale Moon.org (partial) + + ruleset + + name + Pale Moon.org (partial) + rule + + from + ^http://forum\.palemoon\.org/(?=download/|favicon\.ico|images/|style\.php|styles/|ucp\.php\?mode=(?:login|register)) + to + https://forum.palemoon.org/ + + target + + host + forum.palemoon.org + + + + Palgrave.com + + ruleset + + name + Palgrave.com + rule + + from + ^http://(?:www\.)?palgrave\.com/ + to + https://www.palgrave.com/ + + securecookie + + host + ^www\.palgrave\.com$ + name + .+ + + target + + + host + palgrave.com + + + host + www.palgrave.com + + + + + Palm Coast Data + + ruleset + + name + Palm Coast Data + rule + + from + ^http://s(ecure|sl)\.palmcoastd\.com/ + to + https://s$1.palmcoastd.com/ + + securecookie + + host + ^(.*\.)?palmcoastd\.com$ + name + .* + + target + + + host + secure.palmcoastd.com + + + host + ssl.palmcoastd.com + + + + + Palm Coast Data (partial) + + ruleset + + name + Palm Coast Data (partial) + rule + + from + ^http://s(ecure|sologin)\.palmcoastd\.com/ + to + https://s$1.palmcoastd.com/ + + securecookie + + host + ^\.palmcoastd\.com$ + name + ^:xCOOKIEx:$ + + target + + host + *.palmcoastd.com + + + + Palm.com (partial) + + ruleset + + name + Palm.com (partial) + rule + + from + ^http://developer\.palm\.com/ + to + https://developer.palm.com/ + + securecookie + + host + ^developer\.palm\.com$ + name + .+ + + target + + host + developer.palm.com + + + + Palmetto.com + + ruleset + + name + Palmetto.com + rule + + from + ^http://(www\.)?palmetto\.com/ + to + https://$1palmetto.com/ + + securecookie + + host + ^www\.palmetto\.com$ + name + .+ + + target + + + host + palmetto.com + + + host + www.palmetto.com + + + + + Palms Casino Resort (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?palms\.com/(?!$|\?|casino-resort\.html|content/|etc/|libs/) + + name + Palms Casino Resort (partial) + rule + + from + ^http://(?:res2\.|www\.)?palms\.com/ + to + https://res2.palms.com/ + + target + + + host + palms.com + + + host + *.palms.com + + + + + Palo Alto Networks.com + + ruleset + + name + Palo Alto Networks.com + rule + + from + ^http://((?:identity|securityadvisories|support|www)\.)?paloaltonetworks\.com/ + to + https://$1paloaltonetworks.com/ + + securecookie + + host + ^(?:securityadvisories)?\.paloaltonetworks\.com$ + name + .+ + + target + + + host + paloaltonetworks.com + + + host + *.paloaltonetworks.com + + + + + Palo Alto Research Center + + ruleset + + name + Palo Alto Research Center + rule + + from + ^http://(blogs|www)\.parc\.com/ + to + https://$1.parc.com/ + + securecookie + + host + ^blogs\.parc\.com$ + name + .+ + + target + + host + *.parc.com + + + + PamConsult + + ruleset + + name + PamConsult + platform + mixedcontent + rule + + + from + ^http://(www\.)?(pamconsult|pamela|pamfax)\.(biz|com)/ + to + https://www.$2.$3/ + + + from + ^http://s\.pamfax\.biz/ + to + https://s.pamfax.biz/ + + + target + + + host + pamconsult.com + + + host + www.pamconsult.com + + + host + pamela.biz + + + host + www.pamela.biz + + + host + pamfax.biz + + + host + s.pamfax.biz + + + host + www.pamfax.biz + + + + + Pan-Islamic Malaysian Party + + ruleset + + name + Pan-Islamic Malaysian Party + rule + + from + ^http://(www\.)?pas\.org\.my/ + to + https://$1pas.org.my/ + + securecookie + + host + ^\.pas.org.my$ + name + .+ + + target + + + host + pas.org.my + + + host + *.pas.org.my + + + + + Panasonic.com (partial) + + ruleset + + name + Panasonic.com (partial) + rule + + + from + ^http://metrics\.panasonic\.com/ + to + https://merpanasonicprod.122.2o7.net/ + + + from + ^http://www2\.panasonic\.com/ + to + https://www2.panasonic.com/ + + + from + ^http://www-images\.panasonic\.com/ + to + https://www.panasonic.com/ + + + securecookie + + host + .*\.panasonic\.com$ + name + .+ + + target + + host + *.panasonic.com + + + + Panax + + ruleset + + name + Panax + rule + + from + ^http://(www\.)?panax\.net/ + to + https://$1panax.net/ + + securecookie + + host + ^\.panax\.net$ + name + .+ + + target + + + host + panax.net + + + host + *.panax.net + + + + + PandaWhale + + ruleset + + name + PandaWhale + rule + + from + ^https://(?:www\.)?pandawhale\.com/ + to + https://pandawhale.com/ + + securecookie + + host + ^\.pandawhale\.com$ + name + .+ + + target + + + host + pandawhale.com + + + host + *.pandawhale.com + + + + + Pangora (partial) + + ruleset + + name + Pangora (partial) + rule + + from + ^http://images\.pangora\.com/ + to + https://images.pangora.com/ + + target + + host + images.pangora.com + + + + Panic.com + + ruleset + + name + Panic.com + rule + + from + ^http://(www\.)?panic\.com/ + to + https://$1panic.com/ + + securecookie + + host + ^(.+\.)?panic\.com$ + name + .* + + target + + + host + panic.com + + + host + www.panic.com + + + + + Panopticlick.com + + ruleset + + name + Panopticlick.com + rule + + from + ^http://(www\.)?panopticlick\.com/ + to + https://$1panopticlick.com/ + + securecookie + + host + ^www\.panopticlick\.com$ + name + .+ + + target + + + host + panopticlick.com + + + host + www.panopticlick.com + + + + + Panoramio (partial) + + ruleset + + name + Panoramio (partial) + rule + + from + ^http://ssl\.panoramio\.com/ + to + https://ssl.panoramio.com/ + + target + + host + ssl.panoramio.com + + + + Pantarhei.sk + + ruleset + + name + Pantarhei.sk + platform + mixedcontent + rule + + from + ^http://(www\.)?pantarhei\.sk/ + to + https://www.pantarhei.sk/ + + target + + + host + pantarhei.sk + + + host + www.pantarhei.sk + + + + + Pantheon (partial) + + ruleset + + name + Pantheon (partial) + rule + + + from + ^http://(?:www\.)?gotpantheon\.com/ + to + https://www.gotpantheon.com/ + + + from + ^http://dashboard\.gotpantheon\.com/ + to + https://dashboard.gotpantheon.com/ + + + from + ^http://helpdesk\.gotpantheon\.com/(favicon\.ico|images/) + to + https://d3jyn100am7dxp.cloudfront.net/$1 + + + securecookie + + host + ^dashboard\.gotpantheon\.com$ + name + .+ + + target + + + host + gotpantheon.com + + + host + *.gotpantheon.com + + + + + Pantheos (partial) + + ruleset + + name + Pantheos (partial) + rule + + + from + ^http://(www\.)?pantheos\.com/images/ + to + https://www.pantheos.com/images/ + + + from + ^http://(css|media|wp)\.pantheos\.com/ + to + https://s3.amazonaws.com/$1.pantheos.com/ + + + target + + + host + pantheos.com + + + host + css.pantheos.com + + + host + media.pantheos.com + + + host + wp.patheos.com + + + host + www.pantheos.com + + + + + Paper Mart.com (partial) + + ruleset + + name + Paper Mart.com (partial) + rule + + from + ^http://(?:www\.)?papermart\.com/(?=App_Themes/|favicon\.ico|Images/|IMAGES/|[jJ]ava[sS]cript/|Secure/|(?:Script|Web)Resource\.axd|WebService/) + to + https://www.papermart.com/ + + target + + + host + papermart.com + + + host + www.papermart.com + + + + + ParaPoupar.com + + ruleset + + name + ParaPoupar.com + rule + + from + ^http://(www\.)?parapoupar\.com/ + to + https://$1parapoupar.com/ + + securecookie + + host + ^(?:www)?\.parapoupar\.com$ + name + .+ + + target + + + host + parapoupar.com + + + host + *.parapoupar.com + + + + + Parabola GNULinux.org + + ruleset + + name + Parabola GNULinux.org + platform + cacert + rule + + from + ^http://(projects\.|wiki\.)?parabolagnulinux\.org/ + to + https://$1parabolagnulinux.org/ + + target + + + host + parabolagnulinux.org + + + host + *.parabolagnulinux.org + + + + + Parabola.nu + + ruleset + + name + Parabola.nu + platform + cacert + rule + + from + ^http://((?:labs|projects|wiki|www)\.)?parabola\.nu/ + to + https://$1parabola.nu/ + + securecookie + + host + ^labs\.parabola\.nu$ + name + .+ + + target + + + host + parabola.nu + + + host + *.parabola.nu + + + + + Paradox Interactive (partial) + + ruleset + + name + Paradox Interactive (partial) + rule + + from + ^http://connect\.paradoxplaza\.com/ + to + https://connect.paradoxplaza.com/ + + target + + host + connect.paradoxplaza.com + + + + Paradux Media.com + + ruleset + + name + Paradux Media.com + rule + + from + ^http://(www\.)?paraduxmedia\.com/ + to + https://$1paraduxmedia.com/ + + securecookie + + host + ^paraduxmedia\.com$ + name + .+ + + target + + + host + paraduxmedia.com + + + host + www.paraduxmedia.com + + + + + Paradysz + + ruleset + + name + Paradysz + rule + + from + ^http://(ssl\.analytics\.|www\.)?offeredby\.net/ + to + https://$1offeredby.net/ + + securecookie + + host + ^(?:.*\.)?offeredby\.net + name + .+ + + target + + + host + offeredby.net + + + host + *.offeredby.net + + + + + Parallax.com (partial) + + ruleset + + name + Parallax.com (partial) + rule + + from + ^http://(www\.)?parallax\.com/(?=favicon\.ico|files/|sites/) + to + https://$1parallax.com/ + + target + + + host + parallax.com + + + host + www.parallax.com + + + + + Parallels (partial) + + ruleset + + exclusion + + pattern + ^http://sp\.parallels\.com/+(?!favicon\.ico|fileadmin/|typo3conf/|typo3temp/) + + name + Parallels (partial) + rule + + + from + ^http://(?:www\.)?parallels\.com/ + to + https://www.parallels.com/ + + + from + ^http://blogs\.parallels\.com/ + to + https://parallelsblog.squarespace.com/ + + + from + ^http://i3\.parallels\.com/ + to + https://www.parallels.com/ + + + from + ^http://(sp|www\.sp|store)\.parallels\.com/ + to + https://$1.parallels.com/ + + + from + ^http://(?:www\.)?psoft\.com/ + to + https://www.parallels.com/psoft + + + from + ^http://my\.psoft\.com/ + to + https://my.psoft.com/ + + + securecookie + + + host + ^\.parallels\.com$ + name + ^s_\w+$ + + + host + ^store\.parallels\.com$ + name + .+ + + + host + ^\w+\.psoft\.com$ + name + .+ + + + target + + + host + parallels.com + + + host + *.parallels.com + + + host + psoft.net + + + host + *.psoft.net + + + + + Parameter Security.com + + ruleset + + name + Parameter Security.com + rule + + + from + ^http://(www\.)?parametersecurity\.com/ + to + https://$1parametersecurity.com/ + + + from + ^http://showmecon\.parametersecurity\.com/ + to + https://showmecon.com/ + + + securecookie + + host + ^(?:www)?\.parametersecurity\.com$ + name + .+ + + target + + + host + parametersecurity.com + + + host + *.parametersecurity.com + + + + + ParamountMovies.com + + ruleset + + name + ParamountMovies.com + rule + + + from + ^https?://(?:www\.)?paramountmovies\.com/ + to + https://www.paramountmovies.com/ + + + from + ^https?://vod\.super8-movie\.com/(?:.*) + to + https://www.paramountmovies.com/productdetail.html?productId=11506 + + + from + ^https?://vod\.transformersmovie\.com/(?:.*) + to + https://www.paramountmovies.com/ + + + securecookie + + host + ^www\.paramountmovies\.com$ + name + .* + + target + + + host + paramountmovies.com + + + host + www.paramountmovies.com + + + host + vod.super8-movie.com + + + host + vod.transformersmovie.com + + + + + Parature.com + + ruleset + + name + Parature.com + platform + mixedcontent + rule + + + from + ^http://(www\.)?parature\.com/ + to + https://www.parature.com/ + + + from + ^http://(d1|s3|success|support)\.parature\.com/ + to + https://$1.parature.com/ + + + securecookie + + host + ^(?:s3|success|www)\.parature\.com$ + name + .+ + + target + + + host + parature.com + + + host + s3.parature.com + + + host + support.parature.com + + + host + www.parature.com + + + + + Parcelforce (partial) + + ruleset + + name + Parcelforce (partial) + platform + mixedcontent + rule + + + from + ^https?://parcelforce\.com/ + to + https://www.parcelforce.com/ + + + from + ^http://www\.parcelforce\.com/((?:become-account-customer-today|user)(?:/?$|\?)|sites/) + to + https://www.parcelforce.com/$1 + + + from + ^http://www\.parcelforce\.com/my-account/?$ + to + https://www.parcelforce.com/user + + + target + + + host + parcelforce.com + + + host + www.parcelforce.com + + + + + Pardot + + ruleset + + name + Pardot + rule + + + from + ^http://((?:blog|go|help|pi|www)\.)?pardot\.com/ + to + https://$1pardot.com/ + + + from + ^http://(?:form-)?cdn\.pardot\.com/ + to + https://pi.pardot.com/ + + + from + ^http://storage\.pardot\.com/ + to + https://s3.amazonaws.com/storage.pardot.com/ + + + from + ^http://www-cdn\d?\.pardot\.com/ + to + https://www.pardot.com/ + + + securecookie + + + host + ^\.pardot\.com$ + name + ^(?:visitor_id\d+|__utm\w)$ + + + host + ^(?:go|pi|www)\.pardot\.com$ + name + .+ + + + target + + + host + pardot.com + + + host + *.pardot.com + + + + + Paris Diderot University (partial) + + ruleset + + name + Paris Diderot University (partial) + rule + + from + ^http://auth\.univ-paris-diderot\.fr/ + to + https://auth.univ-paris-diderot.fr/ + + securecookie + + host + ^auth\.univ-paris-diderot\.fr$ + name + .+ + + target + + host + auth.univ-paris-diderot.fr + + + + Park Models Direct + + ruleset + + name + Park Models Direct + rule + + from + ^http://(www\.)?parkmodelsdirect\.com/ + to + https://$1parkmodelsdirect.com/ + + securecookie + + host + ^(?:.*\.)?parkmodelsdirect\.com$ + name + .+ + + target + + + host + parkmodelsdirect.com + + + host + *.parkmodelsdirect.com + + + + + Parker Soft.co.uk + + ruleset + + name + Parker Soft.co.uk + rule + + from + ^http://(gateway2?|www)\.parkersoft\.co\.uk/ + to + https://$1.parkersoft.co.uk/ + + target + + host + *.parkersoft.co.uk + + + + ParkingCrew.com + + ruleset + + name + ParkingCrew.com + rule + + from + ^http://(?:www\.)?parkingcrew\.com/ + to + https://www.parkingcrew.com/ + + target + + + host + parkingcrew.com + + + host + www.parkingcrew.com + + + + + ParkingEye.co.uk + + ruleset + + name + ParkingEye.co.uk + rule + + from + ^http://(payments\.|www\.)?parkingeye\.co\.uk/ + to + https://$1parkingeye.co.uk/ + + securecookie + + host + ^(?:\w*\.)?parkingeye.co.uk$ + name + .+ + + target + + + host + parkingeye.co.uk + + + host + *.parkingeye.co.uk + + + + + Parse.com (partial) + + ruleset + + name + Parse.com (partial) + rule + + + from + ^http://(www\.)?parse\.com/ + to + https://$1parse.com/ + + + from + ^http://status\.parse\.com/ + to + https://parse.statuspage.io/ + + + target + + + host + parse.com + + + host + *.parse.com + + + + + Parse.ly (partial) + + ruleset + + name + Parse.ly (partial) + rule + + + from + ^http://(?:www\.)?parse\.ly/ + to + https://www.parsely.com/ + + + from + ^http://((?:api|config|dash|pixel|www)\.)?parsely\.com/ + to + https://$1parsely.com/ + + + from + ^http://static\.parsely\.com/ + to + https://d1z2jf7jlzjs58.cloudfront.net/ + + + securecookie + + host + ^config\.parsely\.com$ + name + .+ + + target + + + host + parsely.com + + + host + *.parsely.com + + + + + Parship.nl + + ruleset + + name + Parship.nl + rule + + from + ^http://www\.parship\.nl/ + to + https://www.parship.nl/ + + target + + host + www.parship.nl + + + + Partnernaurovni.sk + + ruleset + + name + Partnernaurovni.sk + rule + + from + ^http://(www\.)?partnernaurovni\.sk/ + to + https://www.partnernaurovni.sk/ + + target + + + host + partnernaurovni.sk + + + host + www.partnernaurovni.sk + + + + + PassMark.com (false MCB) + + ruleset + + name + PassMark.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?passmark\.com/ + to + https://$1passmark.com/ + + securecookie + + host + ^www\.passmark\.com$ + name + .+ + + target + + + host + passmark.com + + + host + *.passmark.com + + + + + PassMark.com (partial) + + ruleset + + name + PassMark.com (partial) + rule + + from + ^http://(www\.)?passmark\.com/(?!forum(?!/cron\.php|/css\.php|/favicon\.ico|/images/)) + to + https://$1passmark.com/ + + target + + + host + passmark.com + + + host + www.passmark.com + + + + + PassSource + + ruleset + + name + PassSource + rule + + from + ^http://(www\.)?passsource\.com/ + to + https://$1passsource.com/ + + securecookie + + host + ^(?:www\.)?passsource\.com$ + name + .+ + + target + + + host + passsource.com + + + host + www.passsource.com + + + + + PassThePopcorn + + ruleset + + name + PassThePopcorn + rule + + + from + ^https?://(?:tls\.|www\.)?passthepopcorn\.me/ + to + https://tls.passthepopcorn.me/ + + + from + ^http://static\.passthepopcorn\.me/ + to + https://static.passthepopcorn.me/ + + + target + + + host + passthepopcorn.me + + + host + *.passthepopcorn.me + + + + + PassageBank (partial) + + ruleset + + name + PassageBank (partial) + rule + + from + ^http://(www\.)?passagebank\.com/img/ + to + https://$1passagebank.com/img/ + + target + + + host + passagebank.com + + + host + www.passagebank.com + + + + + Passed.cc + + ruleset + + name + Passed.cc + rule + + from + ^http://(www\.)?passed\.cc/ + to + https://$1passed.cc/ + + securecookie + + host + ^(?:w*\.)?passed\.cc$ + name + .+ + + target + + + host + passed.cc + + + host + *.passed.cc + + + + + Passion-Radio.com (partial) + + ruleset + + name + Passion-Radio.com (partial) + rule + + from + ^http://(uk\.|www\.)?passion-radio\.com/(?=\d+-(?:home|medium)_default/|(?:fr/authentification|fr/mon-compte|gb/authentification|gb/contact-us)(?:$|[?/])|img/|js/|modules/|themes/) + to + https://$1passion-radio.com/ + + target + + + host + passion-radio.com + + + host + *.passion-radio.com + + + + + Passionfruit Ads.com (partial) + + ruleset + + name + Passionfruit Ads.com (partial) + rule + + + from + ^http://(?:app\.|www\.)?passionfruitads\.com/ + to + https://app.passionfruitads.com/ + + + from + ^http://load\.passionfruitads\.com/ + to + https://passionfruit.herokuapp.com/ + + + securecookie + + host + ^app\.passionfruitads\.com$ + name + .+ + + target + + + host + passionfruitads.com + + + host + *.passionfruitads.com + + + + + Passwd.io + + ruleset + + name + Passwd.io + platform + firefox + rule + + from + ^http://passwd\.io/ + to + https://passwd.io/ + + securecookie + + host + ^passwd\.io$ + name + .+ + + target + + host + passwd.io + + + + Password-Hashing.net + + ruleset + + name + Password-Hashing.net + rule + + from + ^http://(www\.)?password-hashing\.net/ + to + https://$1password-hashing.net/ + + target + + + host + password-hashing.net + + + host + www.password-hashing.net + + + + + PasswordBox.com + + ruleset + + name + PasswordBox.com + rule + + + from + ^http://(blog\.|www\.)?passwordbox\.com/ + to + https://$1passwordbox.com/ + + + from + ^http://((?:assets-production|extensions|www)\.)?psswrdbx\.com/ + to + https://$1psswrdbx.com/ + + + securecookie + + + host + ^\.passwordbox.com$ + name + .+ + + + host + ^\.psswrdbx\.com$ + name + .+ + + + target + + + host + passwordbox.com + + + host + *.passwordbox.com + + + host + psswrdbx.com + + + host + *.psswrdbx.com + + + + + PasswordCard + + ruleset + + name + PasswordCard + rule + + from + ^http://(?:www\.)?passwordcard\.org/ + to + https://www.passwordcard.org/ + + target + + + host + passwordcard.org + + + host + www.passwordcard.org + + + + + PasswordsCon (partial) + + ruleset + + name + PasswordsCon (partial) + rule + + from + ^http://(www\.)?passwordscon\.org/ + to + https://$1passwordscon.org/ + + securecookie + + host + ^\.?passwordscon\.org$ + name + .+ + + target + + + host + passwordscon.org + + + host + *.passwordscon.org + + + + + Paste Magazine.com (partial) + + ruleset + + name + Paste Magazine.com (partial) + rule + + from + ^http://cdn\.pastemagazine\.com/ + to + https://a248.e.akamai.net/f/1856/1878/7/pastemagazine.com/ + + target + + host + cdn.pastemagazine.com + + + + PasteVault.com + + ruleset + + name + PasteVault.com + rule + + from + ^http://(www\.)?pastevault\.com/ + to + https://$1pastevault.com/ + + target + + + host + pastevault.com + + + host + www.pastevault.com + + + + + Pastee.org + + ruleset + + name + Pastee.org + rule + + from + ^http://(?:www\.)?pastee\.org/ + to + https://pastee.org/ + + target + + + host + pastee.org + + + host + www.pastee.org + + + + + Pasteur.fr (partial) + + ruleset + + name + Pasteur.fr (partial) + rule + + from + ^http://(don|www)\.pasteur\.fr/ + to + https://$1.pasteur.fr/ + + securecookie + + host + ^don\.pasteur\.fr$ + name + .+ + + target + + host + *.pasteur.fr + + + + Patch of Land.com + + ruleset + + name + Patch of Land.com + rule + + from + ^http://(?:www\.)?patchofland\.com/ + to + https://patchofland.com/ + + securecookie + + host + ^patchofland\.com$ + name + .+ + + target + + + host + patchofland.com + + + host + www.patchofland.com + + + + + Path of Exile.com + + ruleset + + name + Path of Exile.com + rule + + + from + ^http://(www\.)?pathofexile\.com/ + to + https://$1pathofexile.com/ + + + from + ^http://webcdn\.pathofexile\.com/ + to + https://web-grindinggear.netdna-ssl.com/ + + + securecookie + + host + ^www\.pathofexile\.com$ + name + .+ + + target + + + host + pathofexile.com + + + host + *.pathofexile.com + + + + + PathDefender.com + + ruleset + + name + PathDefender.com + rule + + from + ^http://(www\.)?pathdefender\.com/ + to + https://$1pathdefender.com/ + + securecookie + + host + ^www\.pathdefender\.com$ + name + .+ + + target + + + host + pathdefender.com + + + host + www.pathdefender.com + + + + + PaulDotCom.com (partial, false MCB) + + ruleset + + name + PaulDotCom.com (partial, false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?pauldotcom\.com/ + to + https://$1pauldotcom.com/ + + securecookie + + host + ^(?:www\.)?pauldotcom\.com$ + name + .+ + + target + + + host + pauldotcom.com + + + host + www.pauldotcom.com + + + + + Paxetia (partial) + + ruleset + + name + Paxetia (partial) + rule + + + from + ^http://patexia\.com/ + to + https://patexia.com/ + + + from + ^http://www\.patexia\.com/(css|data|fonts|images|users?)/ + to + https://www.patexia.com/$1/ + + + target + + + host + patexia.com + + + host + www.patexia.com + + + + + Paxton Record (partial) + + ruleset + + name + Paxton Record (partial) + rule + + from + ^http://(?:www\.)?paxtonrecord\.net/(misc/|sites/|user(?:$|\?|/)) + to + https://www.paxtonrecord.net/$1 + + target + + + host + paxtonrecord.net + + + host + www.paxtonrecord.net + + + + + Pay Dirt Gold.com + + ruleset + + name + Pay Dirt Gold.com + rule + + from + ^http://(store\.|www\.)?paydirtgold\.com/ + to + https://$1paydirtgold.com/ + + securecookie + + host + ^(?:\.|store\.)?paydirtgold\.com$ + name + .+ + + target + + + host + paydirtgold.com + + + host + *.paydirtgold.com + + + + + Pay.gov + + ruleset + + name + Pay.gov + rule + + from + ^http://([\w\-]+\.)?pay\.gov/ + to + https://$1pay.gov/ + + securecookie + + host + ^\.?pay\.gov$ + name + .+ + + target + + + host + pay.gov + + + host + *.pay.gov + + + + + PayPal + + ruleset + + name + PayPal + rule + + + from + ^http://(www\.)?paypal\.co(\.uk|m)/ + to + https://$1paypal.co$2/ + + + from + ^http://((?:qa-)?advertising|(?:stg-)?campaigns|cms|(?:pilot-|qa-|stg-)?coupons|fpdbs|images|pics)\.paypal\.com/ + to + https://$1.paypal.com/ + + + from + ^http://www\.paypalobjects\.com/ + to + https://www.paypalobjects.com/ + + + securecookie + + + host + ^\.paypal\.com$ + name + ^s_\w+$ + + + host + ^(?:(?:qa-|stg-)?coupons|www)\.paypal\.com$ + name + .+ + + + target + + + host + paypal.co.uk + + + host + www.paypal.co.uk + + + host + paypal.com + + + host + *.paypal.com + + + host + www.paypalobjects.com + + + + + PayPal | Forward + + ruleset + + name + PayPal | Forward + rule + + from + ^http://(www\.)?paypal-forward\.com/ + to + https://$1paypal-forward.com/ + + target + + + host + paypal-forward.com + + + host + www.paypal-forward.com + + + + + PayPerPost.com + + ruleset + + name + PayPerPost.com + rule + + from + ^http://(www\.)?payperpost\.com/ + to + https://$1payperpost.com/ + + securecookie + + host + ^(?:www\.)?payperpost\.com$ + name + .+ + + target + + + host + payperpost.com + + + host + www.payperpost.com + + + + + Paycheckrecords.com + + ruleset + + name + Paycheckrecords.com + platform + firefox + rule + + from + ^http://(www\.)?paycheckrecords\.com/ + to + https://www.paycheckrecords.com/ + + securecookie + + host + ^www\.paycheckrecords\.com$ + name + .+ + + target + + + host + www.paycheckrecords.com + + + host + paycheckrecords.com + + + + + Paymentech.com (partial) + + ruleset + + name + Paymentech.com (partial) + rule + + + from + ^http://(?:www\.)?paymentech\.com/(?:$|\?.*) + to + https://www.chasepaymentech.com/ + + + from + ^http://secure\.paymentech\.com/ + to + https://secure.paymentech.com/ + + + securecookie + + host + ^secure\.paymentech\.com$ + name + .+ + + target + + + host + paymentech.com + + + host + *.paymentech.com + + + + + Paymill.com + + ruleset + + name + Paymill.com + platform + firefox + rule + + from + ^http://paymill\.com/ + to + https://paymill.com/ + + securecookie + + host + ^paymill\.com$ + name + .+ + + target + + host + paymill.com + + + + Paymill.de + + ruleset + + name + Paymill.de + platform + firefox + rule + + from + ^http://paymill\.de/ + to + https://paymill.de/ + + securecookie + + host + ^paymill\.de$ + name + .+ + + target + + host + paymill.de + + + + Paymo + + ruleset + + name + Paymo + rule + + from + ^http://(app\.|www\.)?paymo\.biz/ + to + https://$1paymo.biz/ + + securecookie + + host + ^app\.paymo\.biz$ + name + .+ + + target + + + host + paymo.biz + + + host + *.paymo.biz + + + + + Paysol.se + + ruleset + + name + Paysol.se + rule + + from + ^http://secure\.paysol\.se/ + to + https://secure.paysol.se/ + + securecookie + + host + ^secure\.paysol\.se$ + name + .* + + target + + host + secure.paysol.se + + + + Payson + + ruleset + + name + Payson + rule + + from + ^http://(?:www\.)?payson\.se/ + to + https://www.payson.se/ + + securecookie + + host + ^(?:www)?\.payson\.se$ + name + .+ + + target + + + host + payson.se + + + host + *.payson.se + + + + + Paytoll + + ruleset + + name + Paytoll + rule + + from + ^http://secure\.paytoll\.eu/ + to + https://secure.paytoll.eu/ + + securecookie + + host + ^secure\.paytoll\.eu$ + name + .+ + + target + + host + secure.paytoll.eu + + + + Payza + + ruleset + + name + Payza + rule + + + from + ^http://(?:www\.)?payza\.com/ + to + https://www.payza.com/ + + + from + ^http://secure\.payza\.com/ + to + https://secure.payza.com/ + + + securecookie + + host + .+\.payza\.com$ + name + .+ + + target + + + host + payza.com + + + host + *.payza.com + + + + + PbGrd.com + + ruleset + + name + PbGrd.com + rule + + from + ^http://(?:delivery\.|www\.)?pbgrd\.com/ + to + https://delivery.pbgrd.com/ + + securecookie + + host + ^delivery\.pbgrd\.com$ + name + .+ + + target + + + host + pbgrd.com + + + host + *.pbgrd.com + + + + + Pcp.ch + + ruleset + + name + Pcp.ch + rule + + from + ^http://(www\.)?pcp\.ch/ + to + https://www.pcp.ch/ + + securecookie + + host + ^www\.pcp\.ch$ + name + .* + + target + + + host + pcp.ch + + + host + www.pcp.ch + + + + + Pcwelt.de + + ruleset + + name + Pcwelt.de + platform + mixedcontent + rule + + from + ^http://(mobil|www)\.pcwelt\.de/ + to + https://$1.pcwelt.de/ + + target + + host + *.pcwelt.de + + + + Peace Center for the Performing Arts (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?peacecenter\.org/(?:index\.php)?(?:\?.*)?$ + + name + Peace Center for the Performing Arts (partial) + rule + + from + ^http://(www\.)?peacecenter\.org/ + to + https://$1peacecenter.org/ + + target + + + host + peacecenter.org + + + host + www.peacecenter.org + + + + + Pearl Foundation (partial) + + ruleset + + name + Pearl Foundation (partial) + platform + mixedcontent + rule + + from + ^http://donate\.perlfoundation\.org/ + to + https://donate.perlfoundation.org/ + + securecookie + + host + ^donate\.perlfoundation\.org$ + name + .* + + target + + host + donate.perlfoundation.org + + + + Pearson (partial) + + ruleset + + name + Pearson (partial) + platform + mixedcontent + rule + + + from + ^http://(developer|neo)\.pearson\.com/ + to + https://$1.pearson.com/ + + + from + ^http://register\.pearsoncmg\.com/ + to + https://register.pearsoncmg.com/ + + + from + ^http://(?:www8?\.)?(?:pearson)?vue\.com/ + to + https://www8.pearsonvue.com/ + + + securecookie + + + host + ^\.?(?:developer|neo)\.pearson\.com$ + name + .+ + + + host + ^register\.pearsoncmg\.com$ + name + .+ + + + host + ^www8\.pearsonvue\.com$ + name + .+ + + + target + + + host + *.pearson.com + + + host + register.pearsoncmg.com + + + host + pearsonvue.com + + + host + *.pearsonvue.com + + + host + vue.com + + + host + www.vue.com + + + + + Pebble (partial) + + ruleset + + name + Pebble (partial) + rule + + + from + ^https?://(?:www\.)?getpebble\.com/global/ + to + https://pebble.myshopify.com/global/ + + + from + ^http://(account|developer)\.getpebble\.com/ + to + https://$1.getpebble.com/ + + + from + ^https?://forums\.getpebble\.com/ + to + https://pebble.vanillaforums.com/ + + + securecookie + + host + ^account\.getpebble\.com$ + name + .+ + + target + + + host + getpebble.com + + + host + *.getpebble.com + + + + + Peepd.com (partial) + + ruleset + + name + Peepd.com (partial) + rule + + + from + ^http://www\.peepd\.com/ + to + https://peepd.com/ + + + from + ^http://peepd\.com/(images/|index\.php|skins/) + to + https://peepd.com/$1 + + + target + + + host + peepd.com + + + host + www.peepd.com + + + + + Peer1.ca (partial) + + ruleset + + name + Peer1.ca (partial) + rule + + from + ^http://(www\.)?partners\.peer1\.ca/ + to + https://$1partners.peer1.ca/ + + securecookie + + host + ^(?:www\.)?partners\.peer1\.ca$ + name + .+ + + target + + host + *.peer1.com + + + + PeerJ (partial) + + ruleset + + name + PeerJ (partial) + rule + + from + ^http://(www\.)?peerj\.com/ + to + https://$1peerj.com/$2 + + securecookie + + host + ^(?:www\.)?peerj\.com$ + name + .+ + + target + + + host + peerj.com + + + host + www.peerj.com + + + + + PeerLibrary.org (partial) + + ruleset + + name + PeerLibrary.org (partial) + rule + + from + ^http://(www\.)?peerlibrary\.org/ + to + https://$1peerlibrary.org/ + + target + + + host + peerlibrary.org + + + host + www.peerlibrary.org + + + + + Peercraft + + ruleset + + name + Peercraft + rule + + from + ^http://(www\.)?peercraft\.com/ + to + https://$1peercraft.com/ + + target + + + host + peercraft.com + + + host + www.peercraft.com + + + + + PeeringDB + + ruleset + + name + PeeringDB + rule + + from + ^http://(www\.)?peeringdb\.com/ + to + https://$1peeringdb.com/ + + securecookie + + host + ^(www\.)?peeringdb\.com$ + name + .* + + target + + + host + peeringdb.com + + + host + www.peeringdb.com + + + + + Peerius.com (partial) + + ruleset + + name + Peerius.com (partial) + rule + + from + ^http://(?!deutsch\.|www\.)([\w-]+)\.peerius\.com/ + to + https://$1.peerius.com/ + + target + + host + *.peerius.com + + + + Pega (partial) + + ruleset + + name + Pega (partial) + rule + + + from + ^https?://(?:www\.)?pega\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.pega.com/$1 + + + from + ^http://staging\.pega\.com/(sites/|user(?:$|\?|/)) + to + https://staging.pega.com/$1 + + + target + + + host + pega.com + + + host + *.pega.com + + + + + Pegaz Hosting.com (partial) + + ruleset + + name + Pegaz Hosting.com (partial) + rule + + from + ^http://secure\.pegazhosting\.com/ + to + https://secure.pegazhosting.com/ + + securecookie + + host + ^secure\.pegazhosting\.com$ + name + .+ + + target + + host + secure.pegazhosting.com + + + + Pegelf.de + + ruleset + + exclusion + + pattern + ^http://blog\.pegelf\.de/ + + name + Pegelf.de + rule + + from + ^http://(www\.)?pegelf\.de/ + to + https://pegelf.de/ + + target + + + host + www.pegelf.de + + + host + pegelf.de + + + + + Penango (partial) + + ruleset + + name + Penango (partial) + rule + + from + ^http://(bugzilla\.|www\.)?penango\.com/ + to + https://$1penango.com/ + + securecookie + + host + ^.+\.penango\.com$ + name + .+ + + target + + + host + penango.com + + + host + *.penango.com + + + + + Penfold Golf + + ruleset + + name + Penfold Golf + rule + + from + ^http://(www\.)?penfoldgolf\.com/ + to + https://$1penfoldgolf.com/ + + securecookie + + host + ^(?:\.?www)?\.penfoldgolf\.com$ + name + .+ + + target + + + host + penfoldgolf.com + + + host + *.penfoldgolf.com + + + + + PengPod.com + + ruleset + + name + PengPod.com + rule + + from + ^http://(www\.)?pengpod\.com/ + to + https://$1pengpod.com/ + + securecookie + + host + ^(?:.*\.)?pengpod\.com$ + name + .+ + + target + + + host + pengpod.com + + + host + *.pengpod.com + + + + + PenguinWebHosting (partial) + + ruleset + + name + PenguinWebHosting (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?pcicomplianthosting\.com/ + to + https://$1pcicomplianthosting.com/ + + + from + ^http://ssl134\.penguinhost\.net/ + to + https://ssl134.penguinhost.net/ + + + from + ^https?://(?:www\.)?penguinwebhosting\.com/ + to + https://www.pcicomplianthosting.com/ + + + from + ^http://secure\.penguinwebhosting\.com/ + to + https://secure.penguinwebhosting.com/ + + + target + + + host + pcicomplianthosting.com + + + host + *.pcicomplianthosting.com + + + host + ssl134.penguinhost.net + + + host + penguinwebhosting.com + + + host + *.penguinwebhosting.com + + + + + Peninsula College of Medicine & Dentistry (partial) + + ruleset + + exclusion + + pattern + ^http://pdsdef\. + + name + Peninsula College of Medicine & Dentistry (partial) + rule + + from + ^http://(\w+\.)?pcmd\.ac\.uk/ + to + https://$1pcmd.ac.uk/ + + securecookie + + host + ^(.*\.)?pcmd\.ac\.uk$ + name + .* + + target + + + host + pcmd.ac.uk + + + host + *.pcmd.ac.uk + + + + + Peninsula Library System (partial) + + ruleset + + name + Peninsula Library System (partial) + platform + mixedcontent + rule + + + from + ^http://(catalog|ezproxy)\.plsinfo\.org/ + to + https://$1.plsinfo.org/ + + + from + ^http://plsiii\.plsinfo\.org/ + to + https://catalog.plsinfo.org/ + + + securecookie + + host + ^(catalog|ezproxy)\.plsinfo\.org$ + name + .+ + + target + + + host + catalog.plsinfo.org + + + host + ezproxy.plsinfo.org + + + host + plsiii.plsinfo.org + + + + + Pennsylvania Association for Justice + + ruleset + + name + Pennsylvania Association for Justice + rule + + from + ^http://(eseries\.|www\.)?pajustice\.org/ + to + https://$1pajustice.org/ + + securecookie + + host + ^.+\.pajustice\.org$ + name + .+ + + target + + + host + pajustice.org + + + host + *.pajustice.org + + + + + Pennsylvania State University (partial) + + ruleset + + exclusion + + + pattern + ^http://blogs\.psu\.edu/(?!mt4/) + + + pattern + ^http://www\.cse\.psu\.edu/~ + + + name + Pennsylvania State University (partial) + rule + + + from + ^http://(alumni|blogs|cms|www\.cse|elion|(?:cat|ill)\.libraries|elionfacadv\.oas|(?:(?:appnew|www)\.)?outreach|portal|webaccess|webmail)\.psu\.edu/ + to + https://$1.psu.edu/ + + + from + ^http://citeseerx\.ist\.psu\.edu/m(csutils/newAccount|yciteseer/login) + to + https://citeseerx.ist.psu.edu/m$1 + + + from + ^http://(?:www\.)?e-education\.psu\.edu/ + to + https://www.e-education.psu.edu/ + + + from + ^https?://(?:www\.)?(libraries|worldcampus)\.psu\.edu/ + to + https://www.$1.psu.edu/ + + + from + ^https://(?:secure)?apps\.libraries\.psu\.edu/ + to + https://secureapps.libraries.psu/ + + + securecookie + + host + ^(?:cms|\.e-education|elion(?:facadv\.oas)?|secureapps\.libraries|appnew\.outreach|webaccess)\.psu\.edu$ + name + .* + + target + + + host + *.psu.edu + + + host + www.*.psu.edu + + + host + citeseerx.ist.psu.edu + + + host + *.libraries.psu.edu + + + host + elionfacadv.oas.psu.edu + + + host + appnew.outreach.psu.edu + + + + + PensionsMyndigheten.se + + ruleset + + name + PensionsMyndigheten.se + rule + + + from + ^http://www\.pensionsmyndigheten\.se/ + to + https://secure.pensionsmyndigheten.se/ + + + from + ^http://pensionsmyndigheten\.se/ + to + https://secure.pensionsmyndigheten.se/ + + + target + + + host + pensionsmyndigheten.se + + + host + www.pensionsmyndigheten.se + + + + + PentesterLab (partial) + + ruleset + + name + PentesterLab (partial) + rule + + from + ^http://(www\.)?pentesterlab\.com/ + to + https://pentesterlab.com/ + + target + + + host + pentesterlab.com + + + host + www.pentesterlab.com + + + + + Penton Media (partial) + + ruleset + + exclusion + + pattern + ^http://tech\.pentontech\.com/(?!eloquaimages/) + + name + Penton Media (partial) + rule + + + from + ^https?://metrics\.(?:pisces-)?penton\.com/ + to + https://pentonmedia.122.2o7.net/ + + + from + ^https?://(?:images\.)?tech\.pentontech\.com/ + to + https://secure.eloqua.com/ + + + securecookie + + host + ^\.penton\.com$ + name + ^s_vi$ + + target + + + host + metrics.penton.com + + + host + *.pentontech.com + + + host + metrics.pisces-penton.com + + + + + People's Choice Awards + + ruleset + + exclusion + + pattern + ^http://(?:cdn\.|www\.)?peopleschoice\.com/(?!pca/(?:css/|img/|login\.jsp|register\.jsp)) + + name + People's Choice Awards + rule + + from + ^https?://(?:cdn\.|(www\.))?peopleschoice\.com/ + to + https://$1peopleschoice.com/ + + target + + + host + peopleschoice.com + + + host + *.peopleschoice.com + + + + + PeopleFluent.com (partial) + + ruleset + + name + PeopleFluent.com (partial) + rule + + + from + ^http://(?:www\.)?peoplefluent\.com/ + to + https://www.peoplefluent.com/ + + + from + ^http://(customers|idp)\.peoplefluent\.com/ + to + https://$1.peoplefluent.com/ + + + securecookie + + host + ^\.peoplefluent\.com$ + name + .+ + + target + + + host + peoplefluent.com + + + host + *.peoplefluent.com + + + + + Peopleclick.com (false MCB) + + ruleset + + name + Peopleclick.com (false MCB) + platform + mixedcontent + rule + + from + ^http://careers\.peopleclick\.com/ + to + https://careers.peopleclick.com/ + + target + + host + careers.peopleclick.com + + + + Peopleclick.com (partial) + + ruleset + + exclusion + + pattern + ^http://careers\.peopleclick\.com/+(?!content/) + + name + Peopleclick.com (partial) + rule + + + from + ^http://(?:www\.)?peopleclick\.com/ + to + https://www.peoplefluent.com/ + + + from + ^http://(careers|saml)\.peopleclick\.com/ + to + https://$1.peopleclick.com/ + + + target + + + host + peopleclick.com + + + host + *.peopleclick.com + + + + + PepperJam Exchange (partial) + + ruleset + + name + PepperJam Exchange (partial) + rule + + + from + ^http://(www\.)?pepperjamnetwork\.com/ + to + https://$1pepperjamnetwork.com/ + + + from + ^https?://media\.pepperjamnetwork\.com/ + to + https://s3.amazonaws.com/media.pepperjamnetwork.com/ + + + securecookie + + host + ^www\.pepperjamnetwork\.com$ + name + .+ + + target + + + host + pepperjamnetwork.com + + + host + *.pepperjamnetwork.com + + + + + Pepperfish (partial) + + ruleset + + name + Pepperfish (partial) + rule + + from + ^http://secure\.pepperfish\.net/ + to + https://secure.pepperfish.net/ + + target + + host + secure.pepperfish.net + + + + Percona (partial) + + ruleset + + name + Percona (partial) + rule + + + from + ^https?://form\.percona\.com/(cs|image|r)s/ + to + https://na-n.marketo.com/$1s/ + + + from + ^http://(customers\.|s\d\.|www\.)?percona\.com/ + to + https://$1percona.com/ + + + securecookie + + host + ^customers\.percona\.com$ + name + .+ + + target + + + host + percona.com + + + host + *.percona.com + + + + + Perfect Audience + + ruleset + + name + Perfect Audience + rule + + + from + ^http://((?:app|tag|www)\.)?perfectaudience\.com/ + to + https://$1perfectaudience.com/ + + + from + ^https?://blog\.perfectaudience\.com/ + to + https://perfectaudienc.wpengine.com/ + + + securecookie + + host + ^www\.perfectaudience\.com$ + name + .+ + + target + + + host + perfectaudience.com + + + host + *.perfectaudience.com + + + + + Perfect Market.com (partial) + + ruleset + + name + Perfect Market.com (partial) + rule + + from + ^http://(vault|widget)\.perfectmarket\.com/ + to + https://$1.perfectmarket.com/ + + target + + host + *.perfectmarket.com + + + + Perfect Money + + ruleset + + name + Perfect Money + rule + + from + ^http://(www\.)?perfectmoney\.com/ + to + https://$1perfectmoney.com/ + + securecookie + + host + ^(?:www\.)?perfectmoney\.com$ + name + .+ + + target + + + host + perfectmoney.com + + + host + www.perfectmoney.com + + + + + Perfect Sense Digital (partial) + + ruleset + + name + Perfect Sense Digital (partial) + rule + + from + ^http://cdn\.psddev\.com/ + to + https://d1xlwtusml8gh6.cloudfront.net/ + + target + + host + cdn.psddev.com + + + + Perform (partial) + + ruleset + + name + Perform (partial) + rule + + from + ^http://(autodiscover|cms|legacy|webmail)\.performgroup\.com/ + to + https://$1.performgroup.com/ + + target + + host + *.performgroup.com + + + + Performable.com + + ruleset + + name + Performable.com + rule + + from + ^http://analytics\.performable\.com/ + to + https://analytics.performable.com/ + + target + + host + analytics.performable.com + + + + Performance Alley Racing (partial) + + ruleset + + name + Performance Alley Racing (partial) + rule + + from + ^http://(shop\.|www\.)?performancealley\.com/ + to + https://$1performancealley.com/ + + securecookie + + host + ^(?:.*\.)?performancealley\.com$ + name + .+ + + target + + + host + performancealley.com + + + host + *.performancealley.com + + + + + Performance Horizon Group + + ruleset + + name + Performance Horizon Group + platform + mixedcontent + rule + + + from + ^http://(www\.)?performancehorizon\.com/ + to + https://$1performancehorizon.com/ + + + from + ^https?://(?:www\.)?prf\.hn/ + to + https://prf.hn/ + + + securecookie + + host + ^\.prf\.hn$ + name + .* + + target + + + host + performancehorizon.com + + + host + www.performancehorizon.com + + + host + prf.hn + + + host + *.prf.hn + + + + + Performance Wheel & Tire Warehouse + + ruleset + + name + Performance Wheel & Tire Warehouse + rule + + from + ^http://(www\.)?performancewheel\.com/ + to + https://$1performancewheel.com/ + + target + + + host + performancewheel.com + + + host + www.performancewheel.com + + + + + Performancing (partial) + + ruleset + + name + Performancing (partial) + rule + + from + ^http://pmetrics\.performancing\.com/ + to + https://pmetrics.performancing.com/ + + target + + host + pmetrics.performancing.com + + + + Perl.org (partial) + + ruleset + + name + Perl.org (partial) + rule + + + from + ^http://(?:www\.)?perl\.org/ + to + https://www.perl.org/ + + + from + ^http://log\.perl\.org/favicon\.ico + to + https://www.blogger.com/favicon.ico + + + from + ^http://(pause|rt)\.perl\.org/ + to + https://$1.perl.org/ + + + securecookie + + host + ^rt\.perl\.org$ + name + .+ + + target + + + host + perl.org + + + host + *.perl.org + + + + + Personal Data Ecosystem Consortium (partial) + + ruleset + + name + Personal Data Ecosystem Consortium (partial) + rule + + from + ^http://(?:www\.)?p(?:de\.cc|ersonaldataecosystem\.org)/(\?custom-css=|favicon\.ico|wp-content/) + to + https://secure.bluehost.com/~pdecc/$1 + + target + + + host + pde.cc + + + host + www.pde.cc + + + host + personaldataecosystem.org + + + host + www.personaldataecosystem.org + + + + + Personal Democracy Forum + + ruleset + + name + Personal Democracy Forum + rule + + from + ^http://(www\.)?personaldemocracy\.com/ + to + https://$1personaldemocracy.com/ + + securecookie + + host + ^\.personaldemocracy\.com$ + name + .+ + + target + + + host + personaldemocracy.com + + + host + *.personaldemocracy.com + + + + + Personality Page + + ruleset + + name + Personality Page + rule + + + from + ^https?://personalitypage\.com/ + to + https://www.personalitypage.com/ + + + from + ^http://([^/:@]+)?\.personalitypage\.com/ + to + https://$1.personalitypage.com/ + + + securecookie + + host + ^(.*\.)?personalitypage\.com$ + name + .+ + + target + + + host + personalitypage.com + + + host + *.personalitypage.com + + + + + Personforce (partial) + + ruleset + + name + Personforce (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?personforce\.com/images/pencil_(add|go)\.png$ + to + https://secure.personforce.com/images/pencil_$1.png + + + from + ^http://secure\.personforce\.com/ + to + https://secure.personforce.com/ + + + target + + + host + personforce.com + + + host + *.personforce.com + + + + + Pet Nanny + + ruleset + + name + Pet Nanny + rule + + from + ^http://(www\.)?pet-nanny\.net/ + to + https://$1pet-nanny.net/ + + securecookie + + host + ^(?:www\.)?pet-nanny\.net$ + name + .+ + + target + + + host + pet-nanny.net + + + host + www.pet-nanny.net + + + + + Pete Keen.net + + ruleset + + name + Pete Keen.net + rule + + from + ^http://(www\.)?petekeen\.net/ + to + https://$1petekeen.net/ + + target + + + host + petekeen.net + + + host + www.petekeen.net + + + + + Peter Caprioli + + ruleset + + name + Peter Caprioli + rule + + from + ^http://(www\.)?caprioli\.se/ + to + https://$1caprioli.se/ + + securecookie + + host + ^(www\.)?caprioli\.se$ + name + .* + + target + + + host + caprioli.se + + + host + www.caprioli.se + + + + + Peter Odding.com + + ruleset + + name + Peter Odding.com + rule + + from + ^http://(www\.)?peterodding\.com/ + to + https://$1peterodding.com/ + + target + + + host + peterodding.com + + + host + www.peterodding.com + + + + + Petridish (partial) + + ruleset + + name + Petridish (partial) + rule + + from + ^http://media\.petridish\.org/ + to + https://s3.amazonaws.com/media.petridish.org/ + + target + + host + media.petridish.org + + + + Petrogen.com + + ruleset + + name + Petrogen.com + rule + + from + ^http://(?:www\.)?petrogen\.com/ + to + https://www.petrogen.com/ + + securecookie + + host + ^www\.petrogen\.com$ + name + .+ + + target + + + host + petrogen.com + + + host + www.petrogen.com + + + + + Pets at Home + + ruleset + + name + Pets at Home + platform + mixedcontent + rule + + from + ^http://(www\.)?petsathome\.com/ + to + https://www.petsathome.com/ + + target + + + host + petsathome.com + + + host + www.petsathome.com + + + + + Petstore.com + + ruleset + + name + Petstore.com + rule + + from + ^http://(?:www\.)?petstore\.com/ + to + https://www.petstore.com/ + + securecookie + + host + ^\.petstore\.com$ + name + .+ + + target + + + host + petstore.com + + + host + *.petstore.com + + + + + Petteri Räty (partial) + + ruleset + + name + Petteri Räty (partial) + rule + + from + ^http://(?:(mail\.)|www\.)?petteriraty\.eu/ + to + https://$1petteriraty.eu/ + + target + + + host + petteriraty.eu + + + host + *.petteriraty.eu + + + + + PewDiePie.net + + ruleset + + name + PewDiePie.net + rule + + from + ^http://(www\.)?pewdiepie\.net/ + to + https://$1pewdiepie.net/ + + securecookie + + host + ^(?:w*\.)?pewdiepie\.net$ + name + .+ + + target + + + host + pewdiepie.net + + + host + *.pewdiepie.net + + + + + Pfizer (partial) + + ruleset + + name + Pfizer (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?pfizer(helpfulanswers)?\.com/ + to + https://www.pfizer$1.com/ + + + from + ^http://animalhealth\.pfizer\.com/ + to + https://animalhealth.pfizer.com/ + + + from + ^http://(www\.)?pfizerpro\.com/ + to + https://$1pfizerpro.com/ + + + securecookie + + host + ^(.*\.)?pfizer(helpfulanswers|pro)?\.com$ + name + .* + + target + + + host + pfizer.com + + + host + *.pfizer.com + + + host + pfizerpro.com + + + host + *.pfizerpro.com + + + host + pfizerhelpfulanswers.com + + + host + *.pfizerhelpfulanswers.com + + + + + Phabricator.com (partial) + + ruleset + + name + Phabricator.com (partial) + rule + + from + ^http://secure\.phabricator\.com/ + to + https://secure.phabricator.com/ + + securecookie + + host + ^\.secure\.phabricator\.com$ + name + .+ + + target + + host + *.phabricator.com + + + + PhantomPeer.com + + ruleset + + name + PhantomPeer.com + rule + + from + ^http://(www\.)?phantompeer\.com/ + to + https://$1phantompeer.com/ + + securecookie + + host + ^(?:www\.)?phantompeer\.com$ + name + .+ + + target + + + host + phantompeer.com + + + host + www.phantompeer.com + + + + + Pheedo.com (partial) + + ruleset + + name + Pheedo.com (partial) + rule + + + from + ^http://(www\.)?pheedo\.com/ + to + https://$1pheedo.com/ + + + from + ^http://(?:ad|image)s\.pheedo\.com/ + to + https://www.pheedo.com/ + + + from + ^http://(?:cforigin\.)?feeds\.pheedo\.com/ + to + https://d2m3yj20rqnr65.cloudfront.net/ + + + securecookie + + host + ^\.pheedo\.com$ + name + ^phdo$ + + target + + + host + pheedo.com + + + host + *.pheedo.com + + + + + Philadelphia Bar Association + + ruleset + + name + Philadelphia Bar Association + rule + + from + ^http://(www\.)?philadelphiabar\.org/ + to + https://$1philadelphiabar.org/ + + securecookie + + host + ^(?:www\.)?philadelphiabar\.org$ + name + .+ + + target + + + host + philadelphiabar.org + + + host + www.philadelphiabar.org + + + + + Philanthropedia + + ruleset + + name + Philanthropedia + rule + + from + ^http://(www\.)?myphilanthropedia\.org/ + to + https://$1myphilanthropedia.org/ + + target + + + host + myphilanthropedia.org + + + host + www.myphilanthropedia.org + + + + + Philosophy Documentation Center (partial) + + ruleset + + name + Philosophy Documentation Center (partial) + rule + + from + ^http://(cas|(?:www\.)?secure)\.pdcnet\.org/ + to + https://$1.pdcnet.org/ + + securecookie + + host + ^.+\.pdcnet\.org$ + name + .+ + + target + + + host + *.pdcnet.org + + + host + www.secure.pdcnet.org + + + + + Phils Hobby Shop.com + + ruleset + + name + Phils Hobby Shop.com + rule + + from + ^http://(?:www\.)?philshobbyshop\.com/ + to + https://www.philshobbyshop.com/ + + target + + + host + philshobbyshop.com + + + host + www.philshobbyshop.com + + + + + PhishTank + + ruleset + + name + PhishTank + rule + + + from + ^http://(?:www\.)?phishtank\.com/ + to + https://www.phishtank.com/ + + + from + ^http://(?:www\.)?data\.phishtank\.com/ + to + https://data.phishtank.com/ + + + target + + + host + phishtank.com + + + host + www.phishtank.com + + + host + data.phishtank.com + + + + + Phoenix Media Group (partial) + + ruleset + + name + Phoenix Media Group (partial) + rule + + from + ^http://(www\.)?dealchicken\.com/ + to + https://$1dealchicken.com/ + + securecookie + + host + ^www\.dealchicken\.com$ + name + .* + + target + + + host + dealchicken.com + + + host + www.dealchicken.com + + + + + Phoenix.com + + ruleset + + name + Phoenix.com + rule + + from + ^http://(?:www\.)?phoenix\.com/ + to + https://www.phoenix.com/ + + target + + + host + phoenix.com + + + host + www.phoenix.com + + + + + Phoenix.edu (partial) + + ruleset + + name + Phoenix.edu (partial) + rule + + + from + ^http://cdn\.assets-phoenix\.net/ + to + https://cdn.assets-phoenix.net/ + + + from + ^http://((?:alumni|assets|content|ecampus|portal|sso|www)\.)?phoenix\.edu/ + to + https://$1phoenix.edu/ + + + from + ^http://metrics\.phoenix\.edu/ + to + https://phoenix-edu.d1.sc.omtrdc.net/ + + + from + ^http://assetscdn\.students\.uophx\.edu/ + to + https://assetscdn.students.uophx.edu/ + + + securecookie + + host + ^(?:assets|ecampus)\.phoenix\.edu$ + name + .+ + + target + + + host + cdn.assets-phoenix.net + + + host + phoenix.edu + + + host + *.phoenix.edu + + + host + assetscdn.students.uophx.edu + + + + + Phoronix Media (partial) + + ruleset + + name + Phoronix Media (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?openbenchmarking\.org/(ads/|(?:create/comment/|result/)?css/|embed\.php|favicon\.ico|s/css/) + to + https://$1openbenchmarking.org/$2 + + securecookie + + + host + ^openbenchmarking\.org$ + name + .* + + + host + ^phoromatic\.com$ + name + .* + + + target + + + host + openbenchmarking.org + + + host + www.openbenchmarking.org + + + + + PhotoBlab + + ruleset + + name + PhotoBlab + rule + + from + ^https?://(?:www\.)?photoblab\.com/ + to + https://photoblab.herokuapp.com/ + + target + + + host + photoblab.com + + + host + www.photoblab.com + + + + + PhotoMath.net + + ruleset + + name + PhotoMath.net + rule + + from + ^http://(www\.)?photomath\.net/ + to + https://$1photomath.net/ + + securecookie + + host + ^\.photomath\.net$ + name + .+ + + target + + + host + photomath.net + + + host + *.photomath.net + + + + + PhotoPay.net + + ruleset + + name + PhotoPay.net + rule + + from + ^http://(www\.)?photopay\.net/ + to + https://$1photopay.net/ + + securecookie + + host + ^\.photopay\.net$ + name + .+ + + target + + + host + photopay.net + + + host + *.photopay.net + + + + + PhotoShelter (partial) + + ruleset + + exclusion + + + pattern + ^http://blog\. + + + pattern + ^http://(?:www\.)?photoshelter\.com/(?:about/|mkt/research/)?index(?:$|\?) + + + name + PhotoShelter (partial) + rule + + + from + ^https?://c(?:dn|ss)\.c\.photoshelter\.com/ + to + https://c.photoshelter.com/ + + + from + ^http://(\w+\.)?photoshelter\.com/ + to + https://$1photoshelter.com/ + + + target + + + host + photoshelter.com + + + host + *.photoshelter.com + + + + + PhotoSugar.com + + ruleset + + name + PhotoSugar.com + rule + + + from + ^http://(www\.)?photosugar\.com/ + to + https://$1photosugar.com/ + + + from + ^http://assets\d?\.photosugar\.com/ + to + https://d1bcrgpvrd4eqj.cloudfront.net/ + + + securecookie + + host + ^(?:www)?\.photosugar\.com$ + name + .+ + + target + + + host + photosugar.com + + + host + *.photosugar.com + + + + + Photobucket (partial) + + ruleset + + exclusion + + + pattern + ^http://[is]\d+\.photobucket\.com/+(?!albums/w\d+/\w+/pbprofilepics/) + + + pattern + ^http://s\d+\.beta\.photobucket\.com/(?!action/|component/) + + + name + Photobucket (partial) + rule + + + from + ^http://(www\.)?pbsrc\.com/ + to + https://$1pbsrc.com/ + + + from + ^http://pic\.p(?:bsrc|hotobucket)\.com/ + to + https://pbsrc.com/ + + + from + ^http://o?(pic|static)2\.pbsrc\.com/ + to + https://o$12.pbsrc.com/ + + + from + ^http://b\.photobucket\.com/ + to + https://crtl.aimatch.com/ + + + from + ^http://(?:s\d+\.|secure-)?beta\.photobucket\.com/ + to + https://secure-beta.photobucket.com/ + + + from + ^http://(?:[is]\d+|secure)\.photobucket\.com/ + to + https://secure.photobucket.com/ + + + target + + + host + pbsrc.com + + + host + *.pbsrc.com + + + host + *.photobucket.com + + + + + Photographer.io (partial) + + ruleset + + name + Photographer.io (partial) + rule + + from + ^http://(www\.)?photographer\.io/ + to + https://$1photographer.io/ + + securecookie + + host + ^(?:www)?\.photographer\.io$ + name + .+ + + target + + + host + photographer.io + + + host + *.photographer.io + + + + + PhotographyTalk.com + + ruleset + + name + PhotographyTalk.com + rule + + from + ^http://(www\.)?photographytalk\.com/ + to + https://$1photographytalk.com/ + + securecookie + + host + ^(?:www)?\.photographytalk\.com$ + name + .+ + + target + + + host + photographytalk.com + + + host + *.photographytalk.com + + + + + Photonconsulting.com + + ruleset + + name + Photonconsulting.com + rule + + from + ^http://(www\.)?photonconsulting\.com/ + to + https://www.photonconsulting.com/ + + target + + + host + photonconsulting.com + + + host + www.photonconsulting.com + + + + + Photosynth + + ruleset + + name + Photosynth + platform + mixedcontent + rule + + from + ^https?://(?:cdn\.|(www\.))?photosynth\.net/ + to + https://$1photosynth.net/ + + securecookie + + host + ^(www\.)?photosynth\.net$ + name + .* + + target + + + host + photosynth.net + + + host + *.photosynth.net + + + + + Phusion Passenger.com + + ruleset + + name + Phusion Passenger.com + rule + + from + ^http://(oss-binaries\.|www\.)?phusionpassenger\.com/ + to + https://$1phusionpassenger.com/ + + securecookie + + host + ^www\.phusionpassenger\.com$ + name + .+ + + target + + + host + phusionpassenger.com + + + host + *.phusionpassenger.com + + + + + Piatnik Deutschland + + ruleset + + name + Piatnik Deutschland + rule + + from + ^http://piatnik\.de/ + to + https://piatnik.de/ + + target + + host + piatnik.de + + + + Piatt County Journal-Republican (partial) + + ruleset + + name + Piatt County Journal-Republican (partial) + rule + + from + ^http://(?:www\.)?journal-republican\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.journal-republican.com/$1 + + target + + + host + journal-republican.com + + + host + www.journal-republican.com + + + + + Picatcha (partial) + + ruleset + + name + Picatcha (partial) + rule + + from + ^http://(www\.)?api\.picatcha\.com/ + to + https://$1api.picatcha.com/ + + target + + host + *.picatcha.com + + + + Pickaweb (partial) + + ruleset + + name + Pickaweb (partial) + rule + + + from + ^http://(www\.)?pickaweb\.co\.uk/(.+\.htm|billing/(?!index).+\.php|css/|favicon\.ico|images/|js/) + to + https://$1pickaweb.co.uk/$2 + + + from + ^http://support\.pickaweb\.co\.uk/(assets/) + to + https://app.sirportly.com/$2 + + + target + + + host + pickaweb.co.uk + + + host + *.pickaweb.co.uk + + + + + PicoMoney + + ruleset + + name + PicoMoney + rule + + from + ^http://(www\.)?picomoney\.com/ + to + https://$1picomoney.com/ + + securecookie + + host + ^\.?picomoney\.com$ + name + .+ + + target + + + host + picomoney.com + + + host + *.picomoney.com + + + + + PicoStocks.com + + ruleset + + name + PicoStocks.com + rule + + from + ^http://(?:www\.)?picostocks\.com/+ + to + https://picostocks.com/ + + target + + + host + picostocks.com + + + host + www.picostocks.com + + + + + Picoville.com + + ruleset + + name + Picoville.com + rule + + from + ^http://(assets\.|www\.)?picoville\.com/ + to + https://$1picoville.com/ + + securecookie + + host + ^\.?picoville\.com$ + name + .+ + + target + + + host + picoville.com + + + host + *.picoville.com + + + + + Picplz + + ruleset + + name + Picplz + platform + mixedcontent + rule + + from + ^http://(?:www\.)?picplz\.com/ + to + https://picplz.com/ + + securecookie + + host + ^(.+\.)?picplz\.com$ + name + .* + + target + + + host + picplz.com + + + host + www.picplz.com + + + + + Picsity.com (partial) + + ruleset + + name + Picsity.com (partial) + rule + + from + ^http://(?:ps-assets\.|(www\.))?picsity\.com/ + to + https://$1picsity.com/ + + securecookie + + + host + ^picsity\.com$ + name + .+ + + + host + ^\.picsity\.com$ + name + ^_ga$ + + + target + + + host + picsity.com + + + host + *.picsity.com + + + + + Pictos (partial) + + ruleset + + name + Pictos (partial) + rule + + from + ^http://(get|www\.get|my)\.pictos\.cc/ + to + https://$1.pictos.cc/ + + securecookie + + host + ^my\.pictos\.cc$ + name + .+ + + target + + + host + *.pictos.cc + + + host + www.get.pictos.cc + + + + + Pidgin + + ruleset + + name + Pidgin + rule + + + from + ^http://(www\.)?pidg\.in/ + to + https://$1pidg.in/ + + + from + ^http://(\w+\.)?pidgin\.im/ + to + https://$1pidgin.im/ + + + securecookie + + host + ^developer\.pidgin\.im$ + name + .* + + target + + + host + pidg.in + + + host + www.pidg.in + + + host + pidgin.im + + + host + *.pidgin.im + + + + + PikPok.com + + ruleset + + name + PikPok.com + rule + + from + ^http://(www\.)?pikpok\.com/ + to + https://$1pikpok.com/ + + target + + + host + pikpok.com + + + host + www.pikpok.com + + + + + Pinboard.in + + ruleset + + name + Pinboard.in + rule + + from + ^http://((?:blog|static|www)\.)?pinboard\.in/ + to + https://$1pinboard.in/ + + securecookie + + host + ^(?:www\.)?pinboard\.in$ + name + .+ + + target + + + host + pinboard.in + + + host + *.pinboard.in + + + + + Ping Identity + + ruleset + + name + Ping Identity + rule + + + from + ^http://(?:www\.)?pingidentity\.com/ + to + https://www.pingidentity.com/ + + + from + ^http://connect\.pingidentity\.com/ + to + https://connect.pingidentity.com/ + + + securecookie + + host + ^(?:connect|www)\.pingidentity\.com$ + name + .+ + + target + + + host + pingidentity.com + + + host + *.pingidentity.com + + + + + PingOne.com + + ruleset + + name + PingOne.com + rule + + from + ^http://(admin\.|www\.)?pingone\.com/ + to + https://$1pingone.com/ + + securecookie + + host + ^(?:admin|www)\.pingone\.com$ + name + .+ + + target + + + host + pingone.com + + + host + *.pingone.com + + + + + Pingability.com + + ruleset + + name + Pingability.com + rule + + from + ^http://(?:www\.)?pingability\.com/ + to + https://pingability.com/ + + securecookie + + host + ^(?:www\.)?pingability\.com$ + name + .+ + + target + + + host + pingability.com + + + host + www.pingability.com + + + + + Pingdom (partial) + + ruleset + + name + Pingdom (partial) + rule + + + from + ^http://((?:my|pp|share|support|www)\.)?pingdom\.com/ + to + https://$1pingdom.com/ + + + from + ^http://rum-(collector|static)\.pingdom\.net/ + to + https://rum-$1.pingdom.net/ + + + securecookie + + host + ^(?:support)?\.pingdom\.com$ + name + .+ + + target + + + host + pingdom.com + + + host + *.pingdom.com + + + host + *.pingdom.net + + + + + Pingless (partial) + + ruleset + + name + Pingless (partial) + rule + + from + ^http://(www\.)?pingless\.co\.il/(agent_login|css/|default\.php\?(?:agent_login|make_money|order|support)|epanel2|favicon\.ico|framestats|images/|make_money|\?order|support) + to + https://$1pingless.co.uk/$2 + + target + + + host + pingless.co.il + + + host + www.pingless.co.il + + + + + Pink Paislee + + ruleset + + name + Pink Paislee + rule + + from + ^http://(www\.)?pinkpaislee\.com/ + to + https://$1pinkpaislee.com/ + + securecookie + + host + ^\.pinkpaislee\.com$ + name + .+ + + target + + + host + pinkpaislee.com + + + host + *.pinkpaislee.com + + + + + Pinkbike (partial) + + ruleset + + name + Pinkbike (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?pinkbike\.com/ + to + https://$1pinkbike.com/ + + securecookie + + host + ^\.pinkbike\.com$ + name + .+ + + target + + + host + pinkbike.com + + + host + *.pinkbike.com + + + + + Pinme.ru (partial) + + ruleset + + name + Pinme.ru (partial) + rule + + from + ^https?://cdn-pus-\d\.pinme\.ru/ + to + https://d2jjq1r8l0rsro.cloudfront.net/ + + target + + host + *.pinme.ru + + + + Pinsent Masons (partial) + + ruleset + + name + Pinsent Masons (partial) + rule + + from + ^http://extranets\.pinsentmasons\.com/ + to + https://extranets.pinsentmasons.com/ + + target + + host + extranets.pinsentmasons.com + + + + Pinta-Outlet.fi + + ruleset + + name + Pinta-Outlet.fi + rule + + from + ^http://(?:www\.)?pinta-outlet\.fi/ + to + https://pinta-outlet.fi/ + + target + + + host + pinta-outlet.fi + + + host + www.pinta-outlet.fi + + + + + Pinterest (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?pinterest\.com/(?:board/|pin/|(?:\w+/)?\w+/*(?:$|\?)) + + name + Pinterest (partial) + rule + + + from + ^http://s-([\w-]+)-ec(\d)?\.pinimg\.com/ + to + https://s-$1-ec$2.pinimg.com/ + + + from + ^http://((?:about|api|assets|help|\w\w\.help|log|m|partners-api|support|widgets|www)\.)?pinterest\.com/ + to + https://$1pinterest.com/ + + + from + ^http://blog-assets\.pinterest\.com/ + to + https://d5eppwnwxs8d9.cloudfront.net/ + + + from + ^http://media-cache(?:\d|-\w\w\d)?\.pin(?:img|terest)\.com/ + to + https://a248.e.akamai.net/media.pinterest.com.s3.amazonaws.com/ + + + from + ^http://passets-\w\w\.pinterest\.com/webapp/app/desktop/bundle\.(\w{8})\.css + to + https://s-passets-ec.pinimg.com/webapp/app/desktop/bundle.$1.css + + + from + ^http://passets-ak\.pinterest\.com/ + to + https://a248.e.akamai.net/f/1586/2045/10m/passets-ak.pinterest.com/ + + + from + ^http://p(?:assets-(?:cdn|ec|lt)|init-cdn)\.pinterest\.com/ + to + https://a248.e.akamai.net/passets.pinterest.com.s3.amazonaws.com/ + + + securecookie + + + host + ^\.pinterest\.com$ + name + ^(?:__utm\w|_zendesk_session|_zendesk_shared_session)$ + + + host + ^(?:\w\w\.)?help\.pinterest\.com$ + name + .+ + + + target + + + host + *.pinimg.com + + + host + pinterest.com + + + host + *.pinterest.com + + + + + Pipl (partial) + + ruleset + + name + Pipl (partial) + rule + + from + ^http://(www\.)?pipl\.com/ + to + https://$1pipl.com/ + + securecookie + + host + ^\.pipl\.com$ + name + .* + + target + + + host + pipl.com + + + host + *.pipl.com + + + + + Pirate Linux.org + + ruleset + + name + Pirate Linux.org + rule + + from + ^http://(www\.)?piratelinux\.org/ + to + https://$1piratelinux.org/ + + securecookie + + host + ^(?:www\.)?piratelinux\.org$ + name + .+ + + target + + + host + piratelinux.org + + + host + www.piratelinux.org + + + + + Pirate Party + + ruleset + + exclusion + + pattern + ^http://(ober(bayern|pfalz))\.piratenpartei\.de/ + + name + Pirate Party + rule + + + from + ^http://((?:wiki|stats|static|lists|forum)\.)?junge-piraten\.de/ + to + https://$1junge-piraten.de/ + + + from + ^http://(?:www\.)?junge-piraten\.de/ + to + https://junge-piraten.de/ + + + from + ^http://((?:forum|live|news|planet|wiki|flaschenpost)\.)?piratenpartei\.de/ + to + https://$1piratenpartei.de/ + + + from + ^http://(?:www\.)?piratenpartei\.de/ + to + https://www.piratenpartei.de/ + + + from + ^http://(?:www\.)?piratenpartei-bayern\.de/ + to + https://piratenpartei-bayern.de/ + + + from + ^http://events\.piratenpartei-bayern\.de/ + to + https://events.piratenpartei-bayern.de/ + + + from + ^https?://(?:www\.)?(?:piratenpartij|remixdepolitiek)\.nl/ + to + https://www.piratenpartij.nl/ + + + from + ^http://(proxy|tpb)\.piratenpartij\.nl/ + to + https://$1.piratenpartij.nl/ + + + from + ^https?://(?:www\.)?pirateparty\.org\.uk/shop/ + to + https://ppuk.spreadshirt.co.uk/shop/ + + + from + ^https?://(?:www\.)?pirateparty\.org\.uk/ + to + https://www.pirateparty.org.uk/ + + + from + ^http://(edinburgh|glasgow|manchester|tpb)\.pirateparty\.org\.uk/ + to + https://$1.pirateparty.org.uk/ + + + from + ^http://((?:forum|www)\.)?pirati\.cz/ + to + https://$1pirati.cz/ + + + from + ^http://(?:www\.)?uspirates\.org/ + to + https://uspirates.org/ + + + from + ^http://(voting|join|payments|discuss)\.pirateparty\.org\.au/ + to + https://$1.pirateparty.org.au/ + + + from + ^http://webchat\.pirateirc\.net/ + to + https://webchat.pirateirc.net/ + + + from + ^http://(?:www\.)?piratepad\.ca/ + to + https://www.piratepad.ca/ + + + from + ^http://(?:www\.)europeanpirates\.eu/ + to + https://europeanpirates.eu/ + + + from + ^https?://(?:www\.)?pirateparty\.ca/ + to + https://www.pirateparty.ca/ + + + from + ^http://(?:www\.)piraten-ufr\.de/ + to + https://www.piraten-ufr.de/ + + + from + ^http://(www\.)?piratenpartei\.at/ + to + https://www.piratenpartei.at/ + + + from + ^http://(\w)+\.piratenpartei\.at/ + to + https://$1.piratenpartei.at/ + + + securecookie + + + host + ^(.*\.)?junge-piraten\.de$ + name + .* + + + host + ^(.*\.)?piratenpartei\.de$ + name + .* + + + host + ^(.*\.)?piratenpartei-bayern\.de$ + name + .* + + + host + ^www\.pirateparty\.ca$ + name + .+ + + + host + ^(.*\.)?pirateparty\.org\.uk$ + name + ^(phpbb|wiki).*$ + + + host + ^(?:edinburgh|glasgow|manchester)\.pirateparty\.org\.uk$ + name + .* + + + host + ^.+\.pirati\.cz$ + name + .+ + + + host + ^.+\.uspirates\.org$ + name + .+ + + + target + + + host + junge-piraten.de + + + host + *.junge-piraten.de + + + host + partidopirata.es + + + host + www.partidopirata.es + + + host + piratenpartei.de + + + host + *.piratenpartei.de + + + host + piratenpartei-bayern.de + + + host + *.piratenpartei-bayern.de + + + host + piratenpartij.nl + + + host + *.piratenpartij.nl + + + host + pirateparty.ca + + + host + www.pirateparty.ca + + + host + pirateparty.org.uk + + + host + *.pirateparty.org.uk + + + host + pirati.cz + + + host + *.pirati.cz + + + host + *.forum.pirati.cz + + + host + uspirates.org + + + host + *.uspirates.org + + + host + remixdepolitiek.nl + + + host + www.remixdepolitiek.nl + + + host + piratenpartei.at + + + host + *.piratenpartei.at + + + host + pirateparty.org.au + + + host + *.pirateparty.org.au + + + host + pirateirc.net + + + host + *.pirateirc.net + + + host + piratepad.ca + + + host + *.piratepad.ca + + + host + europeanpirates.eu + + + + + PirateLeaks + + ruleset + + name + PirateLeaks + rule + + from + ^http://(?:web\.|(www\.))?pirateleaks\.cz/ + to + https://$1pirateleaks.cz/ + + target + + + host + pirateleaks.cz + + + host + *.pirateleaks.cz + + + + + PirateReverse.info (partial) + + ruleset + + name + PirateReverse.info (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?piratereverse\.info/ + to + https://$1piratereverse.info/ + + target + + + host + piratereverse.info + + + host + www.piratereverse.info + + + + + Piratenlogin.de + + ruleset + + name + Piratenlogin.de + platform + firefox + rule + + from + ^http://piratenlogin\.de/ + to + https://piratenlogin.de/ + + securecookie + + host + ^piratenlogin\.de$ + name + .+ + + target + + host + piratenlogin.de + + + + Piriform (partial) + + ruleset + + name + Piriform (partial) + rule + + + from + ^http://s1\.pir\.fm/ + to + https://d3sg17i8imdw59.cloudfront.net/ + + + from + ^http://(?:www\.)?piriform\.com/ + to + https://www.piriform.com/ + + + from + ^http://download\.piriform\.com/ + to + https://d1k4dgg08m176h.cloudfront.net/ + + + from + ^http://secure\.piriform\.com/ + to + https://secure.piriform.com/ + + + from + ^http://static\.piriform\.com/ + to + https://d3dsdp2n8y8ktk.cloudfront.net/ + + + from + ^http://support\.piriform\.com/(?=generated/|images/|system/) + to + https://piriform.zendesk.com/ + + + securecookie + + host + ^\.secure\.piriform\.com$ + name + .+ + + target + + + host + s1.pir.fm + + + host + piriform.com + + + host + *.piriform.com + + + + + Piscatus.se + + ruleset + + name + Piscatus.se + rule + + + from + ^http://www\.piscatus\.se/ + to + https://www.piscatus.se/ + + + from + ^http://piscatus\.se/ + to + https://piscatus.se/ + + + target + + + host + piscatus.se + + + host + www.piscatus.se + + + + + Piston Cloud Computing + + ruleset + + name + Piston Cloud Computing + rule + + from + ^https?://(?:www\.)?pistoncloud\.com/ + to + https://www.pistoncloud.com/ + + target + + + host + pistoncloud.com + + + host + www.pistoncloud.com + + + + + Pittsburgh Massage and Wellness.com + + ruleset + + name + Pittsburgh Massage and Wellness.com + rule + + from + ^http://(www\.)?pittsburghmassageandwellness\.com/ + to + https://$1pittsburghmassageandwellness.com/ + + securecookie + + host + ^\.pittsburghmassageandwellness\.com$ + name + .+ + + target + + + host + pittsburghmassageandwellness.com + + + host + *.pittsburghmassageandwellness.com + + + + + Pittsburgh Post-Gazette (partial) + + ruleset + + name + Pittsburgh Post-Gazette (partial) + rule + + from + ^http://ssl\.post-gazette\.com/ + to + https://ssl.post-gazette.com/ + + target + + host + ssl.post-gazette.com + + + + Pivotal + + ruleset + + name + Pivotal + rule + + from + ^http://(console|login)\.run\.pivotal\.io/ + to + https://$1.run.pivotal.io/ + + securecookie + + host + ^(?:console|login)\.run\.pivotal\.io$ + name + .+ + + target + + host + *.run.pivotal.io + + + + Pivotal Labs (partial) + + ruleset + + name + Pivotal Labs (partial) + rule + + + from + ^http://(www\.)?pivotallabs\.com/(image|stylesheet)s/ + to + https://$1pivotallabs.com/$2s/ + + + from + ^https?://assets\.pivotallabs\.com/ + to + https://s3.amazonaws.com/assets.pivotallabs.com/ + + + target + + + host + pivotallabs.com + + + host + *.pivotallabs.com + + + + + Pivotal Tracker (partial) + + ruleset + + name + Pivotal Tracker (partial) + rule + + from + ^http://(?:www\.)?pivotaltracker\.com/(?=help(?:$|[?/])|signup/|wp-content/|wp-includes/) + to + https://www.pivotaltracker.com/ + + target + + + host + pivotaltracker.com + + + host + www.pivotaltracker.com + + + + + PixFuture (partial) + + ruleset + + name + PixFuture (partial) + rule + + + from + ^https?://ax-d\.pixfuture\.net/ + to + https://pixfuture-d3.openxenterprise.com/ + + + from + ^https?://portal\.pixfuture\.net/ + to + https://pixfuture-ui3.openxenterprise.com/ + + + target + + host + *.pixfuture.net + + + + Pixel Exit.com + + ruleset + + name + Pixel Exit.com + rule + + from + ^http://(?:www\.)?pixelexit\.com/ + to + https://pixelexit.com/ + + target + + + host + pixelexit.com + + + host + www.pixelexit.com + + + + + Pixelh8 + + ruleset + + name + Pixelh8 + rule + + from + ^http://(www\.)?pixelh8\.co\.uk/ + to + https://$1pixelh8.co.uk/ + + target + + + host + pixelh8.co.uk + + + host + www.pixelh8.co.uk + + + + + Pixi.me + + ruleset + + name + Pixi.me + platform + firefox + rule + + + from + ^http://pixi\.me/ + to + https://pixi.me/ + + + from + ^http://www\.pixi\.me/ + to + https://www.pixi.me/ + + + securecookie + + + host + ^pixi\.me$ + name + .+ + + + host + ^www\.pixi\.me$ + name + .+ + + + target + + + host + pixi.me + + + host + www.pixi.me + + + + + Pixiq (partial) + + ruleset + + name + Pixiq (partial) + rule + + from + ^https?://woofie[1-4]\.pixiq\.com/ + to + https://d1xlgqsil28g2u.cloudfront.net/ + + target + + host + *.pixiq.com + + + + Pixlr (partial) + + ruleset + + name + Pixlr (partial) + platform + mixedcontent + rule + + + from + ^http://i\.imm\.io/ + to + https://s3.amazonaws.com/i.imm.io/ + + + from + ^http://(?:cdn\.|(www\.))?pixlr\.com/ + to + https://$1pixlr.com/ + + + from + ^http://blog\.pixlr\.com/favicon\.ico + to + https://www.blogger.com/favicon.ico + + + from + ^http://support\.pixlr\.com/(assets/|favicon\.png) + to + https://getsatisfaction.com/$1 + + + securecookie + + host + ^(.*\.)?pixlr\.com$ + name + .* + + target + + + host + i.imm.io + + + host + pixlr.com + + + host + *.pixlr.com + + + + + Pixnet.net (partial) + + ruleset + + exclusion + + pattern + ^http://www\.pixnet\.net/(?!favicon\.ico) + + name + Pixnet.net (partial) + rule + + + from + ^http://pixnet\.net/.* + to + https://www.pixnet.net/ + + + from + ^http://(channel|seven-in-one-elections\.events|www)\.pixnet\.net/ + to + https://$1.pixnet.net/ + + + target + + host + *.pixnet.net + + + + Pixoto + + ruleset + + name + Pixoto + rule + + from + ^https?://(?:www\.)?pixoto\.com/ + to + https://www.pixoto.com/ + + securecookie + + host + ^www\.pixoto\.com$ + name + .+ + + target + + + host + pixoto.com + + + host + www.pixoto.com + + + + + Pizza.fr + + ruleset + + name + Pizza.fr + rule + + from + ^http://(www\.)?pizza\.fr/ + to + https://$1pizza.fr/ + + securecookie + + host + ^(?:w*\.)?pizza\.fr$ + name + .+ + + target + + + host + pizza.fr + + + host + *.pizza.fr + + + + + Pizzahut UK + + ruleset + + name + Pizzahut UK + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?pizzahut\.co\.uk/ + to + https://www.pizzahut.co.uk/ + + + from + ^http://(delivery)\.pizzahut\.co\.uk/ + to + https://$1.pizzahut.co.uk/ + + + target + + + host + pizzahut.co.uk + + + host + www.pizzahut.co.uk + + + host + delivery.pizzahut.co.uk + + + + + Planboard app.com + + ruleset + + name + Planboard app.com + rule + + from + ^http://(www\.)?planboardapp\.com/ + to + https://$1planboardapp.com/ + + securecookie + + host + ^\.planboardapp\.com$ + name + .+ + + target + + + host + planboardapp.com + + + host + *.planboardapp.com + + + + + Planet Discover + + ruleset + + name + Planet Discover + rule + + from + ^http://([\w\-]\.)?planetdiscover\.com/ + to + https://$1planetdiscover.com/ + + securecookie + + host + ^(?:.*\.)?planetdiscover\.com$ + name + .+ + + target + + + host + planetdiscover.com + + + host + *.planetdiscover.com + + + + + Planet Gnuheter + + ruleset + + name + Planet Gnuheter + rule + + from + ^http://(www\.)?gnuheter\.com/ + to + https://$1gnuheter.com/ + + target + + + host + gnuheter.com + + + host + www.gnuheter.com + + + + + Planet Minecraft.com (partial) + + ruleset + + name + Planet Minecraft.com (partial) + rule + + from + ^http://static\.planetminecraft\.com/ + to + https://static.planetminecraft.com/ + + target + + host + static.planetminecraft.com + + + + Planet-Source-Code.com + + ruleset + + name + Planet-Source-Code.com + rule + + from + ^http://(www\.)?planet-source-code\.com/ + to + https://$1planet-source-code.com/ + + securecookie + + host + ^(?:www\.)?planet-source-code\.com$ + name + .+ + + target + + + host + planet-source-code.com + + + host + www.planet-source-code.com + + + + + Planet-Work + + ruleset + + name + Planet-Work + rule + + + from + ^http://(?:www\.)?planet-work\.(?:com|fr)/ + to + https://www.planet-work.com/ + + + from + ^http://(clients|css|webmail|www3)\.planet-work\.com/ + to + https://$1.planet-work.com/ + + + securecookie + + host + ^webmail\.planet-work\.com$ + name + .+ + + target + + + host + planet-work.* + + + host + *.planet-work.com + + + host + www.planet-work.fr + + + + + Planet3dnow. + + ruleset + + name + Planet3dnow. + rule + + from + ^http://www\.planet3dnow\.de/ + to + https://www.planet3dnow.de/ + + target + + host + *.planet3dnow.de + + + + PlanetLab (partial) + + ruleset + + name + PlanetLab (partial) + rule + + from + ^http://(svn\.|www\.)?planet-lab\.org/ + to + https://$1planet-lab.org/ + + securecookie + + host + ^.*\.planet-lab\.org$ + name + .* + + target + + + host + planet-lab.org + + + host + *.planet-lab.org + + + + + PlanetRomeo + + ruleset + + name + PlanetRomeo + rule + + + from + ^http://(?:www\.)?planetromeo\.com/ + to + https://www.planetromeo.com/ + + + from + ^http://(?:www\.)?gayromeo\.com/ + to + https://www.gayromeo.com/ + + + target + + + host + www.planetromeo.com + + + host + planetromeo.com + + + host + www.gayromeo.com + + + host + gayromeo.com + + + + + Planned Parenthood + + ruleset + + name + Planned Parenthood + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?plannedparenthood\.org/ + to + https://www.plannedparenthood.org/ + + target + + + host + plannedparenthood.org + + + host + www.plannedparenthood.org + + + + + Plant-World-Seeds.com (partial) + + ruleset + + name + Plant-World-Seeds.com (partial) + rule + + from + ^http://(?:www\.)?plant-world-seeds\.com/(?=favicon\.ico|images/|store/checkout(?:$|[?/])|stylesheets/) + to + https://www.plant-world-seeds.com/ + + target + + + host + plant-world-seeds.com + + + host + www.plant-world-seeds.com + + + + + PlantCommunity.de + + ruleset + + name + PlantCommunity.de + rule + + from + ^http://(www\.)?plantcommunity\.de/ + to + https://$1plantcommunity.de/ + + securecookie + + host + ^(?:www\.)?plantcommunity\.de$ + name + .+ + + target + + + host + plantcommunity.de + + + host + www.plantcommunity.de + + + + + PlantSolution.de (false MCB) + + ruleset + + name + PlantSolution.de (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?plantsolution\.de/ + to + https://www.plantsolution.de/ + + securecookie + + host + ^(?:www)?\.plantsolution\.de$ + name + .+ + + target + + + host + plantsolution.de + + + host + *.plantsolution.de + + + + + PlantSolution.de (partial) + + ruleset + + name + PlantSolution.de (partial) + rule + + from + ^http://(?:www\.)?plantsolution\.de/(?=favicon\.ico|images/|libraries/|media/|modules/|/?plugins/|templates/) + to + https://www.plantsolution.de/ + + target + + + host + plantsolution.de + + + host + www.plantsolution.de + + + + + Plantronics + + ruleset + + name + Plantronics + rule + + from + ^http://(?:www\.)?plantronics\.com/ + to + https://www.plantronics.com/ + + securecookie + + host + ^(www)?\.plantronics\.com$ + name + .* + + target + + + host + plantronics.com + + + host + www.plantronics.com + + + + + Plastc.com + + ruleset + + name + Plastc.com + rule + + from + ^http://(www\.)?plastc\.com/ + to + https://$1plastc.com/ + + securecookie + + host + ^(?:www)?\.plastc\.com$ + name + .+ + + target + + + host + plastc.com + + + host + *.plastc.com + + + + + Plasti Dip Uruguay.com + + ruleset + + name + Plasti Dip Uruguay.com + rule + + from + ^http://(www\.)?plastidipuruguay\.com/ + to + https://$1plastidipuruguay.com/ + + securecookie + + host + ^\.plastidipuruguay\.com$ + name + .+ + + target + + + host + plastidipuruguay.com + + + host + *.plastidipuruguay.com + + + + + Plastic-Bin.com + + ruleset + + name + Plastic-Bin.com + rule + + from + ^http://(www\.)?(secure\.)?plastic-bin\.com/ + to + https://$1$2plastic-bin.com/ + + securecookie + + host + ^\.plastic-bin\.com$ + name + .+ + + target + + + host + plastic-bin.com + + + host + *.plastic-bin.com + + + + + Platform.sh + + ruleset + + name + Platform.sh + rule + + from + ^http://(www\.)?platform\.sh/ + to + https://$1platform.sh/ + + target + + + host + platform.sh + + + host + www.platform.sh + + + + + Platinum Performance.com + + ruleset + + name + Platinum Performance.com + rule + + from + ^http://(www\.)?(myplatinumpak|platinumperformance)\.com/ + to + https://$1$2.com/ + + securecookie + + + host + ^\.myplatinumpak\.com$ + name + .+ + + + host + ^(?:w*\.)?platinumperformance\.com$ + name + .+ + + + target + + + host + myplatinumpak.com + + + host + *.myplatinumpak.com + + + host + platinumperformance.com + + + host + *.platinumperformance.com + + + + + Platinum Skin Care.com (partial) + + ruleset + + name + Platinum Skin Care.com (partial) + rule + + from + ^http://(www\.)?platinumskincare\.com/(?=(?:account|checkout|custom\.css|login|register|send-password)\.aspx|downlds/|favicon\.ico|img/|mts/|scripts/|themes/) + to + https://$1platinumskincare.com/ + + target + + + host + platinumskincare.com + + + host + www.platinumskincare.com + + + + + Plausible.coop + + ruleset + + name + Plausible.coop + rule + + from + ^http://(forums\.|www\.)?plausible\.coop/ + to + https://$1plausible.coop/ + + securecookie + + host + ^(?:www\.)?plausible\.coop$ + name + .+ + + target + + + host + plausible.coop + + + host + *.plausible.coop + + + + + PlayOnLinux.com + + ruleset + + name + PlayOnLinux.com + rule + + from + ^http://(?:www\.)?playonlinux\.com/ + to + https://www.playonlinux.com/ + + securecookie + + host + ^(?:www\.)?playonlinux\.com$ + name + .+ + + target + + + host + playonlinux.com + + + host + www.playonlinux.com + + + + + PlayStation (partial) + + ruleset + + name + PlayStation (partial) + rule + + + from + ^http://((?:secure|software|webtrends)\.eu|(?:www\.)?store|(?:blog|community|service1|support)\.us)\.playstation\.com/ + to + https://$1.playstation.com/ + + + from + ^http://(?:www\.)?us\.playstation\.com/support/?(\?.*)?$ + to + https://support.us.playstation.com/$1 + + + from + ^http://(?:secure\.)?cdn\.playstation\.com/ + to + https://secure.cdn.playstation.com/ + + + from + ^http://(static-resource\.np\.community|en-support\.psm)\.playstation\.net/ + to + https://$1.playstation.net/ + + + securecookie + + + host + .*\.playstation\.com$ + name + .+ + + + host + ^en-support\.psm\.playstation\.net$ + name + .+ + + + target + + + host + *.playstation.com + + + host + *.playstation.net + + + + + Player Attack (partial) + + ruleset + + name + Player Attack (partial) + rule + + from + ^http://(www\.)?playerattack\.com/(wp-content/) + to + https://$1playerattack.com/$2 + + target + + + host + playerattack.com + + + host + www.playerattack.com + + + + + Player.FM (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.player\.fm/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Player.FM (partial) + rule + + from + ^http://((?:a\d|blog|suggest)\.)?player\.fm/ + to + https://$1player.fm/ + + securecookie + + host + ^\.player\.fm$ + name + .+ + + target + + + host + player.fm + + + host + *.player.fm + + + + + PlayerAuctions.com + + ruleset + + name + PlayerAuctions.com + rule + + + from + ^http://(?:www\.)?playerauctions\.com/ + to + https://www.playerauctions.com/ + + + from + ^http://(?:kimage|s?cdn01)\.playerauctions\.com/ + to + https://scdn01.playerauctions.com/ + + + securecookie + + host + ^www\.playerauctions\.com$ + name + .+ + + target + + + host + playerauctions.com + + + host + *.playerauctions.com + + + + + PlayerIO.com + + ruleset + + name + PlayerIO.com + rule + + + from + ^http://(?:www\.)?player\.io/([^?]*)(?:\?.*)? + to + https://playerio.com/$1 + + + from + ^http://(www\.)?playerio\.com/ + to + https://$1playerio.com/ + + + securecookie + + host + ^(?:www\.)?playerio\.com$ + name + .+ + + target + + + host + player.io + + + host + www.player.io + + + host + playerio.com + + + host + www.playerio.com + + + + + Playfire (partial) + + ruleset + + name + Playfire (partial) + rule + + + from + ^http://(www\.)?forums\.playfire\.com/ + to + https://www.forums.playfire.com/ + + + from + ^http://(www\.)?playfire\.com/ + to + https://www.playfire.com/ + + + target + + + host + forums.playfire.com + + + host + playfire.com + + + host + www.forums.playfire.com + + + host + www.playfire.com + + + + + Playwire (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?playwire\.com/(?!images/|javascripts/|stylesheets/) + + name + Playwire (partial) + rule + + from + ^http://(cdn\.|www\.)?playwire\.com/ + to + https://$1playwire.com/ + + target + + + host + playwire.com + + + host + *.playwire.com + + + + + Please Ignore.com + + ruleset + + name + Please Ignore.com + rule + + from + ^http://((?:auth|wiki|www|zkb)\.)?pleaseignore\.com/ + to + https://$1pleaseignore.com/ + + securecookie + + host + ^\w*\.pleaseignore\.com$ + name + .+ + + target + + + host + pleaseignore.com + + + host + *.pleaseignore.com + + + + + Pledgie + + ruleset + + name + Pledgie + platform + mixedcontent + rule + + from + ^http://(?:www\.)?pledgie\.com/ + to + https://pledgie.com/ + + securecookie + + host + ^pledgie\.com$ + name + .* + + target + + + host + pledgie.com + + + host + www.pledgie.com + + + + + Plex.tv + + ruleset + + name + Plex.tv + rule + + from + ^http://((?:blog|forums|www|downloads)\.)?plex\.tv/ + to + https://$1plex.tv/ + + securecookie + + host + ^\.plex\.tv$ + name + .+ + + target + + + host + plex.tv + + + host + *.plex.tv + + + + + Plexapp.com + + ruleset + + name + Plexapp.com + rule + + from + ^http://((?:dev|elan|my|wiki|www)\.)?plexapp\.com/ + to + https://$1plexapp.com/ + + target + + + host + plexapp.com + + + host + *.plexapp.com + + + + + Pliktverket.se + + ruleset + + name + Pliktverket.se + rule + + + from + ^http://www\.pliktverket\.se/ + to + https://www.pliktverket.se/ + + + from + ^http://pliktverket\.se/ + to + https://pliktverket.se/ + + + target + + + host + pliktverket.se + + + host + www.pliktverket.se + + + + + Plimus.com + + ruleset + + name + Plimus.com + rule + + from + ^http://(?:www\.)?plimus\.com/ + to + https://www.plimus.com/ + + securecookie + + host + ^(?:www)?\.plimus\.com$ + name + .+ + + target + + + host + plimus.com + + + host + *.plimus.com + + + + + Plone.org (partial) + + ruleset + + name + Plone.org (partial) + rule + + from + ^http://((?:dev|staging|svn|www)\.)?plone\.org/ + to + https://$1plone.org/ + + securecookie + + host + ^(?:dev\.|\.)?plone\.org$ + name + .+ + + target + + + host + plone.org + + + host + *.plone.org + + + + + Plug Unplug.net + + ruleset + + name + Plug Unplug.net + rule + + from + ^http://(www\.)?plugunplug\.net/ + to + https://$1plugunplug.net/ + + target + + + host + plugunplug.net + + + host + www.plugunplug.net + + + + + PlugRush.com (partial) + + ruleset + + name + PlugRush.com (partial) + rule + + from + ^http://(www\.)?plugrush\.com/ + to + https://$1plugrush.com/ + + target + + + host + plugrush.com + + + host + www.plugrush.com + + + + + Plus.net + + ruleset + + name + Plus.net + rule + + + from + ^http://(?:www\.)?plus\.net/ + to + https://www.plus.net/ + + + from + ^http://(portal|webmail|community|webstats)\.plus\.net/ + to + https://$1.plus.net/ + + + securecookie + + host + ^(?:.+\.)?plus\.net$ + name + .+ + + target + + + host + plus.net + + + host + *.plus.net + + + + + Plusgirot.se + + ruleset + + name + Plusgirot.se + rule + + + from + ^http://www\.plusgirot\.se/ + to + https://www.plusgirot.se/ + + + from + ^http://plusgirot\.se/ + to + https://www.plusgirot.se/ + + + target + + + host + plusgirot.se + + + host + www.plusgirot.se + + + + + Plymouth University + + ruleset + + name + Plymouth University + platform + mixedcontent + rule + + from + ^http://(\w+\.)?plymouth\.ac\.uk/ + to + https://$1plymouth.ac.uk/ + + securecookie + + host + ^(.*\.)?plymouth\.ac\.uk$ + name + .* + + target + + + host + plymouth.ac.uk + + + host + *.plymouth.ac.uk + + + + + Po.st (partial) + + ruleset + + name + Po.st (partial) + rule + + + from + ^http://(p\.|www\.)?po\.st/ + to + https://$1po.st/ + + + from + ^http://[is]\.po\.st/ + to + https://s.po.st/ + + + securecookie + + host + ^(?:www)?\.po\.st$ + name + .+ + + target + + + host + po.st + + + host + *.po.st + + + + + Pobox + + ruleset + + name + Pobox + rule + + from + ^http://(webmail\.|www\.)?pobox\.com/ + to + https://$1pobox.com/ + + securecookie + + host + ^\.pobox\.com$ + name + .* + + target + + + host + pobox.com + + + host + *.pobox.com + + + + + Pocketbook + + ruleset + + name + Pocketbook + rule + + from + ^http://(?:www\.)?getpocketbook\.com/ + to + https://getpocketbook.com/ + + target + + + host + getpocketbook.com + + + host + *.getpocketbook.com + + + + + PodOmatic.com + + ruleset + + name + PodOmatic.com + platform + mixedcontent + rule + + from + ^http://enterprise\.podomatic\.com/ + to + https://enterprise.podomatic.com/ + + target + + host + enterprise.podomatic.com + + + + Podbean.com (partial) + + ruleset + + exclusion + + pattern + ^http://media\d+\. + + name + Podbean.com (partial) + rule + + from + ^http://(\w+\.)?podbean\.com/ + to + https://$1podbean.com/ + + securecookie + + host + ^(?:.*\.)?podbean\.com$ + name + .+ + + target + + + host + podbean.com + + + host + *.podbean.com + + + + + Poddery + + ruleset + + name + Poddery + rule + + from + ^http://(www\.)?poddery\.com/ + to + https://poddery.com/ + + target + + + host + poddery.com + + + host + www.poddery.com + + + + + PoderPDA + + ruleset + + name + PoderPDA + rule + + from + ^http://(accesorios\.|www\.)?poderpda\.com/ + to + https://$1poderpda.com/ + + securecookie + + host + ^.*\.poderpda\.com$ + name + .+ + + target + + + host + poderpda.com + + + host + *.poderpda.com + + + + + Pogo + + ruleset + + exclusion + + pattern + http://www.pogo.com/avatar/edit.do + + name + Pogo + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?pogo\.com/ + to + https://www.pogo.com/ + + + from + ^http://help\.pogo\.com/ + to + https://help.pogo.com/ + + + from + ^http://cdn\.pogo\.com/ + to + https://www.pogo.com/ + + + target + + + host + pogo.com + + + host + *.pogo.com + + + + + Pogoplug.com (partial) + + ruleset + + name + Pogoplug.com (partial) + rule + + + from + ^http://(www\.)?pogoplug\.com/ + to + https://$1pogoplug.com/ + + + from + ^http://support\.pogoplug\.com/(?=favicon\.ico|generated/|images/|static/) + to + https://pogoplug.zendesk.com/ + + + target + + + host + pogoplug.com + + + host + *.pogoplug.com + + + + + Pointroll + + ruleset + + name + Pointroll + rule + + from + ^http://((?:adportal|ads|blogs|onpoint|spd-s|t|www)\.)?pointroll\.com/ + to + https://$1pointroll.com/ + + securecookie + + + host + ^\.pointroll\.com$ + name + ^PR(?:bu|go)$ + + + host + ^(?:adportal|\.ads)\.pointroll\.com$ + name + .+ + + + target + + + host + pointroll.com + + + host + *.pointroll.com + + + + + PointsHound (partial) + + ruleset + + name + PointsHound (partial) + rule + + from + ^http://(www\.)?pointshound\.com/ + to + https://$1pointshound.com/ + + securecookie + + host + ^(?:w*\.)?pointshound\.com$ + name + .+ + + target + + + host + pointshound.com + + + host + *.pointshound.com + + + + + Poivy.com + + ruleset + + name + Poivy.com + rule + + from + ^http://(?:www\.)?poivy\.com/ + to + https://www.poivy.com/ + + target + + + host + poivy.com + + + host + www.poivy.com + + + + + Pokemon.com (partial) + + ruleset + + name + Pokemon.com (partial) + rule + + + from + ^http://www\.pokemon\.co\.jp/(.+/resources/|common/|images/|_personalize/\w+/scripts/|scripts/|_sys/) + to + https://www.pokemon.co.jp/$1 + + + from + ^http://assets\d*\.pokemon\.com/ + to + https://assets.pokemon.com/ + + + from + ^http://sso\.pokemon\.com/ + to + https://sso.pokemon.com/ + + + target + + + host + www.pokemon.co.jp + + + host + *.pokemon.com + + + + + Poky + + ruleset + + name + Poky + rule + + from + ^http://((?:bugzilla|git|lists|wiki|www)\.)?pokylinux\.org/ + to + https://$1pokylinux.org/ + + target + + + host + pokylinux.org + + + host + *.pokylinux.org + + + + + Pokémon World Online + + ruleset + + name + Pokémon World Online + rule + + from + ^http://(forum\.|www\.)?pokemon-world-online\.net/ + to + https://$1pokemon-world-online.net/ + + securecookie + + host + ^\.(?:forum\.)?pokemon-world-online\.net$ + name + .+ + + target + + + host + pokemon-world-online.net + + + host + *.pokemon-world-online.net + + + + + PolarSSL + + ruleset + + name + PolarSSL + rule + + from + ^http://(www\.)?polarssl\.org/ + to + https://$1polarssl.org/ + + securecookie + + host + ^polarssl\.org$ + name + .+ + + target + + + host + polarssl.org + + + host + www.polarssl.org + + + + + PolarnoPyret.se + + ruleset + + name + PolarnoPyret.se + rule + + + from + ^http://www\.polarnopyret\.se/ + to + https://www.polarnopyret.se/ + + + from + ^http://polarnopyret\.se/ + to + https://www.polarnopyret.se/ + + + target + + + host + polarnopyret.se + + + host + www.polarnopyret.se + + + + + Police Mutual (partial) + + ruleset + + name + Police Mutual (partial) + rule + + + from + ^http://(?:www\.)?policemutual\.co\.uk/(applications/|css/|images/|js/|media/|WebResource\.axd) + to + https://www.policemutual.co.uk/$1 + + + from + ^http://survey\.policemutual\.co\.uk/ + to + https://survey.policemutual.co.uk/ + + + securecookie + + host + ^survey\.policemutual\.co\.uk$ + name + .+ + + target + + + host + policemutual.co.uk + + + host + *.policemutual.co.uk + + + + + PolicyMic + + ruleset + + name + PolicyMic + rule + + + from + ^http://((?:static|thumbs|www)\.)?policymic\.com/ + to + https://$1policymic.com/ + + + from + ^http://media1\.policymic\.com/ + to + https://d12x6n4r5ixux3.cloudfront.net/ + + + from + ^http://media2\.policymic\.com/ + to + https://d3hpe7wwfhob7t.cloudfront.net/ + + + securecookie + + host + ^\.policymic\.com$ + name + .+ + + target + + + host + policymic.com + + + host + *.policymic.com + + + + + Poliisi.fi + + ruleset + + name + Poliisi.fi + rule + + from + ^http://(?:www\.)?poliisi\.fi/ + to + https://poliisi.fi/ + + target + + + host + poliisi.fi + + + host + www.poliisi.fi + + + + + Polisforbundet.se + + ruleset + + name + Polisforbundet.se + platform + mixedcontent + rule + + + from + ^http://polisforbundet\.se/ + to + https://www.polisforbundet.se/ + + + from + ^http://www\.polisforbundet\.se/ + to + https://www.polisforbundet.se/ + + + target + + + host + polisforbundet.se + + + host + www.polisforbundet.se + + + + + PolitiFact (partial) + + ruleset + + name + PolitiFact (partial) + rule + + + from + ^https?://metric\.politifact\.com/ + to + https://stpetersburgtimes.122.2o7.net/ + + + from + ^https?://static\.politifact\.com/ + to + https://s3.amazonaws.com/static.politifact.com/ + + + securecookie + + host + ^\.politifact\.com$ + name + ^s_vi$ + + target + + host + *.politifact.com + + + + Politiken.dk (partial) + + ruleset + + exclusion + + pattern + ^http://(?:plus|shop)\.politiken\.dk/(?!Css/|[iI]mages/|Uploaded/|favicon\.ico) + + name + Politiken.dk (partial) + rule + + + from + ^http://multimedia\.pol\.dk/ + to + https://multimedia.pol.dk/ + + + from + ^http://((?:plus|shop|www)\.)?politiken\.dk/ + to + https://$1politiken.dk/ + + + from + ^http://web\.politiken\.dk/+(?:$|\?.*) + to + https://politiken.dk/VisArtikel.iasp?PageID=1 + + + target + + + host + multimedia.pol.dk + + + host + politiken.dk + + + host + *.politiken.dk + + + + + Polk + + ruleset + + name + Polk + rule + + from + ^http://(?:www\.)?polk\.com/ + to + https://www.polk.com/ + + securecookie + + host + ^(.*\.)?polk\.com$ + name + .* + + target + + + host + polk.com + + + host + www.polk.com + + + + + Polldaddy + + ruleset + + exclusion + + pattern + ^http://(?:i|support)\.polldaddy\.com/ + + name + Polldaddy + rule + + + from + ^http://i0\.poll\.fm/ + to + https://polldaddy.com/ + + + from + ^http://(?:www\.)?polldaddy\.com/ + to + https://polldaddy.com/ + + + from + ^http://static\.polldaddy\.com/ + to + https://secure.polldaddy.com/ + + + from + ^http://([^@:\./]+)\.polldaddy\.com/ + to + https://$1.polldaddy.com/ + + + securecookie + + + host + .*\.polldaddy\.com$ + name + ^__utm\w$ + + + host + ^polls\.polldaddy\.com$ + name + .+ + + + target + + + host + i0.poll.fm + + + host + polldaddy.com + + + host + *.polldaddy.com + + + + + Poly.edu + + ruleset + + name + Poly.edu + platform + firefox + rule + + from + ^http://csawctf\.poly\.edu/ + to + https://csawctf.poly.edu/ + + securecookie + + host + ^csawctf\.poly\.edu$ + name + .+ + + target + + host + csawctf.poly.edu + + + + PolyBrowser.com + + ruleset + + name + PolyBrowser.com + rule + + from + ^http://(www\.)?polybrowser\.com/ + to + https://$1polybrowser.com/ + + target + + + host + polybrowser.com + + + host + www.polybrowser.com + + + + + Polygon (false MCB) + + ruleset + + name + Polygon (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?polygon\.com/ + to + https://$1polygon.com/ + + target + + + host + polygon.com + + + host + www.polygon.com + + + + + Polymer-Project.org + + ruleset + + name + Polymer-Project.org + rule + + from + ^http://(?:www\.)?polymer-project\.org/ + to + https://www.polymer-project.org/ + + target + + + host + polymer-project.org + + + host + www.polymer-project.org + + + + + Polytechnic University of Catalonia (partial) + + ruleset + + name + Polytechnic University of Catalonia (partial) + rule + + + from + ^http://(?:www\.)?upc\.(?:es|edu)/ + to + https://www.upc.edu/ + + + from + ^http://australis\.upc\.es/ + to + https://australis.upc.es/ + + + from + ^http://(\w+\.blog|peguera|tv)\.upc\.edu/ + to + https://$1.upc.edu/ + + + securecookie + + host + ^(.*\.)upc\.edu$ + name + .* + + target + + + host + upc.edu + + + host + *.upc.edu + + + host + *.blog.upc.edu + + + host + upc.es + + + host + *.upc.es + + + + + Ponemon (partial) + + ruleset + + name + Ponemon (partial) + rule + + from + ^http://rim\.ponemon\.org/ + to + https://rim.ponemon.org/ + + securecookie + + host + ^rim\.ponemon\.org$ + name + .+ + + target + + host + rim.ponemon.org + + + + Pony.fm + + ruleset + + name + Pony.fm + rule + + from + ^http://(s\.|www\.)?pony\.fm/ + to + https://$1pony.fm/ + + securecookie + + host + ^\.pony\.fm$ + name + .+ + + target + + + host + pony.fm + + + host + *.pony.fm + + + + + Poor Man Motorsports + + ruleset + + name + Poor Man Motorsports + rule + + from + ^http://(www\.)?poormanmotorsports\.com/ + to + https://$1poormanmotorsports.com/ + + securecookie + + host + ^(?:.*\.)?poormanmotorsports\.com$ + name + .+ + + target + + + host + poormanmotorsports.com + + + host + *.poormanmotorsports.com + + + + + Pop Goes the Week + + ruleset + + name + Pop Goes the Week + rule + + from + ^http://(www\.)?popgoestheweek\.com/ + to + https://$1popgoestheweek.com/ + + securecookie + + host + ^(?:www\.)?popgoestheweek\.com$ + name + .+ + + target + + + host + popgoestheweek.com + + + host + www.popgoestheweek.com + + + + + PopAds + + ruleset + + name + PopAds + rule + + + from + ^http://((?:blog|serve|static|world|www)\.)?popads\.net/ + to + https://$1popads.net/ + + + from + ^http://c[12]\.popads\.net/ + to + https://static.popads.net/ + + + from + ^http://world\.popadscdn\.net/ + to + https://www.popads.net/ + + + securecookie + + host + .*\.popads\.net$ + name + .+ + + target + + + host + popads.net + + + host + *.popads.net + + + host + world.popadscdn.net + + + + + PopAtomic + + ruleset + + name + PopAtomic + rule + + from + ^http://(www\.)?popatomic\.org/ + to + https://$1popatomic.org/ + + securecookie + + host + ^(www\.)?popatomic\.org$ + name + .* + + target + + + host + popatomic.org + + + host + www.popatomic.org + + + + + PopCrunch.com (partial) + + ruleset + + name + PopCrunch.com (partial) + rule + + from + ^http://(assets|pc[123]|social)\.popcrunch\.com/ + to + https://$1.popcrunch.com/ + + target + + host + *.popcrunch.com + + + + PopSci.com (false MCB) + + ruleset + + name + PopSci.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?popsci\.com/(?!sites/) + to + https://www.popsci.com/ + + target + + + host + popsci.com + + + host + *.popsci.com + + + + + PopSci.com (partial) + + ruleset + + name + PopSci.com (partial) + rule + + from + ^http://(?:www\.)?popsci\.com/sites/ + to + https://www.popsci.com/sites/ + + target + + + host + popsci.com + + + host + www.popsci.com + + + + + PopVote.hk + + ruleset + + name + PopVote.hk + rule + + from + ^http://(www\.)?popvote\.hk/ + to + https://$1popvote.hk/ + + securecookie + + host + ^(?:w*\.)?popvote\.hk$ + name + .+ + + target + + + host + popvote.hk + + + host + *.popvote.hk + + + + + Poppy Sports + + ruleset + + name + Poppy Sports + platform + mixedcontent + rule + + from + ^http://(?:www\.)?poppysports\.com/ + to + https://www.poppysports.com/ + + securecookie + + host + ^\.www\.poppysports\.com$ + name + .* + + target + + + host + poppysports.com + + + host + *.poppysports.com + + + host + *.www.poppysports.com + + + + + Popular Mechanics (partial) + + ruleset + + name + Popular Mechanics (partial) + rule + + from + ^http://(?:www\.)?popularmechanics\.com/(?=ams/|api_static/|cm/(?!popularmechanics/styles/(?:article|comments|flipbook3|global|promo_player)\.css)|favicon\.ico) + to + https://a248.e.akamai.net/f/1303/5377/4m/www.popularmechanics.com/ + + securecookie + + + host + ^\.popularmechanics\.com$ + name + ^(?:s_\w+|__utm)\w$ + + + host + ^\.www\.popularmechanics\.com$ + name + ^icxid$ + + + target + + + host + popularmechanics.com + + + host + *.popularmechanics.com + + + + + Popular Photography + + ruleset + + name + Popular Photography + rule + + + from + ^http://(?:www\.)?popphoto\.com/ + to + https://www.popphoto.com/ + + + from + ^http://videostore\.popphoto\.com/(store/checkout(?:$|\?|/)|wp-content/) + to + https://videostore.popphoto.com/$1 + + + target + + + host + popphoto.com + + + host + *.popphoto.com + + + + + Popular.com.tw + + ruleset + + name + Popular.com.tw + rule + + from + ^http://(?:www\.)?popular\.com\.tw/ + to + https://www.popular.com.tw/ + + target + + + host + popular.com.tw + + + host + www.popular.com.tw + + + + + Populis Engage.com + + ruleset + + name + Populis Engage.com + rule + + from + ^http://oas\.populisengage\.com/ + to + https://oas.populisengage.com/ + + securecookie + + + host + ^\.populisengage\.com$ + name + ^OAX$ + + + host + ^oas\.populisengage\.com$ + name + .+ + + + target + + host + *.populisengage.com + + + + PornHub (partial) + + ruleset + + exclusion + + pattern + http://www\.pornhub\.com/+(?!favicon\.ico|insights(?:/wp-content|/wp-includes/)) + + name + PornHub (partial) + rule + + from + ^http://(www\.)?pornhub\.com/ + to + https://$1pornhub.com/ + + target + + + host + pornhub.com + + + host + www.pornhub.com + + + + + Pornel.net + + ruleset + + name + Pornel.net + rule + + from + ^http://(www\.)?pornel\.net/ + to + https://$1pornel.net/ + + target + + + host + pornel.net + + + host + www.pornel.net + + + + + PortForward.com (partial) + + ruleset + + name + PortForward.com (partial) + rule + + + from + ^http://(?:www\.)?portforward\.com/build/ + to + https://secure.portforward.com/build/ + + + from + ^http://secure\.portforward\.com/ + to + https://secure.portforward.com/ + + + target + + + host + portforward.com + + + host + *.portforward.com + + + + + PortMorgan.com + + ruleset + + name + PortMorgan.com + rule + + from + ^http://(www\.)?portmorgan\.com/ + to + https://$1portmorgan.com// + + target + + + host + portmorgan.com + + + host + www.portmorgan.com + + + + + Porteus Linux (partial) + + ruleset + + name + Porteus Linux (partial) + rule + + from + ^http://forum\.porteus\.org/ + to + https://forum.porteus.org/ + + securecookie + + host + ^\.forum\.porteus\.org$ + name + .+ + + target + + host + *.porteus.org + + + + Portland Mercury.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blogtown|m|post)\.portlandmercury\.com/(?!binary/|captcha/|favicon\.ico|foundation/|images/|styles/) + + name + Portland Mercury.com (partial) + rule + + from + ^http://((?:blogtown|classifieds|m|post|www)\.)?portlandmercury\.com/ + to + https://$1portlandmercury.com/ + + target + + + host + portlandmercury.com + + + host + *.portlandmercury.com + + + + + Portland State University (false MCB) + + ruleset + + exclusion + + pattern + ^http://(?:webdev\.|www\.)?pdu\.edu/(?:css/|favicon\.ico|images/|js/|(?:\w+/)?(?:misc|sites)/|syndication/) + + name + Portland State University (false MCB) + platform + mixedcontent + rule + + from + ^http://(webdev\.|www\.)?pdu\.edu/ + to + https://$1pdu.edu/ + + securecookie + + host + ^www\.pdu\.edu$ + name + .+ + + target + + + host + pdu.edu + + + host + webdev.pdu.edu + + + host + www.pdu.edu + + + + + Portland State University (partial) + + ruleset + + exclusion + + pattern + ^http://(?:webdev\.|www\.)?pdu\.edu/(?!css/|favicon\.ico|images/|js/|(?:\w+/)?(?:misc|sites)/|syndication/) + + name + Portland State University (partial) + rule + + + from + ^http://((?:banweb|d2l|sso|vikat|webdev|www)\.)?pdu\.edu/ + to + https://$1pdu.edu/ + + + from + ^http://cal\.pdu\.edu/.* + to + https://www.google.com/calendar/hosted/pdx.edu + + + from + ^http://(?:www\.)?library\.pdu\.edu/ + to + https://library.pdu.edu/ + + + from + ^http://guides\.library\.pdx\.edu/(?=css\d*/|favicon\.ico|include/|js\d*/) + to + https://libguides.com/ + + + from + ^http://mail\.pdu\.edu/.* + to + https://mail.google.com/a/pdu.edu + + + from + ^http://(?:www\.)?sa\.pdu\.edu/ + to + https://www.sa.pdu.edu/ + + + from + ^http://(?:www\.)?summer\.pdu\.edu/.* + to + https://pdu.edu/summer + + + securecookie + + host + ^(?:banweb|sso|vikat)\.pdu\.edu$ + name + .+ + + target + + + host + pdu.edu + + + host + *.pdu.edu + + + + + Porton CV.gov.cv + + ruleset + + name + Porton CV.gov.cv + rule + + from + ^http://portoncv\.gov\.cv/ + to + https://portoncv.gov.cv/ + + target + + host + portoncv.gov.cv + + + + PoshLiving + + ruleset + + name + PoshLiving + rule + + from + ^http://(www\.)?poshliving\.com/ + to + https://$1poshliving.com/ + + securecookie + + host + ^(?:www)?\.poshliving\.com$ + name + .+ + + target + + + host + poshliving.com + + + host + *.poshliving.com + + + + + PositiveSSL + + ruleset + + name + PositiveSSL + rule + + from + ^http://(?:www\.)?positivessl\.com/ + to + https://www.positivessl.com/ + + target + + + host + www.positivessl.com + + + host + positivessl.com + + + + + Post Office (partial) + + ruleset + + name + Post Office (partial) + rule + + + from + ^http://postoffice\.insure-systems\.co\.uk/ + to + https://postoffice.insure-systems.co.uk/ + + + from + ^http://account\.mypostoffice\.co\.uk/ + to + https://account.mypostoffice.co.uk/ + + + from + ^http://www\.pofssavecredit\.co\.uk/ + to + https://www.pofssavecredit.co.uk/ + + + from + ^https?://(?:www\.)?postoffice\.co.uk/(sites/|user(?:$|\?|/)) + to + https://www.postoffice.co.uk/$1 + + + from + ^http://www\.postoffice\.travelmoneycard\.co\.uk/ + to + https://www.postoffice.travelmoneycard.co.uk/ + + + securecookie + + + host + ^postoffice\.insure-systems\.co\.uk$ + name + .+ + + + host + ^account\.mypostoffice\.co\.uk$ + name + .+ + + + host + ^www\.pofssavecredit\.co\.uk$ + name + .+ + + + host + ^www\.postoffice\.travelmoneycard\.co\.uk$ + name + .+ + + + target + + + host + postoffice.insure-systems.co.uk + + + host + account.mypostoffice.co.uk + + + host + www.pofssavecredit.co.uk + + + host + postoffice.co.uk + + + host + www.postoffice.co.uk + + + host + www.postoffice.travelmoneycard.co.uk + + + + + Post Office Shop (partial) + + ruleset + + name + Post Office Shop (partial) + rule + + from + ^https?://(?:www\.)?postofficeshop\.co.uk/ + to + https://www.postofficeshop.co.uk/ + + securecookie + + host + ^www\.postofficeshop\.co\.uk$ + name + .+ + + target + + + host + postofficeshop.co.uk + + + host + www.postofficeshop.co.uk + + + + + Post to.Me + + ruleset + + name + Post to.Me + rule + + from + ^http://(?:cat\.|(www\.))?postto\.me/ + to + https://$1postto.me/ + + securecookie + + host + ^\.postto\.me$ + name + .+ + + target + + + host + postto.me + + + host + *.postto.me + + + + + Post-Click Marketing (partial) + + ruleset + + name + Post-Click Marketing (partial) + rule + + from + ^http://ion\.postclickmarketing\.com/ + to + https://ion.postclickmarketing.com/ + + target + + host + ion.postclickmarketing.com + + + + Post.ch + + ruleset + + name + Post.ch + rule + + + from + ^https?://(?:www\.)?post\.ch/ + to + https://www.post.ch/ + + + from + ^https?://(?:www\.)?posta\.ch/ + to + https://www.posta.ch/ + + + from + ^https?://(?:www\.)?poste\.ch/ + to + https://www.poste.ch/ + + + from + ^https?://(?:www\.)?swisspost\.com/ + to + https://www.swisspost.com/ + + + from + ^https?://(?:www\.)?swisspost\.ch/ + to + https://www.swisspost.ch/ + + + from + ^https?://(?:www\.)?swisspost-gls\.ch/ + to + https://www.swisspost-gls.ch/ + + + from + ^https?://(?:secure\.)?swisspostbox\.com/ + to + https://secure.swisspostbox.com/ + + + from + ^https?://im\.post\.ch/ + to + https://im.post.ch/ + + + from + ^https?://(?:www\.)?postauto\.ch/ + to + https://www.postauto.ch/ + + + from + ^https?://(?:www\.)?postbus\.ch/ + to + https://www.postbus.ch/ + + + from + ^https?://(?:www\.)?mypostbusiness\.ch/ + to + https://www.mypostbusiness.ch/ + + + from + ^https?://(?:www\.)?postfinance\.ch/ + to + https://www.postfinance.ch/ + + + from + ^https?://(?:www\.)?postsuisseid\.ch/ + to + https://postsuisseid.ch/ + + + from + ^https?://(?:www\.)?swisssign\.com/ + to + https://swisssign.com/ + + + from + ^https?://(?:admin\.)?omgpm\.com/ + to + https://admin.omgpm.com/ + + + securecookie + + + host + ^(.*\.)?post(.*)\.ch$ + name + .+ + + + host + ^(.*\.)?swisspost\.ch$ + name + .+ + + + host + ^(.*\.)?swisspost\.com$ + name + .+ + + + host + ^(.*\.)?postfinance\.ch$ + name + .+ + + + host + ^(.*\.)?postsuisseid\.ch$ + name + .+ + + + host + ^(.*\.)?swisssign\.com$ + name + .+ + + + target + + + host + post.ch + + + host + www.post.ch + + + host + posta.ch + + + host + www.posta.ch + + + host + poste.ch + + + host + www.poste.ch + + + host + swisspost.com + + + host + www.swisspost.com + + + host + swisspost.ch + + + host + www.swisspost.ch + + + host + swisspost-gls.ch + + + host + www.swisspost-gls.ch + + + host + secure.swisspostbox.com + + + host + im.post.ch + + + host + postauto.ch + + + host + www.postauto.ch + + + host + postbus.ch + + + host + mypostbusiness.ch + + + host + www.mypostbusiness.ch + + + host + postfinance.ch + + + host + www.postfinance.ch + + + host + postsuisseid.ch + + + host + www.postsuisseid.ch + + + host + swisssign.com + + + host + www.swisssign.com + + + host + admin.omgpm.com + + + + + Postal Heritage.org.uk (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?postalheritage\.org\.uk/+(?!imgs/|lib/|uploads/) + + name + Postal Heritage.org.uk (partial) + rule + + from + ^http://(assets1\.|www\.)?postalheritage\.org\.uk/ + to + https://$1postalheritage.org.uk/ + + target + + + host + postalheritage.org.uk + + + host + *.postalheritage.org.uk + + + + + Postbank + + ruleset + + name + Postbank + rule + + from + ^http://((?:banking|broking|direkt|tp|www)\.)?postbank\.de/ + to + https://$1postbank.de/ + + securecookie + + host + ^(?:.*\.)?postbank\.de$ + name + .+ + + target + + + host + postbank.de + + + host + *.postbank.de + + + + + Postdanmark.dk + + ruleset + + name + Postdanmark.dk + rule + + from + ^http://(www\.)?postdanmark\.dk/ + to + https://www.postdanmark.dk/ + + target + + + host + postdanmark.dk + + + host + www.postdanmark.dk + + + + + Posten.se + + ruleset + + name + Posten.se + rule + + + from + ^http://posten\.se/ + to + https://www.posten.se/ + + + from + ^http://www\.posten\.se/ + to + https://www.posten.se/ + + + target + + + host + posten.se + + + host + www.posten.se + + + + + Posteo + + ruleset + + name + Posteo + rule + + + from + ^http://(?:www\.|m\.)?posteo\.de/ + to + https://posteo.de/ + + + from + ^http://lists\.posteo\.de/ + to + https://lists.posteo.de/ + + + target + + + host + posteo.de + + + host + lists.posteo.de + + + host + m.posteo.de + + + host + www.posteo.de + + + + + Poster Store UK + + ruleset + + name + Poster Store UK + rule + + from + ^http://(?:www\.)?posterstoreuk\.com/ + to + https://posterstoreuk.com/ + + securecookie + + host + ^\.(?:www\.)?posterstoreuk\.com$ + name + .+ + + target + + + host + posterstoreuk.com + + + host + *.posterstoreuk.com + + + + + Posterous + + ruleset + + name + Posterous + rule + + + from + ^https?://files\.posterous\.com/ + to + https://s3.amazonaws.com/files.posterous.com/ + + + from + ^http://(?:www\.)?posterous\.com/ + to + https://posterous.com/ + + + from + ^http://([^@:\./]+)\.posterous\.com/ + to + https://$1.posterous.com/ + + + securecookie + + host + ^(.*\.)?posterous\.com$ + name + .* + + target + + + host + posterous.com + + + host + *.posterous.com + + + + + PostgreSQL + + ruleset + + name + PostgreSQL + rule + + + from + ^http://(?:www\.)?postgresql\.eu/ + to + https://www.postgresql.eu/ + + + from + ^http://(?:www\.)?postgresql\.org/(account|media)/ + to + https://www.postgresql.org/$1/ + + + from + ^http://(commitfest|nagios|planet|redmine|wiki)\.postgresql\.org/ + to + https://$1.postgresql.org/ + + + from + ^http://(www\.)?postgresql\.us/ + to + https://$1postgresql.us/ + + + securecookie + + + host + ^\.postgresql\.org$ + name + ^__utm\w$ + + + host + ^wiki\.postgresql\.org$ + name + .+ + + + host + ^\.postgresql.us$ + name + .+ + + + target + + + host + postgresql.eu + + + host + www.postgresql.eu + + + host + postgresql.org + + + host + *.postgresql.org + + + host + postgresql.us + + + host + *.postgresql.us + + + + + Posthaven.com (partial) + + ruleset + + name + Posthaven.com (partial) + rule + + from + ^http://(www\.)?posthaven\.com/ + to + https://$1posthaven.com/ + + securecookie + + host + ^posthaven\.com$ + name + .+ + + target + + + host + posthaven.com + + + host + www.posthaven.com + + + + + Postini + + ruleset + + name + Postini + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?postini\.com/ + to + https://www.postini.com/ + + + from + ^http://login\.postini\.com/ + to + https://login.postini.com/ + + + target + + + host + postini.com + + + host + *.postini.com + + + + + Postlapsaria (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?postlapsaria\.com/(?!favicon\.ico|images/|~postlapsaria/|~sponsors/|style\.css|supersized/) + + name + Postlapsaria (partial) + rule + + from + ^http://(?:www\.)?postlapsaria\.com/ + to + https://secure.hostmonster.com/~postlaps/ + + target + + + host + postlapsaria.com + + + host + www.postlapsaria.com + + + + + Postovabanka.sk + + ruleset + + name + Postovabanka.sk + rule + + + from + ^http://(www\.)?postovabanka\.sk/ + to + https://www.postovabanka.sk/ + + + from + ^http://moja\.postovabanka\.sk/ + to + https://moja.postovabanka.sk/ + + + target + + + host + postovabanka.sk + + + host + www.postovabanka.sk + + + host + moja.postovabanka.sk + + + + + Postscapes + + ruleset + + name + Postscapes + rule + + from + ^http://(www\.)?postscapes\.com/ + to + https://$1postscapes.com/ + + securecookie + + host + ^\.?postscapes\.com$ + name + .+ + + target + + + host + postscapes.com + + + host + *.postscapes.com + + + + + Postwire.com + + ruleset + + name + Postwire.com + rule + + from + ^http://(www\.)?postwire\.com/ + to + https://$1postwire.com/ + + securecookie + + host + ^www\.postwire\.com$ + name + .+ + + target + + + host + postwire.com + + + host + www.postwire.com + + + + + PowNed (partial) + + ruleset + + name + PowNed (partial) + rule + + from + ^http://registratie\.powned\.tv/ + to + https://registratie.powned.tv/ + + target + + host + registratie.powned.tv + + + + PowWeb + + ruleset + + name + PowWeb + rule + + from + ^http://((?:blog|forums|partners|secure|www)\.)?powweb\.com/ + to + https://$1powweb.com/ + + securecookie + + host + ^\.powweb\.com$ + name + .+ + + target + + + host + powweb.com + + + host + *.powweb.com + + + + + Powells.com + + ruleset + + name + Powells.com + rule + + from + ^http://(?:content-\d\.|www\.)?powells\.com/ + to + https://www.powells.com/ + + securecookie + + host + ^\.powells\.com$ + name + ^(?:lastlocation|preferences|p_session|trail_id)$ + + target + + + host + powells.com + + + host + *.powells.com + + + + + Power Speaking.com + + ruleset + + name + Power Speaking.com + rule + + from + ^http://(?:www\.)?powerspeaking\.com/ + to + https://www.powerspeaking.com/ + + securecookie + + host + ^\.powerspeaking\.com$ + name + .+ + + target + + + host + powerspeaking.com + + + host + *.powerspeaking.com + + + + + Power to the Pooch + + ruleset + + name + Power to the Pooch + rule + + from + ^http://(www\.)?powertothepooch\.com/ + to + https://$1powertothepooch.com/ + + securecookie + + host + ^(?:w*\.)?powertothepooch\.com$ + name + .+ + + target + + + host + powertothepooch.com + + + host + *.powertothepooch.com + + + + + Power.org + + ruleset + + name + Power.org + rule + + from + ^https?://(?:www\.)?power\.org/ + to + https://www.power.org/ + + securecookie + + host + ^www\.power\.org$ + name + .+ + + target + + + host + power.org + + + host + www.power.org + + + + + PowerDNS.com + + ruleset + + name + PowerDNS.com + rule + + from + ^http://((?:doc|rt|www|xs)\.)?powerdns\.com/ + to + https://$1powerdns.com/ + + securecookie + + host + ^rt\.powerdns\.com$ + name + .+ + + target + + + host + powerdns.com + + + host + *.powerdns.com + + + + + PowerPay.biz (partial) + + ruleset + + name + PowerPay.biz (partial) + rule + + from + ^http://(app|merchantcenter|secure)\.powerpay\.biz/ + to + https://$1.powerpay.biz/ + + target + + host + *.powerpay.biz + + + + PowerReviews (partial) + + ruleset + + name + PowerReviews (partial) + rule + + + from + ^https?://dashboard\.powerreviews\.com/ + to + https://dashboard.bazaarvoice.com/ + + + from + ^https?://go\.powerreviews\.com/(cs|image|r)s/ + to + https://na-sjf.marketo.com/$1s/ + + + from + ^http://(services|t)\.powerreviews\.com/ + to + https://$1.powerreviews.com/ + + + target + + host + *.powerreviews.com + + + + Powerbuy.co.th + + ruleset + + name + Powerbuy.co.th + rule + + from + ^http://(www\.)?powerbuy\.co\.th/ + to + https://www.powerbuy.co.th/ + + target + + + host + powerbuy.co.th + + + host + www.powerbuy.co.th + + + + + Powered by Paquin + + ruleset + + name + Powered by Paquin + rule + + from + ^http://(www\.)?poweredbypaquin\.com/ + to + https://$1poweredbypaquin.com/ + + securecookie + + host + ^\.poweredbypaquin\.com$ + name + .+ + + target + + + host + poweredbypaquin.com + + + host + *.poweredbypaquin.com + + + + + Powerhosting.dk (partial) + + ruleset + + name + Powerhosting.dk (partial) + rule + + + from + ^http://(?:(webadmin\.)|www\.)?powerhosting\.dk/ + to + https://$1powerhosting.dk/ + + + from + ^http://blog\.powerhosting\.dk/ + to + https://powerhosting.dk/blog/ + + + target + + + host + powerhosting.dk + + + host + *.powerhosting.dk + + + + + Powerhouse Museum.com (partial) + + ruleset + + name + Powerhouse Museum.com (partial) + rule + + + from + ^http://(www\.)?powerhousemuseum\.com/(?!/*(?:index\.php)?(?:$|\?)) + to + https://$1powerhousemuseum.com/ + + + from + ^http://newsletters\.powerhousemuseum\.com/(?=contenteditor/formValidate\.js|LiveAssets/|rp/Content/) + to + https://ecm74.com/ + + + target + + + host + powerhousemuseum.com + + + host + *.powerhousemuseum.com + + + + + Powerlineman Magazine + + ruleset + + name + Powerlineman Magazine + rule + + from + ^http://(www\.)?powerlinemanmag\.com/ + to + https://$1powerlinemanmag.com/ + + securecookie + + host + ^(?:www\.)?powerlinemanmag\.com$ + name + .+ + + target + + + host + powerlinemanmag.com + + + host + www.powerlinemanmag.com + + + + + Powerlineman.com + + ruleset + + name + Powerlineman.com + rule + + from + ^http://(www\.)?powerlineman\.com/ + to + https://$1powerlineman.com/ + + securecookie + + host + ^(?:w*\.)?powerlineman\.com/$ + name + .+ + + target + + + host + powerlineman.com + + + host + *.powerlineman.com + + + + + Powernotebooks.com + + ruleset + + name + Powernotebooks.com + rule + + from + ^http://(?:www\.)?powernotebooks\.com/ + to + https://www.powernotebooks.com/ + + target + + + host + powernotebooks.com + + + host + www.powernotebooks.com + + + + + Praetorian.com + + ruleset + + name + Praetorian.com + rule + + from + ^http://(www\.)?praetorian\.com/ + to + https://$1praetorian.com/ + + securecookie + + host + ^www\.praetorian\.com$ + name + .+ + + target + + + host + praetorian.com + + + host + www.praetorian.com + + + + + PragProg.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?pragprog\.com/(?!assets/|favicon\.ico|(?:login|signup)/*(?:$|\?)) + + name + PragProg.com (partial) + rule + + from + ^http://((?:forums|imagery|www)\.)?pragprog\.com/ + to + https://$1pragprog.com/ + + target + + + host + pragprog.com + + + host + *.pragprog.com + + + + + Pragmatic Marketing.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?pragmaticmarketing\.com/(?![cC]ontent/|Scripts/) + + name + Pragmatic Marketing.com (partial) + rule + + + from + ^http://(buy\.|www\.)?pragmaticmarketing\.com/ + to + https://$1pragmaticmarketing.com/ + + + from + ^http://mediafiles\.pragmaticmarketing\.com/ + to + https://d1qrnovf1k6d8a.cloudfront.net/ + + + target + + + host + pragmaticmarketing.com + + + host + *.pragmaticmarketing.com + + + + + Praktikpladsen + + ruleset + + name + Praktikpladsen + rule + + + from + ^http://(www\.)?praktikpladsen\.dk/ + to + https://www.praktikpladsen.dk/ + + + from + ^https://praktikpladsen\.dk/ + to + https://www.praktikpladsen.dk/ + + + target + + + host + praktikpladsen.dk + + + host + www.praktikpladsen.dk + + + + + PravyDiplom.cz + + ruleset + + name + PravyDiplom.cz + rule + + from + ^http://(?:www\.)?pravydiplom\.cz/ + to + https://pravydiplom.cz/ + + securecookie + + host + ^pravydiplom\.cz$ + name + .+ + + target + + + host + pravydiplom.cz + + + host + www.pravydiplom.cz + + + + + Precision Marine Tools + + ruleset + + name + Precision Marine Tools + rule + + from + ^http://(www\.)?precisionmarinetools\.com/ + to + https://$1precisionmarinetools.com/ + + securecookie + + host + ^(?:.*\.)?precisionmarinetools\.com$ + name + .+ + + target + + + host + precisionmarinetools.com + + + host + *.precisionmarinetools.com + + + + + PrecisionPros.com (partial) + + ruleset + + name + PrecisionPros.com (partial) + rule + + from + ^http://(ssl\.|www\.)?precisionpros\.com/ + to + https://$1precisionpros.com/ + + target + + + host + precisionpros.com + + + host + www.precisionpros.com + + + + + Preferred Reservations (partial) + + ruleset + + name + Preferred Reservations (partial) + rule + + from + ^http://vr\.preferred-reservations\.com/ + to + https://vr.preferred-reservations.com/ + + securecookie + + host + ^vr\.preferred-reservations\.com$ + name + .+ + + target + + host + vr.preferred-reservations.com + + + + Preisvergleich Internet Services (partial) + + ruleset + + name + Preisvergleich Internet Services (partial) + rule + + + from + ^https?://(?:b\.)?gzhls\.at/ + to + https://gzhls.at/ + + + from + ^http://(www\.)?metashop\.at/ + to + https://$1metashop.at/ + + + target + + + host + gzhls.at + + + host + b.gzhls.at + + + host + metashop.at + + + host + www.metashop.at + + + + + Premiumize.me + + ruleset + + name + Premiumize.me + rule + + from + ^http://(secure\.|www\.)?premiumize\.me/ + to + https://secure.premiumize.me/ + + securecookie + + host + ^secure\.premiumize\.me$ + name + .* + + target + + + host + premiumize.me + + + host + *.premiumize.me + + + + + Press+ (partial) + + ruleset + + name + Press+ (partial) + rule + + + from + ^http://(?:www\.)?mypressplus\.com/themes/press_plus/img/header/(bg_green|bg_tan|logo)\.png + to + https://accounts.mypressplus.com/images/header/$1.png + + + from + ^http://accounts\.mypressplus\.com/ + to + https://accounts.mypressplus.com/ + + + from + ^http://(h|ui)\.ppjol\.com/ + to + https://$1.ppjol.com/ + + + from + ^http://s\.ppjol\.net/ + to + https://dsgvj67ifn3r0.cloudfront.net/ + + + securecookie + + + host + ^h?\.ppjol\.com$ + name + .+ + + + host + ^accounts\.mypressplus\.com$ + name + .* + + + target + + + host + mypressplus.com + + + host + *.mypressplus.com + + + host + *.ppjol.com + + + host + s.ppjol.net + + + + + PressCoders + + ruleset + + name + PressCoders + rule + + from + ^http://(www\.)?presscoders\.com/ + to + https://$1presscoders.com/ + + target + + + host + presscoders.com + + + host + www.presscoders.com + + + + + PressLabs (partial) + + ruleset + + name + PressLabs (partial) + rule + + + from + ^http://cdn\.presslabs\.com/ + to + https://presslabs.plssl.com/ + + + from + ^http://o(-assets)?\.presslabs\.com/ + to + https://o$1.presslabs.com/ + + + securecookie + + host + ^o\.presslabs\.com$ + name + .+ + + target + + host + *.presslabs.com + + + + PressLabs SSL + + ruleset + + name + PressLabs SSL + rule + + from + ^http://([\w-]+\.)?plssl\.com/ + to + https://$1plssl.com/ + + target + + + host + plssl.com + + + host + *.plssl.com + + + + + PressPage.com (partial) + + ruleset + + name + PressPage.com (partial) + rule + + from + ^http://(content|manager)\.presspage\.com/ + to + https://$1.presspage.com/ + + securecookie + + host + ^manager\.presspage\.com$ + name + .+ + + target + + host + *.presspage.com + + + + Pressflex (partial) + + ruleset + + name + Pressflex (partial) + rule + + from + ^https?://(?:web\.|www\.)?blogads\.com/ + to + https://web.blogads.com/ + + target + + + host + blogads.com + + + host + *.blogads.com + + + + + Pretty Lights Music + + ruleset + + name + Pretty Lights Music + platform + mixedcontent + rule + + from + ^http://(www\.)?prettylightsmusic\.com/ + to + https://prettylightsmusic.com/ + + target + + + host + prettylightsmusic.com + + + host + www.prettylightsmusic.com + + + + + Pretty in Cash (partial) + + ruleset + + name + Pretty in Cash (partial) + rule + + from + ^http://exgf\.teenbff\.com/ + to + https://exgf.teenbff.com/ + + target + + host + exgf.teenbff.com + + + + PrettyLittleThing.com + + ruleset + + name + PrettyLittleThing.com + rule + + from + ^http://(www\.)?prettylittlething\.com/ + to + https://$1prettylittlething.com/ + + securecookie + + host + \.(?:www\.)?prettylittlething\.com$ + name + .+ + + target + + + host + prettylittlething.com + + + host + *.prettylittlething.com + + + + + Previa.se + + ruleset + + name + Previa.se + rule + + from + ^http://(?:www\.)?previa\.se/ + to + https://www.previa.se/ + + target + + + host + previa.se + + + host + www.previa.se + + + + + Prey (partial) + + ruleset + + name + Prey (partial) + rule + + + from + ^https?://(?:(panel\.)|www\.)?preyproject\.com/ + to + https://$1preyproject.com/ + + + from + ^https?://support\.preyproject\.com/(help|pkg|stylesheets)/ + to + https://asset-1.tenderapp.com/$1/ + + + securecookie + + host + ^.+\.preyproject\.com$ + name + .+ + + target + + + host + preyproject.com + + + host + *.preyproject.com + + + + + PreyProject + + ruleset + + name + PreyProject + rule + + from + ^http://(control|panel)\.preyproject\.com/ + to + https://$1.preyproject.com/ + + securecookie + + host + ^(control|panel)\.preyproject\.com$ + name + .* + + target + + + host + control.preyproject.com + + + host + panel.preyproject.com + + + + + Prezi.com + + ruleset + + name + Prezi.com + rule + + from + ^http://(www\.)?prezi\.com/ + to + https://$1prezi.com/ + + securecookie + + host + ^\.?prezi\.com$ + name + .+ + + target + + + host + prezi.com + + + host + *.prezi.com + + + + + Priberam.pt + + ruleset + + name + Priberam.pt + platform + mixedcontent + rule + + from + ^http://(?:www\.)?priberam\.pt/ + to + https://www.priberam.pt/ + + target + + + host + priberam.pt + + + host + www.priberam.pt + + + + + PriceGrabber + + ruleset + + name + PriceGrabber + platform + mixedcontent + rule + + + from + ^http://i\.pgcdn\.com/ + to + https://images.pricegrabber.com/ + + + from + ^http://(?:a[hi]\.|www\.)?pricegrabber\.com/ + to + https://www.pricegrabber.com/ + + + from + ^http://(images|partner)\.pricegrabber\.com/ + to + https://$1.pricegrabber.com/ + + + securecookie + + host + .*\.pricegrabber\.com$ + name + .+ + + target + + + host + i.pgcdn.com + + + host + pricegrabber.com + + + host + *.pricegrabber.com + + + + + PriceGrabber clients + + ruleset + + name + PriceGrabber clients + rule + + from + ^http://hothardware\.pricegrabber\.com/ + to + https://hothardware.pricegrabber.com/ + + securecookie + + host + ^hothardware\.pricegrabber\.com$ + name + .* + + target + + host + hothardware.pricegrabber.com + + + + PriceRunner (partial) + + ruleset + + name + PriceRunner (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?pricerunner\.co(?:m|\.uk)/favicon\.ico + to + https://secure.pricerunner.com/imgserver/images/v3/favicon.ico + + + from + ^http://(partner|secure)\.pricerunner\.com/ + to + https://$1.pricerunner.com/ + + + securecookie + + host + ^(?:partner|secure)\.pricerunner\.com$ + name + .+ + + target + + + host + pricerunner.com + + + host + *.pricerunner.com + + + host + pricerunner.co.uk + + + host + *.pricerunner.co.uk + + + + + Priceonomics.com (partial) + + ruleset + + name + Priceonomics.com (partial) + rule + + from + ^http://(www\.)?priceonomics\.com/static/ + to + https://$1priceonomics.com/static/ + + target + + + host + priceonomics.com + + + host + www.priceonomics.com + + + + + Priceza.com + + ruleset + + name + Priceza.com + rule + + from + ^http://(www\.)?priceza\.com/ + to + https://www.priceza.com/ + + target + + + host + priceza.com + + + host + www.priceza.com + + + + + Primabanka.sk + + ruleset + + name + Primabanka.sk + rule + + + from + ^http://(www\.)?primabanka\.sk/ + to + https://www.primabanka.sk/ + + + from + ^http://ib\.primabanka\.sk/ + to + https://ib.primabanka.sk/ + + + target + + + host + primabanka.sk + + + host + www.primabanka.sk + + + host + ib.primabanka.sk + + + + + Primes Eco Energie.com + + ruleset + + name + Primes Eco Energie.com + rule + + from + ^http://(www\.)?primesecoenergie\.com/ + to + https://$1primesecoenergie.com/ + + securecookie + + host + ^(?:w*\.)?primesecoenergie\.com$ + name + .+ + + target + + + host + primesecoenergie.com + + + host + *.primesecoenergie.com + + + + + Primus Canada (partial) + + ruleset + + name + Primus Canada (partial) + rule + + from + ^http://vws3\.primus\.ca/ + to + https://vws3.primus.ca/ + + target + + host + vws3.primus.ca + + + + Primus.com + + ruleset + + name + Primus.com + platform + mixedcontent + rule + + + from + ^http://primus\.com/ + to + https://www.primus.com/ + + + from + ^http://(home|ru|secure|www)\.primus\.com/ + to + https://$1.primus.com/ + + + securecookie + + host + ^(.*\.)?primus\.com$ + name + .* + + target + + + host + primus.com + + + host + *.primus.com + + + + + Princeton.edu (partial) + + ruleset + + exclusion + + pattern + http://(?:www\.)?princeton\.edu/+~ + + name + Princeton.edu (partial) + rule + + + from + ^http://(?:www\.)?princeton\.edu/ + to + https://www.princeton.edu/ + + + from + ^http://(blogs|citp|fed|lists)\.princeton\.edu/ + to + https://$1.princeton.edu/ + + + securecookie + + host + ^(?:blogs|fed)\.princeton\.edu$ + name + .+ + + target + + + host + princeton.edu + + + host + *.princeton.edu + + + + + PrintFriendly (partial) + + ruleset + + name + PrintFriendly (partial) + rule + + + from + ^https?://cdn\.printfriendly\.com/ + to + https://s3.amazonaws.com/cdn.printfriendly.com/ + + + from + ^https?://cdn\.printfriendly\.org/ + to + https://s3.amazonaws.com/printnicer/ + + + target + + + host + cdn.printfriendly.com + + + host + cdn.printfriendly.org + + + + + PrintMojo + + ruleset + + name + PrintMojo + rule + + from + ^http://(www\.)?printmojo\.com/ + to + https://$1printmojo.com/ + + securecookie + + host + ^www\.printmojo\.com$ + name + .+ + + target + + + host + printmojo.com + + + host + www.printmojo.com + + + + + Printchomp.com + + ruleset + + name + Printchomp.com + rule + + from + ^http://(www\.)?printchomp\.com/ + to + https://$1printchomp.com/ + + securecookie + + host + ^(?:www)?\.printchomp\.com$ + name + .+ + + target + + + host + printchomp.com + + + host + *.printchomp.com + + + + + Printfection.com (partial) + + ruleset + + name + Printfection.com (partial) + rule + + + from + ^http://(www\.)?printfection\.com/((?:account|css|images)(?:$|[\?/])|skin1/|.+\?store_page=cart$) + to + https://$1printfection.com/$2 + + + from + ^http://img\.printfection\.com/ + to + https://img.printfection.com/ + + + target + + + host + printfection.com + + + host + *.printfection.com + + + + + Priory Group.com (partial) + + ruleset + + exclusion + + pattern + http://www\.priorygroup\.com/(?!favicon\.ico|images/|Sitefinity/) + + name + Priory Group.com (partial) + rule + + from + ^http://(jobs\.|www\.)?priorygroup\.com/ + to + https://$1priorygroup.com/ + + target + + + host + priorygroup.com + + + host + *.priorygroup.com + + + + + Prison Legal News.org + + ruleset + + name + Prison Legal News.org + rule + + from + ^http://(www\.)?prisonlegalnews\.org/ + to + https://$1prisonlegalnews.org/ + + securecookie + + host + ^www\.prisonlegalnews\.org$ + name + .+ + + target + + + host + prisonlegalnews.org + + + host + www.prisonlegalnews.org + + + + + Prison Phone Justice.org + + ruleset + + name + Prison Phone Justice.org + rule + + from + ^http://(www\.)?prisonphonejustice\.org/ + to + https://$1prisonphonejustice.org/ + + securecookie + + host + ^www\.prisonphonejustice\.org$ + name + .+ + + target + + + host + prisonphonejustice.org + + + host + www.prisonphonejustice.org + + + + + Privacy IO + + ruleset + + name + Privacy IO + rule + + from + ^http://(www\.)?privacy\.io/ + to + https://$1privacy.io/ + + target + + + host + privacy.io + + + host + www.privacy.io + + + + + Privacy International + + ruleset + + name + Privacy International + rule + + from + ^http://(www\.)?privacyinternational\.org/ + to + https://$1privacyinternational.org/ + + target + + + host + privacyinternational.org + + + host + www.privacyinternational.org + + + + + Privacy Not Prism.org.uk + + ruleset + + name + Privacy Not Prism.org.uk + rule + + from + ^http://(?:www\.)?privacynotprism\.org\.uk/ + to + https://www.privacynotprism.org.uk/ + + securecookie + + host + ^www\.privacynotprism\.org\.uk$ + name + .+ + + target + + + host + privacynotprism.org.uk + + + host + www.privacynotprism.org.uk + + + + + Privacy Rights Clearinghouse + + ruleset + + name + Privacy Rights Clearinghouse + rule + + from + ^http://(?:www\.)?privacyrights\.org/ + to + https://www.privacyrights.org/ + + target + + + host + privacyrights.org + + + host + www.privacyrights.org + + + + + Privacy SOS + + ruleset + + name + Privacy SOS + rule + + from + ^http://(www\.)?privacysos\.org/ + to + https://$1privacysos.org/ + + securecookie + + host + ^\.?privacysos\.org$ + name + .+ + + target + + + host + privacysos.org + + + host + www.privacysos.org + + + + + Privacy Solutions.no + + ruleset + + name + Privacy Solutions.no + rule + + from + ^http://((?:blog|track|www)\.)?privacysolutions\.no/ + to + https://$1privacysolutions.no/ + + securecookie + + host + ^track\.privacysolutions\.no$ + name + + + target + + + host + privacysolutions.no + + + host + *.privacysolutions.no + + + + + Privacy Tool.org + + ruleset + + name + Privacy Tool.org + rule + + from + ^http://(www\.)?privacytool\.org/ + to + https://$1privacytool.org/ + + securecookie + + host + ^(?:www\.)?privacytool\.org$ + name + .+ + + target + + + host + privacytool.org + + + host + www.privacytool.org + + + + + Privacy-Handbuch.de + + ruleset + + name + Privacy-Handbuch.de + rule + + from + ^http://(www\.)?privacy-handbuch\.de/ + to + https://$1privacy-handbuch.de/ + + target + + + host + privacy-handbuch.de + + + host + www.privacy-handbuch.de + + + + + PrivacyBox + + ruleset + + name + PrivacyBox + rule + + from + ^http://(www\.)?privacybox\.de/ + to + https://$1privacybox.de/ + + target + + + host + privacybox.de + + + host + www.privacybox.de + + + + + PrivacyChoice (partial) + + ruleset + + name + PrivacyChoice (partial) + rule + + from + ^http://(?:www\.)?privacychoice\.org/ + to + https://www.privacychoice.org/ + + target + + + host + privacychoice.org + + + host + www.privacychoice.org + + + + + Privacyfix + + ruleset + + name + Privacyfix + rule + + from + ^http://(addons\.|www\.)?privacyfix\.com/ + to + https://$1privacyfix.com/ + + target + + + host + privacyfix.com + + + host + *.privacyfix.com + + + + + PrivatVPN + + ruleset + + name + PrivatVPN + rule + + from + ^http://(?:www\.)privatevpn\.com/ + to + https://www.privatevpn.com/ + + target + + + host + privatevpn.com + + + host + www.privatevpn.com + + + + + Privatbanka.sk + + ruleset + + name + Privatbanka.sk + rule + + from + ^http://(ibank\.|www\.)?privatbanka\.sk/ + to + https://$1privatbanka.sk/ + + target + + + host + privatbanka.sk + + + host + *.privatbanka.sk + + + + + Private Internet Access + + ruleset + + name + Private Internet Access + rule + + from + ^http://(www\.)?privateinternetaccess\.com/ + to + https://$1privateinternetaccess.com/ + + securecookie + + host + ^www\.privateinternetaccess\.com$ + name + .* + + target + + + host + privateinternetaccess.com + + + host + www.privateinternetaccess.com + + + + + Private Tunnel + + ruleset + + name + Private Tunnel + rule + + from + ^http://(www\.)?privatetunnel\.com/ + to + https://$1privatetunnel.com/ + + securecookie + + host + ^www\.privatetunnel\.com$ + name + .* + + target + + + host + privatetunnel.com + + + host + www.privatetunnel.com + + + + + PrivateCore.com + + ruleset + + name + PrivateCore.com + rule + + from + ^http://(www\.)?privatecore\.com/ + to + https://$1privatecore.com/ + + securecookie + + host + ^\.privatecore\.com$ + name + .+ + + target + + + host + privatecore.com + + + host + *.privatecore.com + + + + + PrivatePaste + + ruleset + + name + PrivatePaste + rule + + from + ^http://([a-zA-Z0-9-]+\.)?privatepaste\.com/ + to + https://$1privatepaste.com/ + + target + + + host + privatepaste.com + + + host + *.privatepaste.com + + + + + PrivateWifi + + ruleset + + name + PrivateWifi + platform + mixedcontent + rule + + from + ^http://(www\.)?privatewifi\.com/ + to + https://$1privatewifi.com/ + + securecookie + + host + ^(?:.*\.)?privatewifi\.com$ + name + .+ + + target + + + host + privatewifi.com + + + host + *.privatewifi.com + + + + + Privatelee.com + + ruleset + + name + Privatelee.com + rule + + from + ^http://(www\.)?privatelee\.com/ + to + https://$1privatelee.com/ + + securecookie + + host + ^\.privatelee\.com$ + name + .+ + + target + + + host + privatelee.com + + + host + *.privatelee.com + + + + + Pro Bike Kit (partial) + + ruleset + + name + Pro Bike Kit (partial) + rule + + from + ^https?://(?:www\.)?probikekit.co.uk/([\w-]+\.(?:info|secure)|c-images/|common/|c-scripts/|css/|probikekit/) + to + https://www.probikekit.co.uk/$1 + + target + + + host + probikekit.co.uk + + + host + www.probikekit.co.uk + + + + + Pro Ultra Trim + + ruleset + + name + Pro Ultra Trim + rule + + from + ^http://(www\.)?proultratrim\.com/ + to + https://$1proultratrim.com/ + + securecookie + + host + ^(?:w*\.)?proultratrim\.com$ + name + .+ + + target + + + host + proultratrim.com + + + host + *.proultratrim.com + + + + + Pro-Linux.de (partial) + + ruleset + + name + Pro-Linux.de (partial) + platform + cacert + rule + + from + ^http://(?:www\.)?pro-linux\.de/(?=css/|favicon\.ico|forum(?:$|[?/])|images/) + to + https://www.pro-linux.de/ + + securecookie + + host + \.www\.pro-linux\.de$ + name + ^phpbb2bkHas_(?:data|sid)$ + + target + + + host + pro-linux.de + + + host + *.pro-linux.de + + + + + Pro-Managed + + ruleset + + name + Pro-Managed + rule + + from + ^http://(?:www\.)?pro-managed\.com/ + to + https://pro-managed.com/ + + target + + + host + pro-managed.com + + + host + www.pro-managed.com + + + + + ProBoards (partial) + + ruleset + + name + ProBoards (partial) + rule + + + from + ^http://(?:4d5\.net|(?:d|ss)\.prbrds\.com)/ + to + https://ss.prbrds.com/ + + + from + ^http://(www\.)?proboards\.com/n/images/ + to + https://$1proboards.com/n/images/ + + + from + ^http://login\.proboards\.com/ + to + https://login.proboards.com/ + + + target + + + host + *.prbrds.com + + + host + proboards.com + + + host + *.proboards.com + + + + + ProPublica.org + + ruleset + + name + ProPublica.org + rule + + + from + ^http://(?:www\.)?propublica\.net/+ + to + https://www.propublica.org/ + + + from + ^http://cdn\.propublica\.net/ + to + https://s3.amazonaws.com/cdn.propublica.net/ + + + from + ^http://(www\.|projects\.|static\.|securedrop\.)?propublica\.org/ + to + https://$1propublica.org/ + + + from + ^http://tiles-[abcd]\.propublica\.org/ + to + https://d3i4wq2ul46tvd.cloudfront.net/ + + + securecookie + + host + ^(?:.*\.)?propublica\.org$ + name + .+ + + target + + + host + propublica.net + + + host + *.propublica.net + + + host + propublica.org + + + host + *.propublica.org + + + + + ProQuest (partial) + + ruleset + + name + ProQuest (partial) + rule + + from + ^http://(pqshibboleth|wt)\.proquest\.com/ + to + https://$1.proquest.com/ + + target + + host + *.proquest.com + + + + ProVenue.net + + ruleset + + name + ProVenue.net + rule + + from + ^http://www\.provenue\.net/ + to + https://www.provenue.net/ + + securecookie + + host + ^\.provenue\.net$ + name + .+ + + target + + host + *.provenue.net + + + + Prob Mods.org + + ruleset + + name + Prob Mods.org + rule + + from + ^http://(www\.)?probmods\.org/ + to + https://$1probmods.org/ + + target + + + host + probmods.org + + + host + www.probmods.org + + + + + Process-One.net (partial) + + ruleset + + name + Process-One.net (partial) + rule + + + from + ^http://(?:www\.)?process-one\.net/ + to + https://www.process-one.net/ + + + from + ^http://(blog|static)\.process-one\.net/ + to + https://$1.process-one.net/ + + + securecookie + + host + ^www\.process-one\.net$ + name + .+ + + target + + + host + process-one.net + + + host + *.process-one.net + + + + + Processing.org (partial) + + ruleset + + name + Processing.org (partial) + rule + + from + ^http://(forum\.|www\.)?processing\.org/ + to + https://$1processing.org/ + + securecookie + + host + ^(?:forum)?\.processing\.org$ + name + .+ + + target + + + host + processing.org + + + host + *.processing.org + + + + + Procter & Gamble (partial) + + ruleset + + name + Procter & Gamble (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?brandsaver\.ca/ + to + https://$1brandsaver.ca/ + + + from + ^http://(www\.)?(oralb|pg)\.com/ + to + https://$1$2.com/ + + + from + ^http://news\.pg\.com/sites/ + to + https://pg.newshq.businesswire.com/sites/ + + + from + ^http://(www\.)?pgbrandsampler\.ca/ + to + https://$1pgbrandsampler.ca/ + + + from + ^http://(?:media\.)?pgeveryday(\.ca|solutions\.com)/ + to + https://www.pgeveryday$1/ + + + from + ^http://www\.pgeverydaysolutions\.com/(content/|pgeds/(en_US/data_root/|(register-eds|sign-in)\.jsp)) + to + https://www.pgeverydaysolutions.com/$1 + + + from + ^http://www\.pgeveryday\.ca/(css/|images/|(log-in|register)\.jsp|spacer\.gif) + to + https://www.pgeveryday.ca/$1 + + + securecookie + + + host + ^(.*\.)?pg\.com$ + name + .* + + + host + ^(.*\.)?pgbrandsampler\.ca$ + name + .* + + + target + + + host + brandsaver.ca + + + host + www.brandsaver.ca + + + host + oralb.com + + + host + www.oralb.com + + + host + pg.com + + + host + *.pg.com + + + host + pgbrandsampler.ca + + + host + www.pgbrandsampler.ca + + + host + pgeveryday.ca + + + host + *.pgeveryday.ca + + + host + pgeverydaysolutions.com + + + host + *.pgeverydaysolutions.com + + + + + Product Hunt + + ruleset + + name + Product Hunt + rule + + from + ^http://(www\.)?producthunt\.com/ + to + https://www.producthunt.com/ + + target + + + host + producthunt.com + + + host + *.producthunt.com + + + + + Product Safety Recalls Australia + + ruleset + + name + Product Safety Recalls Australia + rule + + from + ^http://(?:www\.)?recalls\.gov\.au/ + to + https://www.recalls.gov.au/ + + target + + + host + recalls.gov.au + + + host + *.recalls.gov.au + + + + + Productvisio + + ruleset + + name + Productvisio + rule + + from + ^http://(www\.)?productvisio\.com/ + to + https://$1productvisio.com/ + + securecookie + + host + ^\.?productvisio\.com$ + name + .+ + + target + + + host + productvisio.com + + + host + *.productvisio.com + + + + + ProfitBricks (partial) + + ruleset + + name + ProfitBricks (partial) + rule + + from + ^https?://(?:www\.)?profitbricks\.com/ + to + https://www.profitbricks.com/ + + securecookie + + host + ^www\.profitbricks\.com$ + name + .+ + + target + + + host + profitbricks.com + + + host + www.profitbricks.com + + + + + ProfitUnion.org + + ruleset + + name + ProfitUnion.org + rule + + from + ^http://(www\.)?profitunion\.org/ + to + https://$1profitunion.org/ + + securecookie + + host + ^(?:w*\.)?profitunion\.org$ + name + .+ + + target + + + host + profitunion.org + + + host + *.profitunion.org + + + + + ProgrammableWeb + + ruleset + + name + ProgrammableWeb + rule + + from + ^http://(www\.)?programmableweb\.com/ + to + https://$1programmableweb.com/ + + securecookie + + host + ^.*\.programmableweb\.com$ + name + .* + + target + + + host + programmableweb.com + + + host + *.programmableweb.com + + + + + Progreso Webhosting (partial) + + ruleset + + exclusion + + pattern + ^http://webmail\. + + name + Progreso Webhosting (partial) + rule + + from + ^http://(\w+\.)?progreso\.pl/ + to + https://$1progreso.pl/ + + securecookie + + host + ^(?:.*\.)?progreso\.pl$ + name + .+ + + target + + + host + progreso.pl + + + host + *.progreso.pl + + + + + Project Euler + + ruleset + + name + Project Euler + rule + + from + ^http://(www\.)?projecteuler\.net/ + to + https://projecteuler.net/ + + securecookie + + host + ^projecteuler\.net/$ + name + .* + + target + + + host + www.projecteuler.net + + + host + projecteuler.net + + + + + Project Meshnet (partial) + + ruleset + + name + Project Meshnet (partial) + rule + + from + ^http://(forums\.|wiki\.|www\.)?projectmeshnet\.org/ + to + https://$1projectmeshnet.org/ + + securecookie + + host + ^(?:wiki)?\.projectmeshnet\.org$ + name + .+ + + target + + + host + projectmeshnet.org + + + host + *.projectmeshnet.org + + + + + Project Secret Identity.org + + ruleset + + name + Project Secret Identity.org + rule + + from + ^http://(www\.)?projectsecretidentity\.org/ + to + https://$1projectsecretidentity.org/ + + target + + + host + projectsecretidentity.org + + + host + www.projectsecretidentity.org + + + + + Project Vote Smart + + ruleset + + name + Project Vote Smart + rule + + from + ^http://(www\.)?votesmart\.org/ + to + https://$1votesmart.org/ + + securecookie + + host + ^votesmart\.org$ + name + .+ + + target + + + host + votesmart.org + + + host + www.votesmart.org + + + + + Project Wonderful + + ruleset + + name + Project Wonderful + rule + + from + ^http://(www\.)?projectwonderful\.com/ + to + https://$1projectwonderful.com/ + + securecookie + + host + ^(?:www\.)?projectwonderful\.com$ + name + .+ + + target + + + host + projectwonderful.com + + + host + www.projectwonderful.com + + + + + ProjectHoneypot + + ruleset + + name + ProjectHoneypot + rule + + from + ^http://(?:www\.)?projecthoneypot\.org/ + to + https://www.projecthoneypot.org/ + + securecookie + + host + ^(www\.)?projecthoneypot\.org$ + name + .* + + target + + + host + projecthoneypot.org + + + host + www.projecthoneypot.org + + + + + Projectplace.com (partial) + + ruleset + + name + Projectplace.com (partial) + rule + + + from + ^http://((?:help|(?:test-)?service|help|support|www)\.)?projectplace\.com/ + to + https://$1projectplace.com/ + + + from + ^http://ideas\.projectplace\.com/ + to + https://projectplace.ideas.dimelo.com/ + + + from + ^http://service\.projectplacedocs\.com/ + to + https://service.projectplacedocs.com/ + + + securecookie + + + host + ^projectplace\.(?:idea|user)s\.dimelo\.com$ + name + .+ + + + host + .*\.projectplace\.com$ + name + .+ + + + target + + + host + projectplace.*.dimelo.com + + + host + projectplace.com + + + host + *.projectplace.com + + + host + service.projectplacedocs.com + + + + + Projet-PLUME.org + + ruleset + + name + Projet-PLUME.org + rule + + from + ^http://(www\.)?projet-plume\.org/ + to + https://$1projet-plume.org/ + + securecookie + + host + ^\.projet-plume\.org$ + name + .+ + + target + + + host + projet-plume.org + + + host + *.projet-plume.org + + + + + Prolexic + + ruleset + + name + Prolexic + platform + mixedcontent + rule + + + from + ^http://(?!ww\.)(\w+\.)?prolexic\.com/ + to + https://$1prolexic.com/ + + + from + ^https?://ww\.prolexic\.com/l/(\w+/\d{4}-\d\d-\d\d/\w+) + to + https://go.pardot.com/l/$1 + + + from + ^https?://ww\.prolexic\.com/(?:l/)?(\?.*)?$ + to + https://www.prolexic.com/$1 + + + securecookie + + host + ^(?:.*\.)?prolexic\.com$ + name + .+ + + target + + + host + prolexic.com + + + host + *.prolexic.com + + + + + Prometheus Global (partial) + + ruleset + + name + Prometheus Global (partial) + rule + + from + ^http://(?:www\.)?progllc\.com/ + to + https://www.progllc.com/ + + target + + + host + progllc.com + + + host + www.progllc.com + + + + + Prometheus-leirin tuki ry + + ruleset + + name + Prometheus-leirin tuki ry + rule + + from + ^http://(www\.)?protu\.fi/ + to + https://$1protu.fi/ + + securecookie + + host + ^\.protu\.fi$ + name + .+ + + target + + + host + protu.fi + + + host + *.protu.fi + + + + + Prometric + + ruleset + + name + Prometric + platform + mixedcontent + rule + + from + ^http://(?:www\.)?prometric\.com/ + to + https://www.prometric.com/ + + securecookie + + host + ^(.*\.)?prometric.com$ + name + .* + + target + + + host + prometric.com + + + host + www.prometric.com + + + + + Proofpoint (partial) + + ruleset + + exclusion + + pattern + ^http://www\.proofpoint\.com/(?!(?:asset|cs|image|partner)s/) + + name + Proofpoint (partial) + rule + + + from + ^http://((?:support|urldefense|www)\.)?proofpoint\.com/ + to + https://$1proofpoint.com/ + + + from + ^http://go\.proofpoint\.com/(?=css/|images/|js/|rs/) + to + https://na-n.marketo.com/ + + + securecookie + + host + ^urldefense\.proofpoint\.com$ + name + .+ + + target + + + host + proofpoint.com + + + host + *.proofpoint.com + + + + + PropellerAds (partial) + + ruleset + + name + PropellerAds (partial) + rule + + from + ^https?://(?:ad|img)\.propellerads\.com/ + to + https://ad.propellerads.com/ + + securecookie + + host + ^ad\.propellerads\.com$ + name + .+ + + target + + host + *.propellerads.com + + + + Propellerpops.com + + ruleset + + name + Propellerpops.com + rule + + from + ^http://(?:www\.)?propellerpops\.com/ + to + https://propellerpops.com/ + + target + + + host + propellerpops.com + + + host + www.propellerpops.com + + + + + ProperPet.com + + ruleset + + name + ProperPet.com + rule + + from + ^http://(www\.)?properpet\.com/ + to + https://$1properpet.com/ + + securecookie + + host + ^\.(?:www\.)?properpet\.com$ + name + .+ + + target + + + host + properpet.com + + + host + *.properpet.com + + + + + PropertyDeals.com.pk + + ruleset + + name + PropertyDeals.com.pk + rule + + from + ^http://(www\.)?propertydeals\.com\.pk/ + to + https://$1propertydeals.com.pk/ + + securecookie + + host + ^www\.propertydeals\.com\.pk$ + name + .+ + + target + + + host + propertydeals.com.pk + + + host + www.propertydeals.com.pk + + + + + PropertyInvesting.com (partial) + + ruleset + + name + PropertyInvesting.com (partial) + rule + + from + ^http://(www\.)?propertyinvesting\.com/($|blog$|faqs$|files/|forums$|forums/active$|front$|modules/|resources$|search$|strategies$|themes/) + to + https://$1propertyinvesting.com/$2 + + target + + + host + propertyinvesting.com + + + host + www.propertyinvesting.com + + + + + Prosidy.im + + ruleset + + name + Prosidy.im + rule + + from + ^http://(?:(conference\.|hg\.)|www\.)?prosody\.im/ + to + https://$1prosody.im/ + + target + + + host + prosody.im + + + host + *.prosody.im + + + + + Prospect Magazine (partial) + + ruleset + + name + Prospect Magazine (partial) + rule + + from + ^https?://(?:prospect\.prospectpublishi\.netdna-cdn\.com|(www\.)?prospectmagazine\.co\.uk)/ + to + https://$1prospectmagazine.co.uk/ + + securecookie + + host + ^(www\.)?prospectmagazine\.co\.uk$ + name + .* + + target + + + host + prospect.prospectpublishi.netdna-cdn.com + + + host + prospectmagazine.co.uk + + + host + www.prospectmagazine.co.uk + + + + + Protect Network + + ruleset + + name + Protect Network + rule + + from + ^http://(app\.|www\.)?protectnetwork\.org/ + to + https://$1protectnetwork.org/ + + securecookie + + host + ^app\.protectnetwork\.org$ + name + .+ + + target + + + host + protectnetwork.org + + + host + *.protectnetwork.org + + + + + ProtectedText.com + + ruleset + + name + ProtectedText.com + rule + + from + ^http://(?:www\.)?protectedtext\.com/ + to + https://www.protectedtext.com/ + + target + + + host + protectedtext.com + + + host + www.protectedtext.com + + + + + ProtonMail.ch + + ruleset + + name + ProtonMail.ch + rule + + from + ^http://(www\.)?protonmail\.ch/ + to + https://$1protonmail.ch/ + + target + + + host + protonmail.ch + + + host + www.protonmail.ch + + + + + Provantage + + ruleset + + name + Provantage + platform + mixedcontent + rule + + from + ^http://(?:www\.)?provantage\.com/ + to + https://www.provantage.com/ + + securecookie + + host + ^(.*\.)?provantage\.com$ + name + .* + + target + + + host + provantage.com + + + host + *.provantage.com + + + + + Provide Support (partial) + + ruleset + + exclusion + + pattern + ^http://www\.providesupport\.com/(?!s/) + + name + Provide Support (partial) + rule + + from + ^http://((?:admin2|image|messenger\d|www)\.)?providesupport\.com/ + to + https://$1providesupport.com/ + + securecookie + + host + ^image\.providesupport\.com$ + name + .* + + target + + + host + providesupport.com + + + host + *.providesupport.com + + + + + Proxify + + ruleset + + name + Proxify + rule + + from + ^http://(www\.)?proxify\.com/ + to + https://$1proxify.com/ + + securecookie + + host + ^(.*\.)?proxify\.com$ + name + .* + + target + + + host + proxify.com + + + host + www.proxify.com + + + + + Proxmox.com + + ruleset + + name + Proxmox.com + rule + + from + ^http://((?:forum|pve|www)\.)?proxmox\.com/ + to + https://$1proxmox.com/ + + securecookie + + host + ^(?:forum\.|www\.)?proxmox\.com$ + name + .+ + + target + + + host + proxmox.com + + + host + *.proxmox.com + + + + + Proxy Solutions (partial) + + ruleset + + name + Proxy Solutions (partial) + rule + + from + ^http://(www\.)?proxysolutions\.com/((?:affiliates|proxy-services|support|your-proxy-account)(?:$|\?|/)|images/|wp-content/) + to + https://$1proxysolutions.com/$2 + + target + + + host + proxysolutions.net + + + host + www.proxysolutions.net + + + + + Proxy.org + + ruleset + + name + Proxy.org + rule + + from + ^http://(helpdesk\.|www\.)?proxy\.org/ + to + https://$1proxy.org/ + + securecookie + + host + ^(.*\.)?proxy\.org$ + name + .* + + target + + + host + proxy.org + + + host + *.proxy.org + + + + + Proxy.sh + + ruleset + + name + Proxy.sh + rule + + from + ^http://(?:www\.)?proxy\.sh/ + to + https://proxy.sh/ + + securecookie + + host + ^proxy\.sh$ + name + .+ + + target + + + host + proxy.sh + + + host + www.proxy.sh + + + + + Pss.sk + + ruleset + + name + Pss.sk + rule + + + from + ^http://(www\.)?pss\.sk/ + to + https://www.pss.sk/ + + + from + ^http://moja\.pss\.sk/ + to + https://moja.pss.sk/ + + + target + + + host + pss.sk + + + host + www.pss.sk + + + host + moja.pss.sk + + + + + Psychology Today (partial) + + ruleset + + name + Psychology Today (partial) + rule + + + from + ^http://(?:rsrc2?\.|www\.)?psychologytoday\.com/(fil|imag|sit)es/ + to + https://my.psychologytoday.com/$1es/ + + + from + ^http://(my|trak)\.psychologytoday\.com/ + to + https://$1.psychologytoday.com/ + + + securecookie + + host + ^\.psychologytoday\.com$ + name + ^__utm\w$ + + target + + + host + psychologytoday.com + + + host + *.psychologytoday.com + + + + + Pt engine.jp (partial) + + ruleset + + name + Pt engine.jp (partial) + rule + + from + ^http://js\.ptengine\.jp/ + to + https://js.ptengine.jp/ + + target + + host + js.ptengine.jp + + + + Ptpimg.me + + ruleset + + name + Ptpimg.me + rule + + from + ^http://(www\.)?ptpimg\.me/ + to + https://ptpimg.me/ + + target + + + host + *.ptpimg.me + + + host + ptpimg.me + + + + + PubGears.com (partial) + + ruleset + + name + PubGears.com (partial) + rule + + from + ^http://ox-d\.pubgears\.com/ + to + https://ox-d.pubgears.com/ + + securecookie + + host + ^ox-d\.pubgears\.com$ + name + .+ + + target + + host + ox-d.pubgears.com + + + + PubMatic (partial) + + ruleset + + name + PubMatic (partial) + rule + + + from + ^http://(ads|aktrack|apps|origin|simage[24])\.pubmatic\.com/ + to + https://$1.pubmatic.com/ + + + from + ^http://image(2|4)\.pubmatic\.com/ + to + https://simage$1.pubmatic.com/ + + + securecookie + + host + ^.*\.pubmatic\.com$ + name + .+ + + target + + host + *.pubmatic.com + + + + PubNXT.net (partial) + + ruleset + + name + PubNXT.net (partial) + rule + + from + ^http://analytics\.pubnxt\.net/ + to + https://analytics.pubnxt.net/ + + target + + host + analytics.pubnxt.net + + + + PubNub (partial) + + ruleset + + name + PubNub (partial) + rule + + + from + ^http://cdn\.pubnub\.com/ + to + https://cdn.pubnub.com/ + + + from + ^http://(admin|ps\d*|pubsub)\.pubnub\.com/ + to + https://$1.pubnub.com/ + + + from + ^http://(?:www\.)?help\.pubnub\.com/ + to + https://help.pubnub.com/ + + + securecookie + + host + ^(?:\.admin|help)\.pubnub\.com$ + name + .+ + + target + + host + *.pubnub.com + + + + PubSoft.org + + ruleset + + name + PubSoft.org + rule + + from + ^http://(www\.)?pubsoft\.org/ + to + https://www.pubsoft.org/ + + target + + + host + pubsoft.org + + + host + www.pubsoft.org + + + + + Pubdirecte.com + + ruleset + + name + Pubdirecte.com + rule + + from + ^http://(?:(?:secure|static|www)\.)?pubdirecte\.com/ + to + https://secure.pubdirecte.com/ + + securecookie + + host + ^secure\.pubdirecte\.com$ + name + .+ + + target + + + host + pubdirecte.com + + + host + *.pubdirecte.com + + + + + Pubkey.is + + ruleset + + name + Pubkey.is + rule + + from + ^http://(www\.)?pubkey\.is/ + to + https://$1pubkey.is/ + + securecookie + + host + ^(?:www\.)?pubkey\.is$ + name + .* + + target + + + host + pubkey.is + + + host + www.pubkey.is + + + + + Public Broadcasting Service (partial) + + ruleset + + name + Public Broadcasting Service (partial) + platform + mixedcontent + rule + + + from + ^http://www-tc\.pbs\.org/s3/pbs\.(merlin\.cdn\.prod|pbsorg-prod\.mediafiles)/ + to + https://s3.amazonaws.com/pbs.$1/ + + + from + ^https?://gchrome\.cdn\.pbs\.org/ + to + https://d2nu96cf2r9spk.cloudfront.net/ + + + from + ^http://(www\.)?shoppbs\.org/ + to + https://$1shoppbs.org/ + + + securecookie + + host + ^www\.shoppbs\.org$ + name + .+ + + target + + + host + video.pbs.org + + + host + www-tc.pbs.org + + + host + shoppbs.org + + + host + www.shoppbs.org + + + + + Public Citizen + + ruleset + + name + Public Citizen + rule + + + from + ^http://(?:www\.)?citizen\.org/ + to + https://www.citizen.org/ + + + from + ^http://(action|secure)\.citizen\.org/ + to + https://$1.citizen.org/ + + + securecookie + + host + ^(?:action|secure|www)\.citizen\.org$ + name + .+ + + target + + + host + citizen.org + + + host + *.citizen.org + + + + + Public Knowledge + + ruleset + + name + Public Knowledge + rule + + from + ^http://(www\.)?publicknowledge\.org/ + to + https://www.publicknowledge.org/ + + securecookie + + host + (^|\.)publicknowledge\.org$ + name + .+ + + target + + + host + publicknowledge.org + + + host + www.publicknowledge.org + + + + + Public Library of Science (partial) + + ruleset + + name + Public Library of Science (partial) + platform + mixedcontent + rule + + from + ^http://(currents\.|register\.|www\.)?plos\.org/ + to + https://$1plos.org/ + + securecookie + + host + ^(.*\.)?plos\.org$ + name + .* + + target + + + host + plos.org + + + host + *.plos.org + + + + + Public Sector Management Program + + ruleset + + name + Public Sector Management Program + rule + + from + ^http://(?:www\.)?psmprogram\.gov\.au/ + to + https://www.psmprogram.gov.au/ + + target + + + host + psmprogram.gov.au + + + host + *.psmprogram.gov.au + + + + + Public Sector Superannuation Accumulation Plan + + ruleset + + name + Public Sector Superannuation Accumulation Plan + rule + + from + ^http://(?:www\.)?pssap\.gov\.au/ + to + https://www.pssap.gov.au/ + + target + + + host + pssap.gov.au + + + host + *.pssap.gov.au + + + + + Public Sector Superannuation Scheme + + ruleset + + name + Public Sector Superannuation Scheme + rule + + from + ^http://(?:www\.)?pss\.gov\.au/ + to + https://www.pss.gov.au/ + + target + + + host + pss.gov.au + + + host + *.pss.gov.au + + + + + Public Suffix.org + + ruleset + + name + Public Suffix.org + rule + + from + ^http://(www\.)?publicsuffix\.org/ + to + https://$1publicsuffix.org/ + + target + + + host + publicsuffix.org + + + host + www.publicsuffix.org + + + + + Public-Idées (partial) + + ruleset + + name + Public-Idées (partial) + rule + + from + ^http://(www\.)?publicidees\.com/ + to + https://$1publicidees.com/ + + target + + + host + publicidees.com + + + host + www.publicidees.com + + + + + Public.Resource.Org + + ruleset + + name + Public.Resource.Org + rule + + + from + ^http://fax\.org/ + to + https://bit.ly/ + + + from + ^http://(www\.)?(public\.)?resource\.org/ + to + https://public.resource.org/ + + + from + ^http://bulk\.resource\.org/ + to + https://bulk.resource.org/ + + + from + ^http://(www\.)?(house|law|patent)\.resource\.org/ + to + https://$2.resource.org/ + + + from + ^http://(www\.)?yeswecan\.org/ + to + https://yeswecan.org/ + + + target + + + host + fax.org + + + host + resource.org + + + host + *.resource.org + + + host + house.resource.org + + + host + www.house.resource.org + + + host + law.resource.org + + + host + www.law.resource.org + + + host + patent.resource.org + + + host + www.patent.resource.org + + + host + public.resource.org + + + host + www.public.resource.org + + + host + yeswescan.org + + + host + www.yeswescan.org + + + + + PublicDemand + + ruleset + + name + PublicDemand + rule + + from + ^http://(www\.)?publikdemand\.com/ + to + https://$1publikdemand.com/ + + securecookie + + host + ^www\.publikdemand\.com$ + name + .+ + + target + + + host + publikdemand.com + + + host + www.publikdemand.com + + + + + PublicInsightNetwork.org + + ruleset + + name + PublicInsightNetwork.org + rule + + from + ^http://(www\.)?publicinsightnetwork\.org/ + to + https://$1publicinsightnetwork.org/ + + securecookie + + host + ^(?:www\.)?publicinsightnetwork\.org$ + name + .+ + + target + + + host + publicinsightnetwork.org + + + host + www.publicinsightnetwork.org + + + + + Publicintelligence + + ruleset + + name + Publicintelligence + platform + mixedcontent + rule + + from + ^http://(?:www\.)?publicintelligence\.net/ + to + https://publicintelligence.net/ + + target + + + host + publicintelligence.net + + + host + www.publicintelligence.net + + + + + Pulse.me + + ruleset + + name + Pulse.me + rule + + from + ^http://(www\.)?pulse\.me/ + to + https://www.pulse.me/ + + target + + + host + www.pulse.me + + + host + pulse.me + + + + + PulsePoint (partial) + + ruleset + + name + PulsePoint (partial) + rule + + + from + ^http://(www\.)?apertureinsight\.com/ + to + https://$1apertureinsight.com/ + + + from + ^http://(?:www\.)?contextweb\.com/ + to + https://www.contextweb.com/ + + + from + ^http://blog\.contextweb\.com/sellingdesk$ + to + https://getsatisfaction.com/contextweb + + + from + ^http://(bh|exchange|tag)\.contextweb\.com/ + to + https://$1.contextweb.com/ + + + from + ^http://login\.stormpost\.datranmedia\.com/ + to + https://login.stormpost.datranmedia.com/ + + + from + ^http://(?:www\.)?nmargin\.com/ + to + https://nmargin.com/ + + + from + ^http://bh\.pulsepoint\.com/ + to + https://bh.pulsepoint.com/ + + + securecookie + + + host + ^www\.apertureinsight\.com$ + name + .* + + + host + ^\.contextweb\.com$ + name + .+ + + + host + ^login\.stormpost\.datranmedia\.com$ + name + .* + + + host + ^nmargin\.com$ + name + .* + + + target + + + host + apertureinsight.com + + + host + www.apertureinsight.com + + + host + contextweb.com + + + host + *.contextweb.com + + + host + login.stormpost.datranmedia.com + + + host + nmargin.com + + + host + www.nmargin.com + + + host + bh.pulsepoint.com + + + + + Puma.com + + ruleset + + name + Puma.com + platform + mixedcontent + rule + + + from + ^http://www\.puma\.com/ + to + https://www.puma.com/ + + + from + ^http://puma\.com/ + to + https://www.puma.com/ + + + from + ^http://assets\.puma\.com/ + to + https://assets.puma.com/ + + + from + ^http://is\.puma\.com/ + to + https://is.puma.com/ + + + target + + + host + www.puma.com + + + host + assets.puma.com + + + host + is.puma.com + + + host + puma.com + + + + + Pumo.com.tw (false MCB) + + ruleset + + name + Pumo.com.tw (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.pumo\.com\.tw/ + to + https://www.pumo.com.tw/ + + securecookie + + host + ^www\.pumo\.com\.tw$ + name + .+ + + target + + host + *.pumo.com.tw + + + + Pumo.com.tw (partial) + + ruleset + + name + Pumo.com.tw (partial) + rule + + from + ^http://www\.pumo\.com\.tw/(?=/*www/+(?:[\w-]+/+)?(?:css/|favicon\.ico|images/|inc/|top/)) + to + https://www.pumo.com.tw/ + + target + + host + www.pumo.com.tw + + + + Punterlink (partial) + + ruleset + + name + Punterlink (partial) + rule + + from + ^http://cdn\.punterlink\.co\.uk/ + to + https://3026-iamnoonesolution.netdna-ssl.com/ + + target + + host + cdn.punterlink.co.uk + + + + Puppet Labs + + ruleset + + name + Puppet Labs + rule + + + from + ^http://((?:docs|forge(?:staging)?(?:api)?|projects|tickets|www)\.)?puppetlabs\.com/ + to + https://$1puppetlabs.com/ + + + from + ^http://info\.puppetlabs\.com/(?=css/|images/|rs/) + to + https://na-h.puppetlabs.com/ + + + securecookie + + host + ^tickets\.puppetlabs\.com$ + name + .+ + + target + + + host + puppetlabs.com + + + host + *.puppetlabs.com + + + + + Purdue OWL + + ruleset + + name + Purdue OWL + rule + + from + ^http://(www\.)?owl\.english\.purdue\.edu/ + to + https://owl.english.purdue.edu/ + + target + + host + owl.english.purdue.edu + + + + Purdue Plant Doctor + + ruleset + + name + Purdue Plant Doctor + rule + + from + ^http://(www\.)?purdueplantdoctor\.com/ + to + https://$1purdueplantdoctor.com/ + + securecookie + + host + ^(?:www\.)?purdueplantdoctor\.com$ + name + .+ + + target + + + host + purdueplantdoctor.com + + + host + www.purdueplantdoctor.com + + + + + Purdue University (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?science\.purdue\.edu/.+\.html + + name + Purdue University (partial) + rule + + + from + ^http://((?:(?:www\.)?(?:admissions?|ag|agriculture|cancerresearch|ces|cyber|discoverypark|diversity|donate|dro|extension|nano|pathwaytopurdue|proed|support|tedx|vet)|www\.acsl|qa\.admission|intranet2?\.ag|www[23]\.ag|www\.ag(?:con|ry)|autodiscover|(?:aragorn|printers)\.bio|(?:qa|www)\.(?:bioinformatics|hhs|irb|onepurdue|police)|blackboard|calendar|www\.cco|www\.cec|cassandra\.cerias|www\.cie|www\.cri|(?:caid|editcourses|jafci(?:dev)?|testwww1|www)\.chem|www\.courses|portals\.cs|www\.distance|directory|qa\.diversity|(?:myepoint|sharepoint)\.ecn|(?:collaborate|discover)\.education|(?:prod\.|qa\.)?owl\.english|www\.eventreg|(?:autodiscover\.|legacy\.)?exchange|www\.four-h|giving|www\.gradschool|www\.hort|web\.ics|www\.ippu|www\.is(?:co|s)|(?:erp-portal-prd|esa-oas-prod|goremote|help|ias|mdc|wiki|www2)\.itap|(?:risque|www)\.itns|(?:intra|webapps)\.krannert|legacy|(?:apps|catalog|login\.ezproxy|www1)\.lib|(?:gmig|www)\.math|www\.mgmt|mycourses|mymail|(?:selfservice|wl)\.mypurdue|owa|legacy\.owa|qa\.pathwaytopurdue|www\.pec|www\.pharmacy|(?:fixmyhome|trackpad)\.physfac|www\.physics|purr|web\.rcac|(?:help|kb|lpvwebresnet01|my|stats|trams)\.resnet|gar2\.science|search|www\.stud(?:ent-orgs|yabroad)|www\.tech|(?:news|qa|www)\.uns|qa\.vet|www|qa\.www)\.)?purdue\.edu/ + to + https://$1purdue.edu/ + + + from + ^https?://(?:www\.)?(addl|bio|cerias|cla|cs|eas|gbe|getinvolved|housing|itap|krannert|lib|ezproxy\.lib|rcac|science|union)\.purdue\.edu/ + to + https://www.$1.purdue.edu/ + + + from + ^https?://www\.ansc\.purdue\.edu/(?:\?.*)?$ + to + https://www.ag.purdue.edu/ansc + + + from + ^https?://btny\.purdue\.edu/(\?.*)?$ + to + https://www.ag.purdue.edu/btny$1 + + + from + ^https?://(?:www\.)?cancer\.purdue\.edu/(?:[^\?]*)(\?.*)?$ + to + https://www.cancerresearch.purdue.edu/$1 + + + from + ^https?://www\.cfs\.purdue\.edu/(?:\?.*)?$ + to + https://www.purdue.edu/hhs/ + + + from + ^https?://www\.cfs\.purdue\.edu/extension(?:[/\?].*)?$ + to + https://www.purdue.edu/hhs/extension/ + + + from + ^https?://epics\.ecn\.purdue\.edu/ + to + https://engineering.purdue.edu/EPICS + + + from + ^https?://(?:www\.)?(engineering|gateway|marketing|mypurdue)\.purdue\.edu/ + to + https://$1.purdue.edu/ + + + from + ^https?://www\.entm\.purdue\.edu/(?:\?.*)?$ + to + https://www.ag.purdue.edu/entm/Pages/default.aspx + + + from + ^https?://india\.fll\.purdue\.edu/(?:\?.*)?$ + to + https://www.cla.purdue.edu/fll/ + + + from + ^https?://flowers\.hort\.purdue\.edu/(?:\?.*)?$ + to + https://ag.purdue.edu/hla/lopezlab/Pages/default.aspx + + + from + ^https?://a(?:pi01|sc02)p\.lib\.purdue\.edu/ + to + https://www.lib.purdue.edu/ + + + from + ^https?://docs\.lib\.purdue\.edu/assets/ + to + https://dlpurdue.bepress.com/assets/ + + + from + ^https?://guides\.lib\.purdue\.edu/(css\d*|data|js)/ + to + https://libguides.com/$1/ + + + from + ^https?://scholarly\.lib\.purdue\.edu/ + to + https://www.lib.purdue.edu/scholarly + + + from + ^https?://(?:www1?\.)?psych\.purdue\.edu/ + to + https://www1.psych.purdue.edu/ + + + from + ^https?://c89\.science\.purdue\.edu/$ + to + https://www.science.purdue.edu/ + + + securecookie + + host + ^.+\.purdue\.edu$ + name + .+ + + target + + + host + purdue.edu + + + host + *.purdue.edu + + + + + Purdue University Association + + ruleset + + name + Purdue University Association + rule + + from + ^https?://(?:www\.)?purduealum(ni)?\.org/ + to + https://www.purduealum$1.org/ + + securecookie + + host + ^www\.purduealumni\.org$ + name + .+ + + target + + + host + purduealum.org + + + host + purduealumni.org + + + host + www.purduealum.org + + + host + www.purduealumni.org + + + + + Pure Auto (partial) + + ruleset + + name + Pure Auto (partial) + rule + + from + ^http://(www\.)?purecars\.com/ + to + https://$1purecars.com/ + + securecookie + + host + ^(.*\.)?purecars\.com$ + name + .* + + target + + + host + purecars.com + + + host + www.purecars.com + + + + + Pure Cambogia.com + + ruleset + + name + Pure Cambogia.com + rule + + from + ^http://(www\.)?purecambogia\.com/ + to + https://$1purecambogia.com/ + + securecookie + + host + ^\.purecambogia\.com$ + name + .+ + + target + + + host + purecambogia.com + + + host + *.purecambogia.com + + + + + Pure Chat.com (partial) + + ruleset + + name + Pure Chat.com (partial) + rule + + from + ^http://(www\.)?purechat\.com/ + to + https://$1purechat.com/ + + target + + + host + purechat.com + + + host + www.purechat.com + + + + + Pure Ultra Cleanse + + ruleset + + name + Pure Ultra Cleanse + rule + + from + ^http://(www\.)?pureultracleanse\.com/ + to + https://$1pureultracleanse.com/ + + securecookie + + host + ^(?:w*\.)?pureultracleanse\.com$ + name + .+ + + target + + + host + pureultracleanse.com + + + host + *.pureultracleanse.com + + + + + PureHacking + + ruleset + + name + PureHacking + rule + + from + ^http://(?:www\.)?purehacking\.com/ + to + https://www.purehacking.com/ + + target + + + host + www.purehacking.com + + + host + purehacking.com + + + + + PureInfo + + ruleset + + name + PureInfo + rule + + from + ^http://(www\.)?pureinfo\.com/ + to + https://$1pureinfo.com/ + + securecookie + + host + ^\.pureinfo\.com$ + name + .+ + + target + + + host + pureinfo.com + + + host + *.pureinfo.com + + + + + PureVPN (partial) + + ruleset + + exclusion + + pattern + ^http://billing\.purevpn\.com/(?:announcements|downloads|index|knowledgebase)\.php + + name + PureVPN (partial) + rule + + from + ^http://(billing\.|www\.)?purevpn\.com/ + to + https://$1purevpn.com/ + + securecookie + + host + ^www\.purevpn\.com$ + name + .+ + + target + + + host + purevpn.com + + + host + *.purevpn.com + + + + + Pureloto.com + + ruleset + + name + Pureloto.com + rule + + from + ^http://(www\.)?pureloto\.com/ + to + https://$1pureloto.com/ + + securecookie + + host + ^(?:www)?\.pureloto\.com$ + name + .+ + + target + + + host + pureloto.com + + + host + *.pureloto.com + + + + + Puritan.com + + ruleset + + name + Puritan.com + rule + + from + ^http://(?:www\.)?puritan\.com/ + to + https://www.puritan.com/ + + target + + + host + puritan.com + + + host + www.puritan.com + + + + + Push Popcorn + + ruleset + + name + Push Popcorn + rule + + from + ^http://(www\.)?pushpopcorn\.com/ + to + https://$1pushpopcorn.com/ + + securecookie + + host + ^(?:w*\.)?pushpopcorn\.com$ + name + .+ + + target + + + host + pushpopcorn.com + + + host + *.pushpopcorn.com + + + + + Push.IO (partial) + + ruleset + + name + Push.IO (partial) + rule + + from + ^http://(manage|status)\.push\.io/ + to + https://$1.push.io/ + + securecookie + + host + ^manage\.push\.io$ + name + .+ + + target + + host + *.push.io + + + + PushPlay (partial) + + ruleset + + name + PushPlay (partial) + rule + + from + ^http://(www\.)?pushplay\.com/ + to + https://$1pushplay.com/ + + securecookie + + host + ^(?:www\.)?pushplay\.com$ + name + .+ + + target + + + host + pushplay.com + + + host + www.pushplay.com + + + + + Pusher (partial) + + ruleset + + name + Pusher (partial) + rule + + + from + ^https?://(?:www\.)?pusherapp\.com/ + to + https://pusher.com/ + + + from + ^http://(app|ws)\.pusherapp\.com/ + to + https://$1.pusherapp.com/ + + + securecookie + + host + ^app\.pusherapp\.com$ + name + .+ + + target + + + host + pusherapp.com + + + host + *.pusherapp.com + + + + + Pusher.com (partial) + + ruleset + + name + Pusher.com (partial) + rule + + from + ^http://((?:app|js|sockjs|www)\.)?pusher\.com/ + to + https://$1pusher.com/ + + target + + + host + pusher.com + + + host + *.pusher.com + + + + + PutLocker (partial) + + ruleset + + name + PutLocker (partial) + rule + + + from + ^http://wac\.51d5\.edgecastcdn\.net/8051D5/ + to + https://gs1.wac.edgecastcdn.net/8051D5/ + + + from + ^http://(?:images|static)\.putlocker\.com/ + to + https://images.putlocker.com/ + + + from + ^http://(www\.)?putlocker\.com/(?=favicon\.ico|fuu\.php|images/|include/|putlocker\.ico) + to + https://$1putlocker.com/ + + + target + + + host + wac.51d5.edgecastcdn.net + + + host + putlocker.com + + + host + *.putlocker.com + + + + + PwdHash.com + + ruleset + + name + PwdHash.com + rule + + from + ^http://(www\.)?pwdhash\.com/ + to + https://$1pwdhash.com/ + + target + + + host + pwdhash.com + + + host + www.pwdhash.com + + + + + Pypi + + ruleset + + name + Pypi + rule + + from + ^http://pypi\.python\.org/(pypi|static/) + to + https://pypi.python.org/$1 + + securecookie + + host + ^pypi.python.org$ + name + .* + + target + + host + pypi.python.org + + + + Python.org (cacert) + + ruleset + + name + Python.org (cacert) + platform + cacert + rule + + from + ^http://bugs\.python\.org/ + to + https://bugs.python.org/ + + target + + host + bugs.python.org + + + + Python.org (partial) + + ruleset + + name + Python.org (partial) + rule + + from + ^http://((?:docs|mail|packages|packaging|wiki|www)\.)?python\.org/ + to + https://$1python.org/ + + securecookie + + host + ^wiki\.python\.org$ + name + .+ + + target + + + host + python.org + + + host + *.python.org + + + + + Python.org SVN + + ruleset + + name + Python.org SVN + platform + cacert + rule + + from + ^http://svn\.python\.org/ + to + https://svn.python.org/ + + target + + host + svn.python.org + + + + Página Zero + + ruleset + + name + Página Zero + rule + + from + ^http://(www\.)?paginazero\.com\.br/ + to + https://$1paginazero.com.br/ + + securecookie + + host + ^(?:w*\.)?paginazero\.com\.br$ + name + .+ + + target + + + host + paginazero.com.br + + + host + *.paginazero.com.br + + + + + PãoDelícia.com + + ruleset + + name + PãoDelícia.com + rule + + from + ^http://(www\.)?paodelicia\.com/ + to + https://$1paodelicia.com/ + + securecookie + + host + ^(?:w*\.)?paodelicia\.com$ + name + .+ + + target + + + host + paodelicia.com + + + host + *.paodelicia.com + + + + + Pécsi Tudományegyetem + + ruleset + + name + Pécsi Tudományegyetem + rule + + from + ^http://www\.pte\.hu/ + to + https://www.pte.hu/ + + target + + host + www.pte.hu + + + + Q1Media.com (partial) + + ruleset + + name + Q1Media.com (partial) + rule + + + from + ^http://ads\.q1media\.com/ + to + https://ib.adnxs.com/ + + + from + ^http://hydra\.q1media\.com/ + to + https://hydra.q1media.com/ + + + securecookie + + host + ^hydra\.q1media\.com$ + name + .+ + + target + + host + *.q1media.com + + + + Q7 Enterprises + + ruleset + + name + Q7 Enterprises + rule + + from + ^http://(www\.)?q7\.com/ + to + https://$1q7.com/ + + target + + + host + q7.com + + + host + www.q7.com + + + + + Q8Car (partial) + + ruleset + + name + Q8Car (partial) + rule + + + from + ^http://(www\.)?q8car\.com/ + to + https://$1q8car.com/ + + + from + ^http://kuwait\.q8car\.com/(ClientCallbacksHandler\.asmx|images/|JavaScript/|ResourceHandler\.ashx|(?:Script|Web)Resource\.axd|themes/) + to + https://www.q8car.com/$1 + + + target + + + host + q8car.com + + + host + *.q8car.com + + + + + QB50 + + ruleset + + name + QB50 + rule + + from + ^http://(www\.)?qb50\.eu/ + to + https://$1qb50.eu/ + + securecookie + + host + ^(?:www\.)?qb50\.eu$ + name + .+ + + target + + + host + qb50.eu + + + host + www.qb50.eu + + + + + QFX Software.com + + ruleset + + name + QFX Software.com + rule + + + from + ^http://(www\.)?qfxsoftware\.com/ + to + https://$1qfxsoftware.com/ + + + from + ^http://(?:download|secure)\.qfxsoftware\.com/ + to + https://secure.qfxsoftware.com/ + + + target + + + host + qfxsoftware.com + + + host + *.qfxsoftware.com + + + + + QIP + + ruleset + + name + QIP + rule + + + from + ^http://((?:api|download|help|kards|lstats|maps|mail|memori|news|partner|pass|photo|pip|s|shot|search|welcome|www)\.)?qip\.ru/ + to + https://$1qip.ru/ + + + from + ^http://mblogi\.qip\.ru/+\??$ + to + https://qip.ru/?mblogi + + + from + ^http://mblogi\.qip\.ru/+[^?]*\? + to + https://qip.ru/?mblogi& + + + securecookie + + host + ^\.qip\.ru$ + name + .+ + + target + + + host + qip.ru + + + host + *.qip.ru + + + + + QQ (partial) + + ruleset + + name + QQ (partial) + rule + + from + ^http://((?:cnc\.)?exmail|mail|(?:en|res|rl|ptlogin2|wp|ws)\.mail|(?:api|login|mp|open|web|webpush)\.weixin|wx|res\.wx)\.qq\.com/ + to + https://$1.qq.com/ + + target + + host + *.qq.com + + + + QR Server.com (partial) + + ruleset + + name + QR Server.com (partial) + rule + + from + ^http://api\.qrserver\.com/ + to + https://api.qrserver.com/ + + target + + host + api.qrserver.com + + + + QR Solutions + + ruleset + + name + QR Solutions + rule + + from + ^http://((?:api|my|www)\.)?qrsolutions\.com/ + to + https://$1qrsolutions.com/ + + securecookie + + host + ^\.qrsolutions.com$ + name + .+ + + target + + + host + qrsolutions.com + + + host + *.qrsolutions.com + + + + + QS LI.com + + ruleset + + name + QS LI.com + rule + + from + ^http://(?:www\.)?qsli\.com/ + to + https://www.qsli.com/ + + securecookie + + host + ^(?:www)?\.qsli\.com$ + name + .+ + + target + + + host + qsli.com + + + host + *.qsli.com + + + + + QSstats.com + + ruleset + + name + QSstats.com + rule + + from + ^http://(?:www\.)?qsstats\.com/ + to + https://www.qsstats.com/ + + securecookie + + host + ^www\.qsstats\.com$ + name + .+ + + target + + + host + qsstats.com + + + host + www.qsstats.com + + + + + QUnit JS.com + + ruleset + + name + QUnit JS.com + rule + + from + ^http://(api\.)?qunitjs\.com/ + to + https://$1qunitjs.com/ + + target + + + host + qunitjs.com + + + host + api.qunitjs.com + + + + + QWK.net (partial) + + ruleset + + name + QWK.net (partial) + rule + + from + ^http://customers\.qwk\.net/ + to + https://customers.qwk.net/ + + securecookie + + host + ^customers\.qwk\.net$ + name + .+ + + target + + host + customers.qwk.net + + + + QWKnet LLC.com (partial) + + ruleset + + name + QWKnet LLC.com (partial) + rule + + from + ^http://((?:cp|mail|shared)\.)?qwknetllc\.com/ + to + https://$1qwknetllc.com/ + + securecookie + + host + ^(?:mail\.|\.shared\.)?qwknetllc\.com$ + name + .+ + + target + + + host + qwknetllc.com + + + host + *.qwknetllc.com + + + + + Qabel + + ruleset + + name + Qabel + rule + + from + ^http://(www\.)?qabel\.de/ + to + https://www.qabel.de/ + + target + + + host + qabel.de + + + host + www.qabel.de + + + + + Qbrick.com (partial) + + ruleset + + name + Qbrick.com (partial) + rule + + from + ^http://(vms\.admin|(?:assetmanager|assets|authorization|delivery|presenter|vms)\.api|ovp|(?:presenter\.|professional\.)?player|publisher)\.qbrick\.com/ + to + https://$1.qbrick.com/ + + securecookie + + host + ^presenter\.player\.qbrick\.com$ + name + .+ + + target + + host + *.qbrick.com + + + + Qnsr.com + + ruleset + + name + Qnsr.com + rule + + from + ^http://(?:e1\.cdn|o1)\.qnsr\.com/ + to + https://o1.qnsr.com/ + + target + + host + *.qnsr.com + + + + Qontext + + ruleset + + name + Qontext + rule + + from + ^http://(www\.)?qontext\.com/ + to + https://$1qontext.com/ + + securecookie + + host + ^www\.qontext\.com$ + name + .* + + target + + + host + qontext.com + + + host + www.qontext.com + + + + + Qoo10.cn (partial) + + ruleset + + name + Qoo10.cn (partial) + rule + + + from + ^http://(gd|static)(?:ssl)?\.image-qoo10\.cn/ + to + https://$1ssl.image-qoo10.cn/ + + + from + ^http://(my|qsm)\.qoo10\.cn/ + to + https://$1.qoo10.cn/ + + + securecookie + + host + ^(?:my|qsm)\.qoo10\.cn$ + name + .+ + + target + + + host + *.image-qoo10.cn + + + host + *.qoo10.cn + + + + + Qoo10.com (partial) + + ruleset + + name + Qoo10.com (partial) + rule + + + from + ^http://dp\.image-gmkt\.com/ + to + https://staticssl.image-gmkt.com/ + + + from + ^http://(gd|static)(?:ssl)?\.image-gmkt\.com/ + to + https://$1ssl.image-gmkt.com/ + + + from + ^http://(kwave|my|pg)\.qoo10\.com/ + to + https://$1.qoo10.com/ + + + securecookie + + host + ^(?:kwave|my)\.qoo10\.com$ + name + .+ + + target + + + host + *.image-gmkt.com + + + host + *.qoo10.com + + + + + Qrobe.it + + ruleset + + name + Qrobe.it + rule + + + from + ^http://(www\.)?qrobe\.it/ + to + https://qrobe.it/ + + + from + ^http://([^/@:\.]+)\.qrobe\.it/ + to + https://$1.qrobe.it/ + + + securecookie + + host + ^(www)?\.qrobe\.it + name + .* + + target + + + host + qrobe.it + + + host + *.qrobe.it + + + + + Qt + + ruleset + + exclusion + + pattern + lists\.qt-project\.org + + name + Qt + platform + mixedcontent + rule + + + from + ^http://releases\.qt-project\.org/ + to + https://qtproject.cachefly.net/ + + + from + ^http://(\w+\.)?qt-project\.org/ + to + https://$1qt-project.org/ + + + securecookie + + host + ^(.*\.)?qt-project\.org$ + name + .* + + target + + + host + qt-project.org + + + host + *.qt-project.org + + + + + Qt Cloud Services.com + + ruleset + + name + Qt Cloud Services.com + rule + + + from + ^http://((?:console|developer|www)\.)?qtcloudservices\.com/ + to + https://$1qtcloudservices.com/ + + + from + ^http://status\.qtcloudservices\.com/ + to + https://qtcloudservices.statuspage.io/ + + + securecookie + + host + ^(?:console|developer)\.qtcloudservices\.com$ + name + .+ + + target + + + host + qtcloudservices.com + + + host + *.qtcloudservices.com + + + + + Qt Developer Days.com + + ruleset + + name + Qt Developer Days.com + rule + + from + ^http://(www\.)?qtdeveloperdays\.com/ + to + https://$1qtdeveloperdays.com/ + + target + + + host + qtdeveloperdays.com + + + host + www.qtdeveloperdays.com + + + + + Qt.io + + ruleset + + name + Qt.io + rule + + from + ^http://(www\.)?qt\.io/ + to + https://$1qt.io/ + + target + + + host + qt.io + + + host + www.qt.io + + + + + QuadPoint.org + + ruleset + + name + QuadPoint.org + rule + + from + ^http://(www\.)?quadpoint\.org/ + to + https://$1quadpoint.org/ + + securecookie + + host + ^\.quadpoint\.org$ + name + .+ + + target + + + host + quadpoint.org + + + host + *.quadpoint.org + + + + + Quagga + + ruleset + + name + Quagga + rule + + from + ^http://(?:bugzilla|lists)\.quagga\.net/ + to + https://bugzilla.quagga.net/ + + securecookie + + host + ^(?:bugzilla|lists)\.quagga\.net$ + name + .+ + + target + + + host + bugzilla.quagga.net + + + host + lists.quagga.net + + + + + QuakeNet.org + + ruleset + + name + QuakeNet.org + rule + + + from + ^http://(?:www\.)?quakenet\.org/ + to + https://www.quakenet.org/ + + + from + ^http://(auth|hg|webchat)\.quakenet\.org/ + to + https://$1.quakenet.org/ + + + securecookie + + host + ^(?:auth)?\.quakenet\.org$ + name + .* + + target + + + host + quakenet.org + + + host + *.quakenet.org + + + + + Qualaris.com (false MCB) + + ruleset + + name + Qualaris.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?qualaris\.com/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://www.qualaris.com/ + + securecookie + + host + ^(?:www)?\.qualaris\.com$ + name + .+ + + target + + + host + qualaris.com + + + host + *.qualaris.com + + + + + Qualaris.com (partial) + + ruleset + + name + Qualaris.com (partial) + rule + + from + ^http://(?:www\.)?qualaris\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://www.qualaris.com/ + + target + + + host + qualaris.com + + + host + www.qualaris.com + + + + + Qualcomm (partial) + + ruleset + + name + Qualcomm (partial) + rule + + from + ^http://(www\.)?qca\.qualcomm\.com/ + to + https://$1qca.qualcomm.com/ + + securecookie + + host + ^.*\.qca\.qualcomm\.com$ + name + .* + + target + + + host + qca.qualcomm.com + + + host + www.qca.qualcomm.com + + + + + QualityAgent (partial) + + ruleset + + name + QualityAgent (partial) + rule + + from + ^http://(support\.|www\.)?qualityagent\.com/ + to + https://$1qualityagent.com/ + + securecookie + + host + ^.+\.qualityunit\.com$ + name + .+ + + target + + + host + qualityagent.com + + + host + *.qualityagent.com + + + + + QualityUnit + + ruleset + + name + QualityUnit + rule + + from + ^http://(www\.)?qualityunit\.com/ + to + https://$1qualityunit.com/ + + securecookie + + host + ^www\.qualityunit\.com$ + name + .+ + + target + + + host + qualityunit.com + + + host + www.qualityunit.com + + + + + Qualtrics (surveys) + + ruleset + + exclusion + + pattern + ^http://(www\.)?qualtrics\.com/ + + name + Qualtrics (surveys) + rule + + from + ^http://([\w\-]+)\.((?:us2|asia)\.)?qualtrics\.com/ + to + https://$1.$2qualtrics.com/ + + securecookie + + host + ^(.*\.)?qualtrics\.com$ + name + .* + + target + + + host + *.qualtrics.com + + + host + *.us2.qualtrics.com + + + host + *.asia.qualtrics.com + + + + + Qualys + + ruleset + + name + Qualys + rule + + + from + ^http://laws\.qualys\.com/+ + to + https://community.qualys.com/blogs/laws-of-vulnerabilities/ + + + from + ^http://news\.qualys\.com/+ + to + https://community.qualys.com/blogs/news/ + + + from + ^http://([\w.]+\.)?qualys\.com/ + to + https://$1qualys.com/ + + + securecookie + + host + .*\.qualys\.com$ + name + .+ + + target + + + host + qualys.com + + + host + *.qualys.com + + + + + Quantcast + + ruleset + + name + Quantcast + rule + + from + ^http://((?:aboutads|ak|widget|www)\.)?quantcast\.com/ + to + https://$1quantcast.com/ + + securecookie + + host + .*\.quantcast\.com$ + name + .* + + target + + + host + quantcast.com + + + host + *.quantcast.com + + + + + Quantifiedself.com + + ruleset + + name + Quantifiedself.com + platform + firefox + rule + + from + ^http://forum\.quantifiedself\.com/ + to + https://forum.quantifiedself.com/ + + securecookie + + host + ^forum\.quantifiedself\.com$ + name + .+ + + target + + host + forum.quantifiedself.com + + + + Quantserve.com + + ruleset + + name + Quantserve.com + rule + + + from + ^http://edge\.quantserve\.com/ + to + https://www.quantserve.com/ + + + from + ^http://([^/:@\.]+\.)?quantserve\.com/ + to + https://$1quantserve.com/ + + + target + + + host + quantserve.com + + + host + *.quantserve.com + + + + + QuantumMAN + + ruleset + + name + QuantumMAN + rule + + from + ^http://(www\.)?quantummansite\.com/ + to + https://$1quantummansite.com/ + + securecookie + + host + ^\.quantummansite\.com$ + name + .+ + + target + + + host + quantummansite.com + + + host + *.quantummansite.com + + + + + Qubes-OS.org (partial) + + ruleset + + name + Qubes-OS.org (partial) + rule + + from + ^http://(?:(wiki\.)|www\.)?qubes-os\.org/ + to + https://$1qubes-os.org/ + + securecookie + + host + ^qubes-os\.org$ + name + .+ + + target + + + host + qubes-os.org + + + host + *.qubes-os.org + + + + + Qubit products.com + + ruleset + + name + Qubit products.com + rule + + from + ^http://((?:dashboard|opentag|pong|www)\.)?qubitproducts\.com/ + to + https://$1qubitproducts.com/ + + securecookie + + host + ^(?:www)?\.qubitproducts\.com$ + name + .+ + + target + + + host + qubitproducts.com + + + host + *.qubitproducts.com + + + + + Quch.io + + ruleset + + name + Quch.io + rule + + from + ^http://(?:www\.)?quch\.io/ + to + https://quch.io/ + + securecookie + + host + ^\.?quch\.io$ + name + .+ + + target + + + host + quch.io + + + host + *.quch.io + + + + + Queen's University Belfast (partial) + + ruleset + + name + Queen's University Belfast (partial) + rule + + + from + ^https?://(?:www\.)?qub\.ac\.uk/ + to + https://www.qub.ac.uk/ + + + from + ^https?://(?:www\.)?daro\.qub\.ac\.uk/ + to + https://daro.qub.ac.uk/ + + + from + ^http://knock\.qub\.ac\.uk/(?:\?.*)?$ + to + https://login.qol.qub.ac.uk/home/?logout=true + + + from + ^http://knock\.qub\.ac\.uk/myqueens/ + to + https://knock.qub.ac.uk/myqueens/ + + + from + ^http://(home|login)\.qol\.qub\.ac\.uk/ + to + https://$1.qol.qub.ac.uk/ + + + target + + + host + qub.ac.uk + + + host + *.qub.ac.uk + + + + + QueerVids + + ruleset + + name + QueerVids + rule + + from + ^http://(join\.|www\.)?queervids\.com/ + to + https://$1queervids.com/ + + securecookie + + host + ^\.queervids\.com$ + name + .+ + + target + + + host + queervids.com + + + host + *.queervids.com + + + + + Querna.org (partial) + + ruleset + + name + Querna.org (partial) + rule + + from + ^http://journal\.paul\.querna\.org/ + to + https://journal.paul.querna.org/ + + target + + host + journal.paul.querna.org + + + + Quest.com (partial) + + ruleset + + name + Quest.com (partial) + rule + + from + ^http://(?:www\.)?quest\.com/(common/|css/|documents/|js/|(?:Script|Web)Resource\.axd|shared/) + to + https://www.quest.com/$1 + + target + + + host + quest.com + + + host + www.quest.com + + + + + Questacon + + ruleset + + name + Questacon + rule + + from + ^http://(?:www\.)?questacon\.edu\.au/ + to + https://www.questacon.edu.au/ + + target + + + host + questacon.edu.au + + + host + *.questacon.edu.au + + + + + Questionmarket.com + + ruleset + + name + Questionmarket.com + rule + + from + ^http://(amch|www)\.questionmarket\.com/ + to + https://$1.questionmarket.com/ + + target + + host + *.questionmarket.com + + + + Quick Shopping Cart + + ruleset + + name + Quick Shopping Cart + rule + + + from + ^http://(?:app\.)?fastshoppingcart\.com/ + to + https://app.fastshoppingcart.com/ + + + from + ^http://www\.fastshoppingcart\.com/ + to + https://www.fastshoppingcart.com/ + + + securecookie + + host + ^(?:.+\.)?fastshoppingcart\.com$ + name + .+ + + target + + + host + fastshoppingcart.com + + + host + *.fastshoppingcart.com + + + + + Quidco.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.quidco\.com/+(?!(?:join-quidco|sign-in)(?:$|[?/])|static/) + + name + Quidco.com (partial) + rule + + from + ^http://(static\.|www\.)?quidco\.com/ + to + https://$1quidco.com/ + + target + + + host + quidco.com + + + host + *.quidco.com + + + + + Quik Callus.com + + ruleset + + name + Quik Callus.com + rule + + from + ^http://(www\.)?quikcallus\.com/ + to + https://$1quikcallus.com/ + + target + + + host + quikcallus.com + + + host + www.quikcallus.com + + + + + QuikPAY asp.com + + ruleset + + name + QuikPAY asp.com + rule + + from + ^http://(?:www\.)?quikpayasp\.com/ + to + https://quikpayasp.com/ + + securecookie + + host + ^quikpayasp\.com$ + name + .+ + + target + + + host + quikpayasp.com + + + host + www.quikpayasp.com + + + + + QuinStreet + + ruleset + + name + QuinStreet + rule + + from + ^http://(blog|clientservices|publishers|sitegenie-external|www)\.quinstreet\.com/ + to + https://$1.quinstreet.com/ + + securecookie + + host + ^.*\.quinstreet\.com$ + name + .+ + + target + + host + *.quinstreet.com + + + + Quirks.com + + ruleset + + name + Quirks.com + rule + + from + ^http://(?:www\.)?quirks\.com/ + to + https://www.quirks.com/ + + securecookie + + host + ^www\.quirks\.com$ + name + .+ + + target + + + host + quirks.com + + + host + www.quirks.com + + + + + QuiteRSS.org + + ruleset + + name + QuiteRSS.org + rule + + from + ^http://(www\.)?quiterss\.org/ + to + https://$1quiterss.org/ + + target + + + host + quiterss.org + + + host + www.quiterss.org + + + + + QuizAction.de (partial) + + ruleset + + name + QuizAction.de (partial) + rule + + from + ^http://(www\.)?(yahoo\.)?quizaction\.de/(?=favicon\.ico|img/|pics/|w/) + to + https://$1$2quizaction.de/ + + target + + + host + quizaction.de + + + host + *.quizaction.de + + + + + Qune.kuluttajavirasto.fi + + ruleset + + name + Qune.kuluttajavirasto.fi + rule + + from + ^http://qune\.kuluttajavirasto\.fi/ + to + https://qune.kuluttajavirasto.fi/ + + target + + host + qune.kuluttajavirasto.fi + + + + Quora + + ruleset + + name + Quora + rule + + + from + ^http://(\w+\.tch\.|www\.|[\w-]+\.)?quora\.com/ + to + https://$1quora.com/ + + + from + ^http://qph\.cf\.quoracdn\.net/ + to + https://d2o7bfz2il9cb7.cloudfront.net/ + + + from + ^http://(\w+)\.cf\.quoracdn\.net/ + to + https://$1.s3.amazonaws.com/ + + + from + ^http://(\w+)\.is\.quoracdn\.net/ + to + https://$1.is.quoracdn.net/ + + + securecookie + + host + ^\.quora\.com$ + name + .* + + target + + + host + quora.com + + + host + *.quora.com + + + host + *.quoracdn.net + + + + + QuoteMedia + + ruleset + + name + QuoteMedia + rule + + from + ^http://(app\.|www\.)?quotemedia\.com/ + to + https://$1quotemedia.com/ + + securecookie + + host + ^app\.quotemedia\.com$ + name + .+ + + target + + + host + quotemedia.com + + + host + *.quotemedia.com + + + + + Quotes and Sayings.com (false MCB) + + ruleset + + name + Quotes and Sayings.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?quotesnsayings\.com/ + to + https://$1quotesnsayings.com/ + + target + + + host + quotesnsayings.com + + + host + www.quotesnsayings.com + + + + + Quotestream (partial) + + ruleset + + name + Quotestream (partial) + rule + + from + ^http://secure\.quotestream\.com/ + to + https://secure.quotestream.com/ + + securecookie + + host + ^secure\.quotestream\.com$ + name + .+ + + target + + host + secure.quotestream.com + + + + Qweery (partial) + + ruleset + + name + Qweery (partial) + rule + + from + ^http://box\.qweery\.nl/ + to + https://box.qweery.nl/ + + target + + host + box.qweery.nl + + + + Qxl + + ruleset + + name + Qxl + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?qxl\.no/ + to + https://www.qxl.no/ + + + from + ^http://(?:www\.)?qxl\.dk/ + to + https://www.qxl.dk/ + + + target + + + host + qxl.no + + + host + www.qxl.no + + + host + qxl.dk + + + host + www.qxl.dk + + + + + R-HPC + + ruleset + + name + R-HPC + rule + + from + ^http://(www\.)?r-hpc\.com/ + to + https://$1r-hpc.com/ + + target + + + host + r-hpc.com + + + host + www.r-hpc.com + + + + + R01 (partial) + + ruleset + + name + R01 (partial) + rule + + from + ^http://partner\.r01\.ru/ + to + https://partner.r01.ru/ + + securecookie + + host + ^\.?partner\.r01\.ru$ + name + .+ + + target + + host + *.r01.ru + + + + R66T + + ruleset + + name + R66T + rule + + from + ^http://(www\.)?(?:onsiteconcierge|r66t)\.com/ + to + https://$1onsiteconcierge.com/ + + securecookie + + host + ^(?:www\.)?onsiteconcierge\.com$ + name + .+ + + target + + + host + onsiteconcierge.com + + + host + www.onsiteconcierge.com + + + host + r66t.com + + + host + www.r66t.com + + + + + R7.com (partial) + + ruleset + + name + R7.com (partial) + rule + + from + ^http://barra\.r7\.com/ + to + https://barra.r7.com/ + + target + + host + barra.r7.com + + + + RAC + + ruleset + + name + RAC + rule + + from + ^http://(?:www\.)?rac\.co\.uk/ + to + https://www.rac.co.uk/ + + securecookie + + host + ^(.+\.)?rac\.co\.uk$ + name + .* + + target + + + host + rac.co.uk + + + host + www.rac.co.uk + + + + + RAINN.org (partial) + + ruleset + + name + RAINN.org (partial) + rule + + from + ^http://((?:apps|donate|hotline|ohl|www)\.)?rainn\.org/ + to + https://$1rainn.org/ + + securecookie + + host + ^(?:\.|apps\.|donate\.|www\.)?rainn\.org$ + name + .+ + + target + + + host + rainn.org + + + host + *.rainn.org + + + + + RAND (partial) + + ruleset + + name + RAND (partial) + rule + + from + ^http://(?:www\.)?rand\.org/(cart(?:$|\?|/)|content/|etc/|favicon\.ico|profile(?:$|\?|\.html)) + to + https://www.rand.org/$1 + + securecookie + + host + ^\.rand\.org$ + name + ^__utm\w$ + + target + + + host + rand.org + + + host + *.rand.org + + + + + RB Invest WDC.eu (partial) + + ruleset + + name + RB Invest WDC.eu (partial) + rule + + from + ^http://rbinvestwdc\.eu/ + to + https://rbinvestwdc.eu/ + + securecookie + + host + ^rbinvestwdc\.eu$ + name + .+ + + target + + host + rbinvestwdc.eu + + + + RBB + + ruleset + + name + RBB + rule + + + from + ^http://(www\.)?rbb-online\.de/ + to + https://www.rbb-online.de/ + + + from + ^http://(www\.)?radioeins\.de/ + to + https://www.radioeins.de/ + + + target + + + host + www.rbb-online.de + + + host + www.radioeins.de + + + host + rbb-online.de + + + host + radioeins.de + + + + + RBCommons.com (partial) + + ruleset + + name + RBCommons.com (partial) + rule + + from + ^http://(www\.)?rbcommons\.com/ + to + https://$1rbcommons.com/ + + securecookie + + host + ^(?:www\.)?rbcommons\.com$ + name + .+ + + target + + + host + rbcommons.com + + + host + www.rbcommons.com + + + + + RCFP.org + + ruleset + + name + RCFP.org + rule + + from + ^http://(www\.)?rcfp\.org/ + to + https://$1rcfp.org/ + + securecookie + + host + ^\.rcfp\.org$ + name + .+ + + target + + + host + rcfp.org + + + host + *.rcfp.org + + + + + RCKing + + ruleset + + name + RCKing + rule + + from + ^http://(www\.)?rcking\.eu/ + to + https://$1rcking.eu/ + + securecookie + + host + ^(?:w*\.)?rcking\.eu$ + name + .+ + + target + + + host + rcking.eu + + + host + *.rcking.eu + + + + + RE.is (partial) + + ruleset + + name + RE.is (partial) + rule + + + from + ^http://(?:www\.)?re\.is/(?=da/CartService/|media/|skin/) + to + https://www.re.is/ + + + from + ^http://agent\.re\.is/ + to + https://agent.re.is/ + + + target + + + host + re.is + + + host + *.re.is + + + + + REC Registry + + ruleset + + name + REC Registry + rule + + from + ^http://(?:www\.)?rec-registry\.gov\.au/ + to + https://www.rec-registry.gov.au/ + + target + + + host + rec-registry.gov.au + + + host + *.rec-registry.gov.au + + + + + RF Parts.com + + ruleset + + name + RF Parts.com + rule + + + from + ^http://rfparts\.com/.* + to + https://www.rfparts.com/ + + + from + ^http://www\.rfparts\.com/ + to + https://www.rfparts.com/ + + + securecookie + + host + ^\.www\.rfparts\.com$ + name + .+ + + target + + + host + rfparts.com + + + host + *.rfparts.com + + + + + RFC Express + + ruleset + + name + RFC Express + rule + + from + ^http://(www\.)?rfcexpress\.com/ + to + https://$1rfcexpress.com/ + + securecookie + + host + ^(?:www\.)?rfcexpress\.com$ + name + .+ + + target + + + host + rfcexpress.com + + + host + www.rfcexpress.com + + + + + RFC-Editor + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?rfc-editor\.org/errata(?:_search)?\.php(?:$|\?) + + name + RFC-Editor + rule + + from + ^http://(www\.)?rfc-editor\.org/ + to + https://$1rfc-editor.org/ + + target + + + host + rfc-editor.org + + + host + www.rfc-editor.org + + + + + RG static.net + + ruleset + + name + RG static.net + rule + + from + ^http://s?([ci]\d)\.rgstatic\.net/ + to + https://s$1.rgstatic.net/ + + target + + host + *.rgstatic.net + + + + RH Cloud.com + + ruleset + + name + RH Cloud.com + rule + + + from + ^http://(?:www\.)?rhcloud\.com/+ + to + https://openshift.com/ + + + from + ^http://([\w-]+)\.rhcloud\.com/ + to + https://$1.rhcloud.com/ + + + securecookie + + host + ^[\w-]+\.rhcloud\.com$ + name + .+ + + target + + + host + rhcloud.com + + + host + *.rhcloud.com + + + + + RHUL.ac.uk (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?isg\.rhul\.ac\.uk/+(?:~|tls(?:$|[?/])) + + name + RHUL.ac.uk (partial) + rule + + + from + ^http://(?:www\.)?rhul\.ac\.uk/ + to + https://www.rhul.ac.uk/ + + + from + ^http://(?:cimhelpdesk|helpdesk\.ma)\.rhul\.ac\.uk/ + to + https://helpdesk.ma.rhul.ac.uk/ + + + from + ^http://(www\.)?isg\.rhul\.ac\.uk/ + to + https://$1isg.rhul.ac.uk/ + + + securecookie + + host + ^(?:cimhelpdesk|helpdesk\.ma|www)\.rhul\.ac\.uk$ + name + .+ + + target + + + host + rhul.ac.uk + + + host + *.rhul.ac.uk + + + + + RIAA + + ruleset + + name + RIAA + platform + mixedcontent + rule + + from + ^http://(www\.)?riaa\.com/ + to + https://$1riaa.com/ + + target + + + host + riaa.com + + + host + www.riaa.com + + + + + RIC.org + + ruleset + + name + RIC.org + rule + + from + ^http://(www\.)?ric\.org/ + to + https://$1ric.org/ + + securecookie + + host + ^(?:www\.)?ric\.org$ + name + .+ + + target + + + host + ric.org + + + host + www.ric.org + + + + + RIKEN.jp (partial) + + ruleset + + name + RIKEN.jp (partial) + rule + + from + ^http://www\.rikenresearch\.riken\.jp/ + to + https://www.rikenresearch.riken.jp/ + + securecookie + + host + ^www\.rikenresearch\.riken\.jp$ + name + .+ + + target + + host + www.rikenresearch.riken.jp + + + + RIS + + ruleset + + name + RIS + rule + + from + ^http://(www\.)?ris\.bka\.gv\.at/ + to + https://www.ris.bka.gv.at/ + + target + + + host + www.ris.bka.gv.at + + + host + ris.bka.gv.at + + + + + RISI + + ruleset + + name + RISI + rule + + from + ^http://(www\.)?risi(?:info)?\.com/ + to + https://$1risiinfo.com/ + + securecookie + + host + ^www\.risiinfo\.com$ + name + .* + + target + + + host + risi.com + + + host + www.risi.com + + + host + risiinfo.com + + + host + www.risiinfo.com + + + + + RL Rose + + ruleset + + name + RL Rose + rule + + from + ^http://(www\.)?rlrose\.co\.uk/ + to + https://$1rlrose.co.uk/ + + securecookie + + host + ^(?:www)?\.rlrose\.co\.uk$ + name + .+ + + target + + + host + rlrose.co.uk + + + host + *.rlrose.co.uk + + + + + RNR Wheels & Tires (partial) + + ruleset + + name + RNR Wheels & Tires (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?rnrwheels\.com/ + to + https://www.rnrwheels.com/ + + + from + ^http://shop\.rnrwheels\.com/(Portals/|scripts/|show(?:Category|Product)Image\.aspx) + to + https://shop.rnrwheels.com/$1 + + + securecookie + + host + ^\.rnrwheels\.com$ + name + .+ + + target + + + host + rnrwheels.com + + + host + *.rnrwheels.com + + + + + RNW.nl (partial) + + ruleset + + name + RNW.nl (partial) + rule + + from + ^http://(intranet|ocs|rvt-docs|sites|vpn|webmail|webtier)\.rnw\.nl/ + to + https://$1.rnw.nl/ + + securecookie + + host + .+\.rnw\.nl$ + name + .+ + + target + + host + *.rnw.nl + + + + ROBOXchange + + ruleset + + name + ROBOXchange + rule + + from + ^http://(?:www\.)?roboxchange\.com/ + to + https://roboxchange.com/ + + target + + + host + roboxchange.com + + + host + www.roboxchange.com + + + + + ROCKZi.com + + ruleset + + name + ROCKZi.com + rule + + from + ^http://(cloud\.|www\.)?rockzi\.com/ + to + https://$1rockzi.com/ + + securecookie + + host + ^\.?rockzi\.com$ + name + .+ + + target + + + host + rockzi.com + + + host + *.rockzi.com + + + + + ROI Solutions (partial) + + ruleset + + name + ROI Solutions (partial) + rule + + from + ^http://secure2\.roisolutions\.net/ + to + https://secure2.roisolutions.net/ + + securecookie + + host + ^secure2\.roisolutions\.net$ + name + .+ + + target + + host + secure2.roisolutions.net + + + + ROI.ru + + ruleset + + name + ROI.ru + rule + + from + ^http://((?:css|js|www)\.)?roi\.ru/ + to + https://$1roi.ru/ + + securecookie + + host + ^\.roi\.ru$ + name + .+ + + target + + + host + roi.ru + + + host + *.roi.ru + + + + + ROMDashboard + + ruleset + + name + ROMDashboard + rule + + from + ^http://(www\.)?romdashboard\.com/ + to + https://$1romdashboard.com/ + + securecookie + + host + ^(?:w*\.)?romdashboard\.com$ + name + .+ + + target + + + host + romdashboard.com + + + host + *.romdashboard.com + + + + + RPM Fusion.org (partial) + + ruleset + + name + RPM Fusion.org (partial) + rule + + from + ^http://(bugzilla|lists)\.rpmfusion\.org/ + to + https://$1.rpmfusion.org/ + + securecookie + + host + ^bugzilla\.rpmfusion\.org$ + name + .+ + + target + + host + *.rpmfusion.org + + + + RPXNow.com (partial) + + ruleset + + name + RPXNow.com (partial) + rule + + + from + ^http://(?:cdn|static)\.rpxnow\.com/ + to + https://s3.amazonaws.com/static.rpxnow.com/ + + + from + ^http://widget-cdn\.rpxnow\.com/ + to + https://d29usylhdk1xyu.cloudfront.net/ + + + from + ^http://(\w+\.)?rpxnow\.com/ + to + https://$1rpxnow.com/ + + + securecookie + + host + ^(?:.*\.)?rpxnow\.com$ + name + .+ + + target + + + host + rpxnow.com + + + host + *.rpxnow.com + + + + + RRTS.com + + ruleset + + name + RRTS.com + rule + + + from + ^http://(?:www\.)?rrts\.com/ + to + https://www.rrts.com/ + + + from + ^http://(beta|webservices|webservicesbeta)\.rrts\.com/ + to + https://$1.rrts.com/ + + + securecookie + + host + ^(?:beta|www)\.rrts\.com$ + name + .+ + + target + + + host + rrts.com + + + host + *.rrts.com + + + + + RSA + + ruleset + + name + RSA + rule + + + from + ^http://(?:www\.)?rsa\.com/ + to + https://www.rsa.com/ + + + from + ^http://blogs\.rsa\.com/ + to + https://blogs.rsa.com/ + + + securecookie + + + host + ^\.rsa\.com$ + name + ^__(?:qca|utm\w)$ + + + host + ^\.blogs\.rsa\.com$ + name + .+ + + + target + + + host + rsa.com + + + host + *.rsa.com + + + + + RSA Conference (partial) + + ruleset + + exclusion + + pattern + ^http://www\.rsaconference\.com/+(podcasts|videos)(?:$|[?/]) + + name + RSA Conference (partial) + rule + + + from + ^http://rsa\.edgeboss\.net/ + to + https://a248.e.akamai.net/f/127/3048/5/rsa.edgeboss.net/ + + + from + ^http://((?:365|beta|dev|uat|www)\.)?rsaconference\.com/ + to + https://$1rsaconference.com/ + + + securecookie + + host + ^(?:365|beta)\.rsaconference\.com$ + name + .+ + + target + + + host + rsa.edgeboss.net + + + host + rsaconference.com + + + host + *.rsaconference.com + + + + + RSA Security (partial) + + ruleset + + name + RSA Security (partial) + rule + + from + ^http://www\.securesuite\.co\.uk/ + to + https://www.securesuite.co.uk/ + + target + + host + www.securesuite.co.uk + + + + RSBAC (partial) + + ruleset + + name + RSBAC (partial) + rule + + from + ^http://(www\.)?rsbac\.org/ + to + https://$1rsbac.org/ + + securecookie + + host + ^www\.rsbac\.org$ + name + .* + + target + + + host + rsbac.org + + + host + www.rsbac.org + + + + + RSF.org (false MCB) + + ruleset + + name + RSF.org (false MCB) + platform + mixedcontent + rule + + from + ^http://12mars\.rsf\.org/ + to + https://12mars.rsf.org/ + + securecookie + + host + ^12mars\.rsf\.org$ + name + .+ + + target + + host + 12mars.rsf.org + + + + RSM secure.com + + ruleset + + name + RSM secure.com + rule + + from + ^http://rsm(\d)\.rsmsecure\.com/ + to + https://rsm$1.rsmsecure.com/ + + target + + host + *.rsmsecure.com + + + + RSPB + + ruleset + + name + RSPB + rule + + from + ^http://(shopping\.|www\.)?rspb\.org\.uk/ + to + https://$1rspb.org.uk/ + + securecookie + + host + ^\.shopping\.rspb\.org\.uk$ + name + .+ + + target + + + host + rspb.org.uk + + + host + *.rspb.org.uk + + + host + *.shopping.rspb.org.uk + + + + + RSPCA (partial) + + ruleset + + exclusion + + pattern + ^http://www\.rspca\.org\.uk/+(?:home)?(?:\?.*)?$ + + name + RSPCA (partial) + rule + + + from + ^http://(?:(?:content\.)?www\.)?rspca\.org\.uk/ + to + https://www.rspca.org.uk/ + + + from + ^http://donations\.rspca\.org\.uk/ + to + https://donations.rspca.org.uk/ + + + securecookie + + + host + ^donations\.rspca\.org\.uk$ + name + .+ + + + host + ^www\.rspca\.org\.uk$ + name + ^CMS_PRD_SESSIONID$ + + + target + + + host + rspca.org.uk + + + host + *.rspca.org.uk + + + + + RSPCA shop.co.uk + + ruleset + + name + RSPCA shop.co.uk + rule + + from + ^http://(www\.)?rspcashop\.co\.uk/ + to + https://$1rspcashop.co.uk/ + + securecookie + + host + ^(?:.*\.)?rspcashop\.co\.uk$ + name + .+ + + target + + + host + rspcashop.co.uk + + + host + *.rspcashop.co.uk + + + + + RSSinclude + + ruleset + + name + RSSinclude + rule + + from + ^http://(output1s\.|www\.)?rssinclude\.com/ + to + https://$1rssinclude.com/ + + target + + + host + rssinclude.com + + + host + *.rssinclude.com + + + + + RSVP + + ruleset + + name + RSVP + platform + mixedcontent + rule + + + from + ^https?://(?:images\.|resources\.)?rsvp\.com\.au/ + to + https://www.rsvp.com.au/ + + + from + ^http://www\.rsvp\.com\.au/((?:cms-|member)media/|css/|favicon\.ico|images/|login\.action|registration/) + to + https://www.rsvp.com.au/$1 + + + target + + + host + rsvp.com.au + + + host + *.rsvp.com.au + + + + + RStudio.com (partial) + + ruleset + + name + RStudio.com (partial) + rule + + from + ^http://(?:www\.)?rstudio\.com/ + to + https://www.rstudio.com/ + + target + + + host + rstudio.com + + + host + www.rstudio.com + + + + + RT Tire + + ruleset + + name + RT Tire + rule + + from + ^http://(www\.)?rttire\.com/ + to + https://$1rttire.com/ + + target + + + host + rttire.com + + + host + www.rttire.com + + + + + RT.com (partial) + + ruleset + + name + RT.com (partial) + rule + + from + ^http://(actualidad|assange|meetfriends)\.rt\.com/ + to + https://$1.rt.com/ + + securecookie + + host + ^.*\.rt\.com$ + name + .* + + target + + + host + rt.com + + + host + *.rt.com + + + + + RT.ru + + ruleset + + name + RT.ru + rule + + + from + ^http://rt\.ru/ + to + https://rt.ru/ + + + from + ^http://www\.rt\.ru/ + to + https://www.rt.ru/ + + + target + + + host + rt.ru + + + host + www.rt.ru + + + + + RTL.de (partial) + + ruleset + + name + RTL.de (partial) + rule + + + from + ^http://bilder\.akamai\.rtl\.de/ + to + https://a248.e.akamai.net/f/610/6737/8/bilder.akamai.net/ + + + from + ^http://(autoimg|bilder|rtl-videoclip-player)\.rtl\.de/ + to + https://$1.rtl.de/ + + + target + + host + *.rtl.de + + + + RTP.vc + + ruleset + + name + RTP.vc + rule + + from + ^http://(?:www\.)?rtp\.vc/ + to + https://www.rtp.vc/ + + securecookie + + host + ^\.rtp\.vc$ + name + .+ + + target + + + host + rtp.vc + + + host + *.rtp.vc + + + + + RTÉ + + ruleset + + name + RTÉ + rule + + + from + ^http://(img|static)\.rasset\.ie/ + to + https://$1.rasset.ie/ + + + from + ^https?://(?:www\.)?rte\.ie/ + to + https://www.rte.ie/ + + + from + ^http://(www\.)?rtenl\.ie/ + to + https://$1rtenl.ie/ + + + securecookie + + host + ^(www\.)?rtenl\.ie$ + name + .* + + target + + + host + *.rasset.ie + + + host + rte.ie + + + host + www.rte.ie + + + host + rtenl.ie + + + host + www.rtenl.ie + + + + + RUAG + + ruleset + + name + RUAG + rule + + from + ^http://(?:www\.)?ruag\.com/ + to + https://www.ruag.com/ + + target + + + host + ruag.com + + + host + www.ruag.com + + + + + RUDI.net + + ruleset + + name + RUDI.net + rule + + from + ^http://(?:www\.)?rudi\.net/ + to + https://www.rudi.net/ + + securecookie + + host + ^\.rudi\.net$ + name + .+ + + target + + + host + rudi.net + + + host + *.rudi.net + + + + + RYL Warfare + + ruleset + + name + RYL Warfare + rule + + from + ^http://(www\.)?rylwarfare\.net/ + to + https://$1rylwarefare.net/ + + securecookie + + host + ^(?:w*\.)?rylwarfare\.net$ + name + .+ + + target + + + host + rylwarfare.net + + + host + *.rylwarfare.net + + + + + RYOT (partial) + + ruleset + + name + RYOT (partial) + rule + + from + ^http://(www\.)?ryot\.org/wp-content/ + to + https://$1ryot.org/wp-content/ + + target + + + host + ryot.org + + + host + www.ryot.org + + + + + RabbitMQ + + ruleset + + name + RabbitMQ + rule + + from + ^http://((?:lists|next|www)\.)?rabbitmq\.com/ + to + https://$1rabbitmq.com/ + + target + + + host + rabbitmq.com + + + host + *.rabbitmq.com + + + + + Rabobank + + ruleset + + name + Rabobank + rule + + from + ^http://(bankieren\.|www\.)?rabobank\.nl/ + to + https://$1rabobank.nl/ + + securecookie + + host + ^(?:bankieren|www)?\.rabobank\.nl$ + name + .+ + + target + + + host + rabobank.nl + + + host + *.rabobank.nl + + + + + Race Forward.org (partial) + + ruleset + + name + Race Forward.org (partial) + rule + + + from + ^http://(?:www\.)?raceforward\.org/sites/ + to + https://www.raceforward.org/sites/ + + + from + ^http://piwik\.raceforward\.org/ + to + https://piwik.raceforward.org/ + + + target + + + host + raceforward.org + + + host + *.raceforward.org + + + + + Rachelbythebay.com + + ruleset + + name + Rachelbythebay.com + rule + + from + ^http://(www\.)?rachelbythebay\.com/ + to + https://www.rachelbythebay.com/ + + target + + + host + rachelbythebay.com + + + host + www.rachelbythebay.com + + + + + Rack911 + + ruleset + + name + Rack911 + rule + + from + ^http://(www\.)?rack911\.com/ + to + https://$1rack911.com/ + + securecookie + + host + ^\.rack911\.com$ + name + .+ + + target + + + host + rack911.com + + + host + *.rack911.com + + + + + RackCDN.com + + ruleset + + name + RackCDN.com + rule + + from + ^http://([\w-]+)\.(?:r\d+|ssl)\.cf(\d)\.rackcdn\.com/ + to + https://$1.ssl.cf$2.rackcdn.com/ + + target + + host + *.rackcdn.com + + + + Rackerhacker + + ruleset + + name + Rackerhacker + rule + + from + ^https?://(?:cdn\.|(www\.))?rackerhacker\.com/ + to + https://$1rackerhacker.com/ + + target + + + host + rackerhacker.com + + + host + *.rackerhacker.com + + + + + Rackspace (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.rackspace\.com/+knowledge-center/ + + + pattern + ^http://www\.rackspace\.com/+talent(?!/wp-content/|/wp-includes/) + + + name + Rackspace (partial) + rule + + + from + ^http://cdn\.cloudfiles\.mosso\.com/(\w+)/ + to + https://$1.ssl.cf0.rackcdn.com/ + + + from + ^http://(?:www\.)?rackspace\.(co\.uk|co\.za|dk|nl|no|se)/ + to + https://www.rackspace.$1/ + + + from + ^http://((?:apps|cart|cloudtools|community|cp|developer|my|mycloud|status|www)\.)?rackspace\.com/ + to + https://$1rackspace.com/ + + + from + ^http://images\.cdn\.rackspace\.com/ + to + https://034d24a88b3e71fd72a6-f083e9a6295a3f0714fa019ffdca65c3.ssl.cf1.rackcdn.com/ + + + from + ^http://(?:www\.)?rackspace(?:\.com)?\.hk/ + to + https://www.rackspace.hk/ + + + securecookie + + + host + ^(?:www)?\.rackspace\.(?:com|co\.uk|co\.za|dk|nl|no|se)$ + name + .+ + + + host + ^(?:apps|cart|community|my|mycloud)\.rackspace\.com$ + name + .+ + + + target + + + host + cdn.cloudfiles.mosso.com + + + host + rackspace.* + + + host + *.rackspace.com + + + host + rackspace.com.hk + + + host + www.rackspace.com.hk + + + host + rackspace.co.* + + + host + *.rackspace.co.uk + + + host + *.rackspace.co.za + + + host + *.rackspace.dk + + + host + *.rackspace.hk + + + host + *.rackspace.nl + + + host + *.rackspace.no + + + host + *.rackspace.se + + + + + Rackspace Cloud.com + + ruleset + + name + Rackspace Cloud.com + rule + + + from + ^http://(?:www\.)?rackspacecloud\.com/ + to + https://www.rackspacecloud.com/ + + + from + ^http://(lon\.)?manage\.rackspacecloud\.com/ + to + https://$1manage.rackspacecloud.com/ + + + from + ^http://(\w+)\.cdn\.cloudfiles\.rackspacecloud\.com/ + to + https://$1.ssl.cf0.rackcdn.com/ + + + from + ^http://(\w+)\.cdn(1|2)\.cloudfiles\.rackspacecloud\.com/ + to + https://$1.ssl.cf$2.rackcdn.com/ + + + securecookie + + host + ^manage\.rackspacecloud\.com$ + name + .+ + + target + + + host + rackspacecloud.com + + + host + *.rackspacecloud.com + + + + + Rackspace.com (false MCB) + + ruleset + + name + Rackspace.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.rackspace\.com/talent + to + https://www.rackspace.com/talent + + target + + host + www.rackspace.com + + + + RadSec.org + + ruleset + + name + RadSec.org + rule + + from + ^http://(www\.)?radsec\.org/ + to + https://$1radsec.org/ + + target + + + host + radsec.org + + + host + www.radsec.org + + + + + Radboud University Nijmegen + + ruleset + + name + Radboud University Nijmegen + rule + + + from + ^http://www(-acc)?\.radboudnet\.nl/ + to + https://www$1.radboudnet.nl/ + + + from + ^https?://(?:www\.)?ru\.nl/ + to + https://www.ru.nl/ + + + from + ^http://((?:ldap2|n?mr|mrms|svn|webmail|www)\.cmbi|cms|cms-acc|(?:bangalore|bombay|delhi|hubli|jaipur|kota|mangalore|portalhelp|pune)\.hosting|idm|student|www-acc)\.ru\.nl/ + to + https://$1.ru.nl/ + + + securecookie + + + host + ^www(-acc)?\.radboudnet\.nl$ + name + .* + + + host + ^.*\.ru\.nl$ + name + .* + + + target + + + host + *.radboudnet.nl + + + host + ru.nl + + + host + *.ru.nl + + + host + *.cmbi.ru.nl + + + host + *.hosting.ru.nl + + + host + *.portalhelp.hosting.ru.nl + + + + + Radical Designs + + ruleset + + name + Radical Designs + rule + + from + ^http://([\w-]+\.)?rdsecure\.org/ + to + https://$1rdsecure.org/ + + securecookie + + host + ^.+\.rdsecure\.org$ + name + .+ + + target + + + host + rdsecure.org + + + host + *.rdsecure.org + + + + + Radikal.com.tr (partial) + + ruleset + + name + Radikal.com.tr (partial) + rule + + from + ^http://i2?\.radikal\.com\.tr/ + to + https://i.radikal.com.tr/ + + target + + host + *.radikal.com.tr + + + + Radio Free Asia (partial) + + ruleset + + name + Radio Free Asia (partial) + rule + + from + ^https?://a9\.g\.akamai\.net/f/9/9391/6h/rfa\.download\.akamai\.com/ + to + https://a248.e.akamai.net/f/9/9391/6h/rfa.download.akamai.com/ + + target + + host + a9.g.akamai.net + + + + Radio Woodstock.com (partial) + + ruleset + + name + Radio Woodstock.com (partial) + rule + + from + ^http://ssl\.radiowoodstock\.com/ + to + https://ssl.radiowoodstock.com/ + + securecookie + + host + ^\.?ssl\.radiowoodstock\.com$ + name + .+ + + target + + host + *.radiowoodstock.com + + + + RadioShack (partial) + + ruleset + + exclusion + + pattern + ^http://www\.radioshack\.com/($|category/|family/|home/|shop/) + + name + RadioShack (partial) + rule + + + from + ^https?://franchiseradioshack\.cloudapp\.net/ + to + https://www.franchiseradioshack.com/ + + + from + ^https?://(?:www\.)?franchiseradioshack\.com/ + to + https://www.franchiseradioshack.com/ + + + from + ^https?://(?:www\.)?radioshack\.com/ + to + https://www.radioshack.com/ + + + from + ^http://blog\.radioshack\.com/ + to + https://blog.radioshack.com/ + + + from + ^https?://(?:www\.)?radioshackwireless\.com/ + to + https://radioshackwireless.com/ + + + securecookie + + host + ^radioshackwireless\.com$ + name + .* + + target + + + host + franchiseradioshack.cloudapp.net + + + host + franchiseradioshack.com + + + host + www.franchiseradioshack.com + + + host + radioshack.com + + + host + *.radioshack.com + + + host + radioshackwireless.com + + + host + www.radioshackwireless.com + + + + + Radioleaks + + ruleset + + name + Radioleaks + rule + + + from + ^https?://(?:www\.)?radioleaks\.se/(?:.*) + to + https://sverigesradio.se/sida/default.aspx?programid=4069 + + + from + ^http://upload\.radioleaks\.se/ + to + https://upload.radioleaks.se/ + + + target + + + host + radioleaks.se + + + host + *.radioleaks.se + + + + + Radiological Society of North America (partial) + + ruleset + + name + Radiological Society of North America (partial) + rule + + from + ^http://(careers\.|www2?\.)?rsna\.org/ + to + https://$1rsna.org/ + + securecookie + + host + ^(?:careers\.|www\.)?rsna\.org$ + name + .+ + + target + + + host + rsna.org + + + host + *.rsna.org + + + + + Radioplayer.co.uk + + ruleset + + name + Radioplayer.co.uk + rule + + from + ^http://(?:www\.)?radioplayer\.co\.uk/ + to + https://www.radioplayer.co.uk/ + + securecookie + + host + ^www\.radioplayer\.co\.uk$ + name + .+ + + target + + + host + radioplayer.co.uk + + + host + www.radioplayer.co.uk + + + + + RadiumOne (partial) + + ruleset + + name + RadiumOne (partial) + rule + + from + ^http://r(s|ui)\.gwallet\.com/ + to + https://r$1.gwallet.com/ + + securecookie + + host + ^.*\.gwallet\.com$ + name + .* + + target + + host + *.gwallet.com + + + + Radius Networks.com (partial) + + ruleset + + name + Radius Networks.com (partial) + rule + + from + ^http://account\.radiusnetworks\.com/ + to + https://account.radiusnetworks.com/ + + securecookie + + host + ^account\.radiusnetworks\.com$ + name + .+ + + target + + host + account.radiusnetworks.com + + + + Rafflecopter.com + + ruleset + + name + Rafflecopter.com + rule + + from + ^http://(www\.)?rafflecopter\.com/ + to + https://www.rafflecopter.com/ + + target + + + host + rafflecopter.com + + + host + www.rafflecopter.com + + + + + Raiffeisen.ch + + ruleset + + name + Raiffeisen.ch + rule + + + from + ^http://(?:www\.)?raiffeisen\.ch/ + to + https://www.raiffeisen.ch/ + + + from + ^http://(?:tb\.)?raiffeisendirect\.ch/ + to + https://tb.raiffeisendirect.ch/ + + + securecookie + + + host + ^(.*\.)?raiffeisen\.ch$ + name + .* + + + host + ^(.*\.)?raiffeisendirect\.ch$ + name + .* + + + target + + + host + raiffeisen.ch + + + host + www.raiffeisen.ch + + + host + tb.raiffeisendirect.ch + + + + + Railsschool.org + + ruleset + + name + Railsschool.org + rule + + from + ^http://(www\.)?railsschool\.org/ + to + https://www.railsschool.org/ + + target + + + host + railsschool.org + + + host + www.railsschool.org + + + + + Rainforest QA.com + + ruleset + + name + Rainforest QA.com + rule + + from + ^http://(www\.)?rainforestqa\.com/ + to + https://$1rainforestqa.com/ + + securecookie + + host + ^\.rainforestqa\.com$ + name + .+ + + target + + + host + rainforestqa.com + + + host + *.rainforestqa.com + + + + + Rakuten LinkShare (partial) + + ruleset + + name + Rakuten LinkShare (partial) + rule + + + from + ^https?://(?:(?:www\.)?linkshare|m\.www\.linksynergy)\.com/ + to + https://www.linkshare.com/ + + + from + ^http://(cli|merchant|ssl)\.linksynergy\.com/ + to + https://$1.linksynergy.com/ + + + securecookie + + host + ^\.?cli\.linksynergy\.com$ + name + .+ + + target + + + host + linkshare.com + + + host + www.linkshare.com + + + host + *.linksynergy.com + + + host + *.cli.linksynergy.com + + + host + m.www.linksynergy.com + + + + + Rakuten.co.jp (partial) + + ruleset + + name + Rakuten.co.jp (partial) + rule + + + from + ^http://image\.rakuten\.co\.jp/ + to + https://image.rakuten.co.jp/ + + + from + ^http://a\.ichiba\.jp\.rakuten-static\.com/ + to + https://a.ichiba.jp.rakuten-static.com/ + + + target + + + host + image.rakuten.co.jp + + + host + a.ichiba.jp.rakuten-static.com + + + + + Rally Congress (partial) + + ruleset + + name + Rally Congress (partial) + rule + + from + ^http://secure\.rallycongress\.com/ + to + https://secure.rallycongress.com/ + + target + + host + secure.rallycongress.com + + + + Rally.org + + ruleset + + name + Rally.org + rule + + from + ^http://(?:www\.)?rally\.org/ + to + https://rally.org/ + + securecookie + + host + ^(?:www\.)?rally\.org$ + name + .+ + + target + + + host + rally.org + + + host + www.rally.org + + + + + RamNode.com (partial) + + ruleset + + name + RamNode.com (partial) + rule + + from + ^http://((?:clientarea|vpscp|www)\.)?ramnode\.com/ + to + https://$1ramnode.com/ + + securecookie + + host + ^(?:(?:clientarea|vpscp)?\.)?ramnode\.com$ + name + .+ + + target + + + host + ramnode.com + + + host + *.ramnode.com + + + + + Rambler (partial) + + ruleset + + exclusion + + + pattern + ^http://kassa\.rambler\.ru/(?:cinemapartnership|concerts|partners|refund|sport|theatre|unsubscribe)?(?:$|\?) + + + pattern + ^http://www\. + + + name + Rambler (partial) + rule + + + from + ^http://s?counter\.rambler\.ru/ + to + https://scounter.rambler.ru/ + + + from + ^http://(assist|cnt|id?|images|kassa|m\.kassa|mail|mail-pda|soft|sync|update)\.rambler\.ru/ + to + https://$1.rambler.ru/ + + + securecookie + + host + ^(?:id)?\.rambler\.com$ + name + .* + + target + + host + *.rambler.ru + + + + Rambler.su + + ruleset + + name + Rambler.su + rule + + from + ^http://mail\.rambler\.su/ + to + https://mail.rambler.su/ + + target + + host + mail.rambler.su + + + + Random House (partial) + + ruleset + + exclusion + + pattern + ^http://ecommerce\.randomhouse\.com/$ + + name + Random House (partial) + rule + + + from + ^http://(ecommerce\.|www\.)?randomhouse\.com/ + to + https://$1randomhouse.com/ + + + from + ^https?://code\.randomhouse\.com/b/ss/ + to + https://ranhrollup.122.2o7.net/b/ss/ + + + securecookie + + host + ^.*\.randomhouse\.com$ + name + .* + + target + + + host + randomhouse.com + + + host + *.randomhouse.com + + + + + Random Intervals (partial) + + ruleset + + name + Random Intervals (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?randomintervals\.com/ + to + https://www.randomintervals.com/ + + + from + ^http://(?:www\.)?vistumbler\.net/ + to + https://www.vistumbler.net/ + + + from + ^http://api\.vistumbler\.net/ + to + https://api.vistumbler.net/ + + + from + ^http://(?:www\.)?wifidb\.net/ + to + https://www.wifidb.net/ + + + from + ^http://live\.wifidb\.net/ + to + https://live.wifidb.net/ + + + target + + + host + randomintervals.com + + + host + www.randomintervals.com + + + host + vistumbler.net + + + host + *.vistumbler.net + + + host + wifidb.net + + + host + *.wifidb.net + + + + + Random.org + + ruleset + + name + Random.org + rule + + from + ^http://((?:api|draws|files|games|tuples|www)\.)?random\.org/ + to + https://$1random.org/ + + securecookie + + host + \.random\.org$ + name + .+ + + target + + + host + random.org + + + host + *.random.org + + + + + Range Networks.com + + ruleset + + name + Range Networks.com + rule + + + from + ^http://(?:www\.)?rangenetworks\.com/ + to + https://www.rangenetworks.com/ + + + from + ^http://support\.rangenetworks\.com/ + to + https://support.rangenetworks.com/ + + + securecookie + + host + ^(?:support\.|www\.)?rangenetworks\.com$ + name + .+ + + target + + + host + rangenetworks.com + + + host + *.rangenetworks.com + + + + + Rantoul Press (partial) + + ruleset + + name + Rantoul Press (partial) + rule + + from + ^http://(?:www\.)?rantoulpress\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.rantoulpress.com/$1 + + target + + + host + rantoulpress.com + + + host + www.rantoulpress.com + + + + + Rapid7 (partial) + + ruleset + + name + Rapid7 (partial) + platform + mixedcontent + rule + + from + ^http://(browsercan\.|community\.|insight\.|www\.)?rapid7\.com/ + to + https://$1rapid7.com/ + + securecookie + + host + ^(?:community|insight|www)\.rapid7\.com$ + name + .+ + + target + + + host + rapid7.com + + + host + *.rapid7.com + + + + + RapidBuyr (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?rapidbuyr\.com/(?:$|\?|(?!MemberLogin)[\w-]+\.aspx|(?!All-Products|merchant/)[\w/-]+\.htm) + + name + RapidBuyr (partial) + rule + + + from + ^https?://(?:www\.)?rapidbuyr\.com/ + to + https://www.rapidbuyr.com/ + + + from + ^http://svcart\.rapidbuyr\.com/ + to + https://svcart.rapidbuyr.com/ + + + securecookie + + + host + ^rapidbuyr\.cachefly\.net$ + name + .+ + + + host + ^svcart\.rapidbuyr\.com$ + name + .+ + + + target + + + host + rapidbuyr.cachefly.net + + + host + rapidbuyr.com + + + host + *.rapidbuyr.com + + + + + RapidLeaf + + ruleset + + name + RapidLeaf + rule + + from + ^http://(dashboard\.|www\.)?rapidleaf\.com/ + to + https://$1rapidleaf.com/ + + securecookie + + host + ^(?:.+\.)?rapidleaf\.com$ + name + .+ + + target + + + host + rapidleaf.com + + + host + *.rapidleaf.com + + + + + RapidSSL + + ruleset + + name + RapidSSL + rule + + from + ^http://(www\.)?rapidssl\.com/ + to + https://$1rapidssl.com/ + + securecookie + + host + ^\.rapidssl\.com$ + name + .+ + + target + + + host + rapidssl.com + + + host + *.rapidssl.com + + + + + RapidShare (partial) + + ruleset + + name + RapidShare (partial) + rule + + from + ^http://(api\.|images3\.|www\.)?rapidshare\.com/ + to + https://$1rapidshare.com/ + + target + + + host + rapidshare.com + + + host + *.rapidshare.com + + + + + RapidSite.jp + + ruleset + + name + RapidSite.jp + rule + + from + ^http://(www\.)?rapidsite\.jp/ + to + https://$1rapidsite.jp/ + + target + + + host + rapidsite.jp + + + host + www.rapidsite.jp + + + + + Rapidgator.net (partial) + + ruleset + + name + Rapidgator.net (partial) + rule + + from + ^http://(www\.)?rapidgator\.net/(article/premium|assets/|auth/(?:captcha|login)|account/registration|css/|images/) + to + https://$1rapidgator.net/$2 + + target + + + host + rapidgator.net + + + host + www.rapidgator.net + + + + + Rapidresearch.me + + ruleset + + name + Rapidresearch.me + platform + firefox + rule + + from + ^http://rapidresearch\.me/ + to + https://rapidresearch.me/ + + securecookie + + host + ^rapidresearch\.me$ + name + .+ + + target + + host + rapidresearch.me + + + + Rapleaf + + ruleset + + name + Rapleaf + rule + + + from + ^http://(blog\.|dashboard\.|www\.)?rapleaf\.com/ + to + https://$1rapleaf.com/ + + + from + ^http://(d|ei|idsync|rc)\.rlcdn\.com/ + to + https://$1.rlcdn.com/ + + + securecookie + + host + ^\.rlcdn\.com$ + name + .+ + + target + + + host + rapleaf.com + + + host + *.rapleaf.com + + + host + *.rlcdn.com + + + + + Rapture Ready + + ruleset + + name + Rapture Ready + rule + + from + ^http://(www\.)?raptureready\.com/ + to + https://$1raptureready.com/ + + target + + + host + raptureready.com + + + host + www.raptureready.com + + + + + Rarbg + + ruleset + + name + Rarbg + rule + + from + ^http://(www\.)?rarbg\.com/ + to + https://rarbg.com/ + + target + + + host + www.rarbg.com + + + host + rarbg.com + + + + + Rare.us + + ruleset + + name + Rare.us + rule + + from + ^http://(www\.)?rare\.us/ + to + https://$1rare.us/ + + target + + + host + rare.us + + + host + www.rare.us + + + + + RareAviation.com + + ruleset + + name + RareAviation.com + rule + + from + ^http://(www\.)?rareaviation\.com/ + to + https://$1rareaviation.com/ + + securecookie + + host + ^\.rareaviation\.com$ + name + .+ + + target + + + host + rareaviation.com + + + host + *.rareaviation.com + + + + + RatePoint (partial) + + ruleset + + name + RatePoint (partial) + rule + + + from + ^http://(my|reviews|sitetools|subscribe)\.ratepoint\.com/ + to + https://$1.ratepoint.com/ + + + from + ^http://(www\.)?ratepoint\.com/(profile/|(login($|\?))|map/|seereviews/) + to + https://ratepoint.com/$2 + + + target + + + host + ratepoint.com + + + host + my.ratepoint.com + + + host + reviews.ratepoint.com + + + host + sitetools.ratepoint.com + + + host + subscribe.ratepoint.com + + + host + www.ratepoint.com + + + + + RatfishOil.com (false MCB) + + ruleset + + name + RatfishOil.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.ratfishoil\.com/ + to + https://www.ratfishoil.com/ + + securecookie + + host + ^(?:www)?\.ratfishoil\.com$ + name + .+ + + target + + host + *.ratfishoil.com + + + + RatfishOil.com (partial) + + ruleset + + name + RatfishOil.com (partial) + rule + + from + ^http://(www\.)?ratfishoil\.com/(?=favicon\.ico|images/|templates/) + to + https://$1ratfishoil.com/ + + target + + + host + ratfishoil.com + + + host + www.ratfishoil.com + + + + + Rating-Widget.com + + ruleset + + name + Rating-Widget.com + rule + + + from + ^https?://(?:secure\.|www\.)?rating-widget\.com/ + to + https://secure.rating-widget.com/ + + + from + ^http://(css|img|js)\.rating-widget\.com/ + to + https://secure.rating-widget.com/$1/ + + + securecookie + + host + ^secure\.rating-widget\.com$ + name + .+ + + target + + + host + rating-widget.com + + + host + *.rating-widget.com + + + + + RaumZeitLabor.de (partial) + + ruleset + + name + RaumZeitLabor.de (partial) + rule + + from + ^http://((?:lists|wiki|www)\.)?raumzeitlabor\.de/ + to + https://$1raumzeitlabor.de/ + + securecookie + + host + ^wiki\.raumzeitlabor\.de$ + name + .+ + + target + + + host + raumzeitlabor.de + + + host + *.raumzeitlabor.de + + + + + RavenDB.net + + ruleset + + name + RavenDB.net + rule + + from + ^http://(www\.)?ravendb\.net/ + to + https://$1ravendb.net/ + + target + + + host + ravendb.net + + + host + www.ravendb.net + + + + + Rawnet.com (partial) + + ruleset + + name + Rawnet.com (partial) + rule + + from + ^http://cdn\.rawnet\.com/ + to + https://d284e2efuy79d1.cloudfront.net/ + + target + + host + cdn.rawnet.com + + + + Rawstudio.org (partial) + + ruleset + + name + Rawstudio.org (partial) + rule + + from + ^http://(www\.)?rawstudio\.org/ + to + https://$1rawstudio.org/ + + securecookie + + host + ^\.rawstudio\.org$ + name + .+ + + target + + + host + rawstudio.org + + + host + *.rawstudio.org + + + + + Raymii.org + + ruleset + + name + Raymii.org + rule + + from + ^http://(www\.)?raymii\.org/ + to + https://$1raymii.org/ + + target + + + host + raymii.org + + + host + www.raymii.org + + + + + Rayner Software + + ruleset + + name + Rayner Software + rule + + + from + ^https?://(www\.)?rayner(sw|software)\.com/ + to + https://secure.raynersw.com/ + + + from + ^http://secure\.raynersw\.com/ + to + https://secure.raynersw.com/ + + + securecookie + + host + (^|\.)secure\.raynersw\.com$ + name + .+ + + target + + + host + raynersoftware.com + + + host + www.raynersoftware.com + + + host + raynersw.com + + + host + secure.raynersw.com + + + host + www.raynersw.com + + + + + Razer + + ruleset + + name + Razer + rule + + + from + ^https?://(?:www\.)?razerzone\.com/ + to + https://www.razerzone.com/ + + + from + ^http://ec\.razerzone\.com/ + to + https://ec.razerzone.com/ + + + from + ^https?://assets.razerzone.com/ + to + https://d1gira0ohtrkhq.cloudfront.net/ + + + securecookie + + host + ^.*\.razerzone\.com$ + name + .+ + + target + + + host + razerzone.com + + + host + *.razerzone.com + + + + + Razoo (partial) + + ruleset + + name + Razoo (partial) + rule + + + from + ^https?://razoo\.com/ + to + https://www.razoo.com/ + + + from + ^http://(matt|www)\.razoo\.com/(assets/|favicon\.ico|images/|(?:login|signup)(?:$|[\?/])|password_resets/) + to + https://$1.razoo.com/$2 + + + from + ^https?://assets(?:\d|-secure)?\.razoo\.com/ + to + https://assets-secure.razoo.com/ + + + target + + + host + razoo.com + + + host + *.razoo.com + + + + + Razor Servers (partial) + + ruleset + + name + Razor Servers (partial) + rule + + from + ^http://(manag|secur)e\.razorservers\.com/ + to + https://$1e.razorservers.com/ + + securecookie + + host + .+\.razorservers\.com$ + name + .+ + + target + + host + *.razorservers.com + + + + Rbl.Ms (partial) + + ruleset + + name + Rbl.Ms (partial) + rule + + from + ^http://(assets|assets-auto|media|static|togo)\.rbl\.ms/ + to + https://$1.rbl.ms/ + + target + + host + *.rbl.ms + + + + Rdio (partial) + + ruleset + + name + Rdio (partial) + rule + + from + ^http://(www\.)?rd(\.io|io\.com)/ + to + https://$1rd$2/ + + target + + + host + rd.io + + + host + www.rd.io + + + + + ReTargeter (partial) + + ruleset + + name + ReTargeter (partial) + rule + + + from + ^http://ad\.retargeter\.com/ + to + https://ib.adnxs.com/ + + + from + ^http://v2\.retargeter\.com/ + to + https://v2.retargeter.com/ + + + securecookie + + host + ^.*\.retargeter\.com$ + name + .* + + target + + host + *.retargeter.com + + + + ReachLocal.com (partial) + + ruleset + + name + ReachLocal.com (partial) + rule + + from + ^http://ad\.reachlocal\.com/ + to + https://ad.yieldmanager.com/ + + target + + host + ad.reachlocal.com + + + + ReactOS.org (partial) + + ruleset + + name + ReactOS.org (partial) + rule + + from + ^http://(jira\.|www\.)?reactos\.org/ + to + https://$1reactos.org/ + + securecookie + + host + ^(?:jira)?\.reactos\.org$ + name + .+ + + target + + + host + reactos.org + + + host + *.reactos.org + + + + + Read the Docs.org + + ruleset + + name + Read the Docs.org + rule + + from + ^http://([\w-]+\.)?readthedocs\.org/ + to + https://$1readthedocs.org/ + + securecookie + + host + ^readthedocs\.org$ + name + .+ + + target + + + host + readthedocs.org + + + host + *.readthedocs.org + + + + + ReadItLaterList.com + + ruleset + + name + ReadItLaterList.com + rule + + from + ^http://(?:www\.)?readitlaterlist\.com/ + to + https://readitlaterlist.com/ + + target + + + host + readitlaterlist.com + + + host + www.readitlaterlist.com + + + + + ReadMe.io + + ruleset + + name + ReadMe.io + rule + + from + ^http://(?:(dash\.)|www\.)?readme\.io/ + to + https://$1readme.io/ + + securecookie + + host + ^dash\.readme\.io$ + name + .+ + + target + + + host + readme.io + + + host + *.readme.io + + + + + ReadRobReid.com (partial) + + ruleset + + name + ReadRobReid.com (partial) + rule + + from + ^http://(www\.)?readrobreid\.com/(auth|css)/ + to + https://$1readrobreid.com/$2/ + + target + + + host + readrobreid.com + + + host + www.readrobreid.com + + + + + ReadSpeaker + + ruleset + + name + ReadSpeaker + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?readspeaker\.com/ + to + https://www.readspeaker.com/ + + + from + ^http://(app|media|vttts|lqttswr|docreader)\.readspeaker\.com/ + to + https://$1.readspeaker.com/ + + + from + ^http://asp\.readspeaker\.net/ + to + https://asp.readspeaker.net/ + + + target + + + host + readspeaker.com + + + host + www.readspeaker.com + + + host + app.readspeaker.com + + + host + media.readspeaker.com + + + host + vttts.readspeaker.com + + + host + lqttswr.readspeaker.com + + + host + docreader.readspeaker.com + + + host + asp.readspeaker.net + + + + + ReadWrite + + ruleset + + name + ReadWrite + rule + + from + ^http://(www\.)?readwrite\.com/ + to + https://$1readwrite.com/ + + target + + + host + readwrite.com + + + host + www.readwrite.com + + + + + ReadWriteWeb + + ruleset + + name + ReadWriteWeb + rule + + from + ^http://(?:www\.)?readwriteweb\.com/ + to + https://www.readwriteweb.com/ + + target + + + host + readwriteweb.com + + + host + www.readwriteweb.com + + + + + Readability.com (partial) + + ruleset + + name + Readability.com (partial) + rule + + from + ^http://(www\.)?readability\.com/((?:account|login|register)(?:$|\?|/)|bookmarklet/\w|embed\.(?:html|js)) + to + https://$1readability.com/$2 + + target + + + host + readability.com + + + host + www.readability.com + + + + + Readers Digest.com (partial) + + ruleset + + name + Readers Digest.com (partial) + rule + + + from + ^http://(legacy|somtrkpix)\.rd\.com/ + to + https://$1.rd.com/ + + + from + ^http://(order|us)\.readersdigest\.com/ + to + https://$1.readersdigest.com/ + + + securecookie + + + host + ^\.rd\.com$ + name + ^s_\w+$ + + + host + ^legacy\.rd\.com$ + name + .+ + + + host + ^\.readersdigest\.com$ + name + ^(?:CLEQ_\w|mbox|s_\w+)$ + + + host + ^(?:order|\.?us)\.readersdigest\.com$ + name + .+ + + + target + + + host + *.rd.com + + + host + *.readersdigest.com + + + + + ReadrBoard.com + + ruleset + + name + ReadrBoard.com + rule + + from + ^http://(www\.)?readrboard\.com/ + to + https://$1readrboard.com/ + + target + + + host + readrboard.com + + + host + www.readrboard.com + + + + + Ready Flowers + + ruleset + + name + Ready Flowers + rule + + + from + ^https?://(?:www\.)?readyflowers\.com/ + to + https://www.readyflowers.com/ + + + from + ^http://static\.readyflowers\.com/ + to + https://static.readyflowers.com/ + + + securecookie + + host + ^www\.readyflowers\.com$ + name + .+ + + target + + + host + readyflowers.com + + + host + *.readyflowers.com + + + + + ReadyHosting.com + + ruleset + + name + ReadyHosting.com + rule + + + from + ^http://(?:www\.)?readyhosting\.com/ + to + https://www.readyhosting.com/ + + + from + ^http://secure\.readyhosting\.com/ + to + https://secure.readyhosting.com/ + + + securecookie + + host + ^\.readyhosting\.com$ + name + .+ + + target + + + host + readyhosting.com + + + host + *.readyhosting.com + + + + + ReadyNAS + + ruleset + + name + ReadyNAS + rule + + from + ^http://(www\.)?readynas\.com/ + to + https://www.readynas.com/ + + target + + + host + readynas.com + + + host + www.readynas.com + + + + + Real Networks (partial) + + ruleset + + name + Real Networks (partial) + rule + + + from + ^http://fb-cdn\.ghsrv\.com/ + to + https://fb-cdn.ghsrv.com/ + + + from + ^http://www\.real\.com/ + to + https://www.real.com/ + + + from + ^https?://images\.real\.com/ + to + https://www.real.com/ + + + from + ^https?://www\.realone\.com/ + to + https://www.real.com/ + + + securecookie + + host + ^\.real\.com$ + name + .* + + target + + + host + fb-cdn.ghsrv.com + + + host + *.real.com + + + host + www.realone.com + + + + + Real Robot High + + ruleset + + name + Real Robot High + rule + + + from + ^http://(stage\.)?realrobothigh\.com/ + to + https://$1realrobothigh.com/ + + + from + ^https?://www\.realrobothigh\.com/ + to + https://realrobothigh.com/ + + + securecookie + + host + ^\.realrobothigh\.com$ + name + .+ + + target + + + host + realrobothigh.com + + + host + *.realrobothigh.com + + + + + Real-Debrid.com + + ruleset + + name + Real-Debrid.com + rule + + from + ^http://(?:(cdn\.)|www\.)?real-debrid\.com/ + to + https://$1real-debrid.com/ + + securecookie + + host + ^\.real-debrid\.com$ + name + .+ + + target + + + host + real-debrid.com + + + host + *.real-debrid.com + + + + + RealClearPolitics.com (partial) + + ruleset + + name + RealClearPolitics.com (partial) + rule + + from + ^http://assets\.realclearpolitics\.com/ + to + https://s3.amazonaws.com/assets.realclearpolitics.com/ + + target + + host + assets.realclearpolitics.com + + + + RealMatch.com (partial) + + ruleset + + name + RealMatch.com (partial) + rule + + from + ^http://(www\.)?realmatch\.com/ + to + https://$1realmatch.com/ + + securecookie + + + host + ^\.realmatch\.com$ + name + ^__utm\w$ + + + host + ^www\.realmatch\.com$ + name + .+ + + + target + + + host + realmatch.com + + + host + *.realmatch.com + + + + + RealVNC.com + + ruleset + + name + RealVNC.com + rule + + from + ^http://(www\.)?realvnc\.com/ + to + https://$1realvnc.com/ + + target + + + host + realvnc.com + + + host + www.realvnc.com + + + + + Realtidbits (partial) + + ruleset + + name + Realtidbits (partial) + rule + + + from + ^http://(api\.|ssl\.|www\.)?realtidbits\.com/ + to + https://$1realtidbits.com/ + + + from + ^https?://cdn.realtidbits.com/ + to + https://c299782.ssl.cf1.rackcdn.com/ + + + target + + + host + realtidbits.com + + + host + *.realtidbits.com + + + + + Realtime.co + + ruleset + + name + Realtime.co + rule + + + from + ^http://(accounts\.|ortc-ws2(?:-useast1-s\d+)?\.)?realtime\.co/ + to + https://$1realtime.co/ + + + from + ^http://www\.realtime\.co/ + to + https://app.realtime.co/ + + + securecookie + + host + ^a(?:ccounts|pp)\.realtime\.co$ + name + .+ + + target + + + host + realtime.co + + + host + *.realtime.co + + + + + Reason.com + + ruleset + + name + Reason.com + rule + + + from + ^http://(www\.)?reason\.com/ + to + https://$1reason.com/ + + + from + ^http://cloudfront-assets\.reason\.com/ + to + https://d1ai9qtk9p41kl.cloudfront.net/ + + + securecookie + + host + ^\.reason\.com$ + name + .+ + + target + + + host + reason.com + + + host + *.reason.com + + + + + RebelMouse.com + + ruleset + + name + RebelMouse.com + rule + + + from + ^http://((?:about|blog|www)\.)?rebelmouse\.com/ + to + https://$1rebelmouse.com/ + + + from + ^http://partners\.rebelmouse\.com/ + to + https://s3.amazonaws.com/partners.rebelmouse.com/ + + + securecookie + + host + ^\.rebelmouse\.com$ + name + .+ + + target + + + host + rebelmouse.com + + + host + *.rebelmouse.com + + + + + Recap the Law + + ruleset + + name + Recap the Law + rule + + from + ^http://(www\.)?recapthelaw\.org/ + to + https://$1recapthelaw.org/ + + target + + + host + recapthelaw.org + + + host + www.recapthelaw.org + + + + + Reclaim-Your-Privacy.com + + ruleset + + name + Reclaim-Your-Privacy.com + rule + + from + ^http://(www\.)?reclaim-your-privacy\.com/ + to + https://$1reclaim-your-privacy.com/ + + target + + + host + reclaim-your-privacy.com + + + host + www.reclaim-your-privacy.com + + + + + Reco.se + + ruleset + + name + Reco.se + platform + mixedcontent + rule + + + from + ^http://www\.reco\.se/ + to + https://www.reco.se/ + + + from + ^http://reco\.se/ + to + https://www.reco.se/ + + + target + + + host + reco.se + + + host + www.reco.se + + + + + Recode.net + + ruleset + + name + Recode.net + rule + + from + ^http://(www\.)?recode\.net/ + to + https://$1recode.net/ + + target + + + host + recode.net + + + host + www.recode.net + + + + + Recombu.com (partial) + + ruleset + + name + Recombu.com (partial) + rule + + from + ^http://cdn(\d)?\.recombu\.com/ + to + https://cdn$1.recombu.com/ + + target + + host + *.recombu.com + + + + Record Store Day + + ruleset + + name + Record Store Day + platform + mixedcontent + rule + + from + ^http://(?:www\.)?recordstoreday(?:\.tuneportals)\.com/ + to + https://recordstoreday.tuneportals.com/ + + securecookie + + host + ^recordstoreday\.tuneportals\.com$ + name + .* + + target + + + host + recordstoreday.com + + + host + www.recordstoreday.com + + + host + recordstoreday.tuneportals.com + + + + + Recurly (partial) + + ruleset + + name + Recurly (partial) + rule + + from + ^http://blog\.recurly\.com/ + to + https://blog.recurly.com/ + + target + + host + blog.recurly.com + + + + Recurly.com + + ruleset + + name + Recurly.com + platform + firefox + rule + + + from + ^http://app\.recurly\.com/ + to + https://app.recurly.com/ + + + from + ^http://api\.recurly\.com/ + to + https://api.recurly.com/ + + + securecookie + + + host + ^app\.recurly\.com$ + name + .+ + + + host + ^api\.recurly\.com$ + name + .+ + + + target + + + host + app.recurly.com + + + host + api.recurly.com + + + + + Red Aril (partial) + + ruleset + + name + Red Aril (partial) + rule + + + from + ^http://p(\d)?\.raasnet\.com/ + to + https://p$1.raasnet.com/ + + + from + ^http://dmp\.redaril\.com/ + to + https://dmp.redaril.com/ + + + target + + + host + *.raasnet.com + + + host + dmp.redaril.com + + + + + Red Bull (partial) + + ruleset + + name + Red Bull (partial) + rule + + + from + ^http://(?:www\.)?redbull\.co\.uk/(\?.*)?$ + to + https://www.redbull.com/uk/en$1 + + + from + ^http://(?:www\.)?redbull\.(?:co\.uk|\w\w)/cs/ + to + https://www.redbull.com/cs/ + + + from + ^http://(challengetravis|enterdannysmind|formembed|admin\.rbri2012)\.redbull\.co\.uk/ + to + https://$1.redbull.co.uk/ + + + from + ^http://((?:api|athletewidget|balconyshot-game|confluence|connect|create|creativearchive(?:-staging|-test)?|editorial|energydrink|energydrink-(?:at|de|it|uk|us)|enterdannysmind|eventwidget|forage|gigya|gigya-tests|image\d?|infonet2?|rbx00185\.microsites|mobile-ads|stage-(?:api|connect|energydrink)|streetstyle-game|tibbr|tibbr-ext|tools|trickshot-game|workbench|www)\.)?redbull\.com/ + to + https://$1redbull.com/ + + + from + ^http://soapbox\.redbull\.com/(?:\?.*)?$ + to + https://www.redbull.com/ + + + from + ^http://(?:www\.)?redbull\.de/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/de_DE/RED-BULL-DE/001242746061488$1 + + + from + ^http://(kontakt|sugarfree)\.redbull\.de/ + to + https://$1.redbull.de/ + + + from + ^http://(?:www\.)?redbull\.es/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/es_ES/RED-BULL-ES/001242746062075$1 + + + from + ^http://augmentedracing\.redbull\.es/ + to + https://augmentedracing.redbull.es/ + + + from + ^http://(?:www\.)?redbull\.fr/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/fr_FR/RED-BULL-Home-page_FR/001242746062375$1 + + + from + ^http://(?:www\.)?redbull\.in/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/en_IN/Red-Bull-Home/001242877412074$1 + + + from + ^http://cricket\.redbull\.in/ + to + https://cricket.redbull.in/ + + + from + ^http://(?:www\.)?redbull\.no/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/no_NO/RedBull/001242760618750$1 + + + from + ^http://(?:www\.)?redbull\.ru/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/ru_RU/Red-Bull-Russia/001242758643321$1 + + + from + ^http://forage\.redbull\.ru/ + to + https://forage.redbull.ru/ + + + from + ^http://(?:www\.)?redbull\.se/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/sv_SE/REDBULL/001242760548154$1 + + + from + ^http://(?:www\.)?redbull\.ua/(\?.*)?$ + to + https://www.redbull.com/cs/Satellite/ru_UA/Red-Bull/001242776437928$1 + + + from + ^http://(lab|training)\.redbulls\.com/ + to + https://$1.redbulls.com/ + + + from + ^http://(?:www\.)?redbullusa\.com/(?:\?.*)?$ + to + https://www.redbull.com/us/en + + + from + ^http://(?:launchpad|twtvsl)\.redbullusa\.com/ + to + https://$1.redbullusa.com/ + + + securecookie + + + host + ^(?:challengetravis|enterdannysmind|formembed|admin\.rbri2012)\.redbull\.co\.uk$ + name + .+ + + + host + ^(?:(?:api|athletewidget|balconyshot-game|cache-workbench|connect|create|creativearchive(?:-staging|-test)?|energydrink|energydrink-(?:at|de|it|uk|us)|enterdannysmind|eventwidget|forage|giga|gigya-tests|image\d?|infonet2?|rbx00185\.microsites|mobile-ads|stage-(?:api|connect|energydrink)|streetstyle-game|tibbr|tools|trickshot-game|workbench|www)\.)?redbull\.com$ + name + .+ + + + host + ^(?:kontakt|sugarfree)\.redbull\.de$ + name + .+ + + + host + ^augmentedracing\.redbull\.es$ + name + .+ + + + host + ^cricket\.redbull\.in$ + name + .+ + + + host + ^forage\.redbull\.ru$ + name + .+ + + + host + ^(?:lab|training)\.redbulls\.com$ + name + .+ + + + host + ^(?:launchpad|twtvsl)\.redbullusa\.com$ + name + .+ + + + target + + + host + redbull.* + + + host + www.redbull.* + + + host + redbull.co.uk + + + host + *.redbull.co.uk + + + host + *.redbull.com + + + host + *.redbull.de + + + host + augmentedracing.redbull.es + + + host + cricket.redbull.in + + + host + forage.redbull.ru + + + host + *.redbulls.com + + + host + redbullusa.com + + + host + *.redbullusa.com + + + + + Red Bull Content Pool + + ruleset + + name + Red Bull Content Pool + rule + + + from + ^http://(?:www\.)?redbullcontentpool\.com/ + to + https://www.redbullcontentpool.com/ + + + from + ^http://(cliffdiving|crashedice|images|info|internal|musicacademy|stratos|www-staging|xfighters)\.redbullcontentpool\.com/ + to + https://$1.redbullcontentpool.com/ + + + securecookie + + host + ^(?:internal|www|www-staging)\.redbullcontentpool\.com$ + name + .+ + + target + + + host + redbullcontentpool.com + + + host + *.redbullcontentpool.com + + + + + Red Bull Media House (partial) + + ruleset + + name + Red Bull Media House (partial) + rule + + from + ^http://(analytics|content|fonts|me|mediamanager(?:-staging)?|sales|stage-wiki|wiki)\.redbullmediahouse\.com/ + to + https://$1.redbullmediahouse.com/ + + securecookie + + host + ^(?:content|me|mediamanager(?:-staging)?|sales|stage-wiki|wiki)\.redbullmediahouse\.com$ + name + .+ + + target + + host + *.redbullmediahouse.com + + + + Red Bull Mobile (false MCB) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?redbullmobile\.at/(?:fileadmin/|typo3conf/|typo3temp/|uploads/) + + name + Red Bull Mobile (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?redbullmobile\.at/ + to + https://www.redbullmobile.at/ + + securecookie + + host + ^www\.redbullmobile\.at$ + name + .+ + + target + + + host + redbullmobile.at + + + host + *.redbullmobile.at + + + + + Red Bull Mobile (partial) + + ruleset + + name + Red Bull Mobile (partial) + rule + + + from + ^http://(?:www\.)?redbullmobile\.at/(?=fileadmin/|typo3conf/|typo3temp/|uploads/) + to + https://www.redbullmobile.at/ + + + from + ^http://(fbck|qr|socialposter|trackingtool|worb)\.redbullmobile\.com/ + to + https://$1.redbullmobile.com/ + + + from + ^http://(?:www\.)?redbullmobile\.com\.au/ + to + https://redbullmobile.com.au/ + + + from + ^http://secure(a)?\.redbullmobile\.com\.au/ + to + https://secure$1.redbullmobile.com.au/ + + + securecookie + + + host + ^(?:fbck|qr|socialposter|trackingtool|worb)\.redbullmobile\.com$ + name + .+ + + + host + ^(?:securea\.)?redbullmobile\.com\.au$ + name + .+ + + + target + + + host + redbullmobile.at + + + host + www.redbullmobile.at + + + host + *.redbullmobile.com + + + host + redbullmobile.com.au + + + host + *.redbullmobile.com.au + + + + + Red Bull TV (partial) + + ruleset + + name + Red Bull TV (partial) + rule + + from + ^http://live(2)?\.redbull\.tv/ + to + https://live$1.redbull.tv/ + + securecookie + + host + ^live\.redbull\.tv$ + name + .+ + + target + + host + *.redbull.tv + + + + Red Cross.org (partial) + + ruleset + + name + Red Cross.org (partial) + rule + + from + ^http://(?:www\.)?redcross\.org/((?:accounthelp|modal)(?:$|[?/])|ajax/|css/|donate/\w|images/|js/) + to + https://www.redcross.org/$1 + + target + + + host + redcross.org + + + host + www.redcross.org + + + + + Red Flush Casino (partial) + + ruleset + + name + Red Flush Casino (partial) + rule + + from + ^http://secure\.redflush\.com/ + to + https://secure.redflush.com/ + + target + + host + secure.redflush.com + + + + Red Hat + + ruleset + + name + Red Hat + rule + + + from + ^http://(?:www\.)?redhat\.com/ + to + https://www.redhat.com/ + + + from + ^http://(academy|access|a[rtu]|archive|be|br|bugzilla|ca|careers|cn|community|de|docs|engage|es|fr|gb|hardware|i[dnt]|jp|listman|lk|mx|openshift|people|ph|rhn|ru|securityblog|sg|smtrcs|support|webmail)\.redhat\.com/ + to + https://$1.redhat.com/ + + + from + ^http://(?:www\.)?(apac|europe)\.redhat\.com/ + to + https://www.$1.redhat.com/ + + + from + ^http://et\.redhat\.com/[^?]* + to + https://community.redhat.com/software/ + + + from + ^http://investors\.redhat\.com/common/ + to + https://investor.shareholder.com/common/ + + + from + ^http://jobs\.redhat\.com/ + to + https://redhat.sc.hodesdigital.com/ + + + securecookie + + host + ^(?:.*\.)?redhat\.com$ + name + .+ + + target + + + host + redhat.com + + + host + *.redhat.com + + + + + Red Team.net (partial) + + ruleset + + name + Red Team.net (partial) + rule + + from + ^http://encrypted\.redteam\.net/ + to + https://encrypted.redteam.net/ + + target + + host + encrypted.redteam.net + + + + Red-Gate.com (partial) + + ruleset + + name + Red-Gate.com (partial) + rule + + from + ^http://(www\.)?red-gate\.com/ + to + https://$1red-gate.com/ + + target + + + host + red-gate.com + + + host + www.red-gate.com + + + + + Red-Pill.eu (partial) + + ruleset + + name + Red-Pill.eu (partial) + rule + + from + ^http://(www\.)?red-pill\.eu/(admin|mail)/ + to + https://$1red-pill.eu/$1/ + + securecookie + + host + ^(www\.)?red-pill\.eu$ + name + ^roundcube_.* + + target + + + host + red-pill.eu + + + host + www.red-pill.eu + + + + + RedBubble (partial) + + ruleset + + name + RedBubble (partial) + rule + + + from + ^http://(www\.)?redbubble\.com/(?:(auth/login|signup)(?:\?|/$)|favicon\.ico) + to + https://$1redbubble.com/$2 + + + from + ^http://support\.redbubble\.com/ + to + https://redbubble.tenderapp.com/ + + + from + ^http://(assets\d|ih\d)\.redbubble\.net/ + to + https://$1.redbubble.net/ + + + target + + + host + redbubble.com + + + host + *.redbubble.com + + + host + *.redbubble.net + + + + + RedIRIS.es + + ruleset + + name + RedIRIS.es + platform + mixedcontent + rule + + + from + ^http://pki\.irisgrid\.es/ + to + https://pki.irisgrid.es/ + + + from + ^https?://(?:www\.)?rediris\.(es|net)/ + to + https://www.rediris.$1/ + + + from + ^http://(cmwebber|forja|eu|intranet|jo|ni|papi|sir|stats|wiki|yo)\.rediris\.es/ + to + https://$1.rediris.es/ + + + securecookie + + host + ^.*\.rediris\.es$ + name + .+ + + target + + + host + pki.irisgrid.es + + + host + rediris.es + + + host + *.rediris.es + + + host + www.rediris.net + + + + + RedPlum.com + + ruleset + + name + RedPlum.com + rule + + from + ^http://((?:client|couponimages|vdrn|www)\.)?redplum\.com/ + to + https://$1redplum.com/ + + securecookie + + host + ^.*\.redplum\.com$ + name + .* + + target + + + host + redplum.com + + + host + *.redplum.com + + + + + RedState (partial) + + ruleset + + name + RedState (partial) + rule + + from + ^http://(www\.)?redstate\.com/(login|t/) + to + https://$1redstate.com/$2 + + target + + + host + redstate.com + + + host + www.redstate.com + + + + + Redbox.com + + ruleset + + name + Redbox.com + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?redbox\.com/ + to + https://www.redbox.com/ + + + from + ^http://images\.redbox\.com/ + to + https://images.redbox.com/ + + + target + + + host + redbox.com + + + host + www.redbox.com + + + host + images.redbox.com + + + + + Redcats (partial) + + ruleset + + name + Redcats (partial) + rule + + from + ^http://(images|media)\.redcatsecom\.com/ + to + https://$1.redcatsecom.com/ + + securecookie + + host + ^media\.redcatsecom\.com$ + name + .+ + + target + + host + *.redcatsecom.com + + + + Redcoon.pt + + ruleset + + name + Redcoon.pt + rule + + from + ^http://(www\.)?redcoon\.pt/ + to + https://www.redcoon.pt/ + + target + + + host + redcoon.pt + + + host + www.redcoon.pt + + + + + Redd Pics.com (false MCB) + + ruleset + + name + Redd Pics.com (false MCB) + platform + mixedcontent + rule + + from + ^http://reddpics\.com/ + to + https://reddpics.com/ + + securecookie + + host + ^\.reddpics\.com$ + name + .+ + + target + + + host + reddpics.com + + + host + *.reddpics.com + + + + + Redd Pics.com (partial) + + ruleset + + exclusion + + pattern + ^http://reddpics\.com/+(?!assets/|favicon\.ico) + + name + Redd Pics.com (partial) + rule + + from + ^http://(www\.)?reddpics\.com/ + to + https://$1reddpics.com/ + + target + + + host + reddpics.com + + + host + www.reddpics.com + + + + + Reddit + + ruleset + + name + Reddit + rule + + + from + ^http://((?:[a-z]{1,2}|[a-z]{2}-[a-z]{2}|blog|pay|redditama|ssl|static|www)\.)?reddit\.com/ + to + https://$1reddit.com/ + + + from + ^http://(?:www\.)?np\.reddit\.com/ + to + https://np.reddit.com/ + + + from + ^http://thumbs\.reddit\.com/ + to + https://s3.amazonaws.com/thumbs.reddit.com/ + + + from + ^http://(\w+\.)?thumbs\.redditmedia\.com/ + to + https://$1thumbs.redditmedia.com/ + + + from + ^http://www\.redditstatic\.com/ + to + https://www.redditstatic.com/ + + + securecookie + + + host + .*\.reddit\.com$ + name + .+ + + + host + ^\.redditmedia\.com$ + name + ^__cfduid$ + + + target + + + host + reddit.com + + + host + *.reddit.com + + + host + *.redditmedia.com + + + host + www.redditstatic.com + + + + + Redmine.org (partial) + + ruleset + + name + Redmine.org (partial) + rule + + from + ^http://svn\.redmine\.org/ + to + https://svn.redmine.org/ + + securecookie + + host + ^svn\.redmine\.org$ + name + .+ + + target + + host + svn.redmine.org + + + + Redpill Linpro (partial) + + ruleset + + name + Redpill Linpro (partial) + rule + + from + ^http://portal\.redpill-linpro\.com/ + to + https://portal.redpill-linpro.com/ + + target + + host + portal.redpill-linpro.com + + + + Redweb + + ruleset + + name + Redweb + rule + + from + ^http://(www\.)?redweb\.com/ + to + https://$1redweb.com/ + + securecookie + + host + ^\.redweb\.com$ + name + .+ + + target + + + host + redweb.com + + + host + *.redweb.com + + + + + Reed Business Information (partial) + + ruleset + + name + Reed Business Information (partial) + rule + + from + ^https?://cdn\.reedbusiness\.com/ + to + https://d18n01l3jfu4kv.cloudfront.net/ + + target + + host + cdn.reedbusiness.com + + + + Reed Business Information Australia + + ruleset + + name + Reed Business Information Australia + rule + + from + ^http://(ccbnstatic|media)\.rbi\.com\.au/ + to + https://$1.rbi.com.au/ + + securecookie + + host + ^\.rbi\.com\.au$ + name + .+ + + target + + host + *.rbi.com.au + + + + Reed Business.net (partial) + + ruleset + + name + Reed Business.net (partial) + rule + + from + ^http://metrics\.reedbusiness\.net/ + to + https://reedbusiness-net.d2.sc.omtrdc.net/ + + target + + host + metrics.reedbusiness.net + + + + Reed Exhibitions (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?infosecurity-magazine\.com/(.+/$|download/\d{1,5}|view/\d+/[\w-]$) + + name + Reed Exhibitions (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?infosecurity-magazine\.com/ + to + https://www.infosecurity-magazine.com/ + + + from + ^http://(?:www\.)?lexisnexis\.com/ + to + https://www.lexisnexis.com/ + + + target + + + host + infosecurity-magazine.com + + + host + www.infosecurity-magazine.com + + + host + lexisnexis.com + + + host + www.lexisnexis.com + + + + + Reef Builders + + ruleset + + name + Reef Builders + rule + + + from + ^http://(www\.)?reefbuilders\.com/ + to + https://$1reefbuilders.com/ + + + from + ^http://community\.reefbuilders\.com/ + to + https://reefbuilders.vanillaforums.com/ + + + from + ^http://jobs\.reefbuilders\.com/c/ + to + https://reef.jobamatic.com/c/ + + + securecookie + + host + ^\.reefbuilders\.com$ + name + .+ + + target + + + host + reefbuilders.com + + + host + *.reefbuilders.com + + + + + ReelHD.com + + ruleset + + name + ReelHD.com + rule + + from + ^http://(www\.)?reelhd\.com/ + to + https://$1reelhd.com/ + + securecookie + + host + ^(?:w*\.)?reelhd\.com$ + name + .+ + + target + + + host + reelhd.com + + + host + *.reelhd.com + + + + + ReelSEO.com + + ruleset + + name + ReelSEO.com + rule + + + from + ^http://(www\.)?reelseo\.com/ + to + https://$1reelseo.com/ + + + from + ^http://cdn\d?\.reelstatic\.com/ + to + https://www.reelseo.com/ + + + securecookie + + host + ^\.reelseo\.com$ + name + .+ + + target + + + host + reelseo.com + + + host + *.reelseo.com + + + host + *.reelstatic.com + + + + + ReelVidz.com (partial) + + ruleset + + name + ReelVidz.com (partial) + rule + + + from + ^http://wac\.20f5\.edgecastcdn\.net/8020F5/ + to + https://gp1.wac.edgecastcdn.net/8020F5/ + + + from + ^http://(www\.)?reelvidz\.com/ + to + https://$1reelvidz.com/ + + + securecookie + + host + ^(?:www\.)?reelvidz\.com$ + name + .+ + + target + + + host + wac.20f5.edgecastcdn.net + + + host + reelvidz.com + + + host + www.reelvidz.com + + + + + Reethi Beach.com + + ruleset + + name + Reethi Beach.com + rule + + from + ^http://(?:www\.)?reethibeach\.com/ + to + https://www.reethibeach.com/ + + securecookie + + host + ^\.reethibeach\.com$ + name + .+ + + target + + + host + reethibeach.com + + + host + *.reethibeach.com + + + + + Reevoo (partial) + + ruleset + + name + Reevoo (partial) + rule + + + from + ^http://((?:[ct]\.|de\.)?mark\.|shopping\.|www\.)?reevoo\.com/ + to + https://$1reevoo.com/ + + + from + ^https?://cdn\.images\.reevoo\.com/ + to + https://d1jyr02lmd46xp.cloudfront.net/ + + + from + ^http://mark\.reevoo\.(es|fr|it|nl)/ + to + https://mark.reevoo.$1/ + + + securecookie + + host + ^\.reevoo\.com$ + name + .+ + + target + + + host + mark.reevoo.* + + + host + reevoo.com + + + host + *.reevoo.com + + + host + cdn.images.reevoo.com + + + host + *.mark.reevoo.com + + + + + Refined Labs + + ruleset + + name + Refined Labs + rule + + from + ^http://d\.refinedads\.com/ + to + https://d.refinedads.com/ + + target + + host + *.refinedads.com + + + + Reformal (partial) + + ruleset + + exclusion + + pattern + ^http://webinfo\. + + name + Reformal (partial) + rule + + from + ^http://([\w-]+\.)?reformal\.ru/ + to + https://$1reformal.ru/ + + securecookie + + host + ^\.reformal\.ru$ + name + .+ + + target + + + host + reformal.ru + + + host + *.reformal.ru + + + + + Reformed Church + + ruleset + + name + Reformed Church + rule + + from + ^http://(?:www\.)?rca\.org/ + to + https://www.rca.org/ + + target + + + host + rca.org + + + host + www.rca.org + + + + + Refrog + + ruleset + + name + Refrog + rule + + from + ^http://(?:www\.)?refog\.com/ + to + https://www.refog.com/ + + securecookie + + host + ^www\.refrog\.com$ + name + .* + + target + + + host + refog.com + + + host + www.refog.com + + + + + Reg.ru + + ruleset + + name + Reg.ru + rule + + from + ^http://((?:hosting|support|www)\.)?reg\.ru/ + to + https://$1reg.ru/ + + securecookie + + host + ^\.reg\.ru$ + name + .+ + + target + + + host + reg.ru + + + host + *.reg.ru + + + + + Rega + + ruleset + + name + Rega + rule + + + from + ^https?://rega\.ch/ + to + https://www.rega.ch/ + + + from + ^http://([^/:@]+)?\.rega\.ch/ + to + https://$1.rega.ch/ + + + target + + + host + rega.ch + + + host + *.rega.ch + + + + + RegioBank.nl + + ruleset + + name + RegioBank.nl + rule + + from + ^http://(?:www\.)?regiobank\.nl/ + to + https://www.regiobank.nl/ + + securecookie + + host + ^(?:www)?\.regiobank\.nl$ + name + .+ + + target + + + host + regiobank.nl + + + host + *.regiobank.nl + + + + + Regional Municipality of Peel, Canada + + ruleset + + name + Regional Municipality of Peel, Canada + rule + + + from + ^http://(?:www\.)?peelregion\.ca/ + to + https://www.peelregion.ca/ + + + from + ^https://peelregion\.ca/ + to + https://www.peelregion.ca/ + + + target + + + host + peelregion.ca + + + host + www.peelregion.ca + + + + + Register.com + + ruleset + + name + Register.com + rule + + + from + ^https?://(?:www\.)?register\.com/ + to + https://www.register.com/ + + + from + ^http://((?:www\.)?help|partners(?:hips|ignup)|support|webmail0[12])\.register\.com/ + to + https://$1.register.com/ + + + securecookie + + host + ^(?:.*\.)?register\.com$ + name + .+ + + target + + + host + register.com + + + host + *.register.com + + + + + Register4Less.com + + ruleset + + name + Register4Less.com + rule + + from + ^http://(www\.)?register4less\.com/ + to + https://$1register4less.com/ + + target + + + host + register4less.com + + + host + www.register4less.com + + + + + Registration123.com + + ruleset + + name + Registration123.com + rule + + from + ^http://(www\.)?registration123\.com/ + to + https://$1registration123.com/ + + target + + + host + registration123.com + + + host + www.registration123.com + + + + + Registro.br (partial) + + ruleset + + name + Registro.br (partial) + rule + + from + ^http://(whois\.|www\.)?registro\.br/ + to + https://$1registro.br/ + + target + + + host + registro.br + + + host + *.registro.br + + + + + Regularish.com + + ruleset + + name + Regularish.com + rule + + from + ^http://(www\.)?regularish\.com/ + to + https://$1regularish.com/ + + target + + + host + regularish.com + + + host + www.regularish.com + + + + + Reichelt.de + + ruleset + + name + Reichelt.de + rule + + from + ^http://(www\.|such001\.|secure\.)?reichelt\.de/ + to + https://secure.reichelt.de/ + + target + + + host + www.reichelt.de + + + host + reichelt.de + + + host + secure.reichelt.de + + + host + such001.reichelt.de + + + + + Reifman.org (partial) + + ruleset + + name + Reifman.org (partial) + rule + + from + ^http://c3\.reifman\.org/ + to + https://d3iwh2gikt6957.cloudfront.net/ + + target + + host + c3.reifman.org + + + + Reiner-SCT.com + + ruleset + + name + Reiner-SCT.com + rule + + from + ^http://(tracking\.|www\.)?reiner-sct\.com/ + to + https://$1reiner-sct.com/ + + securecookie + + host + ^(?:www)?\.reiner-sct\.com$ + name + .+ + + target + + + host + reiner-sct.com + + + host + *.reiner-sct.com + + + + + Reklamport.com + + ruleset + + name + Reklamport.com + rule + + from + ^http://(ad\.|www\.)?reklamport\.com/ + to + https://$1reklamport.com/ + + target + + + host + reklamport.com + + + host + *.reklamport.com + + + + + Relate.org.uk + + ruleset + + name + Relate.org.uk + rule + + from + ^http://(www\.)?relate\.org\.uk/ + to + https://$1relate.org.uk/ + + securecookie + + host + ^www\.relate\.org\.uk$ + name + .+ + + target + + + host + relate.org.uk + + + host + www.relate.org.uk + + + + + RelayRides.com + + ruleset + + name + RelayRides.com + rule + + from + ^http://(www\.)?relayrides\.com/ + to + https://$1relayrides.com/ + + securecookie + + host + ^relayrides\.com$ + name + .+ + + target + + + host + relayrides.com + + + host + www.relayrides.com + + + + + Reliable ISP.net + + ruleset + + name + Reliable ISP.net + rule + + from + ^http://(?:www\.)?reliableisp\.net/ + to + https://www.reliableisp.net/ + + target + + + host + reliableisp.net + + + host + www.reliableisp.net + + + + + Religion News.com (partial) + + ruleset + + exclusion + + pattern + ^http://archives\.religionnews\.com/(?!\w+\.png|assets/|favicon\.ico|images/|sign-in(?:$|\?|/)) + + name + Religion News.com (partial) + rule + + from + ^http://((?:archives|cathleenfalsani|davidgibson|janariess|jonathanmerritt|marksilk|michaeloloughlin|omarsacirbey|omidsafi|pressreleases|www)\.)?religionnews\.com/ + to + https://$1religionnews.com/ + + securecookie + + host + ^\.religionnews\.com$ + name + .+ + + target + + + host + religionnews.com + + + host + *.religionnews.com + + + + + Remedy Entertainment (partial) + + ruleset + + name + Remedy Entertainment (partial) + rule + + from + ^http://community\.remedygames\.com/ + to + https://community.remedygames.com/ + + securecookie + + host + ^community\.remedygames\.com$ + name + .+ + + target + + host + community.remedygames.com + + + + Remember the Milk + + ruleset + + name + Remember the Milk + rule + + + from + ^https?://(?:www\.)?rememberthemilk\.(?:com|jp)/ + to + https://www.rememberthemilk.com/ + + + from + ^http://api\.rememberthemilk\.com/ + to + https://api.rememberthemilk.com/ + + + from + ^http://s([1-4])\.rtmcdn\.net/ + to + https://s$1.rtmcdn.net/ + + + securecookie + + host + ^\.rememberthemilk\.com$ + name + .* + + target + + + host + rememberthemilk.com + + + host + *.rememberthemilk.com + + + host + rememberthemilk.jp + + + host + www.rememberthemilk.jp + + + host + *.rtmcdn.net + + + + + RemoteCoder.io + + ruleset + + name + RemoteCoder.io + rule + + from + ^http://(www\.)?remotecoder\.io/ + to + https://$1remotecoder.io/ + + target + + + host + remotecoder.io + + + host + www.remotecoder.io + + + + + Remue Exhaust Store.com + + ruleset + + name + Remue Exhaust Store.com + rule + + from + ^http://(www\.)?remusexhauststore\.com/ + to + https://$1remusexhauststore.com/ + + securecookie + + host + ^\.remusexhauststore\.com$ + name + .+ + + target + + + host + remusexhauststore.com + + + host + *.remusexhauststore.com + + + + + Renater.fr (partial) + + ruleset + + name + Renater.fr (partial) + rule + + from + ^http://(federation|fedregistry|git|groupes|services|services-federation|sourcesup|subversion)\.renater\.fr/ + to + https://$1.renater.fr/ + + securecookie + + host + ^(?:groupes|services|sourcesup)\.renater\.fr$ + name + .+ + + target + + host + *.renater.fr + + + + Reno Gazette-Journal (partial) + + ruleset + + name + Reno Gazette-Journal (partial) + rule + + + from + ^http://(?:cmsimg\.|www\.)?rgj\.com/ + to + https://www.rgj.com/ + + + from + ^http://deals\.rgj\.com/sf_(framework|module)s/ + to + https://reno.planetdiscover.com/sf_$1s/ + + + securecookie + + host + ^(?:www)?\.rgj\.com$ + name + .+ + + target + + + host + rgj.com + + + host + *.rgj.com + + + + + Renovation Experts (partial) + + ruleset + + name + Renovation Experts (partial) + rule + + from + ^http://(www\.)?renovationexperts\.com/ + to + https://$1renovationexperts.com/ + + securecookie + + host + ^(?:www\.)?renovationexperts\.com$ + name + .+ + + target + + + host + renovationexperts.com + + + host + www.renovationexperts.com + + + + + Rensselaer Polytechnic Institute + + ruleset + + name + Rensselaer Polytechnic Institute + rule + + from + ^http://(events\.|clubs\.union\.|www\.)?rpi\.edu/ + to + https://$1rpi.edu/ + + target + + + host + rpi.edu + + + host + *.rpi.edu + + + host + clubs.union.rpi.edu + + + + + Rent the Runway (partial) + + ruleset + + name + Rent the Runway (partial) + rule + + + from + ^http://(?:www\.)?renttherunway\.com/(grid|rtr/images)/ + to + https://cdn.rtrcdn.com/$1/ + + + from + ^http://(www\.)?renttherunway\.com/(ajax|pixel|sites)/ + to + https://$1renttherunway.com/$2/ + + + from + ^http://cdn\.r(?:enttherunway|trcdn)\.com/ + to + https://cdn.rtrcdn.com/ + + + from + ^http://grid-p\.rtrcdn\.com/grid/ + to + https://cdn.rtrcdn.com/grid/ + + + from + ^http://(?:grid|static)-p\.rtrcdn\.com/ + to + https://cdn.rtrcdn.com/grid/ + + + target + + + host + renttherunway.com + + + host + *.renttherunway.com + + + host + *.rtrcdn.com + + + + + RentaNode.nl + + ruleset + + name + RentaNode.nl + rule + + from + ^http://(?:www\.)?rentanode\.nl/[^?]* + to + https://www.rentanode.nl/ + + target + + + host + rentanode.nl + + + host + www.rentanode.nl + + + + + Rentex + + ruleset + + name + Rentex + rule + + from + ^https?://(?:www\.)?rentex\.com/ + to + https://www.rentex.com/ + + securecookie + + host + ^www\.rentex\.com$ + name + .+ + + target + + + host + rentex.com + + + host + www.rentex.com + + + + + Rentler.com + + ruleset + + name + Rentler.com + rule + + from + ^http://(www\.)?rentler\.com/ + to + https://$1rentler.com/ + + securecookie + + host + ^\.rentler\.com$ + name + .+ + + target + + + host + rentler.com + + + host + *.rentler.com + + + + + Replica Perfection + + ruleset + + name + Replica Perfection + rule + + from + ^http://(www\.)?replicaperfection\.com/ + to + https://$1replicaperfection.com/ + + securecookie + + host + ^\.replicaperfection\.com$ + name + .+ + + target + + + host + replicaperfection.com + + + host + *.replicaperfection.com + + + + + Replicant.us + + ruleset + + name + Replicant.us + platform + cacert + rule + + + from + ^http://(?:ww\.)?replicant\.us/ + to + https://www.replicant.us/ + + + from + ^http://redmine\.replicant\.us/ + to + https://redmine.replicant.us/ + + + securecookie + + host + ^redmine\.replicant\.us$ + name + .+ + + target + + + host + replicant.us + + + host + *.replicant.us + + + + + Reporo (partial) + + ruleset + + name + Reporo (partial) + rule + + + from + ^http://(?:www\.)?reporo\.com/ + to + https://www.reporo.com/ + + + from + ^http://static\.reporo\.com/ + to + https://static.reporo.com/ + + + securecookie + + host + ^www\.reporo\.com$ + name + .+ + + target + + + host + reporo.com + + + host + *.reporo.com + + + + + ReportLab (partial) + + ruleset + + name + ReportLab (partial) + rule + + from + ^http://www\.reportlab\.com/(accounts/|favicon\.ico|media/|static) + to + https://www.reportlab.com/$1 + + target + + host + www.reportlab.com + + + + Reporters Without Borders + + ruleset + + exclusion + + pattern + ^http://12mars\.rsf\.org/+(?!favicon\.ico|(?:[\w-]+/)?wp-(?:content|includes)/) + + name + Reporters Without Borders + rule + + + from + ^http://((?:donate|en|fr|12mars|surveillance|www)\.)?rsf\.org/ + to + https://$1rsf.org/ + + + from + ^http://(www\.)?reporter-ohne-grenzen\.de/ + to + https://www.reporter-ohne-grenzen.de/ + + + target + + + host + rsf.org + + + host + *.rsf.org + + + host + reporter-ohne-grenzen.de + + + host + www.reporter-ohne-grenzen.de + + + + + Repost.Us + + ruleset + + name + Repost.Us + rule + + + from + ^http://(secure\.|www\.)?repost\.us/ + to + https://$1repost.us/ + + + from + ^http://1\.rp-api\.com/ + to + https://1.rp-api.com/ + + + from + ^https?://(?:img|static)\.1\.rp-api\.com/ + to + https://d2q1vna75dc892.cloudfront.net/ + + + securecookie + + host + ^.*\.repost\.us$ + name + .+ + + target + + + host + repost.us + + + host + *.repost.us + + + host + *.rp-api.com + + + + + Repozitar.cz + + ruleset + + name + Repozitar.cz + rule + + from + ^http://(?:www\.)?repozitar\.cz/ + to + https://repozitar.cz/ + + securecookie + + host + ^repozitar\.cz$ + name + .+ + + target + + + host + repozitar.cz + + + host + www.repozitar.cz + + + + + Represent.Us + + ruleset + + name + Represent.Us + rule + + + from + ^http://(www\.)?represent\.us/ + to + https://$1represent.us/ + + + from + ^http://cdn\d\.represent\.us/ + to + https://d16f95x138ho2a.cloudfront.net/ + + + securecookie + + host + ^www\.represent\.us$ + name + .+ + + target + + + host + represent.us + + + host + *.represent.us + + + + + Reputation.com (partial) + + ruleset + + exclusion + + pattern + ^http://uk\.reputation\.com/+(?!favicon\.ico|pub/assets/) + + name + Reputation.com (partial) + rule + + + from + ^http://reputation\.com/ + to + https://www.reputation.com/ + + + from + ^http://(t|uk)\.reputation\.com/ + to + https://$1.reputation.com/ + + + from + ^http://www\.reputation\.com/(?=[\w/-]*images/|min/|secure/) + to + https://www.reputation.com/ + + + securecookie + + host + ^t\.reputation\.com$ + name + .+ + + target + + + host + reputation.com + + + host + *.reputation.com + + + + + RequestPolicy + + ruleset + + name + RequestPolicy + rule + + from + ^http://(www\.)?requestpolicy\.com/ + to + https://$1requestpolicy.com/ + + target + + + host + requestpolicy.com + + + host + www.requestpolicy.com + + + + + Research Media & Cybernetics + + ruleset + + name + Research Media & Cybernetics + rule + + from + ^http://(www\.)?rmcybernetics\.com/ + to + https://$1rmcybernetics.com/ + + securecookie + + host + ^.*\.rmcybernetics\.com$ + name + .* + + target + + + host + rmcybernetics.com + + + host + *.rmcybernetics.com + + + host + *.www.rmcybernetics.com + + + + + Research Results.com + + ruleset + + name + Research Results.com + rule + + + from + ^http://(i)?surveys\.researchresults\.com/ + to + https://$1surveys.researchresults.com/ + + + from + ^http://fe03\.rresults\.com/ + to + https://fe03.rresults.com/ + + + securecookie + + host + ^\.researchresults\.com$ + name + ^__utm\w$ + + target + + + host + *.researchresults.com + + + host + fe03.rresults.com + + + + + ResearchGate.net (partial) + + ruleset + + name + ResearchGate.net (partial) + rule + + from + ^http://(www\.)?researchgate\.net/(?=c/|favicon\.ico|i/|images/|signup(?:$|[?.])) + to + https://$1researchgate.net/ + + target + + + host + researchgate.net + + + host + www.researchgate.net + + + + + ResearchMatch.org + + ruleset + + name + ResearchMatch.org + rule + + from + ^http://(www\.)?researchmatch\.org/ + to + https://$1researchmatch.org/ + + securecookie + + host + ^www\.researchmatch\.org$ + name + .+ + + target + + + host + researchmatch.org + + + host + www.researchmatch.org + + + + + ResellerRatings (partial) + + ruleset + + name + ResellerRatings (partial) + rule + + + from + ^http://(?:beta\.|(seals\.|www\.))?resellerratings\.com/ + to + https://$1resellerratings.com/ + + + from + ^https?://cdn\d\.resellerratings\.com/ + to + https://d3cb52u6zfmv02.cloudfront.net/ + + + from + ^https?://images\.resellerratings\.com/ + to + https://d2ebdb90bhptzn.cloudfront.net/ + + + securecookie + + host + ^.*\.resellerratings\.com$ + name + .+ + + target + + + host + resellerratings.com + + + host + *.resellerratings.com + + + + + Reservation Counter (partial) + + ruleset + + name + Reservation Counter (partial) + rule + + + from + ^https?://(?:www\.)?reservationcounter\.com/(\w+/themes/|ga\.\d+\.js) + to + https://www.reservationcounter.com/$1 + + + from + ^http://callcenter\.reservationcounter\.com/ + to + https://callcenter.reservationcounter.com/ + + + securecookie + + host + ^callcenter\.reservationcounter\.com$ + name + .+ + + target + + + host + reservationcounter.com + + + host + *.reservationcounter.com + + + + + Reservation-Desk.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?reservation-desk\.com/(?!application/themes/) + + name + Reservation-Desk.com (partial) + rule + + from + ^http://(callcenter\.|www\.)?reservation-desk\.com/ + to + https://$1reservation-desk.com/ + + target + + + host + reservation-desk.com + + + host + *.reservation-desk.com + + + + + Reset the Net.org + + ruleset + + name + Reset the Net.org + rule + + from + ^http://(pack\.|www\.)?resetthenet\.org/ + to + https://$1resetthenet.org/ + + securecookie + + host + ^\.resetthenet\.org$ + name + .+ + + target + + + host + resetthenet.org + + + host + *.resetthenet.org + + + + + Resist Surveillance.org + + ruleset + + name + Resist Surveillance.org + rule + + from + ^http://(www\.)?resistsurveillance\.org/ + to + https://$1resistsurveillance.org/ + + target + + + host + resistsurveillance.org + + + host + www.resistsurveillance.org + + + + + Respawn Security + + ruleset + + name + Respawn Security + rule + + from + ^http://(www\.)?cloudflareapp1\.info/ + to + https://$1cloudflareapp1.info/ + + target + + + host + cloudflareapp1.info + + + host + *.cloudflareapp1.info + + + + + Responsys (partial) + + ruleset + + name + Responsys (partial) + rule + + from + ^http://policy([23])\.responsys\.net/ + to + https://policy$1.responsys.net/ + + target + + host + *.responsys.net + + + + Restore the Fourth + + ruleset + + name + Restore the Fourth + rule + + from + ^http://(www\.)?restorethefourth\.net/ + to + https://$1restorethefourth.net/ + + securecookie + + host + ^(?:www)?\.restorethefourth\.net$ + name + .+ + + target + + + host + restorethefourth.net + + + host + *.restorethefourth.net + + + + + Resurs.se + + ruleset + + name + Resurs.se + rule + + from + ^http://(?:www\.)?resurs\.se/ + to + https://www.resurs.se/ + + target + + + host + resurs.se + + + host + www.resurs.se + + + + + Retail Sails (partial) + + ruleset + + exclusion + + pattern + ^https?://www\.retailsails\.com/index\.php(?:$|\?) + + name + Retail Sails (partial) + rule + + from + ^https?://(www\.)?retailsails.com/ + to + https://$1retailsails.com/ + + target + + + host + retailsails.com + + + host + www.retailsails.com + + + + + RetailMeNot.com (partial) + + ruleset + + name + RetailMeNot.com (partial) + rule + + + from + ^http://(?:www\.)?retailmenot\.com/favicon\.ico + to + https://www.retailmenot.com/favicon.ico + + + from + ^http://o\.rmncdn\.com/ + to + https://a248.e.akamai.net/f/1170/1045/5/o.rmncdn.com/ + + + target + + + host + retailmenot.com + + + host + www.retailmenot.com + + + host + o.rmncdn.com + + + + + Retailhosting.fi + + ruleset + + name + Retailhosting.fi + rule + + from + ^http://(?:www\.)?retailhosting\.fi/ + to + https://www.retailhosting.fi/ + + target + + + host + retailhosting.fi + + + host + www.retailhosting.fi + + + + + RetroFestive.ca + + ruleset + + name + RetroFestive.ca + rule + + from + ^http://(www\.)?retrofestive\.ca/ + to + https://$1retrofestive.ca/ + + securecookie + + host + ^\.retrofestive\.ca$ + name + .+ + + target + + + host + retrofestive.ca + + + host + *.retrofestive.ca + + + + + RetroUSB.com + + ruleset + + name + RetroUSB.com + rule + + from + ^http://(www\.)?retrousb\.com/ + to + https://$1retrousb.com/ + + securecookie + + host + ^\.retrousb\.com$ + name + .+ + + target + + + host + retrousb.com + + + host + *.retrousb.com + + + + + Retronaut.com + + ruleset + + name + Retronaut.com + rule + + from + ^http://(www\.)?retronaut\.com/ + to + https://$1retronaut.com/ + + securecookie + + host + ^\.retronaut\.com$ + name + .+ + + target + + + host + retronaut.com + + + host + *.retronaut.com + + + + + RevResponse.com + + ruleset + + name + RevResponse.com + rule + + from + ^http://(?:www\.)?revresponse\.com/ + to + https://www.revresponse.com/ + + target + + + host + revresponse.com + + + host + www.revresponse.com + + + + + Review Board.org (partial) + + ruleset + + name + Review Board.org (partial) + rule + + from + ^http://reviews\.reviewboard\.org/ + to + https://reviews.reviewboard.org/ + + securecookie + + host + ^reviews\.reviewboard\.org$ + name + .+ + + target + + host + reviews.reviewboard.org + + + + Reviewing Comics + + ruleset + + name + Reviewing Comics + rule + + from + ^http://(www\.)?reviewingcomics\.com/ + to + https://$1reviewingcomics.com/ + + securecookie + + host + ^(?:www)?\.reviewingcomics\.com$ + name + .+ + + target + + + host + reviewingcomics.com + + + host + *.reviewingcomics.com + + + + + Revision3 (partial) + + ruleset + + name + Revision3 (partial) + rule + + + from + ^http://(www\.)?revision3\.com/ + to + https://$1revision3.com/ + + + from + ^https?://statics\.revision3\.com/ + to + https://revision3-pc-ssl.bitgravity.com/ + + + securecookie + + host + ^\.revision3\.com$ + name + .+ + + target + + + host + revision3.com + + + host + *.revision3.com + + + + + Revolet + + ruleset + + name + Revolet + rule + + from + ^http://(www\.)?revolet\.com/ + to + https://$1revolet.com/ + + securecookie + + host + ^(?:.*\.)?revolet\.com$ + name + .+ + + target + + + host + revolet.com + + + host + *.revolet.com + + + + + Revolt Games (partial) + + ruleset + + name + Revolt Games (partial) + rule + + from + ^http://(?:www\.)?revoltgames\.com/ + to + https://www.revoltgames.com/ + + securecookie + + host + ^\.revoltgames\.com$ + name + .+ + + target + + + host + revoltgames.com + + + host + *.revoltgames.com + + + + + RezTrip + + ruleset + + name + RezTrip + rule + + from + ^http://(?:www\.)?reztrip\.com/ + to + https://www.reztrip.com/ + + securecookie + + host + ^www\.reztrip\.com$ + name + .* + + target + + + host + reztrip.com + + + host + www.reztrip.com + + + + + Rhino Software (partial) + + ruleset + + name + Rhino Software (partial) + rule + + from + ^http://(www\.)?rhinosoft\.com/ + to + https://$1rhinosoft.com/ + + securecookie + + host + ^(www\.)?rhinosoft\.com$ + name + .* + + target + + + host + rhinosoft.com + + + host + www.rhinosoft.com + + + + + Rhizome (partial) + + ruleset + + name + Rhizome (partial) + rule + + from + ^http://(www\.)?rhizome\.org/static/ + to + https://$1rhizome.org/static/ + + target + + + host + rhizome.org + + + host + www.rhizome.org + + + + + Ricardo.ch + + ruleset + + name + Ricardo.ch + rule + + from + ^http://(?:www\.)?ricardo\.ch/ + to + https://www.ricardo.ch/ + + securecookie + + host + ^(.*\.)?ricardo\.ch$ + name + .* + + target + + + host + ricardo.ch + + + host + www.ricardo.ch + + + + + Rice University (partial) + + ruleset + + name + Rice University (partial) + rule + + from + ^http://(online\.alumni|staff)\.rice\.edu/ + to + https://$1.rice.edu/ + + securecookie + + host + ^(online\.alumni|staff)\.rice\.edu$ + name + .* + + target + + + host + online.alumni.rice.edu + + + host + staff.rice.edu + + + + + RichRelevance (partial) + + ruleset + + name + RichRelevance (partial) + rule + + from + ^http://((?:confluence|demo|e4b-2|jira|media|portal|www)\.)?richrelevance\.com/ + to + https://$1richrelevance.com/ + + securecookie + + host + ^www\.richrelevance\.com$ + name + .+ + + target + + + host + richrelevance.com + + + host + *.richrelevance.com + + + + + Richard Dawkins Foundation (partial) + + ruleset + + name + Richard Dawkins Foundation (partial) + rule + + + from + ^http://(donate\.|www\.)?richarddawkins\.net/ + to + https://$1richarddawkins.net/ + + + from + ^http://comments\.richarddawkins\.net/ + to + https://rdfnet-comments.herokuapp.com/ + + + from + ^http://store\.richarddawkins\.net//+([^?]+)\?.* + to + https://richarddawkins.net/store/$1 + + + from + ^http://store\.richarddawkins\.net/ + to + https://richarddawkins.net/store/ + + + securecookie + + host + ^(?:www\.)?richarddawkins\.net$ + name + .+ + + target + + + host + richarddawkins.net + + + host + comments.richarddawkins.net + + + host + donate.richarddawkins.net + + + host + store.richarddawkins.net + + + host + www.richarddawkins.net + + + + + Richard and Judy Book Club + + ruleset + + name + Richard and Judy Book Club + rule + + from + ^http://www\.richardandjudy\.co\.uk/ + to + https://www.richardandjudy.co.uk/ + + target + + host + www.richardandjudy.co.uk + + + + Richmond Tea Party + + ruleset + + name + Richmond Tea Party + rule + + from + ^http://(www\.)?richmondteaparty\.com/ + to + https://$1richmondteaparty.com/ + + securecookie + + host + ^(?:w*\.)?richmondteaparty\.com$ + name + .+ + + target + + + host + richmondteaparty.com + + + host + *.richmondteaparty.com + + + + + Richmond.edu (partial) + + ruleset + + name + Richmond.edu (partial) + rule + + from + ^http://(autodiscover|bannerweb|blackboard|dsl|exchangemail|webapps|webpass)\.richmond\.edu/ + to + https://$1.richmond.edu/ + + securecookie + + host + ^(?:bannerweb|blackboard|webpass)\.richmond\.edu$ + name + .+ + + target + + host + *.richmond.edu + + + + Ricoh (partial) + + ruleset + + name + Ricoh (partial) + rule + + + from + ^http://(?:www\.)?ricoh\.co\.in/ + to + https://ricoh.co.in/ + + + from + ^http://(?:www\.)?ricoh\.com/ + to + https://www.ricoh.com/ + + + from + ^http://(?:www\.)?ricoh\.com\.hk/co(mmon|tent)/ + to + https://www.ricoh.com.hk/co$1/ + + + from + ^http://marketplace\.ricoh\.com\.sg/ + to + https://marketplace.ricoh.com.sg/ + + + from + ^http://(?:www\.)?ricoh\.sg/ + to + https://www.ricoh.sg/ + + + securecookie + + host + ^(.*\.)?ricoh\.co(\.in|m(\.sg)?)$ + name + .* + + target + + + host + ricoh.co.in + + + host + www.ricoh.co.in + + + host + ricoh.com + + + host + www.ricoh.com + + + host + ricoh.com.hk + + + host + www.ricoh.com.hk + + + host + marketplace.ricoh.com.sg + + + host + ricoh.sg + + + host + www.ricoh.sg + + + + + Riga + + ruleset + + name + Riga + rule + + + from + ^http://riga\.lv/ + to + https://riga.lv/ + + + from + ^http://([^/:@\.]+)\.riga\.lv/ + to + https://$1.riga.lv/ + + + from + ^http://eriga\.lv/ + to + https://eriga.lv/ + + + from + ^http://www\.eriga\.lv/ + to + https://www.eriga.lv/ + + + target + + + host + riga.lv + + + host + *.riga.lv + + + host + eriga.lv + + + host + www.eriga.lv + + + + + Right Media + + ruleset + + name + Right Media + rule + + + from + ^https?://ad\.adorika\.com/ + to + https://ad.rmxads.com/ + + + from + ^http://ads\.bluelithium\.com/ + to + https://ads.bluelithium.com/ + + + from + ^http://(ad|optimizedby)\.rmxads\.com/ + to + https://$1.rmxads.com/ + + + from + ^https?://content(?:-ssl)?\.yieldmanager\.com/ + to + https://content-ssl.yieldmanager.com/ + + + from + ^http://(ad|ui\.ad|ycpi\.ad|community|my|rm|yahoo)\.yieldmanager\.com/ + to + https://$1.yieldmanager.com/ + + + from + ^http://((?:ci|clicks)\.beap|csc\.beap|open)\.ad\.yieldmanager\.net/ + to + https://$1.ad.yieldmanager.net/ + + + from + ^http://((?:\w+)(?:\.\w+)?)\.dp\.yieldmanager\.net/ + to + https://$1.dp.yieldmanager.net/ + + + securecookie + + host + ^(.*\.)?yieldmanager\.(com|net)$ + name + .* + + target + + + host + ad.adorika.com + + + host + ads.bluelithium.com + + + host + *.rmxads.com + + + host + *.yieldmanager.com + + + host + *.ad.yieldmanager.com + + + host + *.yieldmanager.net + + + host + open.ad.yieldmanager.net + + + host + *.dp.yieldmanager.net + + + host + *.eu.dp.yieldmanager.net + + + host + tm.*.dp.yieldmanager.net + + + + + RightNow Technologies (partial) + + ruleset + + name + RightNow Technologies (partial) + rule + + + from + ^https?://(?:www\.)?custhelp\.com/ + to + https://www.rightnow.com/ + + + from + ^http://([\w\-]+)\.custhelp\.com/ + to + https://$1.custhelp.com/ + + + from + ^http://(www\.)?rightnow\.com/ + to + https://$1rightnow.com/ + + + from + ^http://www\.rnengage\.com/ + to + https://www.rnengage.com/ + + + securecookie + + + host + ^.*\.custhelp\.com$ + name + ^(?!ps_cookie$).* + + + host + ^\.www\.rnengage\.com$ + name + .+ + + + target + + + host + custhelp.com + + + host + *.custhelp.com + + + host + rightnow.com + + + host + www.rightnow.com + + + host + www.rnengage.com + + + host + *.www.rnengage.com + + + + + Righthaven + + ruleset + + exclusion + + pattern + ^http://plutus\.righthaven\.com/($|index\.php) + + name + Righthaven + rule + + from + ^http://(\w+\.)?righthaven\.com/ + to + https://$1righthaven.com/ + + securecookie + + host + ^plutus\.righthaven\.com$ + name + .* + + target + + + host + righthaven.com + + + host + *.righthaven.com + + + + + RightsCon + + ruleset + + name + RightsCon + rule + + from + ^http://(www\.)?rightscon\.org/ + to + https://$1rightscon.org/ + + securecookie + + host + ^(?:www\.)?rightscon\.org$ + name + .+ + + target + + + host + rightscon.org + + + host + www.rightscon.org + + + + + Rigzone (partial) + + ruleset + + exclusion + + pattern + ^http://(?:comptracker|noblewin)\. + + name + Rigzone (partial) + rule + + from + ^http://(\w+\.)?rigzone\.com/ + to + https://$1rigzone.com/ + + securecookie + + host + ^(?:.+\.)?rigzone\.com$ + name + .+ + + target + + + host + rigzone.com + + + host + *.rigzone.com + + + + + Riksgalden.se + + ruleset + + name + Riksgalden.se + rule + + + from + ^http://riksgalden\.se/ + to + https://www.riksgalden.se/ + + + from + ^http://www\.riksgalden\.se/ + to + https://www.riksgalden.se/ + + + target + + + host + riksgalden.se + + + host + www.riksgalden.se + + + + + RingCentral + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ringcentral\.com/(?!css/|demo/[\w-]+\.jpg$|images/|ringme/) + + name + RingCentral + rule + + + from + ^http://(service\.|www\.)?ringcentral\.com/ + to + https://$1ringcentral.com/ + + + from + ^https?://marketo\.ringcentral\.com/(cs|image|r)s/ + to + https://na-c.marketo.com/$1s/ + + + securecookie + + host + ^service\.ringcentral\.com$ + name + .+ + + target + + + host + ringcentral.com + + + host + *.ringcentral.com + + + + + RingRevenue.com + + ruleset + + name + RingRevenue.com + rule + + from + ^http://((?:js10|json10|www)\.)?ringrevenue\.com/ + to + https://$1ringrevenue.com/ + + target + + + host + ringrevenue.com + + + host + *.ringrevenue.com + + + + + Ripoff Report + + ruleset + + name + Ripoff Report + rule + + + from + ^http://ma\.mesaazcorruptionreport\.com/ + to + https://ma.mesaazcorruptionreport.com/ + + + from + ^https?://ripoffreport\.com/ + to + https://www.ripoffreport.com/ + + + from + ^http://(verified|www)\.ripoffreport\.com/ + to + https://$1.ripoffreport.com/ + + + securecookie + + host + ^www\.ripoffreport\.com$ + name + .+ + + target + + + host + ma.mesaazcorruptionreport.com + + + host + ripoffreport.com + + + host + *.ripoffreport.com + + + + + Risc OS Open + + ruleset + + name + Risc OS Open + rule + + from + ^http://(www\.)?riscosopen\.org/ + to + https://$1riscosopen.org/ + + securecookie + + host + ^(?:www\.)?riscosopen\.org$ + name + .+ + + target + + + host + riscosopen.org + + + host + www.riscosopen.org + + + + + Riseup + + ruleset + + name + Riseup + rule + + from + ^http://([^/:@\.]+\.)?riseup\.net/ + to + https://$1riseup.net/ + + securecookie + + host + ^(?:.*\.)?riseup\.net$ + name + .+ + + target + + + host + riseup.net + + + host + *.riseup.net + + + + + Risk.io (partial) + + ruleset + + name + Risk.io (partial) + rule + + from + ^http://(db\.|www\.)?risk\.io/ + to + https://$1risk.io/ + + securecookie + + host + .*\.risk\.io$ + name + .+ + + target + + + host + risk.io + + + host + *.risk.io + + + + + River Island (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:(?:au|eu|us|www)\.)?riverisland\.(?:com|fr)/(?![aA]ssets/|favicon\.ico|myaccount) + + + pattern + ^http://is\.riverisland\.com/(?!$|\?) + + + name + River Island (partial) + rule + + + from + ^http://riverisland\.(com|fr)/ + to + https://www.riverisland.$1/ + + + from + ^http://(au|content1|content1-us|eu|is|my|us|www)\.riverisland\.com/ + to + https://$1.riverisland.com/ + + + from + ^http://(content1|www)\.riverisland\.fr/ + to + https://$1.riverisland.fr/ + + + securecookie + + host + ^\.riverisland\.com$ + name + ^(?:s_\w+|__utm)\w$ + + target + + + host + riverisland.com + + + host + *.riverisland.com + + + host + riverisland.fr + + + host + *.riverisland.fr + + + + + Riverbed (partial) + + ruleset + + name + Riverbed (partial) + rule + + + from + ^http://((?:autodiscover|community|developer|dr-cas|global|(?:apps(?:\.uat)?\.|uat\.)?splash|support|(?:dr-)?webmail)\.)?riverbed\.com/ + to + https://$1riverbed.com/ + + + from + ^http://ir\.riverbed\.com/(client|WebSideStory)/ + to + https://origin-phoenix.corporate-ir.net/$1/ + + + securecookie + + host + ^(?:(?:autodiscover|community|developer|global|(?:apps(?:\.uat)?\.|uat\.)?splash|support|(?:dr-)?webmail)\.)?riverbed\.com$ + name + .+ + + target + + + host + riverbed.com + + + host + *.riverbed.com + + + + + Riviera Tours + + ruleset + + name + Riviera Tours + rule + + from + ^http://(www\.)?rivieratours\.com/ + to + https://$1rivieratours.com/ + + securecookie + + host + ^(.*\.)?rivieratours\.com$ + name + .* + + target + + + host + rivieratours.com + + + host + www.rivieratours.com + + + + + Riyadonline.com + + ruleset + + name + Riyadonline.com + rule + + from + ^http://corp\.riyadonline\.com/ + to + https://corp.riyadonline.com/ + + securecookie + + host + ^corp\.riyadonline\.com$ + name + .+ + + target + + host + corp.riyadonline.com + + + + Rizon.net + + ruleset + + name + Rizon.net + rule + + from + ^http://(forum\.|www\.)?rizon\.net/ + to + https://$1rizon.net/ + + securecookie + + host + ^\.rizon\.net$ + name + .+ + + target + + + host + rizon.net + + + host + *.rizon.net + + + + + Rl0.ru (partial) + + ruleset + + name + Rl0.ru (partial) + rule + + from + ^http://img(0\d)?\.rl0\.ru/ + to + https://img$1.rl0.ru/ + + target + + host + *.rl0.ru + + + + RoadRunner + + ruleset + + name + RoadRunner + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?rr\.com/ + to + https://www.rr.com/ + + + from + ^http://hercules\.rr\.com/ + to + https://hercules.rr.com/ + + + target + + + host + rr.com + + + host + www.rr.com + + + host + hercules.rr.com + + + + + Roadtrippers + + ruleset + + name + Roadtrippers + rule + + from + ^http://(www\.)?roadtrippers\.com/ + to + https://$1roadtrippers.com/ + + securecookie + + host + ^(?:www\.)?roadtrippers\.com$ + name + .+ + + target + + + host + roadtrippers.com + + + host + www.roadtrippers.com + + + + + Roam Mobility + + ruleset + + name + Roam Mobility + rule + + from + ^http://(www\.)?roammobility\.com/ + to + https://$1roammobility.com/ + + securecookie + + host + ^\.www\.roammobility\.com$ + name + .+ + + target + + + host + roammobility.com + + + host + *.roammobility.com + + + + + RobTex + + ruleset + + name + RobTex + rule + + + from + ^https?://robtex\.com/ + to + https://www.robtex.com/ + + + from + ^http://([^/:@]+)?\.robtex\.com/ + to + https://$1.robtex.com/ + + + target + + + host + robtex.com + + + host + *.robtex.com + + + + + Robeco + + ruleset + + name + Robeco + rule + + from + ^http://(?:www\.)?robeco\.nl/ + to + https://www.robeco.nl/ + + target + + + host + www.robeco.nl + + + host + robeco.nl + + + + + Roberts Space Industries.com + + ruleset + + name + Roberts Space Industries.com + rule + + from + ^http://(forums\.|www\.)?robertsspaceindustries\.com/ + to + https://$1robertsspaceindustries.com/ + + securecookie + + host + ^\.robertsspaceindustries\.com$ + name + .+ + + target + + + host + robertsspaceindustries.com + + + host + *.robertsspaceindustries.com + + + + + Robin Rabard (partial) + + ruleset + + name + Robin Rabard (partial) + rule + + from + ^http://(?:www\.)?robinbarnard\.com/(cms_style\.css|(?:\w+_)?images/) + to + https://secure.justhost.com/~robinba2/$1 + + target + + + host + robinbarnard.com + + + host + www.robinbarnard.com + + + + + RoboForm.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?roboform\.com/(?!dist/) + + name + RoboForm.com (partial) + rule + + from + ^http://(?:secure\.|www\.)?roboform\.com/ + to + https://secure.roboform.com/ + + securecookie + + host + ^secure\.roboform\.com$ + name + .+ + + target + + host + secure.roboform.com + + + + RoboHash + + ruleset + + name + RoboHash + rule + + from + ^http://(\w+\.)?robohash\.org/ + to + https://$1robohash.org/ + + target + + + host + robohash.org + + + host + *.robohash.org + + + + + RobotShop (partial) + + ruleset + + name + RobotShop (partial) + rule + + from + ^https?://(secure\.|www\.)?robotshop\.com/ + to + https://secure.robotshop.com/ + + securecookie + + host + ^(.*\.)?robotshop\.com$ + name + .* + + target + + + host + robotshop.com + + + host + *.robotshop.com + + + + + Roccat.org (false MCB) + + ruleset + + name + Roccat.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?roccat\.org/ + to + https://$1roccat.org/ + + securecookie + + host + ^www\.roccat\.org$ + name + .+ + + target + + + host + roccat.org + + + host + www.roccat.org + + + + + Rock Creek Outfitters (partial) + + ruleset + + name + Rock Creek Outfitters (partial) + rule + + from + ^http://(www\.)?rockcreek\.com/(css/|favicon\.ico|img/|login\.rco|outdoor/images/) + to + https://$1rockcreek.com/$2 + + target + + + host + rockcreek.com + + + host + www.rockcreek.com + + + + + Rock Paper Photo.com + + ruleset + + name + Rock Paper Photo.com + rule + + from + ^http://(www\.)?rockpaperphoto\.com/ + to + https://$1rockpaperphoto.com/ + + securecookie + + host + ^\.www\.rockpaperphoto\.com$ + name + .+ + + target + + + host + rockpaperphoto.com + + + host + *.rockpaperphoto.com + + + + + Rocketnet.jp + + ruleset + + name + Rocketnet.jp + rule + + + from + ^http://(?:www\.)?rocketnet\.jp/ + to + https://www.rocketnet.jp/ + + + from + ^http://secure\.rocketnet\.jp/ + to + https://secure.rocketnet.jp/ + + + target + + + host + rocketnet.jp + + + host + *.rocketnet.jp + + + + + Rockhurst Hawks.com + + ruleset + + name + Rockhurst Hawks.com + rule + + from + ^http://(www\.)?rockhursthawks\.com/ + to + https://$1rockhursthawks.com/ + + securecookie + + host + ^(?:www\.)?rockhursthawks\.com$ + name + .+ + + target + + + host + rockhursthawks.com + + + host + www.rockhursthawks.com + + + + + Rockstar Games (partial) + + ruleset + + exclusion + + pattern + ^http://socialclub\.rockstargames\.com/(?!profile/support-signin-en\.html|registration/createaccount|signup) + + name + Rockstar Games (partial) + rule + + + from + ^https?://(?:www\.)?rockstargames\.com/(?!img/)(.+\.(?:css|gif|jpe?g|png)) + to + https://www.rockstargames.com/$1 + + + from + ^http://(media|cdn\.sc|socialclub|support|supportfiles)\.rockstargames\.com/ + to + https://$1.rockstargames.com/ + + + securecookie + + host + ^cdn\.sc\.rockstargames\.com$ + name + .+ + + target + + + host + rockstargames.com + + + host + *.rockstargames.com + + + + + Roddis + + ruleset + + name + Roddis + rule + + from + ^http://(www\.)?roddis\.net/ + to + https://$1roddis.net/ + + target + + + host + roddis.net + + + host + *.roddis.net + + + + + Roiservice.com + + ruleset + + name + Roiservice.com + rule + + from + ^http://track\.roiservice\.com/ + to + https://track.roiservice.com/ + + target + + host + track.roiservice.com + + + + RoketFiyat.com + + ruleset + + name + RoketFiyat.com + rule + + from + ^http://(www\.)?roketfiyat\.com/ + to + https://$1roketfiyat.com/ + + securecookie + + host + ^[.w]*\.rocketfiyat\.com$ + name + .+ + + target + + + host + roketfiyat.com + + + host + *.roketfiyat.com + + + + + Roku.com (partial) + + ruleset + + name + Roku.com (partial) + rule + + + from + ^http://((?:owner|www|wwwimg)\.)?roku\.com/ + to + https://$1roku.com/ + + + from + ^http://support\.roku\.com/(?=favicon\.ico|generated/|images/|system/) + to + https://roku.zendesk.com/ + + + target + + + host + roku.com + + + host + *.roku.com + + + + + RolePlayChat.org + + ruleset + + name + RolePlayChat.org + rule + + from + ^http://(talk\.|www\.)?roleplaychat\.org/ + to + https://$1roleplaychat.org/ + + securecookie + + host + ^(?:w*\.)?roleplaychat\.org$ + name + .+ + + target + + + host + roleplaychat.org + + + host + *.roleplaychat.org + + + + + Rolex.com (partial) + + ruleset + + name + Rolex.com (partial) + rule + + from + ^http://content\.rolex\.com/ + to + https://a248.e.akamai.net/f/343/2577/59/content.rolex.com/ + + target + + host + content.rolex.com + + + + Roll Call.com (partial) + + ruleset + + name + Roll Call.com (partial) + platform + mixedcontent + rule + + from + ^http://(?:(?:cdn|secure|www)\.)?rollcall\.com/ + to + https://secure.rollcall.com/ + + securecookie + + host + ^(?:\.?secure)?\.rollcall\.com$ + name + .+ + + target + + + host + rollcall.com + + + host + *.rollcall.com + + + + + Rollapp.com + + ruleset + + name + Rollapp.com + rule + + from + ^http://(www\.)?rollapp\.com/ + to + https://www.rollapp.com/ + + target + + + host + rollapp.com + + + host + www.rollapp.com + + + + + Rollbar + + ruleset + + name + Rollbar + rule + + from + ^http://(api\.|www\.)?rollbar\.com/ + to + https://$1rollbar.com/ + + securecookie + + host + ^(?:\.?www\.)?rollbar\.com$ + name + .+ + + target + + + host + rollbar.com + + + host + *.rollbar.com + + + + + Rolling Stone Subscriptions.com + + ruleset + + name + Rolling Stone Subscriptions.com + rule + + from + ^http://(?:www\.)?rollingstonesubscriptions\.com/ + to + https://www.rollingstonesubscriptions.com/ + + securecookie + + host + ^(?:www)?\.rollingstonesubscriptions\.com$ + name + .+ + + target + + + host + rollingstonesubscriptions.com + + + host + *.rollingstonesubscriptions.com + + + + + Rolling Stone.com (partial) + + ruleset + + exclusion + + pattern + ^http://assets-s3\.rollingstone\.com/+(?!assets/|favicon\.ico|images/) + + name + Rolling Stone.com (partial) + rule + + from + ^http://((?:assets|assets-s3|subscribe|www)\.)?rollingstone\.com/ + to + https://$1rollingstone.com/ + + securecookie + + + host + ^\.rollingstone\.com$ + name + ^__utm\w$ + + + host + ^subscribe\.rollingstone\.com$ + name + .+ + + + target + + + host + rollingstone.com + + + host + *.rollingstone.com + + + + + Roloil + + ruleset + + name + Roloil + rule + + from + ^http://www\.roloil\.com/ + to + https://www.roloil.com/ + + securecookie + + host + ^\.roloil\.com$ + name + .+ + + target + + host + *.roloil.com + + + + Rondavu + + ruleset + + name + Rondavu + rule + + + from + ^http://static\.rondavu\.com/ + to + https://a248.e.akamai.net/f/1582/4759/2h/static.rondavu.com/ + + + from + ^http://web\.rondavu\.com/ + to + https://web.rondavu.com/ + + + securecookie + + host + ^\.rondavu\.com$ + name + .+ + + target + + host + *.rondavu.com + + + + Rooof + + ruleset + + name + Rooof + rule + + + from + ^http://(adam\.|www\.)?rooof\.com/ + to + https://$1rooof.com/ + + + from + ^https?://cdn\.roof\.com/ + to + https://d2fiu2vy3tuc3o.cloudfront.net/ + + + securecookie + + host + ^.+\.roof\.com$ + name + .+ + + target + + + host + rooof.com + + + host + *.rooof.com + + + + + RootBSD.net + + ruleset + + name + RootBSD.net + rule + + from + ^http://((?:admin|manage|www)\.)?rootbsd\.net/ + to + https://$1rootbsd.net/ + + securecookie + + host + ^(?:admin|manage)\.rootbsd\.net$ + name + .+ + + target + + + host + rootbsd.net + + + host + *.rootbsd.net + + + + + RoseHosting.com + + ruleset + + name + RoseHosting.com + rule + + + from + ^http://(?:www\.)?rosehosting\.com/ + to + https://www.rosehosting.com/ + + + from + ^http://secure\.rosehosting\.com/ + to + https://secure.rosehosting.com/ + + + target + + + host + rosehosting.com + + + host + *.rosehosting.com + + + + + Rosetta Code.org (false MCB) + + ruleset + + name + Rosetta Code.org (false MCB) + platform + mixedcontent + rule + + from + ^http://rosettacode\.org/ + to + https://rosettacode.org/ + + securecookie + + host + ^\.?rosettacode\.org$ + name + .+ + + target + + + host + rosettacode.org + + + host + *.rosettacode.org + + + + + Rosetta Code.org (partial) + + ruleset + + exclusion + + pattern + ^http://rosettacode\.org/+(?!favicon\.ico|mw/(?:extensions/|load\.php|skins/|title\.png)) + + name + Rosetta Code.org (partial) + rule + + from + ^http://(www\.)?rosettacode\.org/ + to + https://$1rosettacode.org/ + + securecookie + + host + ^www\.rosettacode\.org$ + name + .+ + + target + + + host + rosettacode.org + + + host + www.rosettacode.org + + + + + Roskilde University (partial) + + ruleset + + name + Roskilde University (partial) + rule + + from + ^http://(?:www\.)?ruc\.dk/ + to + https://www.ruc.dk/ + + securecookie + + host + ^www\.ruc\.dk$ + name + .+ + + target + + + host + ruc.dk + + + host + www.ruc.dk + + + + + Ross Ulbricht.org + + ruleset + + name + Ross Ulbricht.org + rule + + from + ^http://(www\.)?rossulbricht\.org/ + to + https://$1rossulbricht.org/ + + securecookie + + host + ^\.rossulbricht\.org$ + name + .+ + + target + + + host + rossulbricht.org + + + host + *.rossulbricht.org + + + + + Roster Teeth (partial) + + ruleset + + name + Roster Teeth (partial) + rule + + from + ^https?://s3\.roosterteeth\.com/ + to + https://s3.amazonaws.com/s3.roosterteeth.com/ + + target + + host + s3.roosterteeth.com + + + + RotaryView.com + + ruleset + + name + RotaryView.com + rule + + from + ^http://(www\.)?rotaryview\.com/ + to + https://$1rotaryview.com/ + + securecookie + + host + ^rotaryview\.com$ + name + .+ + + target + + + host + rotaryview.com + + + host + www.rotaryview.com + + + + + Rotesource.com + + ruleset + + name + Rotesource.com + rule + + from + ^http://(www\.)?rotesource\.com/ + to + https://$1rotesource.com/ + + securecookie + + host + ^(?:w*\.)?rotesource\.com$ + name + .+ + + target + + + host + rotesource.com + + + host + *.rotesource.com + + + + + Rottenecards + + ruleset + + name + Rottenecards + rule + + from + ^http://(www\.)?rottenecards\.com/ + to + https://$1rottenecards.com/ + + securecookie + + host + ^www\.rottenecards\.com$ + name + .+ + + target + + + host + rottenecards.com + + + host + www.rottenecards.com + + + + + Rottentomatoes + + ruleset + + name + Rottentomatoes + platform + mixedcontent + rule + + + from + ^http://(www\.)?rottentomatoes\.com/ + to + https://$1rottentomatoes.com/ + + + from + ^http://images\.rottentomatoes(?:cdn)?\.com/ + to + https://images.rottentomatoescdn.com/ + + + from + ^http://static\.rottentomatoes\.com/ + to + https://d1rjibvava1hwe.cloudfront.net/ + + + securecookie + + host + ^(www\.)?rottentomatoes\.com$ + name + .* + + target + + + host + rottentomatoes.com + + + host + *.rottentomatoes.com + + + host + images.rottentomatoescdn.com + + + + + Rough Trade Gear + + ruleset + + name + Rough Trade Gear + rule + + from + ^http://(www\.)?roughtradegear\.com/ + to + https://$1roughtradegear.com/ + + securecookie + + host + ^(?:.*\.)?roughtradegear\.com$ + name + .+ + + target + + + host + roughtradegear.com + + + host + *.roughtradegear.com + + + + + Routing Packets Is Not a Crime.uk + + ruleset + + name + Routing Packets Is Not a Crime.uk + rule + + from + ^http://(www\.)?routingpacketsisnotacrime\.uk/ + to + https://$1routingpacketsisnotacrime.uk/ + + target + + + host + routingpacketsisnotacrime.uk + + + host + www.routingpacketsisnotacrime.uk + + + + + Rovi (partial) + + ruleset + + name + Rovi (partial) + rule + + from + ^http://cps-static\.rovicorp\.com/ + to + https://cps-static.rovicorp.com/ + + target + + host + cps-static.rovicorp.com + + + + Rovio.com + + ruleset + + name + Rovio.com + rule + + from + ^http://(?:www\.)?rovio\.com/ + to + https://www.rovio.com/ + + securecookie + + host + ^www\.rovio\.com$ + name + .+ + + target + + + host + rovio.com + + + host + www.rovio.com + + + + + Royal Academy of Engineering + + ruleset + + name + Royal Academy of Engineering + rule + + + from + ^https?://(?:www\.)?raeng\.org\.uk/ + to + https://www.raeng.org.uk/ + + + from + ^http://private\.raeng\.org\.uk/ + to + https://private.raeng.org.uk/ + + + securecookie + + host + ^.*\.raeng\.org\.uk$ + name + .* + + target + + + host + raeng.org.uk + + + host + *.raeng.org.uk + + + + + Royal Astronomical Society + + ruleset + + name + Royal Astronomical Society + rule + + from + ^http://(?:www\.)?ras\.org\.uk/ + to + https://www.ras.org.uk/ + + securecookie + + host + ^www\.ras\.org\.uk$ + name + .* + + target + + + host + ras.org.uk + + + host + www.ras.org.uk + + + + + Royal Australian Navy + + ruleset + + name + Royal Australian Navy + rule + + from + ^http://(?:www\.)?navy\.gov\.au/ + to + https://www.navy.gov.au/ + + target + + + host + navy.gov.au + + + host + *.navy.gov.au + + + + + Royal Mail (partial) + + ruleset + + name + Royal Mail (partial) + rule + + + from + ^https?://(?:www\.)?royalmail\.com/(sites/|user(?:$|\?|/)) + to + https://www.royalmail.com/$1 + + + from + ^http://(shop|www2)\.royalmail\.com/ + to + https://$1.royalmail.com/ + + + securecookie + + host + ^(?:\.?shop|www2)\.royalmail\.com$ + name + .+ + + target + + + host + royalmail.com + + + host + *.royalmail.com + + + host + *.shop.royalmail.com + + + + + Royal Mail Group (partial) + + ruleset + + name + Royal Mail Group (partial) + rule + + from + ^https?://(?:www\.)?royalmailgroup\.com/(sites/|user(?:$|\?|/)) + to + https://www.royalmailgroup.com/$1 + + target + + + host + royalmailgroup.com + + + host + *.royalmailgroup.com + + + + + Royal Navy (partial) + + ruleset + + name + Royal Navy (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?navynews\.co\.uk/ + to + https://$1navynews.co.uk/ + + + from + ^http://(www\.)?royalnavy\.mod\.uk/(contact-us|images/|library/|login|[pP]rofile/|ScriptCombiner\.axd) + to + https://$1royalnavy.mod.uk/$2 + + + securecookie + + host + ^(www\.)?navynews\.co\.uk$ + name + .* + + target + + + host + navynews.co.uk + + + host + www.navynews.co.uk + + + host + royalnavy.mod.uk + + + host + www.royalnavy.mod.uk + + + + + Royal Society of Chemistry (partial) + + ruleset + + name + Royal Society of Chemistry (partial) + platform + mixedcontent + rule + + + from + ^http://([\w-]+\.)?chemspider\.com/ + to + https://$1chemspider.com/ + + + from + ^http://(?:rsc|(?:www\.)?rscweb)\.org/ + to + https://www.rsc.org/ + + + from + ^http://(carousel|members)\.rsc\.org/ + to + https://$1.rsc.org/ + + + securecookie + + + host + ^(.*\.)?chemspider\.com$ + name + .* + + + host + ^(carousel|members)\.rsc\.org$ + name + .* + + + target + + + host + chemspider.com + + + host + *.chemspider.com + + + host + rsc.org + + + host + carousel.rsc.org + + + host + rscweb.org + + + host + www.rscweb.org + + + + + RoyalGovUK + + ruleset + + name + RoyalGovUK + platform + mixedcontent + rule + + from + ^http://(?:www\.)?royal\.gov\.uk/ + to + https://www.royal.gov.uk/ + + securecookie + + host + ^(.+\.)?royal\.gov\.uk$ + name + .* + + target + + + host + royal.gov.uk + + + host + www.royal.gov.uk + + + + + Rpgmakerweb.com + + ruleset + + name + Rpgmakerweb.com + rule + + from + ^http://(www\.)?rpgmakerweb\.com/ + to + https://www.rpgmakerweb.com/ + + target + + + host + rpgmakerweb.com + + + host + www.rpgmakerweb.com + + + + + Rtbf.be Belgian Television + + ruleset + + name + Rtbf.be Belgian Television + rule + + + from + ^http://((?:boutique|podcasting|www)\.)?rtbf\.be/ + to + https://$1rtbf.be/ + + + from + ^http://rss\.rtbf\.be/ + to + https://ssl-ds.static.rtbf.be/ + + + from + ^http://ds\.static\.rtbf\.be/ + to + https://ds.static.rtbf.be/ + + + from + ^http://(?:ds[1-5]\.|ssl-)ds\.static\.rtbf\.be/ + to + https://ssl-ds.static.rtbf.be/ + + + from + ^http://(?:ssl-)?sgc\.static\.rtbf\.be/ + to + https://ssl-sgc.static.rtbf.be/ + + + from + ^http://(?:ssl-)?www\.static\.rtbf\.be/ + to + https://ssl-www.static.rtbf.be/ + + + securecookie + + host + ^(?:boutique|www)\.rtbf\.br$ + name + .+ + + target + + + host + rtbf.be + + + host + *.rtbf.be + + + + + Rubicon Development + + ruleset + + name + Rubicon Development + rule + + from + ^http://(www\.)?rubicondev\.com/ + to + https://$1rubicondev.com/ + + securecookie + + host + ^\.rubicondev\.com$ + name + .+ + + target + + + host + rubicondev.com + + + host + *.rubicondev.com + + + + + Rubicon Project + + ruleset + + name + Rubicon Project + rule + + + from + ^http://(\w+)\.opt\.fimserve\.com/ + to + https://$1.opt.fimserve.com/ + + + from + ^http://(www\.)?rubiconproject\.net/ + to + https://$1rubiconproject.com/ + + + from + ^http://((?:ads|anvil|arsenal|beacon(?:-us-east)?|demand|login|optimized-by|pixel|revv|revv-static|staged-by|tap|vantage|www)\.)?rubiconproject\.com/ + to + https://$1rubiconproject.com/ + + + from + ^https?://tap2?-cdn\.rubiconproject\.com/ + to + https://tap.rubiconproject.com/ + + + securecookie + + host + ^(?:\.pixel|\.?tap)?\.rubiconproject\.com$ + name + .+ + + target + + + host + *.opt.fimserve.com + + + host + rubiconproject.com + + + host + *.rubiconproject.com + + + + + Ruby-Forum.com + + ruleset + + name + Ruby-Forum.com + rule + + from + ^http://(www\.)?ruby-forum\.com/ + to + https://$1ruby-forum.com/ + + securecookie + + host + ^www\.ruby-forum\.com$ + name + .+ + + target + + + host + ruby-forum.com + + + host + www.ruby-forum.com + + + + + RubyForge (partial) + + ruleset + + name + RubyForge (partial) + rule + + + from + ^http://static\.rubyforge\.vm\.bytemark\.co\.uk/ + to + https://static.rubyforge.org/ + + + from + ^http://(static\.|www\.)?rubyforge\.org/ + to + https://$1rubyforge.org/ + + + target + + + host + static.rubyforge.vm.bytemark.co.uk + + + host + rubyforge.org + + + host + *.rubyforge.org + + + + + RubyGems.org (partial) + + ruleset + + name + RubyGems.org (partial) + rule + + + from + ^http://(?:www\.)?gemcutter\.org/ + to + https://rubygems.org/ + + + from + ^http://(www\.)?rubygems\.org/ + to + https://$1rubygems.org/ + + + from + ^http://m\.rubygems\.org/(?=iui/) + to + https://gem.heroku.com/ + + + securecookie + + host + ^(?:www\.)?rubygems.org + name + .+ + + target + + + host + gemcutter.org + + + host + www.gemcutter.org + + + host + rubygems.org + + + host + *.rubygems.org + + + + + Rudloff.pro + + ruleset + + name + Rudloff.pro + rule + + from + ^http://(www\.)?rudloff\.pro/ + to + https://www.rudloff.pro/ + + target + + + host + rudloff.pro + + + host + www.rudloff.pro + + + + + Rue La La.com + + ruleset + + name + Rue La La.com + rule + + from + ^http://(?:www\.)?ruelala\.com/ + to + https://www.ruelala.com/ + + securecookie + + host + ^www\.ruelala\.com$ + name + .+ + + target + + + host + ruelala.com + + + host + www.ruelala.com + + + + + RugStudio (partial) + + ruleset + + name + RugStudio (partial) + rule + + + from + ^http://(?:www\.)?rugstudio\.com/((?:cart|custom\.css|login|order-lookup|send-password)\.aspx|customfooter2\.css|favicon\.ico|images/|imago/|themes/) + to + https://www.rugstudio.com/$1 + + + from + ^http://rugs\.rugstudio\.com/ + to + https://rugstudio.resultspage.com/ + + + target + + + host + rugstudio.com + + + host + *.rugstudio.com + + + + + Rugged Software + + ruleset + + name + Rugged Software + rule + + from + ^http://(www\.)?ruggedsoftware\.org/ + to + https://$1ruggedsoftware.org/ + + target + + + host + ruggedsoftware.org + + + host + www.ruggedsoftware.org + + + + + RugsHD.com + + ruleset + + name + RugsHD.com + rule + + from + ^http://(www\.)?rugshd\.com/ + to + https://$1rugshd.com/ + + securecookie + + host + ^\.?rugshd\.com$ + name + .+ + + target + + + host + rugshd.com + + + host + *.rugshd.com + + + + + Ruhr-Uni-Bochum.de (partial) + + ruleset + + exclusion + + pattern + ^http://www\.cits\.ruhr-uni-bochum\.de/+(?!imperia/md/(?:content|images)/) + + name + Ruhr-Uni-Bochum.de (partial) + rule + + + from + ^http://(?:www\.)?ruhr-uni-bochum\.de/ + to + https://www.ruhr-uni-bochum.de/ + + + from + ^http://(www\.cits|(?:helpdesk|www)\.rz)\.ruhr-uni-bochum\.de/ + to + https://$1.ruhr-uni-bochum.de/ + + + target + + + host + ruhr-uni-bochum.de + + + host + *.ruhr-uni-bochum.de + + + + + Run for Your Lives + + ruleset + + name + Run for Your Lives + rule + + from + ^http://(?:www\.)?runforyourlives\.com/ + to + https://www.runforyourlives.com/ + + securecookie + + host + ^www\.runforyourlives\.com$ + name + .* + + target + + + host + runforyourlives.com + + + host + www.runforyourlives.com + + + + + RunAbove + + ruleset + + name + RunAbove + rule + + from + ^http://((?:api|cloud|community|labs|status|www)\.)?runabove\.com/ + to + https://$1runabove.com/ + + securecookie + + host + ^(?:(?:community|labs|www)\.)?runabove\.com$ + name + .+ + + target + + + host + runabove.com + + + host + *.runabove.com + + + + + RunSafe + + ruleset + + name + RunSafe + rule + + from + ^http://(www\.)?irunsafe\.com/ + to + https://$1irunsafe.com/ + + securecookie + + host + ^www\.irunsafe\.com$ + name + .+ + + target + + + host + irunsafe.com + + + host + www.irunsafe.com + + + + + RushBucks.com + + ruleset + + name + RushBucks.com + rule + + from + ^http://(www\.)?rushbucks\.com/ + to + https://$1rushbucks.com/ + + securecookie + + host + ^(?:www\.|\.)?rushbucks\.com$ + name + .+ + + target + + + host + rushbucks.com + + + host + *.rushbucks.com + + + + + RushMyPassport.com + + ruleset + + name + RushMyPassport.com + rule + + from + ^http://(?:www\.)?rushmypassport\.com/ + to + https://www.rushmypassport.com/ + + securecookie + + host + ^www\.rushmypassport\.com$ + name + .+ + + target + + + host + rushmypassport.com + + + host + www.rushmypassport.com + + + + + Ruskey Biz (partial) + + ruleset + + name + Ruskey Biz (partial) + rule + + from + ^http://(www\.)?ruskeybiz\.ru/(cometchat|wp-admin|wp-content)/ + to + https://$1ruskeybiz.ru/$2/ + + target + + + host + ruskeybiz.ru + + + host + www.ruskeybiz.ru + + + + + Russia2all.com + + ruleset + + name + Russia2all.com + rule + + from + ^http://(www\.)?russia2all\.com/ + to + https://$1russia2all.com/ + + securecookie + + host + ^www\.russia2all\.com$ + name + .+ + + target + + + host + russia2all.com + + + host + *.russia2all.com + + + + + Russian American Company + + ruleset + + name + Russian American Company + rule + + from + ^http://(www\.)?russianamericancompany\.com/ + to + https://$1russianamericancompany.com/ + + securecookie + + host + ^\.russianamericancompany\.com$ + name + .+ + + target + + + host + russianamericancompany.com + + + host + *.russianamericancompany.com + + + + + Rutgers University (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.acs\.rutgers\.edu/directory/?(?:\?.*)?$ + + + pattern + ^http://www4\.libraries\.rutgers\.edu/(?!sites/) + + + pattern + ^http://rads\.rutgers\.edu/(?!css/|images/|Login\.aspx) + + + pattern + ^http://resnet\.rutgers\.edu/(?!css/|favicon\.ico|graphics/) + + + pattern + ^http://ruevents\.rutgers\.edu/(?!events/admin/) + + + pattern + ^http://rusecure\.rutgers\.edu/(?!misc/|modules/|sites/|themes/) + + + name + Rutgers University (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?((?:camden|cs|eden|nbcs|newark|physics|rci|td)\.)?rutgers\.edu/ + to + https://www.$1rutgers.edu/ + + + from + ^https?://(?:www\.)?(?:alumni|support)\.rutgers\.edu/(admin/|calendar\.css$|images/|s/\d+/(?:appstyles\.css|images/|js/)|ScriptResource\.axd|scripts/) + to + https://imodules.com/$1 + + + from + ^http://(?:www\.)?(andromeda|antarcticquest|cait|(?:athletics|storyquarterly)\.camden|comminfo|events|execdeanagriculture|food|ghcookcampus|gobble|libraries|lifesci|math|mssg|(?:law|webmail)\.newark|nj4h|njaes(?:intranet)?|resnet|njaes|rads|rhshope|ruinfo|ruoffcampus|ruoncampus|sebs|sebs(?:intranet|njaesnews)|studentabc|uhr|visitnjfarms)\.rutgers\.edu/ + to + https://$1.rutgers.edu/ + + + from + ^http://(www\.acs|grad\.admissions|admissionservices|apsmail|biology|(?:computing\.|mfa\.|service\.)?camden|(?:www\.)?(?:ems\.camden|camlaw|ipe|rulill)|cas|ce-catalog|(?:sirs\.|www\.)?ctaar|directoryservices|dn|webmail\.eden|email|mail\.envsci|ess|finservices|gradschoolalumni|halflife|hdrti|hpo|hpodrome|identityservices|idm|lawjournal|(?:facsub|mss3|(?:login|www-iris-rutgers-edu)\.proxy|www[24])\.libraries|my|nagios|neipmvwg|netid|(?:blackboard|ncs)\.newark|njog|broad\.nwk-campus|ocblog(?:dev1)?|octestblog|oirap|shib\.oirt|services\.oit|payrolluhr|personalinfo|plant(?:diagnosticlab|-pest-advisory)|ppa|rams|www1\.recreation|rhshope|rias-gateway|ruevents|rusecure|rutadmin|sakai|secure\.sas|sc-apps|scarletmail|search|secure|securitysystems|services|sims|sis|software|studentabcweb|surveys|voip\.td|wiki\.td|transcripts|turfblog|ua|uhrapps|webhost-x0[15])\.rutgers\.edu/ + to + https://$1.rutgers.edu/ + + + from + ^https?://(?:www\.)?athletics\.rutgers\.edu/(?:\?.*)?$ + to + https://www.rutgers.edu/campus-life/athletics-rutgers + + + from + ^https?://edseries\.camden\.rutgers\.edu/(?:.+/)?([^\?]*)(\?.*)? + to + https://computing.camden.rutgers.edu/help/training$1$2 + + + from + ^https?://catalogs\.rutgers\.edu/(?:\?.*)$ + to + https://www.rutgers.edu/academics/catalogs + + + from + ^http://(?:www\.)?ideabank\.rutgers\.edu/(?:\?.*)?$ + to + https://camlaw.rutgers.edu/webapps/ideabank/ + + + from + ^https?://libguides\.rutgers\.edu/(css\d*|data|include|js(?:\d+\w?)?)/ + to + https://libguides.com/$1/ + + + from + ^https?://mailmain\.rutgers\.edu/ + to + https://email.rutgers.edu/ + + + from + ^http://(parktran|rudots)\.rutgers\.edu/ + to + https://gobble.rutgers.edu/ + + + from + ^https?://www\.rce\.rutgers\.com/money/pdfs/ + to + https://njaes.rutgers.com/money/pdfs/ + + + from + ^https?://mygraddate\.sas\.rutgers\.edu/ + to + https://secure.sas.rutgers.edu/apps/mymajor/ + + + from + ^https?://mymajor\.sas\.rutgers\.edu/ + to + https://secure.sas.rutgers.edu/apps/mymajor/ + + + from + ^https?://webreg\.rutgers\.edu/ + to + https://sims.rutgers.edu/webreg/ + + + securecookie + + host + ^(?:grad\.admissions|admissionservices|biology|\.cait|comminfo|(?:(?:www\.)?ems|service|storyquarterly|www)?\.camden|ce-catalog|directoryservices|dn|webmail\.eden|events|execdeanagriculture|finservices|food|ghcookcampus|gobble|hdrti|hpo|identityservices|idm|(?:www\.)?ipe|\.?lawjournal|my|netid|(?:blackboard|law|ncs|webmail|www)\.newark|neipmvwg|nj4h|njaes(?:intranet)?|broad\.nwk-campus|ocblogdev1|shib\.oirt|personalinfo|\.?www1\.recreation|rhshope|rias-gateway|ruoncampus|sakai|secure\.sas|sc-apps|search|sebs(?:intranet)?|securitysystems|sims|sis|software|studentabcweb|surveys|wiki\.td|transcripts|uhrapps|visitnjfarms|www)\.rutgers\.edu$ + name + .+ + + target + + + host + rutgers.edu + + + host + *.rutgers.edu + + + + + Ruxcon Breakpoint.com + + ruleset + + name + Ruxcon Breakpoint.com + rule + + from + ^http://(www\.)?ruxconbreakpoint\.com/ + to + https://$1ruxconbreakpoint.com/ + + target + + + host + ruxconbreakpoint.com + + + host + www.ruxconbreakpoint.com + + + + + Ryanair.com + + ruleset + + name + Ryanair.com + rule + + + from + ^http://www\.ryanair\.com/ + to + https://www.ryanair.com/ + + + from + ^http://ryanair\.com/ + to + https://www.ryanair.com/ + + + securecookie + + host + ^(?:www)?\.ryanair\.com$ + name + .+ + + target + + + host + *.ryanair.com + + + host + ryanair.com + + + + + S and S Media.com (false MCB) + + ruleset + + name + S and S Media.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?sandsmedia\.com/(?!file/) + to + https://sandsmedia.com/ + + securecookie + + host + ^\.?sandsmedia\.com$ + name + .+ + + target + + + host + sandsmedia.com + + + host + *.sandsmedia.com + + + + + S and S Media.com (partial) + + ruleset + + name + S and S Media.com (partial) + rule + + + from + ^http://(?:www\.)?sandsmedia\.com/file/ + to + https://sandsmedia.com/file/ + + + from + ^http://shop\.sandsmedia\.com/ + to + https://shop.sandsmedia.com/ + + + securecookie + + host + ^\.shop\.sandsmedia\.com$ + name + .+ + + target + + + host + sandsmedia.com + + + host + www.sandsmedia.com + + + host + shop.sandsmedia.com + + + host + *.shop.sandsmedia.com + + + + + S-3.com + + ruleset + + name + S-3.com + rule + + from + ^http://(www\.)?s-3\.com/ + to + https://$1s-3.com/ + + target + + + host + s-3.com + + + host + www.s-3.com + + + + + S-pankki + + ruleset + + name + S-pankki + rule + + + from + ^http://(?:www\.)?s-pankki\.fi/ + to + https://www.s-pankki.fi/ + + + from + ^http://online\.s-pankki\.fi/ + to + https://online.s-pankki.fi/ + + + securecookie + + host + ^(?:www|online)\.s-pankki\.fi$ + name + .+ + + target + + + host + s-pankki.fi + + + host + www.s-pankki.fi + + + host + online.s-pankki.fi + + + + + S2 Games (partial) + + ruleset + + name + S2 Games (partial) + rule + + + from + ^http://(www\.)?heroesofnewerth\.com/ + to + https://$1heroesofnewerth.com/ + + + from + ^http://(?:www\.)?savage2\.com/ + to + https://savage2.com/ + + + securecookie + + + host + ^(.*\.)?heroesofnewerth\.com$ + name + .* + + + host + ^savage2\.com$ + name + .* + + + target + + + host + heroesofnewerth.com + + + host + www.heroesofnewerth.com + + + host + savage2.com + + + host + www.savage2.com + + + + + SABnzbd Forums + + ruleset + + name + SABnzbd Forums + rule + + from + ^http://forums\.sabnzbd\.org/ + to + https://forums.sabnzbd.org/ + + securecookie + + host + ^\.forums\.sabnzbd\.org$ + name + .* + + target + + + host + forums.sabnzbd.org + + + host + *.forums.sabnzbd.org + + + + + SACNAS (partial) + + ruleset + + name + SACNAS (partial) + rule + + from + ^http://(www\.)?sacnas\.org/($|civicrm/|content/|member-directory|sites/|user/) + to + https://$1sacnas.org/$2 + + target + + + host + sacnas.org + + + host + www.sacnas.org + + + + + SAIC.com (partial) + + ruleset + + name + SAIC.com (partial) + rule + + from + ^http://(?:www\.)?saic\.com/ + to + https://www.saic.com/ + + target + + + host + saic.com + + + host + www.saic.com + + + + + SAKURA Internet (partial) + + ruleset + + name + SAKURA Internet (partial) + rule + + from + ^http://secure\.sakura\.ad\.jp/ + to + https://secure.sakura.ad.jp/ + + target + + host + secure.sakura.ad.jp + + + + SALESmango.pl + + ruleset + + name + SALESmango.pl + rule + + from + ^http://(www\.)?salesmango\.pl/ + to + https://$1salesmango.pl/ + + securecookie + + host + ^(?:w*\.)?salesmango\.pl$ + name + .+ + + target + + + host + salesmanago.pl + + + host + *.salesmanago.pl + + + + + SAMBA + + ruleset + + name + SAMBA + rule + + + from + ^http://samba\.com/ + to + https://www.samba.com/ + + + from + ^http://(sambacapital|sambatdwl|sambaonline|www)\.samba\.com/ + to + https://$1.samba.com/ + + + target + + + host + samba.com + + + host + *.samba.com + + + + + SANS.edu + + ruleset + + name + SANS.edu + rule + + from + ^http://((?:isc|portal|www)\.)?sans\.edu/ + to + https://$1sans.edu/ + + securecookie + + host + ^\.isc\.sans\.edu$ + name + .* + + target + + + host + sans.edu + + + host + *.sans.edu + + + + + SANS.org (partial) + + ruleset + + exclusion + + pattern + ^http://pen-testing\.sans\.org/+blog(?:$|[?/]) + + name + SANS.org (partial) + rule + + from + ^http://((?:cyber-defense|digital-forensics|isc|it-audit|pen-testing|sic|software-security|www)\.)?sans\.org/ + to + https://$1sans.org/ + + securecookie + + host + ^\.sans\.org$ + name + .+ + + target + + + host + sans.org + + + host + *.sans.org + + + + + SAP (partial) + + ruleset + + exclusion + + + pattern + ^https://www\.sdn\.sap\.com/irj/scn/go(?:$|\?|/) + + + pattern + ^http://search\.sap\.com/(?:$|\?.) + + + name + SAP (partial) + rule + + + from + ^http://cdn\.blog-sap\.com/ + to + https://blog.sap.com/ + + + from + ^http://(?:www\.)?sap\.com/(favicon\.ico|global/(?:js|ui)/) + to + https://www.sap.com/$1 + + + from + ^http://(accounts|blogs|help|internalstore|mail|open|scn|www\.sdn|search|store|www54)\.sap\.com/ + to + https://$1.sap.com/ + + + from + ^http://(www\.sc|sd)n\.sap\.com/.* + to + https://scn.sap.com/welcome?original_fqdn=$1n.sap.com + + + securecookie + + host + ^(?:accounts|help|internalstore|mail|open|scn|store|www54)\.sap\.com$ + name + .+ + + target + + + host + cdn.blog-sap.com + + + host + sap.com + + + host + *.sap.com + + + + + SAS Institute + + ruleset + + name + SAS Institute + rule + + from + ^http://(login\.|www\.)?sas\.com/ + to + https://$1sas.com/ + + securecookie + + host + ^(?:.*\.)?sas\.com$ + name + .+ + + target + + + host + sas.com + + + host + *.sas.com + + + + + SATA-IO.org + + ruleset + + name + SATA-IO.org + rule + + from + ^http://(?:www\.)?sata-io\.org/ + to + https://www.sata-io.org/ + + target + + + host + sata-io.org + + + host + www.sata-io.org + + + + + SB Nation (partial) + + ruleset + + name + SB Nation (partial) + rule + + + from + ^http://assets\.sbnation\.com/ + to + https://s3.amazonaws.com/assets.sbnation.com/ + + + from + ^http://cdn\d\.sbnation\.com/ + to + https://ddrgqsxlcy7wq.cloudfront.net/ + + + from + ^http://fonts\.sbnation\.com/ + to + https://d1jcofl6pfjesh.cloudfront.net/ + + + from + ^http://ox-d\.sbnation\.com/ + to + https://sbnation-d3.openxenterprise.com/ + + + from + ^http://share\.sbndev\.net/ + to + https://s3.amazonaws.com/share.sbndev.net/ + + + from + ^http://jobs\.voxmedia\.com/(css/|favicon\.ico|img/) + to + https://sbnation.theresumator.com/$1 + + + target + + + host + *.sbnation.com + + + host + share.sbndev.net + + + host + jobs.voxmedia.com + + + + + SBV Improver.com + + ruleset + + name + SBV Improver.com + rule + + from + ^http://(www\.)?sbvimprover\.com/ + to + https://$1sbvimprover.com/ + + target + + + host + sbvimprover.com + + + host + www.sbvimprover.com + + + + + SC.edu (partial) + + ruleset + + name + SC.edu (partial) + rule + + from + ^http://((?:artsandsciences|giving|www)\.)?sc\.edu/ + to + https://$1sc.edu/ + + target + + + host + sc.edu + + + host + *.sc.edu + + + + + SCSK.jp + + ruleset + + name + SCSK.jp + rule + + from + ^http://(?:www\.)?scsk\.jp/ + to + https://www.scsk.jp/ + + target + + + host + scsk.jp + + + host + www.scsk.jp + + + + + SDSC.edu + + ruleset + + name + SDSC.edu + rule + + from + ^http://(lists|www)\.sdsc\.edu/ + to + https://$1.sdsc.edu/ + + target + + host + *.sdsc.edu + + + + SDSU.edu (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:arweb|newscenter)\.sdsu\.edu/(?!.+\.(?:css|gif|jpg|ico|pdf|png)|giving(?:$|[?/])) + + + pattern + ^http://(?:chhs|ens|slhs)\.sdsu\.edu/+(?!wp-content/|wp-includes/) + + + pattern + ^http://socialwork\.sdsu\.edu/+(?!(?:[\w-]+/+)?wp-(?:content|includes)/) + + + pattern + ^http://www-rohan\.sdsu\.edu/~(?!cbabroad/+(?:\w+/)?images/) + + + pattern + ^http://nursing\.sdsu\.edu/+(?!wp-content/|wp-includes/) + + + pattern + ^http://phonebook\.sdsu\.edu/+(?!ealert(?:$|[?/])) + + + name + SDSU.edu (partial) + rule + + + from + ^http://campaign\.sdsu\.edu/+(?=$|\?) + to + https://securelb.imodules.com/s/997/campaign13/start.aspx + + + from + ^http://campaign\.sdsu\.edu/ + to + https://securelb.imodules.com/ + + + from + ^http://ctl\.sdsu\.edu/+(?:$|\?.*) + to + https://go.sdsu.edu/dus/ctl/ + + + from + ^http://coe\.sdsu\.edu/+(?=$|\?) + to + https://go.sdsu.edu/education/Default.aspx + + + from + ^http://coe\.sdsu\.edu/ + to + https://go.sdsu.edu/education/ + + + from + ^http://hobbit\.sdsu\.edu/.* + to + https://library.sdsu.edu/guides/ + + + from + ^http://www\.isc\.sdsu\.edu/+ + to + https://studentaffairs.sdsu.edu/ISC/ + + + from + ^http://piprofile\.sdsu\.edu:4443/ + to + https://piprofile.sdsu.edu:4443/ + + + from + ^http://(?:www\.sa|starter)\.sdsu\.edu/ + to + https://studentaffairs.sdsu.edu/ + + + from + ^http://(ali|arweb|audhandbook|azteclinkweb|blackboard|www\.ces|chhs|circuit|cmsweb\.cms|ens|esit|(?:filex|help|selfservice)\.foundation|giveonline|go|hhs|infoed|jobsfoundation|libpac|m\.libpac|newscenter|phonebook|scua2|slhs|socialwork|studentaffairs|sunspot|www-rohan)\.sdsu\.edu/ + to + https://$1.sdsu.edu/ + + + securecookie + + host + ^(?:ali|azteclinkweb|blackboard|www\.ces|circuit|(?:filex|selfservice)\.foundation|giveonline|go|infoed|\.?libpac|m\.libpac|sunspot|www-rohan)\.sdsu\.edu$ + name + .+ + + target + + host + *.sdsu.edu + + + + SEAGM.com (false MCB) + + ruleset + + name + SEAGM.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?seagm\.com/ + to + https://$1seagm.com/ + + securecookie + + host + ^\.(?:www\.)?seagm\.com$ + name + .+ + + target + + + host + seagm.com + + + host + *.seagm.com + + + + + SEAGM.com (partial) + + ruleset + + name + SEAGM.com (partial) + rule + + from + ^http://static\.seagm\.com/ + to + https://static.seagm.com/ + + target + + host + static.seagm.com + + + + SEBLOD.com + + ruleset + + name + SEBLOD.com + rule + + from + ^http://(www\.)?seblod\.com/ + to + https://$1seblod.com/ + + securecookie + + host + ^www\.seblod\.com$ + name + .+ + + target + + + host + seblod.com + + + host + www.seblod.com + + + + + SEMABUZZ.COM + + ruleset + + name + SEMABUZZ.COM + rule + + from + ^http://(www\.)?semabuzz\.com/ + to + https://$1semabuzz.com/ + + target + + + host + semabuzz.com + + + host + www.semabuzz.com + + + + + SEO Training Toronto + + ruleset + + name + SEO Training Toronto + rule + + from + ^http://(www\.)?seotrainingtoronto\.com/ + to + https://$1seotrainingtoronto.com/ + + securecookie + + host + (?:www)?\.seotrainingtoronto.com$ + name + .+ + + target + + + host + seotrainingtoronto.com + + + host + *.seotrainingtoronto.com + + + + + SEO.com + + ruleset + + name + SEO.com + platform + mixedcontent + rule + + from + ^http://(www\.)?seo\.com/ + to + https://$1seo.com/ + + target + + + host + seo.com + + + host + www.seo.com + + + + + SEScoops + + ruleset + + name + SEScoops + rule + + from + ^http://(?:\d\.|(www\.))?sescoops\.com/ + to + https://$1sescoops.com/ + + securecookie + + host + ^\.sescoops\.com$ + name + .+ + + target + + + host + sescoops.com + + + host + *.sescoops.com + + + + + SEstatic.fi (partial) + + ruleset + + name + SEstatic.fi (partial) + rule + + from + ^http://n(t)?\.sestatic\.fi/ + to + https://n$1.sestatic.fi/ + + target + + host + *.sestatic.fi + + + + SF-Mail.de + + ruleset + + name + SF-Mail.de + platform + cacert + rule + + from + ^http://webmail\.sf-mail\.de/ + to + https://webmail.sf-mail.de/ + + securecookie + + host + ^webmail\.sf-mail\.de$ + name + .+ + + target + + host + webmail.sf-mail.de + + + + SFM Group (partial) + + ruleset + + name + SFM Group (partial) + rule + + + from + ^http://sfm-offshore\.com/ + to + https://www.sfm-offshore.com/ + + + from + ^http://(de|es|fr|it|www)\.sfm-offshore\.com/(favicon\.ico|(imag|modul|templat)es/|order/|(bestellengesellschaft|(ordina|solicitud)societaoffshore|commandersociete|ordercompany)\.html) + to + https://$1.sfm-offshore.com/$2 + + + target + + + host + sfm-offshore.com + + + host + *.sfm-offshore.com + + + + + SGI.com + + ruleset + + name + SGI.com + rule + + from + ^http://(?:www\.)?sgi\.com/ + to + https://www.sgi.com/ + + target + + + host + sgi.com + + + host + www.sgi.com + + + + + SGNO.org (partial) + + ruleset + + name + SGNO.org (partial) + rule + + from + ^http://(?:www\.)?sgno\.org/(?=about(?:/donate)?(?:$|[?/])|concrete/|favicon\.ico|files/|packages/|themes/) + to + https://www.sgno.org/ + + target + + + host + sgno.org + + + host + www.sgno.org + + + + + SGSStudentbostader.se + + ruleset + + name + SGSStudentbostader.se + platform + mixedcontent + rule + + from + ^http://(www\.)?sgsstudentbostader\.se/ + to + https://www.sgsstudentbostader.se/ + + target + + + host + sgsstudentbostader.se + + + host + www.sgsstudentbostader.se + + + + + SH.se + + ruleset + + name + SH.se + platform + mixedcontent + rule + + + from + ^http://bibl\.sh\.se/ + to + https://bibl.sh.se/ + + + from + ^http://webappl\.web\.sh\.se/ + to + https://webappl.web.sh.se/ + + + target + + + host + webappl.web.sh.se + + + host + bibl.sh.se + + + + + SHld.net (partial) + + ruleset + + name + SHld.net (partial) + rule + + + from + ^http://(c2|k2?|s|sso)\.shld\.net/ + to + https://$1.shld.net/ + + + from + ^http://n?c\.shld\.net/(?!$|\?) + to + https://c.shld.net/ + + + securecookie + + host + ^sso\.shld\.net$ + name + .+ + + target + + host + *.shld.net + + + + SI.se + + ruleset + + name + SI.se + rule + + + from + ^http://www\.si\.se/ + to + https://www.si.se/ + + + from + ^http://si\.se/ + to + https://www.si.se/ + + + target + + + host + si.se + + + host + www.si.se + + + + + SICS.se + + ruleset + + name + SICS.se + rule + + + from + ^http://sics\.se/ + to + https://www.sics.se/ + + + from + ^http://www\.sics\.se/ + to + https://www.sics.se/ + + + target + + + host + sics.se + + + host + www.sics.se + + + + + SIDN + + ruleset + + name + SIDN + rule + + from + ^http://(www\.)?sidn\.nl/ + to + https://$1sidn.nl/ + + securecookie + + host + ^(?:www\.)?sidn\.nl$ + name + .+ + + target + + + host + sidn.nl + + + host + www.sidn.nl + + + + + SIFF + + ruleset + + name + SIFF + rule + + from + ^http://(?:www\.)?siff\.net/ + to + https://www.siff.net/ + + securecookie + + host + ^(.*\.)?siff\.net$ + name + .* + + target + + + host + siff.net + + + host + www.siff.net + + + + + SIL International (partial) + + ruleset + + exclusion + + pattern + ^http://scripts\.sil\.org/cms/scripts/page\.php + + name + SIL International (partial) + rule + + from + ^http://scripts\.sil\.org/ + to + https://scripts.sil.org/ + + target + + host + scripts.sil.org + + + + SIP Solutions + + ruleset + + name + SIP Solutions + platform + cacert + rule + + from + ^http://(www\.)?sipsolutions\.net/ + to + https://$1sipsolutions.net/ + + securecookie + + host + ^www\.sipsolutions\.net$ + name + .* + + target + + + host + sipsolutions.net + + + host + www.sipsolutions.net + + + + + SJ.se (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?sj\.se/+(?:content/dam/|etc/designs/|sv/trafikinfo(?:$|[?/])) + + name + SJ.se (partial) + rule + + + from + ^http://sj\.se/ + to + https://www.sj.se/ + + + from + ^http://www\.sj\.se/ + to + https://www.sj.se/ + + + target + + + host + sj.se + + + host + www.sj.se + + + + + SK hynix.com + + ruleset + + name + SK hynix.com + rule + + from + ^http://(?:www\.)?skhynix\.com/ + to + https://www.skhynix.com/ + + securecookie + + host + ^www\.skhynix\.com$ + name + .+ + + target + + + host + skhynix.com + + + host + www.skhynix.com + + + + + SKNVibes (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?sknvibes\.com/(?!(?:[\w-]+/)?(dmenu/|effects/|[iI](?:mage|tem)s/|js/|scripts/|themes/|zimg/)|general/(?:login_continue|send_pass)\.cfm|skngallery2/) + + name + SKNVibes (partial) + rule + + from + ^http://(sms\.|www\.)?sknvibes\.com/ + to + https://$1sknvibes.com/ + + securecookie + + host + ^sms\.sknvibes\.com$ + name + .+ + + target + + + host + sknvibes.com + + + host + *.sknvibes.com + + + + + SKS Keyservers (partial) + + ruleset + + name + SKS Keyservers (partial) + rule + + from + ^http://(?:www\.)?sks-keyservers\.net/ + to + https://sks-keyservers.net/ + + target + + + host + sks-keyservers.net + + + host + www.sks-keyservers.net + + + + + SLF.se + + ruleset + + name + SLF.se + platform + mixedcontent + rule + + + from + ^http://slf\.se/ + to + https://www.slf.se/ + + + from + ^http://www\.slf\.se/ + to + https://www.slf.se/ + + + target + + + host + slf.se + + + host + www.slf.se + + + + + SLI Systems (partial) + + ruleset + + name + SLI Systems (partial) + rule + + + from + ^http://assets\.slisystems\.com/ + to + https://assets.slisystems.com/ + + + from + ^http://sitesearch\.sli-systems\.com/(cs|r)s/ + to + https://na-sj01.marketo.com/$1s/ + + + from + ^http://tools\.sli-systems\.com/ + to + https://tools.sli-systems.com/ + + + securecookie + + host + ^tools\.sli-systems\.com$ + name + .+ + + target + + + host + assets.slisystems.com + + + host + *.sli-systems.com + + + + + SLOOH (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?slooh\.com/(?:\?.*)?$ + + name + SLOOH (partial) + rule + + + from + ^http://(www\.)?slooh\.com/ + to + https://$1slooh.com/ + + + from + ^http://images\.slooh\.com/ + to + https://s3.images.slooh.com/ + + + from + ^http://images-account\.slooh\.com/ + to + https://c580754.ssl.cf2.rackcdn.com/ + + + from + ^http://images-background\.slooh\.com/ + to + https://c575991.ssl.cf2.rackcdn.com/ + + + from + ^http://images-buttons\.slooh\.com/ + to + https://c576040.ssl.cf2.rackcdn.com/ + + + from + ^http://images-footer\.slooh\.com/ + to + https://c576050.ssl.cf2.rackcdn.com/ + + + from + ^http://images-home\.slooh\.com/ + to + https://c575441.ssl.cf2.rackcdn.com/ + + + target + + + host + slooh.com + + + host + *.slooh.com + + + + + SLU.se + + ruleset + + name + SLU.se + rule + + + from + ^http://slu\.se/ + to + https://www.slu.se/ + + + from + ^http://www\.slu\.se/ + to + https://www.slu.se/ + + + from + ^http://internt\.slu\.se/ + to + https://internet.slu.se/ + + + target + + + host + www.slu.se + + + host + slu.se + + + host + internt.slu.se + + + + + SMF for Free (partial) + + ruleset + + name + SMF for Free (partial) + rule + + + from + ^http://cdn\.smfboards\.com/ + to + https://d2woastm347hjv.cloudfront.net/ + + + from + ^http://images\.smfboards\.com/ + to + https://s3.amazonaws.com/images.smfboards.com/ + + + target + + host + *.smfboards.com + + + + SMFTA.com (partial) + + ruleset + + name + SMFTA.com (partial) + rule + + from + ^http://(?:www\.)?smfta\.com/ + to + https://www.smfta.com/ + + target + + + host + smfta.com + + + host + www.smfta.com + + + + + SMJG + + ruleset + + name + SMJG + rule + + from + ^http://((?:forum|www)\.)?smjg\.org/ + to + https://$1smjg.org/ + + target + + + host + smjg.org + + + host + *.smjg.org + + + + + SNCB + + ruleset + + name + SNCB + rule + + + from + ^https?://b-europe\.com/ + to + https://www.b-europe.com/ + + + from + ^http://([^/:@]+)?\.b-europe\.com/ + to + https://$1.b-europe.com/ + + + securecookie + + host + ^(.*\.)?b-europe\.com$ + name + .+ + + target + + + host + b-europe.com + + + host + *.b-europe.com + + + + + SNL.com (partial) + + ruleset + + name + SNL.com (partial) + rule + + from + ^http://(www\.)?snl\.com/ + to + https://$1snl.com/ + + securecookie + + host + ^www\.snl\.com$ + name + .+ + + target + + + host + snl.com + + + host + www.snl.com + + + + + SNS Bank + + ruleset + + name + SNS Bank + rule + + from + ^http://(?:www\.)?snsbank\.nl/ + to + https://www.snsbank.nl/ + + target + + + host + snsbank.nl + + + host + www.snsbank.nl + + + + + SNstatic.fi + + ruleset + + name + SNstatic.fi + rule + + + from + ^http://files\.snstatic\.fi/ + to + https://files.snstatic.fi/ + + + from + ^http://hs1[0-3]\.snstatic\.fi/ + to + https://www.hs.fi/ + + + from + ^http://is12\.snstatic\.fi/ + to + https://www.iltasanomat.fi/ + + + target + + host + *.snstatic.fi + + + + SNtech (partial) + + ruleset + + name + SNtech (partial) + rule + + from + ^http://ssl\.sntech\.de/ + to + https://ssl.sntech.de/ + + target + + host + ssl.sntech.de + + + + SOHOPelessly Broken.com + + ruleset + + name + SOHOPelessly Broken.com + rule + + from + ^http://(www\.)?sohopelesslybroken\.com/ + to + https://$1sohopelesslybroken.com/ + + target + + + host + sohopelesslybroken.com + + + host + www.sohopelesslybroken.com + + + + + SPBAS.com (partial) + + ruleset + + name + SPBAS.com (partial) + rule + + from + ^http://(www\.)?spbas\.com/ + to + https://$1spbas.com/ + + target + + + host + spbas.com + + + host + www.spbas.com + + + + + SPCA Los Angeles + + ruleset + + name + SPCA Los Angeles + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?spcala\.com/ + to + https://spcala.com/ + + + from + ^https://www\.spcala\.com/ + to + https://spcala.com/ + + + target + + + host + spcala.com + + + host + www.spcala.com + + + + + SPDX.org (partial) + + ruleset + + exclusion + + pattern + ^http://spdx\.org/wiki/ + + name + SPDX.org (partial) + rule + + + from + ^http://(?:www\.)?spdx\.org/ + to + https://spdx.org/ + + + from + ^http://lists\.spdx\.org/ + to + https://lists.spdx.org/ + + + securecookie + + host + ^\.spdx\.org$ + name + ^SESS.* + + target + + + host + spdx.org + + + host + *.spdx.org + + + + + SQL Converter + + ruleset + + name + SQL Converter + rule + + from + ^http://(www\.)?sqlconverter\.com/ + to + https://$1sqlconverter.com/ + + securecookie + + host + ^(?:w*\.)?sqlconverter\.com$ + name + .+ + + target + + + host + sqlconverter.com + + + host + *.sqlconverter.com + + + + + SQLite + + ruleset + + name + SQLite + rule + + from + ^http://(system\.data\.|www\.)?sqlite\.org/ + to + https://$1sqlite.org/ + + securecookie + + host + ^(?:.+\.)?sqlite\.org$ + name + .+ + + target + + + host + sqlite.org + + + host + *.sqlite.org + + + + + SRB2.org + + ruleset + + name + SRB2.org + rule + + from + ^http://((?:files|mb|ms|wiki|www)\.)?srb2\.org/ + to + https://$1srb2.org/ + + securecookie + + host + ^(?:.+\.)?srb2\.org$ + name + .+ + + target + + + host + srb2.org + + + host + *.srb2.org + + + + + SRDS.com (partial) + + ruleset + + name + SRDS.com (partial) + rule + + from + ^http://(?:www\.)?srds\.com/ + to + https://www.srds.com/ + + securecookie + + host + ^www\.srds\.com$ + name + .+ + + target + + + host + srds.com + + + host + www.srds.com + + + + + SRM.de + + ruleset + + name + SRM.de + platform + mixedcontent + rule + + from + ^http://(?:www\.)?srm\.de/ + to + https://www.srm.de/ + + securecookie + + host + ^www\.srm\.de$ + name + .+ + + target + + + host + srm.de + + + host + www.srm.de + + + + + SSAFA (partial) + + ruleset + + name + SSAFA (partial) + rule + + from + ^http://(www\.)?ssafastore\.co\.uk/ + to + https://$1ssafastore.co.uk/ + + securecookie + + host + ^(www\.)?ssafastore\.co\.uk$ + name + .* + + target + + + host + ssafastore.co.uk + + + host + www.ssafastore.co.uk + + + + + SSB.no + + ruleset + + name + SSB.no + rule + + from + ^http://(www\.)?ssb\.no/ + to + https://$1ssb.no/ + + target + + + host + ssb.no + + + host + www.ssb.no + + + + + SSE Events Group.com + + ruleset + + name + SSE Events Group.com + rule + + from + ^http://(?:www\.)?sseeventsgroup\.com/ + to + https://www.sseeventsgroup.com/ + + securecookie + + host + ^(?:www)?\.sseeventsgroup.com$ + name + .+ + + target + + + host + sseeventsgroup.com + + + host + *.sseeventsgroup.com + + + + + SSLMate.com + + ruleset + + name + SSLMate.com + rule + + from + ^http://(www\.)?sslmate\.com/ + to + https://$1sslmate.com/ + + target + + + host + sslmate.com + + + host + www.sslmate.com + + + + + SSLlabs.com + + ruleset + + name + SSLlabs.com + rule + + from + ^http://(?:www\.)?ssllabs\.com/ + to + https://www.ssllabs.com/ + + securecookie + + host + ^www.ssllabs.com$ + name + .* + + target + + + host + ssllabs.com + + + host + www.ssllabs.com + + + + + SSLs.com + + ruleset + + name + SSLs.com + rule + + from + ^http://(www\.)?ssls\.com/ + to + https://$1ssls.com/ + + securecookie + + host + ^(?:www)?\.ssls\.com$ + name + .+ + + target + + + host + ssls.com + + + host + *.ssls.com + + + + + SSLshopper + + ruleset + + name + SSLshopper + rule + + from + ^http://(?:www\.)?sslshopper\.com/ + to + https://www.sslshopper.com/ + + securecookie + + host + ^www\.sslshopper\.com$ + name + .+ + + target + + + host + www.sslshopper.com + + + host + sslshopper.com + + + + + SSRN (partial) + + ruleset + + exclusion + + pattern + http://poseidon[0-9]*\.ssrn\.com/ + + name + SSRN (partial) + platform + mixedcontent + rule + + + from + ^http://ssrn\.com/ + to + https://www.ssrn.com/ + + + from + ^http://(\w+)\.ssrn\.com/ + to + https://$1.ssrn.com/ + + + securecookie + + host + ^(.*\.)?ssrn\.com$ + name + .* + + target + + + host + ssrn.com + + + host + *.ssrn.com + + + + + SSSup.it (partial) + + ruleset + + exclusion + + + pattern + ^http://allievi\.sssup\.it/+techblog(?!/wp-content/|wp-includes/) + + + pattern + ^http://forms\.sssup\.it/+(?!$|\?|didactive(?:$|[?/])) + + + pattern + ^http://www\.sssup\.it/+(?!(?:ammissione|ammissione-dottorati-perfezionamento|ateneo|concorso-ammissione|master|orientamento|ufficiostampa)(?:$|[?/])|customcss/|favicon\.ico|images/|images_new/|intranet_logon\.jsp|isipcss/|mappa\.jsp|search\.jsp|UploadDocs/|UploadImgs/) + + + name + SSSup.it (partial) + rule + + + from + ^http;//forms\.sssup\.it/+(?:$|\?.*) + to + https://forms.sssup.it/didactive + + + from + ^http://(allievi|didactive|forms|pay|www)\.sssup\.it/ + to + https://$1.sssup.it/ + + + securecookie + + host + ^(?:didactive|pay)\.sssup\.it$ + name + .+ + + target + + host + *.sssup.it + + + + ST.com (partial) + + ruleset + + name + ST.com (partial) + rule + + from + ^http://my\.st\.com/ + to + https://my.st.com/ + + securecookie + + host + ^my\.st\.com$ + name + .+ + + target + + host + my.st.com + + + + ST.org + + ruleset + + name + ST.org + rule + + + from + ^http://st\.org/ + to + https://www.st.org/ + + + from + ^http://www\.st\.org/ + to + https://www.st.org/ + + + target + + + host + st.org + + + host + www.st.org + + + + + STARTTLS.info + + ruleset + + name + STARTTLS.info + rule + + from + ^http://(www\.)?starttls\.info/ + to + https://$1starttls.info/ + + target + + + host + starttls.info + + + host + www.starttls.info + + + + + STEG + + ruleset + + name + STEG + rule + + from + ^http://(?:www\.)?steg-electronics\.ch/ + to + https://www.steg-electronics.ch/ + + target + + + host + steg-electronics.ch + + + host + www.steg-electronics.ch + + + + + STELLAService (partial) + + ruleset + + name + STELLAService (partial) + rule + + from + ^http://seal\.stellaservice\.com/ + to + https://seal.stellaservice.com/ + + target + + host + seal.stellaservice.com + + + + STLinux.com (partial) + + ruleset + + name + STLinux.com (partial) + rule + + from + ^http://bugzilla(-attachments)?\.stlinux\.com/ + to + https://bugzilla$1.stlinux.com/ + + securecookie + + host + ^bugzilla\.stlinux\.com$ + name + .+ + + target + + host + *.stlinux.com + + + + STRATO (partial) + + ruleset + + name + STRATO (partial) + rule + + from + ^https?://(?:www\.)?strato(\.com|\.de|\.es|\.nl|-hebergement\.fr|-hosting\.co\.uk)/ + to + https://www.strato$1/ + + securecookie + + host + ^www\.strato(?:\.de|\.es|\.nl|-hebergement\.fr|-hosting\.co\.uk)$ + name + .+ + + target + + + host + strato.* + + + host + www.strato.* + + + host + strato-hebergement.fr + + + host + www.strato-hebergement.fr + + + host + strato-hosting.co.uk + + + host + www.strato-hosting.co.uk + + + + + STRATO MailCenter + + ruleset + + name + STRATO MailCenter + rule + + from + ^https?://(?:www\.)?strato-mailcenter\.com/ + to + https://www.strato-mailcenter.com/ + + securecookie + + host + ^www\.strato-mailcenter\.com$ + name + .+ + + target + + + host + strato-mailcenter.com + + + host + www.strato-mailcenter.com + + + + + STRATO Pro + + ruleset + + name + STRATO Pro + rule + + from + ^https?://(?:www\.)?strato-pro\.com/ + to + https://www.strato-pro.com/ + + securecookie + + host + ^www\.strato-pro\.com$ + name + .+ + + target + + + host + strato-pro.com + + + host + www.strato-pro.com + + + + + STSDB.com (partial) + + ruleset + + name + STSDB.com (partial) + rule + + from + ^http://acdn\.stsdb\.com/ + to + https://d3di9a60out49j.cloudfront.net/ + + target + + host + acdn.stsdb.com + + + + SUPERVALU + + ruleset + + name + SUPERVALU + rule + + from + ^http://(?:www\.)?supervalu\.com/ + to + https://www.supervalu.com/ + + securecookie + + host + ^www\.supervalu\.com$ + name + .+ + + target + + + host + supervalu.com + + + host + www.supervalu.com + + + + + SUSE (partial) + + ruleset + + name + SUSE (partial) + rule + + + from + ^http://(?:www\.)?expandedsupport\.com/ + to + https://expandedsupport.com/ + + + from + ^http://(?:www\.)?suse\.com/ + to + https://www.suse.com/ + + + from + ^http://(www\.)?susestudio\.com/ + to + https://$1susestudio.com/ + + + securecookie + + + host + ^expandedsupport\.com$ + name + .+ + + + host + ^\.?suse(?:studio)?\.com$ + name + .+ + + + target + + + host + expandedsupport.com + + + host + www.expandedsupport.com + + + host + suse.com + + + host + *.suse.com + + + host + susestudio.com + + + host + *.susestudio.com + + + + + SV.no (partial) + + ruleset + + name + SV.no (partial) + rule + + from + ^http://(www\.)?sv\.no/(extension|var)/ + to + https://$1sv.no/$2/ + + target + + + host + sv.no + + + host + www.sv.no + + + + + SVGOpen + + ruleset + + name + SVGOpen + platform + mixedcontent + rule + + from + ^http://(?:www\.)?svgopen\.org/ + to + https://www.svgopen.org/ + + target + + + host + svgopen.org + + + host + www.svgopen.org + + + + + SVT.se (partial) + + ruleset + + name + SVT.se (partial) + rule + + from + ^http://ld\.svt\.se/ + to + https://ld.svt.se/ + + securecookie + + host + ^ld\.svt\.se$ + name + .* + + target + + host + ld.svt.se + + + + SWCA.org + + ruleset + + name + SWCA.org + rule + + from + ^http://(?:www\.)?swca\.org/ + to + https://www.swca.org/ + + securecookie + + host + ^\.swca\.org$ + name + .+ + + target + + + host + swca.org + + + host + *.swca.org + + + + + SWISSCEX.com + + ruleset + + name + SWISSCEX.com + rule + + from + ^http://(www\.)?swisscex\.com/ + to + https://$1swisscex.com/ + + securecookie + + host + ^www\.swisscex\.com$ + name + .+ + + target + + + host + swisscex.com + + + host + www.swisscex.com + + + + + SWREG + + ruleset + + name + SWREG + rule + + from + ^http://(\w+\.)?swreg\.com/ + to + https://$1swreg.com/ + + securecookie + + host + ^(?:.*\.)?swreg\.com$ + name + .+ + + target + + + host + swreg.com + + + host + *.swreg.com + + + + + SYW CDN.net + + ruleset + + name + SYW CDN.net + rule + + from + ^http://(apps|\d+)\.sywcdn\.net/ + to + https://$1.sywcdn.net/ + + target + + host + *.sywcdn.net + + + + SYX Services (partial) + + ruleset + + name + SYX Services (partial) + rule + + from + ^http://images\.highspeedbackbone\.net/ + to + https://images.highspeedbackbone.net/ + + target + + host + images.highspeedbackbone.net + + + + Sabayon.org (partial) + + ruleset + + name + Sabayon.org (partial) + rule + + from + ^http://((?:bugs|community|forum|lists|packages|pastebin|static|wiki|www)\.)?sabayon\.org/ + to + https://$1sabayon.org/ + + securecookie + + host + .*\.sabayon\.org$ + name + .+ + + target + + + host + sabayon.org + + + host + *.sabayon.org + + + + + Sabre Hospitality Solutions (partial) + + ruleset + + name + Sabre Hospitality Solutions (partial) + rule + + from + ^http://(www\.)?gatag\.it/ + to + https://$1gatag.it/ + + securecookie + + host + ^\.gatag\.it$ + name + .+ + + target + + + host + gatag.it + + + host + *.gatag.it + + + + + Sac.se + + ruleset + + name + Sac.se + platform + mixedcontent + rule + + from + ^http://(?:www\.)?sac\.se/ + to + https://www.sac.se/ + + target + + + host + sac.se + + + host + www.sac.se + + + + + Sacred Crystal Singing Bowls.net + + ruleset + + name + Sacred Crystal Singing Bowls.net + rule + + from + ^http://(?:www\.)?sacredcrystalsingingbowls\.net/ + to + https://www.sacredcrystalsingingbowls.net/ + + securecookie + + host + ^www\.sacredcrystalsingingbowls\.net$ + name + .+ + + target + + + host + sacredcrystalsingingbowls.net + + + host + www.sacredcrystalsingingbowls.net + + + + + Sade.com + + ruleset + + name + Sade.com + rule + + from + ^http://(www\.)?sade\.com/ + to + https://$1sade.com/ + + securecookie + + host + ^www\.sade\.com$ + name + .+ + + target + + + host + sade.com + + + host + www.sade.com + + + + + Safari Books Online + + ruleset + + exclusion + + pattern + ^http://my\.safaribooksonline\.com/static/.+\.css + + name + Safari Books Online + rule + + + from + ^http://my\.safaribooksonline\.com/(favicon\.ico|images/|static/) + to + https://a248.e.akamai.net/f/1543/1/b/my.safaribooksonline.com/$1 + + + from + ^http://my\.safaribooksonline\.com/login$ + to + https://ssl.safaribooksonline.com/securelogin + + + from + ^http://www\.safaribooksonline\.com/Corporate/Index/logIn\.php$ + to + https://ssl.safaribooksonline.com/securelogin + + + target + + + host + my.safaribooksonline.com + + + host + www.safaribooksonline.com + + + + + Safari Flow.com (partial) + + ruleset + + name + Safari Flow.com (partial) + rule + + from + ^http://(?:www\.)?safariflow\.com/ + to + https://www.safariflow.com/ + + securecookie + + host + ^www\.safariflow\.com$ + name + .+ + + target + + + host + safariflow.com + + + host + www.safariflow.com + + + + + Safe-In-Cloud.com + + ruleset + + name + Safe-In-Cloud.com + rule + + from + ^http://(www\.)?safe-in-cloud\.com/ + to + https://$1safe-in-cloud.com/ + + securecookie + + host + ^(?:www\.)?safe-in-cloud\.com$ + name + .+ + + target + + + host + safe-in-cloud.com + + + host + www.safe-in-cloud.com + + + + + Safe-mail.net + + ruleset + + name + Safe-mail.net + rule + + + from + ^http://safe-mail\.net/ + to + https://www.safe-mail.net/ + + + from + ^http://([a-zA-Z0-9\-]+)\.safe-mail\.net/ + to + https://$1.safe-mail.net/ + + + target + + + host + safe-mail.net + + + host + *.safe-mail.net + + + + + SafeAssign + + ruleset + + name + SafeAssign + rule + + from + ^https?://(?:www\.)?safeassign\.com/ + to + https://www.safeassign.com/ + + securecookie + + host + ^www\.safeassign\.com$ + name + .+ + + target + + + host + safeassign.com + + + host + www.safeassign.com + + + + + SafeNet (partial) + + ruleset + + name + SafeNet (partial) + rule + + from + ^http://(sentineldiscussion\.|www\.)?safenet-inc\.com/ + to + https://$1safenet-inc.com/ + + securecookie + + host + ^(?:.+\.)?safenet-inc\.com$ + name + .+ + + target + + + host + safenet-inc.com + + + host + *.safenet-inc.com + + + + + Safelinking + + ruleset + + name + Safelinking + rule + + from + ^http://(www\.)?safelinking\.net/ + to + https://$1safelinking.net/ + + target + + + host + safelinking.net + + + host + www.safelinking.net + + + + + Safello.com + + ruleset + + name + Safello.com + rule + + from + ^http://(blog\.|www\.)?safello\.com/ + to + https://$1safello.com/ + + securecookie + + host + ^blog\.safello\.com$ + name + .+ + + target + + + host + safello.com + + + host + *.safello.com + + + + + Safeshepherd.com + + ruleset + + name + Safeshepherd.com + rule + + + from + ^http://(www\.)?safeshepherd\.com/ + to + https://$1safeshepherd.com/ + + + from + ^https?://blog\.safeshepherd\.com/ + to + https://safeshepherd.wpengine.com/ + + + securecookie + + host + ^(?:www\.)?safeshepherd\.com$ + name + .+ + + target + + + host + safeshepherd.com + + + host + *.safeshepherd.com + + + + + Saga Group + + ruleset + + name + Saga Group + rule + + + from + ^http://(www\.)?saga\.co\.uk/ + to + https://www.saga.co.uk/ + + + from + ^http://travel\.saga\.co\.uk/(favicon\.ico|holidays/(medialibrary|[sS]tyles)/|images/firebird/) + to + https://travel.saga.co.uk/$1 + + + securecookie + + host + ^.*\.saga\.co\.uk$ + name + .* + + target + + + host + saga.co.uk + + + host + *.saga.co.uk + + + + + Sage (partial) + + ruleset + + name + Sage (partial) + rule + + + from + ^http://(?:www\.)?sagepay\.com/(misc/|(modul|sit)es/) + to + https://www.sagepay.com/$1 + + + from + ^http://(customerservices|live|support|test)\.sagepay\.com/ + to + https://$1.sagepay.com/ + + + securecookie + + host + ^(customerservices|live)\.sagepay\.com$ + name + .* + + target + + + host + sagepay.com + + + host + *.sagepay.com + + + + + Sagemath.org + + ruleset + + name + Sagemath.org + rule + + + from + ^http://cloud\.sagemath\.org/ + to + https://cloud.sagemath.org/ + + + from + ^http://sagecell\.sagemath\.org/ + to + https://sagecell.sagemath.org/ + + + target + + + host + cloud.sagemath.org + + + host + sagecell.sagemath.org + + + + + Sagernotebook.com + + ruleset + + name + Sagernotebook.com + rule + + from + ^http://(?:www\.)?sagernotebook\.com/ + to + https://www.sagernotebook.com/ + + target + + + host + sagernotebook.com + + + host + www.sagernotebook.com + + + + + Sah3.net + + ruleset + + name + Sah3.net + platform + firefox + rule + + from + ^http://sah3\.net/ + to + https://sah3.net/ + + securecookie + + host + ^sah3\.net$ + name + .+ + + target + + host + sah3.net + + + + SailfishOS.org + + ruleset + + name + SailfishOS.org + rule + + from + ^http://(?:(lists\.)|www\.)?sailfishos\.org/ + to + https://$1sailfishos.org/ + + target + + + host + sailfishos.org + + + host + *.sailfishos.org + + + + + Sailthru + + ruleset + + name + Sailthru + rule + + from + ^http://(\w+\.)?sailthru\.com/ + to + https://$1sailthru.com/ + + securecookie + + host + .+\.sailthru\.com$ + name + .+ + + target + + + host + sailthru.com + + + host + *.sailthru.com + + + + + Sailthru Horizon + + ruleset + + name + Sailthru Horizon + rule + + + from + ^http://ak(2)?\.sail-horizon\.com/ + to + https://ak$1.sail-horizon.com/ + + + from + ^http://cdn\.sail-horizon\.com/ + to + https://d1gp8joe0evc8s.cloudfront.net/ + + + target + + host + *.sail-horizon.com + + + + SaleCycle (partial) + + ruleset + + name + SaleCycle (partial) + rule + + from + ^http://((?:app|platform)(?:-staging)?|reports)\.salecycle\.com/ + to + https://$1.salecycle.com/ + + securecookie + + host + ^platform(?:-staging)?\.salecycle\.com$ + name + .+ + + target + + host + *.salecycle.com + + + + Salesforce Live Agent.com + + ruleset + + name + Salesforce Live Agent.com + rule + + from + ^http://(\w+\.)?la(\w{3})\.salesforceliveagent\.com/ + to + https://$1la$2.salesforceliveagent.com/ + + securecookie + + host + ^(?:\w+\.)?la\w{3}\.salesforceliveagent\.com$ + name + .+ + + target + + host + *.salesforceliveagent.com + + + + Salesforce.com (partial) + + ruleset + + name + Salesforce.com (partial) + rule + + + from + ^https?://(?:www\.)?(developer)?force\.com/ + to + https://www.$1force.com/ + + + from + ^http://(blogs|events|wiki|workbench)\.developerforce\.com/ + to + https://$1.developerforce.com/ + + + from + ^https?://boards\.developerforce\.com/ + to + https://sforce.i.lithium.com/ + + + from + ^http://(cms-stg|c\.\w\w\d+\.content|[\w-]+\.secure|www2|www-blitz0\d)\.force\.com/ + to + https://$1.force.com/ + + + from + ^https?://sites\.force\.com/appexchange/home$ + to + https://appexchange.salesforce.com/ + + + from + ^http://((?:ap|appexchange(?:jp)?|developer|emea|help|lct|login|\w{2,4}\d+(?:-api)?|[\w-]+\.my|omtr2\.partners|ssl|store|success|trust|www)\.)?salesforce\.com/ + to + https://$1salesforce.com/ + + + from + ^https?://partners\.salesforce\.com/(?:[^\?]*)(\?.*)$ + to + https://www.salesforce.com/partners/$1 + + + from + ^http://(secure2?|www2?)\.sfdcstatic\.com/ + to + https://$1.sfdcstatic.com/ + + + securecookie + + host + ^(?:.*\.)?(?:developer|sales)?force\.com$ + name + .+ + + target + + + host + developerforce.com + + + host + *.developerforce.com + + + host + force.com + + + host + *.force.com + + + host + salesforce.com + + + host + *.salesforce.com + + + host + *.sfdcstatic.com + + + + + Salk Institute + + ruleset + + name + Salk Institute + rule + + from + ^http://(www\.)?salk\.edu/ + to + https://$1salk.edu/ + + target + + + host + salk.edu + + + host + www.salk.edu + + + + + Salsa Labs + + ruleset + + name + Salsa Labs + rule + + + from + ^http://([\w-]+\.)?(salsalabs|wiredforchange)\.com/ + to + https://$1$2.com/ + + + from + ^http://(?:www\.)?salsacommons\.org/+(?=$|\?) + to + https://www.salsalabs.com/commons + + + from + ^http://(?:www\.)?salsacommons\.org/+ + to + https://www.salsalabs.com/ + + + securecookie + + host + ^(?:.*\.)?(?:salsalabs|wiredforchange)\.com$ + name + .+ + + target + + + host + salsacommons.org + + + host + www.salsacommons.org + + + host + salsalabs.com + + + host + *.salsalabs.com + + + host + wiredforchange.com + + + host + *.wiredforchange.com + + + + + Salvation Army USA.org (partial) + + ruleset + + name + Salvation Army USA.org (partial) + rule + + from + ^http://donate\.salvationarmyusa\.org/ + to + https://donate.salvationarmyusa.org/ + + securecookie + + host + ^donate\.salvationarmyusa\.org$ + name + .+ + + target + + host + donate.salvationarmyusa.org + + + + Sam Whited.com + + ruleset + + name + Sam Whited.com + rule + + from + ^http://(?:(blog\.)|www\.)?samwhited\.com/ + to + https://$1samwhited.com/ + + target + + + host + samwhited.com + + + host + *.samwhited.com + + + + + Sam's Software & Consulting (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?samssoftware.com.au/(?!contact-us\.html|images/|index\.php\?dispatch=(?:auth\.|checkout\.cart|profiles\.add)|skins/) + + name + Sam's Software & Consulting (partial) + rule + + from + ^http://(cdn\.|www\.)?samssoftware\.com\.au/ + to + https://$1samssoftware.com.au/ + + target + + + host + samssoftware.com.au + + + host + *.samssoftware.com.au + + + + + SamKnows (partial) + + ruleset + + name + SamKnows (partial) + rule + + + from + ^http://(?:www\.)?samknows\.com/ + to + https://www.samknows.com/ + + + from + ^http://(www\.)?samknows\.eu/ + to + https://$1samknows.eu/ + + + securecookie + + host + ^www\.samknows\.(?:com|eu)$ + name + .+ + + target + + + host + samknows.* + + + host + www.samknows.* + + + + + Samba.org + + ruleset + + exclusion + + pattern + ^http://jcifs\.samba\.org/ + + name + Samba.org + rule + + + from + ^http://samba\.org/ + to + https://samba.org/ + + + from + ^http://([^/:@\.]+)\.samba\.org/ + to + https://$1.samba.org/ + + + securecookie + + host + ^(.*\.)?samba\.org$ + name + .* + + target + + + host + samba.org + + + host + *.samba.org + + + + + Samsung (partial) + + ruleset + + exclusion + + + pattern + ^http://opensource\.samsung\.com/(?!community/(?:css/|images/|img2?/|img_model/|js2?/|org\.ditchnet\.taglib/|repository/|scmShowFileRevision(?:$|\?)|stylesheet/|usageStatistics\.do|wikiTreeMessage(?:$|\?))|css/|img/|js/) + + + pattern + ^http://shop\.us\.samsung\.com/store\?[aA]ction=[dD]isplay[dD][rR][cC]art[sS]ummary + + + pattern + ^http://www\.samsung\.com/us/(?:support/|function/) + + + name + Samsung (partial) + rule + + + from + ^http://(img\.|pub\.)?content\.samsumg\.cn/ + to + https://$1content.samsung.cn/ + + + from + ^http://(?:www\.)?samsung\.com/ + to + https://www.samsung.com/ + + + from + ^http://chaton\.samsung\.com/ + to + https://web.samsungchaton.com/ + + + from + ^http://nmetrics\.samsung\.com/ + to + https://samsung-com.112.2o7.net/ + + + from + ^http://((?:stg-)?account|allshareplay|apps|(?:img\.|pub\.)?content|findmymobile2?|images|opensource|secureus|smetrics|smm|support-cn|us|shop\.us)\.samsung\.com/ + to + https://$1.samsung.com/ + + + from + ^http://(www\.)?samsung\.(?:com\.)?cn/ + to + https://$1samsung.com.cn/ + + + securecookie + + + host + ^\.samsung\.cn$ + name + .+ + + + host + ^(?!shop\.us\.).*\.samsung\.com$ + name + .+ + + + target + + + host + samsung.cn + + + host + *.samsung.cn + + + host + samsung.com + + + host + *.samsung.com + + + host + samsung.com.cn + + + host + www.samsung.com.cn + + + + + Samsung Apps (partial) + + ruleset + + name + Samsung Apps (partial) + rule + + + from + ^https?://(?:www\.)?samsungapps\.com/ + to + https://www.samsungapps.com/ + + + from + ^http://(\w\w-odc|mkt-odc|tv)\.samsungapps\.com/ + to + https://$1.samsungapps.com/ + + + securecookie + + host + ^(?:.*\.)?samsungapps\.com$ + name + .+ + + target + + + host + samsungapps.com + + + host + *.samsungapps.com + + + + + Samsung Direct (partial) + + ruleset + + name + Samsung Direct (partial) + rule + + from + ^http://www\.samsungdirect\.com/(\w\w/(?:cart|create_account|login)(?:$|\?|/)|css/|favicon\.ico|images/|js/|media/) + to + https://www.samsungdirect.com/$1 + + target + + host + www.samsungdirect.com + + + + Samsung Knox.com (partial) + + ruleset + + name + Samsung Knox.com (partial) + rule + + + from + ^http://(?:www\.)?samsungknox\.com/ + to + https://www.samsungknox.com/ + + + from + ^http://cdn\.samsungknox\.com/ + to + https://cdn.samsungknox.com/ + + + target + + + host + samsungknox.com + + + host + *.samsungknox.com + + + + + Samsung LFD + + ruleset + + name + Samsung LFD + rule + + from + ^https?://(?:www\.)?samsunglfd\.com/ + to + https://www.samsunglfd.com/ + + securecookie + + host + ^www\.samsunglfd\.com$ + name + .+ + + target + + + host + samsunglfd.com + + + host + www.samsunglfd.com + + + + + Samsung Techwin + + ruleset + + name + Samsung Techwin + rule + + from + ^https?://(?:www\.)?samsungtechwin\.co\.kr/ + to + https://www.samsungtechwin.co.kr/ + + securecookie + + host + ^www\.samsungtechwin\.co\.kr$ + name + .+ + + target + + + host + samsungtechwin.co.kr + + + host + www.samsungtechwin.co.kr + + + + + Samsung mySingle + + ruleset + + name + Samsung mySingle + rule + + from + ^https?://(?:www\.)?s(amsung|css)\.net/ + to + https://www.s$1.net/ + + securecookie + + + host + ^\.samsung\.net$ + name + .+ + + + host + ^www\.scss\.net$ + name + .+ + + + target + + + host + samsung.net + + + host + *.samsung.net + + + host + scss.net + + + host + www.scss.net + + + + + Samsung.com (false MCB) + + ruleset + + name + Samsung.com (false MCB) + platform + mixedcontent + rule + + from + ^http://link\.samsung\.com/ + to + https://link.samsung.com/ + + target + + host + link.samsung.com + + + + San Diego Reader (partial) + + ruleset + + name + San Diego Reader (partial) + rule + + from + ^http://hummingbird\.sandiegoreader\.com/ + to + https://hummingbird.sandiegoreader.com/ + + target + + host + hummingbird.sandiegoreader.com + + + + Sanalika (partial) + + ruleset + + name + Sanalika (partial) + rule + + from + ^http://(cdn4|fb|fs)\.sanalika\.com/ + to + https://$1.sanalika.com/ + + securecookie + + host + ^fb\.sanalika\.com$ + name + .+ + + target + + host + *.sanalika.com + + + + Sanalmarket + + ruleset + + name + Sanalmarket + rule + + from + ^http://(www\.)?sanalmarket\.com\.tr/kweb/ + to + https://www.sanalmarket.com.tr/kweb/ + + securecookie + + host + ^www\.sanalmarket\.com\.tr$ + name + .* + + target + + + host + www.sanalmarket.com.tr + + + host + sanalmarket.com.tr + + + + + Sandbag (partial) + + ruleset + + name + Sandbag (partial) + rule + + + from + ^https?://s3\.sandbaguk\.com\.s3\.amazonaws\.com/ + to + https://s3-eu-west-1.amazonaws.com/s3.sandbaguk.com/ + + + from + ^http://secured\.sandbag\.uk\.com/ + to + https://secured.sandbag.uk.com/ + + + target + + + host + s3.sandbaguk.com.s3.amazonaws.com + + + host + secured.sandbag.uk.com + + + + + Sandeen.net + + ruleset + + name + Sandeen.net + rule + + from + ^http://((?:calendar|idisk|mail|www)\.)?sandeen\.net/ + to + https://$1sandeen.net/ + + target + + + host + sandeen.net + + + host + *.sandeen.net + + + + + Sandia National Laboratories (partial) + + ruleset + + name + Sandia National Laboratories (partial) + rule + + from + ^http://(ip|share|supplierportal)\.sandia\.gov/ + to + https://$1.sandia.gov/ + + securecookie + + host + ^\w.*\.sandia\.gov$ + name + .+ + + target + + host + *.sandia.gov + + + + Sandstorm.io + + ruleset + + name + Sandstorm.io + rule + + from + ^http://((?:blog|install|www)\.)?sandstorm\.io/ + to + https://$1sandstorm.io/ + + securecookie + + host + ^\.sandstorm\.io$ + name + .+ + + target + + + host + sandstorm.io + + + host + *.sandstorm.io + + + + + Sandvine (partial) + + ruleset + + name + Sandvine (partial) + rule + + from + ^http://adfs\.sandvine\.com/ + to + https://adfs.sandvine.com/ + + target + + host + adfs.sandvine.com + + + + Sanitarium.se + + ruleset + + name + Sanitarium.se + rule + + + from + ^http://sanitarium\.se/ + to + https://sanitarium.se/ + + + from + ^http://www\.sanitarium\.se/ + to + https://sanitarium.se/ + + + target + + + host + sanitarium.se + + + host + www.sanitarium.se + + + + + Sankaty Advisors + + ruleset + + name + Sankaty Advisors + rule + + + from + ^http://(www\.)?sankaty\.com/ + to + https://$1sankaty.com/ + + + from + ^http://(?:www\.)?sankatyadvisors\.com/ + to + https://www.sankaty.com/ + + + securecookie + + host + ^(?:.*\.)?sankaty\.com$ + name + .+ + + target + + + host + sankaty.com + + + host + *.sankaty.com + + + host + sankatyadvisors.com + + + host + www.sankatyadvisors.com + + + + + Sanoma.com + + ruleset + + name + Sanoma.com + rule + + from + ^http://(www\.)?sanoma\.com/ + to + https://$1sanoma.com/ + + securecookie + + host + ^(?:w*\.)?sanoma\.com$ + name + .+ + + target + + + host + sanoma.com + + + host + www.sanoma.com + + + + + Sanoma.fi + + ruleset + + name + Sanoma.fi + rule + + + from + ^http://(?:www\.)?sanoma\.fi/.* + to + https://www.sanoma.com/fi + + + from + ^http://(admp-tc|analytics|cts|sat)\.sanoma\.fi/ + to + https://$1.sanoma.fi/ + + + securecookie + + + host + ^\.sanoma\.fi$ + name + ^(?:evid|evid-synced|v1st)$ + + + host + ^sat\.sanoma\.fi$ + name + .+ + + + target + + + host + sanoma.fi + + + host + *.sanoma.fi + + + + + Santa Clara University (partial) + + ruleset + + name + Santa Clara University (partial) + rule + + + from + ^http://((?:angel|feportmgmt|gw|it|quarantine|www)\.)?scu\.edu/ + to + https://$1scu.edu/ + + + from + ^http://(www\.)?(alumnidirectory|sculib)\.scu\.edu/ + to + https://$1$2.scu.edu/ + + + from + ^https?://digitalcommons\.law\.scu\.edu/assets/ + to + https://dcsantaclara.bepress.com/assets/ + + + from + ^http://l(?:aw|ib)guides\.scu\.edu/(css\d*|data|js)/ + to + https://libguides.com/$1/ + + + securecookie + + host + ^\w.*\.scu\.edu$ + name + .+ + + target + + + host + scu.edu + + + host + *.scu.edu + + + + + Santander BillPayment.co.uk + + ruleset + + name + Santander BillPayment.co.uk + rule + + + from + ^http://santanderbillpayment\.co\.uk/+\??$ + to + https://www.santanderbillpayment.co.uk/ + + + from + ^http://santanderbillpayment\.co\.uk/[^?]* + to + https://www.santanderbillpayment.co.uk/ + + + from + ^http://www\.santanderbillpayment\.co\.uk/ + to + https://www.santanderbillpayment.co.uk/ + + + securecookie + + host + ^www\.santanderbillpayment\.co\.uk$ + name + .+ + + target + + + host + santanderbillpayment.co.uk + + + host + www.santanderbillpayment.co.uk + + + + + Santander.co.uk (partial) + + ruleset + + name + Santander.co.uk (partial) + rule + + + from + ^http://(?:www\.)?santander\.co\.uk/ + to + https://www.santander.co.uk/ + + + from + ^http://(apply(?:online)?|bbsavings|(?:desk\.)?business|onlinesalessavings|retail2?)\.santander\.co\.uk/ + to + https://$1.santander.co.uk/ + + + from + ^http://products\.santander\.co\.uk/.* + to + https://www.santander.co.uk/ + + + securecookie + + host + ^(?:apply|business|retail)\.santander\.co\.uk$ + name + .+ + + target + + + host + santander.co.uk + + + host + *.santander.co.uk + + + + + Sanworks + + ruleset + + name + Sanworks + rule + + from + ^http://(www\.)?sanwork\.com/ + to + https://$1sanwork.com/ + + securecookie + + host + ^\.sanwork\.com$ + name + .+ + + target + + + host + sanwork.com + + + host + *.sanwork.com + + + + + Sapato (partial) + + ruleset + + name + Sapato (partial) + rule + + + from + ^https?://(?:www\.)?sapato\.ru/(bitrix|css|images|personal|upload)/ + to + https://www.sapato.ru/$1/ + + + from + ^http://([\w\-]+)\.sapato\.ru/(bitrix|css|images|upload)/ + to + https://$1.sapato.ru/$2/ + + + from + ^https?://cssjs\.zapato\.ru/ + to + https://cssjs.sapato.ru/ + + + from + ^https?://st\.zapato\.ru/ + to + https://stssl.sapato.ru/ + + + target + + + host + sapato.ru + + + host + *.sapato.ru + + + host + *.zapato.ru + + + + + Sape (partial) + + ruleset + + name + Sape (partial) + rule + + + from + ^https?://(?:www\.)?sape.ru/ + to + https://www.sape.ru/ + + + from + ^http://(articles|help|passport|pr|static)\.sape\.ru/ + to + https://$1.sape.ru/ + + + securecookie + + host + ^.*\.sape\.ru$ + name + .+ + + target + + + host + sape.ru + + + host + *.sape.ru + + + host + *.articles.sape.ru + + + host + *.help.sape.ru + + + host + *.pr.sape.ru + + + + + Sapo.pt + + ruleset + + name + Sapo.pt + platform + firefox + rule + + + from + ^https?://(?:www\.)?sapo\.pt/(css/|imgs/|pub/|widgets/) + to + https://www.sapo.pt/$1 + + + from + ^http://(login|pub|pubimgs)\.sapo\.pt/ + to + https://$1.sapo.pt/ + + + from + ^https?://h\.s\.sl\.pt/css-pt-2011/ + to + https://www.sapo.pt/css/ + + + from + ^https?://h\.s\.sl\.pt/imgs/(?:v12/)? + to + https://www.sapo.pt/imgs/ + + + securecookie + + host + ^(?:login|pub)\.sapo\.pt$ + name + .+ + + target + + + host + sapo.pt + + + host + *.sapo.pt + + + host + h.s.sl.pt + + + + + Sapphire Forum.com + + ruleset + + name + Sapphire Forum.com + rule + + from + ^http://(www\.)?sapphireforum\.com/ + to + https://$1sapphireforum.com/ + + securecookie + + host + ^www\.sapphireforum\.com$ + name + .+ + + target + + + host + sapphireforum.com + + + host + www.sapphireforum.com + + + + + Sarava.org (partial) + + ruleset + + name + Sarava.org (partial) + rule + + from + ^http://((?:agendador|anotador|calendario|colador|e|escritorio|git|irc|keyringer|lembrador|manual|padrao|policy|protocolos|rectech|rhatto|rsp|seguranca|sit|sit2012|wiki|www)\.)?sarava\.org/ + to + https://$1sarava.org/ + + securecookie + + host + .*\.sarava\.org$ + name + .+ + + target + + + host + sarava.org + + + host + *.sarava.org + + + + + Sarenza (partial) + + ruleset + + name + Sarenza (partial) + rule + + + from + ^http://eulerian\.sarenza\.com/ + to + https://eulerian.sarenza.com/ + + + from + ^https?://azure\.sarenza\.net/ + to + https://az104596.vo.msecnd.net/ + + + from + ^https?://static1\.sarenza\.net/ + to + https://az104596.vo.msecnd.net/static/ + + + target + + + host + eulerian.sarenza.com + + + host + *.sarenza.net + + + + + SatoshiDice + + ruleset + + name + SatoshiDice + rule + + from + ^https?://(?:www\.)?satoshidice\.com/ + to + https://d2r33zdvjxn4mg.cloudfront.net/ + + target + + + host + satoshidice.com + + + host + www.satoshidice.com + + + + + Sauce Labs + + ruleset + + name + Sauce Labs + rule + + from + ^http://(www\.)?saucelabs\.com/ + to + https://$1saucelabs.com/ + + securecookie + + host + ^saucelabs\.com$ + name + .+ + + target + + + host + saucelabs.com + + + host + www.saucelabs.com + + + + + SauceNAO.com + + ruleset + + name + SauceNAO.com + rule + + from + ^http://(www\.)?saucenao\.com/ + to + https://$1saucenao.com/ + + securecookie + + host + ^saucenao\.com$ + name + .+ + + target + + + host + saucenao.com + + + host + www.saucenao.com + + + + + Saudi Government + + ruleset + + name + Saudi Government + rule + + + from + ^http://(?:www\.)?mol\.gov\.sa/ + to + https://mol.gov.sa/ + + + from + ^http://(?:www\.)?(gosi|moi|pv|saudi)\.gov\.sa/ + to + https://www.$1.gov.sa/ + + + target + + + host + pv.gov.sa + + + host + www.pv.gov.sa + + + host + saudi.gov.sa + + + host + www.saudi.gov.sa + + + host + moi.gov.sa + + + host + www.moi.gov.sa + + + host + mol.gov.sa + + + host + www.mol.gov.sa + + + host + gosi.gov.sa + + + host + www.gosi.gov.sa + + + + + Saudia Airlines (partial) + + ruleset + + name + Saudia Airlines (partial) + rule + + + from + ^http://(?:www\.)?bookonline\.saudiairlines\.com/ + to + https://www.bookonline.saudiairlines.com/ + + + from + ^https://bookonline\.saudiairlines\.com/ + to + https://www.bookonline.saudiairlines.com/ + + + target + + + host + bookonline.saudiairlines.com + + + host + www.bookonline.saudiairlines.com + + + + + Save the Children.org.uk (false MCB) + + ruleset + + name + Save the Children.org.uk (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?savethechildren\.org\.uk/ + to + https://www.savethechildren.org.uk/ + + + from + ^http://blogs\.savethechildren\.org\.uk/ + to + https://blogs.savethechildren.org.uk/ + + + target + + + host + savethechildren.org.uk + + + host + blogs.savethechildren.org.uk + + + host + www.savethechildren.org.uk + + + + + Save the Children.org.uk (partial) + + ruleset + + exclusion + + pattern + ^http://blogs\.savethechildren\.org\.uk/+(?!shared/|wp-content/|wp-includes/) + + name + Save the Children.org.uk (partial) + rule + + + from + ^http://(?:www\.)?savethechildren\.org\.uk/(?=donate/*(?:$|\?)|favicon\.ico|modules/|sites/) + to + https://www.savethechildren.org.uk/ + + + from + ^http://(blogs|secure|shop)\.savethechildren\.org\.uk/ + to + https://$1.savethechildren.org.uk/ + + + target + + + host + savethechildren.org.uk + + + host + *.savethechildren.org.uk + + + + + SavvyHawk.com + + ruleset + + name + SavvyHawk.com + rule + + from + ^http://(www\.)?savvyhawk\.com/ + to + https://$1savvyhawk.com/ + + securecookie + + host + ^(?:www\.)?savvyhawk\.com$ + name + .+ + + target + + + host + savvyhawk.com + + + host + www.savvyhawk.com + + + + + Say Media + + ruleset + + name + Say Media + rule + + from + ^http://(www\.)?saymedia\.com/ + to + https://$1saymedia.com/ + + target + + + host + saymedia.com + + + host + www.saymedia.com + + + + + Sberbank of Russia + + ruleset + + name + Sberbank of Russia + rule + + from + ^http://(www\.)?sbrf\.ru/ + to + https://www.sbrf.ru/ + + target + + + host + sbrf.ru + + + host + www.sbrf.ru + + + + + Sbucciami + + ruleset + + name + Sbucciami + rule + + from + ^http://(www\.)?sbucciami\.com/ + to + https://$1sbucciami.com/ + + securecookie + + host + ^(?:\.?w*)?\.sbucciami\.com$ + name + .+ + + target + + + host + sbucciami.com + + + host + *.sbucciami.com + + + + + ScMagazineUS.com + + ruleset + + name + ScMagazineUS.com + rule + + from + ^http://(www\.)?scmagazineus\.com/ + to + https://$1scmagazineus.com/ + + target + + + host + scmagazineus.com + + + host + www.scmagazineus.com + + + + + Scale Engine (partial) + + ruleset + + name + Scale Engine (partial) + rule + + from + ^http://(www\.)?scaleengine\.com/ + to + https://$1scaleengine.com/ + + securecookie + + host + ^(www\.)?scaleengine\.com$ + name + .* + + target + + + host + scaleengine.com + + + host + www.scaleengine.com + + + + + ScanAlert (partial) + + ruleset + + name + ScanAlert (partial) + rule + + from + ^http://images\.scanalert\.com/ + to + https://images.scanalert.com/ + + securecookie + + host + ^images\.scanalert\.com$ + name + .+ + + target + + host + images.scanalert.com + + + + Scanadu.com (partial) + + ruleset + + name + Scanadu.com (partial) + rule + + + from + ^http://c\d\.scanadu\.com/ + to + https://d1scsxe9uoisfa.cloudfront.net/ + + + from + ^http://indiegogo-artwork\.scanadu\.com/ + to + https://d229l50b5obo41.cloudfront.net/ + + + target + + host + *.scanadu.com + + + + Scandinavian Photo + + ruleset + + name + Scandinavian Photo + rule + + from + ^http://(www\.)?scandinavianphoto\.(fi|se)/ + to + https://$1scandinavianphoto.$2/ + + securecookie + + host + ^(?:www\.)?scandinavianphoto\.(?:fi|se)$ + name + .+ + + target + + + host + scandinavianphoto.fi + + + host + www.scandinavianphoto.fi + + + host + scandinavianphoto.se + + + host + www.scandinavianphoto.se + + + + + Scania (partial) + + ruleset + + name + Scania (partial) + rule + + from + ^http://(static|webapp\d+|www4)\.scania\.com/ + to + https://$1.scania.com/ + + securecookie + + host + ^.+\.scania\.com$ + name + .+ + + target + + host + *.scania.com + + + + Scanmarker + + ruleset + + name + Scanmarker + rule + + from + ^http://(www\.)?scanmarker\.com/ + to + https://$1scanmarker.com/ + + securecookie + + host + ^(?:w*\.)?scanmarker\.com$ + name + .+ + + target + + + host + scanmarker.com + + + host + *.scanmarker.com + + + + + Scanning Pens.co.uk + + ruleset + + name + Scanning Pens.co.uk + rule + + from + ^http://(www\.)?scanningpens\.co\.uk/ + to + https://$1scanningpens.co.uk/ + + securecookie + + host + ^\.www\.scanningpens.co.uk$ + name + .+ + + target + + + host + scanningpens.co.uk + + + host + *.scanningpens.co.uk + + + + + Scans.io + + ruleset + + name + Scans.io + rule + + from + ^http://(www\.)?scans\.io/ + to + https://$1scans.io/ + + target + + + host + scans.io + + + host + www.scans.io + + + + + Scene7 + + ruleset + + name + Scene7 + rule + + + from + ^https?://(?:www\.)?scene7\.com/[^\?]*(\?.*)? + to + https://www.adobe.com/products/scene7.html$1 + + + from + ^http://www1\.scene7\.com/ + to + https://www1.scene7.com/ + + + from + ^http://([\w-]+)\.scene7\.com/ + to + https://a248.e.akamai.net/f/248/9086/10h/$1.scene7.com/ + + + securecookie + + host + ^www1\.scene7\.com$ + name + .+ + + target + + + host + scene7.com + + + host + *.scene7.com + + + + + SceneTap + + ruleset + + name + SceneTap + rule + + from + ^http://(www\.)?scenetap\.com/ + to + https://$1scenetap.com/ + + securecookie + + host + ^(.*\.)?scenetap\.com$ + name + .* + + target + + + host + scenetap.com + + + host + *.scenetap.com + + + + + Scepsis + + ruleset + + name + Scepsis + rule + + from + ^http://(www\.)?scepsis\.ru/ + to + https://scepsis.ru/ + + target + + + host + www.scepsis.ru + + + host + scepsis.ru + + + + + Schaffner.org + + ruleset + + name + Schaffner.org + rule + + from + ^http://(www\.)?schaffner\.org/ + to + https://$1schaffner.org/ + + target + + + host + schaffner.org + + + host + www.schaffner.org + + + + + Sched.org (partial) + + ruleset + + name + Sched.org (partial) + rule + + + from + ^http://(cdn\.)?schd\.ws/ + to + https://$1schd.ws/ + + + from + ^http://www\.sch(?:d\.ws|ed\.co)/ + to + https://sched.org/ + + + from + ^http://((?:static|www|xenprojectdevelopersummit2014)\.)?sched\.org/ + to + https://$1sched.org/ + + + securecookie + + + host + ^\.schd\.ws$ + name + .+ + + + host + ^(?:xenprojectdevelopersummit2014)?\.sched\.org$ + name + .+ + + + target + + + host + schd.ws + + + host + *.schd.ws + + + host + www.sched.co + + + host + sched.org + + + host + *.sched.org + + + + + ScheduleOnce.com (partial) + + ruleset + + name + ScheduleOnce.com (partial) + rule + + from + ^http://(www\.)?scheduleonce\.com/ + to + https://$1scheduleonce.com/ + + securecookie + + host + ^www\.scheduleonce\.com$ + name + .+ + + target + + + host + scheduleonce.com + + + host + www.scheduleonce.com + + + + + Schibsted (partial) + + ruleset + + name + Schibsted (partial) + rule + + from + ^http://payment\.schibsted\.se/ + to + https://payment.schibsted.se/ + + securecookie + + host + ^\.?payment\.schibsted\.se$ + name + .+ + + target + + host + *.schibsted.se + + + + Schiphol + + ruleset + + name + Schiphol + rule + + from + ^https?://(?:www\.)?schiphol\.nl/ + to + https://www.schiphol.nl/ + + securecookie + + host + ^www\.schiphol\.nl$ + name + .+ + + target + + + host + schiphol.nl + + + host + www.schiphol.nl + + + + + Schlossberg Store (partial) + + ruleset + + name + Schlossberg Store (partial) + rule + + from + ^http://(?:www\.)?schlossbergstore\.com/(css/|(?:Member/Login|order-status)(?:$|\?|/)|Public/|registry|store_image/|Styles/) + to + https://www.schlossbergstore.com/$2 + + target + + + host + schlossbergstore.com + + + host + www.schlossbergstore.com + + + + + Schlumberger + + ruleset + + name + Schlumberger + rule + + from + ^http://(www\.)?slb\.com/ + to + https://$1slb.com/ + + securecookie + + host + ^(?:www\.)?slb\.com$ + name + .+ + + target + + + host + slb.com + + + host + www.slb.com + + + + + Schmidtcom.de (partial) + + ruleset + + name + Schmidtcom.de (partial) + platform + cacert + rule + + from + ^http://config\.schmidtcom\.de/ + to + https://config.schmidtcom.de/ + + securecookie + + host + ^config\.schmidtcom\.de$ + name + .+ + + target + + host + config.schmidtcom.de + + + + Schneider Kreuznach (partial) + + ruleset + + name + Schneider Kreuznach (partial) + rule + + from + ^http://(?:www\.)?schneideroptics\.com/ + to + https://www.schneideroptics.com/ + + securecookie + + host + ^www\.schneideroptics\.com$ + name + .* + + target + + + host + schneideroptics.com + + + host + www.schneideroptics.com + + + + + Schneider-Electric.com (partial) + + ruleset + + name + Schneider-Electric.com (partial) + rule + + from + ^http://(?:www\.)?schneider-electric\.com/(download/|navigation/|(?:product|solution)s(?:$|[?/])|resource/|site/(?:home|marketing_center)/(?:image|j)s/|site/tasks/sites/|stat/) + to + https://www.schneider-electric.com/$1 + + securecookie + + host + ^\.schneider-electric\.com$ + name + ^(?:__utm\w|xtvrn)$ + + target + + + host + schneider-electric.com + + + host + *.schneider-electric.com + + + + + Schneier on Security + + ruleset + + name + Schneier on Security + rule + + from + ^http://(?:www\.)?schneier\.com/ + to + https://www.schneier.com/ + + target + + + host + schneier.com + + + host + www.schneier.com + + + + + SchnellNo.de (partial) + + ruleset + + name + SchnellNo.de (partial) + rule + + from + ^http://(lg\.|www\.)?schnellno\.de/ + to + https://$1schnellno.de/ + + securecookie + + host + ^(?:www\.)?schnellno.de$ + name + .+ + + target + + + host + schnellno.de + + + host + *.schnellno.de + + + + + ScholarOne (partial) + + ruleset + + name + ScholarOne (partial) + rule + + from + ^http://mc\.manuscriptcentral\.com/ + to + https://mc.manuscriptcentral.com/ + + securecookie + + host + ^mc\.manuscriptcentral\.com$ + name + .* + + target + + host + mc.manuscriptcentral.com + + + + SchoolLoop (Partial) + + ruleset + + name + SchoolLoop (Partial) + rule + + from + ^http://(lhs-sfusd-ca|carlsbadhs|rchs-cjuhsd-ca|cunha|phs-pusd-ca|homestead)\.schoolloop\.com/ + to + https://$1.schoolloop.com/ + + target + + host + *.schoolloop.com + + + + SchooltoPrison.org + + ruleset + + name + SchooltoPrison.org + rule + + from + ^http://(?:www\.)?schooltoprison\.org/ + to + https://www.schooltoprison.org/ + + target + + + host + schooltoprison.org + + + host + www.schooltoprison.org + + + + + Schottenland (partial) + + ruleset + + name + Schottenland (partial) + rule + + from + ^http://na\.schottenland\.de/ + to + https://na.schottenland.de/ + + target + + host + na.schottenland.de + + + + Schrödinger + + ruleset + + name + Schrödinger + rule + + from + ^http://(www\.)?schrodinger\.com/ + to + https://$1schrodinger.com/ + + securecookie + + host + ^www\.schrodinger\.com$ + name + .* + + target + + + host + schrodinger.com + + + host + www.schrodinger.com + + + + + Schuilenburg.org (partial) + + ruleset + + name + Schuilenburg.org (partial) + rule + + from + ^http://(www\.)?schuilenburg\.org/ + to + https://$1schuilenburg.org/ + + securecookie + + host + ^(?:www\.)?schuilenburg\.org$ + name + .+ + + target + + + host + schuilenburg.org + + + host + www.schuilenburg.org + + + + + Schulte.org + + ruleset + + name + Schulte.org + rule + + from + ^http://((?:exchange|exchange2013|noc|webmail|windows2012r2|www)\.)?schulte\.org/ + to + https://$1schulte.org/ + + target + + + host + schulte.org + + + host + *.schulte.org + + + + + Schwab CDN.com + + ruleset + + name + Schwab CDN.com + rule + + from + ^http://(client|www)\.schwabcdn\.com/ + to + https://$1.schwabcdn.com/ + + securecookie + + host + ^client\.schwab\.com$ + name + .+ + + target + + host + *.schwabcdn.com + + + + Schwab.com + + ruleset + + name + Schwab.com + rule + + from + ^http://((?:client|content|eac|www)\.)?schwab\.com/ + to + https://$1schwab.com/ + + securecookie + + host + ^(?:client|\.eac)?\.schwab\.com$ + name + .+ + + target + + + host + schwab.com + + + host + *.schwab.com + + + + + Schweizer Kantonalbanken + + ruleset + + exclusion + + + pattern + (www\.)?100jahre\.akb\.ch + + + pattern + blog\.blkb\.ch/ + + + pattern + (www\.)?mobilebanking\.blkb\.ch + + + pattern + chart\.bancastato\.ch + + + pattern + test\.bcf\.ch + + + pattern + structures\.bvc\.ch + + + pattern + art\.bcvs\.ch + + + pattern + www\.mobile\.gkb.ch + + + pattern + mobile\.(glkb|nkb|owkb|sgkb|tkb)\.ch + + + pattern + (wap|ina)\.lukb\.ch + + + pattern + galerie\.sgkb\.ch + + + pattern + bcm\.szkb\.ch + + + pattern + mail\.yourmoney\.ch + + + name + Schweizer Kantonalbanken + rule + + + from + ^http://([^/:@]+)\.(akb|appkb|bancastato|bcf|bcge|bcj|bcn|bcv|bcvs|bekb|bkb|blkb|gkb|glkb|lukb|nkb|owkb|sgkb|shkb|szkb|tkb|urkb|yourmoney|zkb|zugerkb)\.ch/ + to + https://$1.$2.ch/ + + + from + ^http://(akb|appkb|bancastato|bcf|bcge|bcj|bcn|bcv|bcvs|bekb|bkb|blkb|gkb|glkb|lukb|nkb|owkb|sgkb|shkb|szkb|tkb|urkb|yourmoney|zkb|zugerkb)\.ch/ + to + https://www.$1.ch/ + + + from + ^https?://(www\.)?blkb\.ch/ + to + https://secure.blkb.ch/ + + + securecookie + + host + ^(.*\.)?(akb|appkb|bancastato|bcf|bcge|bcj|bcn|bcv|bcvs|bekb|bkb|blkb|gkb|glkb|lukb|nkb|owkb|sgkb|shkb|szkb|tkb|urkb|yourmoney|zkb|zugerkb).ch$ + name + .+ + + target + + + host + akb.ch + + + host + *.akb.ch + + + host + appkb.ch + + + host + *.appkb.ch + + + host + bancastato.ch + + + host + *.bancastato.ch + + + host + bcf.ch + + + host + *.bcf.ch + + + host + bcge.ch + + + host + *.bcge.ch + + + host + bcj.ch + + + host + *.bcj.ch + + + host + bcn.ch + + + host + *.bcn.ch + + + host + bcv.ch + + + host + *.bcv.ch + + + host + bcvs.ch + + + host + *.bcvs.ch + + + host + bekb.ch + + + host + *.bekb.ch + + + host + blkb.ch + + + host + *.blkb.ch + + + host + gkb.ch + + + host + *.gkb.ch + + + host + glkb.ch + + + host + *.glkb.ch + + + host + lukb.ch + + + host + *.lukb.ch + + + host + nkb.ch + + + host + *.nkb.ch + + + host + owkb.ch + + + host + *.owkb.ch + + + host + sgkb.ch + + + host + *.sgkb.ch + + + host + shkb.ch + + + host + *.shkb.ch + + + host + szkb.ch + + + host + *.szkb.ch + + + host + tkb.ch + + + host + *.tkb.ch + + + host + urkb.ch + + + host + *.urkb.ch + + + host + yourmoney.ch + + + host + *.yourmoney.ch + + + host + zkb.ch + + + host + *.zkb.ch + + + host + zugerkb.ch + + + host + *.zugerkb.ch + + + + + Schweizer Regierung + + ruleset + + name + Schweizer Regierung + rule + + + from + ^http://www\.blog\.edoeb\.admin\.ch/ + to + https://www.blog.edoeb.admin.ch/ + + + from + ^http://(?:www\.)?ag\.ch/ + to + https://www.ag.ch/ + + + from + ^http://([^/:@]*)\.ag\.ch/ + to + https://$1.ag.ch/ + + + from + ^http://(?:www\.)?ge\.ch/ + to + https://www.ge.ch/ + + + from + ^http://([^/:@]*)\.ge\.ch/ + to + https://$1.ge.ch/ + + + from + ^http://(?:www\.)?ar\.ch/ + to + https://www.ar.ch/ + + + from + ^http://(?:www\.)?gl\.ch/ + to + https://www.gl.ch/ + + + from + ^http://(?:www\.)?jura\.ch/ + to + https://www.jura.ch/ + + + from + ^http://([^/:@]*)\.jura\.ch/ + to + https://$1.jura.ch/ + + + from + ^http://(?:www\.)?zh\.ch/ + to + https://www.zh.ch/ + + + from + ^http://([^/:@]*)\.zh\.ch/ + to + https://$1.zh.ch/ + + + from + ^http://(?:www\.)?vs\.ch/ + to + https://www.vs.ch/ + + + from + ^http://([^/:@]*)\.vs\.ch/ + to + https://$1.vs.ch/ + + + from + ^http://(?:www\.)?baselland\.ch/ + to + https://www.baselland.ch/ + + + from + ^http://(?:www\.)?be\.ch/ + to + https://www.be.ch/ + + + from + ^http://(?:www\.)?sh\.ch/ + to + https://www.sh.ch/ + + + from + ^http://([^/:@]*)\.sh\.ch/ + to + https://$1.sh.ch/ + + + from + ^http://(?:www\.)?gr\.ch/ + to + https://www.gr.ch/ + + + from + ^http://([^/:@]*)\.gr\.ch/ + to + https://$1.gr.ch/ + + + from + ^http://(?:www\.)?fr\.ch/ + to + https://www.fr.ch/ + + + target + + + host + www.blog.edoeb.admin.ch + + + host + ag.ch + + + host + *.ag.ch + + + host + ge.ch + + + host + *.ge.ch + + + host + ar.ch + + + host + www.ar.ch + + + host + gl.ch + + + host + www.gl.ch + + + host + jura.ch + + + host + *.jura.ch + + + host + zh.ch + + + host + *.zh.ch + + + host + vs.ch + + + host + *.vs.ch + + + host + baselland.ch + + + host + www.baselland.ch + + + host + be.ch + + + host + www.be.ch + + + host + sh.ch + + + host + *.sh.ch + + + host + gr.ch + + + host + *.gr.ch + + + host + fr.ch + + + host + www.fr.ch + + + + + SciVerse (partial) + + ruleset + + exclusion + + + pattern + ^http://(www\.)?sciencedirect\.com/($|gadgetservices/) + + + pattern + ^http://www\.(applications|hub)\.sciverse\.com/($|action|gadgetservices) + + + name + SciVerse (partial) + platform + mixedcontent + rule + + + from + ^https?://sciencedirect\.com/ + to + https://www.sciencedirect.com/ + + + from + ^http://(binary-services|pdn|sdauth|www)\.sciencedirect\.com/ + to + https://$1.sciencedirect.com/ + + + from + ^http://acw\.sciverse\.com/ + to + https://acw.sciverse.com/ + + + from + ^http://(?:www\.)?(applications|hub)\.sciverse\.com/ + to + https://www.$1.sciverse.com/ + + + securecookie + + + host + ^.*\.sciencedirect\.com$ + name + .* + + + host + ^\.sciverse\.com$ + name + .* + + + target + + + host + sciencedirect.com + + + host + *.sciencedirect.com + + + host + *.sciverse.com + + + host + www.applications.sciverse.com + + + host + www.hub.sciverse.com + + + + + ScienceDaily.com (partial) + + ruleset + + name + ScienceDaily.com (partial) + rule + + from + ^http://images\.sciencedaily\.com/ + to + https://d18c4k1slw9ka5.cloudfront.net/ + + target + + host + images.sciencedaily.com + + + + Sciencemag.org (partial) + + ruleset + + name + Sciencemag.org (partial) + platform + mixedcontent + rule + + + from + ^http://community\.sciencecareers\.org/ + to + https://community.sciencecareers.org/ + + + from + ^https?://(?:www\.)?sciencemag\.org/ + to + https://www.sciencemag.org/ + + + from + ^http://(oascentral|scjobs)\.sciencemag\.org/ + to + https://$1.sciencemag.org/ + + + securecookie + + + host + ^\.sciencemag\.org$ + name + ^OAX$ + + + host + ^.+\.sciencemag\.org$ + name + .* + + + target + + + host + community.sciencecareers.org + + + host + sciencemag.org + + + host + *.sciencemag.org + + + + + Scientific American (partial) + + ruleset + + exclusion + + pattern + ^http://www\.scientificamerican\.com/article/ + + name + Scientific American (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?sciamdigital\.com/(ax/|(cover)?images/|index\.cfm\?fa=Account\.ViewLogin)/ + to + https://$1sciamdigital.com/$2/ + + + from + ^https?://www\.scientificamerican\.com/assets/css/screen/I\.([\w\-\.]+)\.css\.pagespeed\.cf\.\w+\.css$ + to + https://www.scientificamerican.com/assets/css/screen/$1.css + + + from + ^https?://www\.scientificamerican\.com/(.+)\.pagespeed\..*$ + to + https://www.scientificamerican.com/$1 + + + from + ^http://(?:www\.)?scientificamerican\.com/ + to + https://www.scientificamerican.com/ + + + from + ^http://subscribe\.scientificamerican\.com/ + to + https://subscribe.scientificamerican.com/ + + + securecookie + + host + subscribe\.scientificamerican.com$ + name + .* + + target + + + host + sciamdigital.com + + + host + www.sciamdigital.com + + + host + scientificamerican.com + + + host + *.scientificamerican.com + + + + + Scientificlinux.org + + ruleset + + name + Scientificlinux.org + rule + + from + ^http://(www\.)?scientificlinux\.org/ + to + https://$1scientificlinux.org/ + + target + + + host + scientificlinux.org + + + host + www.scientificlinux.org + + + + + Scintilla.utwente.nl + + ruleset + + name + Scintilla.utwente.nl + rule + + from + ^http://www\.scintilla\.utwente\.nl/ + to + https://www.scintilla.utwente.nl/ + + target + + + host + www.scintilla.utwente.nl + + + host + scintilla.utwente.nl + + + + + Scoop.co.nz (partial) + + ruleset + + name + Scoop.co.nz (partial) + rule + + from + ^http://newsagent\.scoop\.co\.nz/ + to + https://newsagent.scoop.co.nz/ + + target + + host + newsagent.scoop.co.nz + + + + Scoop.it (partial) + + ruleset + + name + Scoop.it (partial) + rule + + + from + ^http://(?:www\.)?scoop\.it/((?:apps|login)(?:$|\?)|favicon\.ico|resources/) + to + https://www.scoop.it/$1 + + + from + ^http://img\.scoop\.it/ + to + https://d1lojpvs1j5ni5.cloudfront.net/ + + + target + + + host + scoop.it + + + host + *.scoop.it + + + + + Scooter-Attack (partial) + + ruleset + + name + Scooter-Attack (partial) + rule + + from + ^http://(rollerhaendler\.|(?:web)?shop\.|www\.)?scooter-attack\.com/ + to + https://$1scooter-attack.com/ + + securecookie + + host + ^(?:\.rollerhaendler\.|shop)?\.scooter-attack\.com$ + name + .+ + + target + + + host + scooter-attack.com + + + host + *.scooter-attack.com + + + + + Scopus + + ruleset + + name + Scopus + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?scopus\.com/ + to + https://www.scopus.com/ + + + from + ^http://acw\.scopus\.com/ + to + https://acw.scopus.com/ + + + securecookie + + host + ^.*\.scopus\.com$ + name + .* + + target + + + host + scopus.com + + + host + *.scopus.com + + + + + Score Restore.com + + ruleset + + name + Score Restore.com + rule + + from + ^http://(www\.)?scorerestore\.com/ + to + https://$1scorerestore.com/ + + securecookie + + host + ^(?:w*\.)?scorerestore\.com$ + name + .+ + + target + + + host + scorerestore.com + + + host + *.scorerestore.com + + + + + ScorecardResearch.com + + ruleset + + name + ScorecardResearch.com + rule + + + from + ^http://(www\.)?scorecardresearch\.com/ + to + https://$1scorecardresearch.com/ + + + from + ^http://s?b\.scorecardresearch\.com/ + to + https://sb.scorecardresearch.com/ + + + securecookie + + host + ^(?:.*\.)?scorecardresearch\.com$ + name + .+ + + target + + + host + scorecardresearch.com + + + host + *.scorecardresearch.com + + + + + Scott Helme.co.uk + + ruleset + + name + Scott Helme.co.uk + rule + + from + ^http://(www\.)?scotthelme\.co\.uk/ + to + https://$1scotthelme.co.uk/ + + target + + + host + scotthelme.co.uk + + + host + www.scotthelme.co.uk + + + + + Scottbrand.com + + ruleset + + name + Scottbrand.com + rule + + from + ^http://(www\.)?scottbrand\.com/ + to + https://www.scottbrand.com/ + + target + + + host + scottbrand.com + + + host + www.scottbrand.com + + + + + Scottevest + + ruleset + + name + Scottevest + platform + mixedcontent + rule + + + from + ^http://scottevest\.com/ + to + https://scottevest.com/ + + + from + ^http://www\.scottevest\.com/ + to + https://www.scottevest.com/ + + + securecookie + + host + ^(.+\.)?scottevest\.com$ + name + .* + + target + + + host + scottevest.com + + + host + www.scottevest.com + + + + + Scottish Power (partial) + + ruleset + + name + Scottish Power (partial) + rule + + from + ^http://(?:www\.)?scottishpower\.co\.uk/ + to + https://www.scottishpower.co.uk/ + + securecookie + + host + ^www\.scottishpower\.co\.uk$ + name + .+ + + target + + + host + scottishpower.co.uk + + + host + www.scottishpower.co.uk + + + + + Scottish Power Pipe Band + + ruleset + + name + Scottish Power Pipe Band + rule + + from + ^http://www\.scottishpowerpipeband\.com/ + to + https://www.scottishpowerpipeband.com/ + + securecookie + + host + ^www\.scottishpowerpipeband\.com$ + name + .+ + + target + + host + www.scottishpowerpipeband.com + + + + Scottish Windfest + + ruleset + + name + Scottish Windfest + rule + + from + ^http://(www\.)?scottishwindfest\.com/ + to + https://$1scottishwindfest.com/ + + securecookie + + host + ^(?:.*\.)?scottishwindfest\.com$ + name + .+ + + target + + + host + scottishwindfest.com + + + host + *.scottishwindfest.com + + + + + Scrambl.is + + ruleset + + name + Scrambl.is + rule + + from + ^http://(www\.)?scrambl\.is/ + to + https://$1scrambl.is/ + + target + + + host + scrambl.is + + + host + www.scrambl.is + + + + + Scrap Orchard + + ruleset + + name + Scrap Orchard + rule + + from + ^http://(www\.)?scraporchard\.com/ + to + https://$1scraporchard.com/ + + securecookie + + host + ^\.?scraporchard\.com$ + name + .+ + + target + + + host + scraporchard.com + + + host + *.scraporchard.com + + + + + Screenshot machine (partial) + + ruleset + + name + Screenshot machine (partial) + rule + + from + ^http://(www\.)?screenshotmachine\.com/ + to + https://$1screenshotmachine.com/ + + securecookie + + host + ^(?:www\.)?screenshotmachine\.com$ + name + .+ + + target + + + host + screenshotmachine.com + + + host + www.screenshotmachine.com + + + + + Scribd.com (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.scribd\.com/doc/\d+/[\w-]+$ + + + pattern + ^http://www\.scribd\.com/(?!aggregated/|embeds/|favicon\.ico|images/|(?:about|account-settings|adchoices|archive|books?|browse|contact|copyright|developers|faq|fullscreen|giftcards|jobs|leadership|login|mobile|notifications|payments|privacy|profiles|publishers|read|[Ss]cribd|static|store_purchase|subscribe|terms|upload-document)(?:$|\?/)|options/|ssi/) + + + name + Scribd.com (partial) + rule + + + from + ^http://(www\.)?scribd\.com/ + to + https://$1scribd.com/ + + + from + ^http://fonts\d?\.scribd(?:assets)?\.com/ + to + https://fonts.scribd.com/ + + + from + ^http://html(?:img)?\d?\.scribd(?:assets)?\.com/ + to + https://s3.amazonaws.com/html.scribd.com/ + + + from + ^http://htmlcdn\.scribd\.com/ + to + https://htmlcdn.scribd.com/ + + + from + ^http://s\d?\.scribd(?:assets)?\.com/ + to + https://origin-s.scribd.com/ + + + from + ^http://sprited-images\.scribd\.com/ + to + https://s3.amazonaws.com/sprited-images.scribd.com/ + + + from + ^http://support\.scribd\.com/(?=favicon\.ico|generated/|images/|system/) + to + https://assets.zendesk.com/ + + + from + ^http://(imgv2-[12]|s[12])-f\.scribdassets\.com/ + to + https://$1-f.scribdassets.com/ + + + target + + + host + scribd.com + + + host + *.scribd.com + + + host + *.scribdassets.com + + + + + Scribit (partial) + + ruleset + + name + Scribit (partial) + rule + + + from + ^https?://(?:www\.)?scribit\.com/app$ + to + https://www.scribit.com/app/ + + + from + ^https?://(?:www\.)?scribit\.com/app/ + to + https://www.scribit.com/app/ + + + target + + + host + scribit.com + + + host + www.scribit.com + + + + + Scribol (partial) + + ruleset + + name + Scribol (partial) + rule + + + from + ^https?://images\.scribol\.com/ + to + https://dmgyobx0feqxw.cloudfront.net/ + + + from + ^https?://static\.scribol\.com/ + to + https://d25h0msi7seflc.cloudfront.net/ + + + target + + host + *.scribol.com + + + + Scripps Newspapers.com + + ruleset + + name + Scripps Newspapers.com + rule + + from + ^http://media\.scrippsnewspapers\.com/ + to + https://a248.e.akamai.net/f/702/4449/8/media.scrippsnewspapers.com/ + + target + + host + media.scrippsnewspapers.com + + + + Scripps Research Institute + + ruleset + + name + Scripps Research Institute + rule + + from + ^http://(admissions\.|education\.|vpn\.|www\.)?scripps\.edu/ + to + https://$1scripps.edu/ + + target + + + host + scripps.edu + + + host + www.scripps.edu + + + + + ScriptFodder + + ruleset + + name + ScriptFodder + rule + + from + ^http://(www\.|cdn\.)?scriptfodder\.net/ + to + https://$1scriptfodder.net/ + + target + + + host + scriptfodder.net + + + host + www.scriptfodder.net + + + host + cdn.scriptfodder.net + + + + + ScriptSource (partial) + + ruleset + + name + ScriptSource (partial) + rule + + from + ^http://(www\.)?scriptsource\.org/cms/(assets/|local/|scripts/(?:page\.php\?item_id=(?:login_page|registration_form)|render_graphic\.php)|sites/) + to + https://$1scriptsource.org/cms/$2 + + target + + + host + scriptsource.org + + + host + www.scriptsource.org + + + + + Scripting News (partial) + + ruleset + + name + Scripting News (partial) + rule + + from + ^https?://static\.scripting\.com/ + to + https://s3.amazonaws.com/static.scripting.com/ + + target + + host + static.scripting.com + + + + Scriptlogic + + ruleset + + name + Scriptlogic + rule + + from + ^http://(cdn\.|www\.)?scriptlogic\.com/ + to + https://$1scriptlogic.com/ + + securecookie + + + host + ^(.*\.)?scriptlogic\.com$ + name + .* + + + host + ^\.scriptlogiccorp\.d2\.sc\.omtrdc\.net$ + name + .* + + + target + + + host + scriptlogic.com + + + host + *.scriptlogic.com + + + host + *.scriptlogiccorp.d2.sc.omtrdc.net + + + + + Scubbly (partial) + + ruleset + + name + Scubbly (partial) + rule + + from + ^http://(www\.)?scubbly\.com/(bot-trap|css|images|js)/ + to + https://$1scubbly.com/$2/ + + target + + + host + scubbly.com + + + host + www.scubbly.com + + + + + Sculpteo.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:3dpcase\.|pro\.|www\.)?sculpteo\.com/(?!\w\w/(?:account|jsi18n|jsurl)/|favicon\.ico|media/|static/|terms_\w\w(?:$|[?/])) + + name + Sculpteo.com (partial) + rule + + + from + ^http://(?:www\.)?sculpteo\.com/ + to + https://www.sculpteo.com/ + + + from + ^http://(3dpcase|pro)\.sculpteo\.com/ + to + https://$1.sculpteo.com/ + + + target + + + host + sculpteo.com + + + host + *.sculpteo.com + + + + + Sdlcdn.com + + ruleset + + name + Sdlcdn.com + rule + + from + ^http://i([1-4])\.sdlcdn\.com/ + to + https://i$1.sdlcdn.com/ + + target + + host + *.sdlcdn.com + + + + Seacloud + + ruleset + + name + Seacloud + rule + + from + ^http://(www\.)?seacloud\.cc/ + to + https://$1seacloud.cc/ + + target + + + host + seacloud.cc + + + host + www.seacloud.cc + + + + + Seafile (partial) + + ruleset + + name + Seafile (partial) + rule + + from + ^http://cloud\.seafile\.com/ + to + https://cloud.seafile.com/ + + securecookie + + host + ^cloud\.seafile\.com$ + name + .+ + + target + + host + cloud.seafile.com + + + + Seafile-Server.de + + ruleset + + name + Seafile-Server.de + rule + + + from + ^http://(www\.)?seafileserver\.de/ + to + https://$1seafileserver.de/ + + + from + ^http://((?:demo|shop|wiki|www)\.)?seafile-server\.de/ + to + https://$1seafile-server.de/ + + + securecookie + + + host + ^(?:www\.)?seafileserver\.de$ + name + .+ + + + host + ^(?:(?:demo|shop|wiki|www)\.)?seafile-server\.de$ + name + .+ + + + target + + + host + seafileserver.de + + + host + www.seafileserver.de + + + host + seafile-server.de + + + host + *.seafile-server.de + + + + + Seagate.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:origin-www\.|www\.)?seagate\.com/(?!files/|javascript/|ww/) + + + pattern + ^http://(?:knowledge|support2)\.seagate\.com/(?!faces/|jslibrary/|resource/|sCSS/|s\.gif|static/) + + + pattern + ^http://shop\.seagate\.com/(?!store/sgateus/DisplayPage/id\.DRCartSummaryJSONPage/output\.json/) + + + name + Seagate.com (partial) + rule + + + from + ^http://(?:www\.)?seagate\.com/ + to + https://www.seagate.com/ + + + from + ^http://(apps1|direct|origin-www|partnerreg|reseller|services|shop|spp|sso|store)\.seagate\.com/ + to + https://$1.seagate.com/ + + + from + ^http://forums\.seagate\.com/ + to + https://stx.i.lithium.com/ + + + from + ^http://(?:knowledge|support2|wheretobuy)\.seagate\.com/ + to + https://seagatewtb.secure.force.com/ + + + securecookie + + host + ^(?:apps1|partnerreg|services)\.seagate\.com$ + name + .+ + + target + + + host + seagate.com + + + host + *.seagate.com + + + + + Seals with Clubs + + ruleset + + name + Seals with Clubs + rule + + from + ^http://(www\.)?sealswithclubs\.eu/ + to + https://$1sealswithclubs.eu/ + + securecookie + + host + ^\.?sealswithclubs\.eu$ + name + .+ + + target + + + host + sealswithclubs.eu + + + host + *.sealswithclubs.eu + + + + + Seanmckaybeck.com + + ruleset + + name + Seanmckaybeck.com + rule + + from + ^http://(www\.)?seanmckaybeck\.com/ + to + https://seanmckaybeck.com/ + + target + + host + seanmckaybeck.com + + + + Search Commander + + ruleset + + name + Search Commander + rule + + from + ^http://(www\.)?searchcommander\.com/ + to + https://$1searchcommander.com/ + + securecookie + + host + ^\.searchcommander.com$ + name + .+ + + target + + + host + searchcommander.com + + + host + *.searchcommander.com + + + + + Search www.google.com + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?google\.com/search.*tbs=shop + + + pattern + ^http://clients[0-9]\.google\.com/.*client=products.* + + + pattern + ^http://suggestqueries\.google\.com/.*client=.* + + + pattern + ^http://clients[0-9]\.google\.com/ocsp + + + pattern + ^http://(?:www\.)?google\.com/search.*tbm=isch.* + + + name + Search www.google.com + rule + + + from + ^http://www\.google\.com/$ + to + https://www.google.com/ + + + from + ^http://(?:www\.)?google\.com/search + to + https://www.google.com/search + + + from + ^http://(?:www\.)?google\.com/webhp + to + https://www.google.com/webhp + + + from + ^http://(?:www\.)?google\.com/# + to + https://www.google.com/# + + + from + ^http://(?:www\.)?google\.com/$ + to + https://www.google.com/ + + + from + ^http://clients[0-9]\.google\.com/complete/search + to + https://clients1.google.com/complete/search + + + target + + + host + *.google.com + + + host + google.com + + + host + www.google.com.* + + + host + google.com.* + + + host + www.google.co.* + + + host + google.co.* + + + host + www.google.* + + + host + google.* + + + host + clients1.google.com.* + + + host + clients2.google.com.* + + + host + clients3.google.com.* + + + host + clients4.google.com.* + + + host + clients5.google.com.* + + + host + clients6.google.com.* + + + host + clients1.google.co.* + + + host + clients2.google.co.* + + + host + clients3.google.co.* + + + host + clients4.google.co.* + + + host + clients5.google.co.* + + + host + clients6.google.co.* + + + host + clients1.google.* + + + host + clients2.google.* + + + host + clients3.google.* + + + host + clients4.google.* + + + host + clients5.google.* + + + host + clients6.google.* + + + + + Sears Commerce Services.com + + ruleset + + name + Sears Commerce Services.com + rule + + from + ^http://(www\.)?searscommerceservices\.com/ + to + https://$1searscommerceservices.com/ + + securecookie + + host + ^\.searscommerceservices\.com$ + name + .+ + + target + + + host + searscommerceservices.com + + + host + *.searscommerceservices.com + + + + + Sears Ecommerce Jobs.com + + ruleset + + name + Sears Ecommerce Jobs.com + rule + + from + ^http://(www\.)?searsecommercejobs\.com/ + to + https://$1searsecommercejobs.com/ + + target + + + host + searsecommercejobs.com + + + host + www.searsecommercejobs.com + + + + + Sears.com (partial) + + ruleset + + name + Sears.com (partial) + rule + + + from + ^http://(?:www\.)?sears\.com/(?=favicon\.ico|shc/s/UserLogonFormView(?:$|[?/])) + to + https://www.sears.com/ + + + from + ^http://om\.sears\.com/ + to + https://sears-com.d1.sc.omtrdc.net/ + + + from + ^http://(davidtuterajewelry|handbooks|seller\.marketplace|oascentral|s7|ux)\.sears\.com/ + to + https://$1.sears.com/ + + + securecookie + + host + ^(?:\.handbooks|seller\.marketplace|oascentral)\.sears\.com$ + name + .+ + + target + + host + *.sears.com + + + + Seasonal.ly + + ruleset + + name + Seasonal.ly + rule + + from + ^http://(eat\.|www\.)?seasonal\.ly/ + to + https://$1seasonal.ly/ + + securecookie + + host + .*\.seasonal\.ly$ + name + .+ + + target + + + host + seasonal.ly + + + host + *.seasonal.ly + + + + + SeatGeek.com + + ruleset + + name + SeatGeek.com + rule + + from + ^http://(www\.)?seatgeek\.com/ + to + https://$1seatgeek.com/ + + target + + + host + seatgeek.com + + + host + www.seatgeek.com + + + + + Seattle Privacy.org + + ruleset + + name + Seattle Privacy.org + rule + + from + ^http://(www\.)?seattleprivacy\.org/ + to + https://$1seattleprivacy.org/ + + securecookie + + + host + ^(www\.)?seattleprivacy\.org$ + name + ^wordpress_test_cookie$ + + + host + ^(?:www\.)?seattleprivacy\.org$ + name + .+ + + + target + + + host + seattleprivacy.org + + + host + www.seattleprivacy.org + + + + + Seattle Technical Books.com (partial) + + ruleset + + name + Seattle Technical Books.com (partial) + rule + + from + ^http://(?:www\.)?seattletechnicalbooks\.com/(?=(?:cart|content/store|news|reading-comics-public-day|search/advanced_search|user)(?:$|[?/])|favicon\.ico|files/|modules/|sites/|style\.css) + to + https://www.seattletechnicalbooks.com/ + + target + + + host + seattletechnicalbooks.com + + + host + www.seattletechnicalbooks.com + + + + + SeattleIX.net + + ruleset + + name + SeattleIX.net + rule + + from + ^http://(www\.)?seattleix\.net/ + to + https://$1seattleix.net/ + + target + + + host + seattleix.net + + + host + www.seattleix.net + + + + + SecDev.com + + ruleset + + name + SecDev.com + rule + + from + ^http://(www\.)?secdev\.com/ + to + https://$1secdev.com/ + + target + + + host + secdev.com + + + host + www.secdev.com + + + + + SecWiki + + ruleset + + name + SecWiki + platform + mixedcontent + rule + + from + ^http://(?:www\.)?secwiki\.org/ + to + https://secwiki.org/ + + securecookie + + host + ^secwiki\.org$ + name + .* + + target + + + host + secwiki.org + + + host + www.secwiki.org + + + + + Second Life.com (partial) + + ruleset + + exclusion + + pattern + ^http://wiki\.secondlife\.com/+(?!favicon\.ico|static/|w/) + + name + Second Life.com (partial) + rule + + from + ^http://((?:id|land|lists|marketplace|search|support|wiki|www)\.)?secondlife\.com/ + to + https://$1secondlife.com/ + + securecookie + + host + ^(?:\.|search\.|support\.|www\.)?secondlife\.com$ + name + .+ + + target + + + host + secondlife.com + + + host + *.secondlife.com + + + + + Second Look Forensics.com + + ruleset + + name + Second Look Forensics.com + rule + + from + ^http://(www\.)?secondlookforensics\.com/ + to + https://$1secondlookforensics.com/ + + target + + + host + secondlookforensics.com + + + host + www.secondlookforensics.com + + + + + Second Street Media + + ruleset + + name + Second Street Media + rule + + + from + ^http://(affiliates|c)\.eblastengine\.com/ + to + https://$1.eblastengine.com/ + + + from + ^http://((?:affiliates|eblastengine|ssm|www)\.)?upickem\.net/ + to + https://$1upickem.net/ + + + securecookie + + + host + ^.*\.eblastengine\.com$ + name + .* + + + host + ^.*\.upickem\.net$ + name + .* + + + target + + + host + *.eblastengine.com + + + host + *.upickem.net + + + + + SecondMarket.com + + ruleset + + name + SecondMarket.com + rule + + from + ^http://(?:www\.)?secondmarket\.com/ + to + https://www.secondmarket.com/ + + securecookie + + host + ^www\.secondmarket\.com$ + name + .+ + + target + + + host + secondmarket.com + + + host + www.secondmarket.com + + + + + Seconfig.sytes.net + + ruleset + + name + Seconfig.sytes.net + rule + + from + ^http://seconfig\.sytes\.net/ + to + https://seconfig.sytes.net/ + + securecookie + + host + ^\.seconfig\.sytes\.net$ + name + .+ + + target + + + host + seconfig.sytes.net + + + host + *.seconfig.sytes.net + + + + + Secret Intelligence Service + + ruleset + + name + Secret Intelligence Service + rule + + from + ^http://(?:www\.)?sis\.gov\.uk/ + to + https://www.sis.gov.uk/ + + target + + + host + sis.gov.uk + + + host + www.sis.gov.uk + + + + + Secretshare + + ruleset + + name + Secretshare + rule + + from + ^http://(www\.)?secretsha\.re/ + to + https://$1secretsha.re/ + + securecookie + + host + ^(?:w*\.)?secretsha\.re$ + name + .+ + + target + + + host + secretsha.re + + + host + *.secretsha.re + + + + + Secular Coalition for America + + ruleset + + name + Secular Coalition for America + rule + + from + ^http://(www\.)?secular\.org/ + to + https://secular.org/ + + securecookie + + host + ^(.+\.)?secular\.org$ + name + .* + + target + + + host + www.secular.org + + + host + secular.org + + + + + Secular Humanism.org + + ruleset + + name + Secular Humanism.org + rule + + from + ^http://(www\.)?secularhumanism\.org/ + to + https://$1secularhumanism.org/ + + securecookie + + host + ^(?:www\.)?secularhumanism\.org$ + name + .+ + + target + + + host + secularhumanism.org + + + host + www.secularhumanism.org + + + + + Secular Student Alliance + + ruleset + + name + Secular Student Alliance + rule + + from + ^http://(www\.)?secularstudents\.org/ + to + https://$1secularstudents.org/ + + securecookie + + host + ^.*\.secularstudents\.org$ + name + .* + + target + + + host + secularstudents.org + + + host + *.secularstudents.org + + + + + Secunia + + ruleset + + name + Secunia + rule + + + from + ^http://(?:www\.)?secunia\.com/ + to + https://secunia.com/ + + + from + ^http://(autodiscover|ca|csi|psi|\w+\.exch\.eu\.s|vim4)\.secunia\.com/ + to + https://$1.secunia.com/ + + + from + ^http://(?:www\.)?csi7\.secunia\.com/.* + to + https://csi7.secunia.com/ + + + from + ^http://(?:www\.)?smallbusiness\.secunia\.com/ + to + https://smallbusiness.secunia.com/ + + + securecookie + + host + ^(?:\w+\.)?secunia\.com$ + name + .+ + + target + + + host + secunia.com + + + host + *.secunia.com + + + + + Secure Socket Layer Billing Services + + ruleset + + name + Secure Socket Layer Billing Services + rule + + from + ^http://(static\.)?ssl7\.net/ + to + https://$1ssl7.net/ + + securecookie + + host + ^ssl7\.net$ + name + .+ + + target + + + host + ssl7.net + + + host + *.ssl7.net + + + + + Secure-Endpoints.com (partial) + + ruleset + + name + Secure-Endpoints.com (partial) + rule + + from + ^http://(www\.)?secure-endpoints\.com/ + to + https://$1secure-endpoints.com/ + + target + + + host + secure-endpoints.com + + + host + www.secure-endpoints.com + + + + + Secure.metoffice.gov.uk (partial) + + ruleset + + name + Secure.metoffice.gov.uk (partial) + rule + + from + ^http://secure\.metoffice\.gov\.uk/ + to + https://secure.metoffice.gov.uk/ + + target + + host + secure.metoffice.gov.uk + + + + SecureConnect + + ruleset + + name + SecureConnect + rule + + from + ^http://(www\.)?secureconnect\.com/ + to + https://$1secureconnect.com/ + + target + + + host + secureconnect.com + + + host + www.secureconnect.com + + + + + SecureList + + ruleset + + name + SecureList + rule + + from + ^http://(www\.)?securelist\.com/ + to + https://$1securelist.com/ + + securecookie + + host + ^(?:.+\.)?securelist\.com$ + name + .+ + + target + + + host + securelist.com + + + host + www.securelist.com + + + + + SecureNet.com + + ruleset + + name + SecureNet.com + rule + + + from + ^http://(?:www\.)?securenet\.com/ + to + https://www.securenet.com/ + + + from + ^http://terminal\.securenet\.com/ + to + https://terminal.securenet.com/ + + + securecookie + + host + ^terminal\.securenet\.com$ + name + .+ + + target + + + host + securenet.com + + + host + *.securenet.com + + + + + SecurePro Software + + ruleset + + name + SecurePro Software + rule + + from + ^http://(?:www\.)?secureprosoftware\.com/ + to + https://secureprosoftware.com/ + + securecookie + + host + ^\.?secureprosoftware\.com$ + name + .+ + + target + + + host + secureprosoftware.com + + + host + *.secureprosoftware.com + + + + + SecureStudies.com (partial) + + ruleset + + name + SecureStudies.com (partial) + rule + + from + ^http://(beacon\.|www\.)?securestudies\.com/ + to + https://$1securestudies.com/ + + target + + + host + securestudies.com + + + host + *.securestudies.com + + + + + SecuredVisit.com (partial) + + ruleset + + name + SecuredVisit.com (partial) + rule + + from + ^http://track\.securedvisit\.com/ + to + https://track.securedvisit.com/ + + target + + host + track.securedvisit.com + + + + Securelime + + ruleset + + name + Securelime + rule + + from + ^http://(www\.)?securelime\.com/ + to + https://$1securelime.com/ + + securecookie + + host + ^.*\.securelime\.com$ + name + .+ + + target + + + host + securelime.com + + + host + *.securelime.com + + + + + Securepaynet.net + + ruleset + + name + Securepaynet.net + rule + + + from + ^https?://securepaynet\.net/ + to + https://www.securepaynet.net/ + + + from + ^http://(\w+)\.securepaynet\.net/ + to + https://$1.securepaynet.net/ + + + from + ^http://img(\d)\.wsimg\.com/ + to + https://img$1.wsimg.com/ + + + securecookie + + host + ^(?:.*\.)?securepaynet\.net$ + name + .+ + + target + + + host + securepaynet.net + + + host + *.securepaynet.net + + + host + *.wsimg.com + + + + + Secureserver.net (partial) + + ruleset + + name + Secureserver.net (partial) + rule + + from + ^http://(cloud|email|hostingmanager|hxcc|images|img|login|mobilemail|p3nmssqladmin|p3smysqladmin01|products|www)\.secureserver\.net/ + to + https://$1.secureserver.net/ + + securecookie + + host + ^.+\.secureserver\.net$ + name + .+ + + target + + host + *.secureserver.net + + + + Securi (partial) + + ruleset + + name + Securi (partial) + rule + + from + ^http://((?:cloudproxy|login|support|www)\.)?securi\.net/ + to + https://$1securi.net/ + + target + + + host + securi.net + + + host + *.securi.net + + + + + Securing the Human.org + + ruleset + + name + Securing the Human.org + rule + + from + ^http://(www\.)?securingthehuman\.org/ + to + https://$1securingthehuman.org/ + + target + + + host + securingthehuman.org + + + host + www.securingthehuman.org + + + + + Securities.com (partial) + + ruleset + + name + Securities.com (partial) + platform + mixedcontent + rule + + from + ^http://www\.securities\.com/ + to + https://www.securities.com/ + + target + + host + www.securities.com + + + + Security Evaluators.com + + ruleset + + name + Security Evaluators.com + rule + + from + ^http://(www\.)?securityevaluators\.com/ + to + https://$1securityevaluators.com/ + + target + + + host + securityevaluators.com + + + host + www.securityevaluators.com + + + + + Security Experten.com (false MCB) + + ruleset + + name + Security Experten.com (false MCB) + platform + mixedcontent + rule + + + from + ^http://securityexperten\.com/.* + to + https://www.securityexperten.com/ + + + from + ^http://www\.securityexperten\.com/(?!favicon\.ico|fileadmin/|typo3conf/|typo3temp/) + to + https://www.securityexperten.com/ + + + securecookie + + host + ^www\.securityexperten\.com$ + name + .+ + + target + + + host + securityexperten.com + + + host + *.securityexperten.com + + + + + Security Experten.com (partial) + + ruleset + + name + Security Experten.com (partial) + rule + + from + ^http://www\.securityexperten\.com/(?=favicon\.ico|fileadmin/|typo3conf/|typo3temp/) + to + https://www.securityexperten.com/ + + target + + host + www.securityexperten.com + + + + Security In A Box + + ruleset + + name + Security In A Box + rule + + from + ^http://security\.ngoinabox\.org/ + to + https://security.ngoinabox.org/ + + securecookie + + host + ^(.*\.)?security\.ngoinabox\.org$ + name + .+ + + target + + host + security.ngoinabox.org + + + + Security Research Labs + + ruleset + + name + Security Research Labs + rule + + from + ^http://((?:lists|opensource|www)\.)?srlabs\.de/ + to + https://$1srlabs.de/ + + securecookie + + host + ^.*\.srlabs\.de$ + name + .* + + target + + + host + srlabs.de + + + host + *.srlabs.de + + + + + Security in a Box.org + + ruleset + + name + Security in a Box.org + rule + + from + ^http://(www\.)?securityinabox\.org/ + to + https://$1securityinabox.org/ + + securecookie + + host + ^\.securityinabox\.org$ + name + .+ + + target + + + host + securityinabox.org + + + host + *.securityinabox.org + + + + + Security-Database.com + + ruleset + + name + Security-Database.com + rule + + from + ^http://(?:www\.)?security-database\.com/ + to + https://www.security-database.com/ + + securecookie + + host + ^www\.security-database\.com$ + name + .+ + + target + + + host + security-database.com + + + host + www.security-database.com + + + + + Security.NL + + ruleset + + name + Security.NL + rule + + from + ^http://(secure\.|www\.)?security\.nl/ + to + https://$1security.nl/ + + securecookie + + host + ^\.www\.security\.nl$ + name + .+ + + target + + + host + security.nl + + + host + *.security.nl + + + + + SecurityKISS.com (partial) + + ruleset + + name + SecurityKISS.com (partial) + rule + + from + ^http://(www\.)?securitykiss\.com/(favicon\.ico|(?:helpdesk|panel|pricing/order)(?:$|[?/])|images/|javascripts/|stylesheets/) + to + https://$1securitykiss.com/$2 + + target + + + host + securitykiss.com + + + host + www.securitykiss.com + + + + + SecurityMetrics + + ruleset + + name + SecurityMetrics + rule + + + from + ^http://(web2\.|www\.)?securitymetrics\.com/ + to + https://$1securitymetrics.com/ + + + from + ^http://blog\.securitymetrics\.com/favicon\.ico + to + https://www.blogger.com/favicon.ico + + + securecookie + + host + ^(?:web2\.|www\.)?securitymetrics\.com$ + name + .+ + + target + + + host + securitymetrics.com + + + host + *.securitymetrics.com + + + + + SecurityWeek.com + + ruleset + + name + SecurityWeek.com + platform + mixedcontent + rule + + from + ^http://(www\.)?securityweek\.com/ + to + https://$1securityweek.com/ + + securecookie + + host + ^(?:www)?\.securityweek\.com$ + name + .+ + + target + + + host + securityweek.com + + + host + *.securityweek.com + + + + + Securityheaders.com + + ruleset + + name + Securityheaders.com + platform + firefox + rule + + from + ^http://securityheaders\.com/ + to + https://securityheaders.com/ + + securecookie + + host + ^securityheaders\.com$ + name + .+ + + target + + host + securityheaders.com + + + + Securosis + + ruleset + + name + Securosis + rule + + from + ^http://(www\.)?securosis\.com/ + to + https://$1securosis.com/ + + securecookie + + host + ^(?:www)?\.securosis\.com$ + name + .+ + + target + + + host + securosis.com + + + host + *.securosis.com + + + + + SecuryCast Oy + + ruleset + + name + SecuryCast Oy + rule + + from + ^http://((?:www|images)\.)?securycast\.com/ + to + https://$1securycast.com/ + + target + + + host + securycast.com + + + host + *.securycast.com + + + + + Secusmart + + ruleset + + name + Secusmart + rule + + + from + ^https?://secusmart\.com/ + to + https://www.secusmart.com/ + + + from + ^http://([^/:@]+)?\.secusmart\.com/ + to + https://$1.secusmart.com/ + + + securecookie + + host + ^(.*\.)?secusmart\.com$ + name + .+ + + target + + + host + secusmart.com + + + host + www.secusmart.com + + + + + Sedo Holding.com (partial) + + ruleset + + name + Sedo Holding.com (partial) + rule + + from + ^http://(autodiscover|mail)\.sedoholding\.com/ + to + https://$1.sedoholding.com/ + + securecookie + + host + ^mail\.sedoholding\.com$ + name + .+ + + target + + host + *.sedoholding.com + + + + Sedo.com + + ruleset + + name + Sedo.com + rule + + + from + ^http://(www\.)?sedo\.(co\.uk|com|de)/ + to + https://$1sedo.$2/ + + + from + ^http://mail\.sedo\.(?:com|de)/ + to + https://mail.sedoholding.com/ + + + from + ^http://backoffice\.sedo\.de/ + to + https://backoffice.sedo.de/ + + + from + ^http://(?:www\.)?sedo\.fr/ + to + https://sedo.com/fr/home/bienvenue + + + from + ^http://img\.sedoparking\.com/ + to + https://sedo.cachefly.net/ + + + securecookie + + host + ^\.?sedo\.(?:co\.uk|com|de)$ + name + .+ + + target + + + host + sedo.co.uk + + + host + *.sedo.co.uk + + + host + sedo.com + + + host + *.sedo.com + + + host + sedo.de + + + host + *.sedo.de + + + host + sedo.fr + + + host + www.sedo.fr + + + host + img.sedoparking.com + + + + + See Group (partial) + + ruleset + + name + See Group (partial) + rule + + + from + ^http://seetickets\.com/ + to + https://www.seetickets.com/ + + + from + ^http://www\.seetickets\.com/(Content/(About-us|Data-Protection|Security)|Skins/|CustomerService|Terms-and-Conditions) + to + https://www.seetickets.com/$1 + + + from + ^http://www2\.seetickets\.com/ + to + https://www2.seetickets.com/ + + + from + ^http://s(?:tatic\.)?\.s(?:eetickets|tstat)\.com/ + to + https://static.seetickets.com/ + + + securecookie + + host + ^www2\.seetickets\.com$ + name + .* + + target + + + host + seetickets.com + + + host + static.seetickets.com + + + host + www.seetickets.com + + + host + www2.seetickets.com + + + host + s.ststat.com + + + + + Seecrypt + + ruleset + + name + Seecrypt + rule + + from + ^http://(?:www\.)?seecrypt\.com/ + to + https://www.seecrypt.com/ + + securecookie + + host + ^www\.seecrypt\.com$ + name + .+ + + target + + + host + seecrypt.com + + + host + www.seecrypt.com + + + + + Seedboxes.cc + + ruleset + + name + Seedboxes.cc + rule + + from + ^http://(www\.)?seedboxes\.cc/ + to + https://$1seedboxes.cc/ + + securecookie + + host + ^(?:w*\.)?seedboxes\.cc$ + name + .+ + + target + + + host + seedboxes.cc + + + host + www.seedboxes.cc + + + + + Seeed Studio.com + + ruleset + + name + Seeed Studio.com + rule + + from + ^http://(www\.)?seeedstudio\.com/ + to + https://$1seeedstudio.com/ + + securecookie + + host + ^\.seeedstudio\.com$ + name + .+ + + target + + + host + seeedstudio.com + + + host + *.seeedstudio.com + + + + + SeekingArrangement.com + + ruleset + + name + SeekingArrangement.com + rule + + from + ^http://(www\.)?seekingarrangement\.com/ + to + https://$1seekingarrangement.com/ + + securecookie + + host + ^(?:www)?\.seekingarrangement\.com$ + name + .+ + + target + + + host + seekingarrangement.com + + + host + *.seekingarrangement.com + + + + + SegPay (partial) + + ruleset + + name + SegPay (partial) + rule + + + from + ^http://my\.segpay\.com/ + to + https://my.segpay.com/ + + + from + ^http://(?:www\.)?segpayc(hat|s)\.com/ + to + https://segpayc$1.com/ + + + target + + + host + my.segpay.com + + + host + segpaycs.com + + + host + www.segpaycs.com + + + host + segpaychat.com + + + host + www.segpaychat.com + + + + + Segger.com + + ruleset + + name + Segger.com + rule + + from + ^http://(www\.)?segger\.com/ + to + https://$1segger.com/ + + target + + + host + segger.com + + + host + www.segger.com + + + + + Segment.io + + ruleset + + name + Segment.io + rule + + from + ^http://(www\.)?segment\.io/ + to + https://$1segment.io/ + + target + + + host + segment.io + + + host + www.segment.io + + + + + Seguros Universales + + ruleset + + name + Seguros Universales + rule + + + from + ^http://segurosuniversales\.net/.* + to + https://www.segurosuniversales.net/ + + + from + ^http://www\.segurosuniversales\.net/ + to + https://www.segurosuniversales.net/ + + + securecookie + + host + ^(?:www)?\.segurosuniversales\.net$ + name + .+ + + target + + + host + segurosuniversales.net + + + host + *.segurosuniversales.net + + + + + Sehirfirsati + + ruleset + + name + Sehirfirsati + rule + + + from + ^http://(www\.)?sehirfirsati\.com/ + to + https://www.sehirfirsati.com/ + + + from + ^http://static\.sehirfirsati\.com/ + to + https://static.sehirfirsati.com/ + + + from + ^http://render\.groupon-content\.net/ + to + https://render.groupon-content.net/ + + + securecookie + + host + ^(.*\.)?sehirfirsati\.com$ + name + .* + + target + + + host + www.sehirfirsati.com + + + host + sehirfirsati.com + + + host + static.sehirfirsati.com + + + host + render.groupon-content.net + + + + + SektionEins.de + + ruleset + + name + SektionEins.de + rule + + from + ^http://(www\.)?sektioneins\.de/ + to + https://$1sektioneins.de/ + + target + + + host + sektioneins.de + + + host + www.sektioneins.de + + + + + Selangorku + + ruleset + + name + Selangorku + rule + + from + ^http://(www\.)?selangorku\.com/ + to + https://$1selangorku.com/ + + securecookie + + host + ^(?:.*\.)?selangorku\.com$ + name + .+ + + target + + + host + selangorku.com + + + host + *.selangorku.com + + + + + Selfridges.com (partial) + + ruleset + + name + Selfridges.com (partial) + rule + + from + ^http://(images\.|www\.)?selfridges\.com/ + to + https://$1selfridges.com/ + + securecookie + + host + ^www\.selfridges\.com$ + name + .+ + + target + + + host + selfridges.com + + + host + *.selfridges.com + + + + + Sellaband.com (partial) + + ruleset + + name + Sellaband.com (partial) + rule + + + from + ^http://(www\.)?sellaband\.com/ + to + https://$1sellaband.com/ + + + from + ^http://(alternative|electronic|hiphop|pop|rnb|rock|world)\.sellaband\.com/ + to + https://$1.sellaband.com/ + + + from + ^http://support\.sellaband\.com/(access|generated|images|registration|system) + to + https://sellaband.zendesk.com/$1 + + + securecookie + + host + ^(.*\.)?sellaband\.com$ + name + .* + + target + + + host + sellaband.com + + + host + *.sellaband.com + + + + + SemiAccurate + + ruleset + + name + SemiAccurate + rule + + from + ^http://(www\.)?s(?:emiaccurate\.com|tonearch\.net)/ + to + https://$1semiaccurate.com/ + + securecookie + + host + ^(?:.*\.)?semiaccurate\.com$ + name + .+ + + target + + + host + semiaccurate.com + + + host + *.semiaccurate.com + + + host + www.stonearch.net + + + + + Senate.gov + + ruleset + + exclusion + + pattern + ^http://(?:www.)?rules\.senate\.gov/ + + name + Senate.gov + rule + + + from + ^http://((?:sopr|www)\.)?senate\.gov/ + to + https://$1senate.gov/ + + + from + ^http://(?:www\.)?(?!senate\.g)(\w+)\.senate\.gov/ + to + https://www.$1.senate.gov/ + + + securecookie + + host + ^www\.\w+\.senate\.gov$ + name + .* + + target + + + host + senate.gov + + + host + *.senate.gov + + + host + www.*.senate.gov + + + + + Sencha (partial) + + ruleset + + name + Sencha (partial) + rule + + + from + ^http://(?:www\.)?sencha\.com/ + to + https://www.sencha.com/ + + + from + ^http://img1\.sencha\.com/ + to + https:///img1.sencha.com/ + + + from + ^http://cdn\.sencha\.(?:com|io)/ + to + https://extjs.cachefly.net/ + + + securecookie + + host + ^\.?www\.sencha\.com$ + name + .+ + + target + + + host + sencha.com + + + host + *.sencha.com + + + host + cdn.sencha.io + + + + + SendGrid.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?sendgrid\.com/(?!assets_ca/|favicon\.ico|(?:femr/turn_iframe|user)(?:$|[?/])|images/|mkt/assets/) + + name + SendGrid.com (partial) + rule + + + from + ^http://(?:assets\d\.|(www\.))?sendgrid\.com/ + to + https://$1sendgrid.com/ + + + from + ^http://support\.sendgrid\.com/(assets/|favicon\.ico|system/) + to + https://assets.zendesk.com/$1 + + + target + + + host + sendgrid.com + + + host + *.sendgrid.com + + + + + SendYourFiles.org (partial) + + ruleset + + name + SendYourFiles.org (partial) + rule + + from + ^http://secure\.sendyourfiles\.com/ + to + https://secure.sendyourfiles.com/ + + securecookie + + host + ^secure\.sendyourfiles\.com$ + name + .+ + + target + + host + secure.sendyourfiles.com + + + + Sendmail + + ruleset + + name + Sendmail + platform + mixedcontent + rule + + from + ^http://(?:www\.)?sendmail\.com/ + to + https://www.sendmail.com/ + + target + + + host + sendmail.com + + + host + www.sendmail.com + + + + + Sequanux.org (false MCB) + + ruleset + + name + Sequanux.org (false MCB) + platform + mixedcontent + rule + + from + ^http://wiki\.sequanux\.org/(?!favicon\.ico|home/services/|load\.php|skins/) + to + https://wiki.sequanux.org/ + + securecookie + + host + ^wiki\.sequanux\.org$ + name + .+ + + target + + host + wiki.sequanux.org + + + + Serato.com (partial) + + ruleset + + name + Serato.com (partial) + rule + + + from + ^http://((?:auth|manage|playlists|www)\.)?serato\.com/ + to + https://$1serato.com/ + + + from + ^http://s\.store\.serato\.com/ + to + https://d3hrfuxypomrcm.cloudfront.net/ + + + target + + + host + serato.com + + + host + *.serato.com + + + + + Serialist + + ruleset + + name + Serialist + rule + + + from + ^http://(?:www\.)?serialist\.net/ + to + https://serialist.net/ + + + from + ^http://([^/:@]*)\.serialist\.net/ + to + https://$1.serialist.net/ + + + target + + + host + serialist.net + + + host + *.serialist.net + + + + + Sertifikatai.lt + + ruleset + + name + Sertifikatai.lt + rule + + from + ^http://(?:www\.)?sertifikatai\.lt/ + to + https://www.sertifikatai.lt/ + + target + + + host + sertifikatai.lt + + + host + www.sertifikatai.lt + + + + + Servage.net + + ruleset + + name + Servage.net + rule + + + from + ^http://(?:www\.)?servage\.com/(?:\?.*)?$ + to + https://www.servage.net/ + + + from + ^http://(?:www\.)?servage\.net/ + to + https://www.servage.net/ + + + from + ^http://(livesupport01|secure|static)\.servage\.net/ + to + https://$1.servage.net/ + + + from + ^http://webmail\.servage\.net/(?:\?.*)?$ + to + https://secure.servage.net/webmail/ + + + securecookie + + host + ^(?:livesupport01|secure|www)\.servage\.net$ + name + .+ + + target + + + host + servage.* + + + host + www.servage.com + + + host + *.servage.net + + + + + Server Express (partial) + + ruleset + + name + Server Express (partial) + rule + + from + ^http://manage\.theserverexpress\.com/ + to + https://manage.theserverexpress.com/ + + securecookie + + + host + ^\.theserverexpress\.com$ + name + ^__cfduid$ + + + host + ^manage\.theserverexpress\.com$ + name + .+ + + + target + + host + *.theserverexpress.com + + + + Server Fault.com + + ruleset + + name + Server Fault.com + rule + + from + ^http://(?:www\.|(meta\.))?serverfault\.com/ + to + https://$1serverfault.com/ + + target + + + host + serverfault.com + + + host + *.serverfault.com + + + + + ServerBeach.com (partial) + + ruleset + + name + ServerBeach.com (partial) + rule + + from + ^http://shop\.serverbeach\.com/ + to + https://shop.serverbeach.com/ + + securecookie + + host + ^shop\.serverbeach\.com$ + name + .+ + + target + + host + shop.serverbeach.com + + + + ServerCentral (partial) + + ruleset + + name + ServerCentral (partial) + rule + + from + ^http://portal\.servercentral\.net/ + to + https://portal.servercentral.net/ + + securecookie + + host + ^portal\.servercentral\.net$ + name + .+ + + target + + host + portal.servercentral.net + + + + ServerCrate.com (partial) + + ruleset + + exclusion + + pattern + ^http://billing\.servercrate\.com/($|\?|(?:announcements|index|knowledgebase)\.php) + + name + ServerCrate.com (partial) + rule + + from + ^http://((?:billing|vps|www)\.)?servercrate\.com/ + to + https://$1servercrate.com/ + + securecookie + + host + ^(?:vps|www)?\.servercrate\.com$ + name + .+ + + target + + + host + servercrate.com + + + host + *.servercrate.com + + + + + ServerExpress.co.il + + ruleset + + name + ServerExpress.co.il + rule + + from + ^http://www\.stratusexpress\.com/ + to + https://www.stratusexpress.com/ + + securecookie + + host + ^(?:www)?\.stratusexpress\.com$ + name + .+ + + target + + host + *.stratusexpress.com + + + + ServerPilot.io + + ruleset + + name + ServerPilot.io + rule + + from + ^http://(manage\.|www\.)?serverpilot\.io/ + to + https://$1serverpilot.io/ + + securecookie + + host + ^\.serverpilot\.io$ + name + .+ + + target + + + host + serverpilot.io + + + host + *.serverpilot.io + + + + + ServerTastic + + ruleset + + name + ServerTastic + rule + + from + ^http://((?:api|blog|my|reseller|support|tickets|www)\.)?servertastic\.com/ + to + https://$1servertastic.com/ + + securecookie + + host + ^(?:.*\.)?servertastic\.com$ + name + .+ + + target + + + host + servertastic.com + + + host + *.servertastic.com + + + + + Servercraft + + ruleset + + name + Servercraft + rule + + from + ^http://(www\.)?servercraft\.co/ + to + https://$1servercraft.co/ + + securecookie + + host + ^(?:w*\.)?servercraft\.co$ + name + .+ + + target + + + host + servercraft.co + + + host + *.servercraft.co + + + + + Serverdensity.io + + ruleset + + name + Serverdensity.io + platform + firefox + rule + + from + ^http://serverdensity\.io/ + to + https://serverdensity.io/ + + securecookie + + host + ^serverdensity\.io$ + name + .+ + + target + + host + serverdensity.io + + + + Serverfruit.com + + ruleset + + name + Serverfruit.com + rule + + from + ^http://(client\.|www\.)?serverfruit\.com/ + to + https://$1serverfruit.com/ + + securecookie + + host + ^(?:client|www)?\.serverfruit\.com$ + name + .+ + + target + + + host + serverfruit.com + + + host + *.serverfruit.com + + + + + Serversaurus.com.au (partial) + + ruleset + + name + Serversaurus.com.au (partial) + rule + + from + ^http://(tasha\.|www\.)?serversaurus\.com\.au/ + to + https://$1serversaurus.com.au/ + + securecookie + + host + ^(?:www\.)?serversaurus\.com\.au$ + name + .+ + + target + + + host + serversaurus.com.au + + + host + *.serversaurus.com.au + + + + + Service Uptime.com + + ruleset + + name + Service Uptime.com + rule + + from + ^http://(www\.)?serviceuptime\.com/ + to + https://$1serviceuptime.com/ + + securecookie + + host + ^www\.serviceuptime\.com$ + name + .+ + + target + + + host + serviceuptime.com + + + host + www.serviceuptime.com + + + + + Service by Air + + ruleset + + name + Service by Air + rule + + from + ^http://(community\.|www\.)?sbaglobal\.com/ + to + https://$1sbaglobal.com/ + + securecookie + + host + ^community\.sbaglobal\.com$ + name + .+ + + target + + + host + sbaglobal.com + + + host + *.sbaglobal.com + + + + + ServiceNow (partial) + + ruleset + + name + ServiceNow (partial) + rule + + from + ^http://(?!www\.)([\w-]+)\.service-now\.com/ + to + https://$1.service-now.com/ + + securecookie + + host + ^.+\.service-now\.com$ + name + .+ + + target + + host + *.service-now.com + + + + ServiceTick.com + + ruleset + + name + ServiceTick.com + rule + + + from + ^http://(?:www\.)?servicetick\.com/ + to + https://www.servicetick.com/ + + + from + ^http://console\.servicetick\.com/ + to + https://console.servicetick.com/ + + + securecookie + + host + ^console\.servicetick\.com$ + name + .+ + + target + + + host + servicetick.com + + + host + *.servicetick.com + + + + + Services-prefecture.com + + ruleset + + name + Services-prefecture.com + rule + + from + ^http://(www\.)?services-prefecture\.com/ + to + https://$1services-prefecture.com/ + + securecookie + + host + ^(?:www)?\.services-prefecture\.com$ + name + .+ + + target + + + host + services-prefecture.com + + + host + *.services-prefecture.com + + + + + Sesek.com + + ruleset + + name + Sesek.com + rule + + from + ^http://robert\.sesek\.com/ + to + https://robert.sesek.com/ + + target + + host + robert.sesek.com + + + + SessionCam.com + + ruleset + + name + SessionCam.com + rule + + from + ^http://(?:www\.)?sessioncam\.com/ + to + https://www.sessioncam.com/ + + target + + + host + sessioncam.com + + + host + www.sessioncam.com + + + + + Set.io + + ruleset + + name + Set.io + rule + + from + ^http://(www\.)?set\.io/ + to + https://$1set.io/ + + target + + + host + set.io + + + host + *.set.io + + + + + Settrade.com + + ruleset + + name + Settrade.com + rule + + + from + ^http://(www\.)?settrade\.com/ + to + https://www.settrade.com/ + + + from + ^http://portal\.settrade\.com/ + to + https://portal.settrade.com/ + + + target + + + host + settrade.com + + + host + www.settrade.com + + + host + portal.settrade.com + + + + + Seurinternacional.com + + ruleset + + name + Seurinternacional.com + rule + + from + ^http://(www\.)?seurinternacional\.com/ + to + https://www.seurinternacional.com/ + + target + + + host + seurinternacional.com + + + host + www.seurinternacional.com + + + + + SexSlurp + + ruleset + + name + SexSlurp + rule + + from + ^http://(www\.)?sexslurp\.com/ + to + https://$1sexslurp.com/ + + securecookie + + host + ^\.sexslurp\.com$ + name + .+ + + target + + + host + sexslurp.com + + + host + *.sexslurp.com + + + + + Sexy Site Hosting.com + + ruleset + + name + Sexy Site Hosting.com + rule + + from + ^http://(www\.)?sexysitehosting\.com/ + to + https://$1sexysitehosting.com/ + + securecookie + + host + ^\.sexysitehosting\.com$ + name + .+ + + target + + + host + sexysitehosting.com + + + host + *.sexysitehosting.com + + + + + Seznam.cz + + ruleset + + name + Seznam.cz + rule + + + from + ^http://(www\.)?seznam\.cz/ + to + https://www.seznam.cz/ + + + from + ^http://registrace\.seznam\.cz/ + to + https://registrace.seznam.cz/ + + + from + ^http://email\.seznam\.cz/ + to + https://email.seznam.cz/ + + + from + ^http://(www\.)?post\.cz/ + to + https://email.seznam.cz/ + + + from + ^http://login\.szn\.cz/ + to + https://login.szn.cz/ + + + from + ^http://login\.seznam\.cz/ + to + https://login.seznam.cz/ + + + target + + + host + seznam.cz + + + host + www.seznam.cz + + + host + registrace.seznam.cz + + + host + email.seznam.cz + + + host + post.cz + + + host + www.post.cz + + + host + login.szn.cz + + + host + login.seznam.cz + + + + + Sferra (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?sferra\.com/content/.+\.html + + name + Sferra (partial) + rule + + from + ^http://(www\.)?sferra\.com/((?:checkout|Member|registry)(?:$|\?)|content/|css/|images/|photos/|Public/|Scripts/|/?store_image/|Styles/) + to + https://$1sferra.com/$2 + + target + + + host + sferra.com + + + host + www.sferra.com + + + + + Shacknews + + ruleset + + name + Shacknews + rule + + + from + ^http://(?:www\.)?shacknews\.com/ + to + https://www.shacknews.com/ + + + from + ^http://cf\.shacknews\.com/ + to + https://shacknews.s3.amazonaws.com/ + + + securecookie + + host + ^www\.shacknews\.com$ + name + .* + + target + + + host + shacknews.com + + + host + *.shacknews.com + + + + + Shaklee (partial) + + ruleset + + exclusion + + + pattern + ^http://member\.myshaklee\.com/\w\w/\w\w/article/ + + + pattern + ^htpp;//shaklee\.com/(?:/\w\w/\w\w/)?(?:$|\?) + + + name + Shaklee (partial) + rule + + + from + ^http://(?:www\.)?myshaklee\.com/ + to + https://www.myshaklee.com/ + + + from + ^http://member\.myshaklee\.com/ + to + https://member.myshaklee.com/ + + + from + ^http://(content\.|images\.|www\.)?shaklee\.com/ + to + https://$1shaklee.com/ + + + securecookie + + + host + ^\.shaklee\.com$ + name + ^s_\w+$ + + + host + ^www\.myshaklee\.com$ + name + .+ + + + target + + + host + myshaklee.com + + + host + *.myshaklee.com + + + host + shaklee.com + + + host + *.shaklee.com + + + + + Shaman's Garden + + ruleset + + name + Shaman's Garden + rule + + from + ^http://(www\.)?shamansgarden\.com/ + to + https://$1shamansgarden.com/ + + securecookie + + host + ^(?:w*\.)?shamansgarden\.com$ + name + .+ + + target + + + host + shamansgarden.com + + + host + *.shamansgarden.com + + + + + Shambhala Mountain Center + + ruleset + + name + Shambhala Mountain Center + rule + + from + ^http://(www\.)?shambhalamountain\.org/ + to + https://$1shambhalamountain.org/ + + securecookie + + host + ^(www\.)?shambhalamountain\.org$ + name + .* + + target + + + host + shambhalamountain.org + + + host + www.shambhalamountain.org + + + + + Shannon Health + + ruleset + + name + Shannon Health + rule + + + from + ^https?://(?:www\.)?myshannonconnection\.org/ + to + https://www.myshannonconnection.org/ + + + from + ^https?://(?:www\.)?shannonhealth\.com/ + to + https://www.shannonhealth.com/ + + + securecookie + + + host + ^(.*\.)?myshannonconnection\.org$ + name + .+ + + + host + ^(.*\.)?shannonhealth\.com$ + name + .+ + + + target + + + host + myshannonconnection.org + + + host + *.myshannonconnection.org + + + host + shannonhealth.com + + + host + *.shannonhealth.com + + + + + Share the Network + + ruleset + + name + Share the Network + rule + + from + ^http://(?:www\.)?sharethenetwork\.com/ + to + https://www.sharethenetwork.com/ + + securecookie + + host + ^www\.sharethenetwork\.com$ + name + .+ + + target + + + host + sharethenetwork.com + + + host + www.sharethenetwork.com + + + + + ShareASale.com (partial) + + ruleset + + name + ShareASale.com (partial) + rule + + from + ^http://(www\.)?shareasale\.com/ + to + https://$1shareasale.com/ + + securecookie + + host + ^\.shareasale\.com$ + name + .+ + + target + + + host + shareasale.com + + + host + *.shareasale.com + + + + + ShareThis + + ruleset + + name + ShareThis + rule + + + from + ^http://cdn\.sharethis\.com/ + to + https://sharethis.com/ + + + from + ^http://s\.sharethis\.com/ + to + https://sd.sharethis.com/ + + + from + ^http://w\.sharethis\.com/ + to + https://ws.sharethis.com/ + + + from + ^http://([\w-]+\.)?sharethis\.com/ + to + https://$1sharethis.com/ + + + securecookie + + host + ^(?:.*\.)?sharethis\.com$ + name + .+ + + target + + + host + sharethis.com + + + host + *.sharethis.com + + + + + SharedValue.org + + ruleset + + name + SharedValue.org + rule + + from + ^http://(www\.)?sharedvalue\.org/ + to + https://$1sharedvalue.org/ + + target + + + host + sharedvalue.org + + + host + www.sharedvalue.org + + + + + Sharefest.me + + ruleset + + name + Sharefest.me + rule + + from + ^http://(?:www\.)?sharefest\.me/ + to + https://www.sharefest.me/ + + target + + + host + sharefest.me + + + host + www.sharefest.me + + + + + Shareholder.com (partial) + + ruleset + + name + Shareholder.com (partial) + rule + + + from + ^http://apps2?\.shareholder\.com/ + to + https://apps.shareholder.com/ + + + from + ^http://(dialogue\.|investor\.|www\.)?shareholder\.com/ + to + https://$1shareholder.com/ + + + securecookie + + host + ^(?:dialogue|\.investor)?\.shareholder\.com + name + .+ + + target + + + host + shareholder.com + + + host + *.shareholder.com + + + + + Sharethrough (partial) + + ruleset + + name + Sharethrough (partial) + rule + + + from + ^https?://strlabs\.wpengine\.netdna-cdn\.com/ + to + https://strlabs.wpengine.com/ + + + from + ^https?://ads\.shareth\.ru/ + to + https://ib.adnxs.com/ + + + from + ^http://((?:(?:apis|assets|content|hq|static)(?:-acceptance|-staging)?|native(?:-staging)?|www)\.)?sharethrough\.com/ + to + https://$1sharethrough.com/ + + + from + ^https?://marketing\.sharethrough\.com/(?:\?.*)?$ + to + https://sharethrough.com/?ao=1 + + + from + ^https?://marketing\.sharethrough\.com/acton/ + to + https://ci33.actonsoftware.com/acton/ + + + securecookie + + host + ^(?:.*\.)?sharethrough\.com$ + name + .+ + + target + + + host + strlabs.wpengine.netdna-cdn.com + + + host + ads.shareth.ru + + + host + sharethrough.com + + + host + *.sharethrough.com + + + + + Shari DeAngel.com (false MCB) + + ruleset + + name + Shari DeAngel.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?sharideangelo\.com/ + to + https://$1sharideangelo.com/ + + target + + + host + sharideangelo.com + + + host + *.sharideangelo.com + + + + + Shari DeAngel.com (partial) + + ruleset + + name + Shari DeAngel.com (partial) + rule + + from + ^http://(www\.)?sharideangelo\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1sharideangelo.com/ + + target + + + host + sharideangelo.com + + + host + www.sharideangelo.com + + + + + SharpFile.com (partial) + + ruleset + + name + SharpFile.com (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?sharpfile\.com/ + to + https://$1sharpfile.com/ + + securecookie + + host + ^(?:www\.)?sharpfile\.com$ + name + .+ + + target + + + host + sharpfile.com + + + host + www.sharpfile.com + + + + + SharpSpring (partial) + + ruleset + + name + SharpSpring (partial) + rule + + from + ^http://(app|sfdc)\.sharpspring\.com/ + to + https://$1.sharpspring.com/ + + securecookie + + host + .+\.sharpspring\.com$ + name + .+ + + target + + host + *.sharpspring.com + + + + Sharpmen + + ruleset + + name + Sharpmen + rule + + from + ^http://(www\.)?sharpmen\.com/ + to + https://$1sharpmen.com/ + + securecookie + + host + ^\.sharpmen\.com$ + name + .+ + + target + + + host + sharpmen.com + + + host + *.sharpmen.com + + + + + Shaun Lorrain.com.au + + ruleset + + name + Shaun Lorrain.com.au + rule + + from + ^http://(www\.)?shaunlorrain\.com\.au/ + to + https://$1shaunlorrain.com.au/ + + target + + + host + shaunlorrain.com.au + + + host + www.shaunlorrain.com.au + + + + + Shazam (partial) + + ruleset + + name + Shazam (partial) + rule + + + from + ^http://myshazam\.com/ + to + https://myshazam.com/ + + + from + ^http://www\.myshazam\.com/ + to + https://www.shazam.com/ + + + from + ^http://(?:www\.)?shazam\.com/ + to + https://www.shazam.com/ + + + from + ^http://(cdn|support)\.shazam\.com/ + to + https://$1.shazam.com/ + + + from + ^http://orbit\.shazamid\.com/ + to + https://orbit.shazamid.com/ + + + securecookie + + + host + ^myshazam\.com$ + name + .+ + + + host + ^(?:support|www)\.shazam\.com$ + name + .+ + + + target + + + host + myshazam.com + + + host + www.myshazam.com + + + host + shazam.com + + + host + *.shazam.com + + + host + orbit.shazamid.com + + + + + SheVibe.com (partial) + + ruleset + + name + SheVibe.com (partial) + rule + + from + ^http://(?:www\.)?shevibe\.com/(?=\w+\.css|\w+/css/|(?:cart|login|order-lookup|send-password)\.aspx|favicon\.ico|features/|[\w.]+_files/|images/|scripts/|template/) + to + https://www.shevibe.com/ + + target + + + host + shevibe.com + + + host + www.shevibe.com + + + + + Sheet Music Plus (partial) + + ruleset + + name + Sheet Music Plus (partial) + platform + mixedcontent + rule + + + from + ^http://sheetmusicplus\.com/ + to + https://www.sheetmusicplus.com/ + + + from + ^http://www\.sheetmusicplus\.com/(account/orders|affiliates|cart/save_item|checkout|easyrebates|favicon\.ico|newsletter/signup|sign_(in|up)) + to + https://www.sheetmusicplus.com/$1 + + + from + ^http://(?:ssl\.)?assets\.sheetmusicplus\.com/ + to + https://d29ci68ykuu27r.cloudfront.net/ + + + target + + + host + sheetmusicplus.com + + + host + *.sheetmusicplus.com + + + host + ssl.assets.sheetmusicplus.com + + + + + Shellter Project.com + + ruleset + + name + Shellter Project.com + rule + + from + ^http://(www\.)?shellterproject\.com/ + to + https://$1shellterproject.com/ + + target + + + host + shellterproject.com + + + host + www.shellterproject.com + + + + + Shenandoah University (partial) + + ruleset + + name + Shenandoah University (partial) + rule + + from + ^http://cdn\.su\.edu/ + to + https://8e30e7d033d0eb544c88-cfde4bf79d8fc6cacaa1550c45dd6099.ssl.cf1.rackcdn.com/ + + target + + host + cdn.su.edu + + + + Sheperds Friendly Society + + ruleset + + name + Sheperds Friendly Society + rule + + from + ^http://(?:www\.)?shepherdsfriendly\.co\.uk/ + to + https://www.shepherdsfriendly.co.uk/ + + securecookie + + host + ^www\.shepherdsfriendly\.co\.uk$ + name + .+ + + target + + + host + shepherdsfriendly.co.uk + + + host + www.shepherdsfriendly.co.uk + + + + + Shiftboard.com (partial) + + ruleset + + name + Shiftboard.com (partial) + rule + + from + ^http://(?:www\.)?shiftboard\.com/ + to + https://www.shiftboard.com/ + + target + + + host + shiftboard.com + + + host + www.shiftboard.com + + + + + Shipment + + ruleset + + name + Shipment + rule + + from + ^http://(www\.)?ship-ment\.com/ + to + https://$1ship-ment.com/ + + securecookie + + host + ^\.(?:www\.)?ship-ment\.com$ + name + .+ + + target + + + host + ship-ment.com + + + host + *.ship-ment.com + + + + + Shipto.com (partial) + + ruleset + + name + Shipto.com (partial) + rule + + from + ^http://(www\.)?shipto\.com/(en/questions(?:$|\?|/)|favicon\.ico|qa-theme/) + to + https://$1shipto.com/$2 + + target + + + host + shipto.com + + + host + www.shipto.com + + + + + ShmooCon + + ruleset + + name + ShmooCon + rule + + from + ^http://(www\.)?shmoocon\.org/ + to + https://$1shmoocon.org/ + + target + + + host + shmoocon.org + + + host + www.shmoocon.org + + + + + Shmoop.com (partial) + + ruleset + + name + Shmoop.com (partial) + rule + + + from + ^http://(?:www\.)?shmoop\.com/(?=assets/|code/|js/|login\.html|min/|register-extended\.html) + to + https://www.shmoop.com/ + + + from + ^http://media1\.shmoop\.com/ + to + https://d32v6r6fgi4k49.cloudfront.net/ + + + target + + + host + shmoop.com + + + host + *.shmoop.com + + + + + Shock Media.nl + + ruleset + + name + Shock Media.nl + rule + + + from + ^http://(?:www\.)?shockmedia\.nl/ + to + https://www.shockmedia.nl/ + + + from + ^http://(my|webmail)\.shockmedia\.nl/ + to + https://$1.shockmedia.nl/ + + + securecookie + + host + .+\.shockmedia\.nl$ + name + .+ + + target + + + host + shockmedia.nl + + + host + *.shockmedia.nl + + + + + Shodan.io + + ruleset + + name + Shodan.io + rule + + from + ^http://((?:developer|static|www)\.)?shodan\.io/ + to + https://$1shodan.io/ + + securecookie + + host + ^shodan\.io$ + name + .+ + + target + + + host + shodan.io + + + host + *.shodan.io + + + + + Shoebuy.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:designer\.|www\.)?shoebuy\.com/(?!(?:cart|cust|lists)(?:$|[?/])|coremetrics/|css/|favicon\.ico|images/|jscript/) + + name + Shoebuy.com (partial) + rule + + + from + ^http://(designer\.|www\.)?shoebuy\.com/ + to + https://$1shoebuy.com/ + + + from + ^http://att-i\.shoebuy\.com/css/ + to + https://www.shoebuy.com/css/ + + + from + ^http://att-i\.shoebuy\.com/ + to + https://a248.e.akamai.net/f/1095/1/g2/att-i.shoebuy.com/ + + + from + ^http://i\.shoebuy\.com/ + to + https://a248.e.akamai.net/f/727/1/g/i.shoebuy.com/ + + + target + + + host + shoebuy.com + + + host + *.shoebuy.com + + + + + Shop Mimi Green.com + + ruleset + + name + Shop Mimi Green.com + rule + + from + ^http://(www\.)?shopmimigreen\.com/ + to + https://$1shopmimigreen.com/ + + securecookie + + host + ^www\.shopmimigreen\.com$ + name + .+ + + target + + + host + shopmimigreen.com + + + host + www.shopmimigreen.com + + + + + Shop Your Way.com (partial) + + ruleset + + name + Shop Your Way.com (partial) + rule + + from + ^http://(www\.)?shopyourway\.com/static/ + to + https://$1shopyourway.com/static/ + + target + + + host + shopyourway.com + + + host + www.shopyourway.com + + + + + ShopCo.com (partial) + + ruleset + + name + ShopCo.com (partial) + rule + + from + ^http://(?!www\.)([\w-]+)\.shopco\.com/ + to + https://$1.shopco.com/ + + securecookie + + host + .+\.shopco\.com$ + name + .+ + + target + + host + *.shopco.com + + + + ShopLocal + + ruleset + + name + ShopLocal + platform + mixedcontent + rule + + + from + ^https?://(?:ak)?images\.crossmediaservices\.com/ + to + https://akimages.shoplocal.com/ + + + from + ^http://((?:akimages|sl2|support|wiki|www)\.)?shoplocal\.com/ + to + https://$1shoplocal.com/ + + + securecookie + + host + ^(?:support|wiki|www)\.shoplocal\.com$ + name + .+ + + target + + + host + *.crossmediaservices.com + + + host + shoplocal.com + + + host + *.shoplocal.com + + + + + ShopMania (partial) + + ruleset + + exclusion + + + pattern + ^http://biz\.shopmania\.(?:com|es)/+(?:$|\?) + + + pattern + ^http://www\.shopmania\.(?:com|es)/+(?!favicon\.ico|img/) + + + pattern + ^http://partner\.shopmania\.(?:com|es)/+(?!dashboard(?:$|[?/])|favicon\.ico) + + + name + ShopMania (partial) + rule + + + from + ^http://((?:biz|cp|dashboard|www)\.)?shopmania\.(com|es)/ + to + https://$1shopmania.$2/ + + + from + ^http://(fl\d+|im\d+)\.shopmania\.org/ + to + https://$1.shopmania.org/ + + + target + + + host + shopmania.com + + + host + *.shopmania.com + + + host + shopmania.es + + + host + *.shopmania.es + + + host + *.shopmania.org + + + + + ShopStyle (partial) + + ruleset + + name + ShopStyle (partial) + rule + + + from + ^http://(ads\.|shopsense\.|www\.)?shopstyle\.com/ + to + https://$1shopstyle.com/ + + + from + ^http://(www\.)?shopsense\.co\.jp/ + to + https://$1shopsense.co.jp/ + + + from + ^https?://(?:www\.)?shopstyle\.(com\.au|co\.uk|de|fr)/ + to + https://www.shopstyle.$1/ + + + securecookie + + host + ^.*\.shopstyle\.[\w\.]{2,6}$ + name + .* + + target + + + host + shopstyle.* + + + host + www.shopstyle.* + + + host + shopstyle.co.* + + + host + *.shopstyle.com + + + host + shopstyle.com.au + + + host + *.shopstyle.com.au + + + host + *.shopstyle.co.jp + + + host + *.shopstyle.co.uk + + + host + *.shopstyle.de + + + host + *.shopstyle.fr + + + + + ShopWiki (partial) + + ruleset + + name + ShopWiki (partial) + platform + mixedcontent + rule + + + from + ^http://((?:redir|staticssl|wiki|www)\.)?shopwiki\.com/ + to + https://$1shopwiki.com/ + + + from + ^https?://static2\.shopwiki\.com/ + to + https://d2wh0l1jxh2l45.cloudfront.net/ + + + from + ^http://s\.shwcd\.com/ + to + https://www.shopwiki.com/ + + + securecookie + + host + ^.*\.shopwiki\.com$ + name + .+ + + target + + + host + shopwiki.com + + + host + *.shopwiki.com + + + + + Shopatron (partial) + + ruleset + + name + Shopatron (partial) + rule + + + from + ^http://(?:www\.)?orderhlp\.com/ + to + https://www.orderhlp.com/ + + + from + ^http://(media\.|mss\.|www\.)?shopatron\.com/ + to + https://$1shopatron.com/ + + + from + ^http://mediacdn\.shopatron\.com/ + to + https://media.shopatron.com/ + + + from + ^http://cdn\.shptrn\.com/ + to + https://cdn.shptrn.com/ + + + securecookie + + host + ^www\.(?:orderhlp|shopatron)\.com$ + name + .+ + + target + + + host + orderhlp.com + + + host + www.orderhlp.com + + + host + shopatron.com + + + host + *.shopatron.com + + + host + cdn.shptrn.com + + + + + Shopify (partial) + + ruleset + + name + Shopify (partial) + rule + + + from + ^http://([\w-]+)\.myshopify\.com/ + to + https://$1.myshopify.com/ + + + from + ^http://((?:apps|cdn|checkout|static|themes|www)\.)?shopify\.com/ + to + https://$1shopify.com/ + + + from + ^http://cdn\.apps\.shopify\.com/ + to + https://apps.shopify.com/ + + + securecookie + + + host + ^\w.*\.myshopify\.com$ + name + .+ + + + host + ^themes\.shopify\.com$ + name + .+ + + + target + + + host + *.myshopify.com + + + host + shopify.com + + + host + *.shopify.com + + + + + Shopper Approved.com + + ruleset + + name + Shopper Approved.com + rule + + from + ^http://(www\.)?shopperapproved\.com/ + to + https://$1shopperapproved.com/ + + securecookie + + host + ^\.?www\.shopperapproved\.com$ + name + .+ + + target + + + host + shopperapproved.com + + + host + *.shopperapproved.com + + + + + Shopping Cart Elite + + ruleset + + name + Shopping Cart Elite + rule + + from + ^http://(www\.)?shoppingcartelite\.com/ + to + https://$1shoppingcartelite.com/ + + securecookie + + host + ^(?:.*\.)?shoppingcartelite\.com$ + name + .+ + + target + + + host + shoppingcartelite.com + + + host + *.shoppingcartelite.com + + + + + Shopping.com (partial) + + ruleset + + exclusion + + pattern + ^http://developer\.shopping\.com/(?!files/|login/|member/|public/) + + name + Shopping.com (partial) + rule + + from + ^http://(developer|haendler|marchand|(?:uk)?merchant|partners)\.shopping\.com/ + to + https://$1.shopping.com/ + + securecookie + + host + ^(?!developer).+\.shopping\.com$ + name + .+ + + target + + host + *.shopping.com + + + + Shoptiques.com (partial) + + ruleset + + name + Shoptiques.com (partial) + rule + + + from + ^http://(www\.)?shoptiques\.com/((?:account|login)(?:$|\?|/)|api/|static/) + to + https://$1shoptiques.com/$2 + + + from + ^http://metrics\.shoptiques\.com/ + to + https://metrics.shoptiques.com/ + + + from + ^http://cdn2\.shoptiques\.net/ + to + https://d2csjd0bj2nauk.cloudfront.net/ + + + target + + + host + shoptiques.com + + + host + *.shoptiques.com + + + host + cdn2.shoptiques.net + + + + + Shopware.de (partial) + + ruleset + + exclusion + + pattern + ^http://www\.shopware\.de/+(?!favicon\.ico|images/|templates/) + + name + Shopware.de (partial) + rule + + from + ^http://(www\.)?shopware\.de/ + to + https://$1shopware.de/ + + target + + + host + shopware.de + + + host + www.shopware.de + + + + + Shopzilla (partial) + + ruleset + + name + Shopzilla (partial) + rule + + + from + ^http://(?:www\.)?shopzilla\.com/ + to + https://www.shopzilla.com/ + + + from + ^http://merchant\.shopzilla\.com/ + to + https://merchant.shopzilla.com/ + + + securecookie + + host + ^\.shopzilla\.com$ + name + .* + + target + + + host + shopzilla.com + + + host + *.shopzilla.com + + + + + ShortList + + ruleset + + name + ShortList + rule + + + from + ^http://(www\.)?shortlist\.com/ + to + https://$1shortlist.com/ + + + from + ^https?://cdn\.shortlist\.com/ + to + https://d20z6n9g3vmn1.cloudfront.net/ + + + securecookie + + host + ^(?:www\.)?shortlist\.com$ + name + .+ + + target + + + host + shortlist.com + + + host + *.shortlist.com + + + + + Shorty Awards.com (partial) + + ruleset + + name + Shorty Awards.com (partial) + rule + + + from + ^http://cdn\.shortyawards\.com/ + to + https://d3f8w85pjd4o8c.cloudfront.net/ + + + from + ^http://industry\.shortyawards\.com/(account|static)/ + to + https://industry.shortyawards.com/$1/ + + + securecookie + + host + ^\.industry\.shortyawards\.com$ + name + ^__utm\w$ + + target + + host + *.shortyawards.com + + + + Shotgun Club + + ruleset + + name + Shotgun Club + rule + + from + ^http://(www\.)?shotgunclub\.com/ + to + https://$1shotgunclub.com/ + + securecookie + + host + ^(?:w*\.)?shotgunclub\.com$ + name + .+ + + target + + + host + shotgunclub.com + + + host + *.shotgunclub.com + + + + + Shoutback Concepts (partial) + + ruleset + + name + Shoutback Concepts (partial) + rule + + from + ^http://static\.shoutback\.com/ + to + https://static.shoutback.com/ + + target + + host + static.shoutback.com + + + + ShoveHost.com + + ruleset + + name + ShoveHost.com + rule + + from + ^http://(my\.|www\.)?shovehost\.com/ + to + https://$1shovehost.com/ + + securecookie + + host + ^(?:my)?\.shovehost\.com$ + name + .+ + + target + + + host + shovehost.com + + + host + *.shovehost.com + + + + + ShowMeCon.com (partial) + + ruleset + + name + ShowMeCon.com (partial) + rule + + from + ^http://(www\.)?showmecon\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1showmecon.com/ + + target + + + host + showmecon.com + + + host + *.showmecon.com + + + + + Showcase-TV + + ruleset + + name + Showcase-TV + platform + mixedcontent + rule + + + from + ^http://click-finder\.jp/ + to + https://click-finder.jp/ + + + from + ^http://hadalog\.jp/ + to + https://hadalog.jp/ + + + from + ^http://(www\.)?hoku\.co\.jp/ + to + https://$1hoku.co.jp/ + + + from + ^http://(www\.)?navicast\.co\.jp/ + to + https://$1navicast.co.jp/ + + + from + ^http://(www\.)?showcase-tv\.com/ + to + https://$1showcase-tv.com/ + + + from + ^http://click\.showcase-tv\.jp/ + to + https://click.showcase-tv.jp/ + + + target + + + host + click-finder.jp + + + host + hadalog.jp + + + host + hoku.co.jp + + + host + www.hoku.co.jp + + + host + navicast.co.jp + + + host + www.navicast.co.jp + + + host + showcase-tv.com + + + host + www.showcase-tv.com + + + host + click.showcase-tv.jp + + + + + Showcase.ca (partial) + + ruleset + + name + Showcase.ca (partial) + rule + + + from + ^http://(?:www\.)?showcase\.ca/(?=favicon\.ico|imagehandler\.axd|SharedAssets/) + to + https://a248.e.akamai.net/f/1694/6292/3/www.showcase.ca/ + + + from + ^http://media\.showcase\.ca/ + to + https://d2wk97pdwmv7mo.cloudfront.net/ + + + target + + + host + showcase.ca + + + host + *.showcase.ca + + + + + Showing Cloud.com + + ruleset + + name + Showing Cloud.com + rule + + from + ^http://((?:cn|en|www)\.)?showingcloud\.com/ + to + https://$1showingcloud.com/ + + securecookie + + host + ^(?:cn|www)?\.showingcloud\.com$ + name + .+ + + target + + + host + showingcloud.com + + + host + *.showingcloud.com + + + + + Shpock + + ruleset + + name + Shpock + rule + + from + ^http://(?:www\.)?shpock\.com/ + to + https://shpock.com/ + + securecookie + + host + ^\.?shpock\.com$ + name + .+ + + target + + + host + shpock.com + + + host + *.shpock.com + + + + + ShrinkTheWeb + + ruleset + + name + ShrinkTheWeb + rule + + + from + ^http://(?:www\.)?shrinktheweb\.com/ + to + https://www.shrinktheweb.com/ + + + from + ^http://www\.shrinktheweb\.com/blog$ + to + https://www.shrinktheweb.com/blogs/ + + + from + ^http://images\.shrinktheweb\.com/ + to + https://images.shrinktheweb.com/ + + + from + ^https?://learn\.shrinktheweb\.com/ + to + https://www.shrinktheweb.com/learn/index.html + + + securecookie + + host + ^.*\.shrinktheweb\.com$ + name + .* + + target + + + host + shrinktheweb.com + + + host + *.shrinktheweb.com + + + host + *.images.shrinktheweb.com + + + + + Shuddle.us + + ruleset + + name + Shuddle.us + rule + + from + ^http://(?:((?:blog|california|support)\.)|www\.)?shuddle\.us/ + to + https://$1shuddle.us/ + + target + + + host + shuddle.us + + + host + *.shuddle.us + + + + + Shurgard + + ruleset + + name + Shurgard + rule + + + from + ^https?://shurgardpayment\.eu/ + to + https://www.shurgardpayment.eu/ + + + from + ^http://([^/:@]+)?\.shurgardpayment\.eu/ + to + https://$1.shurgardpayment.eu/ + + + target + + + host + shurgardpayment.eu + + + host + *.shurgardpayment.eu + + + + + Shut the Backdoor.net + + ruleset + + name + Shut the Backdoor.net + rule + + from + ^http://(www\.)?shutthebackdoor\.net/ + to + https://$1shutthebackdoor.net/ + + securecookie + + host + ^\.shutthebackdoor\.net$ + name + .+ + + target + + + host + shutthebackdoor.net + + + host + *.shutthebackdoor.net + + + + + Shutterfly (partial) + + ruleset + + name + Shutterfly (partial) + rule + + + from + ^https?://(?:businesssolutions|sbmsshare)\.shutterfly\.com/ + to + https://sbmsshare.shutterfly.com/ + + + from + ^http://(sbmsomp\.|web1\.|www\.)?shutterfly\.com/ + to + https://$1shutterfly.com/ + + + from + ^https?://sortino\.shutterfly\.com/$ + to + https://www.lexusdealerstore.com/lexus/ + + + from + ^http://cdn(\d)?\.staticsfly\.com/ + to + https://cdn$1.staticsfly.com/ + + + securecookie + + host + ^(www)?\.shutterfly\.com$ + name + .* + + target + + + host + shutterfly.com + + + host + *.shutterfly.com + + + host + *.staticsfly.com + + + + + Shutterstock (partial) + + ruleset + + name + Shutterstock (partial) + rule + + + from + ^http://absinthe\.picdn\.net/ + to + https://a248.e.akamai.net/f/1796/8888/2f/absinthe.picdn.net/ + + + from + ^http://s\d\.picdn\.net/ + to + https://www.shutterstock.com/ + + + from + ^http://(www\.)?shutterstock\.com/(css/|images/|js/|subscribe(?:11)?\.mhtml) + to + https://$1shutterstock.com/$2 + + + from + ^http://(absinthe|lilb2)\.shutterstock\.com/ + to + https://$1.shutterstock.com/ + + + from + ^http://static6\.shutterstock\.com/ + to + https://a248.e.akamai.net/f/370/1360/2d/static6.shutterstock.com/ + + + securecookie + + host + ^\.shutterstock\.com$ + name + ^(?:IRF_3|__utm\w)$ + + target + + + host + *.picdn.net + + + host + shutterstock.com + + + host + *.shutterstock.com + + + + + SickDay surf shop.com + + ruleset + + name + SickDay surf shop.com + rule + + from + ^http://(www\.)?sickdaysurfshop\.com/ + to + https://$1sickdaysurfshop.com/ + + securecookie + + host + ^\.sickdaysurfshop\.com$ + name + .+ + + target + + + host + sickdaysurfshop.com + + + host + *.sickdaysurfshop.com + + + + + SideCar + + ruleset + + name + SideCar + rule + + from + ^https?://(?:www\.)?side\.cr/ + to + https://www.side.cr/ + + target + + + host + side.cr + + + host + www.side.cr + + + + + SideReel (partial) + + ruleset + + name + SideReel (partial) + rule + + + from + ^http://(www\.)?sidereel\.com/(_webapi/|images/|stylesheets/|users) + to + https://$1sidereel.com/$2 + + + from + ^https?://[as]3\.sidereel\.com/ + to + https://s3.amazonaws.com/sidereel-production-static/ + + + from + ^https?://editorial\.sidereel\.com/ + to + https://sidereel-editorial.s3.amazonaws.com/ + + + from + ^http://snowball\.sidereel\.com/ + to + https://snowball.sidereel.com/ + + + securecookie + + host + ^snowball\.sidereel\.com$ + name + .+ + + target + + + host + sidereel.com + + + host + *.sidereel.com + + + + + Sidearm Sports (partial) + + ruleset + + name + Sidearm Sports (partial) + rule + + from + ^https?://assets\.sidearmsports\.com/ + to + https://s3.amazonaws.com/assets.sidearmsports.com/ + + target + + host + assets.sidearmsports.com + + + + Sideshowtoy.com + + ruleset + + name + Sideshowtoy.com + rule + + from + ^http://(www\.)?sideshowtoy\.com/ + to + https://$1sideshowtoy.com/ + + securecookie + + host + ^www\.sideshowtoy\.com$ + name + .+ + + target + + + host + sideshowtoy.com + + + host + www.sideshowtoy.com + + + + + SidiЪouras + + ruleset + + name + SidiЪouras + rule + + from + ^http://(www\.)?sidibouras\.com/ + to + https://$1sidibouras.com/ + + securecookie + + host + ^(?:www)?\.sidibouras\.com$ + name + .+ + + target + + + host + sidibouras.com + + + host + *.sidibouras.com + + + + + Siemens.com (partial) + + ruleset + + name + Siemens.com (partial) + rule + + + from + ^http://www\.siemens\.co\.id/ + to + https://www.siemens.co.id/ + + + from + ^https?://www\.siemens\.co\.jp/ + to + https://www.siemens.com/answers/jp/ja/ + + + from + ^https?://www\.siemens\.co\.in/ + to + https://www.siemens.com/answers/in/en/ + + + from + ^https?://www\.siemens\.co\.kr/ + to + https://www.siemens.com/answers/kr/ko/ + + + from + ^http://(w1\.|www\.)?siemens\.com/ + to + https://$1siemens.com/ + + + from + ^http://www\.siemens\.com\.(hk|mx)/ + to + https://www.siemens.com.$1/ + + + from + ^https?://www\.siemens\.com\.kw/ + to + https://w1.siemens.com/answers/kw/en/ + + + from + ^https?://(?:www\.)?siemens\.hu/ + to + https://w1.siemens.com/answers/hu/hu/ + + + from + ^https?://(?:www\.)?siemens\.ie/ + to + https://w1.siemens.com/entry/ie/en/ + + + from + ^https?://(?:www\.)?siemens\.it/ + to + https://www.siemens.com/entry/it/index.htm + + + from + ^https?://www\.siemens\.lv/ + to + https://w1.siemens.com/entry/lv/ + + + securecookie + + host + ^.*\.siemens\.com$ + name + .* + + target + + + host + siemens.* + + + host + *.siemens.com + + + host + www.siemens.* + + + host + www.siemens.co.* + + + host + www.siemens.com.* + + + + + Sierra Club Green Home (partial) + + ruleset + + name + Sierra Club Green Home (partial) + rule + + from + ^http://(www\.)?sierraclubgreenhome\.com/ + to + https://$1sierraclubgreenhome.com/ + + securecookie + + host + ^\.sierraclubgreenhome\.com$ + name + .+ + + target + + + host + sierraclubgreenhome.com + + + host + *.sierraclubgreenhome.com + + + + + SigFig + + ruleset + + name + SigFig + rule + + from + ^http://((?:beta|blog|secure|www)\.)?sigfig\.com/ + to + https://$1sigfig.com/ + + securecookie + + host + ^\.www\.sigfig\.com$ + name + .+ + + target + + + host + sigfig.com + + + host + *.sigfig.com + + + host + *.www.sigfig.com + + + + + Sigma Xi.org + + ruleset + + name + Sigma Xi.org + rule + + from + ^http://(www\.)?sigmaxi\.org/ + to + https://$1sigmaxi.org/ + + securecookie + + host + ^www\.sigmaxi\.org$ + name + .+ + + target + + + host + sigmaxi.org + + + host + www.sigmaxi.org + + + + + SigmaBeauty + + ruleset + + name + SigmaBeauty + rule + + from + ^http://(?:www\.)?sigmabeauty\.com/ + to + https://www.sigmabeauty.com/ + + target + + + host + www.sigmabeauty.com + + + host + sigmabeauty.com + + + + + Signal Spam + + ruleset + + name + Signal Spam + rule + + from + ^http://(?:www\.)?signal-spam\.fr/ + to + https://www.signal-spam.fr/ + + target + + + host + signal-spam.fr + + + host + www.signal-spam.fr + + + + + Signals + + ruleset + + name + Signals + rule + + + from + ^https?://signals\.com/ + to + https://www.signals.com/ + + + from + ^http://(images|shop|www3?)\.signals\.com/ + to + https://$1.signals.com/ + + + securecookie + + host + ^\.signals\.com$ + name + .+ + + target + + + host + signals.com + + + host + *.signals.com + + + + + Sigterm.no + + ruleset + + name + Sigterm.no + rule + + from + ^http://(?:www\.)?sigterm\.no/ + to + https://sigterm.no/ + + target + + + host + sigterm.no + + + host + www.sigterm.no + + + + + Silent Circle + + ruleset + + name + Silent Circle + rule + + from + ^http://(?:(accounts\.|mail\.|stats\.)|www\.)?silentcircle\.com/ + to + https://$1silentcircle.com/ + + securecookie + + host + ^accounts\.silentcircle\.com$ + name + .+ + + target + + + host + silentcircle.com + + + host + *.silentcircle.com + + + + + Silent Sender.com + + ruleset + + name + Silent Sender.com + rule + + from + ^http://(?:www\.)?silentsender\.com/ + to + https://www.silentsender.com/ + + securecookie + + host + ^www\.silentsender\.com$ + name + .+ + + target + + + host + silentsender.com + + + host + www.silentsender.com + + + + + Silentcircle.org + + ruleset + + name + Silentcircle.org + rule + + from + ^http://((?:accounts|partners\.accounts|blog|business|downloads|sccps|support|www)\.)?silentcircle\.org/ + to + https://$1silentcircle.org/ + + securecookie + + host + ^silentcircle\.org$ + name + .+ + + target + + + host + silentcircle.org + + + host + *.silentcircle.org + + + + + Silicon Labs + + ruleset + + name + Silicon Labs + rule + + from + ^https?://(?:www\.)?silabs\.com/ + to + https://www.silabs.com/ + + securecookie + + host + ^www\.silabs\.com$ + name + .* + + target + + + host + silabs.com + + + host + www.silabs.com + + + + + Silicon Valley Bank + + ruleset + + name + Silicon Valley Bank + rule + + from + ^https?://(?:www\.)?svb\.com/ + to + https://www.svb.com/ + + securecookie + + host + ^www\.svb\.com$ + name + .+ + + target + + + host + svb.com + + + host + www.svb.com + + + + + Silicon.com + + ruleset + + name + Silicon.com + rule + + + from + ^http://silicon\.com/ + to + https://www.silicon.com/ + + + from + ^http://www\.silicon\.com/ + to + https://www.silicon.com/ + + + target + + + host + silicon.com + + + host + www.silicon.com + + + + + SilkRoad (partial) + + ruleset + + exclusion + + pattern + ^http://(pages|www)\. + + name + SilkRoad (partial) + rule + + from + ^http://([\w\-]+)\.silkroad\.com/ + to + https://$1.silkroad.com/ + + securecookie + + host + ^.*\.silkroad\.com$ + name + .* + + target + + host + *.silkroad.com + + + + Silkn.com + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?silkn\.com/(?!images/|include/|RadControls/|scripts/|upload/|WebResource\.axd) + + name + Silkn.com + rule + + + from + ^http://(?:www\.)?buyfacefx\.com/ + to + https://www.buyfacefx.com/ + + + from + ^http://(shop\.|www\.)?silkn\.com/ + to + https://$1silkn.com/ + + + securecookie + + host + ^shop\.silkn\.com$ + name + .+ + + target + + + host + buyfacefx.com + + + host + www.buyfacefx.com + + + host + silkn.com + + + host + *.silkn.com + + + + + Silkroad WS (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?silkroad\.ws/(?!addons/|cron\.php|img/) + + name + Silkroad WS (partial) + rule + + from + ^http://(forum\.|www\.)?silkroad\.ws/ + to + https://$1silkroad.ws/ + + securecookie + + host + ^forum\.silkroad\.ws$ + name + .+ + + target + + + host + silkroad.ws + + + host + *.silkroad.ws + + + + + Silkspan.com + + ruleset + + name + Silkspan.com + rule + + from + ^http://(www\.)?silkspan\.com/ + to + https://www.silkspan.com/ + + target + + + host + silkspan.com + + + host + www.silkspan.com + + + + + Silktide (partial) + + ruleset + + name + Silktide (partial) + rule + + + from + ^https?://cdn\.silktide\.com/ + to + https://d2cbphali8h73p.cloudfront.net/ + + + from + ^https?://assets\.cookieconsent\.silktide\.com/ + to + https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/ + + + from + ^https?://status\.silktide\.com/ + to + https://silktide-status.herokuapp.com/ + + + target + + + host + *.silktide.com + + + host + assets.cookieconsent.silktide.com + + + + + Silobreaker (partial) + + ruleset + + name + Silobreaker (partial) + rule + + + from + ^http://(api|my)\.silobreaker\.com/ + to + https://$1.silobreaker.com/ + + + from + ^https?://(?:cache\.)?thumbs\.s(?:bstatic|ilobreaker)\.com/ + to + https://thumbs.silobreaker.com/ + + + securecookie + + host + ^my\.silobreaker\.com$ + name + .+ + + target + + + host + thumbs.sbstatic.com + + + host + cache.thumbs.sbstatic.com + + + host + *.silobreaker.com + + + + + Silva Wood Flooring + + ruleset + + name + Silva Wood Flooring + rule + + from + ^http://(www\.)?silvawoodflooring\.co\.uk/ + to + https://$1silvawoodflooring.co.uk/ + + securecookie + + host + ^(?:www)?\.silvawoodflooring\.co\.uk$ + name + .+ + + target + + + host + silvawoodflooring.co.uk + + + host + *.silvawoodflooring.co.uk + + + + + Silver Oven (partial) + + ruleset + + name + Silver Oven (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?investorflow\.com/ + to + https://$1investorflow.com/ + + securecookie + + host + ^(.*\.)?investorflow.com$ + name + .* + + target + + + host + investorflow.com + + + host + www.investorflow.com + + + + + SilverRush Style (partial) + + ruleset + + name + SilverRush Style (partial) + rule + + + from + ^http://(?:www\.)?silverrushstyle\.com/ + to + https://www.silverrushstyle.com/ + + + from + ^http://secure\.silverrushstyle\.com/ + to + https://secure.silverrushstyle.com/ + + + securecookie + + host + ^\.silverrushstyle\.com$ + name + .+ + + target + + + host + silverrushstyle.com + + + host + *.silverrushstyle.com + + + + + Silverpop (partial) + + ruleset + + name + Silverpop (partial) + rule + + + from + ^http://([\w-]+)\.links\.mkt41\.net/ + to + https://$1.links.mkt41.net/ + + + from + ^http://content\.mkt51\.net/ + to + https://d24q9byeq1ve1q.cloudfront.net/ + + + from + ^http://content\.mkt941\.com/ + to + https://d2sv5ahunhut4x.cloudfront.net/ + + + from + ^http://contenta\.mkt1710\.com/ + to + https://d35xxa4d4yp600.cloudfront.net/ + + + from + ^http://(www\.)?pages03\.net/ + to + https://www.pages03.net/ + + + from + ^http://(gw|login1|www1?)\.vtrenz\.net/ + to + https://$1.vtrenz.net/ + + + target + + + host + *.links.mkt41.net + + + host + content.mkt51.net + + + host + content.mkt941.com + + + host + contenta.mkt1710.com + + + host + pages03.net + + + host + www.pages03.net + + + host + *.vtrenz.net + + + + + Sim City.com (partial) + + ruleset + + name + Sim City.com (partial) + rule + + from + ^http://(?:www\.)?simcity\.com/(?=favicon\.ico|sites/) + to + https://www.simcity.com/ + + target + + + host + simcity.com + + + host + www.simcity.com + + + + + SimilarWeb (partial) + + ruleset + + name + SimilarWeb (partial) + rule + + from + ^http://developer\.similarweb\.com/ + to + https://developer.similarweb.com/ + + securecookie + + host + ^developer\.similarweb\.com$ + name + .+ + + target + + host + developer.similarweb.com + + + + Simon Butcher + + ruleset + + name + Simon Butcher + platform + firefox + rule + + from + ^http://simon\.butcher\.name/ + to + https://simon.butcher.name/ + + securecookie + + host + ^simon\.butcher\.name$ + name + .+ + + target + + host + simon.butcher.name + + + + Simosnap.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.community|developers)\.simosnap\.com/+(?!$|\?) + + name + Simosnap.com (partial) + rule + + from + ^http://(?:(?:www\.)?community|developers)\.simosnap\.com/ + to + https://community.simosnap.com/ + + securecookie + + host + ^community\.simosnap\.com$ + name + .+ + + target + + host + *.simosnap.com + + + + Simple Pickup (partial) + + ruleset + + name + Simple Pickup (partial) + rule + + from + ^http://(www\.)?simplepickup\.com/ + to + https://$1simplepickup.com/ + + securecookie + + host + ^(?:w*\.)?simplepickup\.com$ + name + .+ + + target + + + host + simplepickup.com + + + host + *.simplepickup.com + + + + + Simple Talk (partial) + + ruleset + + name + Simple Talk (partial) + rule + + from + ^https?://(?:www\.)?simple-talk\.com/ + to + https://www.simple-talk.com/ + + securecookie + + host + ^www\.simple-talk\.com$ + name + .* + + target + + + host + simple-talk.com + + + host + www.simple-talk.com + + + + + Simple.com + + ruleset + + name + Simple.com + platform + firefox + rule + + from + ^http://bank\.simple\.com/ + to + https://bank.simple.com/ + + securecookie + + host + ^bank\.simple\.com$ + name + .+ + + target + + host + bank.simple.com + + + + SimpleReach.com + + ruleset + + name + SimpleReach.com + rule + + + from + ^http://(?:www\.)?simplereach\.com/ + to + https://www.simplereach.com/ + + + from + ^http://cc\.simplereach\.com/ + to + https://cc.simplereach.com/ + + + securecookie + + host + ^(?:www)?\.simplereach\.com$ + name + .+ + + target + + + host + simplereach.com + + + host + *.simplereach.com + + + + + Simpli.fi (partial) + + ruleset + + name + Simpli.fi (partial) + rule + + from + ^http://(app|i)\.simpli\.fi/ + to + https://$1.simpli.fi/ + + securecookie + + + host + ^\.simpli\.fi$ + name + ^uid(?:_syncd)?$ + + + host + ^app\.simpli\.fi$ + name + .+ + + + target + + host + *.simpli.fi + + + + Simply Business + + ruleset + + name + Simply Business + rule + + from + ^http://(?:www\.)?simplybusiness\.co\.uk/ + to + https://www.simplybusiness.co.uk/ + + securecookie + + host + ^www\.simplybusiness\.co\.uk$ + name + .+ + + target + + + host + simplybusiness.co.uk + + + host + www.simplybusiness.co.uk + + + + + Simply Hired + + ruleset + + name + Simply Hired + rule + + + from + ^http://([\w\-]+\.)?jobamatic\.com/ + to + https://$1jobamatic.com/ + + + from + ^http://(www\.)?simplyhired\.com/(a|c|event-logging|static)/ + to + https://$1simplyhired.com/$2/ + + + from + ^http://support\.simplyhired\.com/(assets|generated|images|system)/ + to + https://simplyhired.zendesk.com/$1/ + + + securecookie + + + host + ^www\.jobamatic\.com$ + name + .* + + + host + ^\.simplyhired\.com$ + name + ^__utm\w$ + + + target + + + host + jobamatic.com + + + host + *.jobamatic.com + + + host + simplyhired.com + + + host + *.simplyhired.com + + + + + Simply Secure.org + + ruleset + + name + Simply Secure.org + rule + + from + ^http://(?:www\.)?simplysecure\.org/ + to + https://simplysecure.org/ + + securecookie + + host + ^www\.simplysecure\.org$ + name + .+ + + target + + + host + simplysecure.org + + + host + www.simplysecure.org + + + + + Simply Stamps (partial) + + ruleset + + name + Simply Stamps (partial) + rule + + from + ^http://(www\.)?simplystamps\.com/(App_Themes/|img/|[iI]mages/|(?:\w+\.css|(?:Script|Web)Resource\.axd|UserLogin.aspx)(?:$|\?)) + to + https://$1simplystamps.com/$2 + + target + + + host + simplystamps.com + + + host + www.simplystamps.com + + + + + Simply Technology.net + + ruleset + + name + Simply Technology.net + rule + + from + ^http://(delivery|www)\.simplytechnology\.net/ + to + https://$.simplytechnology.net/ + + securecookie + + host + ^(?:delivery|www)\.simplytechnology\.net$ + name + .+ + + target + + host + *.simplytechnology.net + + + + Simyo (partial) + + ruleset + + name + Simyo (partial) + rule + + + from + ^https?://(?:www\.)?simyo\.de/ + to + https://www.simyo.de/ + + + from + ^https?://a\.simyo\.de/ + to + https://simyo-de.122.2o7.net/ + + + from + ^http://(b|cdn|handyshop|m|sync)\.simyo\.de/ + to + https://$1.simyo.de/ + + + securecookie + + host + ^.*\.simyo\.de$ + name + .+ + + target + + + host + simyo.de + + + host + *.simyo.de + + + + + Sina (partial) + + ruleset + + name + Sina (partial) + rule + + + from + ^http://samsungapps\.sina\.cn/ + to + https://samsungapps.sina.cn/ + + + from + ^http://(login|sae|api\.t)\.sina\.com\.cn/ + to + https://$1.sina.com.cn/ + + + securecookie + + + host + ^samsungapps\.sina\.cn$ + name + .+ + + + host + ^(?:\.sae|api\.t)\.sina\.com\.cn$ + name + .+ + + + target + + + host + samsungapps.sina.cn + + + host + *.sina.com.cn + + + + + Sina App (partial) + + ruleset + + exclusion + + pattern + ^http://lib\. + + name + Sina App (partial) + platform + mixedcontent + rule + + from + ^http://([\w-]+\.)?sinaapp\.com/ + to + https://$1sinaapp.com/ + + securecookie + + host + ^(?:.+\.)?sinaapp\.com$ + name + .+ + + target + + + host + sinaapp.com + + + host + *.sinaapp.com + + + + + Sina Weibo (partial) + + ruleset + + name + Sina Weibo (partial) + platform + mixedcontent + rule + + + from + ^http://tp\d\.sinaimg\.cn/ + to + https://tpssl.weibo.cn/ + + + from + ^http://(tpssl\.|www\.)?weibo\.cn/ + to + https://$1weibo.cn/ + + + from + ^http://(api|upload\.api|static|yahoo\.tw)\.weibo\.com/ + to + https://$1.weibo.com/ + + + from + ^http://hr\.weibo\.com/ + to + https://weihr.sinaapp.com/ + + + securecookie + + host + ^(?:upload\.api|yahoo\.tw)\.weibo\.com$ + name + .+ + + target + + + host + *.sinaimg.cn + + + host + weibo.cn + + + host + *.weibo.cn + + + host + *.weibo.com + + + + + Sinefa.com (partial) + + ruleset + + name + Sinefa.com (partial) + rule + + + from + ^http://controller\.sinefa\.com/ + to + https://controller.sinefa.com/ + + + from + ^http://community\.sinefa\.com/ + to + https://sinefa.zendesk.com/ + + + securecookie + + host + ^controller\.sinefa\.com$ + name + .+ + + target + + host + *.sinefa.com + + + + SingleHop (partial) + + ruleset + + name + SingleHop (partial) + rule + + from + ^http://(leap3\.|www\.)?singlehop\.com/ + to + https://$1singlehop.com/ + + securecookie + + host + ^(?:\.|leap3\.|www\.)?singlehop\.com$ + name + .+ + + target + + + host + singlehop.com + + + host + *.singlehop.com + + + + + Singlefeed + + ruleset + + name + Singlefeed + rule + + from + ^http://(reporting|www)\.singlefeed\.com/ + to + https://$1.singlefeed.com/ + + securecookie + + host + ^(.*\.)?singlefeed\.com$ + name + .* + + target + + + host + singlefeed.com + + + host + *.singlefeed.com + + + + + Singularity Hub (partial) + + ruleset + + exclusion + + + pattern + ^https?://(?:www\.)?singularityhub\.com/(?:\d{4}/\d\d/\d\d/[\w-]+/|(?:about|(?:author|category)/[\w-]+|advertise|contact|membership-signup|privacy-policy|singularity-101)/?|video-central/?$|wp-login\.php)?(?:\?.*)?$ + + + pattern + ^https?://(?:www\.)?singularityhub\.com/(?:debate-central)(?:$|\?|/) + + + name + Singularity Hub (partial) + rule + + from + ^http://(www\.)?singularityhub\.com/ + to + https://$1singularityhub.com/ + + target + + + host + singularityhub.com + + + host + *.singularityhub.com + + + + + Sinica.edu.tw (partial) + + ruleset + + exclusion + + pattern + ^http://aao\.sinica\.edu\.tw/+(?!CSS/|download/|images/|public/login\.php) + + name + Sinica.edu.tw (partial) + rule + + + from + ^http://(aao|app|aslib|db3n2u|db3x|gate|irb|itsdesk|sso|www)\.sinica\.edu\.tw/ + to + https://$1.sinica.edu.tw/ + + + from + ^http://(?:www\.)?ascc\.sinica\.edu/ + to + https://ascc.sinica.edu/ + + + from + ^http://edir\.sinica\.edu\.tw:8443/ + to + https://edir.sinica.edu.tw:8443/ + + + target + + host + *.sinica.edu.tw + + + + Sinn Fein + + ruleset + + name + Sinn Fein + platform + mixedcontent + rule + + from + ^http://(?:www\.)?sinnfein\.ie/ + to + https://www.sinnfein.ie/ + + target + + + host + sinnfein.ie + + + host + www.sinnfein.ie + + + + + Sins of a Solar Empire.com (partial) + + ruleset + + name + Sins of a Solar Empire.com (partial) + rule + + from + ^http://(www\.)?sinsofasolarempire\.com/ + to + https://$1sinsofasolarempire.com/ + + securecookie + + host + ^(?:www\.)?sinsofasolarempire\.com$ + name + .+ + + target + + + host + sinsofasolarempire.com + + + host + www.sinsofasolarempire.com + + + + + Siosm.fr + + ruleset + + name + Siosm.fr + rule + + from + ^http://((?:fs|git|po|repo|tim|www)\.)?siosm\.fr/ + to + https://$1siosm.fr/ + + target + + + host + siosm.fr + + + host + *.siosm.fr + + + + + Sipgate + + ruleset + + name + Sipgate + platform + mixedcontent + rule + + + from + ^http://(?:(?:www|secure)\.)?sipgate\.(at|co\.uk)/ + to + https://secure.sipgate.$1/ + + + from + ^http://(?:secure\.)?live\.sipgate\.(de|at|co\.uk)/ + to + https://secure.live.sipgate.$1/ + + + from + ^http://(?:www\.)?go\.sipgate\.de/ + to + https://go.sipgate.de/ + + + from + ^http://(?:www\.)?simquadrat\.de/ + to + https://simquadrat.de/ + + + target + + + host + sipgate.at + + + host + *.sipgate.at + + + host + sipgate.co.uk + + + host + *.sipgate.co.uk + + + host + sipgate.de + + + host + *.sipgate.de + + + host + simquadrat.de + + + host + www.simquadrat.de + + + + + Sirportly (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?sirportly\.com/(?!(?:customers|help|signup)(?:$|\?|/)|images/|javascripts/|stylesheets/) + + name + Sirportly (partial) + rule + + from + ^http://(app\.|www\.)?sirportly\.com/ + to + https://$1sirportly.com/ + + securecookie + + host + ^app\.sirportly\.com$ + name + .+ + + target + + + host + sirportly.com + + + host + www.sirportly.com + + + + + Sirrix (partial) + + ruleset + + name + Sirrix (partial) + rule + + + from + ^http://(www\.)?sirrix\.com/ + to + https://$1sirrix.com/ + + + from + ^http://(?:www\.)?sirrix\.de/ + to + https://www.sirrix.de/ + + + securecookie + + host + ^(?:www\.)?sirrix.(?:com|de)$ + name + .+ + + target + + + host + sirrix.* + + + host + www.sirrix.* + + + + + Site Blindado + + ruleset + + name + Site Blindado + rule + + + from + ^http://((?:portal2|selo|www)\.)?siteblindado\.com/ + to + https://$1siteblindado.com/ + + + from + ^http://portal\.siteblindado\.com/ + to + https://portal.siteblindado.com.br/ + + + from + ^http://(portal|selo)\.siteblindado\.com\.br/ + to + https://$1.siteblindado.com.br/ + + + from + ^http://www\.siteblindado\.com\.br/ + to + https://www.siteblindado.com/ + + + securecookie + + + host + ^(?:portal2|selo|www)?\.siteblindado\.com$ + name + .+ + + + host + ^(?:portal|selo)?\.siteblindado\.com\.br$ + name + .+ + + + target + + + host + siteblindado.com + + + host + *.siteblindado.com + + + host + *.siteblindado.com.br + + + + + Site24x7 + + ruleset + + name + Site24x7 + rule + + from + ^http://(blogs\.|forums\.|static\.|www\.)?site24x7\.com/ + to + https://$1site24x7.com/ + + securecookie + + host + ^(?:.*\.)?site24x7\.com$ + name + .+ + + target + + + host + site24x7.com + + + host + *.site24x7.com + + + + + Site5 (partial) + + ruleset + + exclusion + + pattern + ^http://forums\. + + name + Site5 (partial) + rule + + from + ^http://(\w+\.)?site5\.com/ + to + https://$1site5.com/ + + securecookie + + host + .*\.site5\.com$ + name + .+ + + target + + + host + site5.com + + + host + *.site5.com + + + + + SiteAdvisor.com + + ruleset + + name + SiteAdvisor.com + rule + + from + ^http://(?:www\.)?siteadvisor\.com/ + to + https://www.siteadvisor.com/ + + target + + + host + siteadvisor.com + + + host + www.siteadvisor.com + + + + + SiteCompass.com (partial) + + ruleset + + name + SiteCompass.com (partial) + rule + + from + ^http://mm\.sitecompass\.com/ + to + https://mm.sitecompass.com/ + + target + + host + mm.sitecompass.com + + + + SiteGround (partial) + + ruleset + + name + SiteGround (partial) + rule + + from + ^http://(kb\.|www\.)?siteground\.com/ + to + https://$1siteground.com/ + + securecookie + + host + ^.*\.siteground\.com$ + name + .* + + target + + + host + siteground.com + + + host + *.siteground.com + + + + + SiteHeart + + ruleset + + name + SiteHeart + rule + + from + ^http://(www\.)?siteheart\.com/ + to + https://$1siteheart.com/ + + securecookie + + host + ^(?:www\.)?siteheart\.com$ + name + .+ + + target + + + host + siteheart.com + + + host + *.siteheart.com + + + + + SiteLock (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.sitelock\.com/(?!feed/) + + name + SiteLock (partial) + rule + + from + ^http://((?:admin|blog|mapi|secure|shield|wiki|www)\.)?sitelock\.com/ + to + https://$1sitelock.com/ + + securecookie + + + host + ^\.sitelock\.com$ + name + ^(?:btrack|___utm\w+)$ + + + host + ^(?:admin|mapi|secure|wiki|www)\.sitelock\.com$ + name + .+ + + + target + + + host + sitelock.com + + + host + *.sitelock.com + + + + + SitePen.com + + ruleset + + name + SitePen.com + rule + + from + ^http://((?:hub|support|www)\.)?sitepen\.com/ + to + https://$1sitepen.com/ + + securecookie + + host + ^(?:hub|support|www)\.sitepen\.com$ + name + .+ + + target + + + host + sitepen.com + + + host + *.sitepen.com + + + + + SitePoint (partial) + + ruleset + + name + SitePoint (partial) + rule + + + from + ^http://(www\.)?sitepoint\.com/(bookstore|forums|images)/ + to + https://$1sitepoint.com/forums/ + + + from + ^http://i2\.sitepoint\.com/ + to + https://www.sitepoint.com/ + + + from + ^http://(?:www\.)?sitepointmarket\.com/.* + to + https://flippa.com/classifieds?spm=1 + + + target + + + host + sitepoint.com + + + host + *.sitepoint.com + + + host + sitepointmarket.com + + + host + www.sitepointmarket.com + + + + + SiteScout (partial) + + ruleset + + name + SiteScout (partial) + rule + + from + ^http://(guru|pixel|rtb)\.sitescout\.com/ + to + https://$1.sitescout.com/ + + securecookie + + + host + ^\.sitescout\.com$ + name + ^(?:km_\w+|_ssum|ssi|__utm\w)$ + + + host + ^rtb\.sitescout\.com$ + name + .+ + + + target + + host + *.sitescout.com + + + + SiteTagger.co.uk (partial) + + ruleset + + name + SiteTagger.co.uk (partial) + rule + + from + ^http://((?:my|\w+\.tags|www)\.)?sitetagger\.co\.uk/ + to + https://$1sitetagger.co.uk/ + + target + + + host + sitetagger.co.uk + + + host + *.sitetagger.co.uk + + + + + SiteTrust Network + + ruleset + + name + SiteTrust Network + rule + + from + ^http://(www\.)?sitetrustnetwork\.com/ + to + https://$1sitetrustnetwork.com/ + + securecookie + + host + ^(www\.)?sitetrustnetwork\.com$ + name + .* + + target + + + host + sitetrustnetwork.com + + + host + www.sitetrustnetwork.com + + + + + SiteUptime.com + + ruleset + + name + SiteUptime.com + rule + + from + ^http://(www\.)?siteuptime\.com/ + to + https://$1siteuptime.com/ + + target + + + host + siteuptime.com + + + host + www.siteuptime.com + + + + + Sitefinity.com (partial) + + ruleset + + name + Sitefinity.com (partial) + rule + + from + ^http://(www\.)?sitefinity\.com/(?=Sitefinity/Public/|Telerik\.Web\.UI\.WebResource\.axd|assets/|favicon\.ico|sitefinityimages/) + to + https://$1sitefinity.com/ + + target + + + host + sitefinity.com + + + host + www.sitefinity.com + + + + + Siteimprove (partial) + + ruleset + + name + Siteimprove (partial) + rule + + from + ^http://(my|us1)\.siteimprove\.com/ + to + https://$1.siteimprove.com/ + + securecookie + + host + ^my\.siteimprove\.com$ + name + .+ + + target + + host + *.siteimprove.com + + + + Sitemason (partial) + + ruleset + + name + Sitemason (partial) + rule + + + from + ^http://(?:www\.)?sitemasonmail\.com\.moses\.com/ + to + https://secure.sitemason.com/www.sitemasonmail.com/ + + + from + ^http://(?:www\.)?sitemason\.com/ + to + https://www.sitemason.com/ + + + from + ^http://developer\.sitemason\.com/+ + to + https://www.sitemason.com/developers/ + + + from + ^http://secure\.sitemason\.com/ + to + https://secure.sitemason.com/ + + + from + ^http://support\.sitemason\.com/(?=assets/|generated/|images/|system/) + to + https://sitemason.zendesk.com/ + + + from + ^http://(?:webmail\.sitemason|(?:webmail\.|www\.)?sitemasonmail)\.com/+ + to + https://apps.rackspace.com/ + + + target + + + host + *.moses.com + + + host + sitemason.com + + + host + *.sitemason.com + + + host + sitemasonmail.com + + + host + *.sitemasonmail.com + + + + + Siteor (partial) + + ruleset + + name + Siteor (partial) + rule + + + from + ^https?://(?:lavina\.|(secure\.)|www\.)?siteor\.pl/ + to + https://$1siteor.pl/ + + + from + ^https?://(asset|f)s\.siteor\.com/ + to + https://s3-eu-west-1.amazonaws.com/$1s.siteor.com/ + + + securecookie + + host + ^(?:.*\.)?siteor\.pl$ + name + .+ + + target + + + host + *.siteor.com + + + host + siteor.pl + + + host + *.siteor.pl + + + + + Sitestat + + ruleset + + name + Sitestat + rule + + from + ^http://(de|fr|int|nl|uk)\.sitestat\.com/ + to + https://$1.sitestat.com/ + + securecookie + + host + ^.*\.sitestat\.com$ + name + .* + + target + + host + *.sitestat.com + + + + Sitizens + + ruleset + + name + Sitizens + rule + + from + ^https?://(?:www\.)?sitizens\.com/ + to + https://sitizens.com/ + + securecookie + + host + ^\.sitizens\.com$ + name + .+ + + target + + + host + sitizens.com + + + host + *.sitizens.com + + + + + Sitola + + ruleset + + name + Sitola + rule + + from + ^http://(www\.)?sitola\.cz/ + to + https://$1sitola.cz/ + + securecookie + + host + ^(?:www\.)?sitola\.cz$ + name + .+ + + target + + + host + sitola.cz + + + host + www.sitola.cz + + + + + Sivers + + ruleset + + name + Sivers + rule + + from + ^http://(?:www\.)?sivers\.org/ + to + https://sivers.org/ + + securecookie + + host + ^(.+\.)?sivers\.org$ + name + .* + + target + + + host + sivers.org + + + host + www.sivers.org + + + + + SixApart + + ruleset + + name + SixApart + platform + mixedcontent + rule + + + from + ^http://sixapart\.com/ + to + https://sixapart.com/ + + + from + ^http://(help|www)\.sixapart\.com/ + to + https://$1.sixapart.com/ + + + from + ^http://(?:www\.)?sixapart\.jp/ + to + https://www.sixapart.jp/ + + + target + + + host + sixapart.com + + + host + help.sixapart.com + + + host + www.sixapart.com + + + host + sixapart.jp + + + host + www.sixapart.jp + + + + + Sixxs.net + + ruleset + + name + Sixxs.net + platform + cacert mixedcontent + rule + + from + ^http://(?:www\.)?sixxs\.net/ + to + https://www.sixxs.net/ + + securecookie + + host + ^\.sixxs\.net$ + name + .+ + + target + + + host + sixxs.net + + + host + *.sixxs.net + + + + + Sizzle Sites + + ruleset + + name + Sizzle Sites + rule + + from + ^http://(www\.)?sizzlesitesinc\.com/ + to + https://$1sizzlesitesinc.com/ + + securecookie + + host + ^(.*\.)sizzlesitesinc\.com$ + name + .* + + target + + + host + sizzlesitesinc.com + + + host + *.sizzlesitesinc.com + + + + + Sk-nic.sk + + ruleset + + name + Sk-nic.sk + rule + + from + ^http://(www\.)?sk-nic\.sk/ + to + https://www.sk-nic.sk/ + + target + + + host + sk-nic.sk + + + host + www.sk-nic.sk + + + + + Skandia + + ruleset + + name + Skandia + rule + + + from + ^http://www\.skandia\.se/ + to + https://www.skandia.se/ + + + from + ^http://skandia\.se/ + to + https://www.skandia.se/ + + + target + + + host + skandia.se + + + host + www.skandia.se + + + + + Skandiabanken + + ruleset + + name + Skandiabanken + rule + + + from + ^http://(?:www\.)?skandiabanken\.no/ + to + https://www.skandiabanken.no/ + + + from + ^http://secure\.skandiabanken\.no/ + to + https://secure.skandiabanken.no/ + + + from + ^http://trader\.skandiabanken\.no/ + to + https://trader.skandiabanken.no/ + + + target + + + host + skandiabanken.no + + + host + www.skandiabanken.no + + + host + secure.skandiabanken.no + + + host + trader.skandiabanken.no + + + + + Skanetrafiken.se + + ruleset + + name + Skanetrafiken.se + rule + + from + ^https?://(?:www\.)?([^\.]+\.)?skanetrafiken.se/ + to + https://www.$1skanetrafiken.se/ + + securecookie + + + host + skanetrafiken\.se$ + name + .* + + + host + \.skanetrafiken\.se$ + name + .* + + + target + + + host + skanetrafiken.se + + + host + www.skanetrafiken.se + + + host + shop.skanetrafiken.se + + + host + www.shop.skanetrafiken.se + + + + + Skat.dk + + ruleset + + name + Skat.dk + rule + + from + ^http://(www\.)?skat\.dk/ + to + https://www.skat.dk/ + + target + + + host + skat.dk + + + host + www.skat.dk + + + + + SkateMall (partial) + + ruleset + + name + SkateMall (partial) + rule + + from + ^http://(www\.)?skatemall\.com/((?:cart|checkout|login|order-lookup)\.aspx|controls/|images/|img/|(?:Script|Web)Resource\.axd|scripts/|themes/) + to + https://$1skatemall.com/$2 + + target + + + host + skatemall.com + + + host + www.skatemall.com + + + + + Skeptic Ink.com + + ruleset + + name + Skeptic Ink.com + rule + + from + ^http://(?:www\.)?skepticink\.com/ + to + https://www.skepticink.com/ + + securecookie + + host + ^\.skepticink\.com$ + name + .+ + + target + + + host + skepticink.com + + + host + *.skepticink.com + + + + + Skeptic shop + + ruleset + + name + Skeptic shop + rule + + from + ^http://shop\.skeptic\.com/ + to + https://shop.skeptic.com/ + + target + + host + shop.skeptic.com + + + + Skeptic.org.uk + + ruleset + + name + Skeptic.org.uk + rule + + from + ^http://(www\.)?skeptic\.org\.uk/ + to + https://$1skeptic.org.uk/ + + securecookie + + host + ^www\.skeptic\.org\.uk$ + name + .+ + + target + + + host + skeptic.org.uk + + + host + www.skeptic.org.uk + + + + + Skeptical Science + + ruleset + + name + Skeptical Science + rule + + from + ^http://(www\.)?skepticalscience\.com/ + to + https://$1skepticalscience.com/ + + securecookie + + host + ^(?:www\.)?skepticalscience\.com$ + name + .+ + + target + + + host + skepticalscience.com + + + host + www.skepticalscience.com + + + + + Skills Matter.com + + ruleset + + name + Skills Matter.com + rule + + from + ^http://(?:www\.)?skillsmatter\.com/ + to + https://skillsmatter.com/ + + securecookie + + host + ^skillsmatter\.com$ + name + .+ + + target + + + host + skillsmatter.com + + + host + www.skillsmatter.com + + + + + SkimLinks (partial) + + ruleset + + exclusion + + + pattern + ^https?://api-products?\.skimlinks\.com/(?!$|\?.*) + + + pattern + ^http://(?:arthur|redirect)\. + + + pattern + ^https?://support\.skimlinks\.com/(?!(?:assets|external|generated|images|registration|system)/) + + + name + SkimLinks (partial) + rule + + + from + ^https?://api-products?\.skimlinks\.com/(?:\?.*)? + to + https://skimlinks.com/ + + + from + ^https?://support\.skimlinks\.com/ + to + https://skimlinks.zendesk.com/ + + + from + ^http://([\w-]+\.)?skimlinks\.com/ + to + https://$1skimlinks.com/ + + + from + ^http://(r|s)\.skimresources\.com/ + to + https://$1.skimresources.com/ + + + securecookie + + host + ^\.skimlinks\.com$ + name + .+ + + target + + + host + skimlinks.com + + + host + *.skimlinks.com + + + host + *.skimresources.com + + + + + Skinflint + + ruleset + + name + Skinflint + rule + + from + ^http://(www\.)?skinflint\.co\.uk/ + to + https://$1skinflint.co.uk/ + + target + + + host + skinflint.co.uk + + + host + www.skinflint.co.uk + + + + + Skitch + + ruleset + + name + Skitch + rule + + + from + ^http://(?:www\.)?skitch\.com/ + to + https://skitch.com/ + + + from + ^http://img\.skitch\.com/ + to + https://img.skitch.com/ + + + securecookie + + host + ^(.*\.)?skitch\.com$ + name + .* + + target + + + host + skitch.com + + + host + *.skitch.com + + + + + Skreened.com (partial) + + ruleset + + name + Skreened.com (partial) + rule + + from + ^http://(www\.)?skreened\.com/(?=(?:account|login)(?:$|[?/])|content-link/|css/|favicon\.ico|fonts/|images/|js/|render-(?:gif|produc)t/) + to + https://$1skreened.com/ + + target + + + host + skreened.com + + + host + www.skreened.com + + + + + Skrill.com + + ruleset + + name + Skrill.com + rule + + + from + ^http://(?:www\.)?skrill\.com/ + to + https://www.skrill.com/ + + + from + ^http://(account|sso)\.skrill\.com/ + to + https://$1.skrill.com/ + + + securecookie + + host + .*\.skrill\.com$ + name + .+ + + target + + + host + skrill.com + + + host + *.skrill.com + + + + + Skroutz.gr + + ruleset + + exclusion + + pattern + ^http://team\.skroutz\.gr/ + + name + Skroutz.gr + rule + + + from + ^http://(\w+\.)?skroutz\.gr/ + to + https://$1skroutz.gr/ + + + from + ^http://(\w+\.)?skroutzstore\.gr/ + to + https://$1skroutzstore.gr/ + + + securecookie + + + host + ^(.*\.)?skroutz\.gr$ + name + .* + + + host + ^(.*\.)?skroutzstore\.gr$ + name + .* + + + target + + + host + skroutz.gr + + + host + *.skroutz.gr + + + host + *.skroutzstore.gr + + + + + Sky & Telescope (partial) + + ruleset + + name + Sky & Telescope (partial) + rule + + from + ^http://link\.eml\.skyandtelescope\.com/ + to + https://link.eml.skyandtelescope.com/ + + target + + host + link.eml.skyandtelescope.com + + + + Sky.com (partial) + + ruleset + + exclusion + + + pattern + ^http://go\.sky\.com/(?!favicon\.ico|resources/|SVOD/|vod/content/Home/Application_Navigation/Sign_in/|vod/page/signUp\.do) + + + pattern + ^http://livingforsport\.skysports\.com/(?!assets/|static/|user/) + + + name + Sky.com (partial) + rule + + + from + ^http://(accessibility|accessories|activatemychannels|(?:staging-)?assets|business|buy|contactus|customerrewards|global|go|helpforum|interest|secure|smetrics|my|myaccount|myhelprequests|myorders|(?:new)?mysky|rainforestrescue|rewards|secure\.suggest\.search|skyid)\.sky\.com/ + to + https://$1.sky.com/ + + + from + ^http://diagnostics\.sky\.com/ + to + https://prod-diagnostics.herokuapp.com/ + + + from + ^http://help\.sky\.com/(favicon\.ico|images/|js/) + to + https://a248.e.akamai.net/f/1982/1/g2/help.sky.com/$1 + + + from + ^http://metrics\.sky\.com/ + to + https://sky-com.d1.sc.omtrdc.net/ + + + from + ^http://livingforsport\.skysports\.com/ + to + https://livingforsport.skysports.com/ + + + securecookie + + + host + ^\.sky\.com$ + name + ^(?:mbox|s_\w+)$ + + + host + ^(?:accessibility|business|buy|contactus|helpforum|my|myaccount|myorders|rainforestrescue)\.sky\.com$ + name + .+ + + + target + + host + *.sky.com + + + + SkyViewingHelp.com + + ruleset + + name + SkyViewingHelp.com + rule + + from + ^http://(www\.)?skyviewinghelp\.com/ + to + https://www.skyviewinghelp.com/ + + securecookie + + host + ^(?:www\.)?skyviewinghelp\.com$ + name + .+ + + target + + + host + skyviewinghelp.com + + + host + www.skyviewinghelp.com + + + + + Skydsl.eu + + ruleset + + name + Skydsl.eu + rule + + + from + ^http://skydsl\.eu/ + to + https://skydsl.eu/ + + + from + ^http://([^/:@\.]+)\.skydsl\.eu/ + to + https://$1.skydsl.eu/ + + + target + + + host + skydsl.eu + + + host + *.skydsl.eu + + + + + Skype (partial) + + ruleset + + name + Skype (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?skype\.com/ + to + https://www.skype.com/ + + + from + ^http://(beta|login|secure|smetrics|support)\.skype\.com/ + to + https://$1.skype.com/ + + + from + ^https?://metrics\.skype\.com/ + to + https://skype.d2.sc.omtrdc.net/ + + + from + ^https?://www\.skypeassets\.com/ + to + https://secure.skypeassets.com/ + + + from + ^http://(apps|beta|secure)\.skypeassets\.com/ + to + https://$1.skypeassets.com/ + + + securecookie + + host + ^.*\.skype\.com$ + name + .+ + + target + + + host + skype.com + + + host + *.skype.com + + + host + *.skypeassets.com + + + + + Skyrider GraalOnline + + ruleset + + name + Skyrider GraalOnline + rule + + from + ^http://(www\.)?skyriderplay\.com/ + to + https://$1skyriderplay.com/ + + securecookie + + host + ^\.skyriderplay\.com$ + name + .+ + + target + + + host + skyriderplay.com + + + host + *.skyriderplay.com + + + + + Slashbits.com + + ruleset + + name + Slashbits.com + rule + + from + ^http://(www\.)?slashbits\.com/ + to + https://$1slashbits.com/ + + securecookie + + host + ^\.slashbits\.com$ + name + .+ + + target + + + host + slashbits.com + + + host + *.slashbits.com + + + + + Slashdot (partial) + + ruleset + + name + Slashdot (partial) + rule + + + from + ^http://(?:\w+\.)?slashdot\.org/favicon\.ico$ + to + https://tv.slashdot.org/wp-content/themes/TVslashdot/images/favicon.ico + + + from + ^http://(www\.)?slashdot\.org/(login\.pl|my/|submission|topic/|webcasts) + to + https://$1slashdot.org/$2 + + + from + ^http://slashdot\.org/images/ + to + https://images.slashdot.org/images/ + + + from + ^http://(\w+)\.slashdot\.org/ajax\.pl + to + https://$1.slashdot.org/ajax.pl + + + from + ^http://(images|tv|y)\.slashdot\.org/ + to + https://$1.slashdot.org/ + + + securecookie + + host + ^slashdot\.org$ + name + ^w3tc_referrer$ + + target + + + host + slashdot.org + + + host + *.slashdot.org + + + + + Slashdot Media + + ruleset + + name + Slashdot Media + rule + + from + ^http://((?:library|web|www)\.)?slashdotmedia\.com/ + to + https://$1slashdotmedia.com/ + + target + + + host + slashdotmedia.com + + + host + *.slashdotmedia.com + + + + + Slate.com (partial) + + ruleset + + name + Slate.com (partial) + rule + + from + ^http://(?:www\.)?slate\.com/content/(?!.+\.css(?:$|\?)) + to + https://a248.e.akamai.net/f/248/6912/10/www.slate.com/content/ + + target + + + host + slate.com + + + host + www.slate.com + + + + + Slavery Footprint.org + + ruleset + + name + Slavery Footprint.org + rule + + from + ^http://(www\.)?slaveryfootprint\.org/ + to + https://$1slaveryfootprint.org/ + + securecookie + + host + ^\.slaveryfootprint\.org$ + name + .+ + + target + + + host + slaveryfootprint.org + + + host + *.slaveryfootprint.org + + + + + Slax Linux + + ruleset + + name + Slax Linux + rule + + from + ^http://(www\.)?slax\.org/ + to + https://$1slax.org/ + + securecookie + + host + ^\.slax\.org$ + name + .+ + + target + + + host + slax.org + + + host + *.slax.org + + + + + Slice + + ruleset + + name + Slice + rule + + from + ^https?://(?:www\.)?(go|project)?slice\.com/ + to + https://www.$1slice.com/ + + securecookie + + host + ^www\.(?:go|project)?slice\.com$ + name + .+ + + target + + + host + slice.com + + + host + www.slice.com + + + host + goslice.com + + + host + www.goslice.com + + + host + projectslice.com + + + host + www.projectslice.com + + + + + Slick Products + + ruleset + + name + Slick Products + rule + + from + ^http://(www\.)?slickproductsusa\.com/ + to + https://$1slickproductsusa.com/ + + securecookie + + host + ^www\.slickproductsusa\.com$ + name + .+ + + target + + + host + slickproductsusa.com + + + host + www.slickproductsusa.com + + + + + SlickEdit.com + + ruleset + + name + SlickEdit.com + rule + + from + ^http://(www\.)?slickedit\.com/ + to + https://$1slickedit.com/ + + securecookie + + host + ^(?:www)?\.slickedit\.com$ + name + .+ + + target + + + host + slickedit.com + + + host + *.slickedit.com + + + + + Slickdeals + + ruleset + + name + Slickdeals + rule + + + from + ^http://((?:archive|beta|blog|i|img|m|www)\.)?slickdeals\.net/ + to + https://$1slickdeals.net/ + + + from + ^http://static\.slickdeal(?:z\.net|scdn\.com)/ + to + https://slickdeals.net/ + + + securecookie + + host + ^(?:.*\.)?slickdeals\.net$ + name + .+ + + target + + + host + slickdeals.net + + + host + *.slickdeals.net + + + host + static.slickdealscdn.com + + + host + static.slickdealz.net + + + + + SlideDeck (partial) + + ruleset + + name + SlideDeck (partial) + rule + + from + ^http://(www\.)?slidedeck\.com/ + to + https://$1slidedeck.com/ + + securecookie + + host + ^www\.slidedeck\.com$ + name + .+ + + target + + + host + slidedeck.com + + + host + www.slidedeck.com + + + + + SlideMyPics (partial) + + ruleset + + name + SlideMyPics (partial) + rule + + from + ^http://files\.slidemypics\.com/ + to + https://s3.amazonaws.com/files.slidemypics.com/ + + target + + host + files.slidemypics.com + + + + SlideShare.net (partial) + + ruleset + + name + SlideShare.net (partial) + rule + + + from + ^http://help\.slideshare\.com/(attachments/|favicon\.ico|generated/|system/) + to + https://slideshare.zendesk.com/$1 + + + from + ^http://(www\.)?slideshare\.net/(elqNow/|favicon\.ico|images/|(?:login|signup)(?:$|[?/])|slideshow/embed_code/|stylesheets/) + to + https://$1slideshare.net/$2 + + + from + ^http://stats\.slideshare\.net/ + to + https://stats.slideshare.net/ + + + from + ^http://(cdn|image|public|static)\.slidesharecdn\.com/ + to + https://$1.slidesharecdn.com/ + + + securecookie + + host + ^\.slideshare\.net$ + name + ^(?:_smtLastVisitedHost|__utm\w)$ + + target + + + host + help.slideshare.com + + + host + slideshare.net + + + host + *.slideshare.net + + + host + *.slidesharecdn.com + + + + + Slo-Tech + + ruleset + + name + Slo-Tech + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?slo-tech\.com/ + to + https://slo-tech.com/ + + + from + ^http://static\.slo-tech\.com/ + to + https://static.slo-tech.com/ + + + target + + + host + slo-tech.com + + + host + www.slo-tech.com + + + host + static.slo-tech.com + + + + + Sloan Digital Sky Survey (partial) + + ruleset + + exclusion + + pattern + ^http://www-visualmedia\. + + name + Sloan Digital Sky Survey (partial) + rule + + from + ^http://(\w+\.)?sdss3\.org/ + to + https://$1sdss3.org/ + + securecookie + + host + ^(.*\.)?sdss3\.org$ + name + .* + + target + + + host + sdss3.org + + + host + *.sdss3.org + + + + + SlovakGoverment + + ruleset + + name + SlovakGoverment + rule + + + from + ^http://(www\.)?slovensko\.sk/ + to + https://www.slovensko.sk/ + + + from + ^http://(www\.)?vlada\.gov\.sk/ + to + https://vlada.gov.sk/ + + + from + ^http://(www\.)?crz\.gov\.sk/ + to + https://www.crz.gov.sk/ + + + from + ^http://(www\.)?crp\.gov\.sk/ + to + https://crp.gov.sk/ + + + from + ^http://(www\.)?nrsr\.sk/ + to + https://www.nrsr.sk/ + + + from + ^http://(www\.)?prezident\.sk/ + to + https://www.prezident.sk/ + + + from + ^http://(www\.)?finance\.gov\.sk/ + to + https://www.finance.gov.sk/ + + + from + ^http://(www\.)?mosr\.sk/ + to + https://www.mosr.sk/ + + + from + ^http://(www\.)?mzv\.sk/ + to + https://www.mzv.sk/ + + + from + ^http://(www\.)?foreign\.gov\.sk/ + to + https://www.mzv.sk/ + + + from + ^http://(www\.)?justice\.gov\.sk/ + to + https://www.justice.gov.sk/ + + + from + ^http://(www\.)?justice\.sk/ + to + https://www.justice.gov.sk/ + + + from + ^http://(www\.)?minedu\.sk/ + to + https://www.minedu.sk/ + + + from + ^http://(www\.)?uvo\.gov\.sk/ + to + https://www.uvo.gov.sk/ + + + from + ^http://(www\.)?indprop\.gov\.sk/ + to + https://www.indprop.gov.sk/ + + + from + ^http://(www\.)?ujd\.gov\.sk/ + to + https://www.ujd.gov.sk/ + + + from + ^http://(www\.)?nku\.gov\.sk/ + to + https://www.nku.gov.sk/ + + + from + ^http://(www\.)?sav\.sk/ + to + https://www.sav.sk/ + + + from + ^http://(www\.)?sutn\.sk/ + to + https://www.sutn.sk/ + + + from + ^http://(www\.)?katasterportal\.sk/ + to + https://www.katasterportal.sk/ + + + target + + + host + slovensko.sk + + + host + www.slovensko.sk + + + host + vlada.gov.sk + + + host + www.vlada.gov.sk + + + host + crz.gov.sk + + + host + www.crz.gov.sk + + + host + crp.gov.sk + + + host + www.crp.gov.sk + + + host + nrsr.sk + + + host + www.nrsr.sk + + + host + prezident.sk + + + host + www.prezident.sk + + + host + finance.gov.sk + + + host + www.finance.gov.sk + + + host + mosr.sk + + + host + www.mosr.sk + + + host + mzv.sk + + + host + www.mzv.sk + + + host + justice.gov.sk + + + host + www.justice.gov.sk + + + host + justice.sk + + + host + www.justice.sk + + + host + minedu.sk + + + host + www.minedu.sk + + + host + uvo.gov.sk + + + host + www.uvo.gov.sk + + + host + indprop.gov.sk + + + host + www.indprop.gov.sk + + + host + ujd.gov.sk + + + host + www.ujd.gov.sk + + + host + nku.gov.sk + + + host + www.nku.gov.sk + + + host + sav.sk + + + host + www.sav.sk + + + host + sutn.sk + + + host + www.sutn.sk + + + host + katasterportal.sk + + + host + www.katasterportal.sk + + + + + Slovenska_Sporitelna + + ruleset + + name + Slovenska_Sporitelna + rule + + + from + ^http://slsp\.sk/ + to + https://www.slsp.sk/ + + + from + ^http://([^/:@]*)\.slsp\.sk/ + to + https://$1.slsp.sk/ + + + target + + + host + slsp.sk + + + host + *.slsp.sk + + + + + Smack.co.uk (partial) + + ruleset + + name + Smack.co.uk (partial) + rule + + from + ^http://cdn\.smack\.co\.uk/ + to + https://d2oq2oj0pg3sng.cloudfront.net/ + + target + + host + cdn.smack.co.uk + + + + Small World Labs.com (partial) + + ruleset + + name + Small World Labs.com (partial) + rule + + from + ^http://static\.smallworldlabs\.com/ + to + https://static.smallworldlabs.com/ + + target + + host + static.smallworldlabs.com + + + + Smallbits.com (partial) + + ruleset + + name + Smallbits.com (partial) + rule + + from + ^http://secure\.smallbits\.com/ + to + https://secure.smallbits.com/ + + target + + host + secure.smallbits.com + + + + SmarTrend + + ruleset + + name + SmarTrend + rule + + from + ^https?://(?:www\.)?mysmartrend\.com/ + to + https://www.mysmartrend.com/ + + target + + + host + mysmartrend.com + + + host + www.mysmartrend.com + + + + + Smart AdServer (partial) + + ruleset + + name + Smart AdServer (partial) + rule + + + from + ^http://(?:www\.)?smartadserver\.com/(images/)?shim\.gif$ + to + https://www.smartadserver.com/$1shim.gif + + + from + ^http://(?:ced\.sascdn|akamai\.smartadserver)\.com/ + to + https://im2.smartserver.com/ + + + from + ^http://(diff|im2|manage(?:beta)?|ww251|ww690|www4?)\.smartadserver\.com/ + to + https://$1.smartadserver.com/ + + + securecookie + + + host + ^\.smartadserver\.com$ + name + ^(?:pdomid|pbw|pid|sasd2?|TestIfCookieP?|vs) + + + host + ^(?:diff|im2|manage|www)\.smartadserver\.com$ + name + .+ + + + target + + + host + ced.sascdn.com + + + host + smartadserver.com + + + host + *.smartadserver.com + + + + + Smart-Invests.biz + + ruleset + + name + Smart-Invests.biz + rule + + from + ^http://(www\.)?smart-invests\.biz/ + to + https://$1smart-invests.biz/ + + securecookie + + host + ^(?:www)?\.smart-invests\.biz$ + name + .+ + + target + + + host + smart-invests.biz + + + host + *.smart-invests.biz + + + + + Smart-Mail + + ruleset + + name + Smart-Mail + rule + + from + ^http://(?:www\.)?smart-mail\.de/ + to + https://www.smart-mail.de/ + + securecookie + + host + ^(?:www\.)?smart-mail\.de$ + name + .+ + + target + + + host + smart-mail.de + + + host + www.smart-mail.de + + + + + Smart.ly + + ruleset + + name + Smart.ly + rule + + from + ^http://(www\.)?smart\.ly/ + to + https://$1smart.ly/ + + securecookie + + host + ^\.smart\.ly$ + name + .+ + + target + + + host + smart.ly + + + host + *.smart.ly + + + + + SmartBear (partial) + + ruleset + + name + SmartBear (partial) + rule + + + from + ^http://(?:www\.)?alertsite\.com/ + to + https://www.alertsite.com/ + + + from + ^https?://clientservices\.automatedqa\.com/ + to + https://my.smartbear.com/ + + + from + ^http://my\.smartbear\.com/ + to + https://my.smartbear.com/ + + + from + ^http://login\.softwareplanner\.com/ + to + https://login.softwareplanner.com/ + + + securecookie + + + host + ^my\.smartbear\.com$ + name + .* + + + host + ^login\.softwareplanner\.com$ + name + .* + + + target + + + host + alertsite.com + + + host + www.alertsite.com + + + host + clientservices.automatedqa.com + + + host + my.smartbear.com + + + host + login.softwareplanner.com + + + + + SmartBrief + + ruleset + + name + SmartBrief + rule + + from + ^http://(jobs\.|www\.)?smartbrief\.com/ + to + https://$1smartbrief.com/ + + securecookie + + host + ^(.*\.)?smartbrief\.com$ + name + .* + + target + + + host + smartbrief.com + + + host + *.smartbrief.com + + + + + SmartFTP + + ruleset + + name + SmartFTP + rule + + from + ^http://(?:www\.)?smartftp\.com/ + to + https://www.smartftp.com/ + + target + + + host + smartftp.com + + + host + www.smartftp.com + + + + + SmartHide (partial) + + ruleset + + name + SmartHide (partial) + rule + + from + ^http://(?:www\.)?smarthide\.com/ + to + https://smarthide.com/ + + securecookie + + host + ^smarthide\.com$ + name + .* + + target + + + host + smarthide.com + + + host + www.smarthide.com + + + + + SmartPlanet.com (partial) + + ruleset + + name + SmartPlanet.com (partial) + rule + + + from + ^http://(secure\.)?smartplanet\.com/ + to + https://$1smartplanet.com/ + + + from + ^http://www\.smartplanet\.com/(?=(?:[\d.]+/)?bundles/smartplanetcore/images/) + to + https://a248.e.akamai.net/f/248/2335/10/www.smartplanet.com/ + + + from + ^http://www\.smartplanet\.com/(?=[\d.]+/bundles/smartplanetcore/css/) + to + https://smartplanet.com/ + + + securecookie + + host + ^secure\.smartplanet\.com$ + name + .+ + + target + + + host + smartplanet.com + + + host + secure.smartplanet.com + + + host + www.smartplanet.com + + + + + SmartPractice + + ruleset + + name + SmartPractice + rule + + from + ^http://(www\.)?(allerderm|finnchamber)\.com/ + to + https://$2.com/ + + target + + + host + allerderm.com + + + host + www.allerderm.com + + + host + finnchamber.com + + + host + www.finnchamber.com + + + + + SmartRecruiters + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?smartrecruiters\.com/blog/ + + name + SmartRecruiters + rule + + from + ^http://(api\.|www\.)?smartrecruiters\.com/ + to + https://$1smartrecruiters.com/ + + target + + + host + smartrecruiters.com + + + host + *.smartrecruiters.com + + + + + SmarterTools (partial) + + ruleset + + name + SmarterTools (partial) + rule + + from + ^http://((?:account|images|portal|www)\.)?smartertools\.com/ + to + https://$1smartertools.com/ + + securecookie + + host + ^(?:(?:account|portal|www)\.)?smartertools\.com$ + name + .+ + + target + + + host + smartertools.com + + + host + *.smartertools.com + + + + + SmarterTrack.com (partial) + + ruleset + + name + SmarterTrack.com (partial) + rule + + from + ^http://(portal\.|www\.)?smartertrack\.com/ + to + https://$1smartertrack.com/ + + securecookie + + host + ^(?:portal|www)\.smartertrack\.com$ + name + .+ + + target + + + host + smartertrack.com + + + host + www.smartertrack.com + + + + + Smartling (partial) + + ruleset + + name + Smartling (partial) + rule + + + from + ^http://(?:www\.)?smartling\.com/static/ + to + https://s.smartling.com/static/ + + + from + ^http://(cdn01|(?:s-)?dashboard|s)\.smartling\.com/ + to + https://$1.smartling.com/ + + + securecookie + + host + ^dashboard\.smartling\.com$ + name + .+ + + target + + + host + smartling.com + + + host + *.smartling.com + + + + + Smartphone Experts (partial) + + ruleset + + exclusion + + pattern + ^https?://store\.smartphoneexperts\.com/(?!images/|store/modules/|store_images/|v3_templates/) + + name + Smartphone Experts (partial) + rule + + from + ^https?://(?:(?:cdn-)?store|secure)\.smartphoneexperts\.com/ + to + https://secure.smartphoneexperts.com/ + + target + + host + *.smartphoneexperts.com + + + + Smartronix + + ruleset + + name + Smartronix + rule + + from + ^http://(www\.)?smartronix\.com/ + to + https://www.smartronix.com/ + + target + + + host + smartronix.com + + + host + www.smartronix.com + + + + + Smdg.ca + + ruleset + + name + Smdg.ca + rule + + from + ^http://static\.smdg\.ca/ + to + https://d3pf6blj843au7.cloudfront.net/ + + target + + host + static.smdg.ca + + + + Smith Monitoring.com (partial) + + ruleset + + name + Smith Monitoring.com (partial) + rule + + from + ^http://cache\.smithmonitoring\.com/ + to + https://c15192108.ssl.cf2.rackcdn.com/ + + target + + host + cache.smithmonitoring.com + + + + Smithsonian Institution (partial) + + ruleset + + name + Smithsonian Institution (partial) + rule + + from + ^http://logs1\.smithsonian\.museum/ + to + https://logs1.smithsonian.museum/ + + target + + host + logs1.smithsonian.museum + + + + Smithsonianmag.com (partial) + + ruleset + + name + Smithsonianmag.com (partial) + rule + + + from + ^http://public\.media\.smithsonianmag\.com/ + to + https://d4a93f3546ecdcbbedb2-caa36b64289b700cc7b17a7a1d72ae15.ssl.cf2.rackcdn.com/ + + + from + ^http://static\.media\.smithsonianmag\.com/ + to + https://a43d8359c5340246e48f-48c1ebec497242f6265091443a89054e.ssl.cf2.rackcdn.com/ + + + from + ^http://thumbs\.media\.smithsonianmag\.com/ + to + https://9dbdc7e4e76730eafd8c-725637a4efb9dbcc26cd49a804f2fb9b.ssl.cf2.rackcdn.com/ + + + target + + host + *.media.smithsonianmag.com + + + + SmoothieBlend.com + + ruleset + + name + SmoothieBlend.com + rule + + from + ^http://(www\.)?smoothieblend\.com/ + to + https://$1smoothieblend.com/ + + securecookie + + host + ^\.?smoothieblend\.com$ + name + .+ + + target + + + host + smoothieblend.com + + + host + www.smoothieblend.com + + + + + Smoothwall.org (partial) + + ruleset + + name + Smoothwall.org (partial) + rule + + from + ^http://my\.smoothwall\.org/ + to + https://my.smoothwall.org/ + + target + + host + my.smoothwall.org + + + + Smowtion (partial) + + ruleset + + name + Smowtion (partial) + rule + + + from + ^https?://ad\.smowtion\.com/ + to + https://ad.yieldmanager.com/ + + + from + ^http://p(assport|ublisher)\.smowtion\.com/ + to + https://p$1.smowtion.com/ + + + from + ^https?://px\.smowtion\.com/ + to + https://s3.amazonaws.com/px.smowtion.com/ + + + target + + host + *.smowtion.com + + + + SmugMug.com (partial) + + ruleset + + name + SmugMug.com (partial) + rule + + + from + ^http://(?:www\.)?smugmug\.com/ + to + https://www.smugmug.com/ + + + from + ^http://(cdn|secure)\.smugmug\.com/ + to + https://$1.smugmug.com/ + + + target + + + host + smugmug.com + + + host + *.smugmug.com + + + + + Smuxi.im (partial) + + ruleset + + name + Smuxi.im (partial) + rule + + from + ^http://(www\.)?smuxi\.(com|de|im|net|org)/ + to + https://$1smuxi.$2/ + + target + + + host + smuxi.com + + + host + www.smuxi.com + + + host + smuxi.de + + + host + www.smuxi.de + + + host + smuxi.im + + + host + www.smuxi.im + + + host + smuxi.net + + + host + www.smuxi.net + + + host + smuxi.org + + + host + www.smuxi.org + + + + + Snabb.co + + ruleset + + name + Snabb.co + rule + + from + ^http://(www\.)?snabb\.co/ + to + https://$1snabb.co/ + + target + + + host + snabb.co + + + host + www.snabb.co + + + + + SnackTV + + ruleset + + name + SnackTV + rule + + from + ^http://(player|www)\.snacktv\.de/ + to + https://$1.snacktv.de/ + + target + + host + *.snacktv.de + + + + SnackTools.com (partial) + + ruleset + + name + SnackTools.com (partial) + rule + + from + ^http://(?:www\.)?snacktools\.com/ + to + https://www.snacktools.com/ + + securecookie + + host + ^www\.snacktools\.com$ + name + .+ + + target + + + host + snacktools.com + + + host + www.snacktools.com + + + + + SnackTools.net + + ruleset + + name + SnackTools.net + rule + + from + ^http://stapi\.snacktools\.net/ + to + https://stapi.snacktools.net/ + + securecookie + + host + ^stapi\.snacktools\.net$ + name + .+ + + target + + host + stapi.snacktools.net + + + + Snakehosting.dk + + ruleset + + name + Snakehosting.dk + rule + + from + ^http://(www\.)?snakehosting\.dk/ + to + https://$1snakehosting.dk/ + + target + + + host + snakehosting.dk + + + host + www.snakehosting.dk + + + + + SnapEngage (partial) + + ruleset + + exclusion + + pattern + ^http://(?:developer\.|help\.)?snapengage\.com/(?!files/|wp-content/|wp-includes/) + + name + SnapEngage (partial) + rule + + + from + ^http://snapengage-(\d)\.wpengine\.netdna-cdn\.com/ + to + https://snapengage-$1.wpengine.com/ + + + from + ^http://((?:developer|help|www)\.)?snapengage\.com/ + to + https://$1snapengage.com/ + + + securecookie + + + host + ^\.snapengage\.com$ + name + ^(?:__insp_\w+|SnapABug\w+|__utm\w)$ + + + host + ^www\.snapengage\.com$ + name + .+ + + + target + + + host + snapengage-1.wpengine.netdna-cdn.com + + + host + snapengage-3.wpengine.netdna-cdn.com + + + host + snapengage-4.wpengine.netdna-cdn.com + + + host + snapengage-5.wpengine.netdna-cdn.com + + + host + snapengage-8.wpengine.netdna-cdn.com + + + host + snapengage.com + + + host + *.snapengage.com + + + + + SnapEngage.com (false MCB) + + ruleset + + exclusion + + pattern + ^http://(?:developer\.|help\.)?snapengage\.com/(?:files|wp-content|wp-includes)/ + + name + SnapEngage.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(developer\.|help\.)?snapengage\.com/ + to + https://$1snapengage.com/ + + target + + + host + snapengage.com + + + host + developer.snapengage.com + + + host + help.snapengage.com + + + + + SnapWidget.com (partial) + + ruleset + + name + SnapWidget.com (partial) + rule + + from + ^http://(www\.)?snapwidget\.com/ + to + https://$1snapwidget.com/ + + securecookie + + host + ^\.snapwidget\.com$ + name + .+ + + target + + + host + snapwidget.com + + + host + *.snapwidget.com + + + + + Snapchat.com (partial) + + ruleset + + name + Snapchat.com (partial) + rule + + from + ^http://support\.snapchat\.com/ + to + https://support.snapchat.com/ + + securecookie + + host + ^support\.snapchat\.com$ + name + .+ + + target + + host + support.snapchat.com + + + + Snapdeal.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.snapdeal\.com/(?!login(?:$|[?/])) + + name + Snapdeal.com (partial) + rule + + from + ^http://(?:www\.)?snapdeal\.com/ + to + https://www.snapdeal.com/ + + target + + + host + snapdeal.com + + + host + www.snapdeal.com + + + + + Snatchly (partial) + + ruleset + + name + Snatchly (partial) + rule + + from + ^https?://media-cache\d\.snatchly\.com/ + to + https://d2x4glpi1c9656.cloudfront.net/ + + target + + host + *.snatchly.com + + + + Snel Internet Services + + ruleset + + name + Snel Internet Services + rule + + + from + ^http://(www\.)?snel(is|panel|server)\.com/ + to + https://$1snel$2.com/ + + + from + ^http://(api|livesales|paymants|session|staff)\.snelis\.com/ + to + https://$1.snelis.com/ + + + securecookie + + host + ^.*\.snelis\.com$ + name + .* + + target + + + host + snelis.com + + + host + *.snelis.com + + + host + snelpanel.com + + + host + www.snelpanel.com + + + host + snelserver.com + + + host + www.snelserver.com + + + + + Snoobi (partial) + + ruleset + + name + Snoobi (partial) + rule + + from + ^http://(analytics|eu1)\.snoobi\.com/ + to + https://$1.snoobi.com/ + + securecookie + + host + ^.*\.snoobi\.com + name + .+ + + target + + host + *.snoobi.com + + + + Snort (partial) + + ruleset + + name + Snort (partial) + rule + + from + ^http://(store\.|www\.)?snort\.org/ + to + https://$1snort.org/ + + securecookie + + host + .+\.snort\.org$ + name + .+ + + target + + + host + snort.org + + + host + *.snort.org + + + + + Snow Magazine + + ruleset + + name + Snow Magazine + rule + + from + ^https?://(?:www\.)?snowmagazineonline\.com/ + to + https://www.snowmagazineonline.com/ + + securecookie + + host + ^www\.snowmagazineonline\.com$ + name + .+ + + target + + + host + snowmagazineonline.com + + + host + www.snowmagazineonline.com + + + + + SnugNote (partial) + + ruleset + + name + SnugNote (partial) + rule + + from + ^http://(www\.)?snugnote\.com/ + to + https://$1snugnote.com/ + + securecookie + + host + ^\.?snugnote\.com$ + name + .+ + + target + + + host + snugnote.com + + + host + *.snugnote.com + + + + + So Raise Your Glasses + + ruleset + + name + So Raise Your Glasses + rule + + from + ^http://(www\.)?soraiseyourglasses\.com/ + to + https://$1soraiseyourglasses.com/ + + securecookie + + host + ^www\.soraiseyourglasses\.com$ + name + .* + + target + + + host + soraiseyourglasses.com + + + host + www.soraiseyourglasses.com + + + + + SoCal Linux Expo.org + + ruleset + + name + SoCal Linux Expo.org + rule + + from + ^http://((?:helpdesk|reg|wiki|www)\.)?socallinuxexpo\.org/ + to + https://$1socallinuxexpo.org/ + + securecookie + + host + ^reg\.socallinuxexpo\.org$ + name + .+ + + target + + + host + socallinuxexpo.org + + + host + *.socallinuxexpo.org + + + + + SoFurry + + ruleset + + name + SoFurry + rule + + + from + ^http://(www\.)?sofurry\.com/ + to + https://www.sofurry.com/ + + + from + ^http://(www\.)?sofurryfiles\.com/ + to + https://www.sofurryfiles.com/ + + + securecookie + + host + ^(www)?\.sofurry\.com$ + name + .+ + + target + + + host + sofurry.com + + + host + www.sofurry.com + + + host + www.sofurryfiles.com + + + + + SoHosted.com + + ruleset + + name + SoHosted.com + rule + + from + ^http://(www\.)?sohosted\.com/ + to + https://$1sohosted.com/ + + securecookie + + host + ^(?:www\.)?sohosted\.com$ + name + .+ + + target + + + host + sohosted.com + + + host + www.sohosted.com + + + + + SoSci Survey + + ruleset + + name + SoSci Survey + rule + + from + ^http://(www\.)?soscisurvey\.de/ + to + https://$1soscisurvey.de/ + + target + + + host + soscisurvey.de + + + host + www.soscisurvey.de + + + + + SoShare + + ruleset + + name + SoShare + rule + + from + ^http://(www\.)?soshareit\.com/ + to + https://$1soshareit.com/ + + target + + + host + soshareit.com + + + host + www.soshareit.com + + + + + Soap.com (partial) + + ruleset + + name + Soap.com (partial) + rule + + + from + ^https?://(?:c\d\.)?soap\.com/ + to + https://www.soap.com/ + + + from + ^http://www\.soap\.com/((?:checkout|login)\.qs|[iI]mages/|helpcenter/|myaccount/|myfaves/|(?:App_)?Themes/|[\w\-]+\.aspx) + to + https://www.soap.com/$1 + + + target + + + host + soap.com + + + host + *.soap.com + + + + + Soapbox CMS + + ruleset + + name + Soapbox CMS + rule + + from + ^http://(www\.)?soapboxcms\.com/ + to + https://$1soapboxcms.com/ + + securecookie + + host + ^(.*\.)?soapboxcms\.com$ + name + .* + + target + + + host + soapboxcms.com + + + host + *.soapboxcms.com + + + + + Social Code dev.com + + ruleset + + name + Social Code dev.com + rule + + from + ^http://(www\.)?socialcodedev\.com/ + to + https://$1socialcodedev.com/ + + target + + + host + socialcodedev.com + + + host + www.socialcodedev.com + + + + + Social Reader.com (partial) + + ruleset + + name + Social Reader.com (partial) + rule + + from + ^http://((?:event|id|www)\.)?socialreader\.com(:9443)?/ + to + https://$1socialreader.com$2/ + + securecookie + + host + ^(?:id)?\.socialreader\.com$ + name + .+ + + target + + + host + socialreader.com + + + host + *.socialreader.com + + + + + Social Screamer + + ruleset + + name + Social Screamer + rule + + from + ^http://(www\.)?socialscreamer\.com/ + to + https://$1socialscreamer.com/ + + securecookie + + host + ^\.socialscreamer\.com$ + name + .+ + + target + + + host + socialscreamer.com + + + host + www.socialscreamer.com + + + + + Social Theater + + ruleset + + name + Social Theater + rule + + from + ^http://(www\.)?socialtheater\.com/ + to + https://$1socialtheater.com/ + + securecookie + + host + ^(?:www\.)?socialtheater\.com$ + name + .+ + + target + + + host + socialtheater.com + + + host + www.socialtheater.com + + + + + Social-Engineer.com + + ruleset + + name + Social-Engineer.com + rule + + from + ^http://(www\.)?social-engineer\.com/ + to + https://$1social-engineer.com/ + + securecookie + + host + ^(?:www\.)?social-engineer\.com$ + name + .+ + + target + + + host + social-engineer.com + + + host + www.social-engineer.com + + + + + SocialBox + + ruleset + + name + SocialBox + rule + + from + ^http://(www\.)?socialboxusa\.com/ + to + https://$1socialboxusa.com/ + + target + + + host + socialboxusa.com + + + host + www.socialboxusa.com + + + + + SocialShows + + ruleset + + name + SocialShows + rule + + from + ^http://(?:www\.)?socialshows\.(?:com|net)/ + to + https://socialshows.net/ + + securecookie + + host + ^\.?socialshows\.net$ + name + .+ + + target + + + host + socialshows.com + + + host + www.socialshows.com + + + host + socialshows.net + + + host + *.socialshows.net + + + + + SocialTwist + + ruleset + + name + SocialTwist + rule + + from + ^http://([\w\-]+\.)?socialtwist\.com/ + to + https://$1socialtwist.com/ + + target + + + host + socialtwist.com + + + host + *.socialtwist.com + + + + + Socialtext.net (partial) + + ruleset + + name + Socialtext.net (partial) + rule + + from + ^http://saml\.socialtext\.net/ + to + https://saml.socialtext.net/ + + securecookie + + host + ^saml\.socialtext\.net$ + name + .+ + + target + + host + saml.socialtext.net + + + + SocietyForScience.org + + ruleset + + name + SocietyForScience.org + platform + mixedcontent + rule + + from + ^http://(?:www)?\.societyforscience\.org/ + to + https://www.societyforscience.org/ + + securecookie + + host + ^www\.societyforscience\.org + name + .* + + target + + + host + www.societyforscience.org + + + host + societyforscience.org + + + + + Sociocast Networks (partial) + + ruleset + + name + Sociocast Networks (partial) + rule + + from + ^http://disc\.scastnet\.com/ + to + https://disc.scastnet.com/ + + securecookie + + host + ^disc\.scastnet\.com$ + name + .* + + target + + host + disc.scastnet.com + + + + SockShare (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?sockshare\.com/(?!crossdomain\.xml|gopro\.php|include/captcha\.php) + + name + SockShare (partial) + rule + + + from + ^http://((?:images|static1|www)\.)?sockshare\.com/ + to + https://$1sockshare.com/ + + + from + ^http://static\.sockshare\.com/ + to + https://static1.sockshare.com/ + + + target + + + host + sockshare.com + + + host + images.sockshare.com + + + host + static.sockshare.com + + + host + static1.sockshare.com + + + host + www.sockshare.com + + + + + SodaHead.com + + ruleset + + name + SodaHead.com + platform + mixedcontent + rule + + + from + ^http://((?:de|latimes|m|partners|www)\.)?sodahead\.com/ + to + https://$1sodahead.com/ + + + from + ^https?://images\.sodahead\.com/ + to + https://d33lglhhb8q63m.cloudfront.net/ + + + from + ^https?://statics\.sodahead\.com/ + to + https://d6fekxp9qbg3b.cloudfront.net/ + + + from + ^https?://widgets\.sodahead\.com/ + to + https://d3ict7m6m7fhlt.cloudfront.net/ + + + securecookie + + host + .+\.sodahead\.com$ + name + .+ + + target + + + host + sodahead.com + + + host + *.sodahead.com + + + + + Sodiumshop.com + + ruleset + + name + Sodiumshop.com + rule + + from + ^http://(?:www\.)?sodiumshop\.com/ + to + https://www.sodiumshop.com/ + + securecookie + + host + ^\.(?:www\.)?sodiumshop\.com$ + name + .+ + + target + + + host + sodiumshop.com + + + host + *.sodiumshop.com + + + + + Soekris.com + + ruleset + + name + Soekris.com + rule + + from + ^http://(www\.)?soekris\.com/ + to + https://$1soekris.com/ + + securecookie + + host + ^\.soekris\.com$ + name + .+ + + target + + + host + soekris.com + + + host + *.soekris.com + + + + + Soeren Hentzschel. + + ruleset + + name + Soeren Hentzschel. + rule + + from + ^http://(www\.)?soeren-hentzschel\.at/ + to + https://www.soeren-hentzschel.at/ + + target + + + host + *.soeren-hentzschel.at + + + host + soeren-hentzschel.at + + + + + Sofawolf + + ruleset + + name + Sofawolf + rule + + from + ^http://(www\.)?sofawolf\.com/ + to + https://www.sofawolf.com/ + + securecookie + + host + ^(\.www|www|)\.sofawolf\.com$ + name + .+ + + target + + + host + sofawolf.com + + + host + www.sofawolf.com + + + + + SoftCom (partial) + + ruleset + + name + SoftCom (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?daha\.net/(assets/|fancybox/|\w+\.(css|ico|png)|[\w\-/]*images/) + to + https://$1daha.net/$2 + + + from + ^http://(banman\.|www\.)?mail2web\.com/ + to + https://$1mail2web.com/ + + + from + ^http://(www\.)?myhosting\.com/ + to + https://$1myhosting.com/ + + + from + ^http://assets\d*\.myhosting\.com/ + to + https://d2b9wiydujghh5.cloudfront.net/ + + + from + ^http://(www\.)?slhost\.com/ + to + https://$1slhost.com/ + + + from + ^http://helpdesk\.softcom\.com/ + to + https://helpdesk.softcom.com/ + + + securecookie + + host + ^(.*\.)?(mail2web|myhosting|slhost|softcom)\.com$ + name + .* + + target + + + host + daha.net + + + host + www.daha.net + + + host + mail2web.com + + + host + *.mail2web.com + + + host + myhosting.com + + + host + *.myhosting.com + + + host + slhost.com + + + host + *.slhost.com + + + host + helpdesk.softcom.com + + + + + SoftCreatR.de + + ruleset + + name + SoftCreatR.de + rule + + from + ^http://(www\.)?(support\.)?softcreatr\.de/ + to + https://$1softcreatr.de/ + + securecookie + + host + ^\.support\.softcreatr\.de$ + name + .+ + + target + + + host + softcreatr.de + + + host + *.softcreatr.de + + + + + SoftEther VPN + + ruleset + + name + SoftEther VPN + rule + + from + ^http://(www\.)?softether\.org/ + to + https://$1softether.org/ + + securecookie + + host + ^(?:www\.)?softether\.org$ + name + .+ + + target + + + host + softether.org + + + host + www.softether.org + + + + + SoftLayer + + ruleset + + name + SoftLayer + rule + + + from + ^http://((?:forums|manage|outlet|www)\.)?softlayer\.com/ + to + https://$1softlayer.com/ + + + from + ^https?://(\w+)\.https?\.cdn\.softlayer\.net/ + to + https://$1.https.cdn.softlayer.net/ + + + securecookie + + host + ^.+\.softlayer\.com$ + name + .+ + + target + + + host + softlayer.com + + + host + *.softlayer.com + + + host + *.http.cdn.softlayer.net + + + host + *.https.cdn.softlayer.net + + + + + Software & Information Industry Association + + ruleset + + name + Software & Information Industry Association + rule + + from + ^https?://(?:www\.)?siaa\.net/ + to + https://www.siaa.net/ + + securecookie + + host + ^www\.siia\.net$ + name + .+ + + target + + + host + siia.net + + + host + www.siia.net + + + + + Software Freedom Conservancy + + ruleset + + name + Software Freedom Conservancy + rule + + + from + ^http://(www\.)?sfconservancy\.org/ + to + https://$1sfconservancy.org/ + + + from + ^http://lists\.sfconservancy\.org/ + to + https://lists.sfconservancy.org/ + + + target + + + host + sfconservancy.org + + + host + www.sfconservancy.org + + + host + lists.sfconservancy.org + + + + + Software Freedom Law Center + + ruleset + + name + Software Freedom Law Center + rule + + from + ^http://(?:www\.)?softwarefreedom\.org/ + to + https://www.softwarefreedom.org/ + + target + + + host + softwarefreedom.org + + + host + www.softwarefreedom.org + + + + + Sol Musica + + ruleset + + name + Sol Musica + rule + + from + ^http://(www\.)?solmusica\.com/ + to + https://$1solmusica.com/ + + securecookie + + host + ^\.?solmusica\.com$ + name + .+ + + target + + + host + solmusica.com + + + host + *.solmusica.com + + + + + Sol.io + + ruleset + + name + Sol.io + platform + firefox + rule + + from + ^http://sol\.io/ + to + https://sol.io/ + + securecookie + + host + ^sol\.io$ + name + .+ + + target + + host + sol.io + + + + Solar1.net + + ruleset + + name + Solar1.net + rule + + from + ^http://(?:www\.)?solar1\.net/ + to + https://solar1.net/ + + securecookie + + host + ^solar1\.net$ + name + .+ + + target + + + host + solar1.net + + + host + www.solar1.net + + + + + SolarCity + + ruleset + + name + SolarCity + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?mysolarcity\.com/ + to + https://solarguard.solarcity.com/kiosk/login/default.aspx + + + from + ^https?://(?:www\.)?solarcity\.com/ + to + https://www.solarcity.com/ + + + from + ^http://solarguard\.solarcity\.com/ + to + https://solarguard.solarcity.com/ + + + target + + + host + mysolarcity.com + + + host + www.mysolarcity.com + + + host + solarcity.com + + + host + *.solarcity.com + + + + + SolarList.com + + ruleset + + name + SolarList.com + rule + + from + ^http://(app\.|www\.)?solarlist\.com/ + to + https://$1solarlist.com/ + + securecookie + + host + ^\.solarlist\.com$ + name + .+ + + target + + + host + solarlist.com + + + host + *.solarlist.com + + + + + Solarbotics.com + + ruleset + + name + Solarbotics.com + rule + + from + ^http://((?:atlas|content|eos|helios|www)\.)?solarbotics\.com/ + to + https://$1solarbotics.com/ + + securecookie + + host + ^(?:.+\.)?solarbotics\.com$ + name + .+ + + target + + + host + solarbotics.com + + + host + *.solarbotics.com + + + + + Solarflare.com (partial) + + ruleset + + name + Solarflare.com (partial) + rule + + from + ^http://(partner|support)\.solarflare\.com/ + to + https://$1.solarflare.com/ + + securecookie + + host + ^support\.solarflare\.com$ + name + .+ + + target + + host + *.solarflare.com + + + + Soldierx.com + + ruleset + + name + Soldierx.com + rule + + from + ^http://(www\.)?soldierx\.com/ + to + https://$1soldierx.com/ + + target + + + host + soldierx.com + + + host + www.soldierx.com + + + + + Solicitor-Concierge.com + + ruleset + + name + Solicitor-Concierge.com + rule + + from + ^http://(admin\.|www\.)?solicitor-concierge\.com/ + to + https://$1solicitor-concierge.com/ + + target + + + host + solicitor-concierge.com + + + host + *.solicitor-concierge.com + + + + + Solid Cactus (partial) + + ruleset + + name + Solid Cactus (partial) + rule + + + from + ^http://(admin|clients|yahoo)\.solidcactus\.com/ + to + https://$1.solidcactus.com/ + + + from + ^http://([\w-]+)\.solidcactushosting\.com/ + to + https://$1.solidcactushosting.com/ + + + securecookie + + + host + ^(?:admin|clients|yahoo)\.solidcactus\.com$ + name + .+ + + + host + ^.+\.solidcactushosting\.com$ + name + .+ + + + target + + + host + *.solidcactus.com + + + host + *.solidcactushosting.com + + + + + Solid Logic Technology + + ruleset + + name + Solid Logic Technology + rule + + from + ^http://(www\.)?solidlogic\.com/ + to + https://$1solidlogic.com/ + + securecookie + + host + ^\.solidlogic.com$ + name + .+ + + target + + + host + solidlogic.com + + + host + *.solidlogic.com + + + + + Solid-Run.com + + ruleset + + name + Solid-Run.com + rule + + from + ^http://(imx\.|www\.)?solid-run\.com/ + to + https://$1solid-run.com/ + + securecookie + + host + ^imx\.solid-run\.com$ + name + .+ + + target + + + host + solid-run.com + + + host + *.solid-run.com + + + + + SolidAlert.com + + ruleset + + name + SolidAlert.com + rule + + from + ^http://(www\.)?solidalert\.com/ + to + https://$1solidalert.com/ + + target + + + host + solidalert.com + + + host + www.solidalert.com + + + + + Solutions Healthcare Management + + ruleset + + name + Solutions Healthcare Management + rule + + from + ^http://(www\.)?solutionshealthcare\.com/ + to + https://$1solutionshealthcare.com/ + + securecookie + + host + ^\.solutionshealthcare\.com$ + name + .+ + + target + + + host + solutionshealthcare.com + + + host + *.solutionshealthcare.com + + + + + Someserver (partial) + + ruleset + + name + Someserver (partial) + platform + cacert + rule + + from + ^http://(www\.)?s(eba-geek|omeserver)\.de/ + to + https://$1s$2.de/ + + target + + + host + seba-geek.de + + + host + www.seba-geek.de + + + host + someserver.de + + + host + www.someserver.de + + + + + Something Awful (partial) + + ruleset + + name + Something Awful (partial) + rule + + from + ^http://secure\.somethingawful\.com/ + to + https://secure.somethingawful.com/ + + securecookie + + host + ^secure\.somethingawful\.com$ + name + .+ + + target + + host + secure.somethingawful.com + + + + SongColeta.com (partial) + + ruleset + + name + SongColeta.com (partial) + rule + + from + ^http://static\.songcoleta\.com/ + to + https://d2f4ve6v2ack21.cloudfront.net/ + + target + + host + static.songcoleta.com + + + + Songsterr.com (partial) + + ruleset + + name + Songsterr.com (partial) + rule + + from + ^http://(www\.)?songsterr\.com/(?=a/(?!wsa/)|WebObjects/) + to + https://$1songsterr.com/ + + target + + + host + songsterr.com + + + host + www.songsterr.com + + + + + Sonic.net (partial) + + ruleset + + name + Sonic.net (partial) + rule + + from + ^http://(assets|corp|forums|legacy-webmail|members|newsignup|webmail|wiki)\.sonic\.net/ + to + https://$1.sonic.net/ + + securecookie + + host + ^newsignup\.sonic\.net$ + name + .+ + + target + + host + *.sonic.net + + + + SonicWALL (partial) + + ruleset + + name + SonicWALL (partial) + rule + + + from + ^https?://(?:www\.)?sonicwall\.com/ + to + https://www.sonicwall.com/ + + + from + ^http://software\.sonicwall\.com/ + to + https://software.sonicwall.com/ + + + securecookie + + host + ^.+\.sonicwall\.com$ + name + .+ + + target + + + host + sonicwall.com + + + host + *.sonicwall.com + + + + + Sonnet Tech.com (partial) + + ruleset + + name + Sonnet Tech.com (partial) + rule + + from + ^http://s(?:ecu|to)re1\.sonnettech\.com/ + to + https://secure1.sonnettech.com/ + + target + + host + *.sonnettech.com + + + + Sonos.com (partial) + + ruleset + + name + Sonos.com (partial) + rule + + + from + ^http://(?:www\.)?sonos\.com/(?=(?:\w+/)?(?:[cC]ss/|images/|js/|(?:Script|Web)Resource\.axd)|fancybox/|login(?:$|[?/])|shop/(?:i/|login\.aspx|[tT]hemes/)|static/|widgets/) + to + https://www.sonos.com/ + + + from + ^http://faq\.sonos\.com/ + to + https://faq.sonos.com/ + + + securecookie + + host + ^\.sonos\.com$ + name + ^__u(?:tm\w|tmli|nam)$ + + target + + + host + sonos.com + + + host + *.sonos.com + + + + + Sony (partial) + + ruleset + + name + Sony (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?scea\.com/ + to + https://us.playstation.com/ + + + from + ^https?://(?:\w+\.)?webassets\w?\.scea\.com/ + to + https://secure.webassets.scea.com/ + + + from + ^https?://(?:www\.)?sony\.com/ + to + https://www.sony.com/ + + + from + ^http://(www\.)?sony\.co\.uk/(bravia|res)/ + to + https://$1sony.co.uk/$2/ + + + from + ^http://(outlet|shop)\.sony\.co\.uk/ + to + https://$1.sony.co.uk/ + + + from + ^http://(blog|s01\.esupport|store)\.sony\.com/ + to + https://$1.sony.com/ + + + securecookie + + + host + ^.*\.sony\.com$ + name + .* + + + host + ^outlet\.sony\.co\.uk$ + name + .+ + + + target + + + host + webassets.scea.com + + + host + *.webassets.scea.com + + + host + sony.com + + + host + *.sony.com + + + host + s01.esupport.sony.com + + + host + sony.co.uk + + + host + *.sony.co.uk + + + + + Sony Computer Science Laboratories + + ruleset + + name + Sony Computer Science Laboratories + rule + + from + ^http://(www\.)?sonycsl\.co\.jp/ + to + https://$1sonycsl.co.jp/ + + target + + + host + sonycsl.co.jp + + + host + www.sonycsl.co.jp + + + + + Sony Entertainment Network (partial) + + ruleset + + name + Sony Entertainment Network (partial) + rule + + + from + ^http://((?:account|music|www)\.)?sonyentertainmentnetwork\.com/ + to + https://$1sonyentertainmentnetwork.com/ + + + from + ^http://cdn\.sonyentertainmentnetwork\.com/ + to + https://www.sonyentertainmentnetwork.com/ + + + securecookie + + host + .*\.sonyentertainmentnetwork\.com$ + name + .+ + + target + + + host + sonyentertainmentnetwork.com + + + host + *.sonyentertainmentnetwork.com + + + + + Sony Latin America (partial) + + ruleset + + exclusion + + pattern + ^http://store\.sony\.com\.mx/mx/site/ + + name + Sony Latin America (partial) + rule + + + from + ^http://store\.sony\.com\.mx/ + to + https://store.sony.com.mx/ + + + from + ^http://(?:www\.)?sonystyle\.com\.mx/ + to + https://www.sonystyle.com.mx/ + + + securecookie + + host + ^(?:www)?\.sonystyle\.com\.mx$ + name + .+ + + target + + + host + store.sony.com.mx + + + host + sonystyle.com.mx + + + host + *.sonystyle.com.mx + + + + + Sony Pictures UK + + ruleset + + name + Sony Pictures UK + rule + + from + ^https?://(?:www\.)?sonypictures\.co\.uk/ + to + https://www.sonypictures.co.uk/ + + securecookie + + host + ^www\.sonypictures\.co\.uk$ + name + .+ + + target + + + host + sonypictures.co.uk + + + host + www.sonypictures.co.uk + + + + + Sony-Europe.com + + ruleset + + name + Sony-Europe.com + platform + mixedcontent + rule + + from + ^http://(campaign\.odw\.|sp\.|www\.)?sony-europe\.com/ + to + https://$1sony-europe.com/ + + target + + + host + sony-europe.com + + + host + *.sony-europe.com + + + host + campaign.odw.sony-europe.com + + + + + Sony.se + + ruleset + + name + Sony.se + rule + + + from + ^http://www\.sony\.se/ + to + https://www.sony.se/ + + + from + ^http://sony\.se/ + to + https://sony.se/ + + + target + + + host + sony.se + + + host + www.sony.se + + + + + SonyMusic (partial) + + ruleset + + name + SonyMusic (partial) + rule + + from + ^https?://cf\.sonymusic\.com/ + to + https://d27g862ehx8viu.cloudfront.net/ + + target + + host + cf.sonymusic.com + + + + SooBEST.com (partial) + + ruleset + + name + SooBEST.com (partial) + rule + + from + ^https?://(?:www\.)?soobest.com/themes/ + to + https://www.soobest.com/themes/ + + target + + + host + soobest.com + + + host + www.soobest.com + + + + + Soom + + ruleset + + name + Soom + rule + + from + ^http://(www\.)?soom\.cz/ + to + https://www.soom.cz/ + + target + + + host + soom.cz + + + host + www.soom.cz + + + + + Sophos (partial) + + ruleset + + name + Sophos (partial) + rule + + + from + ^http://(www\.)?astaro\.com/ + to + https://$1astaro.com/ + + + from + ^https?://feature\.astaro\.com/ + to + https://astaro.uservoice.com/ + + + from + ^http://support\.astaro\.com/ + to + https://support.astaro.com/ + + + from + ^http://(nakedsecurity|gpp\.partners|secure|solo)\.sophos\.com/ + to + https://$1.sophos.com/ + + + securecookie + + + host + ^.*\.astaro\.com$ + name + .* + + + host + ^solo\.sophos\.com$ + name + .* + + + target + + + host + astaro.com + + + host + *.astaro.com + + + host + gpp.partners.sophos.com + + + host + *.sophos.com + + + + + SotT.net (partial) + + ruleset + + name + SotT.net (partial) + rule + + from + ^http://(www\.)?sott\.net/(?=favicon\.ico|images/|signs/|stylesheets/|users/) + to + https://$1sott.net/ + + target + + + host + sott.net + + + host + www.sott.net + + + + + Soufun.com.tw (partial) + + ruleset + + name + Soufun.com.tw (partial) + rule + + from + ^http://ssl\.soufun\.com\.tw/ + to + https://ssl.soufun.com.tw/ + + target + + host + ssl.soufun.com.tw + + + + SoundKit.io + + ruleset + + name + SoundKit.io + rule + + from + ^http://(www\.)?soundkit\.io/ + to + https://$1soundkit.io/ + + target + + + host + soundkit.io + + + host + www.soundkit.io + + + + + SoundUnwound + + ruleset + + name + SoundUnwound + rule + + from + ^http://(www\.)?soundunwound\.com/ + to + https://www.soundunwound.com/ + + target + + + host + soundunwound.com + + + host + www.soundunwound.com + + + + + Soundcloud (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:scbackstage\.wpengine\.netdna-cdn|backstage\.soundcloud)\.com/(?!wp-content/) + + name + Soundcloud (partial) + rule + + + from + ^http://([aiw]\d|api|wis)\.sndcdn\.com/ + to + https://$1.sndcdn.com/ + + + from + ^http://((?:api|backstage|blog|connect|developers|ec-media|eventlogger|help-assets|media|visuals|w|www)\.)?soundcloud\.com/ + to + https://$1soundcloud.com/ + + + from + ^https?://scbackstage\.wpengine\.netdna-cdn\.com/ + to + https://backstage.soundcloud.com/ + + + from + ^https?://soundcloud\.wpengine\.netdna-cdn\.com/ + to + https://blog.soundcloud.com/ + + + target + + + host + scbackstage.wpengine.netdna-cdn.com + + + host + soundcloud.wpengine.netdna-cdn.com + + + host + *.sndcdn.com + + + host + soundcloud.com + + + host + *.soundcloud.com + + + + + Soundowl.net + + ruleset + + name + Soundowl.net + rule + + from + ^http://assets\.soundowl\.net/ + to + https://d1mvw875i08plx.cloudfront.net/ + + target + + host + assets.soundowl.net + + + + Sounds True + + ruleset + + name + Sounds True + rule + + + from + ^http://(?:www\.)?soundstrue\.com/((?:assets/|media)\.soundstrue\.com/|catalog/|/?components/|css/|directaccess/|email/|google/ga\.js|linkshare/|pages/popup_shipping\.php|shipping/|shop/(?:login\.do|player/|st_assets/)|wakeup/|pages/popup_shipping\.php) + to + https://www.soundstrue.com/$1 + + + from + ^http://assets\.soundstrue\.com/ + to + https://assets.soundstrue.com/ + + + from + ^http://components\.soundstrue\.com/ + to + https://assets.soundstrue.com/components/public/ + + + target + + + host + soundstrue.com + + + host + *.soundstrue.com + + + + + Soup.io (partial) + + ruleset + + exclusion + + pattern + ^http://www\.soup\.io/+(?!favicon\.ico|images/) + + name + Soup.io (partial) + rule + + from + ^http://(static\.|www\.)?soup\.io/ + to + https://$1soup.io/ + + target + + + host + soup.io + + + host + *.soup.io + + + + + SourceCoast (partial) + + ruleset + + name + SourceCoast (partial) + rule + + from + ^http://(www\.)?sourcecoast\.com/($|\?|components/|images/|jfbconnect/|media/|plugins/|templates/) + to + https://$1sourcecoast.com/$2 + + target + + + host + sourcecoast.com + + + host + www.sourcecoast.com + + + + + SourceFed (partial) + + ruleset + + name + SourceFed (partial) + rule + + from + ^https?://cdn\.sourcefednews\.com/ + to + https://d1l31vajhvnn7o.cloudfront.net/ + + target + + host + cdn.sourcefednews.com + + + + SourceForge (partial) + + ruleset + + name + SourceForge (partial) + rule + + + from + ^http://static\.sourceforge\.jp/ + to + https://static.sourceforge.jp/ + + + from + ^http://(www\.)?s(?:f|ourceforge)\.net/(account|image)s/ + to + https://$1sourceforge.net/$2s/ + + + from + ^http://(www\.)?sourceforge\.net/account/? + to + https://$1sourceforge.net/account/ + + + from + ^http://(www\.)?s(?:f|ourceforge)\.net/(blog|sflogo\.php)($|[\?/]) + to + https://$1sourceforge.net/$2$3 + + + from + ^http://downloads\.s(?:f|ourceforge)\.net/project/([^\?]+)\?r=http%3A%2F%2Fs + to + https://downloads.sourceforge.net/project/$1?r=https%3A%2F%2Fs + + + from + ^http://(apps|downloads|goparallel|ibmsmarteritservices|images|lists|prdownloads|sflogo|static)\.s(?:f|ourceforge)\.net/ + to + https://$1.sourceforge.net/ + + + from + ^http://jobs\.sourceforge\.net/(build|images|include)/ + to + https://secure.personforce.com/$1/ + + + from + ^http://([\w-]+)\.svn\.s(?:f|ourceforge)\.net/svnroot/ + to + https://$1.svn.sourceforge.net/svnroot/ + + + securecookie + + host + ^downloads\.sourceforge\.net$ + name + .+ + + target + + + host + sf.net + + + host + *.sf.net + + + host + *.svn.sf.net + + + host + sourceforge.net + + + host + *.sourceforge.net + + + host + *.svn.sourceforge.net + + + host + *.sourceforge.jp + + + + + Sourcefabric.com (partial) + + ruleset + + exclusion + + pattern + ^http://stash\.sourcefabric\.org/+login(?:$|\?) + + name + Sourcefabric.com (partial) + rule + + + from + ^http://(?:www\.)?sourcefabric\.com/+\??$ + to + https://www.sourcefabric.org/ + + + from + ^http://(?:www\.)?sourcefabric\.com/[^?]*\?(?=.) + to + https://www.sourcefabric.org/? + + + from + ^http://account\.sourcefabric\.com/ + to + https://account.sourcefabric.com/ + + + from + ^http://((?:dev|login|stash|wiki|www)\.)?sourcefabric\.org/ + to + https://$1sourcefabric.org/ + + + from + ^http://(www\.)?superdesk\.pro/ + to + https://$superdesk.pro/ + + + securecookie + + + host + ^account\.sourcefabric\.com$ + name + .+ + + + host + ^(?:dev|login|wiki|www)\.sourcefabric\.org$ + name + .+ + + + host + ^\.superdesk\.pro$ + name + .+ + + + target + + + host + sourcefabric.com + + + host + *.sourcefabric.com + + + host + sourcefabric.org + + + host + *.sourcefabric.org + + + host + superdesk.pro + + + host + *.superdesk.pro + + + + + South China Morning Post (partial) + + ruleset + + name + South China Morning Post (partial) + rule + + from + ^http://(?:www\.)?scmp\.com/(esi/messages\.php|misc/|modules/|sites/) + to + https://www.scmp.com/$1 + + target + + + host + scmp.com + + + host + www.scmp.com + + + + + South by Southwest (partial) + + ruleset + + name + South by Southwest (partial) + rule + + from + ^http://cart\.sxsw\.com/ + to + https://cart.sxsw.com/ + + securecookie + + host + ^cart\.sxsw\.com$ + name + .* + + target + + host + cart.sxsw.com + + + + Southbank Centre.co.uk (partial) + + ruleset + + exclusion + + + pattern + ^http://ticketing\.southbankcentre\.co\.uk/+(?!favicon\.ico|sites/|(?:support-us/trusts-foundations|visitor-info/directions-and-opening-times)/*(?:$|\?)) + + + pattern + ^http://www\.southbankcentre\.co\.uk/+(?!$|\?|(?:about-us|shop-eat-drink|support-us/membership|venues/royal-festival-hall|visitor-info/access|visitor-info/directions-and-opening-times|whatson)(?:$|[?/])|(?:buy-membership|find)/*(?:$|\?)|favicon\.ico|sites/) + + + name + Southbank Centre.co.uk (partial) + rule + + + from + ^http://www\.southbankcentre\.co\.uk/+buy-membership/*(?=$|\?) + to + https://www.southbankcentre.co.uk/support-us/membership + + + from + ^http://www\.southbankcentre\.co\.uk/+find/*(?:$|\?.*) + to + https://www.southbankcentre.co.uk/whatson + + + from + ^http://((?:shop|shopcms|ticketing|www)\.)?southbankcentre\.co\.uk/ + to + https://$1southbankcentre.co.uk/ + + + securecookie + + host + ^\.shop(?:cms)?\.southbankcentre\.co\.uk$ + name + .+ + + target + + + host + southbankcentre.co.uk + + + host + *.southbankcentre.co.uk + + + + + SouthernElectric + + ruleset + + name + SouthernElectric + platform + mixedcontent + rule + + from + ^http://(?:www\.)?southern-electric\.co\.uk/ + to + https://www.southern-electric.co.uk/ + + target + + + host + southern-electric.co.uk + + + host + www.southern-electric.co.uk + + + + + Sovereign Man.com + + ruleset + + name + Sovereign Man.com + rule + + from + ^http://(www\.)?sovereignman\.com/ + to + https://$1sovereignman.com/ + + target + + + host + sovereignman.com + + + host + www.sovereignman.com + + + + + Soylent News.org (partial) + + ruleset + + name + Soylent News.org (partial) + rule + + from + ^http://(www\.)?soylentnews\.org/ + to + https://$1soylentnews.org/ + + target + + + host + soylentnews.org + + + host + www.soylentnews.org + + + + + Sozialdemokratische Partei Deutschlands + + ruleset + + name + Sozialdemokratische Partei Deutschlands + rule + + + from + ^https?://spd\.de/ + to + https://www.spd.de/ + + + from + ^http://([^/:@]+)?\.spd\.de/ + to + https://$1.spd.de/ + + + target + + + host + spd.de + + + host + *.spd.de + + + + + Space Inch (partial) + + ruleset + + name + Space Inch (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?godownloadsongs\.com/ + to + https://godownloadsongs.com/ + + + from + ^http://(www\.)?skipscreen\.com/ + to + https://skipscreen.com/ + + + target + + + host + godownloadsongs.com + + + host + www.godownloadsongs.com + + + host + skipscreen.com + + + host + www.skipscreen.com + + + + + Space Industry News + + ruleset + + name + Space Industry News + rule + + from + ^https?://(?:www\.)?spaceindustrynews\.com/ + to + https://spaceindnews.wpengine.com/ + + target + + + host + spaceindustrynews.com + + + host + www.spaceindustrynews.com + + + + + Space Telescope Science Institute (partial) + + ruleset + + name + Space Telescope Science Institute (partial) + rule + + from + ^http://archive\.stsci\.edu/ + to + https://archive.stsci.edu/ + + securecookie + + host + ^archive\.stsci\.edu$ + name + .+ + + target + + host + archive.stsci.edu + + + + Space2u (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?space2u\.com/(?!accadm/base/auth\.php|files/login\.php|images/) + + name + Space2u (partial) + rule + + from + ^http://(owa\.|webmail2\.|www\.)?space2u\.com/ + to + https://$1space2u.com/ + + securecookie + + host + ^(?:owa|webmail2)\.space2u\.com$ + name + .+ + + target + + + host + space2u.com + + + host + www.space2u.com + + + + + SpaceWeb + + ruleset + + name + SpaceWeb + rule + + from + ^http://(cp\.|www\.)?sweb\.ru/ + to + https://$1sweb.ru/ + + securecookie + + host + ^\.sweb\.ru$ + name + .* + + target + + + host + sweb.ru + + + host + *.sweb.ru + + + + + SpaceX + + ruleset + + name + SpaceX + platform + mixedcontent + rule + + from + ^http://(?:www\.)?spacex\.com/ + to + https://spacex.com/ + + target + + + host + spacex.com + + + host + www.spacex.com + + + + + Spaceweather PHONE + + ruleset + + name + Spaceweather PHONE + rule + + from + ^https?://(?:www\.)?spaceweatherphone\.com/ + to + https://spaceweatherphone.com/ + + securecookie + + host + ^spaceweatherphone\.com$ + name + .* + + target + + + host + spaceweatherphone.com + + + host + www.spaceweatherphone.com + + + + + SpamGourmet + + ruleset + + name + SpamGourmet + rule + + + from + ^http://spamgourmet\.com/ + to + https://spamgourmet.com/ + + + from + ^http://www\.spamgourmet\.com/ + to + https://www.spamgourmet.com/ + + + target + + + host + spamgourmet.com + + + host + www.spamgourmet.com + + + + + Spanair + + ruleset + + name + Spanair + rule + + + from + ^http://spanair\.com/ + to + https://spanair.com/ + + + from + ^http://([^/:@\.]+)\.spanair\.com/ + to + https://$1.spanair.com/ + + + target + + + host + spanair.com + + + host + *.spanair.com + + + + + Sparked + + ruleset + + name + Sparked + rule + + from + ^http://www\.sparked\.com/ + to + https://www.sparked.com/ + + target + + host + www.sparked.com + + + + Sparkfun + + ruleset + + name + Sparkfun + rule + + from + ^http://((?:analytics|cdn|data|forum|learn|static|www)\.)?sparkfun\.com/ + to + https://$1sparkfun.com/ + + securecookie + + host + ^(?:forum)?\.sparkfun\.com$ + name + .+ + + target + + + host + sparkfun.com + + + host + *.sparkfun.com + + + + + Sparklit + + ruleset + + name + Sparklit + rule + + from + ^http://(www\.)?sparklit\.com/ + to + https://$1sparklit.com/ + + securecookie + + host + ^\.sparklit\.com$ + name + .+ + + target + + + host + sparklit.com + + + host + *.sparklit.com + + + + + Sparkstudios.com + + ruleset + + name + Sparkstudios.com + rule + + + from + ^http://www\.sparkstudios\.com/ + to + https://www.sparkstudios.com/ + + + from + ^http://sparkstudios\.com/ + to + https://www.sparkstudios.com/ + + + target + + + host + www.sparkstudios.com + + + host + sparkstudios.com + + + + + Spartafx.com + + ruleset + + name + Spartafx.com + rule + + from + ^http://(www\.)?spartafx\.com/ + to + https://$1spartafx.com/ + + securecookie + + host + ^(?:w*\.)?spartafx\.com$ + name + .+ + + target + + + host + spartafx.com + + + host + *.spartafx.com + + + + + Sparx Trading.com (false MCB) + + ruleset + + name + Sparx Trading.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?sparxtrading\.com/ + to + https://www.sparxtrading.com/ + + securecookie + + host + ^\.sparxtrading\.com$ + name + .+ + + target + + + host + sparxtrading.com + + + host + *.sparxtrading.com + + + + + Sparx Trading.com (partial) + + ruleset + + name + Sparx Trading.com (partial) + rule + + from + ^http://(?:www\.)?sparxtrading\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://www.sparxtrading.com/ + + target + + + host + sparxtrading.com + + + host + www.sparxtrading.com + + + + + SpatialBuzz.com (partial) + + ruleset + + name + SpatialBuzz.com (partial) + rule + + from + ^http://((?:admin|api|cdn2?|demo|fs|maps|splunk|vpn)\.)?spatialbuzz\.com/ + to + https://$1spatialbuzz.com/ + + securecookie + + host + ^fs\.spatialbuzz\.com$ + name + .+ + + target + + + host + spatialbuzz.com + + + host + *.spatialbuzz.com + + + + + SpatialPoint + + ruleset + + name + SpatialPoint + rule + + from + ^http://(?:www\.)?spatialpoint\.com/ + to + https://spatialpoint.com/ + + target + + + host + spatialpoint.com + + + host + www.spatialpoint.com + + + + + Speak Your Silence + + ruleset + + name + Speak Your Silence + rule + + from + ^http://(www\.)?speakyoursilence\.org/ + to + https://$1speakyoursilence.org/ + + securecookie + + host + ^\.?speakyoursilence\.org$ + name + .+ + + target + + + host + speakyoursilence.org + + + host + *.speakyoursilence.org + + + + + Speaker Deck.com + + ruleset + + name + Speaker Deck.com + rule + + from + ^http://(?:www\.)?speakerdeck\.com/ + to + https://speakerdeck.com/ + + securecookie + + host + ^speakerdeck\.com$ + name + .+ + + target + + + host + speakerdeck.com + + + host + www.speakerdeck.com + + + + + Speaker Exchange + + ruleset + + name + Speaker Exchange + rule + + from + ^http://(www\.)?reconingspeakers\.com/ + to + https://$1reconingspeakers.com/ + + securecookie + + host + ^(?:w*\.)?reconingspeakers\.com$ + name + .+ + + target + + + host + reconingspeakers.com + + + host + *.reconingspeakers.com + + + + + SpeakyChat.com + + ruleset + + name + SpeakyChat.com + rule + + + from + ^http://((?:download|install|www)\.)?speakychat\.com/ + to + https://$1speakychat.com/ + + + from + ^http://(www\.)?speakyweb\.com/ + to + https://$1speakyweb.com/ + + + securecookie + + host + ^(?:w*\.)?speaky(?:chat|web)\.com$ + name + .+ + + target + + + host + speakychat.com + + + host + *.speakychat.com + + + host + speakyweb.com + + + host + *.speakyweb.com + + + + + Special-trade.de + + ruleset + + name + Special-trade.de + rule + + from + ^http://(www\.)?special-trade\.de/ + to + https://www.special-trade.de/ + + target + + + host + www.special-trade.de + + + host + special-trade.de + + + + + SpecialForces + + ruleset + + name + SpecialForces + rule + + from + ^http://(www\.)?specialforces\.com/ + to + https://$1specialforces.com/ + + securecookie + + host + ^(?:.+\.)?specialforces\.com$ + name + .+ + + target + + + host + specialforces.com + + + host + *.specialforces.com + + + + + Specialized Products Company (partial) + + ruleset + + name + Specialized Products Company (partial) + rule + + from + ^https?://(?:www\.)?specialized\.net/($|\?|Specialized/(?:App_Themes|Checkout|images|Login\.aspx|Repository|styles|WebResource\.axd)(?:$|\?|/)) + to + https://www.specialized.net/$1 + + target + + + host + specialized.net + + + host + www.specialized.net + + + + + Specific Media (partial) + + ruleset + + name + Specific Media (partial) + rule + + + from + ^http://(cm|smp)\.specificmedia\.com/ + to + https://$1.specificmedia.com/ + + + from + ^http://smp\.specificmedia\.net/ + to + https://smp.specificmedia.net/ + + + target + + + host + *.specificmedia.com + + + host + smp.specificmedia.net + + + + + Specificclick + + ruleset + + name + Specificclick + rule + + + from + ^http://(afe2?|bp|clk|cs|dp2?|mpp2?|rome)\.specificclick\.net/ + to + https://$1.specificclick.net/ + + + from + ^http://dg\.specificclick\.net/ + to + https://dp.specificclick.net/ + + + securecookie + + + host + ^\.specificclick\.net$ + name + ^ug$ + + + host + ^(?:afe2?|bp|clk|cs|dp|mpp)\.specificclick\.net$ + name + .+ + + + target + + host + *.specificclick.net + + + + Spectraflow.com + + ruleset + + name + Spectraflow.com + rule + + from + ^http://(www\.)?spectraflow\.com/ + to + https://$1spectraflow.com/ + + securecookie + + host + ^(?:www)?\.spectraflow\.com$ + name + .+ + + target + + + host + spectraflow.com + + + host + *.spectraflow.com + + + + + SpeedPPC (partial) + + ruleset + + name + SpeedPPC (partial) + rule + + from + ^http://(www\.)?speedppc\.com/ + to + https://$1speedppc.com/ + + securecookie + + host + ^(?:w*\.)?speedppc\.com$ + name + .+ + + target + + + host + speedppc.com + + + host + *.speedppc.com + + + + + SpeedTree.com (partial) + + ruleset + + name + SpeedTree.com (partial) + rule + + from + ^http://(store\.|www\.)?speedtree\.com/ + to + https://$1speedtree.com/ + + securecookie + + + host + ^\.speedtree\.com$ + name + ^_(?:opt_\w+|_utm)\w$ + + + host + ^(?:\.?store|www)\.speedtree\.com$ + name + .+ + + + target + + + host + speedtree.com + + + host + *.speedtree.com + + + + + Speedtest.net (partial) + + ruleset + + exclusion + + pattern + ^http://c\.speedtest\.net/crossdomain\.xml + + name + Speedtest.net (partial) + rule + + + from + ^https?://(?:www\.)?speedtest\.net/(css/|images/|result/) + to + https://www.speedtest.net/$1 + + + from + ^https?://c\.speedtest\.net/ + to + https://www.speedtest.net/ + + + target + + + host + speedtest.net + + + host + *.speedtest.net + + + + + Spendbitcoins + + ruleset + + name + Spendbitcoins + rule + + from + ^http://(www\.)?spendbitcoins\.com/ + to + https://$1spendbitcoins.com/ + + securecookie + + host + ^(?:w*\.)?spendbitcoins\.com$ + name + .+ + + target + + + host + spendbitcoins.com + + + host + *.spendbitcoins.com + + + + + Spiceworks (partial) + + ruleset + + name + Spiceworks (partial) + rule + + from + ^http://(community|static)\.spiceworks\.com/ + to + https://$1.spiceworks.com/ + + securecookie + + + host + ^\.spiceworks\.com$ + name + ^(?:spiceworks_community|_swndat|_swnid)$ + + + host + ^\w.*\.spiceworks\.com$ + name + .* + + + target + + host + *.spiceworks.com + + + + Spider.io (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?splider\.io/(?!wp-content/) + + name + Spider.io (partial) + rule + + from + ^http://(?:www\.)?spider\.io/ + to + https://d1ukwbduzme6ra.cloudfront.net/ + + target + + + host + spider.io + + + host + www.spider.io + + + + + SpiderOak + + ruleset + + name + SpiderOak + rule + + from + ^http://(blog\.|www\.)?spideroak\.com/ + to + https://$1spideroak.com/ + + securecookie + + host + ^(?:www\.)?spideroak\.com$ + name + .+ + + target + + + host + spideroak.com + + + host + *.spideroak.com + + + + + Spiderweb Software + + ruleset + + name + Spiderweb Software + rule + + from + ^http://(www\.)?(spidweb|spiderwebsoftware)\.com/ + to + https://$1spiderwebsoftware.com/ + + securecookie + + host + ^(www\.)?spiderwebsoftware\.com$ + name + .+ + + target + + + host + spiderwebsoftware.com + + + host + www.spiderwebsoftware.com + + + host + spidweb.com + + + host + www.spidweb.com + + + + + Spiegel (partial) + + ruleset + + name + Spiegel (partial) + rule + + + from + ^http://(?:cdn\d?\.)?spiegel\.de/ + to + https://www.spiegel.de/ + + + from + ^http://www\.spiegel\.de/(images/|img/|layout/|static/|staticgen/) + to + https://www.spiegel.de/$1 + + + from + ^http://(abo|count|magazin|shop|wissen)\.spiegel\.de/ + to + https://$1.spiegel.de/ + + + securecookie + + host + ^(?:count|shop)\.spiegel\.de$ + name + .* + + target + + + host + spiegel.de + + + host + *.spiegel.de + + + + + Spiegel QC (partial) + + ruleset + + name + Spiegel QC (partial) + rule + + from + ^http://adserv\.quality-channel\.de/ + to + https://adserv.quality-channel.de/ + + securecookie + + host + ^\.quality-channel\.de$ + name + .+ + + target + + host + *.quality-channel.de + + + + Spirit Airlines + + ruleset + + name + Spirit Airlines + platform + mixedcontent + rule + + + from + ^http://spirit\.com/ + to + https://spirit.com/ + + + from + ^http://www\.spirit\.com/ + to + https://www.spirit.com/ + + + target + + + host + spirit.com + + + host + www.spirit.com + + + + + Splash Data.com (partial) + + ruleset + + name + Splash Data.com (partial) + rule + + from + ^http://(www\.)?splashdata\.com/ + to + https://$1splashdata.com/ + + target + + + host + splashdata.com + + + host + www.splashdata.com + + + + + SplatF (partial) + + ruleset + + name + SplatF (partial) + rule + + from + ^https?://cdn\.splatf\.com/ + to + https://dclr8nj9g78hi.cloudfront.net/ + + target + + host + cdn.splatf.com + + + + Splendid Bacon + + ruleset + + name + Splendid Bacon + platform + firefox mixedcontent + rule + + from + ^http://(www\.)?splendidbacon\.com/ + to + https://splendidbacon.com/ + + securecookie + + host + ^splendidbacon\.com$ + name + .+ + + target + + + host + splendidbacon.com + + + host + www.splendidbacon.com + + + + + Splinu.dk + + ruleset + + name + Splinu.dk + rule + + from + ^http://(?:www\.)?spilnu\.dk/ + to + https://www.spilnu.dk/ + + securecookie + + host + ^www\.spilnu\.dk$ + name + .+ + + target + + + host + spilnu.dk + + + host + www.spilnu.dk + + + + + Split Reason Clothing + + ruleset + + name + Split Reason Clothing + rule + + from + ^http://(www\.)?splitreason\.com/ + to + https://$1splitreason.com/ + + securecookie + + host + ^(?:www\.)?splitreason\.com$ + name + .+ + + target + + + host + splitreason.com + + + host + www.splitreason.com + + + + + Sploder.com (partial) + + ruleset + + name + Sploder.com (partial) + rule + + from + ^http://cdn\.sploder\.com/ + to + https://cdn.sploder.com/ + + target + + host + cdn.sploder.com + + + + Spoki + + ruleset + + name + Spoki + rule + + from + ^http://(?:img\d\w\.)?www\.spoki\.lv/ + to + https://www.spoki.lv/ + + securecookie + + host + ^.*\.spoki\.lv$ + name + .* + + target + + + host + spoki.lv + + + host + *.spoki.lv + + + host + *.www.spoki.lv + + + + + Spontex.org + + ruleset + + name + Spontex.org + platform + mixedcontent + rule + + + from + ^http://spontex\.org/ + to + https://spontex.org/ + + + from + ^http://(adminmedia|m|www|fr|en|stats|media)\.spontex\.org/ + to + https://$1.spontex.org/ + + + securecookie + + + host + ^((adminmedia|m|www|fr|en|stats|media)?\.)?spontex\.org$ + name + .+ + + + host + ^spontex\.org$ + name + .+ + + + target + + + host + spontex.org + + + host + www.spontex.org + + + host + fr.spontex.org + + + host + en.spontex.org + + + host + media.spontex.org + + + host + stats.spontex.org + + + host + m.spontex.org + + + host + adminmedia.spontex.org + + + + + Spoonful.com + + ruleset + + name + Spoonful.com + rule + + from + ^http://(?:static\.|www\.)?spoonful\.com/ + to + https://spoonful.com/ + + target + + + host + spoonful.com + + + host + *.spoonful.com + + + + + Sportifik + + ruleset + + name + Sportifik + rule + + + from + ^https?://sportifik\.com/ + to + https://www.sportifik.com/ + + + from + ^http://([^/:@]+)?\.sportifik\.com/ + to + https://$1.sportifik.com/ + + + target + + + host + sportifik.com + + + host + *.sportifik.com + + + + + Sports Authority (partial) + + ruleset + + name + Sports Authority (partial) + rule + + from + ^https?://(?:www\.)?sportsauthority\.com/ + to + https://www.sportsauthority.com/ + + securecookie + + host + ^www\.sportsauthority\.com$ + name + .+ + + target + + + host + sportsauthority.com + + + host + www.sportsauthority.com + + + + + Spot.IM + + ruleset + + name + Spot.IM + rule + + + from + ^http://(?:www\.)?spot\.im/ + to + https://www.spot.im/ + + + from + ^http://(www\.)?community\.spot\.im/ + to + https://$1community.spot.im/ + + + target + + + host + spot.im + + + host + *.spot.im + + + + + SpotXchange.com (partial) + + ruleset + + name + SpotXchange.com (partial) + rule + + from + ^http://((?:search|sync\.search|www)\.)?spotxchange\.com/ + to + https://$1spotxchange.com/ + + target + + + host + spotxchange.com + + + host + *.spotxchange.com + + + + + Spotify (partial) + + ruleset + + name + Spotify (partial) + rule + + + from + ^http://cf\.scdn\.co/ + to + https://d2c87l0yth4zbw.cloudfront.net/ + + + from + ^http://((?:community|developer|embed|news|labs|open|play|press|support|www)\.)?spotify\.com/ + to + https://$1spotify.com/ + + + from + ^http://download\.spotify\.com/ + to + https://d1clcicqv97n4s.cloudfront.net/ + + + securecookie + + host + ^(?:community|\.developer|\.?embed|www)?\.spotify\.com$ + name + .+ + + target + + + host + cf.scdn.co + + + host + spotify.com + + + host + *.spotify.com + + + + + Spotplanet + + ruleset + + name + Spotplanet + rule + + from + ^http://(www\.)?spotplanet\.org/ + to + https://$1spotplanet.org/ + + securecookie + + host + ^\.spotplanet\.org$ + name + .+ + + target + + + host + spotplanet.org + + + host + *.spotplanet.org + + + + + Spotware.com + + ruleset + + name + Spotware.com + rule + + from + ^http://(www\.)?spotware\.com/ + to + https://$1spotware.com/ + + target + + + host + spotware.com + + + host + www.spotware.com + + + + + Spreadshirt + + ruleset + + name + Spreadshirt + rule + + + from + ^http://spreadshirt\.(co\.uk|de|com|net)/ + to + https://www.spreadshirt.$1/ + + + from + ^http://([^/:@]*)\.spreadshirt\.(at|be|co\.uk|com|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)/ + to + https://$1.spreadshirt.$2/ + + + securecookie + + host + .*\.spreadshirt\.(?:at|be|co\.uk|com|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)$ + name + .+ + + target + + + host + spreadshirt.at + + + host + *.spreadshirt.at + + + host + spreadshirt.be + + + host + *.spreadshirt.be + + + host + spreadshirt.co.uk + + + host + *.spreadshirt.co.uk + + + host + spreadshirt.com + + + host + *.spreadshirt.com + + + host + spreadshirt.de + + + host + *.spreadshirt.de + + + host + spreadshirt.dk + + + host + *.spreadshirt.dk + + + host + spreadshirt.es + + + host + *.spreadshirt.es + + + host + spreadshirt.fi + + + host + *.spreadshirt.fi + + + host + spreadshirt.fr + + + host + *.spreadshirt.fr + + + host + spreadshirt.ie + + + host + *.spreadshirt.ie + + + host + spreadshirt.it + + + host + *.spreadshirt.it + + + host + spreadshirt.net + + + host + *.spreadshirt.net + + + host + spreadshirt.nl + + + host + *.spreadshirt.nl + + + host + spreadshirt.no + + + host + *.spreadshirt.no + + + host + spreadshirt.pl + + + host + *.spreadshirt.pl + + + host + spreadshirt.se + + + host + *.spreadshirt.se + + + + + Spring-TNS.net (partial) + + ruleset + + name + Spring-TNS.net (partial) + rule + + + from + ^http://ssl-(\w+)\.spring-tns\.net/ + to + https://ssl-$1.spring-tns.net/ + + + from + ^http://nelonen\.spring-tns\.net/ + to + https://ssl-nelonen.spring-tns.net/ + + + securecookie + + host + .*\.spring-tns\.net$ + name + .+ + + target + + host + *.spring-tns.net + + + + Spring.io (false MCB) + + ruleset + + name + Spring.io (false MCB) + platform + mixedcontent + rule + + from + ^http://forum\.spring\.io/ + to + https://forum.spring.io/ + + securecookie + + host + ^forum\.spring\.io$ + name + .+ + + target + + host + forum.spring.io + + + + Spring.io (partial) + + ruleset + + name + Spring.io (partial) + rule + + from + ^http://(www\.)?spring\.io/ + to + https://$1spring.io/ + + target + + + host + spring.io + + + host + www.spring.io + + + + + Springer (partial) + + ruleset + + name + Springer (partial) + rule + + + from + ^https?://(?:www\.)?springer\.com/ + to + https://www.springer.com/ + + + from + ^http://(admin|checkout|images|preview|static)\.springer\.com/ + to + https://$1.springer.com/ + + + from + ^http://(?:www\.)?springer-gabler\.de/ + to + https://springer-gabler.de/ + + + from + ^http://(?:www\.)?springerzahnmedizin\.de/(css|img|servlet)/ + to + https://springerzahnmedizin.de/$1/ + + + securecookie + + + host + ^springer-gabler\.de$ + name + .+ + + + host + ^.+\.springer\.com$ + name + .+ + + + target + + + host + springer.com + + + host + *.springer.com + + + host + springer-gabler.de + + + host + www.springer-gabler.de + + + host + springerzahnmedizin.de + + + host + www.springerzahnmedizin.de + + + + + Springpad + + ruleset + + name + Springpad + rule + + from + ^http://(?:www\.)?springpadit\.com/ + to + https://springpadit.com/ + + target + + + host + springpadit.com + + + host + www.springpadit.com + + + + + Springshare + + ruleset + + name + Springshare + rule + + from + ^http://(www\.)?springshare\.com/ + to + https://$1springshare.com/ + + target + + + host + springshare.com + + + host + www.springshare.com + + + + + Sprint.com (partial) + + ruleset + + name + Sprint.com (partial) + rule + + + from + ^https?://(?:www\.)?sprint\.com/ + to + https://www.sprint.com/ + + + from + ^http://community\.sprint\.com/favicon\.ico + to + https://community.sprint.com/favicon.ico + + + from + ^http://(coverage|discover|image[234]|mysprint|ria|shop2?)\.sprint\.com/ + to + https://$1.sprint.com/ + + + from + ^http://support\.sprint\.com/(catalog/image|global/(?:cs|image))s/ + to + https://support.sprint.com/$1s/ + + + from + ^http://manage\.sprintpcs\.com/ + to + https://manage.sprintpcs.com/ + + + securecookie + + host + ^.*\.sprint(pcs)?\.com$ + name + .* + + target + + + host + sprint.com + + + host + *.sprint.com + + + host + manage.sprintpcs.com + + + + + SpritesMods.com + + ruleset + + name + SpritesMods.com + rule + + from + ^http://(www\.)?spritesmods\.com/ + to + https://$1spritesmods.com/ + + target + + + host + spritesmods.com + + + host + www.spritesmods.com + + + + + Spriza.com + + ruleset + + name + Spriza.com + rule + + from + ^http://(?:www\.)?spriza\.com/ + to + https://www.spriza.com/ + + securecookie + + host + ^(?:www)?\.spriza\.com$ + name + .+ + + target + + + host + spriza.com + + + host + *.spriza.com + + + + + Sprout (partial) + + ruleset + + name + Sprout (partial) + rule + + from + ^https?://(?:www\.)?sproutinc\.com/ + to + https://sproutinc.com/ + + target + + + host + sproutinc.com + + + host + www.sproutinc.com + + + + + Sptag.com + + ruleset + + name + Sptag.com + rule + + from + ^http://(www\.)?sptag\.com/ + to + https://$1sptag.com/ + + securecookie + + host + ^(?:www\.)?sptag\.com$ + name + .+ + + target + + + host + sptag.com + + + host + www.sptag.com + + + + + Spyderco + + ruleset + + name + Spyderco + platform + mixedcontent + rule + + from + ^http://(www\.)?spyderco\.com/ + to + https://$1spyderco.com/ + + target + + + host + spyderco.com + + + host + www.spyderco.com + + + + + Spylog.com (partial) + + ruleset + + name + Spylog.com (partial) + rule + + from + ^http://(?:u\d+\.02|counter)\.spylog\.com/ + to + https://counter.spylog.com/ + + securecookie + + host + ^\.spylog\.com$ + name + .+ + + target + + host + *.spylog.com + + + + Square (partial) + + ruleset + + name + Square (partial) + platform + firefox + rule + + from + ^http://(www\.)?squareup\.com/ + to + https://$1squareup.com/ + + securecookie + + host + ^(?:www\.)?squareup\.com$ + name + .+ + + target + + + host + squareup.com + + + host + www.squareup.com + + + + + Square Penguin + + ruleset + + name + Square Penguin + rule + + from + ^http://(www\.)?squarepenguin\.co\.uk/ + to + https://$1squarepenguin.co.uk/ + + securecookie + + host + ^\.squarepenguin\.co\.uk$ + name + .+ + + target + + + host + squarepenguin.co.uk + + + host + *.squarepenguin.co.uk + + + + + Square.com + + ruleset + + name + Square.com + platform + firefox + rule + + from + ^http://square\.com/ + to + https://square.com/ + + securecookie + + host + ^square\.com$ + name + .+ + + target + + host + square.com + + + + Squarespace (partial) + + ruleset + + name + Squarespace (partial) + rule + + + from + ^http://(\w+\.)?sqsp\.com/ + to + https://$1sqsp.com/ + + + from + ^http://((?:blog|developers|static|www)\.)?squarespace\.com/ + to + https://$1squarespace.com/ + + + from + ^https?://cachefly\.squarespace\.com/ + to + https://squarespace.cachefly.net/ + + + from + ^https?://s3\.media\.squarespace\.com/ + to + https://s3.amazonaws.com/s3.media.squarespace.com/ + + + from + ^http://(\w+)\.squarespace\.com/(?=display/|favicon\.ico|layout/|picture/|storage/|universal/) + to + https://$1.squarespace.com/ + + + securecookie + + host + .*\.sq(?:sp|uarespace)\.com$ + name + .+ + + target + + + host + sqsp.com + + + host + *.sqsp.com + + + host + squarespace.com + + + host + *.squarespace.com + + + + + Squid Solutions (partial) + + ruleset + + name + Squid Solutions (partial) + rule + + from + ^http://aws\.tracker\.squidanalytics\.com/ + to + https://aws.tracker.squidanalytics.com/ + + target + + host + aws.tracker.squidanalytics.com + + + + Squirrel-webmail.surftown.com + + ruleset + + name + Squirrel-webmail.surftown.com + rule + + from + ^http://squirrel-webmail\.surftown\.com/ + to + https://squirrel-webmail.surftown.com/ + + target + + host + squirrel-webmail.surftown.com + + + + SquirrelMail + + ruleset + + name + SquirrelMail + rule + + from + ^http://(?:www\.)?squirrelmail\.org/ + to + https://squirrelmail.org/ + + securecookie + + host + ^squirrelmail\.org$ + name + .+ + + target + + + host + squirrelmail.org + + + host + www.squirrelmail.org + + + + + Srware + + ruleset + + name + Srware + rule + + from + ^http://(?:www\.)?srware\.net/ + to + https://www.srware.net/ + + securecookie + + host + ^(.*\.)?srware.net$ + name + .* + + target + + + host + srware.net + + + host + www.srware.net + + + + + SsbKyh.com (partial) + + ruleset + + name + SsbKyh.com (partial) + rule + + from + ^http://cdn\.ssbkyh\.com/ + to + https://djhznh41oxwef.cloudfront.net/ + + target + + host + cdn.ssbkyh.com + + + + St Graber.org + + ruleset + + name + St Graber.org + rule + + from + ^http://(dl\.|www\.)?stgraber\.org/ + to + https://$1stgraber.org/ + + target + + + host + stgraber.org + + + host + *.stgraber.org + + + + + St L Beacon.org + + ruleset + + name + St L Beacon.org + rule + + from + ^http://(?:www\.)?stlbeacon\.org/ + to + https://www.stlbeacon.org/ + + securecookie + + host + ^(?:www\.)?stlbeacon\.org$ + name + .+ + + target + + + host + stlbeacon.org + + + host + www.stlbeacon.org + + + + + St-Andrews.ac.uk (partial) + + ruleset + + name + St-Andrews.ac.uk (partial) + rule + + + from + ^http://(?:www\.)?st-andrews\.ac\.uk/ + to + https://www.st-andrews.ac.uk/ + + + from + ^http://(risweb|sparc|www\.vacancies)\.st-andrews\.ac\.uk/ + to + https://$1.st-andrews.ac.uk/ + + + securecookie + + + host + ^\.(?:.+\.)?st-andrews\.ac\.uk$ + name + ^__utm\w+$ + + + host + ^(?:risweb|www\.vacancies)\.st-andrews\.ac\.uk$ + name + .+ + + + target + + + host + st-andrews.ac.uk + + + host + *.st-andrews.ac.uk + + + + + St. Kitts Zipline (partial) + + ruleset + + name + St. Kitts Zipline (partial) + rule + + + from + ^http://(?:www\.)?stkittszipline\.com/images/logoImage_14\.png + to + https://secure.stkittszipline.com/images/ms/logoImage_14.png + + + from + ^http://secure\.stkittszipline\.com/ + to + https://secure.stkittszipline.com/ + + + securecookie + + host + ^secure\.stkittszipline\.com$ + name + .+ + + target + + + host + stkittszipline.com + + + host + *.stkittszipline.com + + + + + Sta.sh + + ruleset + + name + Sta.sh + rule + + from + ^http://(www\.)?sta\.sh/ + to + https://$1sta.sh/ + + securecookie + + host + ^\.sta\.sh$ + name + .+ + + target + + + host + sta.sh + + + host + *.sta.sh + + + + + Stable Host (partial) + + ruleset + + name + Stable Host (partial) + rule + + + from + ^http://(www\.)?stablehost\.com/(css/|images/|login\.php) + to + https://$1stablehost.com/$2 + + + from + ^http://billing\.stablehost\.com/ + to + https://billing.stablehost.com/ + + + from + ^https?://cdn\.stablehost\.com/ + to + https://www.stablehost.com/images/ + + + securecookie + + host + ^billing\.stablehost\.com$ + name + .* + + target + + + host + stablehost.com + + + host + www.stablehost.com + + + + + Stack Exchange (mixed content) + + ruleset + + name + Stack Exchange (mixed content) + platform + mixedcontent + rule + + + from + ^http://(\w+\.)?stackexchange\.com/ + to + https://$1stackexchange.com/ + + + from + ^http://blog\.stackoverflow\.com/ + to + https://blog.stackoverflow.com/ + + + securecookie + + host + \.stackexchange\.com$ + name + .+ + + target + + + host + stackexchange.com + + + host + *.stackexchange.com + + + host + blog.stackoverflow.com + + + + + Stack Exchange (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:\w+\.)?(?:stackexchange|stackoverflow)\.com/users/authenticate/ + + + pattern + ^http://blog\.stackoverflow\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + + name + Stack Exchange (partial) + rule + + + from + ^http://(?:www\.)?blogoverflow\.com/$ + to + https://stackexchange.com/blogs + + + from + ^http://(?:(or\.)?cdn\.)?sstatic\.net/ + to + https://$1cdn.sstatic.net/ + + + from + ^http://cdn-c(areers|hat)\.sstatic\.net/ + to + https://cdn-c$1.sstatic.net/ + + + from + ^http://(?:www\.)?stackapps\.com/ + to + https://stackapps.com/ + + + from + ^http://(\w+\.)?stackexchange\.com/ + to + https://$1stackexchange.com/ + + + from + ^http://((?:blog|www|meta|careers)\.)?stackoverflow\.com/ + to + https://$1stackoverflow.com/ + + + from + ^http://app\.stacktack\.com/ + to + https://s3.amazonaws.com/stacktackapp/ + + + from + ^http://(www\.|meta\.)?superuser\.com/ + to + https://$1superuser.com/ + + + from + ^http://teststackoverflow\.com/ + to + https://teststackoverflow.com/ + + + securecookie + + + host + ^\.sstatic\.net$ + name + .+ + + + host + \.stackexchange\.com$ + name + .+ + + + host + ^stackoverflow\.com$ + name + .+ + + + host + ^\.teststackoverflow\.com$ + name + .+ + + + target + + + host + blogoverflow.com + + + host + www.blogoverflow.com + + + host + sstatic.net + + + host + *.sstatic.net + + + host + stackapps.com + + + host + www.stackapps.com + + + host + stackexchange.com + + + host + *.stackexchange.com + + + host + stackoverflow.com + + + host + *.stackoverflow.com + + + host + app.stacktack.com + + + host + superuser.com + + + host + *.superuser.com + + + host + teststackoverflow.com + + + host + *.teststackoverflow.com + + + + + Stack.nl + + ruleset + + name + Stack.nl + platform + cacert + rule + + from + ^http://(dbadmin|koelkast|((?:bugs|forum|wiki)\.)?uqm|webmail|websites|www)\.stack\.nl/ + to + https://$1.stack.nl/ + + securecookie + + host + .+\.stack\.nl$ + name + .+ + + target + + host + *.stack.nl + + + + StackCommerce.com (partial) + + ruleset + + name + StackCommerce.com (partial) + rule + + from + ^http://((?:cdn|image-assets|stores-assets|www)\.)?stackcommerce\.com/ + to + https://$1stackcommerce.com/ + + target + + + host + stackcommerce.com + + + host + *.stackcommerce.com + + + + + StackMonkey.com + + ruleset + + name + StackMonkey.com + rule + + from + ^http://(?:www\.)?stackmonkey\.com/ + to + https://www.stackmonkey.com/ + + securecookie + + host + ^www\.stackmonkey\.com$ + name + .+ + + target + + + host + stackmonkey.com + + + host + www.stackmonkey.com + + + + + StackSocial (partial) + + ruleset + + name + StackSocial (partial) + rule + + + from + ^http://(cnet\.|www\.)?stacksocial\.com/ + to + https://$1stacksocial.com/ + + + from + ^https?://jobs\.stacksocial\.com/(css|img)/ + to + https://stacksocial.theresumator.com/$1/ + + + securecookie + + host + ^\.stacksocial\.com$ + name + .+ + + target + + + host + stacksocial.com + + + host + *.stacksocial.com + + + + + Stacklet.com (partial) + + ruleset + + name + Stacklet.com (partial) + rule + + from + ^http://(secure\.|www\.)?stacklet\.com/ + to + https://$1stacklet.com/ + + securecookie + + host + ^(?:\.secure)?\.stacklet\.com$ + name + .+ + + target + + + host + stacklet.com + + + host + *.stacklet.com + + + + + Stadt-Zuerich.ch + + ruleset + + name + Stadt-Zuerich.ch + rule + + from + ^http://(?:www\.)?stadt-zuerich\.ch/ + to + https://www.stadt-zuerich.ch/ + + securecookie + + host + ^www\.stadt-zuerich\.ch$ + name + .+ + + target + + + host + stadt-zuerich.ch + + + host + www.stadt-zuerich.ch + + + + + Stallman.org + + ruleset + + name + Stallman.org + rule + + + from + ^https?://ww\.stallman\.org/ + to + https://www.stallman.org/ + + + from + ^http://(www\.)?stallman\.org/ + to + https://$1stallman.org/ + + + target + + + host + stallman.org + + + host + ww.stallman.org + + + host + www.stallman.org + + + + + Stand Against Spying.org + + ruleset + + name + Stand Against Spying.org + rule + + from + ^http://(www\.)?standagainstspying\.(com|net|org)/ + to + https://$1standagainstspying.$2/ + + target + + + host + standagainstspying.com + + + host + www.standagainstspying.com + + + host + standagainstspying.net + + + host + www.standagainstspying.net + + + host + standagainstspying.org + + + host + www.standagainstspying.org + + + + + Stand Up to Cancer (partial) + + ruleset + + name + Stand Up to Cancer (partial) + rule + + + from + ^http://(?:www\.)?standup2cancer\.(ca|org)/ + to + https://www.standup2cancer.$1/ + + + from + ^http://s(ecure|hop|i)\.standup2cancer\.org/ + to + https://s$1.standup2cancer.org/ + + + from + ^http://su2c\.standup2cancer\.org/(?=_www_images/|favicon\.ico|styles/) + to + https://d3ltd4zpclv1en.cloudfront.net/ + + + securecookie + + host + ^(?:secure)?\.standup2cancer\.(?:ca|org)$ + name + .+ + + target + + + host + standup2cancer.ca + + + host + *.standup2cancer.ca + + + host + standup2cancer.org + + + host + *.standup2cancer.org + + + + + Stand for Children (partial) + + ruleset + + name + Stand for Children (partial) + rule + + + from + ^https?://(?:www\.)?greatteachersgreatschools\.org/ + to + https://www.greatteachersgreatschools.org/ + + + from + ^http://(www\.)?stand\.org/(national/(?:donate|join)|sites/) + to + https://$1stand.org/$2 + + + securecookie + + host + ^.*\.greatteachersgreatschools\.org$ + name + .* + + target + + + host + greatteachersgreatschools.org + + + host + *.greatteachersgreatschools.org + + + host + stand.org + + + host + www.stand.org + + + + + Standaard.be (mixed content) + + ruleset + + name + Standaard.be (mixed content) + platform + mixedcontent + rule + + from + ^http://www\.standaard\.be/ + to + https://www.standaard.be/ + + target + + host + www.standaard.be + + + + Standaard.be (partial) + + ruleset + + exclusion + + pattern + ^http://www\.standaard\.be/+(?!extra/) + + name + Standaard.be (partial) + platform + mixedcontent + rule + + + from + ^http://shop\.standaard\.be/+(?=$|\?) + to + https://shop.standaard.be/CORELIO-Standaard-Site/index-nl_BE + + + from + ^http://(shop\.)?standaard\.be/ + to + https://$1standaard.be/ + + + from + ^http://(?:2|cdn2|www)\.standaard(?:cdn)?\.be/ + to + https://www.standaard.be/ + + + from + ^http://dating\.standaard\.be/(?=css/|favicon\.ico|js/|pics/|pht/) + to + https://secure.datinglab.net/ + + + securecookie + + host + ^shop\.standaard\.be$ + name + .+ + + target + + + host + standaard.be + + + host + *.standaard.be + + + host + 2.standaardcdn.be + + + + + Standard Ebooks.com + + ruleset + + name + Standard Ebooks.com + rule + + from + ^http://(www\.)?standardebooks\.com/ + to + https://$1standardebooks.com/ + + securecookie + + host + ^standardebooks\.com$ + name + .+ + + target + + + host + standardebooks.com + + + host + www.standardebooks.com + + + + + Standish Management + + ruleset + + name + Standish Management + rule + + from + ^http://(eweblp\.|www\.)?standishmanagement\.com/ + to + https://$1standishmanagement.com/ + + securecookie + + host + ^.*\.standishmanagement\.com$ + name + .* + + target + + + host + standishmanagement.com + + + host + *.standishmanagement.com + + + + + Stanford University (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:arts|medblogs|scopeblog)\.stanford\.edu/+(?!wp-content/|wp-includes/) + + + pattern + ^http://admission\.stanford\.edu/+(?!assets/|css/|images/|img/|libs/) + + + pattern + ^http://plato\.stanford\.edu/+(?!css/|symbols/) + + + pattern + ^http://scpd\.stanford\.edu/+(?!favicon\.ico|restricted/|upload/) + + + pattern + ^http://(?:www-cs-students|xenon)\.stanford\.edu/+~ + + + pattern + ^http://crypto\.stanford\.edu/flashproxy/embed\.html + + + name + Stanford University (partial) + rule + + + from + ^https?://(?:www\.)?(slac\.)?stanford\.edu/ + to + https://www.$1stanford.edu/ + + + from + ^http://(accessories|accounts|acomp|acp|adminguide|admission|ai|alumni|alumni-gsb|anderson|annualreport|answers|apps|arts?|artsinstitute|as|asdashboard|assu-web|asweb|atxpo|axess|benefits|bewell|beyondthebubble|businessaffairs|cancer|cap|ccrma|cepa|cmgm3|crowd|crypto|ctr|cyberlaw|dashboard|dataclass|docxpress|doresearch|earth|earthsci|ebola|ed|ee|ee-www|ehsappprd1|engineering|epgy|eprotocol|events|explorecourses|faculty(?:affairs|affairs-humsci|development|handbook)|forum|founders|gadgets|giving(?:history|tostanford)?|graphics|(?:alumni\.|www\.)?gsb|gus-humsci|hannahousetours|harass|helpcenter|helpsu|honorrolls|hsdo|humansubjects|icenter|idp|italerts|itservices|itunes|janestanford|labanimals|lane|lane-preprod|(?:blogs\.|cch\.|www\.)?law|lbre(?:-apps|hr|-internal)?|lib|library|lists|live|mailman|majors|makeagift|makeapledge|makeapledgepayment|math|maven|(?:www\.)?med|medblogs|medmeeting|medwiki|monitoring|museum|music|mvideos|mygsb|news|notalone|npl|ogc|ohsx?|oia|oncore|opacs|opacsprd|openflow|openknowledge|orderit|osep|owamail|pangea|parents|parentsweekend|pgnet|police|porterdrive|precollegiate|president|profiles|provost|publicaffairs|refunds|registrar|remedyweb|rescomp|researchcompliance|roadside-mba|safety|axess\.sahr|sciencecircle|scienceconference|scopeblog|scro|scpd|sdlf|securecomputing|sera|sheg|siepr|signalblog|sites|(?:bbr-wiki|news|oraweb|plato|webauth1|www[26]|www-conf|www-group|www-public)\.slac|spcs|stanford(?:careers|events|who|you)|studentaffairs|summer(?:college|collegeacademy|humanities|institutes)|sunetid|suse|swp|teachingcommons|tickets|titleix|ucomm|uhr|uit|undergrad|visit|vpol|waivers|wasc|web|weblogin|worklife|www-aws|www-ee|xenon|youthorchestra)\.stanford\.edu/ + to + https://$1.stanford.edu/ + + + from + ^http://brannerlibrary\.stanford\.edu/+ + to + https://library.stanford.edu/branner/ + + + from + ^http://(?:www\.)?cs\.stanford\.edu/ + to + https://cs.stanford.edu/ + + + from + ^https?://askjane\.stanford\.edu/(?:.*) + to + https://studentaffairs.stanford.edu/askjane + + + from + ^http://computing\.stanford\.edu/+ + to + https://itservices.stanford.edu/service/computing + + + from + ^http://dor\.stanford\.edu/ + to + https://doresearch.stanford.edu/ + + + from + ^http://email\.stanford\.edu/+ + to + https://itservices.stanford.edu/service/emailcalendar/email/ + + + from + ^http://ess\.stanford\.edu/+ + to + https://itservices.stanford.edu/service/ess/ + + + from + ^http://fingate\.stanford\.edu/ + to + https://www.stanford.edu/group/fms/fingate/ + + + from + ^http://gse\.stanford\.edu/+ + to + https://ed.stanford.edu/ + + + from + ^http://itmetrics\.stanford\.edu/+ + to + https://dashboard.stanford.edu/ + + + from + ^http://itwinterclosure\.stanford\.edu/+ + to + https://itservices.stanford.edu/organization/winterclosure + + + from + ^http://netreg\.stanford\.edu/+ + to + https://rescomp.stanford.edu/iprequest/ + + + from + ^http://search\.stanford\.edu/ + to + https://www.stanford.edu/search/ + + + from + ^http://security\.stanford\.edu/ + to + https://web.stanford.edu/group/security/ + + + from + ^http://soe\.stanford\.edu/+(?=\?.*)?$ + to + https://engineering.stanford.edu/ + + + from + ^http://stanfordmedicine\.stanford\.edu/.* + to + https://med.stanford.edu/ + + + from + ^http://studentservicescenter\.stanford\.edu/ + to + https://www.stanford.edu/group/studentservicescenter/ + + + from + ^http://trachea\.stanford\.edu/+(?:$|\?.*) + to + https://med.stanford.edu/ohns/education/residency/portal/ + + + from + ^http://trachea\.stanford\.edu/ + to + https://med.stanford.edu/ + + + from + ^http://www-cs-students\.stanford\.edu/ + to + https://xenon.stanford.edu/ + + + securecookie + + host + ^(?:adminguide|alumni|alumni-gsb|anderson|\.answers|\.bewell|cap|ehsappprd1|epgy|explorecourses|\.facultyaffairs|givinghistory|hannahousetours|\.itservices|lane|(?:blogs)?\.law|\.lbre|library|makeagift|makeapledge|maven|cap|mvideos|openflow|parents|pgnet|\.porterdrive|profiles|\.sdlf|\.siepr|(?:\.news|www6)\.slac\|\.stanfordcareers|stanfordwho|weblogin|webauth1).stanford\.edu$ + name + .+ + + target + + + host + stanford.edu + + + host + *.stanford.edu + + + + + Staples.com + + ruleset + + name + Staples.com + rule + + from + ^http://(?:www\.)?staples\.com/ + to + https://www.staples.com/ + + securecookie + + host + ^(?:www)?\.staples\.com$ + name + .+ + + target + + + host + staples.com + + + host + *.staples.com + + + + + Star Motorcycles + + ruleset + + name + Star Motorcycles + rule + + from + ^http://(?:www\.)?starmotorcycles\.com/ + to + https://www.starmotorcycles.com/ + + securecookie + + host + ^www\.starmotorcycles\.com$ + name + .* + + target + + + host + starmotorcycles.com + + + host + www.starmotorcycles.com + + + + + Star Product Reviews (partial) + + ruleset + + name + Star Product Reviews (partial) + rule + + from + ^http://admin\.starproductreviews\.com/ + to + https://admin.starproductreviews.com/ + + securecookie + + host + ^admin\.starproductreviews\.com$ + name + .+ + + target + + host + admin.starproductreviews.com + + + + Star Search Casting.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?starsearchcasting\.com/+(?!favicon\.ico|Images_thumbnails/|img/) + + name + Star Search Casting.com (partial) + rule + + from + ^http://(?:(cdn\.)|www\.)?starsearchcasting\.com/ + to + https://$1starsearchcasting.com/ + + target + + + host + starsearchcasting.com + + + host + *.starsearchcasting.com + + + + + Star Trek (partial) + + ruleset + + name + Star Trek (partial) + rule + + from + ^http://store\.startrek\.com/ + to + https://store.startrek.com/ + + securecookie + + host + ^store\.startrek\.com$ + name + .+ + + target + + host + store.startrek.com + + + + Star-Pool (partial) + + ruleset + + name + Star-Pool (partial) + rule + + from + ^http://(www\.)?star-pool\.com/(App_Themes|[aA]ssets|images|js|[lL]ogin\.aspx|Members|(?:Script|Web)Resource\.axd)($|\?|/) + to + https://$1star-pool.com/$2$3 + + target + + + host + star-pool.com + + + host + www.star-pool.com + + + + + StarKist + + ruleset + + name + StarKist + rule + + from + ^https?://(?:www\.)?starkist\.com/sites/ + to + https://www.starkist.com/sites/ + + target + + + host + starkist.com + + + host + www.starkist.com + + + + + StarMoney.de + + ruleset + + name + StarMoney.de + rule + + + from + ^http://(?:www\.)?starmoney\.de/ + to + https://www.starmoney.de/ + + + from + ^http://shop\.starmoney\.de/ + to + https://shop.starmoney.de/ + + + securecookie + + + host + ^\.starmoney\.de$ + name + ^(?:phpbb3_\w+_(?:k|sid|u)|sessioncookie)$ + + + host + ^www\.starmoney\.de$ + name + .+ + + + target + + + host + starmoney.de + + + host + *.starmoney.de + + + + + StarNet.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?starnet\.com/(?!css/|favicon\.ico|images/|js/|skin/) + + name + StarNet.com (partial) + rule + + from + ^http://(?:ssl\.|www\.)?starnet\.com/ + to + https://ssl.starnet.com/ + + target + + + host + starnet.com + + + host + *.starnet.com + + + + + StarRez + + ruleset + + name + StarRez + rule + + from + ^http://(support\.|www\.)?starrez\.com/ + to + https://$1starrez.com/ + + target + + + host + starrez.com + + + host + *.starrez.com + + + + + StarWars.com (partial) + + ruleset + + name + StarWars.com (partial) + rule + + from + ^http://(www\.)?starwars\.com/(?!$|\?) + to + https://$1starwars.com/ + + target + + + host + starwars.com + + + host + www.starwars.com + + + + + Starbucks.com (partial) + + ruleset + + name + Starbucks.com (partial) + rule + + + from + ^http://(?:www\.)?starbucks\.com/(?=[aA]ccounts(?:$|[?/])|favicon\.ico|resources/|static/|sysiplocation/) + to + https://www.starbucks.com/ + + + from + ^http://bcassets\.starbucks\.com/ + to + https://a248.e.akamai.net/f/259/7942/2/bcassets.starbucks.com/ + + + from + ^http://sgsmsupplier(test)?\.starbucks\.com/ + to + https://sgsmsupplier$1.starbucks.com/ + + + securecookie + + + host + ^\.starbucks\.com$ + name + ^(?:visid_)?incap_\w+$ + + + host + ^sgsmsupplier(?:test)?\.starbucks\.com$ + name + .+ + + + target + + + host + starbucks.com + + + host + *.starbucks.com + + + + + Stardock (partial) + + ruleset + + name + Stardock (partial) + rule + + + from + ^http://(store\.|www\.)?stardock\.com/ + to + https://$1stardock.com/ + + + from + ^http://(?:www\.)?stardock\.net/[^?]*(\?.*)? + to + https://www.stardock.com/corporatesolutions$1 + + + from + ^http://services\.stardock\.net/ + to + https://services.stardock.net/ + + + securecookie + + + host + ^(?:store\.|www\.)?stardock\.com$ + name + .+ + + + host + ^services\.stardock\.net$ + name + .+ + + + target + + + host + stardock.com + + + host + *.stardock.com + + + host + stardock.net + + + host + *.stardock.net + + + + + Starfield Technologies, Inc. + + ruleset + + name + Starfield Technologies, Inc. + rule + + from + ^http://((?:certs|certificates|seal|tracedseals|www)\.)?starfieldtech\.com/ + to + https://$1starfieldtech.com/ + + securecookie + + host + ^(?:.*\.)?starfieldtech\.com$ + name + .+ + + target + + + host + starfieldtech.com + + + host + *.starfieldtech.com + + + + + StartBox (partial) + + ruleset + + name + StartBox (partial) + rule + + from + ^http://(www\.)?wpstartbox\.com/(my-account|wp-content/) + to + https://$1wpstartbox.com/$2 + + target + + + host + wpstartbox.com + + + host + www.wpstartbox.com + + + + + StartCom + + ruleset + + exclusion + + + pattern + ocsp\.startcom + + + pattern + ocsp\.startssl + + + pattern + \.crl$ + + + pattern + \.crt$ + + + name + StartCom + rule + + + from + ^http://([^/:@\.]*\.)?startssl\.(com|net|org|eu|us)/ + to + https://$1startssl.$2/ + + + from + ^http://([^/:@\.]*\.)?startcom\.org/ + to + https://$1startcom.org/ + + + securecookie + + host + .* + name + .* + + target + + + host + startssl.com + + + host + *.startssl.com + + + host + startssl.net + + + host + *.startssl.net + + + host + startssl.org + + + host + *.startssl.org + + + host + startssl.eu + + + host + *.startssl.eu + + + host + startssl.us + + + host + *.startssl.us + + + host + startcom.org + + + host + *.startcom.org + + + + + StartLogic + + ruleset + + name + StartLogic + rule + + from + ^http://(secure\.|www\.)?startlogic\.com/ + to + https://$1startlogic.com/ + + securecookie + + host + ^(?:.*\.)?startlogic\.com$ + name + .+ + + target + + + host + startlogic.com + + + host + *.startlogic.com + + + + + StartMail + + ruleset + + name + StartMail + rule + + from + ^http://(beta\.|www\.)?startmail\.com/ + to + https://$1startmail.com/ + + securecookie + + host + ^www\.startmail\.com$ + name + .+ + + target + + + host + startmail.com + + + host + *.startmail.com + + + + + Starwood Hotels & Resorts + + ruleset + + name + Starwood Hotels & Resorts + rule + + from + ^http://(?:www\.)?starwoodhotels\.com/ + to + https://www.starwoodhotels.com/ + + securecookie + + host + ^\.?www\.starwoodhotels\.com$ + name + .* + + target + + + host + starwoodhotels.com + + + host + www.starwoodhotels.com + + + host + *.www.starwoodhotels.com + + + + + StatOwl.com (partial) + + ruleset + + name + StatOwl.com (partial) + rule + + from + ^http://collector\.statowl\.com/ + to + https://collector.statowl.com/ + + target + + host + collector.statowl.com + + + + Statcounter (partial) + + ruleset + + name + Statcounter (partial) + rule + + + from + ^https?://www(?:-beta)?\.statcounter\.com/ + to + https://statcounter.com/ + + + from + ^http://(?!gs\.)([^/:@\.]+\.)?statcounter\.com/ + to + https://$1statcounter.com/ + + + securecookie + + host + ^(?!gs\.)(?:.*\.)?statcounter\.com$ + name + .+ + + target + + + host + statcounter.com + + + host + *.statcounter.com + + + + + State of Alaska (partial) + + ruleset + + name + State of Alaska (partial) + rule + + + from + ^http://acpe\.alaska\.gov/ + to + https://acpe.alaska.gov/ + + + from + ^https?://aps\.alaska\.gov/\??$ + to + https://acpe.alaska.gov/STUDENT-PARENT/Grants_Scholarships/Alaska_Performance_Scholarship.aspx + + + from + ^https?://aps\.alaska\.gov/\?(.+) + to + https://acpe.alaska.gov/Default.aspx?$1 + + + securecookie + + host + ^acpe\.alaska\.gov$ + name + .+ + + target + + host + *.alaska.gov + + + + State of Delaware (partial) + + ruleset + + name + State of Delaware (partial) + rule + + + from + ^http://delecorp\.delaware\.gov/ + to + https://delecorp.delaware.gov/ + + + from + ^http://(www\.)?delaware\.gov/ + to + https://www.delaware.gov/ + + + target + + + host + delecorp.delaware.gov + + + host + delaware.gov + + + host + www.delaware.gov + + + + + State of Oregon + + ruleset + + name + State of Oregon + rule + + + from + ^http://(firstlady\.|governor\.|www\.)?oregon\.gov/ + to + https://$1oregon.gov/ + + + from + ^http://(?:www\.)?budget\.oregon\.gov/(?:.*) + to + https://www.oregon.gov/gov/priorities/pages/budget.aspx + + + securecookie + + host + ^www\.oregon\.gov$ + name + .+ + + target + + + host + oregon.gov + + + host + *.oregon.gov + + + + + StateBankOfIndia + + ruleset + + name + StateBankOfIndia + rule + + from + ^http://(?:www\.)?sbi\.co\.in/ + to + https://www.sbi.co.in/ + + securecookie + + host + ^(.+\.)?sbi\.co\.in$ + name + .* + + target + + + host + sbi.co.in + + + host + www.sbi.co.in + + + + + StateFarm + + ruleset + + name + StateFarm + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?statefarm\.com/ + to + https://www.statefarm.com/ + + + from + ^http://(sfsecuremail|online2?)\.statefarm\.com/ + to + https://$1.statefarm.com/ + + + securecookie + + host + ^(.+\.)?statefarm\.com$ + name + .* + + target + + + host + statefarm.com + + + host + www.statefarm.com + + + host + sfsecuremail.statefarm.com + + + host + online.statefarm.com + + + host + online2.statefarm.com + + + + + Statesman Journal (partial) + + ruleset + + name + Statesman Journal (partial) + rule + + + from + ^https?://(?:www\.)?statesmanjournal\.com/ + to + https://www.statesmanjournal.com/ + + + from + ^https?://deals\.statesmanjournal\.com/(?:$|\?.*) + to + https://salem.planetdiscover.com/sp?aff=1180 + + + from + ^https?://deals\.statesmanjournal\.com/ + to + https://salem.planetdiscover.com/ + + + securecookie + + host + ^www\.statesmanjournal\.com$ + name + .+ + + target + + + host + statesmanjournal.com + + + host + *.statesmanjournal.com + + + + + Static Site Generators.net + + ruleset + + name + Static Site Generators.net + rule + + from + ^http://(?:www\.)?staticsitegenerators\.net/ + to + https://staticsitegenerators.net/ + + securecookie + + host + ^(?:\.|www\.)?staticsitegenerators\.net$ + name + .+ + + target + + + host + staticsitegenerators.net + + + host + *.staticsitegenerators.net + + + + + StaticGen.com + + ruleset + + name + StaticGen.com + rule + + from + ^http://(www\.)?staticgen\.com/ + to + https://$1staticgen.com/ + + target + + + host + staticgen.com + + + host + www.staticgen.com + + + + + StaticWars.com + + ruleset + + name + StaticWars.com + rule + + from + ^http://(\w+)\.staticwars\.com/ + to + https://$1.staticwars.com/ + + target + + host + *.staticwars.com + + + + Station L Rowing Club + + ruleset + + name + Station L Rowing Club + rule + + from + ^http://(www\.)?stationlrowingclub\.com/ + to + https://$1stationlrowingclub.com/ + + securecookie + + host + ^(?:www\.)?stationlrowingclub\.com$ + name + .+ + + target + + + host + stationlrowingclub.com + + + host + www.stationlrowingclub.com + + + + + StatistikamtBayern + + ruleset + + name + StatistikamtBayern + rule + + from + ^http://(www\.)?statistik\.bayern\.de/ + to + https://www.statistik.bayern.de/ + + target + + + host + www.statistik.bayern.de + + + host + statistik.bayern.de + + + + + StatusNet (partial) + + ruleset + + name + StatusNet (partial) + rule + + from + ^http://(avatar3|file|plugins[12]|theme[12])\.status\.net/ + to + https://$1.status.net/ + + target + + host + *.status.net + + + + StatusPage.io + + ruleset + + name + StatusPage.io + rule + + + from + ^http://blog\.statuspage\.io/ + to + https://status-page-blog.herokuapp.com/ + + + from + ^http://([\w-]+\.)?statuspage\.io/ + to + https://$1statuspage.io/ + + + securecookie + + host + .*\.statuspage\.io$ + name + .+ + + target + + + host + statuspage.io + + + host + *.statuspage.io + + + + + Stay Smart Online + + ruleset + + name + Stay Smart Online + rule + + + from + ^http://(?:www\.)?staysmartonline\.gov\.au/ + to + https://www.staysmartonline.gov.au/ + + + from + ^http://(?:www\.)?budd-e\.staysmartonline\.gov\.au/ + to + https://budd-e.staysmartonline.gov.au/ + + + target + + + host + staysmartonline.gov.au + + + host + *.staysmartonline.gov.au + + + + + StayClassy + + ruleset + + name + StayClassy + rule + + from + ^http://(www\.)?stayclassy\.org/ + to + https://$1stayclassy.org/ + + securecookie + + host + ^(?:www)?\.stayclassy\.org$ + name + .+ + + target + + + host + stayclassy.org + + + host + *.stayclassy.org + + + + + StayFriends + + ruleset + + name + StayFriends + platform + mixedcontent + rule + + from + ^http://(images\.|www\.)?stayfriends\.(at|ch|de)/ + to + https://$1stayfriends.$2/ + + securecookie + + host + ^(?:www)?\.stayfriends\.(?:at|ch|de)$ + name + .+ + + target + + + host + stayfriends.at + + + host + *.stayfriends.at + + + host + stayfriends.ch + + + host + *.stayfriends.ch + + + host + stayfriends.de + + + host + *.stayfriends.de + + + + + StaySafeOnline.org + + ruleset + + name + StaySafeOnline.org + rule + + from + ^http://(www\.)?staysafeonline\.org/ + to + https://$1staysafeonline.org/ + + target + + + host + staysafeonline.org + + + host + www.staysafeonline.org + + + + + StayToday.com + + ruleset + + name + StayToday.com + rule + + from + ^http://(www\.)?staytoday\.com/ + to + https://$1staytoday.com/ + + securecookie + + host + ^(?:www\.)?staytoday\.com$ + name + .+ + + target + + + host + staytoday.com + + + host + www.staytoday.com + + + + + Steadfast.net + + ruleset + + name + Steadfast.net + rule + + from + ^http://(support\.|www\.)?steadfast\.net/ + to + https://$1steadfast.net/ + + securecookie + + host + ^(?:support)?\.steadfast\.net$ + name + .+ + + target + + + host + steadfast.net + + + host + *.steadfast.net + + + + + Steaknshake.com + + ruleset + + name + Steaknshake.com + rule + + from + ^http://(www\.)?steaknshake\.com/ + to + https://www.steaknshake.com/ + + target + + + host + steaknshake.com + + + host + www.steaknshake.com + + + + + Stealthnews.com + + ruleset + + name + Stealthnews.com + rule + + from + ^http://(www\.)?stealthnews\.com/ + to + https://$1stealthnews.com/ + + securecookie + + host + ^(.*\.)?stealthnews\.com$ + name + .* + + target + + + host + stealthnews.com + + + host + *.stealthnews.com + + + + + Steam Community.com (partial) + + ruleset + + name + Steam Community.com (partial) + rule + + from + ^http://(?:cdn\.|www\.)?steamcommunity\.com/ + to + https://steamcommunity.com/ + + securecookie + + host + ^steamcommunity\.com$ + name + .+ + + target + + + host + steamcommunity.com + + + host + *.steamcommunity.com + + + + + Steam static.com (partial) + + ruleset + + name + Steam static.com (partial) + rule + + + from + ^http://cdn\.akamai\.steamstatic\.com/ + to + https://steamcdn-a.akamaihd.net/ + + + from + ^http://store\.akamai\.steamstatic\.com/ + to + https://steamstore-a.akamaihd.net/ + + + target + + host + *.akamai.steamstatic.com + + + + Steaw + + ruleset + + name + Steaw + rule + + from + ^http://(www\.)?steaw\.com/ + to + https://$1steaw.com/ + + target + + + host + steaw.com + + + host + www.steaw.com + + + + + SteelHousemedia.com (partial) + + ruleset + + name + SteelHousemedia.com (partial) + rule + + from + ^http://(cdn4s|dx|px|ww)\.steelhousemedia\.com/ + to + https://$1.steelhousemedia.com/ + + securecookie + + + host + ^\.steelhousemedia\.com$ + name + ^(?:guid|rt)$ + + + host + ^\.px\.steelhousemedia\.com$ + name + .+ + + + target + + host + *.steelhousemedia.com + + + + Steeleye.com (partial) + + ruleset + + name + Steeleye.com (partial) + rule + + from + ^http://license\.steeleye\.com/ + to + https://license.steeleye.com/ + + securecookie + + host + ^license\.steeleye\.com$ + name + .+ + + target + + host + license.steeleye.com + + + + Steganos.com + + ruleset + + name + Steganos.com + rule + + from + ^http://((?:blog|securestore|www)\.)?steganos\.com/ + to + https://$1steganos.com/ + + securecookie + + host + .*\.steganos\.com$ + name + .+ + + target + + + host + steganos.com + + + host + *.steganos.com + + + + + Stella & Dot + + ruleset + + name + Stella & Dot + rule + + + from + ^http://((?:(?:stylist)?lounge|shop|stylewatch|www)\.)?stelladot\.com/ + to + https://$1stelladot.com/ + + + from + ^http://s3static\.stelladotcdn\.com/ + to + https://s3.amazonaws.com/com.stelladot.static/ + + + securecookie + + host + .*\.stelladot\.com$ + name + .+ + + target + + + host + stelladot.com + + + host + *.stelladot.com + + + host + s3static.stelladotcdn.com + + + + + Stelter (partial) + + ruleset + + name + Stelter (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?(?:gftplns\.org|plan\.gs)/ + to + https://$1gftplns.org/ + + + from + ^http://dashboard\.stelter\.com(:\d{1,4})?/ + to + https://dashboard.stelter.com$1/ + + + securecookie + + host + ^(.*\.)?gftplns\.org$ + name + .* + + target + + + host + gftplns.org + + + host + www.gftplns.org + + + host + plan.gs + + + host + www.plan.gs + + + host + dashboard.stelter.com + + + + + Stemulite Fitness Formula + + ruleset + + name + Stemulite Fitness Formula + rule + + from + ^http://(www\.)?stemulitefitnessformula\.com/ + to + https://$1stemulitefitnessformula.com/ + + securecookie + + host + ^\.stemulitefitnessformula\.com$ + name + .+ + + target + + + host + stemulitefitnessformula.com + + + host + *.stemulitefitnessformula.com + + + + + Steven Roddis + + ruleset + + name + Steven Roddis + rule + + from + ^http://(www\.)?stevenroddis\.com/ + to + https://www.stevenroddis.com/ + + target + + + host + stevenroddis.com + + + host + *.stevenroddis.com + + + + + Stevens + + ruleset + + exclusion + + pattern + ^http://(personal|www.math|www.cs|www.acc|guinness.cs|tarantula.phy|www.phy|tarantula.srcit|www.srcit|debian.srcit|ubuntu.srcit)\.stevens\.edu/.* + + name + Stevens + rule + + from + ^http://([^/:@\.]+)\.stevens\.edu/ + to + https://$1.stevens.edu/ + + target + + host + *.stevens.edu + + + + Stevesie + + ruleset + + name + Stevesie + rule + + from + ^http://(api\.|www\.)?stevesie\.com/ + to + https://$1stevesie.com/ + + target + + + host + stevesie.com + + + host + *.stevesie.com + + + + + Stichting IAPC + + ruleset + + name + Stichting IAPC + rule + + + from + ^http://([^/:@]*)\.iapc\.utwente\.nl/ + to + https://$1.iapc.utwente.nl/ + + + from + ^http://([^/:@]*)\.iapc\.nl/ + to + https://$1.iapc.utwente.nl/ + + + from + ^http://iapc\.(utwente\.)?nl/ + to + https://www.iapc.utwente.nl/ + + + from + ^http://([^/:@]*\.)?isdewinkelopen\.nl/ + to + https://isdewinkelopen.iapc.utwente.nl/ + + + from + ^http://([^/:@]*\.)?startjesucces\.nl/ + to + https://startjesucces.iapc.utwente.nl/ + + + securecookie + + host + (^|\.)iapc.utwente.nl$ + name + .* + + target + + + host + iapc.utwente.nl + + + host + *.iapc.utwente.nl + + + host + iapc.nl + + + host + *.iapc.nl + + + host + isdewinkelopen.nl + + + host + *.isdewinkelopen.nl + + + host + startjesucces.nl + + + host + *.startjesucces.nl + + + + + Stickhet + + ruleset + + name + Stickhet + rule + + from + ^http://(www\.)?stickhet\.com/ + to + https://$1stickhet.com/ + + securecookie + + host + ^\.stickhet\.com$ + name + .+ + + target + + + host + stickhet.com + + + host + *.stickhet.com + + + + + Stitcher (partial) + + ruleset + + name + Stitcher (partial) + rule + + + from + ^https?://(?:www\.)?stitcher\.com/ + to + https://www.stitcher.com/ + + + from + ^https?://limelight\.assets\.stitcher\.com/ + to + https://s3.amazonaws.com/stitcher.assets/ + + + target + + + host + stitcher.com + + + host + *.stitcher.com + + + + + StockCharts.com (partial) + + ruleset + + name + StockCharts.com (partial) + rule + + from + ^http://(www\.)?stockcharts\.com/ + to + https://$1stockcharts.com/ + + securecookie + + host + ^(www\.)?stockcharts\.com$ + name + .* + + target + + + host + stockcharts.com + + + host + www.stockcharts.com + + + + + StockTwits (partial) + + ruleset + + exclusion + + pattern + ^http://(?:new\.|www\.)?stocktwits\.com/(?!assets/|sign(?:in|up)(?:$|\?|/)) + + name + StockTwits (partial) + rule + + + from + ^http://(new\.|www\.)?stocktwits\.com/ + to + https://$1stocktwits.com/ + + + from + ^https?://assets\d\.stocktwits\.net/ + to + https://new.stocktwits.com/ + + + target + + + host + stocktwits.com + + + host + *.stocktwits.com + + + host + *.stocktwits.net + + + + + Stockton College (partial) + + ruleset + + name + Stockton College (partial) + rule + + + from + ^http://(?:www2?\.)?stockton\.edu/(?:\?.*)?$ + to + https://intraweb.stockton.edu/eyos/page.cfm?siteID=197&pageID=5&layout=hp + + + from + ^http://admissions\.stockton\.edu/.* + to + https://intraweb.stockton.edu/eyos/page.cfm?siteID=64&pageID=1 + + + from + ^http://(aspweb|bbweb|go|intraweb|piper|webmail)\.stockton\.edu/ + to + https://$1.stockton.edu/ + + + from + ^http://ezproxy\.stockton\.edu:8443/ + to + https://ezproxy.stockton.edu:8443/ + + + from + ^http://libguides\.stockton\.edu/(css\d*/|data/|include/|js\d*/|process_home\.php) + to + https://libguides.com/$1 + + + from + ^http://pssb\.stockton\.edu:9000/ + to + https://pssb.stockton.edu:9000/ + + + securecookie + + host + ^(?:bbweb|intraweb|go|piper|pssb)\.stockton\.edu$ + name + .+ + + target + + + host + stockton.edu + + + host + *.stockton.edu + + + + + Stocktrade.de + + ruleset + + name + Stocktrade.de + platform + firefox + rule + + from + ^http://stocktrade\.de/ + to + https://stocktrade.de/ + + securecookie + + host + ^stocktrade\.de$ + name + .+ + + target + + host + stocktrade.de + + + + Stony Brook University (partial) + + ruleset + + exclusion + + pattern + ^http://www\.cs\.s(?:tonybrook|unysb)\.edu/(?!~|all\.css|css/|images/) + + name + Stony Brook University (partial) + rule + + + from + ^http://(www|(?:set-)?hiring)\.cs\.stonybrook\.edu/ + to + https://$1.cs.stonybrook.edu/ + + + from + ^http://www\.cs\.sunysb\.edu/ + to + https://www.cs.sunysb.edu/ + + + target + + + host + *.cs.stonybrook.edu + + + host + www.cs.sunysb.edu + + + + + Stop Watching Us + + ruleset + + name + Stop Watching Us + rule + + from + ^http://((?:call|optin|rally|www)\.)?stopwatching\.us/ + to + https://$1stopwatching.us/ + + securecookie + + host + ^\.stopwatching\.us$ + name + .+ + + target + + + host + stopwatching.us + + + host + *.stopwatching.us + + + + + Stop-Snoring-Mouthpiece.org (partial) + + ruleset + + name + Stop-Snoring-Mouthpiece.org (partial) + rule + + from + ^http://(www\.)?stop-snoring-mouthpiece\.org/ + to + https://$1stop-snoring-mouthpiece.org/ + + securecookie + + host + ^(?:www)?\.stop-snoring-mouthpiece\.org$ + name + .+ + + target + + + host + stop-snoring-mouthpiece.org + + + host + *.stop-snoring-mouthpiece.org + + + + + Stopbadware.org + + ruleset + + name + Stopbadware.org + rule + + from + ^http://(www\.)?stopbadware\.org/ + to + https://$1stopbadware.org/ + + securecookie + + host + ^\.stopbadware\.org$ + name + .+ + + target + + + host + stopbadware.org + + + host + *.stopbadware.org + + + + + Stopthehacker.com + + ruleset + + name + Stopthehacker.com + rule + + from + ^http://(www\.)?stopthehacker\.com/ + to + https://www.stopthehacker.com/ + + target + + + host + www.stopthehacker.com + + + host + stopthehacker.com + + + + + Storage-Bin.com + + ruleset + + name + Storage-Bin.com + rule + + from + ^http://(www\.)?(secure\.)?storage-bin\.com/ + to + https://$1$2storage-bin.com/ + + securecookie + + host + ^\.storage-bin\.com$ + name + .+ + + target + + + host + storage-bin.com + + + host + *.storage-bin.com + + + + + Store4Geeks.com + + ruleset + + name + Store4Geeks.com + rule + + from + ^http://(www\.)?store4geeks\.com/ + to + https://$1store4geeks.com/ + + target + + + host + store4geeks.com + + + host + www.store4geeks.com + + + + + StoreSecured.com (partial) + + ruleset + + name + StoreSecured.com (partial) + rule + + + from + ^http://(?:www\.)?storesecured\.com/ + to + https://www.storesecured.com/ + + + from + ^http://(\w+)\.storesecured\.com/ + to + https://$1.storesecured.com/ + + + securecookie + + host + ^.+\.storesecured\.com$ + name + .+ + + target + + + host + storesecured.com + + + host + *.storesecured.com + + + + + Storebrand + + ruleset + + name + Storebrand + rule + + + from + ^http://storebrand\.no/ + to + https://www.storebrand.no/ + + + from + ^http://www\.storebrand\.no/ + to + https://www.storebrand.no/ + + + target + + + host + storebrand.no + + + host + www.storebrand.no + + + + + Storenvy (partial) + + ruleset + + name + Storenvy (partial) + rule + + + from + ^http://(www\.)?storenvy\.com/((?:cart|join|login)(?:$|\?)|(?:v2/)?images/|themes/) + to + https://$1storenvy.com/$2 + + + from + ^http://([\w-]+)\.storenvy\.com/(favicon\.ico|themes/) + to + https://$1.storenvy.com/$2 + + + target + + + host + storenvy.com + + + host + *.storenvy.com + + + + + Storify + + ruleset + + name + Storify + rule + + from + ^http://((?:api|dev|manage|proxy|www)\.)?storify\.com/ + to + https://$1storify.com/ + + securecookie + + host + ^(?:.*\.)?storify\.com$ + name + .+ + + target + + + host + storify.com + + + host + *.storify.com + + + + + Storm Internet (partial) + + ruleset + + name + Storm Internet (partial) + rule + + + from + ^http://linsrv10([234])\.linuxcontrolpanel\.co\.uk/ + to + https://linsrv10$1.linuxcontrolpanel.co.uk/ + + + from + ^http://(www\.)?storminternet\.co\.uk/ + to + https://$1storminternet.co.uk/ + + + securecookie + + host + ^www\.storminternet\.co\.uk$ + name + .* + + target + + + host + *.linuxcontrolpanel.co.uk + + + host + storminternet.co.uk + + + host + www.storminternet.co.uk + + + + + Storywrite (partial) + + ruleset + + name + Storywrite (partial) + rule + + from + ^http://(www\.)?storywrite\.com/(assets/|favicon\.ico|images/|javascripts/|(?:login|store)(?:$|\?|/)) + to + https://$1storywrite.com/$2 + + target + + + host + storywrite.com + + + host + www.storywrite.com + + + + + StrangeWorlds + + ruleset + + name + StrangeWorlds + rule + + from + ^http://strangeworlds\.co\.uk/ + to + https://strangeworlds.co.uk/ + + target + + host + strangeworlds.co.uk + + + + Straply + + ruleset + + name + Straply + rule + + from + ^http://(www\.)?straply\.com/ + to + https://$1straply.com/ + + securecookie + + host + ^(?:www)?\.straply\.com$ + name + .+ + + target + + + host + straply.com + + + host + *.straply.com + + + + + Strasweb.fr + + ruleset + + name + Strasweb.fr + rule + + from + ^http://(www\.)?strasweb\.fr/ + to + https://www.strasweb.fr/ + + target + + + host + strasweb.fr + + + host + www.strasweb.fr + + + + + Strategic Management Society + + ruleset + + name + Strategic Management Society + rule + + from + ^http://(?:www\.)?strategicmanagement\.net/ + to + https://strategicmanagement.net/ + + securecookie + + host + ^\.strategicmanagement\.net$ + name + .+ + + target + + + host + strategicmanagement.net + + + host + *.strategicmanagement.net + + + + + Strategy Analytics + + ruleset + + name + Strategy Analytics + rule + + from + ^http://(blogs\.|www\.)?strategyanalytics\.com/ + to + https://$1strategyanalytics.com/ + + securecookie + + host + ^(?:www\.)?strategyanalytics\.com$ + name + .+ + + target + + + host + strategyanalytics.com + + + host + *.strategyanalytics.com + + + + + Strategysignals.com + + ruleset + + name + Strategysignals.com + rule + + from + ^http://(www\.)?strategysignals\.com/ + to + https://www.strategysignals.com/ + + target + + + host + www.strategysignals.com + + + host + strategysignals.com + + + + + Stratum 0 + + ruleset + + name + Stratum 0 + rule + + from + ^http://(p[ao]d\.|www\.)?stratum0\.org/ + to + https://$1stratum0.org/ + + target + + + host + stratum0.org + + + host + *.stratum0.org + + + + + StreamMyGame + + ruleset + + name + StreamMyGame + rule + + from + ^http://(www\.)?streammygame\.com/ + to + https://$1streammygame.com/ + + securecookie + + host + ^(?:www\.)?streammygame\.com$ + name + .+ + + target + + + host + streammygame.com + + + host + www.streammygame.com + + + + + Streamray.com (partial) + + ruleset + + name + Streamray.com (partial) + rule + + + from + ^http://(?:affiliates|webmaster)\.streamray\.com/ + to + https://affiliates.streamray.com/ + + + from + ^http://graphics\.streamray\.com/ + to + https://secureimage.securedataimages.com/ + + + from + ^http://studios\.streamray\.com/ + to + https://studios.streamray.com/ + + + securecookie + + host + ^\.steamray\.com$ + name + ^(?:AB_TRACKING|cams_tr|click_id_time|HISTORY|IP_COUNTRY|LOCATION_FROM_IP|REFERRAL_URL)$ + + target + + host + *.streamray.com + + + + Street Art Utopia + + ruleset + + name + Street Art Utopia + rule + + from + ^http://(www\.)?streetartutopia\.com/ + to + https://$1streetartutopia.com/ + + securecookie + + host + ^(?:w*\.)?streetartutopia\.com$ + name + .+ + + target + + + host + streetartutopia.com + + + host + *.streetartutopia.com + + + + + Street Moda (partial) + + ruleset + + name + Street Moda (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?streetmoda\.com/ + to + https://$1streetmoda.com/ + + securecookie + + host + ^.*\.streetmoda\.com$ + name + .+ + + target + + + host + streetmoda.com + + + host + www.streetmoda.com + + + host + *.www.streetmoda.com + + + + + Strimoid.pl + + ruleset + + name + Strimoid.pl + rule + + from + ^http://(www\.)?strimoid\.pl/ + to + https://strimoid.pl/ + + target + + + host + strimoid.pl + + + host + www.strimoid.pl + + + + + Stripe.com + + ruleset + + name + Stripe.com + platform + mixedcontent + rule + + from + ^http://((?:answers|api|checkout|dashboard|js|manage|q|status|support|www)\.)?stripe\.com/ + to + https://$1stripe.com/ + + securecookie + + host + ^(?:(?:answers|www)?\.)?stripe\.com$ + name + .+ + + target + + + host + stripe.com + + + host + *.stripe.com + + + + + StroeerDigitalMedia + + ruleset + + name + StroeerDigitalMedia + rule + + from + ^http://cdn\.stroeerdigitalmedia\.de/ + to + https://cdn.stroeerdigitalmedia.de/ + + target + + host + *.stroeerdigitalmedia.de + + + + StrongVPN.com + + ruleset + + name + StrongVPN.com + rule + + + from + ^http://strongvpn\.com/ + to + https://strongvpn.com/ + + + from + ^http://www\.strongvpn\.com/ + to + https://www.strongvpn.com/ + + + target + + + host + strongvpn.com + + + host + www.strongvpn.com + + + + + Strongest-privacy.com + + ruleset + + name + Strongest-privacy.com + platform + firefox + rule + + from + ^http://strongest-privacy\.com/ + to + https://strongest-privacy.com/ + + securecookie + + host + ^strongest-privacy\.com$ + name + .+ + + target + + host + strongest-privacy.com + + + + Stubhub + + ruleset + + name + Stubhub + rule + + + from + ^http://(?:www\.)?stubhub\.com/ + to + https://www.stubhub.com/ + + + from + ^http://([^/:@]+)\.stubhub\.com/ + to + https://$1.stubhub.com/ + + + from + ^http://cache(\d+)\.stubhubstatic\.com/ + to + https://cache$1.stubhubstatic.com/ + + + securecookie + + host + ^(?:.*\.)?stubhub\.com$ + name + .+ + + target + + + host + stubhub.com + + + host + *.stubhub.com + + + + + Student Aid Calculator.com + + ruleset + + name + Student Aid Calculator.com + rule + + + from + ^http://www\.studentaidcalculator\.com/.* + to + https://studentaidcalculator.com/ + + + from + ^http://([\w-]+\.)?studentaidcalculator\.com/ + to + https://$1studentaidcalculator.com/ + + + securecookie + + host + ^(?:[\w-]+\.)?studentaidcalculator\.com$ + name + .+ + + target + + + host + studentaidcalculator.com + + + host + *.studentaidcalculator.com + + + + + Student Benefits.ca + + ruleset + + name + Student Benefits.ca + rule + + from + ^http://(?:www\.)?studentbenefits\.ca/ + to + https://studentbenefits.ca/ + + securecookie + + host + ^\.studentbenefits\.ca$ + name + .+ + + target + + + host + studentbenefits.ca + + + host + *.studentbenefits.ca + + + + + StudentLoans.gov + + ruleset + + name + StudentLoans.gov + rule + + from + ^http://(?:www\.)?studentloans\.gov/ + to + https://studentloans.gov/ + + securecookie + + host + ^(.*\.)?studentloans\.gov$ + name + .+ + + target + + + host + studentloans.gov + + + host + www.studentloans.gov + + + + + Students for Sensible Drug Policy + + ruleset + + name + Students for Sensible Drug Policy + rule + + from + ^http://(www\.)?ssdp\.org/ + to + https://$1ssdp.org/ + + target + + + host + ssdp.org + + + host + www.ssdp.org + + + + + StudiesAbroad.com (partial) + + ruleset + + name + StudiesAbroad.com (partial) + rule + + from + ^http://secure\.studiesabroad\.com/ + to + https://secure.studiesabroad.com/ + + target + + host + secure.studiesabroad.com + + + + StudioPress.com + + ruleset + + name + StudioPress.com + rule + + from + ^http://(my\.|www\.)?studiopress\.com/ + to + https://$1studiopress.com/ + + securecookie + + host + ^my\.studiopress\.com$ + name + .+ + + target + + + host + studiopress.com + + + host + *.studiopress.com + + + + + Study in Australia + + ruleset + + name + Study in Australia + rule + + from + ^http://(?:www\.)?studyinaustralia\.gov\.au/ + to + https://www.studyinaustralia.gov.au/ + + target + + + host + studyinaustralia.gov.au + + + host + *.studyinaustralia.gov.au + + + + + Stunnish.com (false MCB) + + ruleset + + name + Stunnish.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?stunnish\.com/ + to + https://www.stunnish.com/ + + securecookie + + host + ^\.stunnish\.com$ + name + .+ + + target + + + host + stunnish.com + + + host + *.stunnish.com + + + + + Stupid.com + + ruleset + + name + Stupid.com + rule + + from + ^http://(www\.)?stupid\.com/ + to + https://$1stupid.com/ + + target + + + host + stupid.com + + + host + www.stupid.com + + + + + Stylist.co.uk + + ruleset + + name + Stylist.co.uk + rule + + from + ^http://(www\.)?stylist\.co\.uk/ + to + https://$1stylist.co.uk/ + + securecookie + + host + ^\.stylist\.co\.uk$ + name + .+ + + target + + + host + stylist.co.uk + + + host + *.stylist.co.uk + + + + + Stüvel photography + + ruleset + + name + Stüvel photography + platform + cacert + rule + + from + ^http://(www\.)?stuvel\.eu/ + to + https://$1stuvel.eu/ + + target + + + host + stuvel.eu + + + host + www.stuvel.eu + + + + + Suas.ie + + ruleset + + name + Suas.ie + rule + + from + ^http://(www\.)?suas\.ie/ + to + https://$1suas.ie/ + + securecookie + + host + ^\.suas\.ie$ + name + .+ + + target + + + host + suas.ie + + + host + *.suas.ie + + + + + SubToMe.com + + ruleset + + name + SubToMe.com + rule + + from + ^http://(www\.)?subtome\.com/ + to + https://$1subtome.com/ + + securecookie + + host + ^\.subtome\.com$ + name + .+ + + target + + + host + subtome.com + + + host + *.subtome.com + + + + + Subcon admin.com + + ruleset + + name + Subcon admin.com + rule + + from + ^http://(www\.)?subconadmin\.com/ + to + https://$1subconadmin.com/ + + target + + + host + subconadmin.com + + + host + www.subconadmin.com + + + + + Subeta + + ruleset + + name + Subeta + rule + + from + ^http://(avatar\.|images\.|www\.)?subeta\.net/ + to + https://$1subeta.net/ + + securecookie + + host + ^(?:.*\.)?subeta\.net$ + name + .+ + + target + + + host + subeta.net + + + host + www.subeta.net + + + + + Sublime Text.com + + ruleset + + name + Sublime Text.com + rule + + from + ^http://(www\.)?sublimetext\.com/ + to + https://$1sublimetext.com/ + + target + + + host + sublimetext.com + + + host + www.sublimetext.com + + + + + SublimeVideo (partial) + + ruleset + + name + SublimeVideo (partial) + rule + + + from + ^http://(my|www)\.sublimevideo\.net/ + to + https://$1.sublimevideo.net/ + + + from + ^http://(cdn|data)\.sublimevideo\.net/ + to + https://$1.sublimevideo.net/ + + + target + + host + *.sublimevideo.net + + + + Submission Technology + + ruleset + + name + Submission Technology + rule + + from + ^http://(ssl\.|www\.)?submissiontechnology\.co\.uk/ + to + https://$1submissiontechnology.co.uk/ + + securecookie + + host + ^(.*\.)?submissiontechnology\.co\.uk$ + name + .* + + target + + + host + submissiontechnology.co.uk + + + host + *.submissiontechnology.co.uk + + + + + SubscriptionGenius.com (partial) + + ruleset + + name + SubscriptionGenius.com (partial) + rule + + from + ^http://checkout\.subscriptiongenius\.com/ + to + https://checkout.subscriptiongenius.com/ + + securecookie + + host + ^checkout\.subscriptiongenius\.com$ + name + .+ + + target + + host + checkout.subscriptiongenius.com + + + + Subterranean Games.com + + ruleset + + name + Subterranean Games.com + rule + + from + ^http://(forum\.|www\.)?subterraneangames\.com/ + to + https://$1subterraneangames.com/ + + securecookie + + host + ^\.subterraneangames\.com$ + name + .+ + + target + + + host + subterraneangames.com + + + host + *.subterraneangames.com + + + + + Subway.com + + ruleset + + name + Subway.com + rule + + from + ^http://(www\.)?subway\.com/ + to + https://$1subway.com/ + + securecookie + + host + ^www\.subway\.com$ + name + .+ + + target + + + host + subway.com + + + host + www.subway.com + + + + + Success Chef + + ruleset + + name + Success Chef + rule + + from + ^http://(www\.)?successchef\.com/ + to + https://$1successchef.com/ + + securecookie + + host + ^\.?successchef\.com$ + name + .+ + + target + + + host + successchef.com + + + host + *.successchef.com + + + + + SuccessFactors + + ruleset + + name + SuccessFactors + rule + + + from + ^http://(?:www\.)?successfactors\.com/ + to + https://www.successfactors.com/ + + + from + ^http://(autodiscover|blogs|career\d*|community|jobs|owa|performancemanager\d*)\.successfactors\.com/ + to + https://$1.successfactors.com/ + + + securecookie + + host + ^(?:blogs|career\d*|community|jobs|owa|performancemanager\d*|www)\.successfactors\.com$ + name + .+ + + target + + + host + successfactors.com + + + host + *.successfactors.com + + + + + Sucuri (partial) + + ruleset + + name + Sucuri (partial) + rule + + from + ^http://login\.sucuri\.net/ + to + https://login.sucuri.net/ + + target + + host + login.sucuri.net + + + + Sudbury Neutrino Observatory Institute + + ruleset + + name + Sudbury Neutrino Observatory Institute + rule + + from + ^http://www\.snolab\.ca/ + to + https://www.snolab.ca/ + + securecookie + + host + ^\.snolab\.ca$ + name + .+ + + target + + host + *.snolab.ca + + + + Sudo Room + + ruleset + + name + Sudo Room + rule + + + from + ^http://(www\.)?sudoroom\.org/ + to + https://sudoroom.org/ + + + from + ^http://door\.sudoroom\.org/ + to + https://door.sudoroom.org/ + + + from + ^http://lists\.sudoroom\.org/ + to + https://lists.sudoroom.org/ + + + securecookie + + host + ^(?:www\.|lists\.|door\.)?sudoroom\.org$ + name + .* + + target + + + host + sudoroom.org + + + host + door.sudoroom.org + + + host + lists.sudoroom.org + + + host + www.sudoroom.org + + + + + Sugester (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + Sugester (partial) + rule + + + from + ^https?://(asset|f)s\.sugester\.pl/ + to + https://s3-eu-west-1.amazonaws.com/$1s.sugester.pl/ + + + from + ^http://(\w+)\.sugg?ester\.pl/ + to + https://$1.sugester.pl/ + + + target + + + host + *.sugester.pl + + + host + *.suggester.pl + + + + + Suitable Tech.com (partial) + + ruleset + + name + Suitable Tech.com (partial) + rule + + from + ^http://(www\.)?suitabletech\.com/ + to + https://$1suitabletech.com/ + + securecookie + + host + ^(?:www\.)?suitabletech\.com$ + name + .+ + + target + + + host + suitabletech.com + + + host + www.suitabletech.com + + + + + Suitey.com + + ruleset + + name + Suitey.com + rule + + from + ^http://(www\.)?suitey\.com/ + to + https://$1suitey.com/ + + securecookie + + host + ^\.suitey\.com$ + name + .+ + + target + + + host + suitey.com + + + host + *.suitey.com + + + + + SummitPost (partial) + + ruleset + + name + SummitPost (partial) + rule + + from + ^http://images\.summitpost\.org/ + to + https://c278592.ssl.cf0.rackcdn.com/ + + target + + host + images.summitpost.org + + + + Sun365.me + + ruleset + + name + Sun365.me + rule + + from + ^http://(?:www\.)?sun365\.me/ + to + https://sun365.me/ + + securecookie + + host + ^sun365\.me$ + name + .+ + + target + + + host + sun365.me + + + host + www.sun365.me + + + + + SunTimes.com (partial) + + ruleset + + name + SunTimes.com (partial) + rule + + + from + ^http://(?:www\.)?suntimes\.com/ + to + https://www.suntimes.com/ + + + from + ^http://jobs\.suntimes\.com/ + to + https://jobs.suntimes.com/ + + + target + + + host + suntimes.com + + + host + *.suntimes.com + + + + + SunTrust + + ruleset + + name + SunTrust + rule + + + from + ^http://suntrust\.com/ + to + https://www.suntrust.com/ + + + from + ^http://(answers|blog|esp|giftcard|online401k|onlinecourier|otm|rewards|www)\.suntrust\.com/ + to + https://$1.suntrust.com/ + + + target + + + host + suntrust.com + + + host + *.suntrust.com + + + + + Sunbeltsoftware.com + + ruleset + + name + Sunbeltsoftware.com + rule + + from + ^http://(www\.)?sunbeltsoftware\.com/ + to + https://$1sunbeltsoftware.com/ + + target + + + host + sunbeltsoftware.com + + + host + www.sunbeltsoftware.com + + + + + Sundance Channel + + ruleset + + name + Sundance Channel + rule + + + from + ^https?://(?:www\.)?sundancechannel\.com/ + to + https://www.sundancechannel.com/ + + + from + ^http://media\.sundancechannel\.com/ + to + https://media.sundancechannel.com/ + + + target + + + host + sundancechannel.com + + + host + *.sundancechannel.com + + + + + Sunday World.com + + ruleset + + name + Sunday World.com + rule + + from + ^http://(darkroom\.|www\.)?sundayworld\.com/ + to + https://$1sundayworld.com/ + + securecookie + + host + ^\.sundayworld\.com$ + name + .+ + + target + + + host + sundayworld.com + + + host + *.sundayworld.com + + + + + Sunglass Warehouse + + ruleset + + name + Sunglass Warehouse + rule + + from + ^http://(cdn\.|www\.)?sunglasswarehouse\.com/ + to + https://$1sunglasswarehouse.com/ + + securecookie + + host + ^\.?www\.sunglasswarehouse\.com$ + name + .+ + + target + + + host + sunglasswarehouse.com + + + host + *.sunglasswarehouse.com + + + host + *.www.sunglasswarehouse.com + + + + + Sunlight Foundation (partial) + + ruleset + + name + Sunlight Foundation (partial) + platform + mixedcontent + rule + + + from + ^http://inbox\.influenceexplorer\.com/ + to + https://inbox.influenceexplorer.com/ + + + from + ^http://(reporting\.|scout\.|www\.)?sunlightfoundation\.com/ + to + https://$1sunlightfoundation.com/ + + + from + ^http://assets\.sunlightfoundation\.com/ + to + https://s3.amazonaws.com/assets.sunlightfoundation.com/ + + + target + + + host + inbox.influenceexplorer.com + + + host + sunlightfoundation.com + + + host + *.sunlightfoundation.com + + + + + SunoSanuo.com (partial) + + ruleset + + name + SunoSanuo.com (partial) + rule + + from + ^http://app\.sunosunao\.com/ + to + https://app.sunosunao.com/ + + securecookie + + host + ^app\.sunosunao\.com$ + name + .+ + + target + + host + app.sunosunao.com + + + + Sunrise + + ruleset + + exclusion + + pattern + ^http://www\.sunrise\.ch + + name + Sunrise + rule + + + from + ^https?://sunrise\.ch/ + to + https://www1.sunrise.ch/ + + + from + ^http://([^/:@]+)?\.sunrise\.ch/ + to + https://$1.sunrise.ch/ + + + securecookie + + host + ^(.*\.)?sunrise\.ch$ + name + .+ + + target + + + host + sunrise.ch + + + host + *.sunrise.ch + + + + + Sunrise Print Online + + ruleset + + name + Sunrise Print Online + rule + + from + ^http://(www\.)?sunriseprintonline\.com/ + to + https://$1sunriseprintonline.com/ + + securecookie + + host + ^www\.sunriseprintonline\.com$ + name + .+ + + target + + + host + sunriseprintonline.com + + + host + www.sunriseprintonline.com + + + + + Sunroof Wind Deflectors.com + + ruleset + + name + Sunroof Wind Deflectors.com + rule + + from + ^http://(www\.)?sunroofwinddeflectors\.com/ + to + https://$1sunroofwinddeflectors.com/ + + securecookie + + host + ^(?:www)?\.sunroofwinddeflectors\.com$ + name + .+ + + target + + + host + sunroofwinddeflectors.com + + + host + *.sunroofwinddeflectors.com + + + + + Sunset ProHosting + + ruleset + + name + Sunset ProHosting + rule + + + from + ^http://(www\.)?sunsetprohosting\.com/ + to + https://$1sunsetprohosting.com/ + + + from + ^http://(www\.)?sunsetprohosting\.net/ + to + https://$1sunsetprohosting.net/ + + + securecookie + + host + ^(?:www\.)?sunsetprohosting\.net$ + name + .+ + + target + + + host + sunsetprohosting.com + + + host + www.sunsetprohosting.com + + + host + sunsetprohosting.net + + + host + *.sunsetprohosting.net + + + + + Sunshinepress.org + + ruleset + + name + Sunshinepress.org + platform + firefox + rule + + from + ^http://sunshinepress\.org/ + to + https://sunshinepress.org/ + + securecookie + + host + ^sunshinepress\.org$ + name + .+ + + target + + host + sunshinepress.org + + + + Suntec.net (partial) + + ruleset + + name + Suntec.net (partial) + rule + + from + ^http://www\.suntec\.net/(auth|resources)/ + to + https://www.suntec.net/$1/ + + target + + host + www.suntec.net + + + + Suomen ortodoksinen kirkko + + ruleset + + name + Suomen ortodoksinen kirkko + rule + + from + ^http://(www\.)?ort\.fi/ + to + https://$1ort.fi/ + + target + + + host + ort.fi + + + host + www.ort.fi + + + + + Suomi.fi + + ruleset + + name + Suomi.fi + rule + + from + ^http://((?:www|asiointitili|tunnistus)\.)?suomi\.fi/ + to + https://$1suomi.fi/ + + securecookie + + host + ^[^@:/\.]+\.suomi\.fi + name + .+ + + target + + + host + suomi.fi + + + host + *.suomi.fi + + + + + SupaDupa (partial) + + ruleset + + name + SupaDupa (partial) + rule + + + from + ^http://(www\.)?supadupa\.me/ + to + https://$1supadupa.me/ + + + from + ^https?://(?:cdn|static)\.supadupa\.me/ + to + https://d2cgdgk0o1xu5x.cloudfront.net/ + + + securecookie + + host + ^supadupa\.me$ + name + .+ + + target + + + host + supadupa.me + + + host + *.supadupa.me + + + + + Super Lawyers (partial) + + ruleset + + name + Super Lawyers (partial) + rule + + from + ^https?://i\.superlawyers\.com/ + to + https://d22sy6g45ur8ee.cloudfront.net/ + + target + + host + i.superlawyers.com + + + + SuperAntiSpyware + + ruleset + + name + SuperAntiSpyware + platform + mixedcontent + rule + + from + ^http://(?:www\.)?superantispyware\.com/ + to + https://www.superantispyware.com/ + + target + + + host + www.superantispyware.com + + + host + superantispyware.com + + + + + SuperMedia (partial) + + ruleset + + name + SuperMedia (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?directorystore\.com/ + to + https://www.directorystore.com/ + + + from + ^http://(www\.)?superguarantee\.com/ + to + https://$1superguarantee.com/ + + + from + ^http://(my\.|www\.)?supermedia\.com/ + to + https://$1supermedia.com/ + + + from + ^http://superpages\.com/ + to + https://www.superpages.com/ + + + from + ^http://(?:www\.)?(?:switchboard|whiteboard)\.com/(cache/|common/|switchboard/) + to + https://s.cdnwp.com/$1 + + + from + ^http://(?:jscss|yellowpages)\.superpages\.com/ + to + https://yellowpages.superpages.com/ + + + securecookie + + + host + ^(.*\.)?directorystore\.com$ + name + .* + + + host + ^(.*\.)?super(guarantee|media)\.com$ + name + .* + + + host + ^yellowpages\.superpages\.com$ + name + .* + + + target + + + host + directorystore.com + + + host + *.directorystore.com + + + host + superguarantee.com + + + host + *.superguarantee.com + + + host + supermedia.com + + + host + *.supermedia.com + + + host + superpages.com + + + host + *.superpages.com + + + host + switchboard.com + + + host + www.switchboard.com + + + + + SuperStats.com (partial) + + ruleset + + name + SuperStats.com (partial) + rule + + + from + ^http://(?:www\.)?superstats\.com/ + to + https://www.superstats.com/ + + + from + ^http://(boardserver|counter|ezpolls|guestbook|stats|submitwizard)\.superstats\.com/ + to + https://$1.superstats.com/ + + + securecookie + + host + ^\.superstats\.com$ + name + .+ + + target + + + host + superstats.com + + + host + *.superstats.com + + + + + SuperStrands + + ruleset + + name + SuperStrands + rule + + from + ^http://(www\.)?superstrands\.com/ + to + https://$1superstrands.com/ + + securecookie + + host + ^(?:www)?\.superstrands.com$ + name + .+ + + target + + + host + superstrands.com + + + host + *.superstrands.com + + + + + Superannuation Complaints Tribunal + + ruleset + + name + Superannuation Complaints Tribunal + rule + + from + ^http://(?:www\.)?sct\.gov\.au/ + to + https://www.sct.gov.au/ + + target + + + host + sct.gov.au + + + host + *.sct.gov.au + + + + + Superdrug (partial) + + ruleset + + name + Superdrug (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?superdrug\.com/ + to + https://$1superdrug.com/ + + securecookie + + host + ^(.*\.)?superdrug\.com$ + name + .* + + target + + + host + superdrug.com + + + host + www.superdrug.com + + + host + *.www.superdrug.com + + + + + Superevr + + ruleset + + name + Superevr + rule + + from + ^http://(www\.)?superevr\.com/ + to + https://$1superevr.com/ + + target + + + host + superevr.com + + + host + www.superevr.com + + + + + Superherostuff.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?superherostuff\.com/(?!blog(?:$|\?|/)|images/) + + name + Superherostuff.com (partial) + rule + + from + ^http://(images\.|resources\.|www\.)?superherostuff\.com/ + to + https://$1superherostuff.com/ + + target + + + host + superherostuff.com + + + host + *.superherostuff.com + + + + + Supersec + + ruleset + + name + Supersec + rule + + from + ^http://(www\.)?supersec\.com/ + to + https://$1supersec.com/ + + securecookie + + host + ^\.?supersec\.com$ + name + .+ + + target + + + host + supersec.com + + + host + *.supersec.com + + + + + Superstart.se + + ruleset + + name + Superstart.se + rule + + + from + ^http://www\.superstart\.se/ + to + https://www.superstart.se/ + + + from + ^http://static\.superstart\.se/ + to + https://static.superstart.se/ + + + from + ^http://superstart\.se/ + to + https://www.superstart.se/ + + + target + + + host + superstart.se + + + host + www.superstart.se + + + host + static.superstart.se + + + + + Supplies for Dreams.org (false MCB) + + ruleset + + name + Supplies for Dreams.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?suppliesfordreams\.org/ + to + https://www.suppliesfordreams.org/ + + securecookie + + host + ^\.suppliesfordreams\.org$ + name + .+ + + target + + + host + suppliesfordreams.org + + + host + *.suppliesfordreams.org + + + + + Supplies for Dreams.org (partial) + + ruleset + + name + Supplies for Dreams.org (partial) + rule + + from + ^http://(?:www\.)?suppliesfordreams\.org/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://www.suppliesfordreams.org/ + + target + + + host + suppliesfordreams.org + + + host + www.suppliesfordreams.org + + + + + Suprizkizlar.com + + ruleset + + name + Suprizkizlar.com + rule + + from + ^http://(www\.)?suprizkizlar\.com/ + to + https://$1suprizkizlar.com/ + + securecookie + + host + ^(?:w*\.)?suprizkizlar\.com$ + name + .+ + + target + + + host + suprizkizlar.com + + + host + *.suprizkizlar.com + + + + + SureSupport + + ruleset + + name + SureSupport + rule + + from + ^http://(www2?\.)?suresupport\.com/ + to + https://$1suresupport.com/ + + securecookie + + host + (?:www2)?\.suresupport\.com$ + name + .+ + + target + + + host + suresupport.com + + + host + *.suresupport.com + + + + + Surfcanyon.com + + ruleset + + name + Surfcanyon.com + rule + + from + ^http://(www\.)?surfcanyon\.com/ + to + https://www.surfcanyon.com/ + + target + + + host + www.surfcanyon.com + + + host + surfcanyon.com + + + + + Surfeasy.com + + ruleset + + name + Surfeasy.com + platform + firefox + rule + + + from + ^http://surfeasy\.com/ + to + https://surfeasy.com/ + + + from + ^http://www\.surfeasy\.com/ + to + https://www.surfeasy.com/ + + + securecookie + + + host + ^surfeasy\.com$ + name + .+ + + + host + ^www\.surfeasy\.com$ + name + .+ + + + target + + + host + surfeasy.com + + + host + www.surfeasy.com + + + + + Surfline + + ruleset + + name + Surfline + rule + + from + ^http://(?:www\.)?surfline\.com/ + to + https://www.surfline.com/ + + target + + + host + surfline.com + + + host + www.surfline.com + + + + + Surftown.com + + ruleset + + name + Surftown.com + platform + mixedcontent + rule + + from + ^http://(www\.)?surftown\.com/ + to + https://www.surftown.com/ + + target + + + host + surftown.com + + + host + www.surftown.com + + + + + Surkatty.org + + ruleset + + name + Surkatty.org + platform + firefox + rule + + from + ^http://surkatty\.org/ + to + https://surkatty.org/ + + securecookie + + host + ^surkatty\.org$ + name + .+ + + target + + host + surkatty.org + + + + SurpassHosting.com (partial) + + ruleset + + name + SurpassHosting.com (partial) + rule + + from + ^http://(chat|core|sh151)\.surpasshosting\.com/ + to + https://$1.surpasshosting.com/ + + securecookie + + host + ^core\.surpasshosting\.com$ + name + .+ + + target + + host + *.surpasshosting.com + + + + Survey Analytics (partial) + + ruleset + + name + Survey Analytics (partial) + rule + + from + ^http://popup\.questionpro\.com/ + to + https://popup.questionpro.com/ + + target + + host + popup.questionpro.com + + + + SurveyGizmo.com + + ruleset + + name + SurveyGizmo.com + rule + + + from + ^http://(www\.)?surveygizmo\.com/ + to + https://www.surveygizmo.com/ + + + from + ^http://(app|pro[0-9][0-9]?)\.sgizmo\.com/ + to + https://$1.sgizmo.com/ + + + target + + + host + surveygizmo.com + + + host + www.surveygizmo.com + + + host + *.sgizmo.com + + + + + Surveydaddy + + ruleset + + exclusion + + pattern + ^http://support\.surveydaddy\.com/ + + name + Surveydaddy + platform + mixedcontent + rule + + + from + ^http://surveydaddy\.com/ + to + https://surveydaddy.com/ + + + from + ^http://([^@:\./]+)\.surveydaddy\.com/ + to + https://$1.surveydaddy.com/ + + + target + + + host + surveydaddy.com + + + host + *.surveydaddy.com + + + + + Survive the Claire Perry Inter.net + + ruleset + + name + Survive the Claire Perry Inter.net + rule + + from + ^http://(www\.)?survivetheclaireperryinter\.net/ + to + https://$1survivetheclaireperryinter.net/ + + target + + + host + survivetheclaireperryinter.net + + + host + www.survivetheclaireperryinter.net + + + + + Survs (partial) + + ruleset + + exclusion + + pattern + ^http://www\.survs\.com/survey/ + + name + Survs (partial) + rule + + from + ^http://(www\.)?survs\.com/ + to + https://$1survs.com/ + + target + + + host + survs.com + + + host + www.survs.com + + + + + Susliving (partial) + + ruleset + + name + Susliving (partial) + rule + + from + ^http://forum\.susliving\.org/ + to + https://forum.susliving.org/ + + securecookie + + host + ^forum\.susliving\.org$ + name + .+ + + target + + host + forum.susliving.org + + + + Sustainablebusiness.com + + ruleset + + name + Sustainablebusiness.com + rule + + from + ^http://(www\.)?sustainablebusiness\.com/ + to + https://www.sustainablebusiness.com/ + + target + + + host + sustainablebusiness.com + + + host + www.sustainablebusiness.com + + + + + SvD.se (partial) + + ruleset + + name + SvD.se (partial) + rule + + from + ^http://kundservice\.svd\.se/ + to + https://kundservice.svd.se/ + + target + + host + kundservice.svd.se + + + + Svbtle.com + + ruleset + + name + Svbtle.com + rule + + + from + ^http://img\.svbtle\.com/ + to + https://d23f6h5jpj26xu.cloudfront.net/ + + + from + ^http://(\w+\.)?svbtle\.com/ + to + https://$1svbtle.com/ + + + securecookie + + host + ^(?:\w+\.)?svbtle\.com$ + name + .+ + + target + + + host + svbtle.com + + + host + *.svbtle.com + + + + + Svenskaspel.se + + ruleset + + name + Svenskaspel.se + rule + + + from + ^http://svenskaspel\.se/ + to + https://svenskaspel.se/ + + + from + ^http://www\.svenskaspel\.se/ + to + https://svenskaspel.se/ + + + target + + host + svenskaspel.se + + + + SverigesRadio + + ruleset + + name + SverigesRadio + rule + + from + ^https?://(?:www\.)?s(?:r|verigesradio)\.se/ + to + https://sverigesradio.se/ + + securecookie + + host + ^sverigesradio\.se$ + name + .+ + + target + + + host + sr.se + + + host + www.sr.se + + + host + sverigesradio.se + + + host + www.sverigesradio.se + + + + + Swan.sk + + ruleset + + name + Swan.sk + rule + + + from + ^http://(www\.)?swan\.sk/ + to + https://www.swan.sk/ + + + from + ^http://webmail\.swan\.sk/ + to + https://secure.webmail.sk/ + + + from + ^http://(www\.|secure\.)?webmail\.sk/ + to + https://secure.webmail.sk/ + + + target + + + host + swan.sk + + + host + www.swan.sk + + + host + webmail.swan.sk + + + host + webmail.sk + + + host + *.webmail.sk + + + + + SwapOff.org + + ruleset + + name + SwapOff.org + rule + + from + ^http://(www\.)?swapoff\.org/ + to + https://$1swapoff.org/ + + target + + + host + swapoff.org + + + host + www.swapoff.org + + + + + Swartz Files.com + + ruleset + + name + Swartz Files.com + rule + + from + ^http://(www\.)?swartzfiles\.com/ + to + https://$1swartzfiles.com/ + + target + + + host + swartzfiles.com + + + host + www.swartzfiles.com + + + + + Sway + + ruleset + + name + Sway + rule + + from + ^http://(?:www\.)?sway\.com/ + to + https://sway.com/ + + target + + + host + sway.com + + + host + *.sway.com + + + + + Sweet & Sour + + ruleset + + name + Sweet & Sour + rule + + from + ^http://(www\.)?sweetandsourstudio\.com/ + to + https://$1sweetandsourstudio.com/ + + target + + + host + sweetandsourstudio.com + + + host + www.sweetandsourstudio.com + + + + + SwetsWise + + ruleset + + name + SwetsWise + rule + + + from + ^http://www\.swetswise\.com/ + to + https://www.swetswise.com/ + + + from + ^http://shibboleth\.swetswise\.com/ + to + https://shibboleth.swetswise.com/ + + + securecookie + + host + ^.*\.swetswise\.com$ + name + .+ + + target + + host + *.swetswise.com + + + + Swiftype (partial) + + ruleset + + name + Swiftype (partial) + rule + + + from + ^http://(www\.)?swiftype\.com/ + to + https://$1swiftype.com/ + + + from + ^http://s\.swiftypecdn\.com/ + to + https://s.swiftypecdn.com/ + + + securecookie + + host + ^swiftype\.com$ + name + .* + + target + + + host + swiftype.com + + + host + www.swiftype.com + + + host + s.swiftypecdn.com + + + + + Swin.edu.au (partial) + + ruleset + + name + Swin.edu.au (partial) + rule + + + from + ^http://(?:www\.)?swin\.edu\.au/ + to + https://www.swin.edu.au/ + + + from + ^http://((?:www\.)?astronomy|gpo)\.swin\.edu\.au/ + to + https://$1.swin.edu.au/ + + + securecookie + + host + ^www\.swin\.edu\.au$ + name + .+ + + target + + + host + swin.edu.au + + + host + *.swin.edu.au + + + + + Swinburne.edu (partial, false MCB) + + ruleset + + name + Swinburne.edu (partial, false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?swinburne\.edu\.au/ + to + https://www.swinburne.edu.au/ + + target + + + host + swinburne.edu.au + + + host + www.swinburne.edu.au + + + + + Swiss Federal Institute of Intellectual Property + + ruleset + + name + Swiss Federal Institute of Intellectual Property + rule + + + from + ^https?://ige\.ch/ + to + https://www.ige.ch/ + + + from + ^http://([^/:@]+)?\.ige\.ch/ + to + https://$1.ige.ch/ + + + from + ^https?://ip-search\.ch/ + to + https://www.ip-search.ch/ + + + from + ^http://([^/:@]+)?\.ip-search\.ch/ + to + https://$1.ip-search.ch/ + + + from + ^https?://swissreg\.ch/ + to + https://www.swissreg.ch/ + + + from + ^http://([^/:@]+)?\.swissreg\.ch/ + to + https://$1.swissreg.ch/ + + + target + + + host + ige.ch + + + host + *.ige.ch + + + host + ip-search.ch + + + host + *.ip-search.ch + + + host + swissreg.ch + + + host + *.swissreg.ch + + + + + Swiss Federal Railways (SBB/CFF/FFS) + + ruleset + + name + Swiss Federal Railways (SBB/CFF/FFS) + rule + + + from + ^https?://sbb\.ch/ + to + https://www.sbb.ch/ + + + from + ^http://([^/:@]+)?\.sbb\.ch/ + to + https://$1.sbb.ch/ + + + from + ^https?://cff\.ch/ + to + https://www.cff.ch/ + + + from + ^http://([^/:@]+)?\.cff\.ch/ + to + https://$1.cff.ch/ + + + from + ^https?://ffs\.ch/ + to + https://www.ffs.ch/ + + + from + ^http://([^/:@]+)?\.ffs\.ch/ + to + https://$1.ffs.ch/ + + + from + ^https?://mobilbonus\.ch/ + to + https://www.mobilbonus.ch/ + + + from + ^http://([^/:@]+)?\.mobilbonus\.ch/ + to + https://$1.mobilbonus.ch/ + + + securecookie + + + host + ^\.www\.sbb\.ch$ + name + .+ + + + host + ^\.www\.cff\.ch$ + name + .+ + + + host + ^\.www\.ffs\.ch$ + name + .+ + + + target + + + host + sbb.ch + + + host + www.sbb.ch + + + host + cff.ch + + + host + www.cff.ch + + + host + ffs.ch + + + host + www.ffs.ch + + + host + mobilbonus.ch + + + host + *.mobilbonus.ch + + + + + Swiss Financial Market Supervisory Authority (FINMA) + + ruleset + + name + Swiss Financial Market Supervisory Authority (FINMA) + rule + + + from + ^https?://finma\.ch/ + to + https://www.finma.ch/ + + + from + ^http://([^/:@]+)?\.finma\.ch/ + to + https://$1.finma.ch/ + + + target + + + host + finma.ch + + + host + *.finma.ch + + + + + Swiss Power + + ruleset + + name + Swiss Power + rule + + + from + ^https?://swisspower\.ch/ + to + https://www.swisspower.ch/ + + + from + ^http://([^/:@]+)?\.swisspower\.ch/ + to + https://$1.swisspower.ch/ + + + securecookie + + host + ^(.*\.)?swisspower\.ch$ + name + .+ + + target + + + host + swisspower.ch + + + host + *.swisspower.ch + + + + + Swiss-VA.com (partial) + + ruleset + + name + Swiss-VA.com (partial) + rule + + from + ^http://sso\.swiss-va\.com/ + to + https://sso.swiss-va.com/ + + target + + host + sso.swiss-va.com + + + + Swiss.com + + ruleset + + name + Swiss.com + rule + + + from + ^http://(?:www\.)?swiss\.com/ + to + https://www.swiss.com/ + + + from + ^http://lsy-www\.swiss\.com/ + to + https://lsy-www.swiss.com/ + + + from + ^http://booking\.swiss\.com/ + to + https://booking.swiss.com/ + + + from + ^http://mobile\.swiss\.com/ + to + https://mobile.swiss.com/ + + + securecookie + + host + ^(.*\.)?swiss\.com$ + name + .+ + + target + + + host + swiss.com + + + host + www.swiss.com + + + host + lsy-www.swiss.com + + + host + booking.swiss.com + + + host + mobile.swiss.com + + + + + Swissabroad.ch + + ruleset + + name + Swissabroad.ch + rule + + + from + ^https?://swissabroad\.ch/ + to + https://www.swissabroad.ch/ + + + from + ^http://([^/:@]+)?\.swissabroad\.ch/ + to + https://$1.swissabroad.ch/ + + + target + + + host + swissabroad.ch + + + host + *.swissabroad.ch + + + + + Swisscom.ch + + ruleset + + name + Swisscom.ch + rule + + + from + ^http://(?:www\.)?swisscom\.ch/ + to + https://www.swisscom.ch/ + + + from + ^http://de\.swisscom\.ch/(?:\?.*|privatkunden)?$ + to + https://www.swisscom.ch/de/privatkunden.html + + + from + ^http://de\.swisscom\.ch/its/(?:\?.*)?$ + to + https://www.swisscom.ch/it-services/ + + + from + ^http://o\.swisscom\.ch/ + to + https://swisscom-ch.122.2o7.net/ + + + from + ^http://(so|ict|supportcommunity|vidia|io|extranet|openairbuddy)\.swisscom\.ch/ + to + https://$1.swisscom.ch/ + + + from + ^http://(services\.snoopy\.|www\.)?swisscom\.com/ + to + https://$1swisscom.com/ + + + from + ^http://(?:www\.)?swissdigicert\.ch/ + to + https://www.swissdigicert.ch/ + + + securecookie + + + host + ^\.swisscom\.ch$ + name + ^s_\w+$ + + + host + ^www1?\.swisscom\.ch$ + name + .+ + + + host + ^(?:www\.)?swisscom\.com$ + name + .+ + + + target + + + host + swisscom.ch + + + host + *.swisscom.ch + + + host + swisscom.com + + + host + *.swisscom.com + + + host + swissdigicert.ch + + + host + www.swissdigicert.ch + + + + + Switch Adserver + + ruleset + + name + Switch Adserver + rule + + from + ^http://(\w+\.a|delivery|imagse|\w+\.swid)\.switchadhub\.com/ + to + https://$1.switchadhub.com/ + + securecookie + + host + ^(?:\w+\.a|delivery)\.switchadhub\.com$ + name + .+ + + target + + host + *.switchadhub.com + + + + Switch.co + + ruleset + + name + Switch.co + rule + + from + ^http://(?:www\.)?switch\.co/ + to + https://www.switch.co/ + + target + + + host + switch.co + + + host + *.switch.co + + + + + Switchie.ch + + ruleset + + name + Switchie.ch + rule + + from + ^http://(www\.)?switchie\.ch/ + to + https://$1switchie.ch/ + + securecookie + + host + ^(?:www\.)?switchie\.ch$ + name + .+ + + target + + + host + switchie.ch + + + host + www.switchie.ch + + + + + Switchnet.io + + ruleset + + name + Switchnet.io + rule + + from + ^http://(?:www\.)?switchnet\.io/ + to + https://www.switchnet.io/ + + securecookie + + host + ^(?:\.|www\.)?switchnet\.io$ + name + .+ + + target + + + host + switchnet.io + + + host + *.switchnet.io + + + + + Sycom.co.jp + + ruleset + + name + Sycom.co.jp + rule + + from + ^http://(www\.)?sycom\.co\.jp/ + to + https://www.sycom.co.jp/ + + target + + + host + sycom.co.jp + + + host + www.sycom.co.jp + + + + + Sydostran.se + + ruleset + + name + Sydostran.se + rule + + + from + ^http://sydostran\.se/ + to + https://www.sydostran.se/ + + + from + ^http://www\.sydostran\.se/ + to + https://www.sydostran.se/ + + + target + + + host + sydostran.se + + + host + www.sydostran.se + + + + + Syllabusshare (partial) + + ruleset + + name + Syllabusshare (partial) + rule + + from + ^http://secure\.syllabushare\.com/ + to + https://secure.syllabushare.com/ + + target + + host + secure.syllabushare.com + + + + Sylvan Company.com + + ruleset + + name + Sylvan Company.com + rule + + from + ^http://(analytics\.|www\.)?sylvancompany\.com/ + to + https://$1sylvancompany.com/ + + securecookie + + host + ^(?:www\.)?sylvancompany\.com$ + name + .+ + + target + + + host + sylvancompany.com + + + host + *.sylvancompany.com + + + + + Symantec (partial) + + ruleset + + exclusion + + pattern + ^http://www\.symantec\.com/connect/(?:$|all-connect$|articles/|blogs/|imagebrowser/view/image/|forums/) + + name + Symantec (partial) + rule + + + from + ^https?://symantec\.com/ + to + https://www.symantec.com/ + + + from + ^https?://check\.symantec\.com/(?:$|\?.*) + to + https://www.symantec.com/ + + + from + ^https?://definitions\.symantec\.com/(?:$|\?.*) + to + https://www.symantec.com/business/security_response/definitions.jsp + + + from + ^https?://entsupport\.symantec\.com/(?:$|\?.*) + to + https://www.symantec.com/enterprise/support/index.jsp + + + from + ^https?://go\.symantec\.com/(?:$|\?.*) + to + https://www.symantec.com/index.jsp + + + from + ^https?://om\.symantec\.com/ + to + https://veritasnonconsumer.122.2o7.net/ + + + from + ^http://(bcportal|buy|careers|customercare|education|transfer\.emea|et|faster|fileconnect|fileshare|licensing(?:programs)?|locator|my?|my(?:-qa|-uat|sort|support|symantec)|oms|partner(?:locator|net(?:-internal|-qa|-sit|-uat|-temp)?|vpn)|phoenix|productadvisor|renewals|(?:corp\.|retail\.)?sarcscan|security|sfprep|sitedirector|scm|solutions|sort|ssae|store|submit|symaccount|symbeta|symlms|telemetrics|vias|vip|(?:desktop|idprotect|toolbar)\.vip|vos|vpn-us-west|vs|webdl|www4?|www-secure)\.symantec\.com/ + to + https://$1.symantec.com/ + + + from + ^https?://customersupport\.symantec\.com/(resource|servlet)/ + to + https://symantec1.secure.force.com/$1/ + + + from + ^https?://liveupdate\.symantec\.com/(?:$|\?.*) + to + https://www.symantec.com/security_response/ + + + from + ^https?://securityresponse\.symantec\.com/(?:$|\?.*) + to + https://www.symantec.com/security_response/index.jsp + + + from + ^https?://se(?:cur|rvic)e1\.symantec\.com/(\?.*)?$ + to + https://www.symantec.com/techsupp/$1 + + + from + ^http://(buy|static)\.symanteccloud\.com/ + to + https://$1.symanteccloud.com/ + + + from + ^http://static(1|2|3)\.symanteccontent\.com/ + to + https://static$1.symanteccontent.com/ + + + from + ^http://now\.symassets\.com/ + to + https://now.symassets.com/ + + + securecookie + + host + ^(?:.*\.)?symantec(?:content)?\.com$ + name + .* + + target + + + host + symantec.com + + + host + *.symantec.com + + + host + *.symanteccloud.com + + + host + *.symanteccontent.com + + + host + now.symassets.com + + + + + Symbian Foundation + + ruleset + + name + Symbian Foundation + rule + + from + ^http://developer\.symbian\.org/ + to + https://developer.symbian.org/ + + target + + host + developer.symbian.org + + + + Sympa.org (partial) + + ruleset + + name + Sympa.org (partial) + rule + + from + ^http://(?:www\.)?sympa\.org/ + to + https://www.sympa.org/ + + securecookie + + host + ^www\.sympa\.org$ + name + .+ + + target + + + host + sympa.org + + + host + www.sympa.org + + + + + Symplicity + + ruleset + + name + Symplicity + rule + + from + ^http://(static\.|www\.)?symplicity\.com/ + to + https://$1symplicity.com/ + + securecookie + + host + ^(?:w*\.)?symplicity\.com$ + name + .+ + + target + + + host + symplicity.com + + + host + *.symplicity.com + + + + + Synacor (partial) + + ruleset + + name + Synacor (partial) + rule + + from + ^http://((?:static|web)\.coral|static\.garnet)\.synacor\.com/ + to + https://$1.synacor.com/ + + target + + host + *.synacor.com + + + + Synaptop.com + + ruleset + + name + Synaptop.com + rule + + from + ^http://(www\.)?synaptop\.com/ + to + https://www.synaptop.com/ + + target + + + host + synaptop.com + + + host + www.synaptop.com + + + + + Sync.com + + ruleset + + name + Sync.com + rule + + from + ^http://(www\.)?sync\.com/ + to + https://www.sync.com/ + + target + + + host + sync.com + + + host + www.sync.com + + + + + SyncBoss (partial) + + ruleset + + name + SyncBoss (partial) + rule + + from + ^http://(?:www\.)?my\.syncboss\.com/ + to + https://my.syncboss.com/ + + securecookie + + host + ^my\.syncboss\.com$ + name + .+ + + target + + host + *.syncboss.com + + + + Synch.hu (partial) + + ruleset + + name + Synch.hu (partial) + rule + + from + ^http://web\.synch\.hu/ + to + https://web.synch.hu/ + + target + + host + web.synch.hu + + + + Syncthing.net (partial) + + ruleset + + name + Syncthing.net (partial) + rule + + from + ^http://discourse\.syncthing\.net/ + to + https://discourse.syncthing.net/ + + target + + host + discourse.syncthing.net + + + + Syndie + + ruleset + + name + Syndie + rule + + from + ^http://(www\.)?syndie\.de/ + to + https://$1syndie.de/ + + target + + + host + syndie.de + + + host + www.syndie.de + + + + + Synergist SCADA + + ruleset + + name + Synergist SCADA + rule + + from + ^http://(www\.)?synergistscada\.com/ + to + https://$1synergistscada.com/ + + securecookie + + host + ^(?:w*\.)?synergistscada\.com$ + name + .+ + + target + + + host + synergistscada.com + + + host + *.synergistscada.com + + + + + Synergy-FOSS.org (partial) + + ruleset + + name + Synergy-FOSS.org (partial) + rule + + from + ^http://(www\.)?synergy-foss\.org/(?=css/|(?:donate|nightly|premium)(?:$|[?/])|favicon\.ico|files/|icons/|img/) + to + https://$1synergy-foss.org/ + + target + + + host + synergy-foss.org + + + host + www.synergy-foss.org + + + + + Synology (partial) + + ruleset + + name + Synology (partial) + rule + + + from + ^https?://(?:www\.)?synology\.com(\.tw)?/ + to + https://www.synology.com$1/ + + + from + ^http://(myds|srs|stc|synokm)\.synology\.com/ + to + https://$1.synology.com/ + + + securecookie + + host + ^.*\.synology\.com(?:\.tw)?$ + name + .+ + + target + + + host + synology.com + + + host + *.synology.com + + + host + synology.com.tw + + + host + www.synology.com.tw + + + + + Synopsys (partial) + + ruleset + + name + Synopsys (partial) + rule + + + from + ^http://www\.synopsys\.co\.jp/img/ + to + https://www.synopsys.co.jp/img/ + + + from + ^http://(?:www\.)?synopsys\.com/ + to + https://www.synopsys.com/ + + + from + ^http://(blogs|solvnet|sso)\.synopsys\.com/ + to + https://$1.synopsys.com/ + + + securecookie + + host + ^\w+\.synopsys\.com$ + name + .* + + target + + + host + www.synopsys.co.jp + + + host + synopsys.com + + + host + *.synopsys.com + + + + + Synthetix.com (partial) + + ruleset + + name + Synthetix.com (partial) + rule + + from + ^http://(www\.)?synthetix\.com/ + to + https://$1synthetix.com/ + + target + + + host + synthetix.com + + + host + www.synthetix.com + + + + + Synthetix.info + + ruleset + + name + Synthetix.info + rule + + from + ^http://(?:www\.)?synthetix\.(info|net)/ + to + https://synthetix.$1/ + + securecookie + + host + ^synthetix\.(?:info|net)$ + name + .+ + + target + + + host + synthetix.info + + + host + www.synthetix.info + + + host + synthetix.net + + + host + www.synthetix.net + + + + + Syracuse University (partial) + + ruleset + + name + Syracuse University (partial) + rule + + from + ^http://faculty\.ischool\.syr\.edu/ + to + https://faculty.ischool.syr.edu/ + + target + + host + faculty.ischool.syr.edu + + + + SysWard.com + + ruleset + + name + SysWard.com + rule + + from + ^http://(?:www\.)?sysward\.com/ + to + https://sysward.com/ + + securecookie + + host + ^\.sysward\.com$ + name + .+ + + target + + + host + sysward.com + + + host + *.sysward.com + + + + + Sysadmin Casts.com + + ruleset + + name + Sysadmin Casts.com + rule + + from + ^http://(www\.)?sysadmincasts\.com/ + to + https://$1sysadmincasts.com/ + + target + + + host + sysadmincasts.com + + + host + www.sysadmincasts.com + + + + + System Center Advisor.com + + ruleset + + name + System Center Advisor.com + rule + + + from + ^http://(www\.)?systemcenteradvis(e|o)r\.(com|net)/ + to + https://$1systemcenteradvis$2r.$3/ + + + from + ^http://login\.systemcenteradvisor\.com/ + to + https://login.systemcenteradvisor.com/ + + + securecookie + + host + ^(?:www)?\.systemcenteradvis[eo]r\.(?:com|net)$ + name + .+ + + target + + + host + systemcenteradviser.com + + + host + *.systemcenteradviser.com + + + host + systemcenteradviser.net + + + host + *.systemcenteradviser.net + + + host + systemcenteradvisor.com + + + host + *.systemcenteradvisor.com + + + host + systemcenteradvisor.net + + + host + *.systemcenteradvisor.net + + + + + System76.com + + ruleset + + name + System76.com + rule + + + from + ^http://www\.system76\.com/ + to + https://www.system76.com/ + + + from + ^http://system76\.com/ + to + https://www.system76.com/ + + + target + + + host + www.system76.com + + + host + system76.com + + + + + SystemIntegra.ru + + ruleset + + name + SystemIntegra.ru + rule + + from + ^http://(www\.)?systemintegra\.ru/ + to + https://$1systemintegra.ru/ + + securecookie + + host + ^\.systemintegra\.ru$ + name + .+ + + target + + + host + systemintegra.ru + + + host + *.systemintegra.ru + + + + + Systembolaget.se + + ruleset + + exclusion + + pattern + ^http://www\.systembolaget\.se/Butik\-\-Ombud/ + + name + Systembolaget.se + rule + + + from + ^http://systembolaget\.se/ + to + https://www.systembolaget.se/ + + + from + ^http://www\.systembolaget\.se/ + to + https://www.systembolaget.se/ + + + target + + + host + systembolaget.se + + + host + www.systembolaget.se + + + + + Syöpäjärjestöt + + ruleset + + name + Syöpäjärjestöt + rule + + + from + ^https?://(?:www\.)?cancer\.fi/ + to + https://cancer-fi.directo.fi/ + + + from + ^http://cancer-fi\.directo\.fi/ + to + https://cancer-fi.directo.fi/ + + + from + ^https?://(?:www\.)?(seulonta|syoparekisteri)\.fi/ + to + https://cancer-fi.directo.fi/$1/ + + + target + + + host + cancer.fi + + + host + www.cancer.fi + + + host + cancer-fi.directo.fi + + + host + seulonta.fi + + + host + www.seulonta.fi + + + host + syoparekisteri.fi + + + host + www.syoparekisteri.fi + + + + + Szm.com + + ruleset + + name + Szm.com + rule + + + from + ^http://(www\.)?szm\.com/ + to + https://szm.com/ + + + from + ^http://webmail\.szm\.com/ + to + https://webmail.szm.com/ + + + target + + + host + szm.com + + + host + www.szm.com + + + host + webmail.szm.com + + + + + Süddeutsche Zeitung Tickets + + ruleset + + name + Süddeutsche Zeitung Tickets + rule + + from + ^https?://(?:tickets\.sueddeutsche|(?:www\.)?sueddeutsche-tickets)\.de/ + to + https://www.sueddeutsche-tickets.de/ + + securecookie + + host + ^www\.sueddeutsche-tickets\.de$ + name + .+ + + target + + + host + tickets.sueddeutsche.de + + + host + sueddeutsche-tickets.de + + + host + www.sueddeutsche-tickets.de + + + + + T-Engine.org (partial) + + ruleset + + name + T-Engine.org (partial) + rule + + from + ^http://(?:www\.)?t-engine\.org/(?!membersonly/) + to + https://www.t-engine.org/ + + target + + + host + t-engine.org + + + host + www.t-engine.org + + + + + T-Mobile + + ruleset + + name + T-Mobile + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?tmobileuk\.blackberry\.com/ + to + https://tmobileuk.blackberry.com/ + + + from + ^http://(?:www\.)?t-?mobile\.(com|nl)/ + to + https://www.t-mobile.$1/ + + + from + ^https?://deals\.t-mobile\.com/(?:\?.*)?$ + to + https://www.t-mobile.com/shop/phones/?pricerange=0-0&features=371e5c4a-3dc6-4404-86d0-c59f8d8baa3b + + + from + ^http://((?:cache\.)?(?:business|explore)|ebill|es|my|find\.my|secure-checkout|support)\.t-mobile\.com/ + to + https://$1.t-mobile.com/ + + + from + ^http://my\.t-?mobile\.com/ + to + https://my.t-mobile.com/ + + + from + ^https?://(?:cache\.)?(prepaid-phone|video)s\.t-mobile\.com/ + to + https://$1s.t-mobile.com/ + + + from + ^http://(?:www\.)?t-mobile\.co\.uk/ + to + https://www.t-mobile.co.uk/ + + + from + ^http://(?:www\.)?instantemail\.t-mobile\.co\.uk/ + to + https://tmobileuk.blackberry.com/ + + + from + ^http://gsm\.t-mobile\.nl/ + to + https://gsm.t-mobile.nl/ + + + from + ^http://s(\.my)?\.tmocache\.com/ + to + https://s$1.tmocache.com/ + + + from + ^http://hotspot\.t-mobile\.net/ + to + https://hotspot.t-mobile.net/ + + + securecookie + + host + ^(?:business|ebill|explore|my|find\.my|support|videos)\.t-mobile\.com$ + name + .+ + + target + + + host + tmobileuk.blackberry.com + + + host + www.tmobileuk.blackberry.com + + + host + tmobile.com + + + host + *.tmobile.com + + + host + t-mobile.com + + + host + *.t-mobile.com + + + host + t-mobile.co.uk + + + host + *.t-mobile.co.uk + + + host + www.*.t-mobile.co.uk + + + host + tmobile.nl + + + host + www.tmobile.nl + + + host + t-mobile.nl + + + host + *.t-mobile.nl + + + host + *.tmocache.com + + + host + hotspot.t-mobile.net + + + + + T-Online (partial) + + ruleset + + exclusion + + pattern + ^http://rezepte\.t-online\.de/(?!sites/) + + name + T-Online (partial) + rule + + + from + ^http://toi\.ivwbox\.de/ + to + https://toi-ssl.ivwbox.de/ + + + from + ^http://(im\.banner|header\.cdb|email|fssecure|mediencenter|rezepte|stayfriends|suche|tbx|wiga)\.t-online\.de/ + to + https://$1.t-online.de/ + + + from + ^http://t-online\.de\.intellitxt\.com/ + to + https://ln1-g003.intellitxt.com/ + + + securecookie + + host + ^(?:\.banner|email|\.mediencenter|stayfriends|suche|tbx)\.t-online\.de$ + name + .+ + + target + + + host + t-online.de.intellitxt.com + + + host + toi.ivwbox.de + + + host + *.t-online.de + + + + + T-Shirt Mojo + + ruleset + + name + T-Shirt Mojo + rule + + from + ^http://(www\.)?t-shirtmojo\.com/ + to + https://$1t-shirtmojo.com/ + + securecookie + + host + ^www\.t-shirtmojo\.com$ + name + .+ + + target + + + host + t-shirtmojo.com + + + host + www.t-shirtmojo.com + + + + + T35 cPanel Hosting + + ruleset + + name + T35 cPanel Hosting + platform + mixedcontent + rule + + from + ^http://(?:www\.)?t35\.com/ + to + https://www.t35.com/ + + target + + + host + t35.com + + + host + www.t35.com + + + + + TAG Online.com + + ruleset + + name + TAG Online.com + rule + + + from + ^http://(?:www\.)?tagonline\.com/ + to + https://www.tagonline.com/ + + + from + ^http://secure1\.tagonline\.com/ + to + https://secure1.tagonline.com/ + + + target + + + host + tagonline.com + + + host + *.tagonline.com + + + + + TAIFEX.com.tw + + ruleset + + name + TAIFEX.com.tw + rule + + from + ^http://(sim|www)\.taifex\.com\.tw/ + to + https://$1.taifex.com.tw/ + + securecookie + + host + ^(?:sim|www)\.taifex\.com\.tw$ + name + .+ + + target + + host + *.taifex.com.tw + + + + TARGUSinfo + + ruleset + + name + TARGUSinfo + rule + + from + ^http://(www\.)?adadvisor\.net/ + to + https://$1adadvisor.net/ + + target + + + host + adadvisor.net + + + host + www.adadvisor.net + + + + + TAU.ac.il (partial) + + ruleset + + name + TAU.ac.il (partial) + rule + + + from + ^http://(?:www\.)?cs\.tau\.ac\.il/ + to + https://www.cs.tau.ac.il/ + + + from + ^http://(course|forums|svn)\.cs\.tau\.ac\.il/ + to + https://$1.cs.tau.ac.il/ + + + target + + host + *.tau.ac.il + + + + TAZ + + ruleset + + name + TAZ + rule + + + from + ^http://(?:www\.)?taz\.de/ + to + https://www.taz.de/ + + + from + ^http://(blogs|buchmesse|dl|download|m|shop)\.taz\.de/ + to + https://$1.taz.de/ + + + from + ^http://www\.buchmesse\.taz\.de/ + to + https://buchmesse.taz.de/ + + + target + + + host + taz.de + + + host + *.taz.de + + + + + TBray.org + + ruleset + + name + TBray.org + rule + + from + ^http://(www\.)?tbray\.org/ + to + https://$1tbray.org/ + + securecookie + + host + ^(?:www)?\.tbray\.org$ + name + .+ + + target + + + host + tbray.org + + + host + *.tbray.org + + + + + TC img.net + + ruleset + + name + TC img.net + rule + + from + ^http://a\.tcimg\.net/ + to + https://a.tcimg.net/ + + target + + host + a.tcimg.net + + + + TCPalm.com (partial) + + ruleset + + name + TCPalm.com (partial) + rule + + + from + ^http://(?:www\.)?tcpalm\.com/ + to + https://www.tcpalm.com/ + + + from + ^http://jobs\.tcpalm\.com/ + to + https://www.tcpalm.com/hotjobs + + + from + ^http://login\.tcpalm\.com/ + to + https://login.tcpalm.com/ + + + from + ^http://media\.tcpalm\.com/ + to + https://a248.e.akamai.net/f/1683/5970/9m/media.tcpalm.com/ + + + from + ^http://web\.tcpalm\.com/ + to + https://a248.e.akamai.net/f/194/4034/1m/web.tcpalm.com/ + + + from + ^http://(www\.)?tcpalmextras\.com/ + to + https://$1tcpalmextras.com/ + + + securecookie + + host + ^(?:login)?\.tcpalm\.com$ + name + .+ + + target + + + host + tcpalm.com + + + host + *.tcpalm.com + + + host + tcpalmextras.com + + + host + www.tcpalmextras.com + + + + + TD Bank (partial) + + ruleset + + name + TD Bank (partial) + rule + + from + ^http://onlinebanking\.tdbank\.com/ + to + https://onlinebanking.tdbank.com/ + + target + + host + onlinebanking.tdbank.com + + + + TD Canada Trust + + ruleset + + name + TD Canada Trust + rule + + from + ^http://(?:www\.)?tdcanadatrust\.com/ + to + https://www.tdcanadatrust.com/ + + target + + + host + tdcanadatrust.com + + + host + www.tdcanadatrust.com + + + + + TDC Service Online.com + + ruleset + + name + TDC Service Online.com + rule + + from + ^http://(www\.)?tdcserviceonline\.com/ + to + https://$1tdcserviceonline.com/ + + securecookie + + host + ^(?:www\.)?tdcserviceonline\.com$ + name + .+ + + target + + + host + tdcserviceonline.com + + + host + www.tdcserviceonline.com + + + + + TDC online.se + + ruleset + + name + TDC online.se + rule + + from + ^http://(tdc\.|www\.)?tdconline\.se/ + to + https://$1tdconline.se/ + + securecookie + + host + ^(?:tdc\.)?tdconline\.se$ + name + .+ + + target + + + host + tdconline.se + + + host + *.tdconline.se + + + + + TDC.dk (partial) + + ruleset + + name + TDC.dk (partial) + rule + + + from + ^http://((?:erhverv|fly|kundeservice|mail|om|privat|privatalarm|selfcare|shop|wholesale|www)\.)?tdc\.dk/ + to + https://$1tdc.dk/ + + + from + ^http://forum\.tdc\.tk/ + to + https://tdc.i.lithium.com/ + + + from + ^http://(?:www\.)?tdc-wholesale\.com/(?:[?.][?./]*)? + to + https://wholesale.tdc.dk/nordic/ + + + securecookie + + + host + ^\.tdc\.dk$ + name + ^salg_dwbc$ + + + host + ^(?:privatalarm|shop)\.tdc\.dk$ + name + .+ + + + target + + + host + tdc.dk + + + host + *.tdc.dk + + + host + tdc-wholesale.com + + + host + www.tdc-wholesale.com + + + + + TDC.no (partial) + + ruleset + + name + TDC.no (partial) + rule + + from + ^http://io\.tdc\.no/ + to + https://io.tdc.no/ + + target + + host + io.tdc.no + + + + TDS.net (partial) + + ruleset + + name + TDS.net (partial) + rule + + from + ^http://(secure|sso|tsm)\.tds\.net/ + to + https://$1.tds.net/ + + securecookie + + + host + ^\.tds\.net$ + name + ^(?:Synacor_\d|synmaxymizer2)$ + + + host + ^sso\.tds\.net$ + name + .+ + + + target + + host + *.tds.net + + + + TEAC (partial) + + ruleset + + name + TEAC (partial) + rule + + + from + ^http://(www\.)?teac\.co\.jp/ + to + https://teac.co.jp/ + + + from + ^http://shop\.teac\.com/ + to + https://shop.teac.com/ + + + securecookie + + host + ^shop\.teac\.com$ + name + .* + + target + + + host + teac.co.jp + + + host + www.teac.co.jp + + + host + shop.teac.com + + + + + TEHTRI-Security.com + + ruleset + + name + TEHTRI-Security.com + platform + mixedcontent + rule + + from + ^http://(www\.)?tehtri-security\.com/ + to + https://$1tehtri-security.com/ + + target + + + host + tehtri-security.com + + + host + www.tehtri-security.com + + + + + TF Sprays.com + + ruleset + + name + TF Sprays.com + rule + + from + ^http://(www\.)?tfsprays\.com/ + to + https://$1tfsprays.com/ + + securecookie + + host + ^(?:w*\.)?tfsprays\.com$ + name + .+ + + target + + + host + tfsprays.com + + + host + *.tfsprays.com + + + + + TIBCO.com (partial) + + ruleset + + name + TIBCO.com (partial) + rule + + + from + ^http://(docs|download|support)\.tibco\.com/ + to + https://$1.tibco.com/ + + + from + ^http://forms2\.tibco\.com/(cs|image|j|r)s/ + to + https://na-sj01.marketo.com/$1s/ + + + securecookie + + host + ^(?:docs|download|support)\.tibco\.com$ + name + .+ + + target + + host + *.tibco.com + + + + TICKETsage + + ruleset + + name + TICKETsage + rule + + from + ^http://(www\.)?ticketsage\.com/ + to + https://$1ticketsage.com/ + + securecookie + + host + ^\.ticketsage.com$ + name + .+ + + target + + + host + ticketsage.com + + + host + *.ticketsage.com + + + + + TIME.com (partial) + + ruleset + + name + TIME.com (partial) + rule + + + from + ^http://((?:profiles|smetrics|subscription|www)\.)?time\.com/ + to + https://$1time.com/ + + + from + ^http://(business|entertainment|newsfeed|science|world)\.time\.com/+(?:$|\?.*) + to + https://time.com/$1 + + + from + ^http://healthland\.time\.com/+(?:$|\?.*) + to + https://time.com/health + + + from + ^http://ideas\.time\.com/+(?:$|\?.*) + to + https://time.com/opinion + + + from + ^http://nation\.time\.com/+(?:$|\?.*) + to + https://time.com/us + + + from + ^http://swampland\.time\.com/+(?:$|\?.*) + to + https://time.com/politics + + + from + ^http://techland\.time\.com/+(?:$|\?.*) + to + https://time.com/tech + + + from + ^http://tiads\.time\.com/ + to + https://a248.e.akamai.net/f/259/1/g/tiads.time.com/ + + + securecookie + + + host + ^\.time\.com$ + name + ^(?:gpv_\w\d+|sinvisit_\w|s_\w+)$ + + + host + ^subscription\.time\.com$ + name + .+ + + + target + + + host + time.com + + + host + *.time.com + + + + + TIP.net.au (partial) + + ruleset + + name + TIP.net.au (partial) + platform + cacert + rule + + from + ^http://(www\.)?tip\.net\.au/(favicon\.ico|wiki/(?:index\.php\?title=(?:.+&action=raw|Special:UserLogin)|PCUG_logo\.jpg|skins/)) + to + https://$1tip.net.au/$2 + + target + + + host + tip.net.au + + + host + www.tip.net.au + + + + + TLDRLegal.com (partial) + + ruleset + + name + TLDRLegal.com (partial) + rule + + from + ^http://(www\.)?tldrlegal\.com/ + to + https://$1tldrlegal.com/ + + securecookie + + host + ^\.tldrlegal\.com$ + name + ^tldrlegal\.sid$ + + target + + + host + tldrlegal.com + + + host + *.tldrlegal.com + + + + + TMP.com + + ruleset + + name + TMP.com + rule + + + from + ^http://autodiscover\.tmp\.com/ + to + https://autodiscover-s.outlook.com/ + + + from + ^http://webmail\.tmp\.com/ + to + https://webmail.tmp.com/ + + + target + + host + *.tmp.com + + + + TMPwebeng.com + + ruleset + + name + TMPwebeng.com + rule + + + from + ^http://(?:secure\.|www\.)?tmpwebeng\.com/ + to + https://secure.tmpwebeng.com/ + + + from + ^http://services\.tmpwebeng\.com/ + to + https://services.tmpwebeng.com/ + + + securecookie + + host + ^services\.tmpwebeng\.com$ + name + .+ + + target + + + host + tmpwebeng.com + + + host + *.tmpwebeng.com + + + + + TMZ.com + + ruleset + + name + TMZ.com + rule + + + from + ^http://(?:ll-)?(assets|media)\.tmz\.com/ + to + https://s3.amazonaws.com/$1.tmz.com/ + + + from + ^http://(ssl-cdn-(?:assets|media)\.|www\.)?tmz\.com/ + to + https://$1tmz.com/ + + + from + ^http://tmz\.vo\.llnwd\.net/ + to + https://tmz.hs.llnwd.net/ + + + securecookie + + host + ^\.www\.tmz\.com$ + name + .+ + + target + + + host + tmz.com + + + host + *.tmz.com + + + host + tmz.vo.llnwd.net + + + + + TMcdn.org + + ruleset + + name + TMcdn.org + rule + + from + ^http://cdn\d?\.tmcdn\.org/ + to + https://d28avt1uzu18qf.cloudfront.net/ + + target + + host + *.tmcdn.org + + + + TMtm.ru (partial) + + ruleset + + name + TMtm.ru (partial) + rule + + from + ^http://id\.tmtm\.ru/ + to + https://id.tmtm.ru/ + + securecookie + + host + ^id\.tmtm\.ru$ + name + .+ + + target + + host + id.tmtm.ru + + + + TNNet + + ruleset + + name + TNNet + rule + + + from + ^http://tnnet\.fi/ + to + https://www.tnnet.fi/ + + + from + ^http://((?:hostcontrol|mail|oma|wm|www)\.)?tnnet\.fi/ + to + https://$1tnnet.fi/ + + + securecookie + + host + ^(.*\.)?tnnet\.fi$ + name + .* + + target + + + host + tnnet.fi + + + host + *.tnnet.fi + + + + + TNO.nl + + ruleset + + name + TNO.nl + rule + + from + ^http://(?:www\.)?tno\.nl/ + to + https://www.tno.nl/ + + target + + + host + tno.nl + + + host + www.tno.nl + + + + + TNS Gallup (partial) + + ruleset + + name + TNS Gallup (partial) + rule + + + from + ^https?://www\.statistik-gallup\.net/ + to + https://statistik-gallup.net/ + + + from + ^http://statistik-gallup\.net/ + to + https://statistik-gallup.net/ + + + securecookie + + host + ^statistik-gallup.net$ + name + .* + + target + + host + statistik-gallup.net + + + + TNS Info + + ruleset + + name + TNS Info + rule + + from + ^http://(?:www\.)?tnsinfo\.com/ + to + https://www.tnsinfo.com/ + + securecookie + + host + ^(.*\.)?tnsinfo\.com$ + name + .* + + target + + + host + tnsinfo.com + + + host + *.tnsinfo.com + + + + + TNS Sifo (partial) + + ruleset + + name + TNS Sifo (partial) + rule + + + from + ^http://panel\.research-int\.se/ + to + https://panel.research-int.se/ + + + from + ^http://ssl\.sifomedia\.se/ + to + https://ssl.sifomedia.se/ + + + securecookie + + + host + ^panel\.research-int\.se$ + name + .+ + + + host + ^ssl\.sifomedia\.se$ + name + .* + + + target + + + host + panel.research-int.se + + + host + ssl.sifomedia.se + + + + + TOG + + ruleset + + name + TOG + platform + cacert + rule + + from + ^http://(lists\.|www\.)?tog\.ie/ + to + https://$1tog.ie/ + + securecookie + + host + ^www\.tog\.ie$ + name + .* + + target + + + host + tog.ie + + + host + *.tog.ie + + + + + TOSBack.org + + ruleset + + name + TOSBack.org + rule + + from + ^http://tosback\.org/ + to + https://tosback.org/ + + securecookie + + host + ^tosback\.org$ + name + .+ + + target + + host + tosback.org + + + + TPB.me + + ruleset + + name + TPB.me + rule + + from + ^https?://(www\.)?tpb\.me/ + to + https://$1tbp.me/ + + target + + + host + tpb.me + + + host + www.tpb.me + + + + + TPG Capital (partial) + + ruleset + + name + TPG Capital (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?bergdorfgoodman\.com/ + to + https://www.bergdorfgoodman.com/ + + + from + ^http://(?:www\.)?cusp\.com/(content/|images/|stylesheets/) + to + https://www.cusp.com/$1 + + + from + ^http://jscss\.cp\.ctscdn\.com/ + to + https://www.cusp.com/ + + + from + ^http://(?:www\.)?incircle\.com/ + to + https://www.incircle.com/ + + + from + ^http://(?:www\.)?lastcall\.com/ + to + https://www.lastcall.com/ + + + from + ^http://neimanmarcus\.com/ + to + https://www.neimanmarcus.com/ + + + from + ^http://(registry|www)\.neimanmarcus\.com/ + to + https://$1.neimanmarcus.com/ + + + target + + + host + bergdorfgoodman.com + + + host + www.bergdorfgoodman.com + + + host + jscss.cp.ctscdn.com + + + host + cusp.com + + + host + www.cusp.com + + + host + incircle.com + + + host + www.incircle.com + + + host + lastcall.com + + + host + www.lastcall.com + + + host + neimanmarcus.com + + + host + *.neimanmarcus.com + + + + + TPPtraining.com + + ruleset + + name + TPPtraining.com + rule + + from + ^http://(?:www\.)?tpptraining\.com/ + to + https://www.tpptraining.com/ + + target + + + host + tpptraining.com + + + host + www.tpptraining.com + + + + + TRON-DELTA.ORG + + ruleset + + name + TRON-DELTA.ORG + platform + firefox + rule + + + from + ^http://(?:www\.)?tron-delta\.org/ + to + https://tron-delta.org/ + + + from + ^http://([^/:@]+)\.tron-delta\.org/ + to + https://$1.tron-delta.org/ + + + securecookie + + host + ^tron-delta\.org$ + name + .+ + + target + + + host + tron-delta.org + + + host + *.tron-delta.org + + + + + TRUSTe (partial) + + ruleset + + name + TRUSTe (partial) + rule + + + from + ^http://truste\.com/ + to + https://www.truste.com/ + + + from + ^http://(clicktoverify|connect|consent|content|easy-tracking-protection|feedback-form|login|preferences(?:-mgr)?|privacy(?:-policy)?|tdp-feedback|tracking-protection|view|www)\.truste\.com/ + to + https://$1.truste.com/ + + + securecookie + + host + .*\.truste\.com$ + name + .+ + + target + + + host + truste.com + + + host + *.truste.com + + + + + TRiBot.org (partial) + + ruleset + + name + TRiBot.org (partial) + rule + + from + ^http://(www\.)?tribot\.org/ + to + https://$1tribot.org/ + + securecookie + + host + ^\.tribot\.org$ + name + .+ + + target + + + host + tribot.org + + + host + *.tribot.org + + + + + TSB Mag.com + + ruleset + + name + TSB Mag.com + rule + + from + ^http://(www\.)?tsbmag\.com/ + to + https://$1tsbmag.com/ + + securecookie + + host + ^(?:w*\.)?tsbmag\.com$ + name + .+ + + target + + + host + tsbmag.com + + + host + *.tsbmag.com + + + + + TSDD.org + + ruleset + + name + TSDD.org + rule + + from + ^http://(www\.)?tsdd\.org/ + to + https://$1tsdd.org/ + + securecookie + + host + ^\.tsdd\.org$ + name + .+ + + target + + + host + tsdd.org + + + host + *.tsdd.org + + + + + TSHA online.org + + ruleset + + name + TSHA online.org + rule + + from + ^http://(www\.)?tshaonline\.org/ + to + https://$1tshaonline.org/ + + securecookie + + host + ^\.tshaonline\.org$ + name + .+ + + target + + + host + tshaonline.org + + + host + *.tshaonline.org + + + + + TSMC.com (partial) + + ruleset + + name + TSMC.com (partial) + rule + + from + ^http://(ec[at]online|online)\.tsmc\.com/ + to + https://$1.tsmc.com/ + + target + + host + *.tsmc.com + + + + TSO Shop + + ruleset + + name + TSO Shop + rule + + from + ^http://www\.tsoshop\.co\.uk/ + to + https://www.tsoshop.co.uk/ + + securecookie + + host + ^www\.tsoshop\.co\.uk$ + name + .+ + + target + + host + www.tsoshop.co.uk + + + + TSO.co.uk + + ruleset + + name + TSO.co.uk + rule + + + from + ^http://(?:www\.)?tso\.co\.uk/ + to + https://www.tso.co.uk/ + + + from + ^http://www\.stats\.tso\.co\.uk/ + to + https://www.stats.tso.co.uk/ + + + securecookie + + host + ^(?:www)?\.tso\.co\.uk$ + name + .+ + + target + + + host + tso.co.uk + + + host + *.tso.co.uk + + + + + TT.se + + ruleset + + name + TT.se + rule + + + from + ^http://tt\.se/ + to + https://www.tt.se/ + + + from + ^http://www\.tt\.se/ + to + https://www.tt.se/ + + + target + + + host + tt.se + + + host + www.tt.se + + + + + TU I TAM + + ruleset + + name + TU I TAM + platform + mixedcontent + rule + + from + ^http://(www\.)?tuitam\.pl/ + to + https://$1tuitam.pl/ + + securecookie + + host + ^(.*\.)?tuitam\.pl$ + name + .* + + target + + + host + tuitam.pl + + + host + www.tuitam.pl + + + + + TU-Chemnitz.de (partial) + + ruleset + + name + TU-Chemnitz.de (partial) + rule + + + from + ^http://(?:www\.)?tu-chemnitz\.de/ + to + https://www.tu-chemnitz.de/ + + + from + ^http://(www\.bibliothek|www-user)\.tu-chemnitz\.de/ + to + https://$1.tu-chemnitz.de/ + + + target + + + host + tu-chemnitz.de + + + host + *.tu-chemnitz.de + + + + + TU-Darmstadt.de (partial) + + ruleset + + name + TU-Darmstadt.de (partial) + rule + + from + ^http://(www\.cs|(?:idm-bi01|sso|www)\.hrz|www\.idm|(?:(?:wiki|www)\.cdc|www)\.informatik|www\.ulb|www)\.tu-darmstadt\.de/ + to + https://$1.tu-darmstadt.de/ + + securecookie + + host + ^www\.(?:cdc\.)?www\.informatik\.tu-darmstadt\.de$ + name + .+ + + target + + host + *.tu-darmstadt.de + + + + TU-Dresden.de (partial) + + ruleset + + name + TU-Dresden.de (partial) + rule + + + from + ^http://(?:www\.)?(?:iai\.)?inf\.tu-dresden\.de/ + to + https://www.inf.tu-dresden.de/ + + + from + ^http://(anon|os)\.inf\.tu-dresden\.de/ + to + https://$1.inf.tu-dresden.de/ + + + target + + host + *.tu-dresden.de + + + + TUGRaz.at (partial) + + ruleset + + exclusion + + pattern + ^http://portal\.tugraz\.at/+(?!tugraz/sso/login\?site2pstoretoken=) + + name + TUGRaz.at (partial) + rule + + + from + ^http://(analytics|www\.campusonline|dav-id|donation|jce\.iaik|online|portal|sso|tu4u)\.tugraz\.at/ + to + https://$1.tugraz.at/ + + + from + ^http://tugnet\.tugraz\.at/ + to + https://portal.tugraz.at/portal/page/portal/zid/netzwerk/ + + + from + ^http://www\.zid\.tugraz\.at/ + to + https://portal.tugraz.at/portal/page/portal/zid/ + + + from + ^http://online\.tu-graz\.ac\.at/ + to + https://online.tu-graz.ac.at/ + + + target + + + host + *.tugraz.at + + + host + online.tu-graz.ac.at + + + + + TUHH.de (partial) + + ruleset + + name + TUHH.de (partial) + rule + + + from + ^http://www\.tu-hamburg\.de/ + to + https://www.tu-hamburg.de/ + + + from + ^http://(intranet|intranet\.v|www)\.tu-harburg\.de/ + to + https://$1.tu-harburg.de/ + + + from + ^http://(intranet|intranet\.v|www)\.tuhh\.de/ + to + https://$1.tuhh.de/ + + + target + + + host + www.tu-hamburg.de + + + host + *.tu-harburg.de + + + host + *.tuhh.de + + + + + TUT.fi (partial) + + ruleset + + name + TUT.fi (partial) + rule + + from + ^http://(www\.cs|idp)\.tut\.fi/ + to + https://$1.tut.fi/ + + securecookie + + host + ^idp\.tut\.fi$ + name + .+ + + target + + host + *.tut.fi + + + + TV4play.se + + ruleset + + name + TV4play.se + rule + + + from + ^http://www\.tv4play\.se/ + to + https://www.tv4play.se/ + + + from + ^http://tv4play\.se/ + to + https://www.tv4play.se/ + + + target + + + host + tv4play.se + + + host + www.tv4play.se + + + + + TVLinks (partial) + + ruleset + + name + TVLinks (partial) + rule + + + from + ^https?://i\.tvlim\.com/ + to + https://d2hhnaah6fgxxa.cloudfront.net/ + + + from + ^https?://s\.tvlim\.com/ + to + https://d1fv5i6aszv8fs.cloudfront.net/ + + + target + + host + *.tvlim.com + + + + TVNZ + + ruleset + + name + TVNZ + rule + + + from + ^http://((?:(?:www\.)?careers|images|www)\.)?tvnz\.co\.nz/ + to + https://$1tvnz.co.nz/ + + + from + ^http://download\.tvnz\.co\.nz/ + to + https://images.tvnz.co.nz/ + + + from + ^http://shop\.tvnz\.co\.nz/ + to + https://store-prbg35.mybigcommerce.com/ + + + securecookie + + host + ^\.?tvnz\.co\.nz$ + name + .+ + + target + + + host + tvnz.co.nz + + + host + *.tvnz.co.nz + + + + + TVNewsCheck.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?tvnewscheck\.com/(?!asset/|/?playout/wp-content/|resource/|sites/|sso/) + + name + TVNewsCheck.com (partial) + rule + + from + ^http://(?:assets\.|www\.)?tvnewscheck\.com/ + to + https://www.tvnewscheck.com/ + + target + + + host + tvnewscheck.com + + + host + *.tvnewscheck.com + + + + + TVShow Time.com + + ruleset + + name + TVShow Time.com + rule + + from + ^http://(www\.)?tvshowtime\.com/ + to + https://$1tvshowtime.com/ + + target + + + host + tvshowtime.com + + + host + www.tvshowtime.com + + + + + TVtome.com (partial) + + ruleset + + name + TVtome.com (partial) + rule + + + from + ^http://static\.tvtome\.com/ + to + https://a248.e.akamai.net/m/1639/7649/5/static.tvtome.com/ + + + from + ^http://img2\.tvtome\.com/ + to + https://a248.e.akamai.net/m/978/9813/5/img2.tvtome.com/ + + + target + + host + *.tvtome.com + + + + TYPO3 (partial) + + ruleset + + exclusion + + pattern + ^http://(?:flow|neos)\.typo3\.org/+(?!_Resources/) + + name + TYPO3 (partial) + rule + + + from + ^http://((?:flow|forge|get|neos|www)\.)?typo3\.org/ + to + https://$1typo3.org/ + + + from + ^http://certification\.typo3\.org/.* + to + https://typo3.org/certification/about-the-certification/ + + + securecookie + + host + ^forge\.typo3\.org$ + name + .+ + + target + + + host + typo3.org + + + host + *.typo3.org + + + + + TYPO3.org (false MCB) + + ruleset + + name + TYPO3.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(flow|neos)\.typo3\.org/ + to + https://$1.typo3.org/ + + target + + + host + flow.typo3.org + + + host + neos.typo3.org + + + + + Taboola (partial) + + ruleset + + exclusion + + pattern + ^http://trc\.taboola\.com/libtrc/ + + name + Taboola (partial) + rule + + + from + ^http://(?:www\.)?taboola\.com/ + to + https://www.taboola.com/ + + + from + ^http://(cdn|images|netstorage|trc)\.taboola\.com/ + to + https://$1.taboola.com/ + + + securecookie + + host + ^www\.taboola\.com$ + name + .* + + target + + + host + taboola.com + + + host + *.taboola.com + + + + + Taboolasyndication.com (partial) + + ruleset + + name + Taboolasyndication.com (partial) + rule + + from + ^http://cdn\.taboolasyndication\.com/ + to + https://cdn.taboola.com/ + + target + + host + cdn.taboolasyndication.com + + + + Tachanka.org + + ruleset + + name + Tachanka.org + rule + + from + ^http://(www\.)?tachanka\.org/ + to + https://$1tachanka.org/ + + target + + + host + tachanka.org + + + host + www.tachanka.org + + + + + Tactical Tech.org (partial) + + ruleset + + name + Tactical Tech.org (partial) + rule + + from + ^http://((?:analytics|archive2013|protect|survival|www)\.)?tacticaltech\.org/ + to + https://$1tacticaltech.org/ + + securecookie + + host + ^(?:.*\.)?tacticaltech\.org$ + name + .+ + + target + + + host + tacticaltech.org + + + host + *.tacticaltech.org + + + + + TagMan (partial) + + ruleset + + name + TagMan (partial) + rule + + from + ^http://admin\.tagman\.com/ + to + https://admin.tagman.com/ + + securecookie + + host + ^admin\.tagman\.com$ + name + .+ + + target + + host + admin.tagman.com + + + + Tagasauris.com + + ruleset + + name + Tagasauris.com + rule + + from + ^http://(photo\.|www\.)?tagasauris\.com/ + to + https://$1tagasauris.com/ + + securecookie + + host + ^(?:photo)?\.tagasauris\.com$ + name + .+ + + target + + + host + tagasauris.com + + + host + *.tagasauris.com + + + + + TagesWoche + + ruleset + + name + TagesWoche + rule + + from + ^http://([^/:@]*)\.tageswoche\.ch/ + to + https://$1.tageswoche.ch/ + + target + + + host + www.tageswoche.ch + + + host + *.tageswoche.ch + + + + + Tahoe-LAFS + + ruleset + + name + Tahoe-LAFS + rule + + from + ^http://(www\.)?tahoe-lafs\.org/ + to + https://tahoe-lafs.org/ + + securecookie + + host + ^tahoe-lafs\.org$ + name + .* + + target + + + host + tahoe-lafs.org + + + host + www.tahoe-lafs.org + + + + + Taiga.io + + ruleset + + name + Taiga.io + rule + + from + ^http://(tree\.|www\.)?taiga\.io/ + to + https://$1taiga.io/ + + target + + + host + taiga.io + + + host + *.taiga.io + + + + + Tailgaters Parking.com + + ruleset + + name + Tailgaters Parking.com + rule + + from + ^http://(www\.)?tailgatersparking\.com/ + to + https://$1tailgatersparking.com/ + + securecookie + + host + ^(?:w*\.)?tailgatersparking\.com$ + name + .+ + + target + + + host + tailgatersparking.com + + + host + *.tailgatersparking.com + + + + + Tailor Made Answers + + ruleset + + name + Tailor Made Answers + rule + + from + ^http://(?:www\.)?tailormadeanswers\.com/ + to + https://tailormadeanswers.com/ + + target + + + host + tailormadeanswers.com + + + host + www.tailormadeanswers.com + + + + + Take Control Ebooks + + ruleset + + name + Take Control Ebooks + rule + + from + ^http://(www\.)?takecontrolbooks\.com/ + to + https://$1takecontrolbooks.com/ + + securecookie + + host + ^(?:.*\.)?takecontrolbooks\.com$ + name + .+ + + target + + + host + takecontrolbooks.com + + + host + *.takecontrolbooks.com + + + + + Takeaway.com + + ruleset + + name + Takeaway.com + rule + + from + ^http://(www\.)?takeaway\.com/ + to + https://$1takeaway.com/ + + securecookie + + host + ^(?:www\.)?takeaway\.com$ + name + .+ + + target + + + host + takeaway.com + + + host + www.takeaway.com + + + + + Takuu-Säätiö + + ruleset + + name + Takuu-Säätiö + rule + + + from + ^http://(?:www\.)?takuu-saatio\.fi/ + to + https://takuu--saatio-fi.directo.fi/ + + + from + ^http://takuu--saatio-fi\.directo\.fi/ + to + https://takuu--saatio-fi.directo.fi/ + + + target + + + host + takuu-saatio.fi + + + host + www.takuu-saatio.fi + + + host + takuu--saatio-fi.directo.fi + + + + + Talemetry.com (partial) + + ruleset + + name + Talemetry.com (partial) + rule + + + from + ^http://(careers|login)\.talemetry\.com/ + to + https://$1.talemetry.com/ + + + from + ^http://ttc\.talenttech\.com/(cs|image|j|r)s/ + to + https://na-k.marketo.com/$1s/ + + + securecookie + + host + ^(?:\.careers|login)\.talemetry\.com$ + name + .+ + + target + + + host + careers.talemetry.com + + + host + *.careers.talemetry.com + + + host + login.talemetry.com + + + host + ttc.talenttech.com + + + + + Taleo (partial) + + ruleset + + name + Taleo (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?taleo\.(?:com|net)/ + to + https://www.taleo.com/ + + + from + ^http://(tbe|\w+\.tbe|toc)\.taleo\.net/ + to + https://$1.taleo.net/ + + + from + ^http://(?:www\.)?taleobusinessedition\.com/ + to + https://www.taleo.com/solutions/taleo-business-edition + + + securecookie + + + host + ^www\.taleo\.com$ + name + .* + + + host + ^(?:.+\.)?tbe\.taleo\.net$ + name + .+ + + + target + + + host + taleo.com + + + host + *.taleo.com + + + host + taleo.net + + + host + *.taleo.net + + + + + Talk Active (partial) + + ruleset + + name + Talk Active (partial) + rule + + from + ^http://web(12|mail)\.talkactive\.net/ + to + https://web$1.talkactive.net/ + + securecookie + + host + ^webmail\.talkactive\.net$ + name + .* + + target + + host + *.talkactive.net + + + + TalkTalk (partial) + + ruleset + + name + TalkTalk (partial) + rule + + + from + ^http://secure\.nildram\.net/ + to + https://secure.nildram.net/ + + + from + ^https?://(?:www\.)?t(?:alktalk|iscali)\.co\.uk/ + to + https://www.talktalk.co.uk/ + + + from + ^http://(community|help2?|my|myaccount|sales|sso)\.talktalk\.co\.uk/ + to + https://$1.talktalk.co.uk/ + + + from + ^http://webmail\.talktalk\.co\.uk/+(?:\?.*)?$ + to + https://www.talktalk.co.uk/mail/?from=aol + + + from + ^http://billing\.mytalktalkbusiness\.co\.uk/ + to + https://billing.mytalktalkbusiness.co.uk/ + + + from + ^http://(?:www\.)?talktalkbusiness\.co\.uk/(Global/|[tT]emplates/) + to + https://www.talktalkbusiness.co.uk/$1 + + + from + ^http://media\.tiscali\.co\.uk/ + to + https://media.tiscali.co.uk/ + + + from + ^http://m(\d)\.ttxm\.co\.uk/ + to + https://m$1.ttxm.co.uk/ + + + securecookie + + + host + ^(.*\.)?talktalk\.co\.uk$ + name + .* + + + host + ^billing\.mytalktalkbusiness\.co\.uk$ + name + .* + + + target + + + host + secure.nildram.net + + + host + talktalk.co.uk + + + host + *.talktalk.co.uk + + + host + talktalkbusiness.co.uk + + + host + *.talktalkbusiness.co.uk + + + host + *.ttxm.co.uk + + + host + tiscali.co.uk + + + host + *.tiscali.co.uk + + + + + TalkTalk-Labs.com + + ruleset + + name + TalkTalk-Labs.com + rule + + from + ^http://(?:www\.)?talktalk-labs\.com/ + to + https://www.talktalk-labs.com/ + + target + + + host + talktalk-labs.com + + + host + www.talktalk-labs.com + + + + + Talking French + + ruleset + + name + Talking French + rule + + + from + ^https?://talkingfrench\.com/ + to + https://www.talkingfrench.com/ + + + from + ^http://([^/:@]+)?\.talkingfrench\.com/ + to + https://$1.talkingfrench.com/ + + + target + + + host + talkingfrench.com + + + host + www.talkingfrench.com + + + + + Talking Points Memo.com (partial) + + ruleset + + name + Talking Points Memo.com (partial) + rule + + from + ^http://cdn1\.talkingpointsmemo\.com/ + to + https://d2lix3jnlp95fq.cloudfront.net/ + + target + + host + cdn1.talkingpointsmemo.com + + + + Tampa Bay Sod.com + + ruleset + + name + Tampa Bay Sod.com + rule + + from + ^http://(www\.)?tampabaysod\.com/(?=favicon\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1tampabaysod.com/ + + target + + + host + tampabaysod.com + + + host + www.tampabaysod.com + + + + + TanCity.de + + ruleset + + name + TanCity.de + rule + + from + ^http://(?:www\.)?tancity\.de/ + to + https://www.tancity.de/ + + securecookie + + host + ^www\.tancity\.de$ + name + .+ + + target + + + host + tancity.de + + + host + www.tancity.de + + + + + Tandem Calendar + + ruleset + + name + Tandem Calendar + rule + + + from + ^http://(support\.|www\.)?intand\.com/ + to + https://$1intand.com/ + + + from + ^http://(www\.)?tandemcal\.com/ + to + https://$1tandemcal.com/ + + + securecookie + + + host + .+\.intand\.com$ + name + .+ + + + host + ^(?:www\.)?tandemcal\.com$ + name + .+ + + + target + + + host + intand.com + + + host + *.intand.com + + + host + tandemcal.com + + + host + www.tandemcal.com + + + + + Tandlakarforbundet.se + + ruleset + + name + Tandlakarforbundet.se + rule + + + from + ^http://tandlakarforbundet\.se/ + to + https://www.tandlakarforbundet.se/ + + + from + ^http://www\.tandlakarforbundet\.se/ + to + https://www.tandlakarforbundet.se/ + + + target + + + host + tandlakarforbundet.se + + + host + www.tandlakarforbundet.se + + + + + Tangient (partial) + + ruleset + + name + Tangient (partial) + rule + + + from + ^http://(?:c1|ssl)\.wikicdn\.com/ + to + https://ssl.wikicdn.com/ + + + from + ^http://(ssl\.|www\.)?wikispaces\.com/ + to + https://$1wikispaces.com/ + + + from + ^http://([\w\-]+)\.wikispaces\.com/([is]|stylesheet)/ + to + https://$1.wikispaces.com/$2/ + + + securecookie + + host + ^session\.wikispaces\.net$ + name + .+ + + target + + + host + *.wikicdn.com + + + host + wikispaces.com + + + host + *.wikispaces.com + + + + + Tango.me (false MCB) + + ruleset + + name + Tango.me (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?tango\.me/ + to + https://$1tango.me/ + + securecookie + + host + ^(?:www)?\.tango\.me$ + name + .+ + + target + + + host + tango.me + + + host + *.tango.me + + + + + Tango.me (partial) + + ruleset + + name + Tango.me (partial) + rule + + + from + ^http://(www\.)?tango\.me/(?=css/|favicon\.ico|images/|wp-content/|wp-includes/) + to + https://$1tango.me/ + + + from + ^http://support\.tango\.me/(?=favicon\.ico|generated/|images/|system/) + to + https://tangome.zendesk.com/ + + + target + + + host + tango.me + + + host + support.tango.me + + + host + www.tango.me + + + + + TankaFetast.com + + ruleset + + name + TankaFetast.com + rule + + from + ^http://(www\.)?tankafetast\.com/ + to + https://$1tankafetast.com/ + + securecookie + + host + ^(?:w*\.)?tankafetast\.com$ + name + .+ + + target + + + host + tankafetast.com + + + host + *.tankafetast.com + + + + + Tanomail.com + + ruleset + + name + Tanomail.com + rule + + from + ^http://(www\.)?tanomail\.com/ + to + https://$1tanomail.com/ + + target + + + host + tanomail.com + + + host + www.tanomail.com + + + + + Tao Effect.com + + ruleset + + name + Tao Effect.com + rule + + from + ^http://(www\.)?taoeffect\.com/ + to + https://$1taoeffect.com/ + + target + + + host + taoeffect.com + + + host + www.taoeffect.com + + + + + Taobao (partial) + + ruleset + + name + Taobao (partial) + rule + + + from + ^http://(login|login\.m|u\.m|regcheckcode)\.taobao\.com/ + to + https://$1.taobao.com/ + + + from + ^http://assets\.taobaocdn\.com/ + to + https://s.tbcdn.cn/ + + + securecookie + + host + ^\.login\.m\.taobao\.com$ + name + .+ + + target + + + host + *.taobao.com + + + host + assets.taobaocdn.com + + + + + Taobao.com (false MCB) + + ruleset + + name + Taobao.com (false MCB) + platform + mixedcontent + rule + + from + ^http://101\.taobao\.com/ + to + https://101.taobao.com/ + + target + + host + 101.taobao.com + + + + Tapad (partial) + + ruleset + + name + Tapad (partial) + rule + + + from + ^http://tapad\.app10\.hubspot\.com/ + to + https://tapad.app10.hubspot.com/ + + + from + ^http://(audience|pixel|tapestry)\.tapad\.com/ + to + https://$1.tapad.com/ + + + securecookie + + host + ^\.tapad\.com$ + name + .* + + target + + + host + tapad.app10.hubspot.com + + + host + *.tapad.com + + + + + Tapatalk + + ruleset + + name + Tapatalk + rule + + + from + ^https?://(?:www\.)?tapatalk\.com/ + to + https://tapatalk.com/ + + + from + ^http://(img|support)\.tapatalk\.com/ + to + https://$1.tapatalk.com/ + + + securecookie + + host + ^tapatalk\.com$ + name + .* + + target + + + host + tapatalk.com + + + host + www.tapatalk.com + + + + + Tape.tv + + ruleset + + name + Tape.tv + rule + + from + ^http://(blog|connect|metrics|streaming-url|web202|www)\.tape\.tv/ + to + https://$1.tape.tv/ + + target + + host + *.tape.tv + + + + Tapgage + + ruleset + + name + Tapgage + rule + + from + ^http://(www\.)?tapgage\.net/ + to + https://$1tapgage.net/ + + securecookie + + host + ^www\.tapgage\.net$ + name + .+ + + target + + + host + tapgage.net + + + host + www.tapgage.net + + + + + Tapiture.com (partial) + + ruleset + + name + Tapiture.com (partial) + rule + + from + ^http://(www\.)?tapiture\.com/ + to + https://$1tapiture.com/ + + securecookie + + host + ^\.tapiture\.com$ + name + .+ + + target + + + host + tapiture.com + + + host + *.tapiture.com + + + + + Target (partial) + + ruleset + + exclusion + + pattern + ^http://m-beta-secure\.target\.com/ + + name + Target (partial) + rule + + + from + ^http://(?:www\.)?target\.com/favicon\.ico + to + https://a248.e.akamai.net/D/16382/173656/000/www.target.com/favicon.ico + + + from + ^http://([\w-]+-secure(?:-perf|-stg)?|(?:images-)?babycatalog|(?:baby|m\.baby|home|patio|toys|wedding)\.catalogs|college|corporate(?:-admin)?|health|microsites|mrcam|secureconnect|sites|tgtfiles)\.target\.com/ + to + https://$1.target.com/ + + + from + ^http://m\.target\.com/ + to + https://m-secure.target.com/ + + + from + ^http://m\.weeklyad\.target\.com/(asset|image)s/ + to + https://a248.e.akamai.net/D/16382/173656/000/m.weeklyad.target.com/$1s/ + + + from + ^http://([\w-]+)-secure(-perf|-stg)?\.targetimg(\d)\.com/ + to + https://$1-secure$2.targetimg$3.com/ + + + from + ^http://img(\d)\.targetimg\d\.com/ + to + https://img$1-secure.targetimg$1.com/ + + + from + ^http://static\.targetimg1\.com/ + to + https://static.targetimg1.com/ + + + securecookie + + + host + ^\.m-secure\.target\.com$ + name + .+ + + + host + ^.+\.target\.com$ + name + .+ + + + target + + + host + *.target.com + + + host + *.targetimg1.com + + + host + *.targetimg2.com + + + host + *.targetimg3.com + + + + + Targeting Performance + + ruleset + + name + Targeting Performance + rule + + + from + ^http://ad\.ad-srv\.net/ + to + https://ad.ad-srv.net/ + + + from + ^http://(n2|n34)\.ad\.ad-srv\.net/ + to + https://$1.ad-srv.net/ + + + target + + + host + *.ad-srv.net + + + host + *.ad.ad-srv.net + + + + + Taringa (partial) + + ruleset + + name + Taringa (partial) + rule + + + from + ^http://(?:(?:l|o1)\.r26\.net|i\.t\.net\.ar)/ + to + https://l.r26.net/ + + + from + ^https?://(?:www\.)?taringa.net/(login|recuperar-(?:clave|nick)|registro(?:-reenviar)?)($|\?|/) + to + https://www.taringa.net/$1$2 + + + target + + + host + *.r26.net + + + host + i.t.net.ar + + + host + taringa.net + + + host + www.taringa.net + + + + + Tarsnap + + ruleset + + name + Tarsnap + rule + + from + ^http://(www\.)?tarsnap\.com/ + to + https://www.tarsnap.com/ + + target + + + host + tarsnap.com + + + host + www.tarsnap.com + + + + + Taskforce.is + + ruleset + + name + Taskforce.is + rule + + from + ^http://(www\.)?taskforce\.is/ + to + https://$1taskforce.is/ + + securecookie + + host + ^\.taskforce\.is$ + name + .+ + + target + + + host + taskforce.is + + + host + *.taskforce.is + + + + + TataSky + + ruleset + + name + TataSky + rule + + from + ^http://www\.mytatasky\.com/ + to + https://www.mytatasky.com/ + + target + + host + www.mytatasky.com + + + + Tate Publishing.com + + ruleset + + name + Tate Publishing.com + rule + + from + ^http://(www\.)?tatepublishing\.com/ + to + https://$1tatepublishing.com/ + + securecookie + + host + ^(?:www\.)?tatepublishing\.com$ + name + .+ + + target + + + host + tatepublishing.com + + + host + www.tatepublishing.com + + + + + TauCeti.org.au + + ruleset + + name + TauCeti.org.au + rule + + from + ^http://www\.tauceti\.org\.au/ + to + https://www.tauceti.org.au/ + + target + + host + www.tauceti.org.au + + + + TaxPayers' Alliance + + ruleset + + name + TaxPayers' Alliance + rule + + from + ^http://(?:www\.)?taxpayersalliance\.com/ + to + https://www.taxpayersalliance.com/ + + securecookie + + host + (?:www)?\.taxpayersalliance\.com$ + name + .+ + + target + + + host + taxpayersalliance.com + + + host + *.taxpayersalliance.com + + + + + TbCDN.cn + + ruleset + + name + TbCDN.cn + rule + + + from + ^http://[as]\.tbcdn\.cn/ + to + https://s.tbcdn.cn/ + + + from + ^http://g\.tbcdn\.cn/ + to + https://g.alicdn.com/ + + + target + + host + *.tbcdn.cn + + + + Tchibo + + ruleset + + name + Tchibo + rule + + + from + ^http://(?:www\.)?tchibo\.de/ + to + https://www.tchibo.de/ + + + from + ^http://([^/:@]*)\.tchibo\.de/ + to + https://$1.tchibo.de/ + + + from + ^http://(?:www\.)?tchibo\.ch/ + to + https://www.tchibo.ch/ + + + from + ^http://([^/:@]*)\.tchibo\.ch/ + to + https://$1.tchibo.ch/ + + + from + ^http://(?:www\.)?fr\.tchibo\.ch/ + to + https://www.fr.tchibo.ch/ + + + from + ^http://([^/:@]*)\.fr\.tchibo\.ch/ + to + https://$1.fr.tchibo.ch/ + + + from + ^http://(?:www\.)?eduscho\.at/ + to + https://www.eduscho.at/ + + + from + ^http://([^/:@]*)\.eduscho\.at/ + to + https://$1.eduscho.at/ + + + from + ^http://(?:www\.)?tchibo\.sk/ + to + https://www.tchibo.sk/ + + + from + ^http://([^/:@]*)\.tchibo\.sk/ + to + https://$1.tchibo.sk/ + + + from + ^http://(?:www\.)?tchibo\.com\.tr/ + to + https://www.tchibo.com.tr/ + + + from + ^http://([^/:@]*)\.tchibo\.com\.tr/ + to + https://$1.tchibo.com.tr/ + + + from + ^http://(?:www\.)?tchibo\.pl/ + to + https://www.tchibo.pl/ + + + from + ^http://([^/:@]*)\.tchibo\.pl/ + to + https://$1.tchibo.pl/ + + + from + ^http://(?:www\.)?tchibo\.cz/ + to + https://www.tchibo.cz/ + + + from + ^http://([^/:@]*)\.tchibo\.cz/ + to + https://$1.tchibo.cz/ + + + from + ^http://(?:www\.)?tchibo\.hu/ + to + https://www.tchibo.hu/ + + + from + ^http://([^/:@]*)\.tchibo\.hu/ + to + https://$1.tchibo.hu/ + + + target + + + host + tchibo.de + + + host + *.tchibo.de + + + host + tchibo.ch + + + host + *.tchibo.ch + + + host + fr.tchibo.ch + + + host + *.fr.tchibo.ch + + + host + eduscho.at + + + host + *.eduscho.at + + + host + tchibo.sk + + + host + *.tchibo.sk + + + host + tchibo.com.tr + + + host + *.tchibo.com.tr + + + host + tchibo.pl + + + host + *.tchibo.pl + + + host + tchibo.cz + + + host + *.tchibo.cz + + + host + tchibo.hu + + + host + *.tchibo.hu + + + + + TeX Users Group + + ruleset + + name + TeX Users Group + rule + + from + ^http://(www\.)?tug\.org/ + to + https://www.tug.org/ + + target + + + host + tug.org + + + host + www.tug.org + + + + + Tea Party Patriots + + ruleset + + name + Tea Party Patriots + rule + + from + ^https?://(?:www\.)?teapartypatriots\.org/ + to + https://www.teapartypatriots.org/ + + securecookie + + host + ^www\.teapartypatriots\.org$ + name + .* + + target + + + host + teapartypatriots.org + + + host + www.teapartypatriots.org + + + + + Teachers Assurance + + ruleset + + name + Teachers Assurance + rule + + + from + ^http://teachersassurance\.co\.uk/.* + to + https://www.teachersassurance.co.uk/ + + + from + ^http://(customer|securevpn|www)\.teachersassurance\.co\.uk/ + to + https://$1.teachersassurance.co.uk/ + + + securecookie + + host + .+\.teachersassurance\.co\.uk$ + name + .+ + + target + + + host + teachersassurance.co.uk + + + host + *.teachersassurance.co.uk + + + + + Teacups and Trinkets.co.uk + + ruleset + + name + Teacups and Trinkets.co.uk + rule + + from + ^http://(www\.)?teacupsandtrinkets\.co\.uk/ + to + https://$1teacupsandtrinkets.co.uk/ + + securecookie + + host + ^(?:w*\.)?teacupsandtrinkets\.co\.uk$ + name + .+ + + target + + + host + teacupsandtrinkets.co.uk + + + host + *.teacupsandtrinkets.co.uk + + + + + Tealium (partial) + + ruleset + + name + Tealium (partial) + rule + + + from + ^http://my\.tealiumiq\.com/ + to + https://my.tealiumiq.com/ + + + from + ^http://tags\.tiqcdn\.com/ + to + https://tags.tiqcdn.com/ + + + target + + + host + my.tealiumiq.com + + + host + tags.tiqcdn.com + + + + + Team Cymru + + ruleset + + name + Team Cymru + rule + + from + ^http://(www\.)?team-cymru\.org/ + to + https://$1team-cymru.org/ + + target + + + host + team-cymru.org + + + host + www.team-cymru.org + + + + + Team Fortress + + ruleset + + name + Team Fortress + rule + + from + ^http://wiki\.teamfortress\.com/ + to + https://wiki.teamfortress.com/ + + securecookie + + host + ^wiki\.teamfortress\.com$ + name + .+ + + target + + host + wiki.teamfortress.com + + + + Team in Training.org (partial) + + ruleset + + name + Team in Training.org (partial) + rule + + from + ^http://(?:www\.)?teamintraining\.org/ + to + https://www.teamintraining.org/ + + securecookie + + host + ^www\.teamintraining\.org$ + name + .+ + + target + + + host + teamintraining.org + + + host + www.teamintraining.org + + + + + Teamviewer + + ruleset + + name + Teamviewer + rule + + from + ^http://((?:download|downloadeu\d|go|login|meeting|wa103|wa236|www)\.)?teamviewer\.com/ + to + https://$1teamviewer.com/ + + securecookie + + host + ^(?:.*\.)?teamviewer.com$ + name + .+ + + target + + + host + teamviewer.com + + + host + *.teamviewer.com + + + + + Tech Tools for Activism.org + + ruleset + + name + Tech Tools for Activism.org + rule + + from + ^http://(www\.)?techtoolsforactivism\.org/ + to + https://$1techtoolsforactivism.org/ + + target + + + host + techtoolsforactivism.org + + + host + www.techtoolsforactivism.org + + + + + Tech in Asia.com + + ruleset + + name + Tech in Asia.com + rule + + from + ^http://(www\.)?techinasia\.com/ + to + https://$1techinasia.com/ + + securecookie + + host + ^(?:www\.)?techinasia\.com$ + name + .+ + + target + + + host + techinasia.com + + + host + www.techinasia.com + + + + + TechHouse + + ruleset + + name + TechHouse + rule + + + from + ^http://techhouse\.org/ + to + https://techhouse.org/ + + + from + ^http://(www)\.techhouse\.org/ + to + https://$1.techhouse.org/ + + + securecookie + + host + ^(.+\.)?techhouse\.org$ + name + .* + + target + + + host + techhouse.org + + + host + www.techhouse.org + + + + + TechOnline.com (partial) + + ruleset + + name + TechOnline.com (partial) + rule + + from + ^http://media\.techonline\.com/ + to + https://dpzfphvq26nxh.cloudfront.net/ + + target + + host + media.techonline.com + + + + TechRepublic (partial) + + ruleset + + name + TechRepublic (partial) + rule + + + from + ^http://(secure\.|ssl\.)?techrepublic\.com/ + to + https://$1techrepublic.com/ + + + from + ^http://(?:(?:origin|www)\.techrepublic|i\d\.trstatic)\.com/(cs|image)s/ + to + https://ssl.techrepublic.com/s/$1s/ + + + securecookie + + host + ^s(?:ecure|sl)\.techrepublic\.com$ + name + .+ + + target + + + host + techrepublic.com + + + host + *.techrepublic.com + + + host + *.trstatic.com + + + + + TechTarget (partial) + + ruleset + + name + TechTarget (partial) + rule + + + from + ^http://(?:www\.)?techtarget\.com/ + to + https://www.techtarget.com/ + + + from + ^http://(media|techtargetsummit)\.techtarget\.com/ + to + https://$1.techtarget.com/ + + + securecookie + + host + ^(?:media|techtargetsummit|www)\.techtarget\.com$ + name + .+ + + target + + + host + techtarget.com + + + host + *.techtarget.com + + + + + TechVerse (partial) + + ruleset + + name + TechVerse (partial) + rule + + from + ^http://(?:www\.)?techverse\.com\.au/(chat/|images/|index\.php\?(?:.+&)?_a=(?:login|reg)|language/|skins/) + to + https://techverse.com.au/$1 + + target + + + host + techverse.com.au + + + host + www.techverse.com.au + + + + + TechWeb (partial) + + ruleset + + name + TechWeb (partial) + platform + mixedcontent + rule + + + from + ^http://store\.drdobbs\.com/ + to + https://store.drdobbs.com/ + + + from + ^http://(i|login|ng)\.techweb\.com/ + to + https://$1.techweb.com/ + + + from + ^http://(www\.)?gamasutra\.com/(blogs/edit/img/|css/|(?:comments/|content/blogs/)?\w+\.css|game_sites_superfooter_2012/|(?:db_area/)?images/) + to + https://$1gamasutra.com/$2 + + + from + ^http://img\.lightreading\.com/ + to + https://d2x7anl33w5mmo.cloudfront.net/ + + + from + ^http://payment\.lightreading\.com/ + to + https://payment.lightreading.com/ + + + from + ^https?://(?:www\.)?techwebonlineevents\.com/ + to + https://www.techwebonlineevents.com/ + + + from + ^http://twimgs\.com/ + to + https://twimgs.com/ + + + from + ^http://i\.ubm-us\.net/ + to + https://i.ubm-us.net/ + + + securecookie + + + host + ^store\.drdobbs\.com$ + name + .+ + + + host + ^ng\.techweb\.com$ + name + .+ + + + host + ^(.*\.)?techwebonlineevents\.com$ + name + .* + + + target + + + host + store.drdobbs.com + + + host + gamasutra.com + + + host + www.gamasutra.com + + + host + *.lightreading.com + + + host + i.techweb.com + + + host + techwebonlineevents.com + + + host + *.techwebonlineevents.com + + + host + twimgs.com + + + host + i.ubm-us.net + + + + + Techdirt + + ruleset + + name + Techdirt + rule + + from + ^http://((?:cdn|ii|rtb|www)\.)?techdirt\.com/ + to + https://$1techdirt.com/ + + securecookie + + host + ^(?:www)?\.techdirt\.com$ + name + .+ + + target + + + host + techdirt.com + + + host + *.techdirt.com + + + + + Techendo.com + + ruleset + + name + Techendo.com + rule + + + from + ^http://(?:www\.)?techendo\.com/ + to + https://www.techendo.com/ + + + from + ^http://(beta|store)\.techendo\.com/ + to + https://$1.techendo.com/ + + + securecookie + + host + ^\.techendo\.com$ + name + .+ + + target + + + host + techendo.com + + + host + *.techendo.com + + + + + Techidiots.net + + ruleset + + name + Techidiots.net + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?electronicinsanity\.com/ + to + https://www.electronicinsanity.com/ + + + from + ^http://(?:www\.)?techidiots\.net/ + to + https://www.techidiots.net/ + + + from + ^http://forum\.techidiots\.net/ + to + https://forum.techidiots.net/ + + + securecookie + + host + ^\.forum\.techidiots\.net$ + name + .* + + target + + + host + electronicinsanity.com + + + host + www.electronicinsanity.com + + + host + techidiots.net + + + host + *.techidiots.net + + + host + *.forum.techidiots.net + + + + + Techmeme.com + + ruleset + + name + Techmeme.com + rule + + from + ^http://(www\.)?techmeme\.com/ + to + https://$1techmeme.com/ + + target + + + host + techmeme.com + + + host + www.techmeme.com + + + + + Technical University Munich (partial) + + ruleset + + name + Technical University Munich (partial) + rule + + + from + ^http://www(\.lehren?|\.piwik)?\.tum\.de/ + to + https://www$1.tum.de/ + + + from + ^http://((?:ias\.|sec\.|www\.)?in|mediatum\.ub)\.tum\.de/ + to + https://$1.tum.de/ + + + from + ^http://ias\.cs\.tum\.edu/ + to + https://ias.cs.tum.edu/ + + + from + ^http://(ias\.informatik|www)\.tu-muenchen\.de/ + to + https://$1.tu-muenchen.de/ + + + from + ^http://isabelle\.in\.tum\.de/ + to + https://isabelle.in.tum.de/ + + + securecookie + + + host + ^(?:in|(?:adm9|ias|sec|www)\.in|mediatum\.ub|www(?:\.lehren?)?)?\.tum\.de$ + name + .+ + + + host + ^ias\.cs\.tum\.edu$ + name + .+ + + + host + ^(?:www|ias\.informatik)\.tu-muenchen\.de$ + name + .+ + + + target + + + host + *.tum.de + + + host + ias.cs.tum.edu + + + host + *.tu-muenchen.de + + + + + Technical University of Denmark (partial) + + ruleset + + name + Technical University of Denmark (partial) + platform + mixedcontent + rule + + from + ^http://(?:(?:www\.)?((?:(?:alumne|dtic|portalen|space)|backend\.alumnenet|auth|nemid|mail\.win|www)\.))?dtu\.dk/ + to + https://$1dtu.dk/ + + securecookie + + host + ^(backend\.alumnenet|auth|nemid|portalen|space|www)\.dtu\.dk$ + name + .* + + target + + + host + dtu.dk + + + host + alumne.dtu.dk + + + host + www.alumne.dtu.dk + + + host + backend.alumnenet.dtu.dk + + + host + auth.dtu.dk + + + host + dtic.dtu.dk + + + host + www.dtic.dtu.dk + + + host + nemid.dtu.dk + + + host + portalen.dtu.dk + + + host + www.portalen.dtu.dk + + + host + space.dtu.dk + + + host + www.space.dtu.dk + + + host + mail.win.dtu.dk + + + host + www.dtu.dk + + + + + Technical University of Lisbon + + ruleset + + name + Technical University of Lisbon + platform + mixedcontent + rule + + + from + ^http://(www\.)?(ist\.|rnl\.ist\.)?utl\.pt/ + to + https://www.$2utl.pt/ + + + from + ^http://ftp\.rnl\.ist\.utl\.pt/ + to + https://ftp.rnl.ist.utl.pt/ + + + target + + + host + utl.pt + + + host + ist.utl.pt + + + host + rnl.ist.utl.pt + + + host + ftp.rnl.ist.utl.pt + + + host + www.rnl.ist.utl.pt + + + host + www.ist.utl.pt + + + host + www.utl.pt + + + + + Technical.ly (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?technical\.ly/(?:$|\?|\d{4}/\d\d/\d\d/|about|advertising|category|contact-us|directory|ethics|jobs|organization|post-a-job) + + name + Technical.ly (partial) + rule + + from + ^http://(www\.)?technical\.ly/ + to + https://$1technical.ly/ + + target + + + host + technical.ly + + + host + www.technical.ly + + + + + Techniker Krankenkasse + + ruleset + + name + Techniker Krankenkasse + rule + + from + ^http://(?:www\.)?tk\.de/ + to + https://www.tk.de/ + + target + + + host + www.tk.de + + + host + tk.de + + + + + Technische Universität Berlin (partial) + + ruleset + + name + Technische Universität Berlin (partial) + rule + + + from + ^http://(mailbox\.alumni|(?:www\.)?chemie|exchange|mail|mailbox|(?:www\.)?mig|(?:(?:aagw|horde-test|wlan|www)\.)?tubit|webmail|www)\.tu-berlin\.de/ + to + https://$1.tu-berlin.de/ + + + from + ^http://www\.(ab|accounting|agrs|aio|ak|angewbiochem|antennen-emv|arbeits-umweltschutz|alumni|architektur|auslandsamt|auslandsamt|avstudiofak1|avt|aw|ba|bahnsysteme|bau|bauinformatik|bauprozessmodelle|baustoffe|becap|behindertenberatung|betreuung-int-stud|bioanorganik|biodiv|bioenergetik|biophys-chemie|biopsych|biotech|boden|bodenkunde|brauwesen|campusradio|career|china|cit|clw|cognition|cv|daf|dbta|dima|eecs|ek-massivbau|ek-stahlbau|ek-verbundstrukturen|elv|energie|energietechnik|energiewirtschaft|energy|ensys|enzymtechnologie|evur|explorationsgeologie|facilities|fak\d|finance|finanzen|finanzierung|flp|fsd|fsp-wib|geo|geolab|geophysik|geschichte|geschundkunstgesch|ginut|gkwi|glas|gsw|heclinet|hft|histurbanistik|hlb|ht|humanfactors|hydrogeologie|ic|iea|ifkp|iit|ikm|ils|immatrikulation|impetus|ingenieurgeologie|int-admission|ioap|ipa|isti|itp|iz-wib|kbs|kfz|ki|kke|km|kpl|kup|kw|la|lehrerbildung|li|literaturwissenschaft|logistik|marketing|marsys|math|medtech|mineralogie|ml|move-it|mrt|mtv|musikwissenschaft|mwt|nachwuchsbuero|naturwissenschaften|planen-bauen-umwelt|wm)\.tu-berlin\.de/ + to + https://www.$1.tu-berlin.de/ + + + from + ^http://autodiscover\.tu-berlin\.de/ + to + https://exchange.tu-berlin.de/ + + + securecookie + + + host + ^\.tu-berlin\.de$ + name + ^fe_typo_user$ + + + host + ^(?:www\.alumni|exchange|mail|\.horde-test\.tubit|\.webmail)\.tu-berlin\.de$ + name + .+ + + + target + + host + *.tu-berlin.de + + + + Technocrat.net + + ruleset + + name + Technocrat.net + rule + + from + ^http://(www\.)?technocrat\.net/ + to + https://$1technocrat.net/ + + securecookie + + host + ^(?:w*\.)?technocrat\.net$ + name + .+ + + target + + + host + technocrat.net + + + host + *.technocrat.net + + + + + TechnologyReview (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?technologyreview\.com/(?:$|(?:featuredstory|fromtheeditor|news|qa|view)/\d+/\w|magazine/$|tr\d\d/(?:$|\?|\d{4}/|profile\.aspx)|video/$) + + name + TechnologyReview (partial) + rule + + + from + ^http://(?:www\.)?technologyreview\.(com|in)/ + to + https://www.technologyreview.$1/ + + + from + ^http://s?metrics\.technologyreview\.com/ + to + https://smetrics.technologyreview.com/ + + + from + ^http://(subscribe|www2)\.technologyreview\.com/ + to + https://$1.technologyreview.com/ + + + target + + + host + technologyreview.com + + + host + *.technologyreview.com + + + host + technologyreview.in + + + host + www.technologyreview.in + + + + + Technomedia + + ruleset + + name + Technomedia + rule + + from + ^https?://(?:www\.)?technomedia\.com/ + to + https://www.technomedia.com/ + + securecookie + + host + ^www\.technomedia\.com$ + name + .+ + + target + + + host + technomedia.com + + + host + www.technomedia.com + + + + + Technorati Media (partial) + + ruleset + + name + Technorati Media (partial) + rule + + from + ^http://ad\.technoratimedia\.com/ + to + https://ad.rmxads.com/ + + target + + host + *.technoratimedia.com + + + + Techopedia.com + + ruleset + + name + Techopedia.com + rule + + + from + ^http://(?:www\.)?techopedia\.com/ + to + https://www.techopedia.com/ + + + from + ^http://cms\.techopedia\.com/ + to + https://cms.techopedia.com/ + + + securecookie + + host + ^(?:cms|www)?\.techopedia\.com$ + name + .+ + + target + + + host + techopedia.com + + + host + *.techopedia.com + + + + + Techpowerup.com + + ruleset + + name + Techpowerup.com + rule + + from + ^http://(www\.)?techpowerup\.com/ + to + https://www.techpowerup.com/ + + target + + + host + techpowerup.com + + + host + www.techpowerup.com + + + + + Techslinger.com + + ruleset + + name + Techslinger.com + rule + + from + ^http://(www\.)?techslinger\.com/ + to + https://$1techslinger.com/ + + securecookie + + host + ^www\.techslinger\.com$ + name + .+ + + target + + + host + techslinger.com + + + host + www.techslinger.com + + + + + Techsupportalert + + ruleset + + name + Techsupportalert + platform + mixedcontent + rule + + from + ^http://(?:www\.)?techsupportalert\.com/ + to + https://www.techsupportalert.com/ + + target + + + host + www.techsupportalert.com + + + host + techsupportalert.com + + + + + Teddy Hyde.com + + ruleset + + name + Teddy Hyde.com + rule + + from + ^http://(?:www\.)?teddyhyde\.com/ + to + https://teddyhyde.com/ + + target + + + host + teddyhyde.com + + + host + www.teddyhyde.com + + + + + TeenDriverSource.org + + ruleset + + name + TeenDriverSource.org + rule + + from + ^http://(www\.)?teendriversource\.org/ + to + https://$1teendriversource.org/ + + securecookie + + host + ^(?:www\.)?teendriversource\.org$ + name + .+ + + target + + + host + teendriversource.org + + + host + www.teendriversource.org + + + + + Tehconnection + + ruleset + + name + Tehconnection + rule + + from + ^http://(?:(static\.)|www\.)?tehconnection\.eu/ + to + https://$1tehconnection.eu/ + + securecookie + + host + ^tehconnection\.eu$ + name + .* + + target + + + host + tehconnection.eu + + + host + *.tehconnection.eu + + + + + Tek Syndicate.com + + ruleset + + name + Tek Syndicate.com + rule + + from + ^http://(www\.)?teksyndicate\.com/ + to + https://$1teksyndicate.com/ + + target + + + host + teksyndicate.com + + + host + www.teksyndicate.com + + + + + Tek.no (partial) + + ruleset + + name + Tek.no (partial) + rule + + + from + ^http://(static\.|www\.)?tek\.no/ + to + https://$1tek.no/ + + + from + ^http://ad\.tek\.no/ + to + https://adserver.adtech.de/ + + + securecookie + + host + ^\.tek\.no$ + name + ^CfP$ + + target + + + host + tek.no + + + host + *.tek.no + + + + + TekGoblin + + ruleset + + name + TekGoblin + rule + + from + ^https?://(?:(?:\w+\.)?tekgoblin|cdn(?:[23])?\.tekgoblinmedia)\.com/ + to + https://d369bx7nq13k6v.cloudfront.net/ + + target + + + host + tekgoblin.com + + + host + *.tekgoblin.com + + + host + tekgoblinmedia.com + + + host + *.tekgoblinmedia.com + + + + + TelMasters + + ruleset + + name + TelMasters + rule + + from + ^http://(www\.)?telmasters\.com/ + to + https://$1telmasters.com/ + + securecookie + + host + ^(www\.)?telmasters\.com$ + name + .* + + target + + + host + telmasters.com + + + host + www.telmasters.com + + + + + Tele2.se + + ruleset + + name + Tele2.se + rule + + + from + ^http://www\.tele2\.se/ + to + https://www.tele2.se/ + + + from + ^http://tele2\.se/ + to + https://www.tele2.se/ + + + target + + + host + www.tele2.se + + + host + tele2.se + + + + + Telebrands + + ruleset + + name + Telebrands + rule + + from + ^http://(www\.)?telebrands\.net/ + to + https://$1telebrands.net/ + + securecookie + + host + ^(?:www\.)?telebrands\.net$ + name + .+ + + target + + + host + telebrands.net + + + host + www.telebrands.net + + + + + Telefónica (partial) + + ruleset + + name + Telefónica (partial) + platform + mixedcontent + rule + + + from + ^http://bethere\.co\.uk/ + to + https://www.bethere.co.uk/ + + + from + ^http://(avatar|help|www)\.bethere\.co\.uk/ + to + https://$1.bethere.co.uk/ + + + from + ^http://(?:www\.)?(chcidoo2|telefonica)\.cz/ + to + https://www.$1.cz/ + + + from + ^http://windows\.mouselike\.org/ + to + https://windows.mouselike.org/ + + + from + ^http://(?:(?:www\.)?cz\.o2\.com|o2\.cz)/ + to + https://www.o2.cz/ + + + from + ^http://(moje|www)\.o2\.cz/ + to + https://$1.o2.cz/ + + + from + ^http://static(2)?\.o2\.de/ + to + https://static$1.o2.de/ + + + from + ^http://(i|mail)\.o2active\.cz/ + to + https://$1.o2active.cz/ + + + from + ^http://(?:www\.)?o2(?:(extra|shop)|(?:-)?(tv))\.cz/ + to + https://www.o2$12.cz/ + + + from + ^http://(www\.)?odmenazadobiti\.cz/ + to + https://$1odmenazadobiti.cz/ + + + from + ^http://(?:www\.)?o2\.co\.uk/favicon\.ico + to + https://www.o2.co.uk/favicon.ico + + + from + ^http://(www\.)?o2\.sk/ + to + https://www.o2.sk/ + + + securecookie + + + host + ^(.*\.)?bethere\.co\.uk$ + name + .* + + + host + ^www\.(chcidoo2|telefonica)\.cz$ + name + .* + + + host + ^(moje|sso|\.?www)?\.o2\.cz$ + name + .* + + + host + ^mail\.o2active\.cz$ + name + .* + + + host + ^www\.o2(extra|shop|tv)\.cz$ + name + .* + + + host + ^(www\.)?odmenazabobiti\.cz$ + name + .* + + + target + + + host + chcidoo2.cz + + + host + www.chcidoo2.cz + + + host + cz.o2.com + + + host + www.cz.o2.com + + + host + o2.cz + + + host + *.o2.cz + + + host + *.www.o2.cz + + + host + *.o2.de + + + host + i.o2active.cz + + + host + mail.o2active.cz + + + host + o2extra.cz + + + host + www.o2extra.cz + + + host + o2shop.cz + + + host + www.o2shop.cz + + + host + o2tv.cz + + + host + www.o2tv.cz + + + host + o2-tv.cz + + + host + www.o2-tv.cz + + + host + odmenazadobiti.cz + + + host + www.odmenazadobiti.cz + + + host + telefonica.cz + + + host + www.telefonica.cz + + + host + bethere.co.uk + + + host + *.bethere.co.uk + + + host + windows.mouselike.org + + + host + o2.co.uk + + + host + www.o2.co.uk + + + host + o2.sk + + + host + www.o2.sk + + + + + Telegr.am + + ruleset + + name + Telegr.am + rule + + from + ^http://((?:blog|howto|www)\.)?telegr\.am/ + to + https://$1telegr.am/ + + securecookie + + host + ^telegr\.am$ + name + .+ + + target + + + host + telegr.am + + + host + *.telegr.am + + + + + Telegram.com (partial) + + ruleset + + name + Telegram.com (partial) + rule + + + from + ^https?://(?:www\.)?telegram\.com/graphics/(?:header/(frontpageHeader978x136\.jpg)|nav/(arrv_anim_1\.gif)|(tg_background_tile\.gif)) + to + https://home.telegram.com/images/$1$2$3 + + + from + ^http://home\.telegram\.com/ + to + https://home.telegram.com/ + + + securecookie + + host + ^home\.telegram\.com$ + name + .+ + + target + + + host + telegram.com + + + host + *.telegram.com + + + + + Telegram.org + + ruleset + + name + Telegram.org + rule + + + from + ^http://(www\.)?telegram\.org/ + to + https://www.telegram.org/ + + + from + ^http://web\.telegram\.org/ + to + https://web.telegram.org/ + + + from + ^http://core\.telegram\.org/ + to + https://core.telegram.org/ + + + target + + + host + telegram.org + + + host + www.telegram.org + + + host + web.telegram.org + + + host + core.telegram.org + + + + + Telegraph Media Group (partial) + + ruleset + + exclusion + + + pattern + ^http://blogs(?:\.uat)?\.telegraph\.co\.uk/(?!\w+/files/|wp-content/) + + + pattern + ^http://fantasycricket\.telegraph\.co\.uk/(?!(?:\w+/)?(?:images|scripts|select-team|xcss)(?:$|[?/])|favicon\.ico) + + + pattern + ^http://fantasy(?:football|games)\.telegraph\.co\.uk/(?!(?:\w+/)?(?:images|scripts|xcss)/|favicon\.ico) + + + name + Telegraph Media Group (partial) + rule + + + from + ^http://(announcements|auth|(?:blogs|fbapp)(?:\.uat)?|(?:i\.)?fantasy(?:cricket|football|games|racing)|secure\.i\.uat1|jobs|recruiters\.jobs|secure\.s|shop|webtrends)\.telegraph\.co\.uk/ + to + https://$1.telegraph.co.uk/ + + + from + ^http://(?:secure\.)?i\.telegraph\.co\.uk/ + to + https://secure.i.telegraph.co.uk/ + + + from + ^http://s\.telegraph\.co\.uk/ + to + https://a248.e.akamai.net/f/1362/5848/6m/s.telegraph.co.uk/ + + + securecookie + + + host + ^\.(?:\w+\.)?telegraph\.co\.uk$ + name + ^(?:tmg_web_trends|__utm\w)$ + + + host + ^(?:announcements|jobs|recruiters\.jobs|shop|webtrends)\.telegraph\.co\.uk$ + name + .+ + + + target + + + host + telegraph.co.uk + + + host + *.telegraph.co.uk + + + + + Telekom.sk + + ruleset + + name + Telekom.sk + rule + + + from + ^http://(www\.)?(telekom|telecom|t-com)\.sk/ + to + https://www.telekom.sk/ + + + from + ^http://(mail\.|zona\.)(telekom|telecom|t-com)\.sk/ + to + https://$1telekom.sk/ + + + target + + + host + telekom.sk + + + host + www.telekom.sk + + + host + telecom.sk + + + host + www.telecom.sk + + + host + t-com.sk + + + host + www.t-com.sk + + + host + zona.telekom.sk + + + host + zona.telecom.sk + + + host + zona.t-com.sk + + + host + mail.telekom.sk + + + host + mail.t-com.sk + + + + + Telemetry (partial) + + ruleset + + name + Telemetry (partial) + platform + mixedcontent + rule + + + from + ^https?://telemetryverification\.net/ + to + https://www.telemetryverification.net/ + + + from + ^http://([\w\-]+)\.telemetryverification\.net/ + to + https://$1.telemetryverification.net/ + + + target + + + host + telemetryverification.net + + + host + *.telemetryverification.net + + + + + Telenor.se (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?telenor\.se/(?!assets/|favicon\.ico|images/|js/|privat/stateserver/|published_images/) + + name + Telenor.se (partial) + rule + + + from + ^http://www\.euromail\.se/ + to + https://www.euromail.se/ + + + from + ^http://(minasidor\.|www\.)?telenor\.se/ + to + https://$1telenor.se/ + + + securecookie + + host + ^minasidor\.telenor\.se$ + name + .+ + + target + + + host + www.euromail.se + + + host + telenor.se + + + host + www.telenor.se + + + + + Telerik-web-assets.com + + ruleset + + name + Telerik-web-assets.com + rule + + from + ^http://(?:www\.)?telerik-web-assets\.com/ + to + https://www.telerik-web-assets.com/ + + target + + + host + telerik-web-assets.com + + + host + www.telerik-web-assets.com + + + + + Telerik.com (partial) + + ruleset + + exclusion + + + pattern + ^http://blogs\.telerik\.com/+(?!Telerik\.Web\.UI\.WebResource\.axd|images/|prettyPhoto/css/) + + + pattern + ^http://www\.telerik\.com/+(?!Telerik\.Web\.UI\.WebResource\.axd|favicon\.ico|login(?:$|[?/])|sfimages/) + + + name + Telerik.com (partial) + rule + + from + ^http://((?:blogs|identity|licenseapi|platform|tfis|www)\.)?telerik\.com/ + to + https://$1telerik.com/ + + securecookie + + host + ^(?:platform|tfis)\.telerik\.com$ + name + .+ + + target + + + host + telerik.com + + + host + *.telerik.com + + + + + Telethon.it (partial) + + ruleset + + name + Telethon.it (partial) + rule + + from + ^http://(www\.)?telethon\.it/ + to + https://$1telethon.it/ + + securecookie + + host + ^\.telethon\.it$ + name + .+ + + target + + + host + telethon.it + + + host + *.telethon.it + + + + + Telework.gov.au + + ruleset + + name + Telework.gov.au + rule + + from + ^http://(?:www\.)?telework\.gov\.au/ + to + https://www.telework.gov.au/ + + target + + + host + telework.gov.au + + + host + *.telework.gov.au + + + + + Telex + + ruleset + + name + Telex + rule + + from + ^http://(notblocked\.|www\.)?telex\.cc/ + to + https://$1telex.cc/ + + target + + + host + telex.cc + + + host + *.telex.cc + + + + + Telfort (partial) + + ruleset + + exclusion + + pattern + ^http://internet\.telfort\.nl/(?!5/css/|5/gfx/) + + name + Telfort (partial) + rule + + + from + ^http://((?:forum|internet|orderstatus|shop|webmail|www)\.)?telfort\.nl/ + to + https://$1telfort.nl/ + + + from + ^http://(?:www\.)?tiscali\.nl/ + to + https://www.telfort.nl/ + + + securecookie + + host + ^(?!internet\.).*\.telfort\.nl$ + name + .+ + + target + + + host + telfort.nl + + + host + *.telfort.nl + + + host + tiscali.nl + + + host + www.tiscali.nl + + + + + Telia.se + + ruleset + + name + Telia.se + platform + mixedcontent + rule + + + from + ^http://telia\.se/ + to + https://www.telia.se/ + + + from + ^http://www\.telia\.se/ + to + https://www.telia.se/ + + + target + + + host + telia.se + + + host + *.telia.se + + + + + Telnic + + ruleset + + name + Telnic + rule + + + from + ^http://a0\.webproxy\.nic\.tel/ + to + https://a0.webproxy.nic.tel/ + + + from + ^https?://(?:www\.)?(?:nic\.tel|telnic\.org)/ + to + https://www.telnic.org/ + + + target + + + host + nic.tel + + + host + a0.webproxy.nic.tel + + + host + www.nic.tel + + + host + telnic.org + + + host + www.telnic.org + + + + + Telstra Corporation (partial) + + ruleset + + name + Telstra Corporation (partial) + rule + + + from + ^http://medrx\.sensis\.com\.au/ + to + https://medrx.sensis.com.au/ + + + from + ^http://sockassist\.com\.au/ + to + https://sockassist.com.au/ + + + target + + + host + medrx.sensis.com.au + + + host + sockassist.com.au + + + + + Temando.com + + ruleset + + name + Temando.com + rule + + from + ^http://(dashboard\.|www\.)?temando\.com/ + to + https://$1temando.com/ + + securecookie + + host + ^dashboard\.temando\.com$ + name + .+ + + target + + + host + temando.com + + + host + *.temando.com + + + + + Template Monster.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?templatemonster\.com/(?!cart\.php|favicon\.ico|images/|js/|themes/) + + name + Template Monster.com (partial) + rule + + + from + ^http://(?:secure\.|www\.)?templatemonster\.com/ + to + https://secure.templatemonster.com/ + + + from + ^http://scr\.templatemonster\.com/ + to + https://scrtm-templatemonster.netdna-ssl.com/ + + + from + ^http://wac\.templatemonster\.com/ + to + https://wac.templatemonster.com/ + + + from + ^http://i\.tmimgcdn\.com/ + to + https://secure.templatemonster.com/images/ + + + from + ^http://j\.tmimgcdn\.com/ + to + https://secure.templatemonster.com/js/ + + + from + ^http://t\.tmimgcdn\.com/ + to + https://themestm-templatemonster.netdna-ssl.com/ + + + securecookie + + + host + ^\.templatemonster\.com$ + name + (?:affT?|^__utm\w)$ + + + host + ^\.?(?:secure|wac)\.templatemonster\.com$ + name + .+ + + + target + + + host + templatemonster.com + + + host + *.templatemonster.com + + + host + *.tmimgcdn.com + + + + + Tenable.com (partial) + + ruleset + + name + Tenable.com (partial) + rule + + from + ^http://s(tore|upport)\.tenable\.com/ + to + https://s$1.tenable.com/ + + securecookie + + host + ^(?:store|\.support)\.tenable\.com$ + name + .+ + + target + + host + *.tenable.com + + + + Tenon.com + + ruleset + + name + Tenon.com + rule + + from + ^http://(?:www\.)?tenon\.com/ + to + https://www.tenon.com/ + + target + + + host + tenon.com + + + host + www.tenon.com + + + + + Tent.io + + ruleset + + name + Tent.io + rule + + from + ^http://(www\.)?tent\.io/ + to + https://$1tent.io/ + + target + + + host + tent.io + + + host + www.tent.io + + + + + Tent.is + + ruleset + + name + Tent.is + rule + + from + ^http://([\w-]+\.)?tent\.is/ + to + https://$1tent.is/ + + target + + + host + tent.is + + + host + *.tent.is + + + + + Tequipment.NET (partial) + + ruleset + + name + Tequipment.NET (partial) + rule + + from + ^http://store\.tequipment\.net/ + to + https://store.tequipment.net/ + + securecookie + + host + ^store\.tequipment\.net$ + name + .+ + + target + + host + store.tequipment.net + + + + Terasic.com.tw (partial) + + ruleset + + exclusion + + pattern + ^http://terasic\.com\.tw/+[^?] + + name + Terasic.com.tw (partial) + rule + + from + ^http://(?:www\.)?terasic\.com\.tw/ + to + https://www.terasic.com.tw/ + + securecookie + + host + ^www\.terasic\.com\.tw$ + name + .+ + + target + + + host + terasic.com.tw + + + host + www.terasic.com.tw + + + + + Terena.org (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?terena\.org/(?!css/|events(?:$|\?|/)|favicon\.ico|gfx/|js/) + + + pattern + ^http://tnc20(?:0\d|10)\.terena\.org/(?!css/|gfx/|js/) + + + name + Terena.org (partial) + rule + + + from + ^http://((?:confluence|login|my|omega|tec|tnc20(?:0[789]|1\d)|wikis|www)\.)?terena\.org/ + to + https://$1terena.org/ + + + from + ^http://tnc2006\.terena\.org/ + to + https://www.terena.org/events/tnc2006/ + + + securecookie + + host + ^(?:confluence|login|tnc201[1-4]|wikis)\.terena\.org$ + name + .+ + + target + + + host + terena.org + + + host + *.terena.org + + + + + Terms of Service; Didn't Read + + ruleset + + name + Terms of Service; Didn't Read + rule + + from + ^http://(?:www\.)?tosdr\.org/ + to + https://tosdr.org/ + + target + + + host + tosdr.org + + + host + www.tosdr.org + + + + + Terra Galleria + + ruleset + + name + Terra Galleria + rule + + from + ^http://(www\.)?terragalleria\.com/ + to + https://$1terragalleria.com/ + + securecookie + + host + ^(.*\.)?terragalleria\.com$ + name + .* + + target + + + host + terragalleria.com + + + host + *.terragalleria.com + + + host + *.www.terragalleria.com + + + + + TerraPass (partial) + + ruleset + + exclusion + + pattern + ^http://store.terrapass.com/(?![iI]mages/|Shared/|[sS]tore/(?:buttons|i|Templates)/) + + name + TerraPass (partial) + rule + + from + ^http://(store\.|www\.)?terrapass\.com/ + to + https://$1terrapass.com/ + + target + + + host + terrapass.com + + + host + *.terrapass.com + + + + + Terres Oubliees.com + + ruleset + + name + Terres Oubliees.com + rule + + + from + ^http://(?:www\.)?terresoubliees\.com/ + to + https://www.terresoubliees.com/ + + + from + ^http://erp\.terresoubliees\.com/ + to + https://erp.terresoubliees.com/ + + + securecookie + + host + ^(?:w*\.)?terresoubliees\.com$ + name + .+ + + target + + + host + terresoubliees.com + + + host + *.terresoubliees.com + + + + + Terveysportti.fi + + ruleset + + name + Terveysportti.fi + rule + + + from + ^http://(www\.)?terveysportti\.fi/ + to + https://www.terveysportti.fi/ + + + from + ^https?://(www\.)?terveysportti\.org/ + to + https://www.terveysportti.fi/ + + + from + ^https?://(www\.)?terveysportti\.net/ + to + https://www.terveysportti.fi/ + + + target + + + host + www.terveysportti.fi + + + host + terveysportti.fi + + + host + www.terveysportti.net + + + host + terveysportti.net + + + host + www.terveysportti.org + + + host + terveysportti.org + + + + + Tesco (partial) + + ruleset + + name + Tesco (partial) + rule + + + from + ^http://(?:www\.)?tesco\.com/(?=$|exchange|(?:books|c/css|clubcard/clubcard|css|directuiassets|grocery/images|homepages/default|offer|store[lL]ocator|termsandconditions|whatsinstore|Wine/MarketingContent|wine/UIAssets)/) + to + https://secure.tesco.com/ + + + from + ^http://(direct|phone-shop|secure)\.tesco\.com/ + to + https://$1.tesco.com/ + + + from + ^http://img\.tesco\.com/ + to + https://secure.tesco.com/ + + + from + ^http://\w+\.tescoassets\.com/ + to + https://secure.tesco.com/ + + + securecookie + + host + ^secure\.tesco\.com$ + name + .+ + + target + + + host + tesco.com + + + host + *.tesco.com + + + host + *.tescoassets.com + + + + + Tesco Bank.com + + ruleset + + name + Tesco Bank.com + rule + + + from + ^http://(?:www\.)?tescofinance\.com/+(?=\?.*)?$ + to + https://www.tescobank.com/personal/finance/home.html + + + from + ^http://(?:www\.)?tesco(?:bank|finance)\.com/ + to + https://www.tescobank.com/ + + + securecookie + + host + ^www\.tescobank\.com$ + name + .+ + + target + + + host + tescobank.com + + + host + www.tescobank.com + + + host + tescofinance.com + + + host + www.tescofinance.com + + + + + Tesco Compare.com + + ruleset + + name + Tesco Compare.com + rule + + from + ^http://(?:www\.)?tescocompare\.com/ + to + https://www.tescocompare.com/ + + securecookie + + host + ^www\.tescocompare\.com$ + name + .+ + + target + + + host + tescocompare.com + + + host + www.tescocompare.com + + + + + Tesco Diets.com + + ruleset + + name + Tesco Diets.com + rule + + from + ^http://(www\.)?tescodiets\.com/ + to + https://$1tescodiets.com/ + + securecookie + + host + ^www\.tescodiets\.com$ + name + .+ + + target + + + host + tescodiets.com + + + host + www.tescodiets.com + + + + + Tesco Photo.com + + ruleset + + name + Tesco Photo.com + rule + + from + ^http://(?:www\.)?tescophoto\.com/ + to + https://www.tescophoto.com/ + + securecookie + + host + ^www\.tescophoto\.com$ + name + .+ + + target + + + host + tescophoto.com + + + host + www.tescophoto.com + + + + + Tesco Share and Earn.com + + ruleset + + name + Tesco Share and Earn.com + rule + + from + ^http://(www\.)?tescoshareandearn\.com/ + to + https://$1tescoshareandearn.com/ + + securecookie + + host + ^(?:w*\.)?tescoshareandearn\.com$ + name + .+ + + target + + + host + tescoshareandearn.com + + + host + *.tescoshareandearn.com + + + + + Tesco.com (false MCB) + + ruleset + + name + Tesco.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?tesco\.com/groceries/ + to + https://secure.tesco.com/groceries/ + + target + + + host + tesco.com + + + host + www.tesco.com + + + + + Tesla Motors (partial) + + ruleset + + name + Tesla Motors (partial) + rule + + from + ^http://(www\.)?teslamotors\.com/((?:mytesla|order|user)(?:$|\?|/)|sites/|tesla_theme/) + to + https://$1teslamotors.com/$2 + + target + + + host + teslamotors.com + + + host + www.teslamotors.com + + + + + Test Equipment Depot + + ruleset + + name + Test Equipment Depot + rule + + from + ^http://(www\.)?testequipmentdepot\.com/ + to + https://$1testequipmentdepot.com/ + + securecookie + + host + ^\.www\.testequipmentdepot\.com$ + name + .+ + + target + + + host + testequipmentdepot.com + + + host + www.testequipmentdepot.com + + + host + *.www.testequipmentdepot.com + + + + + Test-IPv6.cz (false MCB) + + ruleset + + name + Test-IPv6.cz (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?test-ipv6\.cz/(?!\w+\.css|\w+\.js|images/|ipv6widget/|site/) + to + https://$1test-ipv6.cz/ + + securecookie + + host + ^(?:www\.)?test-ipv6\.cz$ + name + .+ + + target + + + host + test-ipv6.cz + + + host + www.test-ipv6.cz + + + + + Test-IPv6.cz (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?test-ipv6\.cz/(?!\w+\.css|\w+\.js|images/|ipv6widget/|site/) + + name + Test-IPv6.cz (partial) + rule + + from + ^http://((?:ds|ipv[46]|www)\.)?test-ipv6\.cz/ + to + https://$1test-ipv6.cz/ + + securecookie + + host + ^(?!www\.).+\.test-ipv6\.cz$ + name + .+ + + target + + + host + test-ipv6.cz + + + host + *.test-ipv6.cz + + + + + Tetu + + ruleset + + name + Tetu + rule + + from + ^http://(shopping\.|www\.)?tetu\.com/ + to + https://$1tetu.com/ + + securecookie + + host + ^(?:.+\.)?tetu\.com$ + name + .+ + + target + + + host + tetu.com + + + host + *.tetu.com + + + host + *.shopping.tetu.com + + + + + Texaco.com + + ruleset + + name + Texaco.com + rule + + + from + ^http://texaco\.com/.* + to + https://www.texaco.com/ + + + from + ^http://www\.texaco\.com/ + to + https://www.texaco.com/ + + + securecookie + + host + ^www\.texaco\.com$ + name + .+ + + target + + + host + texaco.com + + + host + www.texaco.com + + + + + Texas A&M University (partial) + + ruleset + + exclusion + + + pattern + ^http://mediamatrix\.tamu\.edu/(?!images/|include/|style\.css) + + + pattern + ^http://sc\.tamu\.edu/(?!Images/|inclusions/) + + + pattern + ^http://studentaffairs\.tamu\.edu/(?!misc/|modules/|sites/) + + + pattern + ^http://studentlifestudies\.tamu\.edu/(?!misc/|modules/|sites/) + + + pattern + ^http://student-rules\.tamu\.edu/(?!misc/|modules/|sites/) + + + pattern + ^http://uart\.tamu\.edu/(?!misc/|modules/|sites/|user(?:$|\?|/)) + + + name + Texas A&M University (partial) + rule + + + from + ^http://((?:aggie(?:honor|mail)|ahso|allucalendar|cas|(?:www\.)?cis|codemaroon|dmc-assets|doit|ecampusprod|elearningtools|gateway|(?:www\.)?giving|howdy|idp|hdc|isaac|itaccessibility(?:-new)?|itshelp|lms|mediamatrix|myaggieloans|neo|oalinfo|fc-web\.operations|sc|services|software|sso|student(?:activities|affairs|lifestudies|-rules)|apps[46]\.system|training|my\.tti|ttipassword|uart|voal|vpfnweb[23]|wikis|www)\.)?tamu\.edu/ + to + https://$1tamu.edu/ + + + from + ^http://(?:cllacdn|liberalarts)\.tamu\.edu(?:443)?/ + to + https://liberalarts.tamu.edu/ + + + from + ^http://itsdocs\.tamu\.edu/(?:.*) + to + https://wikis.tamu.edu/display/itsdocs/ITS+Docs+-+Home + + + from + ^http://sofc\.tamu\.edu/[^\?]*(\?.*)? + to + https://studentactivities.tamu.edu/sofc$1 + + + from + ^http://(?:www\.)?t(ransport|ti)\.tamu\.edu/ + to + https://t$1.tamu.edu/ + + + securecookie + + host + ^(?:aggiemail|ahso|allucalendar|cas|www\.cis|\.doit|ecampusprod|elearningtools|(?:www\.)?giving|howdy|idp|isaac|itshelp|lms|oalinfo|services|software|studentactivities|apps[46]\.system|transport|my\.tti|ttipassword|vpfnweb[23]|wikis)\.tamu\.edu$ + name + .+ + + target + + + host + tamu.edu + + + host + *.tamu.edu + + + + + Texas Association of Schoolboards + + ruleset + + name + Texas Association of Schoolboards + rule + + + from + ^http://(?:www\.)?tasb\.org/ + to + https://www.tasb.org/ + + + from + ^http://store\.tasb\.org/ + to + https://store-84a5f.mybigcommerce.com/ + + + securecookie + + host + ^(.*\.)?tasb\.org$ + name + .* + + target + + + host + tasb.org + + + host + *.tasb.org + + + + + Texas Center for Community Journalism + + ruleset + + name + Texas Center for Community Journalism + rule + + from + ^https?://(?:www\.)?community-journalism\.net/ + to + https://community-journalism.net/ + + securecookie + + host + ^\.?community-journalism\.net$ + name + .+ + + target + + + host + community-journalism.net + + + host + *.community-journalism.net + + + + + Texas Department of State Health Services + + ruleset + + name + Texas Department of State Health Services + rule + + from + ^https?://(?:www\.)?dshs\.state\.tx\.us/ + to + https://www.dshs.state.tx.us/ + + securecookie + + host + ^www\.dshs\.state\.tx\.us$ + name + .+ + + target + + + host + dshs.state.tx.us + + + host + www.dshs.state.tx.us + + + + + Texas Instruments (partial) + + ruleset + + exclusion + + + pattern + ^http://e2e\.ti\.com/(?!.+/css/|cfs-file\.ashx|favicon\.ico|resized-image\.ashx|[tT]hemes/) + + + pattern + ^http://processors\.wiki\.ti\.com/+(?!extensions/|images/|load\.php|skins/) + + + name + Texas Instruments (partial) + rule + + + from + ^http://(?:www\.)?national\.com/.* + to + https://www.ti.com/ + + + from + ^http://(?:www\.)?ti\.com/ + to + https://www.ti.com/ + + + from + ^http://(commerce|e2e|estore|fedid\.ext|focus|my|myportal|processors\.wiki)\.ti\.com/ + to + https://$1.ti.com/ + + + from + ^http://e2e-uat\.ti\.com/ + to + https://e2e.ti.com/ + + + from + ^http://www-k\.ext\.ti\.com/sc/technical-support/pic/americas\.htm(?:\?.*)?$ + to + https://www.ti.com/ww/en/csc/support-Americas.html + + + from + ^http://www-k\.ext\.ti\.com/sc/technical-support/pic/asia\.htm(?:\?.*)?$ + to + https://www.ti.com/ww/en/pic/PIC-Asia.html + + + from + ^http://www-k\.ext\.ti\.com/sc/technical-support/pic/japan\.htm(?:\?.*)?$ + to + https://www.ti.com/ww/en/pic/PIC-Japan.html + + + from + ^http://reviews\.ti\.com/(?:\?.*)?$ + to + https://focus.ti.com/ + + + from + ^http://videos\.ti\.com/[^\?]*(\?.*)? + to + https://focus.ti.com/general/docs/video/Portal.tsp$1 + + + securecookie + + host + ^(?!e2e\.).+\.ti\.com$ + name + .+ + + target + + + host + national.com + + + host + www.national.com + + + host + ti.com + + + host + *.ti.com + + + + + Texas State Library and Archives Commission + + ruleset + + name + Texas State Library and Archives Commission + rule + + from + ^https?://(?:www\.)?tsl\.state\.tx\.us/ + to + https://www.tsl.state.tx.us/ + + securecookie + + host + ^\.tsl\.state\.tx\.us$ + name + .+ + + target + + + host + tsl.state.tx.us + + + host + *.tsl.state.tx.us + + + + + Texas Tribune.org + + ruleset + + name + Texas Tribune.org + rule + + + from + ^http://(?:www\.)?texastribune\.org/ + to + https://www.texastribune.org/ + + + from + ^http://static\.texastribune\.org/ + to + https://static.texastribune.org/ + + + securecookie + + host + ^\.?texastribune\.org$ + name + .+ + + target + + + host + texastribune.org + + + host + *.texastribune.org + + + + + TextMagic.com (partial) + + ruleset + + name + TextMagic.com (partial) + rule + + from + ^http://(www\.)?textmagic\.com/(?=(?:app|blog)(?:$|[?/])|favicon\.ico|img/) + to + https://$1textmagic.com/ + + target + + + host + textmagic.com + + + host + www.textmagic.com + + + + + TextPad.com (partial) + + ruleset + + name + TextPad.com (partial) + rule + + from + ^http://(www\.)?textpad\.com/ + to + https://$1textpad.com/ + + securecookie + + host + ^(?:www\.)?textpad\.com$ + name + .+ + + target + + + host + textpad.com + + + host + www.textpad.com + + + + + Textbooks.com + + ruleset + + name + Textbooks.com + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?textbooks\.com/ + to + https://www.textbooks.com/ + + + from + ^http://images\.textbooks\.com/ + to + https://images.textbooks.com/ + + + securecookie + + host + ^.*\.textbooks\.com$ + name + .* + + target + + + host + textbooks.com + + + host + *.textbooks.com + + + host + *.www.textbooks.com + + + + + Thai Netizen.org + + ruleset + + name + Thai Netizen.org + rule + + from + ^http://(www\.)?thainetizen\.org/ + to + https://$1thainetizen.org/ + + target + + + host + thainetizen.org + + + host + www.thainetizen.org + + + + + Thales Communications + + ruleset + + name + Thales Communications + rule + + from + ^https?://(?:www\.)?thalescomminc\.com/ + to + https://www.thalescomminc.com/ + + securecookie + + host + ^www\.thalescomminc\.com$ + name + .* + + target + + + host + thalescomminc.com + + + host + www.thalescomminc.com + + + + + Thalys + + ruleset + + name + Thalys + rule + + + from + ^https?://thalys\.com/ + to + https://www.thalys.com/ + + + from + ^http://([^/:@]+)?\.thalys\.com/ + to + https://$1.thalys.com/ + + + from + ^http://([^/:@]+)?\.thalysnet\.com/ + to + https://$1.thalysnet.com/ + + + from + ^https?://thalysthecard\.com/ + to + https://www.thalysthecard.com/ + + + from + ^http://([^/:@]+)?\.thalysthecard\.com/ + to + https://$1.thalysthecard.com/ + + + securecookie + + + host + ^(.*\.)?thalys\.com$ + name + .+ + + + host + ^(.*\.)?thalysnet\.com$ + name + .+ + + + host + ^(.*\.)?thalysthecard\.com$ + name + .+ + + + target + + + host + thalys.com + + + host + www.thalys.com + + + host + thalysthecard.com + + + host + www.thalysthecard.com + + + host + portal.thalysnet.com + + + + + ThankYou.com + + ruleset + + name + ThankYou.com + rule + + + from + ^http://(?:www\.)?thankyou\.com/ + to + https://www.thankyou.com/ + + + from + ^http://(rewards|shopping|travel)\.thankyou\.com/ + to + https://$1.thankyou.com/ + + + securecookie + + host + ^(?:rewards|shopping|travel|www)?\.thankyou\.com$ + name + .+ + + target + + + host + thankyou.com + + + host + *.thankyou.com + + + + + Thawte + + ruleset + + name + Thawte + rule + + from + ^http://(?:www\.)?thawte\.com/ + to + https://www.thawte.com/ + + target + + + host + www.thawte.com + + + host + thawte.com + + + + + The 109 + + ruleset + + name + The 109 + rule + + from + ^http://(www\.)?the109\.org/ + to + https://$1the109.org/ + + securecookie + + host + ^\.the109\.org$ + name + .+ + + target + + + host + the109.org + + + host + *.the109.org + + + + + The American Prospect + + ruleset + + name + The American Prospect + rule + + from + ^https?://(?:www\.)?prospect\.org/ + to + https://prospect.org/ + + target + + + host + prospect.org + + + host + www.prospect.org + + + + + The Appendix.net (partial) + + ruleset + + name + The Appendix.net (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?theappendix\.net/ + to + https://theappendix.net/ + + + from + ^http://images\.theappendix\.net/ + to + https://d6hat78o59yti.cloudfront.net/ + + + securecookie + + host + ^theappendix\.net$ + name + .+ + + target + + + host + theappendix.net + + + host + *.theappendix.net + + + + + The Argus Leader + + ruleset + + name + The Argus Leader + rule + + from + ^https?://(?:cmsimg\.|www\.)argusleader\.com/ + to + https://www.argusleader.com/ + + securecookie + + host + ^www\.argusleader\.com$ + name + .+ + + target + + + host + argusleader.com + + + host + *.argusleader.com + + + + + The Art Institutes (partial) + + ruleset + + name + The Art Institutes (partial) + rule + + + from + ^https?://artinstitutes\.edu/ + to + https://www.artinstitutes.edu/ + + + from + ^http://www\.artinstitutes\.edu/([iI]mages/|[iI]ncludes/|javascript/|masters-degrees/(images|stylesheets)/|Multimedia|programs-info/form/|[sS]tylesheets/|WebResource\.axd) + to + https://www.artinstitutes.edu/$2/ + + + from + ^http://content\.artinstitutes\.edu/ + to + https://content.artinstitutes.edu/ + + + target + + + host + artinstitutes.edu + + + host + *.artinstitutes.edu + + + + + The Atlantic.com (false MCB) + + ruleset + + name + The Atlantic.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?theatlantic\.com/ + to + https://$1theatlantic.com/ + + target + + + host + theatlantic.com + + + host + www.theatlantic.com + + + + + The Atlantic.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?theatlantic\.com/+video(?:$|[?/]) + + name + The Atlantic.com (partial) + rule + + + from + ^http://(www\.)?theatlantic\.com/ + to + https://$1theatlantic.com/ + + + from + ^http://(?:assets|cdn|ssl)\.theatlantic\.com/ + to + https://cdn.theatlantic.com/ + + + target + + + host + theatlantic.com + + + host + *.theatlantic.com + + + + + The Atom Group (partial) + + ruleset + + name + The Atom Group (partial) + rule + + from + ^http://mail\.theatomgroup\.com/ + to + https://mail.theatomgroup.com/ + + securecookie + + host + ^mail\.theatomgroup\.com$ + name + .* + + target + + host + mail.theatomgroup.com + + + + The Attachmate Group (partial) + + ruleset + + name + The Attachmate Group (partial) + rule + + from + ^http://(esp|login)\.attachmategroup\.com/ + to + https://$1.attachmategroup.com/ + + securecookie + + host + ^(?:esp|login)\.attachmategroup\.com$ + name + .+ + + target + + host + *.attachmategroup.com + + + + The Baffler + + ruleset + + name + The Baffler + rule + + from + ^http://(www\.)?thebaffler\.com/ + to + https://$1thebaffler.com/ + + securecookie + + host + ^(?:www\.)?thebaffler\.com$ + name + .+ + + target + + + host + thebaffler.com + + + host + www.thebaffler.com + + + + + The Baxter Bulletin + + ruleset + + name + The Baxter Bulletin + rule + + from + ^https?://(?:cmsimg\.|www\.)?baxterbulletin\.com/ + to + https://www.baxterbulletin.com/ + + securecookie + + host + ^www\.baxterbulletin\.com$ + name + .+ + + target + + + host + baxterbulletin.com + + + host + *.baxterbulletin.com + + + + + The Best Hosting + + ruleset + + name + The Best Hosting + rule + + from + ^http://(www\.)?the-best-hosting\.net/ + to + https://$1the-best-hosting.net/ + + securecookie + + host + ^(www\.)?the-best-hosting\.net$ + name + .* + + target + + + host + the-best-hosting.net + + + host + www.the-best-hosting.net + + + + + The Big Wedding Movie.com + + ruleset + + name + The Big Wedding Movie.com + rule + + from + ^http://(?:www\.)?thebigweddingmovie\.com/ + to + https://www.thebigweddingmovie.com/ + + target + + + host + thebigweddingmovie.com + + + host + www.thebigweddingmovie.com + + + + + The Blue Sky Life.com + + ruleset + + name + The Blue Sky Life.com + rule + + from + ^http://(www\.)?theblueskylife\.com/ + to + https://$1theblueskylife.com/ + + securecookie + + host + ^(?:www\.)?theblueskylife\.com$ + name + .+ + + target + + + host + theblueskylife.com + + + host + www.theblueskylife.com + + + + + The Body Shop.co.uk (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?thebodyshop\.co\.uk/+(?!404\.htm|404_\d\.jpg|(?:athome|myspace)(?:$|[?/])|checkout/|content/|css/|images/|img/|js/|loyalty/|services/|socialhub/|(?:Script|Web)Resource\.axd|ws/) + + name + The Body Shop.co.uk (partial) + rule + + + from + ^http://(?:www\.)?thebodyshop\.co\.uk/(?=css/(?:auto-complete|category\.leftnav|static-content)\.css|images/|img/|js/|(?:Script|Web)Resource\.axd|ws/) + to + https://a248.e.akamai.net/f/1026/9034/7/www.thebodyshop.co.uk/ + + + from + ^http://(?:secure\.|www\.)?thebodyshop\.co\.uk/ + to + https://secure.thebodyshop.co.uk/ + + + from + ^http://(?:www\.)?beautyblog\.thebodyshop\.co\.uk/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://thebodyshop-uk-blog.azurewebsites.net/ + + + securecookie + + + host + ^\.thebodyshop\.co\.uk$ + name + ^(?:TRADEDOUBLER_|__tro)\w+$ + + + host + ^secure\.thebodyshop\.co\.uk$ + name + .+ + + + target + + + host + thebodyshop.co.uk + + + host + *.thebodyshop.co.uk + + + + + The Book Depository + + ruleset + + name + The Book Depository + platform + mixedcontent + rule + + + from + ^http://bookdepository\.(co\.uk|com)/ + to + https://bookdepository.$1/ + + + from + ^http://(cache0|cache1|cache2|cache3|images|www)\.bookdepository\.(co\.uk|com)/ + to + https://$1.bookdepository.$2/ + + + target + + + host + bookdepository.co.uk + + + host + *.bookdepository.co.uk + + + host + bookdepository.com + + + host + *.bookdepository.com + + + + + The Book People + + ruleset + + name + The Book People + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?thebookpeople\.co\.uk/ + to + https://www.thebookpeople.co.uk/ + + + from + ^http://images\.thebookpeople\.co\.uk/ + to + https://images.thebookpeople.co.uk/ + + + target + + + host + thebookpeople.co.uk + + + host + images.thebookpeople.co.uk + + + host + www.thebookpeople.co.uk + + + + + The Boston Globe (partial) + + ruleset + + exclusion + + pattern + http://(epaper|spiderbites)\.bostonglobe\.com/ + + name + The Boston Globe (partial) + platform + mixedcontent + rule + + + from + ^http://services\.bostonglobe\.com/ + to + https://services.bostonglobe.com/ + + + from + ^http://(?:www\.)?bostonglobe\.com/ + to + https://www.bostonglobe.com/ + + + securecookie + + host + .*\.bostonglobe\.com$ + name + .+ + + target + + + host + bostonglobe.com + + + host + *.bostonglobe.com + + + + + The Business Journals (partial) + + ruleset + + name + The Business Journals (partial) + rule + + + from + ^http://media\.bizj\.us/ + to + https://a248.e.akamai.net/f/1867/1301/3/media.bizj.us/ + + + from + ^http://(?:www\.)?bizjournals\.com/(bizjournals/images|lib|login|register)/ + to + https://www.bizjournals.com/$1/ + + + from + ^http://assets\.bizjournals\.com/ + to + https://a248.e.akamai.net/f/1484/9205/3/assets.bizjournals.com/ + + + from + ^http://(mediaapi|metrics|secure)\.bizjournals\.com/ + to + https://$1.bizjournals.com/ + + + from + ^http://metric\.bizjournals\.com/ + to + https://bizjournals-com.112.2o7.net/ + + + from + ^http://metrics\.metric\.bizjournals\.combizjournals\.com/b/ss/bizjournalsglobal%2C(\w+)/ + to + https://bizjournalsglobal-$1.122.2o7.net/b/ss/bizjournalsglobal%2C$1/ + + + securecookie + + + host + ^\.bizjournals\.com$ + name + ^s_\w+$ + + + host + ^secure\.bizjournals\.com$ + name + .+ + + + target + + + host + bizjournals.com + + + host + *.bizjournals.com + + + host + media.bizj.us + + + + + The Canadian Press + + ruleset + + name + The Canadian Press + rule + + + from + ^http://www\.cp\.org/([^\?]*)(?:\?.*)? + to + https://www.thecanadianpress.com/$1 + + + from + ^http://(?:www\.)?thecanadianpress\.com/ + to + https://www.thecanadianpress.com/ + + + securecookie + + host + ^www\.thecanadianpress\.com$ + name + .+ + + target + + + host + www.cp.org + + + host + thecanadianpress.com + + + host + www.thecanadianpress.com + + + + + The Children's Mutual (partial) + + ruleset + + name + The Children's Mutual (partial) + rule + + from + ^http://ctf\.thechildrensmutual\.co\.uk/ + to + https://ctf.thechildrensmutual.co.uk/ + + securecookie + + host + ^ctf\.thechildrensmutual\.co\.uk$ + name + .+ + + target + + host + ctf.thechildrensmutual.co.uk + + + + The Chive.com + + ruleset + + exclusion + + pattern + ^http://dating\.thechive\.com/+(?!assets/|favicon\.ico|login/*(?:$|\?)) + + name + The Chive.com + rule + + from + ^http://((?:dating|my|thebrigade|www)\.)?thechive\.com/ + to + https://$1thechive.com/ + + securecookie + + host + ^my\.thechive\.com$ + name + .+ + + target + + + host + thechive.com + + + host + *.thechive.com + + + + + The Chronicles of George + + ruleset + + name + The Chronicles of George + rule + + from + ^http://(forum\.|www\.)?chroniclesofgeorge\.com/ + to + https://$1chroniclesofgeorge.com/ + + target + + + host + chroniclesofgeorge.com + + + host + *.chroniclesofgeorge.com + + + + + The Church of Jesus Christ of Latter-day Saints + + ruleset + + exclusion + + pattern + ^http://lds\.org/ldsorg + + name + The Church of Jesus Christ of Latter-day Saints + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?lds\.org/ + to + https://www.lds.org/ + + + from + ^http://(history|store|tech|institute|seminary)\.lds\.org/ + to + https://$1.lds.org/ + + + from + ^http://(?:www\.)?ldscdn\.org/ + to + https://www.ldscdn.org/ + + + from + ^http://(edge|media)\.ldscdn\.org/ + to + https://$1.ldscdn.org/ + + + securecookie + + + host + ^(.*\.)?lds\.org$ + name + .* + + + host + ^(.*\.)?ldscdn\.org$ + name + .* + + + target + + + host + history.lds.org + + + host + store.lds.org + + + host + tech.lds.org + + + host + www.lds.org + + + host + lds.org + + + host + institute.lds.org + + + host + seminary.lds.org + + + host + edge.ldscdn.org + + + host + media.ldscdn.org + + + host + www.ldscdn.org + + + host + ldscdn.org + + + + + The Citizen Lab + + ruleset + + name + The Citizen Lab + rule + + from + ^https?://(?:www\.)?citizenlab\.org/ + to + https://citizenlab.org/ + + target + + + host + citizenlab.org + + + host + www.citizenlab.org + + + + + The Coast News.com + + ruleset + + name + The Coast News.com + rule + + from + ^http://(www\.)?thecoastnews\.com/ + to + https://$1thecoastnews.com/ + + securecookie + + host + ^\.thecoastnews\.com$ + name + .+ + + target + + + host + thecoastnews.com + + + host + *.thecoastnews.com + + + + + The Coloradoan + + ruleset + + name + The Coloradoan + rule + + from + ^http://(?:cmsimg\.|www\.)?coloradoan\.com/ + to + https://www.coloradoan.com/ + + target + + + host + coloradoan.com + + + host + *.coloradoan.com + + + + + The Conversation + + ruleset + + name + The Conversation + rule + + from + ^https?://(?:www\.)?theconversation\.(com|edu\.au)/ + to + https://theconversation.$1/ + + securecookie + + host + ^theconversation\.(?:com|edu\.au)$ + name + .+ + + target + + + host + theconversation.com + + + host + www.theconversation.com + + + host + theconversation.edu.au + + + host + www.theconversation.edu.au + + + + + The County Star (partial) + + ruleset + + name + The County Star (partial) + rule + + from + ^http://(?:www\.)?county-star\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.county-star.com/$1 + + target + + + host + county-star.com + + + host + www.county-star.com + + + + + The Customize Windows + + ruleset + + exclusion + + pattern + ^http://cloud\.thecustomizewindows\.com/ + + name + The Customize Windows + rule + + from + ^http://(www\.)?thecustomizewindows\.com/ + to + https://thecustomizewindows.com/ + + securecookie + + host + ^d9030fe1a236b276eb5c-5f19a665441657489976dbe6d75b0b9b\.ssl\.cf2\.rackcdn\.com$ + name + .+ + + target + + + host + thecustomizewindows.com + + + host + www.thecustomizewindows.com + + + + + The Cutest Site on the Block + + ruleset + + name + The Cutest Site on the Block + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?thecutestsiteontheblock\.com/ + to + https://www.thecutestsiteontheblock.com/ + + securecookie + + host + ^(.*\.)?thecutestsiteontheblock\.com$ + name + .+ + + target + + + host + thecutestsiteontheblock.com + + + host + *.thecutestsiteontheblock.com + + + + + The DMA.org (partial) + + ruleset + + name + The DMA.org (partial) + rule + + from + ^http://(www\.)?thedma\.org/ + to + https://$1thedma.org/ + + target + + + host + thedma.org + + + host + www.thedma.org + + + + + The Daily Beast (partial) + + ruleset + + name + The Daily Beast (partial) + rule + + + from + ^http://(www\.)?thedailybeast\.com/((?:articles|cheats)/.+\.jpg$|content/|favicon\.ico|etc/) + to + https://$1thedailybeast.com/$2 + + + from + ^http://cdn\.thedailybeast\.com/ + to + https://d508l827lzpfo.cloudfront.net/ + + + target + + + host + thedailybeast.com + + + host + *.thedailybeast.com + + + + + The Day We Fight Back.org + + ruleset + + name + The Day We Fight Back.org + rule + + from + ^http://(www\.)?thedaywefightback\.org/ + to + https://$1thedaywefightback.org/ + + securecookie + + host + ^\.thedaywefightback\.org$ + name + .+ + + target + + + host + thedaywefightback.org + + + host + *.thedaywefightback.org + + + + + The Dilbert Store.com (false MCB) + + ruleset + + name + The Dilbert Store.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?thedilbertstore\.com/(?!(?:customers/(?:forgot_password|login|new)|javascript_no)/?(?:$|\?.*)|images/|javascripts/|stylesheets/) + to + https://$1thedilbertstore.com/ + + securecookie + + host + ^(?:w*\.)?thedilbertstore\.com$ + name + .+ + + target + + + host + thedilbertstore.com + + + host + *.thedilbertstore.com + + + + + The Dilbert Store.com (partial) + + ruleset + + name + The Dilbert Store.com (partial) + rule + + from + ^http://(www\.)?thedilbertstore\.com/(?=(?:customers/(?:forgot_password|login|new)|javascript_no)/?(?:$|\?.*)|images/|javascripts/|stylesheets/) + to + https://$1thedilbertstore.com/ + + target + + + host + thedilbertstore.com + + + host + www.thedilbertstore.com + + + + + The Diplomat + + ruleset + + name + The Diplomat + rule + + from + ^https?://(?:www\.)?thediplomat\.com/ + to + https://thediplomat.com/ + + securecookie + + host + ^thediplomat\.com$ + name + .+ + + target + + + host + thediplomat.com + + + host + www.thediplomat.com + + + + + The Document Foundation + + ruleset + + name + The Document Foundation + rule + + + from + ^http://(www\.)?documentfoundation\.org/ + to + https://$1documentfoundation.org/ + + + from + ^http://(download(archive)?|owncloud|piwik|planet|redmine|translations|wiki)\.documentfoundation\.org/ + to + https://$1.documentfoundation.org/ + + + securecookie + + host + ^(?:owncloud|piwik|redmine|translations|wiki|www)\.documentfoundation\.org$ + name + .+ + + target + + + host + documentfoundation.org + + + host + *.documentfoundation.org + + + + + The Drum.com (partial) + + ruleset + + name + The Drum.com (partial) + rule + + + from + ^http://(www\.)?thedrum\.com/(?=(?:account/login|cart/add/\d+|store|user/login)(?:$|[?/])|uploads/) + to + https://$1thedrum.com/ + + + from + ^http://static\d\.thedrum\.com/ + to + https://www.thedrum.com/ + + + target + + + host + thedrum.com + + + host + *.thedrum.com + + + + + The Edge Climbing.com + + ruleset + + name + The Edge Climbing.com + rule + + from + ^http://(www\.)?theedgeclimbing\.com/ + to + https://$1theedgeclimbing.com/ + + securecookie + + host + ^(?:www\.)?theedgeclimbing\.com$ + name + .+ + + target + + + host + theedgeclimbing.com + + + host + www.theedgeclimbing.com + + + + + The Escapist Expo + + ruleset + + name + The Escapist Expo + rule + + from + ^https?://(?:(www\.)?sec\.|www\.)?escapistexpo\.com/ + to + https://$1sec.escapistexpo.com/ + + target + + + host + escapistexpo.com + + + host + *.escapistexpo.com + + + host + www.sec.escapistexpo.com + + + + + The FNF.org + + ruleset + + name + The FNF.org + rule + + from + ^http://((?:chili|commons|forums|lists|www)\.)?thefnf\.org/ + to + https://$1thefnf.org/ + + securecookie + + host + ^(?:(?:chili|commons|www)\.)?thefnf\.org$ + name + .+ + + target + + + host + thefnf.org + + + host + *.thefnf.org + + + + + The Federalist Papers.org (false MCB) + + ruleset + + name + The Federalist Papers.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?thefederalistpapers\.org/ + to + https://$1thefederalistpapers.org/ + + securecookie + + host + ^\.thefederalistpapers\.org$ + name + .+ + + target + + + host + thefederalistpapers.org + + + host + *.thefederalistpapers.org + + + + + The Federalist Papers.org (partial) + + ruleset + + name + The Federalist Papers.org (partial) + rule + + from + ^http://(www\.)?thefederalistpapers\.org/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1thefederalistpapers.org/ + + target + + + host + thefederalistpapers.org + + + host + www.thefederalistpapers.org + + + + + The Flirble Organisation (partial) + + ruleset + + name + The Flirble Organisation (partial) + rule + + + from + ^https?://(?:www\.)?flirble\.org/ + to + https://flirble.org/ + + + from + ^https?://(?:c\d\.)?blog\.flirble\.org/ + to + https://blog.flirble.org/ + + + from + ^https?://domreg\.flirble\.org/ + to + https://domreg-flirble-org.shopco.com/ + + + securecookie + + host + ^.*\.flirble\.org$ + name + .* + + target + + + host + flirble.org + + + host + *.flirble.org + + + host + *.blog.flirble.org + + + + + The Full Signal (partial) + + ruleset + + name + The Full Signal (partial) + rule + + from + ^https?://static\.thefullsignal\.com/ + to + https://d1jy4z176wg3x.cloudfront.net/ + + target + + host + static.thefullsignal.com + + + + The G Cloud.com (partial) + + ruleset + + name + The G Cloud.com (partial) + rule + + + from + ^http://(clients\.|manage-lax\.)?thegcloud\.com/ + to + https://$1thegcloud.com/ + + + from + ^http://www\.thegcloud\.com/+(?:\?.*)?$ + to + https://clients.thegcloud.com/ + + + securecookie + + host + ^(?:clients|manage-lax)\.thegcloud\.com$ + name + .+ + + target + + + host + thegcloud.com + + + host + *.thegcloud.com + + + + + The Gameological Society (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?gameological\.com/(?!favicon\.ico) + + name + The Gameological Society (partial) + rule + + from + ^http://(?:quickman\.|www\.)?gameological\.com/ + to + https://douky4lqbffj8.cloudfront.net/ + + target + + + host + gameological.com + + + host + *.gameological.com + + + + + The Gazette + + ruleset + + name + The Gazette + rule + + + from + ^https?://thegazette\.co\.uk/ + to + https://www.thegazette.co.uk/ + + + from + ^http://([^/:@]+)\.thegazette\.co\.uk/ + to + https://$1.thegazette.co.uk/ + + + target + + + host + thegazette.co.uk + + + host + *.thegazette.co.uk + + + + + The Good Fight.fm + + ruleset + + name + The Good Fight.fm + rule + + from + ^http://(www\.)?thegoodfight\.fm/ + to + https://$1thegoodfight.fm/ + + target + + + host + thegoodfight.fm + + + host + www.thegoodfight.fm + + + + + The Grand + + ruleset + + name + The Grand + rule + + from + ^http://(?:www\.)?thegrandtheatre\.com/ + to + https://thegrandtheatre.com/ + + securecookie + + host + ^thegrandtheatre\.com$ + name + .+ + + target + + + host + thegrandtheatre.com + + + host + www.thegrandtheatre.com + + + + + The Great Courses (partial) + + ruleset + + name + The Great Courses (partial) + rule + + from + ^https?://(?:www\.)?thegreatcourses\.com/tgc/([aA]ccount|cs)s/ + to + https://www.thegreatcourses.com/tgc/$1s/ + + target + + + host + thegreatcourses.com + + + host + www.thegreatcourses.com + + + + + The Grommet.com + + ruleset + + name + The Grommet.com + rule + + from + ^http://(cdn\d\.|www\.)?thegrommet\.com/ + to + https://$1thegrommet.com/ + + securecookie + + host + ^(?:[w.]*\.)?thegrommet\.com$ + name + .+ + + target + + + host + thegrommet.com + + + host + *.thegrommet.com + + + + + The Group + + ruleset + + name + The Group + rule + + + from + ^https?://(?:www\.)?the-group\.net/ + to + https://www.the-group.net/ + + + from + ^https?://om\.the-group\.net/ + to + https://thegroup.112.2o7.net/ + + + securecookie + + host + ^\.the-group\.net$ + name + .+ + + target + + + host + the-group.net + + + host + *.the-group.net + + + + + The Guardian (partial) + + ruleset + + name + The Guardian (partial) + rule + + + from + ^http://gu\.com/ + to + https://www.theguardian.com/ + + + from + ^http://www\.guardian\.co\.uk/favicon\.ico + to + https://image.guim.co.uk/favicon.ico + + + from + ^http://(?:download|image|static)\.gu(?:ardian|im)\.co\.uk/ + to + https://image.guim.co.uk/ + + + from + ^http://hits\.guardian\.co\.uk/ + to + https://guardian-co-uk.d1.sc.omtrdc.net/ + + + from + ^http://(id|oas|register|soulmates|witness)\.guardian\.co\.uk/ + to + https://$1.guardian.co.uk/ + + + from + ^http://(www\.)?guardianbookshop\.co\.uk/(?=BerteShopWeb/(?!(?:addToBasket|advancedSearch|customPage|home|showSubCategories|updateBasket|viewCategory|viewProduct)\.do)|images/) + to + https://$1guardianbookshop.co.uk/ + + + from + ^http://(www\.)?guardianeatright\.co\.uk/ + to + https://$1guardianeatright.co.uk/ + + + from + ^http://(\w+)\.guardianoffers\.co\.uk/(?=AddtoBasket\.asp|checkout\.asp|(?:BrandImages|images|lib|ProductImages|scripts|SKUImages|styles)/) + to + https://$1.guardianoffers.co.uk/ + + + from + ^http://entertainment\.guardianoffers\.co\.uk/ + to + https://entertainment.guardianoffers.co.uk/ + + + from + ^http://assets(?:-secure)?\.guim\.co\.uk/ + to + https://assets-secure.guim.co.uk/ + + + from + ^http://id\.guim\.co\.uk/ + to + https://id.guardian.co.uk/ + + + from + ^http://(i|pasteup|soulmates|static-secure)\.guim\.co\.uk/ + to + https://$1.guim.co.uk/ + + + from + ^http://hits\.theguardian\.com/ + to + https://theguardian-com.d1.sc.omtrdc.net/ + + + from + ^http://(hits-secure|id|oas|membership|profile|register|securedrop|soulmates|witness)\.theguardian\.com/ + to + https://$1.theguardian.com/ + + + from + ^http://syndication\.theguardian\.com/[^?]* + to + https://www.theguardian.com/info/syndication-and-terms-of-use + + + securecookie + + + host + ^\.guardian\.co\.uk$ + name + ^(?:NXCLICK2|OAX|s_.+s)$ + + + host + ^(?:oas|soulmates|\.witness)\.guardian\.co\.uk$ + name + .+ + + + host + ^(?:.*\.)?guardianeatright\.co\.uk$ + name + .+ + + + host + ^entertainment\.guardianoffers\.co\.uk$ + name + .+ + + + host + ^\.theguardian\.com$ + name + ^(?:OAX|RMF[DH])$ + + + host + ^(?:\.?id|oas|\.?soulmates|\.witness)\.theguardian\.com$ + name + .+ + + + target + + + host + gu.com + + + host + *.guardian.co.uk + + + host + guardianbookshop.co.uk + + + host + www.guardianbookshop.co.uk + + + host + guardianeatright.co.uk + + + host + www.guardianeatright.co.uk + + + host + *.guardianoffers.co.uk + + + host + *.guim.co.uk + + + host + *.theguardian.com + + + + + The Guild of Master Craftsmen + + ruleset + + name + The Guild of Master Craftsmen + rule + + from + ^http://(?:www\.)?guildmc\.com/ + to + https://www.guildmc.com/ + + securecookie + + host + ^www\.guildmc\.com$ + name + .+ + + target + + + host + guildmc.com + + + host + www.guildmc.com + + + + + The Hacker's Choice + + ruleset + + name + The Hacker's Choice + rule + + + from + ^http://(www\.)?thc\.org/ + to + https://thc.org/ + + + from + ^http://(freeworld|ircs-web|wiki)\.thc\.org/ + to + https://$1.thc.org/ + + + target + + + host + thc.org + + + host + freeworld.thc.org + + + host + www.thc.org + + + + + The Hill.com + + ruleset + + name + The Hill.com + rule + + from + ^http://(mobile\.|www\.)?thehill\.com/ + to + https://$1thehill.com/ + + target + + + host + thehill.com + + + host + *.thehill.com + + + + + The Hoxton.com + + ruleset + + name + The Hoxton.com + rule + + from + ^http://(www\.)?thehoxton\.com/ + to + https://$1thehoxton.com/ + + securecookie + + host + ^thehoxton\.com$ + name + .+ + + target + + + host + thehoxton.com + + + host + www.thehoxton.com + + + + + The Iconic.com (partial) + + ruleset + + name + The Iconic.com (partial) + rule + + + from + ^http://(?:www\.)?theiconic\.com\.au/(?=(?:cart|customer/account)(?:$|[?/])|favicon\.ico) + to + https://www.theiconic.com.au/ + + + from + ^http://static1?\.theiconic\.com\.au/ + to + https://static.theiconic.com.au/ + + + target + + + host + theiconic.com.au + + + host + *.theiconic.com.au + + + + + The Independent News (partial) + + ruleset + + name + The Independent News (partial) + rule + + from + ^http://(?:www\.)?the-independent-news\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.the-independent-news.com/$1 + + target + + + host + the-independent-news.com + + + host + www.the-independent-news.com + + + + + The Irish Times + + ruleset + + name + The Irish Times + rule + + from + ^http://(www\.)?irishtimes\.com/ + to + https://$1irishtimes.com/ + + target + + + host + irishtimes.com + + + host + www.irishtimes.com + + + + + The Jack and Jill Children's Foundation Charity + + ruleset + + name + The Jack and Jill Children's Foundation Charity + rule + + + from + ^http://(www\.)?jackandjill\.ie/ + to + https://www.jackandjill.ie/ + + + from + ^http://(www\.)?jackandjillraffle\.org/ + to + https://www.jackandjillraffle.org/ + + + from + ^https?://(www\.)?jackandjillraffle\.com/ + to + https://www.jackandjillraffle.org/ + + + target + + + host + jackandjill.ie + + + host + www.jackandjill.ie + + + host + jackandjillraffle.com + + + host + www.jackandjillraffle.com + + + host + jackandjillraffle.org + + + host + www.jackandjillraffle.org + + + + + The Jackson Sun (partial) + + ruleset + + name + The Jackson Sun (partial) + rule + + from + ^https?://(?:cmsimg\.|www\.)?jacksonsun\.com/ + to + https://www.jacksonsun.com/ + + target + + + host + jacksonsun.com + + + host + *.jacksonsun.com + + + + + The Japan Times (partial) + + ruleset + + name + The Japan Times (partial) + rule + + + from + ^http://(bookclub|club|form)\.japantimes\.co\.jp/ + to + https://$1.japantimes.co.jp/ + + + from + ^https?://www\.japantimes\.co\.jp/images/header_title\.gif + to + https://form.japantimes.co.jp/images/header_title.gif + + + securecookie + + host + ^.+\.japantimes\.co\.jp$ + name + .+ + + target + + host + *.japantimes.co.jp + + + + The Johns Hopkins University (partial) + + ruleset + + name + The Johns Hopkins University (partial) + rule + + + from + ^http://orchid\.hosts\.jhmi\.edu/ + to + https://orchid.hosts.jhmi.edu/ + + + from + ^http://(?:www\.)?(cs|peabody)\.jhu\.edu/ + to + https://www.$1.jhu.edu/ + + + from + ^http://(?:www\.)?giving\.jhu\.edu/+ + to + https://rising.jhu.edu/ + + + from + ^http://(beta|jhweb\.dev|engineering|ep|hub|isis|my?|webapps)\.jhu\.edu/ + to + https://$1.jhu.edu/ + + + from + ^http://nanjing\.jhu\.edu/[^?]* + to + https://www.sais-jhu.edu/graduate-studies/campuses/nanjing-china + + + from + ^http://(www\.)?(rising|secure)\.jhu\.edu/ + to + https://$1$2.jhu.edu/ + + + from + ^http://(activtracker|e210|ess\.erp|login|my|portal(?:content)?)\.johnshopkins\.edu/ + to + https://$1.johnshopkins.edu/ + + + securecookie + + + host + ^(?:gallery\.cis|hrnt|hub|isis|m|(?:www\.)?peabody)\.jhu\.edu$ + name + .+ + + + host + ^.+\.johnshopkins\.edu$ + name + .+ + + + target + + + host + orchid.hosts.jhmi.edu + + + host + *.jhu.edu + + + host + *.johnshopkins.edu + + + host + ess.erp.johnshopkins.edu + + + + + The Leader (partial) + + ruleset + + name + The Leader (partial) + rule + + from + ^http://(?:www\.)?leaderlandnews\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.leaderlandnews.com/$1 + + target + + + host + leaderlandnews.com + + + host + www.leaderlandnews.com + + + + + The Leveson Inquiry + + ruleset + + name + The Leveson Inquiry + rule + + from + ^https?://(?:www\.)?levesoninquiry\.org\.uk/ + to + https://www.levesoninquiry.org.uk/ + + target + + + host + levesoninquiry.org.uk + + + host + www.levesoninquiry.org.uk + + + + + The List (partial) + + ruleset + + name + The List (partial) + rule + + from + ^https?://(?:www\.)?list\.co\.uk/ + to + https://www.list.co.uk/ + + target + + + host + list.co.uk + + + host + www.list.co.uk + + + + + The Local (partial) + + ruleset + + name + The Local (partial) + rule + + + from + ^http://sifomedia\.thelocal\.se/ + to + https://oasc16.247realmedia.com/ + + + from + ^http://d\.thelocal\.com/ + to + https://thelocal-d3.openxenterprise.com/ + + + target + + + host + d.thelocal.com + + + host + sifomedia.thelocal.se + + + + + The Marion Star + + ruleset + + name + The Marion Star + rule + + from + ^https?://(?:cmsimg\.|www\.)?marionstar\.com/ + to + https://www.marionstar.com/ + + target + + + host + marionstar.com + + + host + *.marionstar.com + + + + + The Mongoliad + + ruleset + + name + The Mongoliad + rule + + from + ^http://(www\.)?mongoliad\.com/ + to + https://$1mongoliad.com/ + + securecookie + + host + ^(?:www\.)?mongoliad\.com$ + name + .+ + + target + + + host + mongoliad.com + + + host + www.mongoliad.com + + + + + The Motley Fool (partial) + + ruleset + + exclusion + + pattern + ^http://wiki\.fool\.com/+(?!wiki/(?:extension|skin)s/) + + name + The Motley Fool (partial) + rule + + + from + ^http://fool\.com/ + to + https://www.fool.com/ + + + from + ^http://www\.fool\.co(m|m\.au|\.uk)/(ads/|author/|Foolwatch/|help/|img/|Landing/|marketing/|PopUps/|press/|Scripts/|secure/|shop/|tracking/) + to + https://www.fool.co$1/$2 + + + from + ^http://boards\.fool\.com/(Css/|\w+\.aspx$) + to + https://boards.fool.com/$1 + + + from + ^http://caps\.fool\.com/(Blogs|Ticker/) + to + https://caps.fool.com/$1 + + + from + ^http://my\.fool\.com/ + to + https://my.fool.com/ + + + from + ^http://[gs]\.fool(?:cdn)?\.co(m|m\.au|\.uk)/ + to + https://s.foolcdn.co$1/ + + + from + ^http://wiki\.fool\.com/ + to + https://wiki.fool.com/ + + + securecookie + + + host + \.foolcdn\.com$ + name + ^(?:incap_ses_\d+|visid_incap)_\d+$ + + + host + ^s\.foolcdn\.com$ + name + .+ + + + target + + + host + fool.com + + + host + *.fool.com + + + host + fool.com.au + + + host + *.fool.com.au + + + host + fool.co.uk + + + host + *.fool.co.uk + + + host + *.foolcdn.com + + + + + The Nation + + ruleset + + name + The Nation + rule + + + from + ^http://(?:www\.)?thenation\.com/(?=favicon\.ico|misc/|sites/) + to + https://www.thenation.com/ + + + from + ^http://(donate|subscribe)\.thenation\.com/ + to + https://$1.thenation.com/ + + + from + ^http://65\.98\.18\.218/ + to + https://upgnation.com/ + + + from + ^http://(www\.)?upgnation\.com/(images/|(?:image|login|register)\.php|skin/|var/) + to + https://$1upgnation.com/$1 + + + securecookie + + host + ^(?:donate|subscribe)\.thenation\.com$ + name + .* + + target + + + host + 65.98.18.218 + + + host + thenation.com + + + host + *.thenation.com + + + host + upgnation.com + + + host + www.upgnation.com + + + + + The National Academies (partial) + + ruleset + + name + The National Academies (partial) + platform + mixedcontent + rule + + from + ^http://www(7|8)\.nationalacademies\.org/ + to + https://www$1.nationalacademies.org/ + + securecookie + + host + ^www[78]\.nationalacademies\.org$ + name + .+ + + target + + host + *.nationalacademies.org + + + + The National Academies Press (partial) + + ruleset + + name + The National Academies Press (partial) + rule + + + from + ^http://(?:cart\.|images\.|www\.)?nap\.edu/ + to + https://cart.nap.edu/ + + + from + ^http://(download|secure)\.nap\.edu/ + to + https://$1.nap.edu/ + + + securecookie + + host + ^download\.nap\.edu$ + name + .+ + + target + + + host + nap.edu + + + host + *.nap.edu + + + + + The Nature Conservancy (partial) + + ruleset + + name + The Nature Conservancy (partial) + rule + + + from + ^http://shop\.nature\.org/ + to + https://shop.nature.org/ + + + from + ^http://support\.nature\.org/images/ + to + https://support.nature.org/images/ + + + securecookie + + host + ^shop\.nature\.org$ + name + .* + + target + + host + *.nature.org + + + + The New Yorker (partial) + + ruleset + + name + The New Yorker (partial) + rule + + + from + ^http://(?:www\.)?newyorker\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://www.newyorker.com/ + + + from + ^https?://(?:www\.)?newyorker\.com/(appjs/stats/|online/blogs/[\w-]+/[\w-]+\.(?:jp|pn)g(?:$|\?)|css/|images/|js/|sandbox/) + to + https://secure.newyorker.com/$1 + + + from + ^http://(result|secure)\.newyorker\.com/ + to + https://$1.newyorker.com/ + + + target + + + host + newyorker.com + + + host + *.newyorker.com + + + + + The News Funnel (partial) + + ruleset + + name + The News Funnel (partial) + rule + + from + ^http://(www\.)?thenewsfunnel\.com/(modules/|(?:register-tnf|user/register)(?:$|\?|/)|sites/) + to + https://$1thenewsfunnel.com/$2 + + target + + + host + thenewsfunnel.com + + + host + www.thenewsfunnel.com + + + + + The News-Gazette (partial) + + ruleset + + name + The News-Gazette (partial) + rule + + + from + ^https?://(?:assets\.|static\.|www\.)?news-gazette.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.news-gazette.com/$1 + + + from + ^http://digital\.news-gazette\.com/(misc|sites)/ + to + https://digital.news-gazette.com/$1/ + + + target + + + host + news-gazette.com + + + host + *.news-gazette.com + + + + + The Newsmarket (partial) + + ruleset + + name + The Newsmarket (partial) + rule + + from + ^http://(br|previews)\.thenewsmarket\.com/ + to + https://$1.thenewsmarket.com/ + + securecookie + + host + ^br\.thenewsmarket\.com$ + name + .+ + + target + + host + *.thenewsmarket.com + + + + The Next Web (partial) + + ruleset + + name + The Next Web (partial) + rule + + + from + ^http://((?:fr|nl|pl|ru|www)\.)?thenextweb\.com/(conference/(?:asset|header/image)s|wp-content)/ + to + https://$1thenextweb.com/$2/ + + + from + ^https?://cdn\.thenextweb\.com/ + to + https://thenextweb.com/ + + + from + ^https?://guides\.thenextweb\.com/(av|cs|image)s/ + to + https://tnextw.accel.io/$1s/ + + + from + ^https?://jobs\.thenextweb\.com/(Areas|Content|i)/ + to + https://my.zartis.com/$1/ + + + target + + + host + thenextweb.com + + + host + *.thenextweb.com + + + + + The Old Reader + + ruleset + + name + The Old Reader + rule + + + from + ^http://(www\.)?theoldreader\.com/ + to + https://$1theoldreader.com/ + + + from + ^http://s\.yeoldreader\.com/ + to + https://theoldreader.com/ + + + securecookie + + host + ^([^/:@]*\.)?theoldreader\.com$ + name + .* + + target + + + host + theoldreader.com + + + host + www.theoldreader.com + + + host + s.yeoldreader.com + + + + + The Onion (partial) + + ruleset + + name + The Onion (partial) + rule + + from + ^http://store\.theonion\.com/ + to + https://store.theonion.com/ + + securecookie + + host + ^store\.theonion\.com$ + name + .+ + + target + + host + store.theonion.com + + + + The Open Group (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www3?\.)?opengroup\.org/+(?!austin(?:$|[?/])|images/|onlinepubs/|sites/|stylesheets/) + + name + The Open Group (partial) + rule + + from + ^http://(sso\.|www[236]?\.)?opengroup\.org/ + to + https://$1opengroup.org/ + + securecookie + + host + ^(?:sso|www2)\.opengroup\.org$ + name + .* + + target + + + host + opengroup.org + + + host + *.opengroup.org + + + + + The Outnet + + ruleset + + name + The Outnet + rule + + + from + ^http://(?:www\.)?theoutnet\.com/ + to + https://www.theoutnet.com/ + + + from + ^http://(cache|www-lt)\.theoutnet\.com/ + to + https://$1.theoutnet.com/ + + + securecookie + + host + ^\.?www\.theoutnet\.com$ + name + .+ + + target + + + host + theoutnet.com + + + host + *.theoutnet.com + + + + + The Patriot Post + + ruleset + + name + The Patriot Post + rule + + + from + ^https?://(?:www\.)?patriotpost\.us/ + to + https://patriotpost.us/ + + + from + ^https?://(assets\.patriotpost\.com|media\.patriotpost\.us)/ + to + https://s3.amazonaws.com/$1/ + + + securecookie + + host + ^patriotpost\.us$ + name + .+ + + target + + + host + assets.patriotpost.com + + + host + patriotpost.us + + + host + *.patriotpost.us + + + + + The Pirate Bay (partial) + + ruleset + + name + The Pirate Bay (partial) + rule + + + from + ^https?://(?:forum\.|www\.)?suprbay\.org/ + to + https://forum.suprbay.org/ + + + from + ^http://(?:www\.)?thepiratebay\.(?:org|se)/ + to + https://thepiratebay.se/ + + + from + ^http://(rss|static|torrents)\.thepiratebay\.(?:org|se)/ + to + https://$1.thepiratebay.se/ + + + securecookie + + + host + ^.*\.suprbay\.org$ + name + .* + + + host + ^(.*\.)?thepiratebay\.se$ + name + .* + + + target + + + host + suprbay.org + + + host + *.suprbay.org + + + host + *.forum.suprbay.org + + + host + thepiratebay.org + + + host + *.thepiratebay.org + + + host + thepiratebay.se + + + host + *.thepiratebay.se + + + + + The Privacy Blog + + ruleset + + name + The Privacy Blog + rule + + from + ^http://(?:www\.)?theprivacyblog\.com/ + to + https://www.theprivacyblog.com/ + + target + + + host + www.theprivacyblog.com + + + host + theprivacyblog.com + + + + + The Public Whip + + ruleset + + name + The Public Whip + rule + + from + ^https?://(?:www\.)?publicwhip\.org\.uk/ + to + https://www.publicwhip.org.uk/ + + securecookie + + host + ^\.publicwhip\.org\.uk$ + name + .+ + + target + + + host + publicwhip.org.uk + + + host + *.publicwhip.org.uk + + + + + The Red Ferret + + ruleset + + name + The Red Ferret + rule + + from + ^http://(www\.)?theferret\.net/ + to + https://$1theferret.net/ + + securecookie + + host + ^(?:www)?\.redferret\.net$ + name + .+ + + target + + + host + redferret.net + + + host + *.redferret.net + + + + + The Republic (partial) + + ruleset + + name + The Republic (partial) + rule + + from + ^https?://cdn\.therepublic\.com/ + to + https://c348471.ssl.cf1.rackcdn.com/ + + target + + host + cdn1.therepublic.com + + + + The Sacramento Bee (partial) + + ruleset + + name + The Sacramento Bee (partial) + rule + + from + ^http://circulationportal\.sacbee\.com/ + to + https://circulationportal.sacbee.com/ + + securecookie + + host + ^circulationportal\.sacbee\.com$ + name + .+ + + target + + host + circulationportal.sacbee.com + + + + The San Francisco Marathon (partial) + + ruleset + + name + The San Francisco Marathon (partial) + rule + + from + ^http://(registration|sync)\.thesfmarathon\.com/ + to + https://$1.thesfmarathon.com/ + + securecookie + + host + ^registration\.thesfmarathon\.com$ + name + .+ + + target + + host + *.thesfmarathon.com + + + + The Security Ledger + + ruleset + + name + The Security Ledger + rule + + from + ^http://(www\.)?securityledger\.com/ + to + https://$1securityledger.com/ + + target + + + host + securityledger.com + + + host + www.securityledger.com + + + + + The Sexy House + + ruleset + + name + The Sexy House + rule + + from + ^http://(www\.)?thesexyhouse\.com/ + to + https://$1thesexyhouse.com/ + + securecookie + + host + ^\.thesexyhouse\.com$ + name + .+ + + target + + + host + thesexyhouse.com + + + host + *.thesexyhouse.com + + + + + The Skoop + + ruleset + + name + The Skoop + rule + + from + ^http://(www\.)?theskoop\.ca/ + to + https://$1theskoop.ca/ + + securecookie + + host + ^(?:www\.)?theskoop\.ca$ + name + .+ + + target + + + host + theskoop.ca + + + host + www.theskoop.ca + + + + + The Skynet Project + + ruleset + + name + The Skynet Project + rule + + from + ^http://((?:anyterm|webirc|webmail|wiki|www)\.)?skynet\.ie/ + to + https://$1skynet.ie/ + + securecookie + + host + ^\.?webmail\.skynet\.ie$ + name + .+ + + target + + + host + skynet.ie + + + host + *.skynet.ie + + + + + The Slender Kitchen + + ruleset + + name + The Slender Kitchen + rule + + from + ^http://(www\.)?slenderkitchen\.com/ + to + https://$1slenderkitchen.com/ + + securecookie + + host + ^(?:www)?\.slenderkitchen\.com$ + name + .+ + + target + + + host + slenderkitchen.com + + + host + *.slenderkitchen.com + + + + + The Sloan Consortium (partial) + + ruleset + + name + The Sloan Consortium (partial) + rule + + from + ^https?://(?:www\.)?sloanconsortium\.org/sites/ + to + https://sloanconsortium.org/sites/ + + target + + + host + sloanconsortium.org + + + host + www.sloanconsortium.org + + + + + The Spartan Institute (partial) + + ruleset + + name + The Spartan Institute (partial) + rule + + from + ^http://(www\.)?thespartaninstitute\.com/ + to + https://$1thespartaninstitute.com/ + + securecookie + + host + ^(?:w*\.)?thespartaninstitute\.com$ + name + .+ + + target + + + host + thespartaninstitute.com + + + host + *.thespartaninstitute.com + + + + + The Sprawl + + ruleset + + name + The Sprawl + rule + + from + ^http://(www\.)?thesprawl\.org/ + to + https://$1thesprawl.org/ + + target + + + host + thesprawl.org + + + host + www.thesprawl.org + + + + + The Storefront.com (false MCB) + + ruleset + + name + The Storefront.com (false MCB) + platform + mixedcontent + rule + + from + ^http://blog\.thestorefront\.com/(?!wp-content/|wp-includes/) + to + https://blog.thestorefront.com/ + + target + + host + blog.thestorefront.com + + + + The Storefront.com (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.thestorefront\.com/+(?!wp-content/|wp-includes/) + + name + The Storefront.com (partial) + rule + + from + ^http://(blog\.|www\.)?thestorefront\.com/ + to + https://$1thestorefront.com/ + + securecookie + + host + ^(?:www)?\.thestorefront\.com$ + name + .+ + + target + + + host + thestorefront.com + + + host + *.thestorefront.com + + + + + The Stranger.com (partial) + + ruleset + + exclusion + + pattern + ^http://post\.thestranger\.com/+(?!$|\?|favicon\.ico|foundation/|images/|post/|styles/) + + name + The Stranger.com (partial) + rule + + from + ^http://((?:classifieds|post|www)\.)?thestranger\.com/ + to + https://$1thestranger.com/ + + target + + + host + thestranger.com + + + host + *.thestranger.com + + + + + The TFP + + ruleset + + name + The TFP + rule + + from + ^http://(www\.)?thetfp\.com/ + to + https://$1thetfp.com/ + + target + + + host + thetfp.com + + + host + www.thetfp.com + + + + + The Teaching Company (partial) + + ruleset + + name + The Teaching Company (partial) + rule + + from + ^http://secureimages\.teach12\.com/ + to + https://secureimages.teach12.com/ + + target + + host + secureimages.teach12.com + + + + The Tech Journal.com + + ruleset + + name + The Tech Journal.com + platform + mixedcontent + rule + + from + ^http://(www\.)?thetechjournal\.com/ + to + https://$1thetechjournal.com/ + + target + + + host + thetechjournal.com + + + host + www.thetechjournal.com + + + + + The Tech Report (partial) + + ruleset + + name + The Tech Report (partial) + rule + + from + ^http://(www\.)?techreport\.com/ + to + https://techreport.com/ + + securecookie + + host + ^\.?techreport\.com$ + name + .+ + + target + + + host + techreport.com + + + host + www.techreport.com + + + + + The Theme Foundry.com (partial) + + ruleset + + name + The Theme Foundry.com (partial) + rule + + from + ^http://((?:demo|staging\.demo|staging|www)\.)?thethemefoundry\.com/ + to + https://$1thethemefoundry.com/ + + target + + + host + thethemefoundry.com + + + host + *.thethemefoundry.com + + + + + The Ticket Factory + + ruleset + + name + The Ticket Factory + rule + + from + ^http://(www\.)?theticketfactory\.com/ + to + https://$1theticketfactory.com/ + + securecookie + + host + ^(?:www\.)?theticketfactory\.com$ + name + .+ + + target + + + host + theticketfactory.com + + + host + www.theticketfactory.com + + + + + The Times + + ruleset + + name + The Times + rule + + from + ^http://(home|login)\.thetimes\.co\.uk/ + to + https://$1.thetimes.co.uk/ + + target + + host + *.thetimes.co.uk + + + + The Toad Fly (partial) + + ruleset + + name + The Toad Fly (partial) + rule + + from + ^http://(www\.)?thetoadfly\.com/(favicon\.ico|(?:my-account|order-tracking)(?:$|\?|/)|wp-content/|wp-includes/) + to + https://$1thetoadfly.com/$2 + + target + + + host + thetoadfly.com + + + host + www.thetoadfly.com + + + + + The War Z + + ruleset + + name + The War Z + rule + + from + ^http://(account\.|forums\.|www\.)?playwarz\.com/ + to + https://$1playwarz.com/ + + securecookie + + host + ^(?:account)?\.playwarz\.com$ + name + .+ + + target + + + host + playwarz.com + + + host + *.playwarz.com + + + + + The Washington Examiner (partial) + + ruleset + + name + The Washington Examiner (partial) + rule + + from + ^http://cdn\.washingtonexaminer\.biz/ + to + https://d1j4hw6rcy3g1h.cloudfront.net/ + + target + + host + cdn.washingtonexaminer.biz + + + + The Washington Times (partial) + + ruleset + + name + The Washington Times (partial) + rule + + from + ^http://(iservices|subscription)\.washingtontimes\.com/ + to + https://$1.washingtontimes.com/ + + securecookie + + host + ^(?:iservices|subscription)\.washingtontimes\.com$ + name + .+ + + target + + host + *.washingtontimes.com + + + + The Watershed + + ruleset + + name + The Watershed + rule + + + from + ^http://((?:cdn|lp|wsmail|www)\.)?thewatershed\.com/ + to + https://$1thewatershed.com/ + + + from + ^https?://chat\.thewatershed\.com/(?:\?.*)?$ + to + https://addictionhelpchat.com/webchatasp/ + + + securecookie + + host + .+\.thewatershed\.com$ + name + .+ + + target + + + host + thewatershed.com + + + host + *.thewatershed.com + + + + + The Watershed Residence + + ruleset + + name + The Watershed Residence + rule + + from + ^https?://(?:www\.)?thewatershedresidence\.com/ + to + https://thewatershedresidence.com/ + + securecookie + + host + ^thewatershedresidence\.com$ + name + .+ + + target + + + host + thewatershedresidence.com + + + host + www.thewatershedresidence.com + + + + + The Web Index.org + + ruleset + + name + The Web Index.org + rule + + from + ^http://(www\.)?thewebindex\.org/ + to + https://$1thewebindex.org/ + + target + + + host + thewebindex.org + + + host + www.thewebindex.org + + + + + The Webstaurant Store (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?webstaurantstore\.com/(favicon\.ico|myaccount\.html|template/) + + name + The Webstaurant Store (partial) + rule + + from + ^http://(cdn\.|cdnimg\.|www\.)?webstaurantstore\.com/ + to + https://$1webstaurantstore.com/ + + target + + + host + webstaurantstore.com + + + host + www.webstaurantstore.com + + + + + The Week.com + + ruleset + + name + The Week.com + rule + + from + ^http://(www\.)?theweek\.com/ + to + https://$1theweek.com/ + + target + + + host + theweek.com + + + host + www.theweek.com + + + + + The Weekend Edition + + ruleset + + name + The Weekend Edition + rule + + from + ^http://(?:www\.)?theweekendedition\.com\.au/ + to + https://twe.wpengine.com/ + + target + + + host + theweekendedition.com.au + + + host + www.theweekendedition.com.au + + + + + The Western World (partial) + + ruleset + + name + The Western World (partial) + rule + + from + ^http://(www\.)?thewesternworld\.com/ + to + https://$1thewesternworld.com/ + + securecookie + + host + ^www\.thewesternworld\.com$ + name + .+ + + target + + + host + thewesternworld.com + + + host + www.thewesternworld.com + + + + + The Wire.com (false MCB) + + ruleset + + name + The Wire.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?thewire\.com/ + to + https://www.thewire.com/ + + target + + + host + thewire.com + + + host + *.thewire.com + + + + + The Wire.com (partial) + + ruleset + + name + The Wire.com (partial) + rule + + from + ^http://cdn\.thewire\.com/ + to + https://cdn.thewire.com/ + + securecookie + + host + ^\.thewire\.com$ + name + ^s_\w+$ + + target + + host + *.thewire.com + + + + The Word Pro + + ruleset + + name + The Word Pro + rule + + from + ^http://(?:www\.)?thewordpro\.com/ + to + https://www.thewordpro.com/ + + securecookie + + host + ^\.thewordpro\.com$ + name + .+ + + target + + + host + thewordpro.com + + + host + *.thewordpro.com + + + + + The World According to Nouns + + ruleset + + name + The World According to Nouns + rule + + from + ^https?://(?:www\.)?danzappone\.com/ + to + https://www.danzappone.com/ + + securecookie + + host + ^(?:www)?\.danzappone\.com$ + name + .+ + + target + + + host + danzappone.com + + + host + *.danzappone.com + + + + + The World Food Prize + + ruleset + + name + The World Food Prize + rule + + from + ^http://(www\.)?worldfoodprize\.org/ + to + https://$1worldfoodprize.org/ + + securecookie + + host + ^(?:www\.)?worldfoodprize\.org$ + name + .+ + + target + + + host + worldfoodprize.org + + + host + www.worldfoodprize.org + + + + + The Wrap (partial) + + ruleset + + name + The Wrap (partial) + rule + + from + ^http://(?:drupal\.|www\.)?thewrap\.com/ + to + https://www.thewrap.com/ + + securecookie + + host + ^\.thewrap\.com$ + name + ^__utm\w$ + + target + + + host + thewrap.com + + + host + *.thewrap.com + + + + + The Zap Lab + + ruleset + + name + The Zap Lab + rule + + from + ^http://(www\.)?thezaplab\.com/ + to + https://$1thezaplab.com/ + + securecookie + + host + ^(?:.*\.)?thezaplab\.com$ + name + .+ + + target + + + host + thezaplab.com + + + host + *.thezaplab.com + + + + + The-DMA.org (partial) + + ruleset + + name + The-DMA.org (partial) + rule + + from + ^http://(imis\.|www\.)?the-dma\.org/ + to + https://$1the-dma.org/ + + target + + + host + the-dma.org + + + host + *.the-dma.org + + + + + TheAA + + ruleset + + name + TheAA + platform + mixedcontent + rule + + from + ^http://(?:www\.)?theaa\.com/ + to + https://www.theaa.com/ + + target + + + host + theaa.com + + + host + www.theaa.com + + + + + TheCityUK + + ruleset + + name + TheCityUK + rule + + from + ^http://(?:www\.)?thecityuk\.com/ + to + https://www.thecityuk.com/ + + securecookie + + host + ^www\.thecityuk\.com$ + name + .+ + + target + + + host + thecityuk.com + + + host + www.thecityuk.com + + + + + TheDenverChannel.com (partial) + + ruleset + + name + TheDenverChannel.com (partial) + rule + + from + ^http://media\.thedenverchannel\.com/ + to + https://a248.e.akamai.net/f/1168/4549/9d/media.thedenverchannel.com/ + + target + + host + media.thedenverchannel.com + + + + TheEroticReview + + ruleset + + name + TheEroticReview + rule + + from + ^http://(?:www\.)?theeroticreview\.com/ + to + https://www.theeroticreview.com/ + + securecookie + + + host + ^theeroticreview\.com$ + name + .* + + + host + ^www\.theeroticreview\.com$ + name + .* + + + target + + + host + www.theeroticreview.com + + + host + theeroticreview.com + + + + + TheFind + + ruleset + + name + TheFind + rule + + + from + ^https?://s\.tfcdn\.com/ + to + https://www.thefind.com/ + + + from + ^https?://blog\.thefind\.com/(i|wp-content)/ + to + https://s64159.gridserver.com/$1/ + + + from + ^http://((?:img|local|upfront|www)\.)?thefind\.com/ + to + https://$1thefind.com/ + + + securecookie + + host + ^.*\.thefind\.com$ + name + .* + + target + + + host + s.tfcdn.com + + + host + thefind.com + + + host + *.thefind.com + + + + + TheHut.com (partial) + + ruleset + + name + TheHut.com (partial) + rule + + + from + ^https?://static\d\.thcdn\.com/ + to + https://thehut.pantherssl.com/ + + + from + ^https?://(?:www\.)?thehut\.com/([\w-]+\.info|c-images/|common/|c-scripts/|css/|hutint/) + to + https://www.thehut.com/$1 + + + from + ^http://tracking\.thehut\.net/ + to + https://tracking.thehut.net/ + + + securecookie + + host + ^tracking\.thehut\.net$ + name + .+ + + target + + + host + *.thcdn.com + + + host + thehut.com + + + host + www.thehut.com + + + host + tracking.thehut.net + + + + + TheJournal.ie + + ruleset + + name + TheJournal.ie + rule + + + from + ^http://s\d\.(?:jrn|thejourna)l\.ie/ + to + https://d1icb8fuiosdrj.cloudfront.net/ + + + from + ^http://static\.jrnl\.ie/ + to + https://static.thejournal.ie/ + + + from + ^http://(?:www\.)?thejournal\.ie/ + to + https://www.thejournal.ie/ + + + from + ^http://(businessetc|thedailyedge|static|thescore)\.thejournal\.ie/ + to + https://$1.thejournal.ie/ + + + from + ^http://cdn\.thejournal\.ie/ + to + https://s3-eu-west-1.amazonaws.com/cdn.thejournal.ie/ + + + securecookie + + host + ^\.thejournal\.ie$ + name + .+ + + target + + + host + *.jrnl.ie + + + host + thejournal.ie + + + host + *.thejournal.ie + + + + + ThePermitStore.com + + ruleset + + name + ThePermitStore.com + rule + + + from + ^http://thepermitstore\.com/ + to + https://thepermitstore.com/ + + + from + ^http://([a-zA-Z0-9\-]+)\.thepermitstore\.com/ + to + https://$1.thepermitstore.com/ + + + securecookie + + host + ^([a-zA-Z0-9\-]*\.)?thepermitstore\.com$ + name + .+ + + target + + + host + thepermitstore.com + + + host + *.thepermitstore.com + + + + + ThePokerChips.net + + ruleset + + name + ThePokerChips.net + rule + + from + ^http://(www\.)?thepokerchips\.net/ + to + https://$1thepokerchips.net/ + + securecookie + + host + ^\.thepokerchips\.net$ + name + .+ + + target + + + host + thepokerchips.net + + + host + *.thepokerchips.net + + + + + TheReadingRoom.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?thereadingroom\.com/(?:$|\?) + + name + TheReadingRoom.com (partial) + rule + + from + ^http://(www\.)?thereadingroom\.com/ + to + https://$1thereadingroom.com/ + + target + + + host + thereadingroom.com + + + host + www.thereadingroom.com + + + + + TheResumator clients (partial) + + ruleset + + name + TheResumator clients (partial) + rule + + from + ^http://jobs\.urbandictionary\.com/ + to + https://urbandictionary.theresumator.com/ + + target + + host + jobs.urbandictionary.com + + + + TheResumator.com (partial) + + ruleset + + exclusion + + pattern + ^http://support\.theresumator\.com/support/ + + name + TheResumator.com (partial) + platform + mixedcontent + rule + + + from + ^http://(app\.|www\.)?theresumator\.com/ + to + https://$1theresumator.com/ + + + from + ^https?://assets\.theresumator\.com/ + to + https://d1o2i4ti2oga3l.cloudfront.net/ + + + from + ^http://(\w+)\.theresumator\.com/(css/|favicon\.ico|img/) + to + https://$1.theresumator.com/$2 + + + securecookie + + host + ^(app\.|www\.)?theresumator\.com$ + name + .* + + target + + + host + theresumator.com + + + host + *.theresumator.com + + + + + TheSafety.US + + ruleset + + name + TheSafety.US + rule + + from + ^http://(?:www\.)?thesafety\.us/ + to + https://thesafety.us/ + + securecookie + + host + ^thesafety\.us$ + name + .+ + + target + + + host + thesafety.us + + + host + www.thesafety.us + + + + + TheSixthAxis.com + + ruleset + + name + TheSixthAxis.com + rule + + from + ^http://(www\.)?thesixthaxis\.com/ + to + https://$1thesixthaxis.com/ + + target + + + host + thesixthaxis.com + + + host + www.thesixthaxis.com + + + + + TheTrainLine + + ruleset + + name + TheTrainLine + platform + mixedcontent + rule + + from + ^http://(?:www\.)?thetrainline\.com/ + to + https://www.thetrainline.com/ + + securecookie + + host + ^(.+\.)?thetrainline\.com$ + name + .* + + target + + + host + thetrainline.com + + + host + www.thetrainline.com + + + + + Theadex + + ruleset + + name + Theadex + rule + + from + ^http://(static|dmp)\.theadex\.com/ + to + https://$1.theadex.com/ + + target + + host + *.theadex.com + + + + Thehackernews.com + + ruleset + + name + Thehackernews.com + rule + + from + ^http://(?:(magazine\.)|www\.)?thehackernews\.com/ + to + https://$1thehackernews.com/ + + securecookie + + host + ^\.thehackernews\.com$ + name + .+ + + target + + + host + thehackernews.com + + + host + *.thehackernews.com + + + + + Theme.co (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?theme\.co/x/demo(?:|[?/]) + + name + Theme.co (partial) + rule + + from + ^http://(www\.)?theme\.co/ + to + https://$1theme.co/ + + target + + + host + theme.co + + + host + www.theme.co + + + + + Themes and Co.com + + ruleset + + exclusion + + pattern + http://themesandco\.com/(?!wp-content/|wp-includes/) + + name + Themes and Co.com + rule + + from + ^http://(www\.)?themesandco\.com/ + to + https://$1themesandco.com/ + + target + + + host + themesandco.com + + + host + www.themesandco.com + + + + + Thepiratebay.sx + + ruleset + + name + Thepiratebay.sx + rule + + from + ^http://(www\.|upload\.)?thepiratebay\.sx/ + to + https://thepiratebay.sx/ + + target + + + host + thepiratebay.sx + + + host + *.thepiratebay.sx + + + + + Therapynotes.com + + ruleset + + name + Therapynotes.com + platform + firefox + rule + + + from + ^http://therapynotes\.com/ + to + https://therapynotes.com/ + + + from + ^http://www\.therapynotes\.com/ + to + https://www.therapynotes.com/ + + + securecookie + + + host + ^therapynotes\.com$ + name + .+ + + + host + ^www\.therapynotes\.com$ + name + .+ + + + target + + + host + therapynotes.com + + + host + www.therapynotes.com + + + + + Thermitic.net (partial) + + ruleset + + name + Thermitic.net (partial) + rule + + from + ^http://stats\.thermitic\.net/ + to + https://stats.thermitic.net/ + + target + + host + stats.thermitic.net + + + + Theses.cz + + ruleset + + name + Theses.cz + rule + + from + ^http://(?:www\.)?theses\.cz/ + to + https://theses.cz/ + + securecookie + + host + ^theses\.cz$ + name + .+ + + target + + + host + theses.cz + + + host + www.theses.cz + + + + + Thijs Alkema.de + + ruleset + + name + Thijs Alkema.de + rule + + from + ^http://(?:(blog\.)|www\.)?thijsalkema\.de/ + to + https://$1thijsalkema.de/ + + target + + + host + thijsalkema.de + + + host + *.thijsalkema.de + + + + + ThingLink (partial) + + ruleset + + name + ThingLink (partial) + rule + + + from + ^http://(www\.)?thinglink\.com/ + to + https://$1thinglink.com/ + + + from + ^http://cdn\.thinglink\.me/ + to + https://cdn.thinglink.me/ + + + securecookie + + + host + ^(?:www)?\.thinglink\.com$ + name + .+ + + + host + ^cdn\.thinglink\.me$ + name + .+ + + + target + + + host + thinglink.com + + + host + *.thinglink.com + + + host + cdn.thinglink.me + + + + + Thingiverse (partial) + + ruleset + + name + Thingiverse (partial) + rule + + + from + ^http://(?:www\.)?thingiverse\.com/ + to + https://www.thingiverse.com/ + + + from + ^http://support\.thingiverse\.com/ + to + https://thingiverse.tenderapp.com/ + + + securecookie + + host + ^(?:www)?\.thingiverse\.com$ + name + .+ + + target + + + host + thingiverse.com + + + host + *.thingiverse.com + + + + + Think With Google + + ruleset + + name + Think With Google + rule + + from + ^http://(?:www\.)?thinkwithgoogle\.com/ + to + https://www.thinkwithgoogle.com/ + + target + + + host + thinkwithgoogle.com + + + host + *.thinkwithgoogle.com + + + + + ThinkGeek + + ruleset + + name + ThinkGeek + rule + + from + ^http://(?:www\.)?thinkgeek\.com/ + to + https://www.thinkgeek.com/ + + securecookie + + host + ^(.*\.)?thinkgeek\.com$ + name + .* + + target + + + host + thinkgeek.com + + + host + *.thinkgeek.com + + + + + ThinkProgress.org (false MCB) + + ruleset + + exclusion + + pattern + ^http://thinkprogress\.com/justice/\d{4}/\d\/\d\d/\d+/[\w-]+ + + name + ThinkProgress.org (false MCB) + platform + mixedcontent + rule + + from + ^http://thinkprogress\.org/ + to + https://thinkprogress.org/ + + target + + host + thinkprogress.org + + + + Thinking Christian + + ruleset + + name + Thinking Christian + rule + + from + ^https?://(?:www\.)?thinkingchristian\.net/ + to + https://www.thinkingchristian.net/ + + securecookie + + host + ^(?:\.?www)?\.thinkingchristian\.net$ + name + .+ + + target + + + host + thinkingchristian.net + + + host + *.thinkingchristian.net + + + + + Third Door Media (partial) + + ruleset + + name + Third Door Media (partial) + platform + mixedcontent + rule + + + from + ^http://www\.searchengineland\.com/ + to + https://www.searchengineland.com/ + + + from + ^http://searchengineland\.com/figz/ + to + https://searchengineland.com/figz/ + + + from + ^http://(www\.)?searchmarketing(expo|now)\.com/ + to + https://$1searchmarketing(expo|now).com/ + + + target + + + host + searchengineland.com + + + host + www.searchengineland.com + + + host + searchmarketingexpo.com + + + host + www.searchmarketingexpo.com + + + host + searchmarketingnow.com + + + host + www.searchmarketingnow.com + + + + + ThirdAge (partial) + + ruleset + + name + ThirdAge (partial) + rule + + + from + ^http://(ww[w3]\.)?thirdage\.com/ + to + https://$1thirdage.com/ + + + from + ^https?://cast\.thirdage\.com/ + to + https://www.thirdage.com/ + + + target + + + host + thirdage.com + + + host + *.thirdage.com + + + + + ThirdPresence.com (partial) + + ruleset + + name + ThirdPresence.com (partial) + rule + + from + ^http://files\.thirdpresence\.com/ + to + https://s3-eu-west-1.amazonaws.com/files.thirdpresence.com/ + + target + + host + files.thirdpresence.com + + + + Thirty Meter Telescope (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?tmt\.org/(?!images/|sites/) + + name + Thirty Meter Telescope (partial) + rule + + from + ^http://(profiles\.|project\.|www\.)?tmt\.org/ + to + https://$1tmt.org/ + + securecookie + + host + ^\.profiles\.tmt\.org$ + name + .+ + + target + + + host + tmt.org + + + host + *.tmt.org + + + + + ThisWebHost + + ruleset + + name + ThisWebHost + rule + + from + ^http://(?:www\.)?thiswebhost\.com/ + to + https://www.thiswebhost.com/ + + securecookie + + host + ^(.+\.)?thiswebhost\.com$ + name + .* + + target + + + host + thiswebhost.com + + + host + www.thiswebhost.com + + + + + ThisisColossal.com (false MCB) + + ruleset + + name + ThisisColossal.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?colossal\.com/ + to + https://www.colossal.com/ + + securecookie + + host + ^\.colossal\.com$ + name + .+ + + target + + + host + colossal.com + + + host + *.colossal.com + + + + + Thompson.com + + ruleset + + name + Thompson.com + rule + + from + ^http://(?:www\.)?thompson\.com/ + to + https://www.thompson.com/ + + securecookie + + host + ^www\.thompson\.com$ + name + .+ + + target + + + host + thompson.com + + + host + www.thompson.com + + + + + Thomson Reuters (partial) + + ruleset + + exclusion + + + pattern + ^http://legalsolutions\.thomsonreuters\.com/+(?!favicon\.ico|law-products/(?:_ui|onlineopinionV5|static|stylesheets)/|medias/) + + + pattern + ^http://newsandinsight\.thomsonreuters\.com/(?!favicon\.ico$|(?:Help|Legal/Login|PrivacyPolicy|TermsOfUse)\.aspx|uploadedimages/|UserSettings\.aspx|Web/) + + + name + Thomson Reuters (partial) + rule + + from + ^http://(assets\.gcs|insidecareers|legalsolutions|info\.legalsolutions|myaccount|newsandinsight|signon|thehub)\.thomsonreuters\.com/ + to + https://$1.thomsonreuters.com/ + + securecookie + + host + ^(?:assets\.gcs|info\.legalsolutions|myaccount|signon|thehub)\.thomsonreuters\.com$ + name + .+ + + target + + host + *.thomsonreuters.com + + + + Thomson.com (partial) + + ruleset + + name + Thomson.com (partial) + rule + + from + ^http://(safe|myaccount\.west)\.thomson\.com/ + to + https://$1.thomson.com/ + + securecookie + + host + ^(?:safe|(?:images|myaccount)\.west)\.thomson\.com$ + name + .+ + + target + + host + *.thomson.com + + + + ThoughtStreams.io + + ruleset + + name + ThoughtStreams.io + rule + + from + ^http://thoughtstreams\.io/ + to + https://thoughtstreams.io/ + + securecookie + + host + ^thoughtstreams\.io$ + name + .+ + + target + + host + thoughtstreams.io + + + + ThoughtWorks.com (partial) + + ruleset + + name + ThoughtWorks.com (partial) + rule + + from + ^http://(www\.)?thoughtworks\.com/(?=\d+_grid/css/|css/|imgs/) + to + https://$1thoughtworks.com/ + + target + + + host + thoughtworks.com + + + host + www.thoughtworks.com + + + + + Thread.com + + ruleset + + name + Thread.com + rule + + from + ^http://(www\.)?thread\.com/ + to + https://$1thread.com/ + + target + + + host + thread.com + + + host + www.thread.com + + + + + Threading Building Blocks + + ruleset + + name + Threading Building Blocks + rule + + from + ^https?://(?:www\.)?threadingbuildingblocks\.org/ + to + https://threadingbuildingblocks.org/ + + securecookie + + host + ^\.threadingbuildingblocks\.org$ + name + .* + + target + + + host + threadingbuildingblocks.org + + + host + *.threadingbuildingblocks.org + + + + + ThreatMetrix.com (false MCB) + + ruleset + + name + ThreatMetrix.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?threatmetrix\.com/ + to + https://$1threatmetrix.com/ + + securecookie + + host + ^(?:www\.)?threatmetrix\.com$ + name + .+ + + target + + + host + threatmetrix.com + + + host + *.threatmetrix.com + + + + + ThreatMetrix.com (partial) + + ruleset + + name + ThreatMetrix.com (partial) + rule + + from + ^http://(www\.)?threatmetrix\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1threatmetrix.com/ + + target + + + host + threatmetrix.com + + + host + www.threatmetrix.com + + + + + ThreatPost + + ruleset + + name + ThreatPost + rule + + from + ^http://(www\.)?threatpost\.com/ + to + https://$1threatpost.com/ + + securecookie + + host + ^\.?threatpost\.com$ + name + .+ + + target + + + host + threatpost.com + + + host + *.threatpost.com + + + + + ThreatTrack Security.com + + ruleset + + name + ThreatTrack Security.com + rule + + from + ^http://(www\.)?threattracksecurity\.com/ + to + https://$1threattracksecurity.com/ + + target + + + host + threattracksecurity.com + + + host + www.threattracksecurity.com + + + + + Three + + ruleset + + name + Three + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?three\.ie/ + to + https://www.three.ie/ + + + from + ^http://threestore\.three\.co\.uk/ + to + https://threestore.three.co.uk/ + + + target + + + host + three.ie + + + host + www.three.ie + + + host + threestore.three.co.uk + + + + + Threema + + ruleset + + name + Threema + rule + + from + ^http://(shop\.|www\.)?threema\.ch/ + to + https://$1threema.ch/ + + target + + + host + *.threema.ch + + + host + threema.ch + + + + + Thumbshots (partial) + + ruleset + + name + Thumbshots (partial) + rule + + + from + ^http://thumbshots\.com/ + to + https://thumbshots.com/ + + + from + ^http://(www\.)?thumbshots\.(?:com|net)/(admin/|DesktopModules/|images/|[pP]ortals/|register\.aspx|SecureLogin|Telerik\.Web\.UI\.WebResource\.axd) + to + https://$1thumbshots.com/$2 + + + from + ^http://(www\.)?thumbshots\.org/ + to + https://$1thumbshots.com/ + + + from + ^http://open\.thumbshots\.(?:com|org)/ + to + https://open.thumbshots.com/ + + + target + + + host + thumbshots.* + + + host + *.thumbshots.com + + + host + *.thumbshots.net + + + host + *.thumbshots.org + + + + + Thunder Ranch + + ruleset + + name + Thunder Ranch + rule + + from + ^http://(?:www\.)?thunderranchinc\.com/ + to + https://www.thunderranchinc.com/ + + target + + + host + thunderranchinc.com + + + host + www.thunderranchinc.com + + + + + Thunderclap.it + + ruleset + + name + Thunderclap.it + rule + + from + ^http://(?:www\.)?thunderclap\.it/ + to + https://www.thunderclap.it/ + + securecookie + + host + ^www\.thunderclap\.it$ + name + .+ + + target + + + host + thunderclap.it + + + host + www.thunderclap.it + + + + + Thunderkick + + ruleset + + name + Thunderkick + rule + + from + ^http://(content\.|www\.)?thunderkick\.com/ + to + https://$1thunderkick.com/ + + target + + + host + thunderkick.com + + + host + *.thunderkick.com + + + + + Ti.to + + ruleset + + name + Ti.to + rule + + from + ^http://(?:www\.)?ti(\.to|to\.io)/ + to + https://ti$1/ + + target + + + host + ti.to + + + host + www.ti.to + + + host + tito.io + + + host + www.tito.io + + + + + Tickengo + + ruleset + + name + Tickengo + rule + + + from + ^https?://(?:www\.)?tickengo\.(ca|com|fr)/ + to + https://tickengo.$1/ + + + from + ^http://fr\.tickengo\.ca/ + to + https://fr.tickengo.ca/ + + + securecookie + + host + ^tickengo\.(?:com|fr)$ + name + .+ + + target + + + host + tickengo.* + + + host + www.tickengo.* + + + host + fr.tickengo.ca + + + + + Ticker Madness.com + + ruleset + + name + Ticker Madness.com + rule + + from + ^http://www\.tickermadness\.com/ + to + https://www.tickermadness.com/ + + securecookie + + host + ^www\.tickermadness\.com$ + name + .+ + + target + + host + www.tickermadness.com + + + + TickerTech.com + + ruleset + + name + TickerTech.com + rule + + from + ^http://(?:secure\.|www\.)?tickertech\.com/ + to + https://secure.tickertech.com/ + + target + + + host + tickertech.com + + + host + *.tickertech.com + + + + + Ticket Driver + + ruleset + + name + Ticket Driver + rule + + from + ^http://(www\.)?ticketdriver\.com/ + to + https://$1ticketdriver.com/ + + securecookie + + host + ^(?:w*\.)?ticketdriver\.com$ + name + .+ + + target + + + host + ticketdriver.com + + + host + *.ticketdriver.com + + + + + Ticket Online + + ruleset + + name + Ticket Online + rule + + + from + ^https?://(?:www\.)?ticketonline\.de/ + to + https://www.ticketonline.de/ + + + from + ^http://secure\.ticketonline\.de/ + to + https://secure.ticketonline.de/ + + + securecookie + + host + ^.*\.ticketonline\.de$ + name + .+ + + target + + + host + ticketonline.de + + + host + *.ticketonline.de + + + + + TicketOne + + ruleset + + name + TicketOne + rule + + + from + ^https?://(?:www\.)?ticketone\.it/ + to + https://www.ticketone.it/ + + + from + ^http://secure\.ticketone\.it/ + to + https://secure.ticketone.it/ + + + securecookie + + host + ^.+\.ticketone\.it$ + name + .+ + + target + + + host + ticketone.it + + + host + *.ticketone.it + + + + + Ticketcorner + + ruleset + + name + Ticketcorner + rule + + + from + ^https?://(?:www\.)?ticketcorner\.ch/ + to + https://www.ticketcorner.ch/ + + + from + ^http://secure\.ticketcorner\.ch/ + to + https://secure.ticketcorner.ch/ + + + target + + + host + ticketcorner.ch + + + host + *.ticketcorner.ch + + + + + TicketingNetworkEastMidlands + + ruleset + + name + TicketingNetworkEastMidlands + rule + + + from + ^http://ticketingnetworkeastmidlands\.co\.uk/ + to + https://ticketingnetworkeastmidlands.co.uk/ + + + from + ^http://www\.ticketingnetworkeastmidlands\.co\.uk/ + to + https://www.ticketingnetworkeastmidlands.co.uk/ + + + from + ^http://ticketing\.trch\.co\.uk/ + to + https://ticketing.trch.co.uk/ + + + securecookie + + host + ^(.+\.)?(ticketingnetworkeastmidlands|ticketing\.trch)\.co\.uk$ + name + .* + + target + + + host + ticketingnetworkeastmidlands.co.uk + + + host + www.ticketingnetworkeastmidlands.co.uk + + + host + ticketing.trch.co.uk + + + + + Ticketmaster (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?(?:billetnet\.dk|billettservice\.no|lippupalvelu\.fi|ticketmaster\.(?:de|nl))/(?!assets/|myAccount|resource/|static/|theme/|tm-\w\wprod\.112\.2O7\.net/) + + name + Ticketmaster (partial) + rule + + + from + ^http://(?:www\.)?(?:billet(?:net\.dk|tservice\.no)|lippupalvelu\.fi|ticketmaster\.(?:de|nl))/tm-(\w\w)prod\.112\.2O7\.net/ + to + https://tm-$1prod.112.2o7.net/ + + + from + ^http://(?:www\.)?admission\.com/(resourc|them)e/ + to + https://www.admission.com/$1e/ + + + from + ^http://(?:www\.)?billetnet\.dk/ + to + https://www.billetnet.dk/ + + + from + ^https?://(?:www\.)?eticketing\.co\.uk/ + to + https://www.eticketing.co.uk/ + + + from + ^http://(?:www\.)?lippupalvelu\.fi/ + to + https://www.lippupalvelu.fi/ + + + from + ^http://(?:www\.)?ticket(?:ek|master)\.cl/ + to + https://www.ticketek.cl/ + + + from + ^http://(?:www\.)?ticketmaster\.(ca|com\.(?:au|nz|mx)|ie)/favicon-rebrand\.ico + to + https://www.ticketmaster.$1/favicon-rebrand.ico + + + from + ^https?://(?:www\.)?ticketmaster\.com/(app/|checkout/|h/|json/|member(?:$|\?|/)) + to + https://www.ticketmaster.com/$1 + + + from + ^http://media\.ticketmaster\.com/ + to + https://a248.e.akamai.net/f/248/905/10m/origin.media.ticketmaster.com/ + + + from + ^http://(ds|mm|secure\.store)\.ticketmaster\.com/ + to + https://$1.ticketmaster.com/ + + + from + ^http://metrics\.ticketmaster\.com/ + to + https://ticketmaster-com.d2.sc.omtrdc.net/ + + + from + ^http://ticketsnow\.ticketmaster\.com/(DataProviders/|Scripts/|TopCitiesDropDownListGenerator\.aspx|UI/) + to + https://ticketsnow.ticketmaster.com/$1 + + + from + ^http://(?:www\.)?ticketmaster\.co\.uk/(?:section)?(\?.*)?$ + to + https://www.ticketmaster.co.uk/section/$1 + + + from + ^http://(?:www\.)?ticketmaster\.co\.uk/ + to + https://www.ticketmaster.co.uk/ + + + from + ^http://media\.ticketmaster\.co\.uk/ + to + https://a248.e.akamai.net/f/248/905/10m/origin.media.ticketmaster.co.uk/ + + + from + ^http://reviews\.ticketmaster\.co\.uk/(logging(?:$|\?)|\d+-\w\w_\w\w/\d+/reviews\.htm\?.*format=embedded|static/) + to + https://ticketmaster.ugc.bazaarvoice.com/$1 + + + from + ^http://(?:www\.)?ticketmaster\.(de|es|nl)/ + to + https://www.ticketmaster.$1/ + + + from + ^http://(?:www\.)?ticketmaster\.dk/ + to + https://www.billetnet.dk/ + + + from + ^http://media\.ticketmaster\.eu/ + to + https://media.ticketmaster.eu/ + + + from + ^http://(?:www\.)?ticketnet\.fr/(assets|static)/ + to + https://www.ticketnet.fr/$1/ + + + from + ^http://(?:www\.)?ticketweb\.com/ + to + https://www.ticketweb.com/ + + + from + ^http://i\.ticketweb\.com/ + to + https://a248.e.akamai.net/f/248/15404/24h/i.ticketweb.com/ + + + from + ^http://(?:www\.)?ticketweb\.co\.uk/(images/|INFO/|giftcards|member|partners/|section/|styles\.css|twpurple\.html|ukcontent\.css|user/gb_northeast/order/|venuepages/|[\w\./-]+\.html$|[\w-]+/artist/\d+) + to + https://www.ticketweb.co.uk/$1 + + + securecookie + + + host + ^www\.eticketing\.co\.uk$ + name + .+ + + + host + ^\.ticketmaster\.com$ + name + ^s_vi$ + + + host + ^de\.ticketmaster\.com$ + name + .+ + + + target + + + host + admission.com + + + host + www.admission.com + + + host + billetnet.dk + + + host + www.billetnet.dk + + + host + billettservice.no + + + host + www.billettservice.no + + + host + eticketing.co.uk + + + host + www.eticketing.co.uk + + + host + lippupalvelu.fi + + + host + www.lippupalvelu.fi + + + host + ticketmaster.* + + + host + www.ticketmaster.* + + + host + *.ticketmaster.com + + + host + ticketmaster.co.uk + + + host + *.ticketmaster.co.uk + + + host + media.ticketmaster.eu + + + host + ticketweb.* + + + host + *.ticketweb.com + + + host + www.ticketweb.co.uk + + + + + Ticketportal.sk + + ruleset + + name + Ticketportal.sk + rule + + from + ^http://(www\.|ssl\.)?ticketportal\.sk/ + to + https://ssl.ticketportal.sk/ + + target + + + host + ticketportal.sk + + + host + www.ticketportal.sk + + + host + ssl.ticketportal.sk + + + + + Ticketpro (partial) + + ruleset + + name + Ticketpro (partial) + rule + + from + ^http://shop\.ticketpro\.hu/ + to + https://shop.ticketpro.hu/ + + securecookie + + host + ^shop\.ticketpro\.hu$ + name + .+ + + target + + host + shop.ticketpro.hu + + + + Tickets.com (partial) + + ruleset + + name + Tickets.com (partial) + rule + + + from + ^http://broadcaster\.email-tickets\.com/ + to + https://broadcaster.email-tickets.com/ + + + from + ^http://(?:www\.)?tickets\.com/(images/|user(?:$|[?/])) + to + https://www.tickets.com/$1 + + + from + ^http://facebook\.tickets\.com/[^?]*(\?.*)? + to + https://www.facebook.com/pages/Ticketscom/43749304172$1 + + + from + ^http://(?:frontline\.)?images\.tickets\.com/ + to + https://images.tickets.com/ + + + from + ^http://purchasecdn\.tickets\.com/ + to + https://purchasecdn.tickets.com/ + + + from + ^http://youtube\.tickets\.com/[^?]*(\?.*)? + to + https://www.youtube.com/gototicketsdotcom$1 + + + securecookie + + + host + ^broadcaster\.email-tickets\.com$ + name + .+ + + + host + ^purchasecdn\.tickets\.com$ + name + .+ + + + target + + + host + broadcaster.email-tickets.com + + + host + tickets.com + + + host + *.tickets.com + + + + + TicketsNow (partial) + + ruleset + + name + TicketsNow (partial) + rule + + + from + ^http://(www\.)?ticketsnow\.com/(UI/) + to + https://$1ticketsnow.com/$2 + + + from + ^http://(www\.)?ticketsnow\.com/myTicketsNow/? + to + https://$1ticketsnow.com/myTicketsNow/ + + + from + ^https?://(?:secure)?content\.ticketsnow\.com/ + to + https://securecontent.ticketsnow.com/ + + + target + + + host + ticketsnow.com + + + host + *.ticketsnow.com + + + + + Tictail.com (partial) + + ruleset + + name + Tictail.com (partial) + rule + + + from + ^http://(api\.|www\.)?tictail\.com/ + to + https://$1tictail.com/ + + + from + ^http://(?:blogassets|external\.static)\.tictail\.com/ + to + https://d2q56xp1cg562x.cloudfront.net/ + + + from + ^http://help\.tictail\.com/favicon\.ico + to + https://d3jyn100am7dxp.cloudfront.net/favicon.ico + + + securecookie + + + host + ^\.ticktail\.com$ + name + ^(?:__ar_v4|mp_\w{32}_mixpanel|optimizely\w+|_te_)$ + + + host + ^(?:www\.)?tictail\.com$ + name + .+ + + + target + + + host + tictail.com + + + host + *.tictail.com + + + + + Tid.al (partial) + + ruleset + + name + Tid.al (partial) + rule + + + from + ^http://tid\.al/ + to + https://tid.al/ + + + from + ^http://cdna\.tid\.al/ + to + https://1b40d7834cd36cb17272-d318e241556db478f2443eab8244ec10.ssl.cf2.rackcdn.com/ + + + securecookie + + host + ^tid\.al$ + name + .+ + + target + + + host + tid.al + + + host + cdna.tid.al + + + + + TidBITS + + ruleset + + name + TidBITS + rule + + from + ^http://(www\.)?tidbits\.com/ + to + https://$1tidbits.com/ + + target + + + host + tidbits.com + + + host + www.tidbits.com + + + + + Tidningsnatet.se (partial) + + ruleset + + name + Tidningsnatet.se (partial) + rule + + from + ^http://sifomedia\.tidningsnatet\.se/ + to + https://oasc07.247realmedia.com/ + + securecookie + + host + ^\.tidningsnatet\.se$ + name + (?:NXCLICK2|OAX)$ + + target + + host + sifomedia.tidningsnatet.se + + + + TierraNet (partial) + + ruleset + + exclusion + + pattern + ^http://(blog|support)\. + + name + TierraNet (partial) + rule + + + from + ^https?://tierra\.net/ + to + https://www.tierra.net/ + + + from + ^http://((?:www\.)?control|webmail|www)\.tierra\.net/ + to + https://$1.tierra.net/ + + + securecookie + + host + ^.*\.tierra\.net$ + name + .* + + target + + + host + tierra.net + + + host + *.tierra.net + + + host + www.control.tierra.net + + + + + Tieteellisten seurain valtuuskunta + + ruleset + + name + Tieteellisten seurain valtuuskunta + rule + + from + ^http://(www\.)?tsv\.fi/ + to + https://$1tsv.fi/ + + target + + + host + tsv.fi + + + host + www.tsv.fi + + + + + Tieto.com (partial) + + ruleset + + exclusion + + pattern + ^http://leansystemcommunity\.portal\. + + name + Tieto.com (partial) + rule + + + from + ^http://(?:www\.)?tieto\.com/(?=customer-area(?:$|[?/])|misc/|profiles/\w+/modules/|sites/) + to + https://www.tieto.com/ + + + from + ^http://easyedi\.tieto\.com/ + to + https://easyedi.tietoenator.com/ + + + from + ^http://(\w+)\.portal\.tieto\.com/ + to + https://$1.portal.tieto.com/ + + + securecookie + + + host + ^\.tieto\.com$ + name + ^__utm\w$ + + + host + ^\w+\.portal\.tieto\.com$ + name + .+ + + + target + + + host + tieto.com + + + host + *.tieto.com + + + + + Tietoenator.com (partial) + + ruleset + + name + Tietoenator.com (partial) + rule + + from + ^http://easyedi\.tietoenator\.com/ + to + https://easyedi.tietoenator.com/ + + target + + host + easyedi.tietoenator.com + + + + Tigase.org (partial) + + ruleset + + name + Tigase.org (partial) + rule + + from + ^http://projects\.tigase\.org/ + to + https://projects.tigase.org/ + + securecookie + + host + ^projects\.tigase\.org$ + name + .+ + + target + + host + projects.tigase.org + + + + TigerDirect (partial) + + ruleset + + name + TigerDirect (partial) + rule + + from + ^https?://(?:www\.)?tigerdirect\.com/css/ + to + https://www.tigerdirect.com/css/ + + target + + + host + tigerdirect.com + + + host + www.tigerdirect.com + + + + + Tigr.net + + ruleset + + name + Tigr.net + rule + + from + ^http://(?:www\.)?tigr\.net/ + to + https://tigr.net/ + + target + + + host + tigr.net + + + host + www.tigr.net + + + + + Tiki.org (partial) + + ruleset + + name + Tiki.org (partial) + rule + + from + ^http://((?:branding|dev|doc|edu|info|piwik|profiles|suite|themes|www)\.)?tiki\.org/ + to + https://$1tiki.org/ + + securecookie + + host + ^(?:\w+\.)?tiki\.org$ + name + .+ + + target + + + host + tiki.org + + + host + *.tiki.org + + + + + Tilburg University (partial) + + ruleset + + exclusion + + pattern + ^http://oudesite\.uvt\.nl/(?!imweb2/) + + name + Tilburg University (partial) + rule + + + from + ^http://www\.kub\.nl/[^?]*(\?.*)? + to + https://www.tilburguniversity.edu/nl/alumni/$1 + + + from + ^http://(www\.)?tilberguniversity\.edu/ + to + https://$1tilberguniversity.edu/ + + + from + ^http://edit\.tilburguniversity\.edu/ + to + https://edit.tilburguniversity.edu/ + + + from + ^http://(?:www\.)?tilberguniversity\.nl/[^?]*(\?.*)? + to + https://www.tilberguniversity.edu/$1 + + + from + ^http://(?:www\.)?uvt\.nl/[^?]*(\?.*)? + to + https://www.tilburguniversity.edu/nl$1 + + + from + ^http://(cooper-redir|(?:www\.)?(?:curry|fibonacci|hermite)|(?:edit|www)\.productie\.gx|o?sso|oudesite|stuwww)\.uvt\.nl/ + to + https://$1.uvt.nl/ + + + from + ^http://osso\.uvt\.nl:4443/ + to + https://osso.uvt.nl:4443/ + + + securecookie + + + host + ^www\.tilburguniversity\.edu$ + name + .+ + + + host + ^(?:sso|stuwww)\.uvt\.nl$ + name + .+ + + + target + + + host + www.kub.nl + + + host + tilburguniversity.edu + + + host + *.tilburguniversity.edu + + + host + tilburguniversity.nl + + + host + www.tilburguniversity.nl + + + host + uvt.nl + + + host + *.uvt.nl + + + + + Tilera (partial) + + ruleset + + name + Tilera (partial) + rule + + from + ^http://support\.tilera\.com/ + to + https://support.tilera.com/ + + securecookie + + host + ^support\.tilera\.com$ + name + .* + + target + + host + support.tilera.com + + + + Tim Minchin.com (partial) + + ruleset + + name + Tim Minchin.com (partial) + rule + + from + ^http://cdn1\.timminchin\.com/ + to + https://d1g9yotx740lzx.cloudfront.net/ + + target + + host + cdn1.timminchin.com + + + + Tim Taubert.de + + ruleset + + name + Tim Taubert.de + rule + + from + ^http://(www\.)?timtaubert\.de/ + to + https://$1timtaubert.de/ + + target + + + host + timtaubert.de + + + host + www.timtaubert.de + + + + + Time Clock Deals.com + + ruleset + + name + Time Clock Deals.com + rule + + from + ^http://(www\.)?timeclockdeals\.com/ + to + https://$1timeclockdeals.com/ + + securecookie + + host + ^(?:w*\.)?timeclockdeals\.com$ + name + .+ + + target + + + host + timeclockdeals.com + + + host + *.timeclockdeals.com + + + + + Time Inc (partial) + + ruleset + + name + Time Inc (partial) + rule + + + from + ^http://timeinc\.brightcove\.com\.edgesuite\.net/ + to + https://a248.e.akamai.net/f/1213/768/4m/timeinc.brightcove.com.edgesuite.net/ + + + from + ^http://subscription(-assets)?\.timeinc\.com/ + to + https://subscription$1.timeinc.com/ + + + from + ^http://(i2\.|www\.)?timeinc\.net/ + to + https://$1timeinc.net/ + + + from + ^http://fonts\.timeinc\.net/ + to + https://a248.e.akamai.net/f/1726/2257/9m/fonts.timeinc.net/ + + + from + ^http://img\.timeinc\.net/ + to + https://a248.e.akamai.net/f/850/5111/2m/img.timeinc.net/ + + + from + ^http://img2\.timeinc\.net/ + to + https://a248.e.akamai.net/f/626/1155/10m/img2.timeinc.net/ + + + from + ^http://img2-1\.timeinc\.net/ + to + https://a248.e.akamai.net/f/1449/5599/6m/img2-1.timeinc.net/ + + + from + ^http://img2-2\.timeinc\.net/ + to + https://a248.e.akamai.net/f/1170/3533/10m/img2-2.timeinc.net/ + + + from + ^http://img2-3\.timeinc\.net/ + to + https://a248.e.akamai.net/f/1073/96/1m/img2-3.timeinc.net/ + + + from + ^http://img2-short\.timeinc\.net/ + to + https://a248.e.akamai.net/f/760/1695/4m/img2-short.timeinc.net/ + + + securecookie + + host + ^subscription\.timeinc\.com$ + name + .+ + + target + + + host + timeinc.brightcove.com.edgesuite.net + + + host + *.timeinc.com + + + host + timeinc.net + + + host + *.timeinc.net + + + + + TimeTrade.com + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?timetrade\.com/(?!app/|book/|files/|td(?:$|\?|/)) + + name + TimeTrade.com + rule + + from + ^http://((?:cdn|schedule|www)\.)?timetrade\.com/ + to + https://$1timetrade.com/ + + target + + + host + timetrade.com + + + host + *.timetrade.com + + + + + TimeWeb + + ruleset + + name + TimeWeb + rule + + + from + ^http://(?:www\.)?timeweb\.ru/ + to + https://timeweb.ru/ + + + from + ^http://(cp|webmail)\.timeweb\.ru/ + to + https://$1.timeweb.ru/ + + + securecookie + + host + ^(?:.*\.)?timeweb\.ru$ + name + .+ + + target + + + host + timeweb.ru + + + host + *.timeweb.ru + + + + + Times Record News (partial) + + ruleset + + name + Times Record News (partial) + rule + + + from + ^http://(?:www\.)?timesrecordnews\.com/ + to + https://www.timesrecordnews.com/ + + + from + ^http://media\.timesrecordnews\.com/ + to + https://images.scrippsing.com/ + + + from + ^http://web\.timesrecordnews\.com/ + to + https://a248.e.akamai.net/f/1767/1649/9f/web.timesrecordnews.com/ + + + target + + + host + timesrecordnews.com + + + host + *.timesrecordnews.com + + + + + TimesofMoney + + ruleset + + name + TimesofMoney + rule + + from + ^http://(?:www\.)?timesofmoney\.com/ + to + https://www.timesofmoney.com/ + + securecookie + + host + ^www\.timesofmoney\.com$ + name + .+ + + target + + + host + timesofmoney.com + + + host + www.timesofmoney.com + + + + + Timex + + ruleset + + name + Timex + rule + + from + ^http://(www\.)?timex\.com/ + to + https://$1timex.com/ + + securecookie + + host + ^www\.timex\.com$ + name + .+ + + target + + + host + timex.com + + + host + www.timex.com + + + + + TinEye (partial) + + ruleset + + name + TinEye (partial) + rule + + + from + ^https?://(?:www\.)?pixid\.ideeinc\.com/ + to + https://pixid.ideeinc.com/ + + + from + ^http://((?:img|services|www)\.)?tineye\.com/ + to + https://$1tineye.com/ + + + securecookie + + host + ^www\.tineye\.com$ + name + .* + + target + + + host + pixid.ideeinc.com + + + host + www.pixid.ideeinc.com + + + host + tineye.com + + + host + *.tineye.com + + + + + Tindie.com (partial) + + ruleset + + name + Tindie.com (partial) + rule + + from + ^http://(www\.)?tindie\.com/ + to + https://$1tindie.com/ + + securecookie + + host + ^www\.tindie\.com$ + name + .+ + + target + + + host + tindie.com + + + host + www.tindie.com + + + + + Tinfoil Security.com + + ruleset + + name + Tinfoil Security.com + rule + + + from + ^http://(www\.)?tinfoil\.co/ + to + https://$1tinfoil.co/ + + + from + ^http://(blog\.|www\.)?tinfoilsecurity\.com/ + to + https://$1tinfoilsecurity.com/ + + + securecookie + + host + ^\.tinfoilsecurity\.com$ + name + .+ + + target + + + host + tinfoil.co + + + host + www.tinfoil.co + + + host + tinfoilsecurity.com + + + host + *.tinfoilsecurity.com + + + + + Ting.com + + ruleset + + name + Ting.com + rule + + from + ^http://(?:(help\.|static\.)|www\.)?ting\.com/ + to + https://$1ting.com/ + + securecookie + + host + ^(?:.*\.)?ting\.com$ + name + .+ + + target + + + host + ting.com + + + host + *.ting.com + + + + + Tinkerforge.com (partial) + + ruleset + + name + Tinkerforge.com (partial) + rule + + from + ^http://(www\.)?tinkerforge\.com/(?=shop(?:$|[?/])|static/) + to + https://$1tinkerforge.com/ + + target + + + host + tinkerforge.com + + + host + www.tinkerforge.com + + + + + Tintup.com + + ruleset + + name + Tintup.com + rule + + from + ^http://(www\.)?tintup\.com/ + to + https://$1tintup.com/ + + securecookie + + host + ^\.tintup\.com$ + name + .+ + + target + + + host + tintup.com + + + host + *.tintup.com + + + + + Tiny Buddha.com (partial) + + ruleset + + name + Tiny Buddha.com (partial) + rule + + from + ^http://cdn\.tinybuddha\.com/ + to + https://cdn.tinybuddha.com/ + + target + + host + cdn.tinybuddha.com + + + + Tiny.cc + + ruleset + + name + Tiny.cc + rule + + from + ^http://(www\.)?tiny\.cc/ + to + https://$1tiny.cc/ + + securecookie + + host + ^(?:\.|www\.)?tiny\.cc$ + name + .+ + + target + + + host + tiny.cc + + + host + *.tiny.cc + + + + + TinyBites + + ruleset + + name + TinyBites + rule + + from + ^http://(www\.)?tinybytes\.me/ + to + https://$1tinybytes.me/ + + securecookie + + host + ^\.tinybytes\.me$ + name + .+ + + target + + + host + tinybytes.me + + + host + *.tinybytes.me + + + + + TinyChat + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?tinychat\.com/nsfw + + + pattern + ^http://(?:www\.)?tinychat\.com/api/find.room/lobby\?site=nsfw + + + name + TinyChat + platform + mixedcontent + rule + + from + ^http://(?:www\.)?tinychat\.com/ + to + https://tinychat.com/ + + target + + + host + tinychat.com + + + host + www.tinychat.com + + + + + TinyLetter.com + + ruleset + + name + TinyLetter.com + rule + + from + ^http://(app\.|www\.)?tinyletter\.com/ + to + https://$1tinyletter.com/ + + securecookie + + host + ^app\.tinyletter\.com$ + name + .+ + + target + + + host + tinyletter.com + + + host + *.tinyletter.com + + + + + TinyPNG + + ruleset + + name + TinyPNG + rule + + from + ^http://(?:www\.)?tinypng\.com/ + to + https://tinypng.com/ + + target + + + host + tinypng.com + + + host + *.tinypng.com + + + + + TinyURL + + ruleset + + name + TinyURL + rule + + from + ^http://(?:www\.)?tinyurl\.com/ + to + https://tinyurl.com/ + + securecookie + + host + ^\.tinyurl\.com$ + name + .+ + + target + + + host + tinyurl.com + + + host + *.tinyurl.com + + + + + Tinypass.com (false MCB) + + ruleset + + name + Tinypass.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(publisher|www)\.tinypass\.com/ + to + https://$1.tinypass.com/ + + securecookie + + host + ^\.tinypass\.com$ + name + .+ + + target + + host + *.tinypass.com + + + + Tinypass.com (partial) + + ruleset + + exclusion + + + pattern + ^http://publisher\.tinypass\.com/+(?!guide/(?:assets|media|plugins)/) + + + pattern + ^http://www\.tinypass\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + + name + Tinypass.com (partial) + rule + + from + ^http://((?:cdn|code|dashboard|publisher|www)\.)?tinypass\.com/ + to + https://$1tinypass.com/ + + target + + + host + tinypass.com + + + host + cdn.tinypass.com + + + host + code.tinypass.com + + + host + dashboard.tinypass.com + + + host + publisher.tinypass.com + + + host + www.tinypass.com + + + + + Tipico.de + + ruleset + + name + Tipico.de + rule + + from + ^http://(www\.)?tipico\.de/ + to + https://$1tipico.de/ + + securecookie + + + host + ^\.tipico\.de$ + name + ^affiliateId$ + + + host + ^(?:www\.)?tipico\.de$ + name + .+ + + + target + + + host + tipico.de + + + host + *.tipico.de + + + + + Tire Metro + + ruleset + + name + Tire Metro + rule + + from + ^http://(www\.)?tiremetroonline\.com/ + to + https://$1tiremetroonline.com/ + + securecookie + + host + ^(?:.*\.)?tiremetroonline\.com$ + name + .+ + + target + + + host + tiremetroonline.com + + + host + *.tiremetroonline.com + + + + + Tirerack + + ruleset + + name + Tirerack + rule + + from + ^http://(www\.)?tirerack\.com/ + to + https://www.tirerack.com/ + + target + + + host + www.tirerack.com + + + host + tirerack.com + + + + + Tires N' Wheels + + ruleset + + name + Tires N' Wheels + rule + + from + ^http://(www\.)?tiresnwheels\.ca/ + to + https://$1tiresnwheels.ca/ + + securecookie + + host + ^(?:.*\.)?tiresnwheels\.ca$ + name + .+ + + target + + + host + tiresnwheels.ca + + + host + *.tiresnwheels.ca + + + + + Tiscali.it (partial) + + ruleset + + name + Tiscali.it (partial) + rule + + from + ^http://(assistenza|mail|selfcare|webcenter)\.tiscali\.it/ + to + https://$1.tiscali.it/ + + securecookie + + host + ^mail\.tiscali\.it$ + name + .+ + + target + + host + *.tiscali.it + + + + TitanPad.com + + ruleset + + name + TitanPad.com + rule + + from + ^http://(www\.)?titanpad\.com/ + to + https://$1titanpad.com/ + + securecookie + + host + ^\.titanpad\.com$ + name + .+ + + target + + + host + titanpad.com + + + host + *.titanpad.com + + + + + Titanfile.com + + ruleset + + name + Titanfile.com + rule + + from + ^http://(www\.)?titanfile\.com/ + to + https://www.titanfile.com/ + + target + + + host + titanfile.com + + + host + www.titanfile.com + + + + + Titania.com + + ruleset + + name + Titania.com + rule + + from + ^http://(?:www\.)?titania\.com/ + to + https://www.titania.com/ + + securecookie + + host + ^www\.titania\.com$ + name + .+ + + target + + + host + titania.com + + + host + www.titania.com + + + + + Titanshare.to + + ruleset + + name + Titanshare.to + rule + + from + ^http://(www\.)?titanshare\.to/ + to + https://$1titanshare.to/ + + securecookie + + host + ^\.?titanshare\.to$ + name + .+ + + target + + + host + titanshare.to + + + host + *.titanshare.to + + + + + Tizen.org + + ruleset + + name + Tizen.org + rule + + from + ^http://((?:bugs|build|developer|download|lists|review|source|wiki|www)\.)?tizen\.org/ + to + https://$1tizen.org/ + + securecookie + + host + ^(?:bugs|build|wiki)\.tizen\.org$ + name + .+ + + target + + + host + tizen.org + + + host + *.tizen.org + + + + + Tjoos (partial) + + ruleset + + name + Tjoos (partial) + rule + + + from + ^http://(www\.)?tjoos\.com/([iI])mg/ + to + https://$1tjoos.com/$2mg/ + + + from + ^https?://store\.img0\.tjoos\.com/ + to + https://d1orxobvizj2av.cloudfront.net/ + + + from + ^https?://store\.img1\.tjoos\.com/ + to + https://d3ivv5oi68ept2.cloudfront.net/ + + + from + ^https?://store\.img2\.tjoos\.com/ + to + https://d1cqgyjxjycyec.cloudfront.net/ + + + from + ^https?://store\.img3\.tjoos\.com/ + to + https://d35h6lli6lzgmi.cloudfront.net/ + + + target + + + host + tjoos.com + + + host + *.tjoos.com + + + + + Tmcnet.com + + ruleset + + name + Tmcnet.com + platform + mixedcontent + rule + + from + ^http://(www\.)?tmcnet\.com/ + to + https://$1tmcnet.com/ + + target + + + host + tmcnet.com + + + host + www.tmcnet.com + + + + + Today.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?today\.com/(?!default\.ashx/id/|favicon\.ico|js/|Today/assets/) + + + pattern + ^http://nvcdn\.today\.com/[^/]*$ + + + pattern + ^http://(?:www\.)?today\.com/Today/assets/desktopCss/ + + + name + Today.com (partial) + rule + + + from + ^http://(?:www\.)?today\.com/ + to + https://a248.e.akamai.net/f/205/8773/8m/www.today.com/ + + + from + ^http://nvcdn\.today\.com/ + to + https://a248.e.akamai.net/f/1638/5769/3m/nvcdn.today.com/ + + + from + ^http://on\.today\.com/ + to + https://bit.ly/ + + + target + + + host + today.com + + + host + *.today.com + + + + + Todo en Tinta + + ruleset + + name + Todo en Tinta + rule + + from + ^http://(www\.)?ahorroentinta\.com/ + to + https://$1ahorroentinta.com/ + + securecookie + + host + ^\.ahorroentinta\.com$ + name + .+ + + target + + + host + ahorroentinta.com + + + host + *.ahorroentinta.com + + + + + TodoLy + + ruleset + + name + TodoLy + rule + + from + ^http://(?:www\.)?todo\.ly/ + to + https://todo.ly/ + + securecookie + + host + ^(.+\.)?todo\.ly$ + name + .* + + target + + + host + todo.ly + + + host + www.todo.ly + + + + + Todoist + + ruleset + + name + Todoist + rule + + from + ^http://(?:www\.)?todoist\.com/ + to + https://todoist.com/ + + target + + host + todoist.com + + + + TofinoSecurity + + ruleset + + name + TofinoSecurity + rule + + from + ^http://(?:www\.)?tofinosecurity\.com/ + to + https://www.tofinosecurity.com/ + + target + + + host + www.tofinosecurity.com + + + host + tofinosecurity.com + + + + + Toga Hotels (partial) + + ruleset + + name + Toga Hotels (partial) + rule + + from + ^http://(www\.)?togahotels\.com/(asset|template)s/ + to + https://$1togahotels.com/$2s/ + + target + + + host + togahotels.com + + + host + www.togahotels.com + + + + + TokBox + + ruleset + + name + TokBox + rule + + + from + ^http://(s?www\.)?tokbox\.com/ + to + https://$1tokbox.com/ + + + from + ^https?://static\.opentok\.com/ + to + https://swww.tokbox.com/ + + + target + + + host + tokbox.com + + + host + *.tokbox.com + + + host + static.opentok.com + + + + + Toke.dk + + ruleset + + name + Toke.dk + rule + + from + ^http://kau\.toke\.dk/ + to + https://kau.toke.dk/ + + target + + host + kau.toke.dk + + + + Tokyo Toshokan + + ruleset + + name + Tokyo Toshokan + rule + + + from + ^http://(?:www\.)?tokyotosho\.info/ + to + https://www.tokyotosho.info/ + + + from + ^http://(?:www\.)?tokyotosho\.se/ + to + https://www.tokyotosho.info/ + + + from + ^http://(?:www\.)?tokyo-tosho\.net/ + to + https://www.tokyotosho.info/ + + + securecookie + + host + \.tokyotosho\.info$ + name + trac_.* + + target + + + host + tokyotosho.info + + + host + www.tokyotosho.info + + + host + tokyotosho.se + + + host + www.tokyotosho.se + + + host + tokyo-tosho.net + + + host + www.tokyo-tosho.net + + + + + Tokyo University of Science (partial) + + ruleset + + name + Tokyo University of Science (partial) + rule + + from + ^http://www\.tus\.ac\.jp/ + to + https://www.tus.ac.jp/ + + target + + host + www.tus.ac.jp + + + + Tom's of Maine (partial) + + ruleset + + name + Tom's of Maine (partial) + rule + + + from + ^http://images\.tomsofmainestore\.com/ + to + https://images.tomsofmainestore.com/ + + + from + ^http://(www\.)?tomsofmainestore\.com/webstore/(a4j/|login\.do) + to + https://www.tomsofmainestore.com/webstore/$2 + + + target + + + host + tomsofmainestore.com + + + host + images.tomsofmainestore.com + + + host + www.tomsofmainestore.com + + + + + TomTom International (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?tomtom\.com/(products|support)/ + + name + TomTom International (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?tomtom\.com/(\w+)/ + to + https://$1tomtom.com/$2/ + + + from + ^http://business\.tomtom\.com/ + to + https://business.tomtom.com/ + + + securecookie + + host + ^business.tomtom.com$ + name + .* + + target + + + host + tomtom.com + + + host + business.tomtom.com + + + host + www.tomtom.com + + + + + Tompkins-Cortland Community College + + ruleset + + name + Tompkins-Cortland Community College + platform + mixedcontent + rule + + from + ^http://(www\.)?tc3\.edu/ + to + https://tc3.edu/ + + target + + + host + www.tc3.edu + + + host + tc3.edu + + + + + TonerGiant (partial) + + ruleset + + name + TonerGiant (partial) + rule + + from + ^http://(www\.)?tonergiant\.co\.uk/(css/|favicon\.ico|includes/|login\.asp|media/|version9/|viewBasket\.asp) + to + https://$1tonergiant.co.uk/$2 + + target + + + host + tonergiant.co.uk + + + host + www.tonergiant.co.uk + + + + + Toolbox.com (partial) + + ruleset + + name + Toolbox.com (partial) + rule + + from + ^http://cdn\.toolbox\.com/ + to + https://a248.e.akamai.net/f/90/3687/9/cdn.toolbox.com/ + + target + + host + cdn.toolbox.com + + + + Toolserver + + ruleset + + name + Toolserver + rule + + + from + ^http://(?:www\.)?toolserver\.org/ + to + https://toolserver.org/ + + + from + ^http://(fingerprints|fisheye|jira|journal|svn|wiki)\.toolserver\.org/ + to + https://$1.toolserver.org/ + + + target + + + host + toolserver.org + + + host + *.toolserver.org + + + + + ToorCon.net + + ruleset + + name + ToorCon.net + rule + + from + ^http://(www\.)?toorcon\.net/ + to + https://$1toorcon.net/ + + target + + + host + toorcon.net + + + host + www.toorcon.net + + + + + TopBuy.com.au + + ruleset + + name + TopBuy.com.au + rule + + from + ^http://(groupbuy\.|www\.)?topbuy\.com\.au/ + to + https://$1topbuy.com.au/ + + securecookie + + host + ^(?:.*\.)?topbuy\.com\.au$ + name + .+ + + target + + + host + topbuy.com.au + + + host + *.topbuy.com.au + + + + + TopCoder + + ruleset + + name + TopCoder + platform + mixedcontent + rule + + from + ^http://([\w\-]+\.)?topcoder\.com/ + to + https://$1topcoder.com/ + + securecookie + + host + ^(.*\.)?topcoder\.com$ + name + .* + + target + + + host + topcoder.com + + + host + *.topcoder.com + + + + + TopOption.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.topoption.com/+(?!AppProxy/|ContactUsmediaProxy/|css/|favicon\.ico|homemediaProxy/|images/) + + name + TopOption.com (partial) + rule + + from + ^http://((?:myaccount|widgets|www)\.)?topoption\.com/ + to + https://$1topoption.com/ + + securecookie + + + host + ^(?:myaccount\.|widgets\.)?topoption\.com$ + name + .+ + + + host + ^\.topoption\.com$ + name + ^(?:apTracker|campaignId|subCampaignId)$ + + + target + + + host + topoption.com + + + host + *.topoption.com + + + + + TopatoCo + + ruleset + + name + TopatoCo + rule + + from + ^http://(www\.)?topatoco\.com/ + to + https://$1topatoco.com/ + + securecookie + + host + ^(?:www\.)?topatoco\.com$ + name + .+ + + target + + + host + topatoco.com + + + host + www.topatoco.com + + + + + Tor Project + + ruleset + + exclusion + + pattern + ^http://torperf\.torproject\.org/ + + name + Tor Project + rule + + from + ^http://([^/:@\.]+\.)?torproject\.org/ + to + https://$1torproject.org/ + + securecookie + + host + ^(?:.*\.)?torproject\.org$ + name + .+ + + target + + + host + torproject.org + + + host + *.torproject.org + + + + + Tor2Web + + ruleset + + exclusion + + pattern + ^http://wiki\.tor2web\.org + + name + Tor2Web + rule + + + from + ^http://([^/]+)\.tor2web\.(org|com)/ + to + https://$1.tor2web.org/ + + + from + ^https://([^/]+)\.tor2web\.com/ + to + https://$1.tor2web.org/ + + + target + + + host + *.tor2web.com + + + host + *.tor2web.org + + + + + TorGuard + + ruleset + + name + TorGuard + rule + + from + ^https?://(?:www\.)?torguard\.net/ + to + https://torguard.net/ + + securecookie + + host + ^torguard\.net$ + name + .* + + target + + + host + torguard.net + + + host + www.torguard.net + + + + + TorLock.com + + ruleset + + name + TorLock.com + rule + + from + ^http://(?:www\.)?torlock\.com/ + to + https://www.torlock.com/ + + securecookie + + host + ^(?:w*\.)?torlock\.com$ + name + .+ + + target + + + host + torlock.com + + + host + *.torlock.com + + + + + TorSearch.es + + ruleset + + name + TorSearch.es + rule + + from + ^http://(www\.)?torsearch\.es/ + to + https://$1torsearch.es/ + + target + + + host + torsearch.es + + + host + www.torsearch.es + + + + + Torbit (partial) + + ruleset + + name + Torbit (partial) + rule + + + from + ^https?://(?:(?:www\.)?odi\.io|(?:secure\.|www\.)?torbit\.com)/ + to + https://secure.torbit.com/ + + + from + ^http://torbit\.odn\.io/ + to + https://torbit.odn.io/ + + + from + ^http://insight\.torbit\.com/ + to + https://insight.torbit.com/ + + + securecookie + + host + ^\.torbit\.com$ + name + .+ + + target + + + host + odn.io + + + host + *.odn.io + + + host + torbit.com + + + host + *.torbit.com + + + + + Torcache.net + + ruleset + + name + Torcache.net + rule + + from + ^http://(?:www\.)?torcache\.net/ + to + https://torcache.net/ + + target + + + host + torcache.net + + + host + www.torcache.net + + + + + Toronto Star (partial) + + ruleset + + name + Toronto Star (partial) + rule + + + from + ^http://(?:www\.)?thestar\.com/ + to + https://www.thestar.com/ + + + from + ^http://(emarketing|s|secure)\.thestar\.com/ + to + https://$1.thestar.com/ + + + from + ^http://n\.thestar\.com/ + to + https://thestar-com.122.2o7.net/ + + + securecookie + + host + ^\.thestar\.com$ + name + ^s_\w+$ + + target + + + host + thestar.com + + + host + *.thestar.com + + + + + TorrentFreak.com + + ruleset + + name + TorrentFreak.com + rule + + from + ^http://(www\.)?torrentfreak\.com/ + to + https://$1torrentfreak.com/ + + securecookie + + host + ^(?:w*\.)?torrentfreak\.com$ + name + .+ + + target + + + host + torrentfreak.com + + + host + *.torrentfreak.com + + + + + TorrentFunk.com (false MCB) + + ruleset + + name + TorrentFunk.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.torrentfunk\.com/ + to + https://www.torrentfunk.com/ + + securecookie + + host + ^(?:www)?\.torrentfunk\.com$ + name + .+ + + target + + host + *.torrentfunk.com + + + + TorrentFunk.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.torrentfunk\.com/+(?!favicon\.ico|images/) + + name + TorrentFunk.com (partial) + rule + + from + ^http://(www\.)?torrentfunk\.com/ + to + https://$1torrentfunk.com/ + + target + + + host + torrentfunk.com + + + host + www.torrentfunk.com + + + + + TorrentPrivacy (partial) + + ruleset + + name + TorrentPrivacy (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?torrentprivacy\.com/ + to + https://torrentprivacy.com/ + + securecookie + + host + ^(.*\.)?torrentprivacy\.com$ + name + .* + + target + + + host + torrentprivacy.com + + + host + www.torrentprivacy.com + + + + + Torrentz + + ruleset + + name + Torrentz + rule + + + from + ^http://(www\.)?torrentz\.com/ + to + https://torrentz.eu/ + + + from + ^http://(www\.)?torrentz\.(ch|eu|in|me)/ + to + https://torrentz.$2/ + + + securecookie + + + host + torrentz\.eu$ + name + .* + + + host + torrentz\.in$ + name + .* + + + host + torrentz\.me$ + name + .* + + + host + torrentz\.ch$ + name + .* + + + target + + + host + torrentz.com + + + host + torrentz.eu + + + host + torrentz.in + + + host + torrentz.me + + + host + torrentz.ch + + + host + www.torrentz.com + + + host + www.torrentz.eu + + + host + www.torrentz.in + + + host + www.torrentz.me + + + host + www.torrentz.ch + + + + + TorreyCommerce (partial) + + ruleset + + name + TorreyCommerce (partial) + rule + + from + ^http://(www\.)?torreycommerce\.com/(cdn-cgi/ping|css/|store_image/|Public/|Style/) + to + https://$1torreycommerce.com/$2 + + target + + + host + torreycommerce.com + + + host + www.torreycommerce.com + + + + + TorreyCommerce.net + + ruleset + + name + TorreyCommerce.net + rule + + from + ^http://(www\.)?torreycommerce\.net/ + to + https://$1torreycommerce.net/ + + securecookie + + host + ^\.torreycommerce\.net$ + name + .+ + + target + + + host + torreycommerce.net + + + host + *.torreycommerce.net + + + + + Torservers + + ruleset + + name + Torservers + rule + + + from + ^http://(?:www\.)?torservers\.net/ + to + https://www.torservers.net/ + + + from + ^http://blog\.torservers\.net/ + to + https://blog.torservers.net/ + + + target + + + host + *.torservers.net + + + host + torservers.net + + + + + Toshiba.co.jp (partial) + + ruleset + + exclusion + + pattern + ^http://www\.toshiba\.co\.jp/index_j3.htm + + name + Toshiba.co.jp (partial) + rule + + from + ^http://www\.toshiba\.co\.jp/ + to + https://www.toshiba.co.jp/ + + target + + host + www.toshiba.co.jp + + + + Total Boox + + ruleset + + name + Total Boox + rule + + from + ^http://(www\.)?totalboox\.com/ + to + https://$1totalboox.com/ + + securecookie + + host + ^(?:w*\.)?totalboox\.com$ + name + .+ + + target + + + host + totalboox.com + + + host + *.totalboox.com + + + + + Total Choice Hosting (partial) + + ruleset + + name + Total Choice Hosting (partial) + rule + + + from + ^http://([\w-]+)\.tchmachines\.com/ + to + https://$1.tchmachines.com/ + + + from + ^https?://totalchoicehosting\.com/ + to + https://www.totalchoicehosting.com/ + + + from + ^http://(billing|blog|domains|forums|status|support|www)\.totalchoicehosting\.com/ + to + https://$1.totalchoicehosting.com/ + + + securecookie + + host + .+\.totalchoicehosting\.com$ + name + .+ + + target + + + host + *.tchmachines.com + + + host + totalchoicehosting.com + + + host + *.totalchoicehosting.com + + + + + Total Eyecare + + ruleset + + name + Total Eyecare + rule + + from + ^http://(www\.)?totalicare\.com/ + to + https://$1totalicare.com/ + + securecookie + + host + ^(?:w*\.)?totalicare\.com$ + name + .+ + + target + + + host + totalicare.com + + + host + *.totalicare.com + + + + + Total Fan Shop.net + + ruleset + + name + Total Fan Shop.net + rule + + from + ^http://(www\.)?totalfanshop\.net/ + to + https://$1totalfanshop.net/ + + securecookie + + host + ^\.(?:www\.)?totalfanshop\.net$ + name + .+ + + target + + + host + totalfanshop.net + + + host + *.totalfanshop.net + + + + + Total Investor + + ruleset + + name + Total Investor + rule + + + from + ^https?://(?:www\.)?totalinvestor\.co\.uk/ + to + https://www.totalinvestor.co.uk/ + + + from + ^https?://userfiles-m\.totalinvestor\.co\.uk/ + to + https://d14vj0hj6x9324.cloudfront.net/ + + + from + ^https?://userfiles-s\.totalinvestor\.co\.uk/ + to + https://d2w8arlr69kjmg.cloudfront.net/ + + + from + ^https?://userfiles-xs\.totalinvestor\.co\.uk/ + to + https://d3tydccictwpfl.cloudfront.net/ + + + securecookie + + host + ^(?:www)?\.totalinvestor\.co\.uk$ + name + .+ + + target + + + host + totalinvestor.co.uk + + + host + *.totalinvestor.co.uk + + + + + Total Web Solutions (partial) + + ruleset + + name + Total Web Solutions (partial) + rule + + + from + ^http://vps-unixweb([1-6])\.totalhostingplus\.com/ + to + https://vps-unixweb$1.totalhostingplus.com/ + + + from + ^http://(merchant|order)\.totalwebsecure\.com/ + to + https://$1.totalwebsecure.com/ + + + from + ^http://store\.totalwebsolutions\.com/ + to + https://store.totalwebsolutions.com/ + + + securecookie + + + host + .+\.totalwebsecure\.com$ + name + .+ + + + host + ^store\.totalwebsolutions\.com$ + name + .+ + + + target + + + host + *.totalhostingplus.com + + + host + *.totalwebsecure.com + + + host + store.totalwebsolutions.com + + + + + TotalBarcode.com + + ruleset + + name + TotalBarcode.com + rule + + from + ^http://(www\.)?totalbarcode\.com/ + to + https://$1totalbarcode.com/ + + securecookie + + host + ^www\.totalbarcode\.com$ + name + .+ + + target + + + host + totalbarcode.com + + + host + www.totalbarcode.com + + + + + Totem + + ruleset + + name + Totem + rule + + + from + ^https?://(?:www\.)?totemapp\.com/ + to + https://www.totemapp.com/ + + + from + ^http://([\w\-]+)\.totemapp\.com/ + to + https://$1.totemapp.com/ + + + securecookie + + host + ^(.*\.)?totemapp\.com$ + name + .* + + target + + + host + totemapp.com + + + host + *.totemapp.com + + + + + TouchCommerce (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + TouchCommerce (partial) + rule + + + from + ^http://([\w\-]+)\.inq\.com/ + to + https://$1.inq.com/ + + + from + ^https?://go\.touchcommerce\.com/(cs|image|r)s/ + to + https://na-j.marketo.com/$1s/ + + + target + + + host + *.inq.com + + + host + go.touchcommerce.com + + + + + TouchNet Information Systems (partial) + + ruleset + + name + TouchNet Information Systems (partial) + rule + + from + ^http://secure\.touchnet\.com/ + to + https://secure.touchnet.com/ + + securecookie + + host + ^secure\.touchnet\.com$ + name + .+ + + target + + host + secure.touchnet.com + + + + Touchstone Network + + ruleset + + name + Touchstone Network + rule + + from + ^http://idp\.touchstonenetwork\.net/ + to + https://idp.touchstonenetwork.net/ + + securecookie + + host + ^idp\.touchstonenetwork\.net$ + name + .+ + + target + + host + idp.touchstonenetwork.net + + + + Tourism and Events Queensland (partial) + + ruleset + + name + Tourism and Events Queensland (partial) + rule + + from + ^http://atdw\.tq\.com\.au/ + to + https://atdw.tq.com.au/ + + securecookie + + host + ^atdw\.tq\.com\.au$ + name + .+ + + target + + host + atdw.tq.com.au + + + + TownNews.com + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?townnews365\.com/(?!content/|favicon\.ico) + + name + TownNews.com + rule + + + from + ^http://(?:townnews365-dot-com\.bloxcms|(?:www\.)?townnews365)\.com/ + to + https://townnews365-dot-com.bloxcms.com/ + + + from + ^http://(secure|stats)\.townnews\.com/ + to + https://$1.townnews.com/ + + + from + ^http://support\.townnews\.com/(\?.*)?$ + to + https://secure.townnews.com/support.townnews.com/custlogin/$1 + + + from + ^http://bloximages\.(chicago2|newyork1)\.vip\.townnews\.com/ + to + https://bloximages.$1.vip.townnews.com/ + + + securecookie + + + host + ^townnews365-dot-com\.bloxcms\.com$ + name + .+ + + + host + ^secure\.townnews\.com$ + name + .+ + + + target + + + host + townnews365-dot-com.bloxcms.com + + + host + *.townnews.com + + + host + townnews365.com + + + host + www.townnews365.com + + + + + Townsville Bottom Fishing Charters.com.au (partial) + + ruleset + + name + Townsville Bottom Fishing Charters.com.au (partial) + rule + + from + ^http://(www\.)?townsvillebottomfishingcharters\.com\.au/(?=BrowserPreview_tmp_01\.jpg|cdn-cgi/ping|favicon\.ico|images/|media/|plugins/|spacer\.gif|templates/) + to + https://$1townsvillebottomfishingcharters.com.au/ + + target + + + host + townsvillebottomfishingcharters.com.au + + + host + www.townsvillebottomfishingcharters.com.au + + + + + Tox.im + + ruleset + + name + Tox.im + rule + + from + ^http://([^/:@]+\.)?tox\.im/ + to + https://$1tox.im/ + + target + + + host + tox.im + + + host + *.tox.im + + + + + ToyFoundry (partial) + + ruleset + + name + ToyFoundry (partial) + rule + + from + ^http://(cdn\.|www\.)?toyfoundry\.net/ + to + https://$1toyfoundry.net/ + + securecookie + + host + ^(?:www\.)?toyfoundry\.net$ + name + .+ + + target + + + host + toyfoundry.net + + + host + *.toyfoundry.net + + + + + Toyota.es (partial) + + ruleset + + name + Toyota.es (partial) + rule + + from + ^http://www2\.toyota\.es/ + to + https://www2.toyota.es/ + + target + + host + www2.toyota.es + + + + Toypics + + ruleset + + name + Toypics + platform + mixedcontent + rule + + from + ^http://videos\.toypics\.net/ + to + https://videos.toypics.net/ + + target + + host + videos.toypics.net + + + + Toys R Us.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.toysrus\.com/+(?!cms_widgets/|css/|favicon\.ico|graphics/|images/|include/|min-cat/|onlineopinionV5/|product/index\.jsp|regCookie\.jsp) + + name + Toys R Us.com (partial) + rule + + from + ^http://(www\.)?toysrus\.com/ + to + https://$1toysrus.com/ + + target + + + host + toysrus.com + + + host + www.toysrus.com + + + + + Tpd.sk + + ruleset + + name + Tpd.sk + rule + + from + ^http://(www\.)?tpd\.sk/ + to + https://www.tpd.sk/ + + target + + + host + tpd.sk + + + host + www.tpd.sk + + + + + TracFone Wireless.com (partial) + + ruleset + + name + TracFone Wireless.com (partial) + rule + + from + ^http://media\.tracfonewireless\.com/ + to + https://media.tracfonewireless.com/ + + securecookie + + host + ^media\.tracfonewireless\.com$ + name + .+ + + target + + host + media.tracfonewireless.com + + + + Trace Register (partial) + + ruleset + + name + Trace Register (partial) + rule + + from + ^http://cdn\.traceregister\.com/ + to + https://cdn.traceregister.com/ + + target + + host + cdn.traceregister.com + + + + Trachtenshop24.de + + ruleset + + name + Trachtenshop24.de + rule + + from + ^http://www\.trachtenshop24\.de/ + to + https://www.trachtenshop24.de/ + + target + + host + *.trachtenshop24.de + + + + Trackalyzer + + ruleset + + name + Trackalyzer + rule + + + from + ^https?://formalyzer\.com/ + to + https://trackalyzer.com/ + + + from + ^http://(www\.)?trackalyzer\.com/ + to + https://$1trackalyzer.com/ + + + from + ^https?://t\d\.trackalyzer\.com/trackalyze(?:_secure)?\.(asp|js) + to + https://trackalyzer.com/trackalyze_secure.$1 + + + from + ^https?://t\d\.trackalyzer\.com/0\.gif + to + https://trackalyzer.com/0.gif + + + securecookie + + host + ^(.*\.)?trackalyzer\.com$ + name + .* + + target + + + host + formalyzer.com + + + host + trackalyzer.com + + + host + *.trackalyzer.com + + + + + TrackingPoint (partial) + + ruleset + + name + TrackingPoint (partial) + rule + + from + ^https?://(?:www\.)?tracking-point\.com/(favicon\.ico|modules/|sites/|(?:labs|user)(?:$|\?|/)) + to + https://tracking-point.com/$1 + + target + + + host + tracking-point.com + + + host + www.tracking-point.com + + + + + Traction-Digital.com (false MCB) + + ruleset + + name + Traction-Digital.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?traction-digital\.com/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://$1traction-digital.com/ + + securecookie + + host + ^traction-digital\.com$ + name + .+ + + target + + + host + traction-digital.com + + + host + www.traction-digital.com + + + + + Traction-Digital.com (partial) + + ruleset + + name + Traction-Digital.com (partial) + rule + + + from + ^http://(www\.)?traction-digital\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1traction-digital.com/ + + + from + ^http://cdn\.transaction-digital\.com/ + to + https://dujdlx1yovuet.cloudfront.net/ + + + securecookie + + host + ^\.traction-digital\.com$ + name + ^__utm\w+$ + + target + + + host + traction-digital.com + + + host + *.traction-digital.com + + + + + TradeKing.com (partial) + + ruleset + + name + TradeKing.com (partial) + rule + + from + ^http://((?:community|investor|static-investor|www)\.)?tradeking\.com/ + to + https://$1tradeking.com/ + + target + + + host + tradeking.com + + + host + *.tradeking.com + + + + + TradeMore Margin.com + + ruleset + + name + TradeMore Margin.com + rule + + from + ^http://(www\.)?trademoremargin\.com/ + to + https://$1trademoremargin.com/ + + securecookie + + host + ^\.trademoremargin\.com$ + name + .+ + + target + + + host + trademoremargin.com + + + host + *.trademoremargin.com + + + + + TradeNetworks (partial) + + ruleset + + name + TradeNetworks (partial) + rule + + from + ^http://(billing|download)\.tradenetworks\.com/ + to + https://$1.tradenetworks.com/ + + securecookie + + host + ^billing\.tradenetworks\.com$ + name + .+ + + target + + host + *.tradenetworks.com + + + + TradePub.com (false MCB) + + ruleset + + name + TradePub.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?tradepub\.com/(?!body_styles\.css|data/|favicon\.ico) + to + https://www.tradepub.com/ + + target + + + host + tradepub.com + + + host + www.tradepub.com + + + + + Tradedoubler (partial) + + ruleset + + name + Tradedoubler (partial) + rule + + from + ^http://(anet|clk|clk\w\w|img|imp\w\w|login|publisher|stardk|tracker)\.tradedoubler\.com/ + to + https://$1.tradedoubler.com/ + + securecookie + + + host + ^\.tradedoubler\.com$ + name + ^(?:ANETC|BT|PI|TD_UNIQUE_IMP|TradeDoublerGUID|UI)$ + + + host + ^(?:login|publisher)\.tradedoubler\.com$ + name + .+ + + + target + + host + *.tradedoubler.com + + + + Tradelab (partial) + + ruleset + + name + Tradelab (partial) + rule + + from + ^http://cdn\.tradelab\.fr/ + to + https://cdn.tradelab.fr/ + + target + + host + cdn.tradelab.fr + + + + Trademarkia.com + + ruleset + + name + Trademarkia.com + rule + + from + ^http://(www\.)?trademarkia\.com/(?=about-trademarkia/privacy\.aspx|css/|fancybox/|fonts/|images/|js/|login\.aspx|services/) + to + https://$1trademarkia.com/ + + target + + + host + trademarkia.com + + + host + www.trademarkia.com + + + + + Traffic Haus (partial) + + ruleset + + name + Traffic Haus (partial) + rule + + from + ^http://(stats\.|www\.)?traffichaus\.com/ + to + https://$1traffichaus.com/ + + target + + + host + traffichaus.com + + + host + *.traffichaus.com + + + + + Traffic Holder (partial) + + ruleset + + name + Traffic Holder (partial) + rule + + + from + ^http://76\.9\.16\.34/ + to + https://secure.trafficholder.com/ + + + from + ^http://(?:secure\.|www\.)?trafficholder\.com/ + to + https://secure.trafficholder.com/ + + + target + + + host + 76.9.16.34 + + + host + trafficholder.com + + + host + *.trafficholder.com + + + + + Traffic Shop + + ruleset + + name + Traffic Shop + rule + + from + ^http://(www\.)?trafficshop\.com/ + to + https://$1trafficshop.com/ + + securecookie + + host + ^www\.trafficshop\.com$ + name + .* + + target + + + host + trafficshop.com + + + host + www.trafficshop.com + + + + + TrafficJunky + + ruleset + + name + TrafficJunky + rule + + from + ^http://((?:ads|cdn\d*|marketplace|www)\.)?trafficjunky\.net/ + to + https://$1trafficjunky.net/ + + securecookie + + host + ^(?:marketplace|www)\.trafficjunky\.net$ + name + .+ + + target + + + host + trafficjunky.net + + + host + *.trafficjunky.net + + + + + TrafficPrivacy + + ruleset + + name + TrafficPrivacy + rule + + from + ^http://(?:www\.)?trafficprivacy\.com/ + to + https://trafficprivacy.com/ + + securecookie + + host + ^trafficprivacy\.com$ + name + .+ + + target + + + host + trafficprivacy.com + + + host + www.trafficprivacy.com + + + + + Trafficfacts.com + + ruleset + + name + Trafficfacts.com + rule + + from + ^http://rt\.trafficfacts\.com/ + to + https://rt.trafficfacts.com/ + + target + + host + rt.trafficfacts.com + + + + Trans Marine + + ruleset + + name + Trans Marine + rule + + from + ^http://(www\.)?transmarine\.org/ + to + https://$1transmarine.org/ + + securecookie + + host + ^(?:www)?\.transmarine\.org$ + name + .+ + + target + + + host + transmarine.org + + + host + *.transmarine.org + + + + + TransIP.nl + + ruleset + + name + TransIP.nl + rule + + from + ^http://(www\.)?transip\.nl/ + to + https://$1transip.nl/ + + target + + + host + transip.nl + + + host + www.transip.nl + + + + + Transact Auto + + ruleset + + name + Transact Auto + rule + + from + ^https?://(?:www\.)?transactauto\.com/ + to + https://transactauto.com/ + + target + + + host + transactauto.com + + + host + www.transactauto.com + + + + + Transcend.org + + ruleset + + name + Transcend.org + rule + + from + ^http://(www\.)?transcend\.org/ + to + https://$1transcend.org/ + + target + + + host + transcend.org + + + host + www.transcend.org + + + + + Transformative Works.org (partial) + + ruleset + + name + Transformative Works.org (partial) + rule + + from + ^http://(?:www\.)?transformativeworks\.org/ + to + https://transformativeworks.org/ + + target + + + host + transformativeworks.org + + + host + www.transformativeworks.org + + + + + Transifex (partial) + + ruleset + + name + Transifex (partial) + rule + + + from + ^http://(www\.)?transifex\.com/ + to + https://$1transifex.com/ + + + from + ^https?://support\.transifex\.com/generated/ + to + https://generated.zendesk.com/generated/ + + + securecookie + + host + ^www\.transifex\.com$ + name + .+ + + target + + + host + transifex.com + + + host + *.transifex.com + + + + + TransitionNetwork.org + + ruleset + + name + TransitionNetwork.org + rule + + from + ^http://(www\.)?transitionnetwork\.org/ + to + https://www.transitionnetwork.org/ + + target + + + host + transitionnetwork.org + + + host + www.transitionnetwork.org + + + + + TranslateThi.is (partial) + + ruleset + + name + TranslateThi.is (partial) + rule + + from + ^http://x\.translateth\.is/ + to + https://s3.amazonaws.com/x.translateth.is/ + + target + + host + x.translateth.is + + + + Translatewiki.net + + ruleset + + name + Translatewiki.net + rule + + from + ^http://(?:www\.)?translatewiki\.net/ + to + https://translatewiki.net/ + + target + + + host + translatewiki.net + + + host + www.translatewiki.net + + + + + Translation Project.org + + ruleset + + name + Translation Project.org + rule + + from + ^http://(www\.)?translationproject\.org/ + to + https://$1translationproject.org/ + + target + + + host + translationproject.org + + + host + www.translationproject.org + + + + + Translink + + ruleset + + name + Translink + rule + + from + ^https?://(?:www\.)?translink\.co\.uk/ + to + https://www.translink.co.uk/ + + securecookie + + host + ^w*\.translink.co.uk$ + name + .+ + + target + + + host + translink.co.uk + + + host + *.translink.co.uk + + + + + Transmission (partial) + + ruleset + + name + Transmission (partial) + rule + + + from + ^http://(?:www\.)?transmissionbt\.com/ + to + https://www.transmissionbt.com/ + + + from + ^http://(forum|trac)\.transmissionbt\.com/ + to + https://$1.transmissionbt.com/ + + + securecookie + + host + ^.*\.transmissionbt\.com$ + name + .+ + + target + + + host + transmissionbt.com + + + host + *.transmissionbt.com + + + + + Transmode + + ruleset + + name + Transmode + rule + + from + ^http://(www\.)?transmode\.com/ + to + https://$1transmode.com/ + + securecookie + + host + ^(.*\.)?transmode\.com$ + name + .* + + target + + + host + transmode.com + + + host + www.transmode.com + + + + + Transmode.se + + ruleset + + name + Transmode.se + rule + + + from + ^http://(?:www\.)?transmode\.se/+ + to + https://www.transmode.com/ + + + from + ^http://tac\.transmode\.org/ + to + https://tac.transmode.org/ + + + target + + + host + transmode.se + + + host + *.transmode.se + + + + + Transport for London (partial) + + ruleset + + name + Transport for London (partial) + rule + + + from + ^https?://(?:www\.)?tfl\.gov\.uk/(assets/|helpandcontact/?$|microsites/|\w+-global/) + to + https://www.tfl.gov.uk/$1 + + + from + ^http://custserv\.tfl\.gov\.uk/ + to + https://custserv.tfl.gov.uk/ + + + target + + + host + tfl.gov.uk + + + host + *.tfl.gov.uk + + + + + Transportstyrelsen.se + + ruleset + + name + Transportstyrelsen.se + platform + mixedcontent + rule + + + from + ^http://www\.transportstyrelsen\.se/ + to + https://www.transportstyrelsen.se/ + + + from + ^http://transportstyrelsen\.se/ + to + https://transportstyrelsen.se/ + + + target + + + host + transportstyrelsen.se + + + host + www.transportstyrelsen.se + + + + + Transversal.com + + ruleset + + name + Transversal.com + rule + + from + ^http://(?:www\.)?transversal\.com/ + to + https://www.transversal.com/ + + target + + + host + transversal.com + + + host + www.transversal.com + + + + + Trashmail + + ruleset + + name + Trashmail + rule + + from + ^http://(?:ssl\.|www\.)?trashmail\.net/ + to + https://ssl.trashmail.net/ + + securecookie + + host + ^\.?ssl\.trashmail\.net$ + name + .+ + + target + + + host + trashmail.net + + + host + *.trashmail.net + + + + + Travel Doctor + + ruleset + + name + Travel Doctor + rule + + from + ^http://(?:www\.)?traveldoctor\.com\.au/ + to + https://www.traveldoctor.com.au/ + + target + + + host + traveldoctor.com.au + + + host + *.traveldoctor.com.au + + + + + Travel Plan + + ruleset + + name + Travel Plan + rule + + from + ^http://(www\.)?travelplan\.gr/ + to + https://$1travelplan.gr/ + + securecookie + + host + ^(?:www\.)?travelplan\.gr$ + name + .+ + + target + + + host + travelplan.gr + + + host + www.travelplan.gr + + + + + Travel Republic (partial) + + ruleset + + name + Travel Republic (partial) + rule + + + from + ^http://(?:www\.)?travelrepublic\.co\.uk/ + to + https://www.travelrepublic.co.uk/ + + + from + ^http://m\.travelrepublic\.co\.uk/ + to + https://m.travelrepublic.co.uk/ + + + from + ^http://(?:www\.)?travelrepublic\.com/.* + to + https://www.travelrepublic.co.uk/ + + + securecookie + + host + ^(?:m|www)?\.travelrepublic\.co\.uk$ + name + .+ + + target + + + host + travelrepublic.co.uk + + + host + *.travelrepublic.co.uk + + + host + travelrepublic.com + + + host + www.travelrepublic.com + + + + + TravelNow (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?travelnow\.com/templates/331656(?:/?$|\?|/hotels/) + + name + TravelNow (partial) + rule + + + from + ^https?://(?:www\.)?travelnow\.com/ + to + https://www.travelnow.com/ + + + from + ^http://(dg|images)\.travelnow\.com/ + to + https://$1.travelnow.com/ + + + target + + + host + travelnow.com + + + host + *.travelnow.com + + + + + TravelPod (partial) + + ruleset + + name + TravelPod (partial) + rule + + from + ^http://images\.travelpod\.com/(?!cgi-bin/|users/) + to + https://images.travelpod.com/ + + target + + host + images.travelpod.com + + + + Travelingnuker.com + + ruleset + + name + Travelingnuker.com + rule + + from + ^http://(?:www\.)?travelingnuker\.com/ + to + https://www.travelingnuker.com/ + + securecookie + + host + ^(?:www)?\.travelingnuker\.com$ + name + .+ + + target + + + host + travelingnuker.com + + + host + *.travelingnuker.com + + + + + Travelmarket.com (partial) + + ruleset + + name + Travelmarket.com (partial) + rule + + from + ^http://tmcomponents\.travelmarket\.com/ + to + https://tmcomponents.travelmarket.com/ + + securecookie + + host + ^tmcomponents\.travelmarket\.com$ + name + .+ + + target + + host + tmcomponents.travelmarket.com + + + + Travelzoo.com (partial) + + ruleset + + name + Travelzoo.com (partial) + rule + + + from + ^http://(?:ssl\.|www\.)?travelzoo\.com/ + to + https://ssl.travelzoo.com/ + + + from + ^http://oascentral\.travelzoo\.com/ + to + https://oasc06.247realmedia.com/ + + + from + ^http://(?:cache\.travelzoo|(?:ssl|www)\.tzoo-img)\.com/ + to + https://ssl.tzoo-img.com/ + + + securecookie + + host + ^ssl\.travelzoo\.com$ + name + .+ + + target + + + host + *.tzoo-img.com + + + host + travelzoo.com + + + host + *.travelzoo.com + + + + + Travis CI + + ruleset + + name + Travis CI + rule + + from + ^http://(?:(api\.|secure\.)|www\.)?travis-ci\.org/ + to + https://$1travis-ci.org/ + + target + + + host + travis-ci.org + + + host + *.travis-ci.org + + + + + Travis F.net + + ruleset + + name + Travis F.net + rule + + from + ^http://(?:www\.|(www2\.))?travisf\.net/ + to + https://$1travisf.net/ + + target + + + host + travisf.net + + + host + *.travisf.net + + + + + TreasuryDirect + + ruleset + + name + TreasuryDirect + platform + mixedcontent + rule + + from + ^http://(?:www\.)?treasurydirect\.gov/ + to + https://www.treasurydirect.gov/ + + target + + + host + treasurydirect.gov + + + host + www.treasurydirect.gov + + + + + TreeHouse I.com + + ruleset + + name + TreeHouse I.com + rule + + + from + ^http://(?:www\.)?treehousei\.com/ + to + https://www.treehousei.com/ + + + from + ^http://mv\.treehousei\.com/ + to + https://mv.treehousei.com/ + + + securecookie + + host + ^(?:mv|www)\.treehousei\.com$ + name + .+ + + target + + + host + treehousei.com + + + host + *.treehousei.com + + + + + TreeHugger.com (partial) + + ruleset + + name + TreeHugger.com (partial) + rule + + + from + ^http://media\.treehugger\.com/ + to + https://a248.e.akamai.net/f/1168/9749/8m/media.treehugger.com/ + + + from + ^http://static\.treehugger\.com/ + to + https://a248.e.akamai.net/f/1186/566/7m/static.treehugger.com/ + + + target + + host + *.treehugger.com + + + + Trefis + + ruleset + + name + Trefis + rule + + + from + ^https?://(?:www\.)?trefis\.com/ + to + https://www.trefis.com/ + + + from + ^http://cdn\.trefis\.com/ + to + https://cdn.trefis.com/ + + + securecookie + + host + ^www\.trefis\.com$ + name + .+ + + target + + + host + trefis.com + + + host + *.trefis.com + + + + + Trekaroo (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?trekaroo\.com/(?!img/|images/|photos/|stylesheets/) + + name + Trekaroo (partial) + rule + + from + ^https?://(?:cdn[12]\.|www\.)?trekaroo\.com/ + to + https://www.trekaroo.com/ + + target + + + host + trekaroo.com + + + host + *.trekaroo.com + + + + + Trellian (partial) + + ruleset + + name + Trellian (partial) + rule + + + from + ^http://(?:www\.)?trellian\.com/ + to + https://www.trellian.com/ + + + from + ^http://bid\.trellian\.com/(\?.*)?$ + to + https://www.trellian.com/dsn/index.html$1 + + + target + + + host + trellian.com + + + host + www.trellian.com + + + + + Trello + + ruleset + + name + Trello + rule + + from + ^http://(www\.)?trello\.com/ + to + https://$1trello.com/ + + securecookie + + host + ^(?:www\.)?trello\.com$ + name + .+ + + target + + + host + trello.com + + + host + www.trello.com + + + + + Tremor Media.com (partial) + + ruleset + + name + Tremor Media.com (partial) + rule + + + from + ^http://cdn\.tremormedia\.com/ + to + https://a248.e.akamai.net/f/1576/4225/8m/cdn.tremormedia.com/ + + + from + ^http://objects\.tremormedia\.com/ + to + https://a248.e.akamai.net/f/1761/2685/4d/objects.tremormedia.com/ + + + target + + host + *.tremormedia.com + + + + Tremor Video.com (partial) + + ruleset + + name + Tremor Video.com (partial) + rule + + from + ^http://investor\.tremorvideo\.com/(modul|sit)es/ + to + https://tremorvideo.investorhq.businesswire.com/$1es/ + + target + + host + investor.tremorvideo.com + + + + Trend Micro (false MCB) + + ruleset + + exclusion + + pattern + ^http://blog\.trendmicro\.com/(?:[\w-]+/files/|wp-content/) + + name + Trend Micro (false MCB) + platform + mixedcontent + rule + + from + ^http://blog\.trendmicro\.com/ + to + https://blog.trendmicro.com/ + + target + + host + blog.trendmicro.com + + + + Trend Micro (partial) + + ruleset + + exclusion + + + pattern + ^http://blog\.trendmicro\.com/(?![\w-]+/files/|wp-content/) + + + pattern + ^http://countermeasures\.trendmicro\.eu/(?!favicon\.ico|wp-content/) + + + pattern + ^http://countermeasures\.trendmicro\.eu/wp-content/plugins/youtube-channel-gallery/styles\.css + + + name + Trend Micro (partial) + rule + + + from + ^http://(?:www\.)?trendmicro\.com/ + to + https://www.trendmicro.com/ + + + from + ^http://(blog|corelib|esupport|go)\.trendmicro\.com/ + to + https://$1.trendmicro.com/ + + + from + ^http://(partnerlocator\.|www\.)?trendmicro\.eu/ + to + https://$1trendmicro.eu/ + + + from + ^http://countermeasures\.trendmicro\.eu/ + to + https://a248.e.akamai.net/f/489/2696/8m/countermeasures.trendmicro.eu/ + + + securecookie + + host + ^(?:\.blog|esupport)\.trendmicro\.com$ + name + .+ + + target + + + host + trendmicro.com + + + host + *.trendmicro.com + + + host + trendmicro.eu + + + host + *.trendmicro.eu + + + + + TrendWeight + + ruleset + + name + TrendWeight + rule + + from + ^http://(www\.)?trendweight\.com/ + to + https://$1trendweight.com/ + + securecookie + + host + ^(?:w*\.)?trendweight\.com$ + name + .+ + + target + + + host + trendweight.com + + + host + *.trendweight.com + + + + + Trendin.com + + ruleset + + name + Trendin.com + rule + + from + ^http://(www\.)?trendin\.com/ + to + https://$1trendin.com/ + + securecookie + + host + ^(?:www)?\.trendin\.com$ + name + .+ + + target + + + host + trendin.com + + + host + *.trendin.com + + + + + TriDeci + + ruleset + + name + TriDeci + rule + + from + ^http://(www\.)?trideci\.com/ + to + https://$1trideci.com/ + + securecookie + + host + ^(?:www\.)?trideci\.com$ + name + .+ + + target + + + host + trideci.com + + + host + www.trideci.com + + + + + TrialPay (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?trialpay\.com/productpage/ + + name + TrialPay (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?trialpay\.com/ + to + https://www.trialpay.com/ + + + from + ^http://assets\.trialpay\.com/ + to + https://d2n8p8eh14pae1.cloudfront.net/ + + + target + + + host + trialpay.com + + + host + *.trialpay.com + + + + + Tribal Fusion.com (partial) + + ruleset + + name + Tribal Fusion.com (partial) + rule + + + from + ^http://(?:www\.)?tribalfusion\.com/ + to + https://www.tribalfusion.com/ + + + from + ^http://a\.tribalfusion\.com/ + to + https://a.tribalfusion.com/ + + + securecookie + + host + ^(?:www)?\.tribalfusion\.com$ + name + .+ + + target + + + host + tribalfusion.com + + + host + *.tribalfusion.com + + + + + Tribler (partial) + + ruleset + + name + Tribler (partial) + rule + + from + ^http://(www\.)?tribler\.org/ + to + https://$1tribler.org/ + + securecookie + + host + ^www\.tribler\.org$ + name + .* + + target + + + host + tribler.org + + + host + www.tribler.org + + + + + Tribune (partial) + + ruleset + + name + Tribune (partial) + rule + + + from + ^http://advertise\.courant\.com/ + to + https://advertise.courant.com/ + + + from + ^http://(?:www\.)?courant\.com/includes/uploads/2010/08/3A2C26D5_courant_logo_981x160b\.jpg$ + to + https://advertise.courant.com/portal/page/portal/Hartford%20Courant/Content%20Items/P2P/3A2C26D5_courant_logo_981x160b.jpg + + + from + ^http://(?:www\.)?courant\.com/media/graphic/2009-06/47547079\.png$ + to + https://advertise.courant.com/portal/page/portal/Hartford%20Courant/Content%20Items/P2P/47547079.png + + + from + ^http://([\w-]+)\.signon\.trb\.com/ + to + https://$1.signon.trb.com/ + + + target + + + host + courant.com + + + host + *.courant.com + + + host + *.signon.trb.com + + + + + Tricolumbia.org + + ruleset + + name + Tricolumbia.org + rule + + from + ^http://(?:www\.)?tricolumbia\.org/ + to + https://www.tricolumbia.org/ + + securecookie + + host + ^(?:www)?\.tricolumbia\.org$ + name + .+ + + target + + + host + tricolumbia.org + + + host + *.tricolumbia.org + + + + + Tridium + + ruleset + + name + Tridium + rule + + from + ^https?://(?:www\.)?tridium\.com/ + to + https://www.tridium.com/ + + securecookie + + host + ^www\.tridium\.com$ + name + .+ + + target + + + host + tridium.com + + + host + www.tridium.com + + + + + Triggit.com (partial) + + ruleset + + name + Triggit.com (partial) + rule + + from + ^http://(a|portal)\.triggit\.com/ + to + https://$1.triggit.com/ + + securecookie + + host + ^\.triggit\.com$ + name + ^trg[pu]$ + + target + + host + *.triggit.com + + + + Trillian.im (partial) + + ruleset + + name + Trillian.im (partial) + rule + + from + ^http://(www\.)?trillian\.im/ + to + https://$1trillian.im/ + + target + + + host + trillian.im + + + host + www.trillian.im + + + + + Trinity College Dublin (partial) + + ruleset + + name + Trinity College Dublin (partial) + rule + + from + ^http://(www\.)?tcd\.ie/ + to + https://$1tcd.ie/ + + target + + + host + tcd.ie + + + host + www.tcd.ie + + + + + Trinity Foundation + + ruleset + + name + Trinity Foundation + rule + + from + ^http://(www\.)?trinityfi\.org/ + to + https://$1trinityfi.org/ + + target + + + host + trinityfi.org + + + host + www.trinityfi.org + + + + + Triodos.com + + ruleset + + name + Triodos.com + rule + + from + ^http://(projects\.|www\.)?triodos\.com/ + to + https://$1triodos.com/ + + securecookie + + host + ^projects.triodos.com$ + name + .+ + + target + + + host + triodos.com + + + host + *.triodos.com + + + + + Triodos.nl (partial) + + ruleset + + exclusion + + pattern + ^http://www\.triodos\.nl/+(?!favicon\.ico|media/|static/) + + name + Triodos.nl (partial) + rule + + from + ^http://(bankieren\.|www\.)?triodos\.nl/ + to + https://$1triodos.nl/ + + securecookie + + host + ^bankieren\.triodos\.nl$ + name + .+ + + target + + + host + triodos.nl + + + host + *.triodos.nl + + + + + TripAdvisor (partial) + + ruleset + + name + TripAdvisor (partial) + rule + + + from + ^http://www\.t-analytics\.com/ + to + https://www.t-analytics.com/ + + + from + ^http://(?:www\.)?tripadvisor\.com/(favicon\.ico|img/|Registration(?:$|\?)) + to + https://www.tripadvisor.com/$1 + + + from + ^http://(cdn|media-cdn|remote|webmail)\.tripadvisor\.com/ + to + https://$1.tripadvisor.com/ + + + securecookie + + + host + ^www\.t-analytics\.com$ + name + .+ + + + host + ^\.tripadvisor\.com$ + name + ^(?:ServerPool|TACds|TASession|TAUnique)$ + + + host + ^webmail\.tripadvisor\.com$ + name + .+ + + + target + + + host + www.t-analytics.com + + + host + tripadvisor.com + + + host + *.tripadvisor.com + + + + + TripHip + + ruleset + + name + TripHip + rule + + from + ^http://(www\.)?triphip\.com/ + to + https://$1triphip.com/ + + securecookie + + host + ^(?:www)?\.triphip\.com$ + name + .+ + + target + + + host + triphip.com + + + host + *.triphip.com + + + + + TripIt.com + + ruleset + + name + TripIt.com + rule + + + from + ^http://(careers\.|www\.)?tripit\.com/ + to + https://$1tripit.com/ + + + from + ^http://help\.tripit\.com/ + to + https://tripit.zendesk.com/ + + + securecookie + + host + ^(?:careers\.|www\.)?tripit\.com$ + name + .+ + + target + + + host + tripit.com + + + host + *.tripit.com + + + + + Tripwire.com (false MCB) + + ruleset + + name + Tripwire.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?tripwire\.com/ + to + https://www.tripwire.com/ + + securecookie + + host + ^www\.tripwire\.com$ + name + .+ + + target + + + host + tripwire.com + + + host + *.tripwire.com + + + + + Tripwire.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?tripwire\.com/+state-of-security(?!/wp-content/|wp-includes/) + + name + Tripwire.com (partial) + rule + + from + ^http://(?:www\.)?tripwire\.com/ + to + https://www.tripwire.com/ + + securecookie + + host + ^www\.tripwire\.com$ + name + .+ + + target + + + host + tripwire.com + + + host + www.tripwire.com + + + + + Trisquel + + ruleset + + name + Trisquel + rule + + from + ^http://(?:www\.)?trisquel\.info/ + to + https://trisquel.info/ + + securecookie + + host + ^\.trisquel\.info$ + name + ^SESS\w{32}$ + + target + + + host + trisquel.info + + + host + *.trisquel.info + + + + + Triumph-Adler.de + + ruleset + + name + Triumph-Adler.de + rule + + from + ^http://(?:www\.)?triumph-adler\.de/ + to + https://www.triumph-adler.de/ + + target + + + host + triumph-adler.de + + + host + www.triumph-adler.de + + + + + Trolling Effects.org + + ruleset + + name + Trolling Effects.org + rule + + from + ^http://(?:www\.)?trollingeffects\.org/ + to + https://trollingeffects.org/ + + target + + + host + trollingeffects.org + + + host + www.trollingeffects.org + + + + + Tronix Computers.com + + ruleset + + name + Tronix Computers.com + rule + + from + ^http://(www\.)?tronixcomputers\.com/ + to + https://$1tronixcomputers.com/ + + securecookie + + host + ^(?:www\.)?tronixcomputers\.com$ + name + .+ + + target + + + host + tronixcomputers.com + + + host + www.tronixcomputers.com + + + + + Troopers.de + + ruleset + + name + Troopers.de + rule + + from + ^http://(?:www\.)?troopers\.de/ + to + https://www.troopers.de/ + + target + + + host + troopers.de + + + host + www.troopers.de + + + + + Tropo (partial) + + ruleset + + name + Tropo (partial) + rule + + from + ^http://(www\.)?tropo\.com/ + to + https://$1tropo.com/ + + target + + + host + tropo.com + + + host + www.tropo.com + + + + + Trove.com (partial) + + ruleset + + name + Trove.com (partial) + rule + + + from + ^http://(id\.|moneta\.)?trove\.com/ + to + https://$1trove.com/ + + + from + ^http://www\.trove\.com/+[^?]*(?=\?)? + to + https://trove.com/ + + + from + ^http://id\.trove-stg\.com/ + to + https://id.trove-stg.com/ + + + securecookie + + host + ^(?:id)?\.trove\.com$ + name + .+ + + target + + + host + trove.com + + + host + *.trove.com + + + host + id.trove-stg.com + + + + + Truck Trend.com (partial) + + ruleset + + name + Truck Trend.com (partial) + rule + + from + ^http://image\.trucktrend\.com/ + to + https://s248.e.akamai.net/f/1664/1785/9/image.trucktrend.com/ + + target + + host + image.trucktrend.com + + + + TruckingUnlimited.com (partial) + + ruleset + + name + TruckingUnlimited.com (partial) + rule + + from + ^https?://static\.truckingunlimited\.com/ + to + https://www.truckingunlimited.com/ + + target + + host + static.truckingunlimited.com + + + + True Corporation + + ruleset + + name + True Corporation + rule + + + from + ^http://www3\.truecorp\.co\.th/ + to + https://www3.truecorp.co.th/ + + + from + ^http://login\.truelife\.com/ + to + https://login.truelife.com/ + + + target + + + host + www3.truecorp.co.th + + + host + login.truelife.com + + + + + TrueCrypt.ch + + ruleset + + name + TrueCrypt.ch + rule + + from + ^http://(?:((?:download|forum|wdc)\.)|www\.)?truecrypt\.ch/ + to + https://$1truecrypt.ch/ + + securecookie + + host + ^forum\.truecrypt\.ch$ + name + .+ + + target + + + host + truecrypt.ch + + + host + *.truecrypt.ch + + + + + TrueVault.com + + ruleset + + name + TrueVault.com + rule + + from + ^http://((?:api|console|www)\.)?truevault\.com/ + to + https://$1truevault.com/ + + target + + + host + truevault.com + + + host + *.truevault.com + + + + + Trueachievements.com + + ruleset + + name + Trueachievements.com + rule + + from + ^http://(www\.)?trueachievements\.com/ + to + https://www.trueachievements.com/ + + target + + + host + trueachievements.com + + + host + www.trueachievements.com + + + + + Truecrypt (partial) + + ruleset + + name + Truecrypt (partial) + rule + + + from + ^http://(www\.)?truecrypt\.org/(bug|donation|image)s/ + to + https://$1truecrypt.org/$2s/ + + + from + ^http://forums\.truecrypt\.org/templates/ + to + https://forums.truecrypt.org/templates/ + + + target + + + host + truecrypt.org + + + host + *.truecrypt.org + + + + + Trumba + + ruleset + + name + Trumba + rule + + from + ^https?://(?:www\.)?trumba\.com/ + to + https://www.trumba.com/ + + securecookie + + host + ^www\.trumba\.com$ + name + .+ + + target + + + host + trumba.com + + + host + www.trumba.com + + + + + Trumpia.com + + ruleset + + name + Trumpia.com + rule + + from + ^http://(www\.)?trumpia\.com/ + to + https://$1trumpia.com/ + + securecookie + + host + ^(?:www\.)?trumpia\.com$ + name + .+ + + target + + + host + trumpia.com + + + host + www.trumpia.com + + + + + Trust Dale.com (partial) + + ruleset + + name + Trust Dale.com (partial) + rule + + from + ^http://static\.trustdale\.com/ + to + https://d25v41r9zzznmn.cloudfront.net/ + + target + + host + static.trustdale.com + + + + Trust-Guard.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?trust-guard\.com/+(?!CSS/|favicon\.ico|Images/|Other/|Scripts/|Templates/) + + name + Trust-Guard.com (partial) + rule + + + from + ^http://((?:members|secure|www)\.)?trust-guard\.com/ + to + https://$1trust-guard.com/ + + + from + ^http://seals\.trust-guard\.com/ + to + https://c674753.ssl.cf2.rackcdn.com/ + + + securecookie + + host + ^(?:members|secure)\.trust-guard\.com$ + name + .+ + + target + + + host + trust-guard.com + + + host + *.trust-guard.com + + + + + Trust-IT.gr + + ruleset + + name + Trust-IT.gr + rule + + from + ^http://(www\.)?trust-it\.gr/ + to + https://$1trust-it.gr/ + + securecookie + + host + ^(?:www)?\.trust-it\.gr$ + name + .+ + + target + + + host + trust-it.gr + + + host + *.trust-it.gr + + + + + TrustKeeper + + ruleset + + name + TrustKeeper + rule + + + from + ^https?://(?:www\.)?trustkeeper\.net/ + to + https://www.trustkeeper.net/ + + + from + ^http://sealserver\.trustkeeper\.net/ + to + https://sealserver.trustkeeper.net/ + + + securecookie + + host + ^www\.trustkeeper\.net$ + name + .+ + + target + + + host + trustkeeper.net + + + host + *.trustkeeper.net + + + + + TrustTheVote.org (false MCB) + + ruleset + + exclusion + + pattern + ^http://(?:wordpress2\.|www\.)?trustthevote\.org/wp-(?:content|includes)/ + + name + TrustTheVote.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(wordpress2\.|www\.)?trustthevote\.org/ + to + https://$1trustthevote.org/ + + target + + + host + trustthevote.org + + + host + wordpress2.trustthevote.org + + + host + www.trustthevote.org + + + + + TrustTheVote.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:wordpress2\.|www\.)?trustthevote\.org/(?!wp-content/|wp-includes/) + + name + TrustTheVote.org (partial) + rule + + from + ^http://((?:wiki|wordpress2|www)\.)?trustthevote\.org/ + to + https://$1trustthevote.org/ + + securecookie + + + host + ^\.(?:wordpress2\.)?trustthevote\.org$ + name + ^__utm\w$ + + + host + ^wiki\.trustthevote\.org$ + name + .+ + + + target + + + host + trustthevote.org + + + host + *.trustthevote.org + + + + + Trusted CS.com + + ruleset + + name + Trusted CS.com + rule + + from + ^http://(?:www\.)?trustedcs\.com/ + to + https://www.trustedcs.com/ + + target + + + host + trustedcs.com + + + host + www.trustedcs.com + + + + + Trusted Computing Group + + ruleset + + name + Trusted Computing Group + rule + + from + ^http://(members\.|www\.)?trustedcomputinggroup\.org/ + to + https://$1trustedcomputinggroup.org/ + + securecookie + + host + ^(?:www)?\.trustedcomputinggroup\.org$ + name + .+ + + target + + + host + trustedcomputinggroup.org + + + host + *.trustedcomputinggroup.org + + + + + Trusted Reviews (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?trustedreviews\.com/(?!css/) + + name + Trusted Reviews (partial) + rule + + + from + ^http://(?:secure\.|www\.)?trustedreviews\.com/ + to + https://secure.trustedreviews.com/ + + + from + ^http://static\.trustedreviews\.com/ + to + https://a248.e.akamai.net/f/1974/9070/9m/static.trustedreviews.com/ + + + target + + + host + trustedreviews.com + + + host + *.trustedreviews.com + + + + + Trusted Shops (partial) + + ruleset + + name + Trusted Shops (partial) + rule + + + from + ^http://(?:www\.)?trustedshops\.(at|ch|com|co\.uk|de|es|fr|pl)/(?=assets/|b2c_int/|bewertung/|cms/assets/|merchants/(?:$|\?)|shoplogo/|\w\w/(?:buyer/login\.html|shop/)) + to + https://www.trustedshops.$1/ + + + from + ^http://static\.trustedshops\.com/ + to + https://static.trustedshops.com/ + + + target + + + host + trustedshops.* + + + host + www.trustedshops.* + + + host + trustedshops.co.uk + + + host + www.trustedshops.co.uk + + + host + static.trustedshops.com + + + + + Trusted-Introducer.org + + ruleset + + name + Trusted-Introducer.org + rule + + + from + ^https?://trusted-introducer\.(nl|org)/ + to + https://www.trusted-introducer.org/ + + + from + ^http://www\.trusted-introducer\.(nl|org)/ + to + https://www.trusted-introducer.org/ + + + target + + + host + trusted-introducer.nl + + + host + www.trusted-introducer.nl + + + host + trusted-introducer.org + + + host + www.trusted-introducer.org + + + + + TrustedMessenger.com + + ruleset + + name + TrustedMessenger.com + rule + + from + ^http://(www\.)?trustedmessenger\.com/ + to + https://$1trustedmessenger.com/ + + securecookie + + host + ^(?:www)?\.trustedmessenger\.com$ + name + .+ + + target + + + host + trustedmessenger.com + + + host + *.trustedmessenger.com + + + + + TrustedSec.com + + ruleset + + name + TrustedSec.com + rule + + from + ^http://(www\.)?trustedsec\.com/ + to + https://$1trustedsec.com/ + + target + + + host + trustedsec.com + + + host + www.trustedsec.com + + + + + Trusteer.com (partial) + + ruleset + + name + Trusteer.com (partial) + rule + + + from + ^http://(?:www\.)?trusteer\.com/ + to + https://www.trusteer.com/ + + + from + ^http://info\.threatmatrix\.com/(?!css/|images/|js/|rs/) + to + https://na-abd.marketo.com/ + + + target + + + host + trusteer.com + + + host + *.trusteer.com + + + + + Trustico + + ruleset + + name + Trustico + rule + + from + ^http://(?:www\.)?trustico\.com/ + to + https://www.trustico.com/ + + target + + + host + www.trustico.com + + + host + trustico.com + + + + + Trustpilot.com (partial) + + ruleset + + name + Trustpilot.com (partial) + rule + + from + ^http://images-static\.trustpilot\.com/ + to + https://images-static.trustpilot.com/ + + target + + host + images-static.trustpilot.com + + + + Trustwave (partial) + + ruleset + + name + Trustwave (partial) + rule + + + from + ^https?://(?:www\.)?securetrust\.com/ + to + https://www.securetrust.com/ + + + from + ^http://((?:login|mailmax|pci|scanmail|sealserver|ssl|www)\.)?trustwave\.com/ + to + https://$1trustwave.com/ + + + from + ^http://s(eal|itedata)\.xramp\.com/ + to + https://s$1.xramp.com/ + + + securecookie + + host + ^(?:.*\.)?trustwave\.com$ + name + .+ + + target + + + host + securetrust.com + + + host + www.securetrust.com + + + host + trustwave.com + + + host + *.trustwave.com + + + host + *.xramp.com + + + + + Trustworthy Internet Movement + + ruleset + + name + Trustworthy Internet Movement + rule + + from + ^http://(www\.)?trustworthyinternet\.org/ + to + https://$1trustworthyinternet.org/ + + target + + + host + trustworthyinternet.org + + + host + www.trustworthyinternet.org + + + + + TrustyCon.org + + ruleset + + name + TrustyCon.org + rule + + from + ^http://(www\.)?trustycon\.org/ + to + https://$1trustycon.org/ + + securecookie + + host + ^\.trustycon\.org$ + name + .+ + + target + + + host + trustycon.org + + + host + *.trustycon.org + + + + + Truth in Advertising + + ruleset + + name + Truth in Advertising + rule + + from + ^http://(www\.)?truthinadvertising\.org/ + to + https://$1truthinadvertising.org/ + + securecookie + + host + ^(?:www\.)?truthinadvertising\.org$ + name + .+ + + target + + + host + truthinadvertising.org + + + host + www.truthinadvertising.org + + + + + Truthdig.com + + ruleset + + name + Truthdig.com + platform + mixedcontent + rule + + from + ^http://(www\.)?truthdig\.com/ + to + https://$1truthdig.com/ + + securecookie + + host + ^(.*\.)?truthdig\.com$ + name + .* + + target + + + host + truthdig.com + + + host + www.truthdig.com + + + + + Try Celery.com + + ruleset + + name + Try Celery.com + rule + + from + ^http://(www\.)?trycelery\.com/ + to + https://$1trycelery.com/ + + securecookie + + host + ^(?:www\.)?trycelery\.com$ + name + .+ + + target + + + host + trycelery.com + + + host + www.trycelery.com + + + + + Try Superb Green Coffee.com + + ruleset + + name + Try Superb Green Coffee.com + rule + + from + ^http://(www\.)?trysuperbgreencoffee\.com/ + to + https://$1trysuperbgreencoffee.com/ + + securecookie + + host + ^(?:w*\.)?trysuperbgreencoffee.com$ + name + .+ + + target + + + host + trysuperbgreencoffee.com + + + host + *.trysuperbgreencoffee.com + + + + + Trygghansa.se + + ruleset + + name + Trygghansa.se + platform + mixedcontent + rule + + from + ^http://(www\.)?trygghansa\.se/ + to + https://www.trygghansa.se/ + + target + + + host + trygghansa.se + + + host + www.trygghansa.se + + + + + Tube4.me + + ruleset + + name + Tube4.me + rule + + from + ^http://(www\.)?tube4\.me/ + to + https://$1tube4.me/ + + securecookie + + host + ^\.tube4\.me$ + name + .+ + + target + + + host + tube4.me + + + host + *.tube4.me + + + + + TubeMogul.com (partial) + + ruleset + + name + TubeMogul.com (partial) + rule + + + from + ^http://(rtb\.|www\.)?tubemogul\.com/ + to + https://$1tubemogul.com/ + + + from + ^http://cdn\.tubemogul\.com/ + to + https://ne1.wpc.edgecastcdn.net/001500/ + + + securecookie + + host + ^\.tubemogul\.com$ + name + .+ + + target + + + host + tubemogul.com + + + host + *.tubemogul.com + + + + + Tucows (partial) + + ruleset + + name + Tucows (partial) + rule + + + from + ^http://(?:www\.)?contactprivacy\.com/ + to + https://rr-n1-tor.opensrs.net/wp_mailer/ + + + from + ^http://support\.ispbilling\.com/ + to + https://support.ispbilling.com/ + + + target + + + host + contact-privacy.com + + + host + support.ispbilling.com + + + + + Tufts Giving.org + + ruleset + + name + Tufts Giving.org + rule + + from + ^http://(?:www\.)?tuftsgiving\.org/ + to + https://tuftsgiving.org/ + + target + + + host + tuftsgiving.org + + + host + www.tuftsgiving.org + + + + + Tufts Medical Center.org (partial) + + ruleset + + name + Tufts Medical Center.org (partial) + rule + + from + ^http://(?:www\.)?tuftsmedicalcenter\.org/ + to + https://www.tuftsmedicalcenter.org/ + + securecookie + + host + ^www\.tuftsmedicalcenter\.org$ + name + .+ + + target + + + host + tuftsmedicalcenter.org + + + host + www.tuftsmedicalcenter.org + + + + + Tufts.edu (partial) + + ruleset + + exclusion + + pattern + ^http://(?:directory|whitepages)\.tufts\.edu/+(?!css/|favicon\.ico|images/|main\.css) + + name + Tufts.edu (partial) + rule + + + from + ^http://medical\.alumni\.tufts\.edu/+ + to + https://medicine.tufts.edu/Who-We-Are/Alumnia/ + + + from + ^http://(ase|exchange|it|(?:illiad\.|www\.)?library|m|medicine|webapps\.moit|now|sites|trunk|(?:ests01|infoboard-updates|isis|wikis)\.uit|whitepages)\.tufts\.edu/ + to + https://$1.tufts.edu/ + + + from + ^http://directory\.tufts\.edu/ + to + https://whitepages.tufts.edu/ + + + from + ^http://researchguides\.library\.tufts\.edu/(?=css\d*/|data/|favicon\.ico|images/|include/|js\d*/) + to + https://libguides.com/ + + + from + ^http://uit\.tufts\.edu/+\??$ + to + https://it.tufts.edu/ + + + securecookie + + host + ^(?:ase|exchange|library|m|medicine|webapps\.moit|trunk|(?:infoboard-updates|isis)\.uit)\.tufts\.edu$ + name + .+ + + target + + host + *.tufts.edu + + + + Tugg.com (partial) + + ruleset + + name + Tugg.com (partial) + rule + + from + ^http://(?:www\.)?tugg\.com/(assets|system)/ + to + https://www.tugg.com/$1/ + + securecookie + + host + ^\.tugg\.com$ + name + ^__utm\w$ + + target + + + host + tugg.com + + + host + *.tugg.com + + + + + Tum.de + + ruleset + + name + Tum.de + rule + + from + ^http://(www\.)?tum\.de/ + to + https://www.tum.de/ + + target + + + host + tum.de + + + host + www.tum.de + + + + + Tumblr (partial) + + ruleset + + exclusion + + pattern + ^http://assets\.tumblr\.com/+assets/scripts/(?!vendor/\w+/plugins/\w+/css/) + + name + Tumblr (partial) + rule + + + from + ^http://(www\.)?tumblr\.com/(?=$|\?|(?:about|api|apps|business|buttons|developers|dmca|docs|download|forgot_password|help|impixu|jobs|login|logo|logout|meetups|merch|policy|press|privacy-policy|register|security|sponsors|svc/teaser|tagged|teaser|themes|tips|transparency)(?:$|[#?/])|assets/styles/|examples/share/\w|images/|javascript/|photo/|settings/|svc/log/|svc/poll/) + to + https://$1tumblr.com/ + + + from + ^http://(?:(?:25|34|35|37)\.)?media\.tumblr\.com/ + to + https://31.media.tumblr.com/ + + + from + ^http://(a|(?:origin\.|secure\.)?assets|\d+\.media|platform|origin\.platform|secure\.static|tm319|vt?)\.tumblr\.com/ + to + https://$1.tumblr.com/ + + + from + ^http://data\.tumblr\.com/ + to + https://gs1.wac.edgecastcdn.net/8019B6/data.tumblr.com/ + + + from + ^http://static\.tumblr\.com/ + to + https://d2pi0bc9ewx28h.cloudfront.net/ + + + from + ^http://safe\.txmblr\.com/ + to + https://safe.txmblr.com/ + + + securecookie + + + host + ^(?:secure\.assets|www)\.tumblr\.com$ + name + ^__utmf$ + + + host + ^safe\.txmblr\.com$ + name + .+ + + + host + ^www\.tumblr\.com$ + name + ^d(?:evicePixelRatio|ocumentWidth)$ + + + target + + + host + tumblr.com + + + host + *.tumblr.com + + + host + safe.txmblr.com + + + + + Tumblr.com (false MCB) + + ruleset + + name + Tumblr.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.tumblr\.com/assets/html/ + to + https://www.tumblr.com/assets/html/ + + target + + host + www.tumblr.com + + + + Tumri.net + + ruleset + + name + Tumri.net + rule + + from + ^http://ats\.tumri\.net/ + to + https://ats.tumri.net/ + + securecookie + + host + ^\.tumri\.net$ + name + .+ + + target + + host + *.tumri.net + + + + Tune.pk + + ruleset + + name + Tune.pk + rule + + from + ^http://(www\.)?tune\.pk/ + to + https://$1tune.pk/ + + securecookie + + host + ^(?:\.|www\.)?tune\.pk$ + name + .+ + + target + + + host + tune.pk + + + host + *.tune.pk + + + + + Tunespeak.com + + ruleset + + name + Tunespeak.com + rule + + from + ^http://(www\.)?(staging|tune)speak\.com/ + to + https://$1$2speak.com/ + + securecookie + + host + ^\.(?:staging|tune)speak\.com$ + name + .+ + + target + + + host + stagingspeak.com + + + host + *.stagingspeak.com + + + host + tunespeak.com + + + host + *.tunespeak.com + + + + + Tuning World + + ruleset + + name + Tuning World + rule + + from + ^http://(www\.)?tuningworld\.com\.au/ + to + https://$1tuningworld.com.au/ + + securecookie + + host + ^(?:www\.)?tuningworld\.com\.au$ + name + .+ + + target + + + host + tuningworld.com.au + + + host + www.tuningworld.com.au + + + + + Tunisia-Sat + + ruleset + + name + Tunisia-Sat + rule + + from + ^http://(www\.)?tunisia-sat\.com(\.tn)?/ + to + https://$1tunisia-sat.com$2/ + + securecookie + + host + ^\.tunisia-sat\.com(?:\.tn)?$ + name + .+ + + target + + + host + tunisia-sat.com + + + host + *.tunisia-sat.com + + + host + tunisia-sat.com.tn + + + host + *.tunisia-sat.com.tn + + + + + TunnelBear + + ruleset + + name + TunnelBear + rule + + from + ^http://(?:www\.)?tunnelbear\.com/ + to + https://www.tunnelbear.com/ + + target + + + host + www.Tunnelbear.com + + + host + tunnelbear.com + + + + + TurboSquid (partial) + + ruleset + + exclusion + + pattern + ^http://support\.turbosquid\.com/(?!generated/) + + name + TurboSquid (partial) + rule + + + from + ^http://(support\.|www\.)?turbosquid\.com/ + to + https://$1turbosquid.com/ + + + from + ^https?://sitefiles\.turbosquid\.com/ + to + https://d3vuj04fwiko4o.cloudfront.net/ + + + securecookie + + host + ^\.(?:www\.)?turbosquid\.com$ + name + .+ + + target + + + host + turbosquid.com + + + host + *.turbosquid.com + + + + + Turbobytes.com (partial) + + ruleset + + name + Turbobytes.com (partial) + rule + + from + ^http://my\.turbobytes\.com/ + to + https://my.turbobytes.com/ + + securecookie + + host + ^my\.turbobytes\.com$ + name + .+ + + target + + host + my.turbobytes.com + + + + Turbobytes.net + + ruleset + + name + Turbobytes.net + rule + + from + ^http://az\.turbobytes\.net/ + to + https://az.turbobytes.net/ + + target + + host + az.turbobytes.net + + + + Turku.fi + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?turku\.fi/(?!bussit$|buses$|bussar$)[\w-]+$ + + name + Turku.fi + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?turku\.fi/ + to + https://www.turku.fi/ + + + from + ^http://opaskartta\.turku\.fi/ + to + https://opaskartta.turku.fi/ + + + from + ^https?://www\.bussit\.turku\.fi/$ + to + https://www.turku.fi/public/default.aspx?nodeid=11916 + + + from + ^https?://(?:www\.)?turku\.fi/bussit$ + to + https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=1 + + + from + ^https?://(?:www\.)?turku\.fi/buses$ + to + https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=2 + + + from + ^https?://(?:www\.)?turku\.fi/bussar$ + to + https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=3 + + + securecookie + + host + ^\w+\.turku\.fi + name + .+ + + target + + + host + www.turku.fi + + + host + turku.fi + + + host + www.bussit.turku.fi + + + host + opaskartta.turku.fi + + + + + Turn Game Studios + + ruleset + + name + Turn Game Studios + rule + + from + ^http://(www\.)?turngs\.com/ + to + https://$1turngs.com/ + + securecookie + + host + ^\.turngs\.com$ + name + .+ + + target + + + host + turngs.com + + + host + *.turngs.com + + + + + Turn On Social + + ruleset + + name + Turn On Social + rule + + from + ^http://(?:cdn-[\w-]+\.)?turnonsocial\.com/ + to + https://turnonsocial.com/ + + securecookie + + host + ^\.?turnonsocial\.com$ + name + .+ + + target + + + host + turnonsocial.com + + + host + *.turnonsocial.com + + + + + Turn.com + + ruleset + + name + Turn.com + rule + + + from + ^http://(?:www\.)?turn\.com/(?=favicon\.ico|sites/(?!default/files/css/)) + to + https://a248.e.akamai.net/f/1049/8588/3/www.turn.com/ + + + from + ^http://trust\.turn\.com/(?=bootstrap/|includes/(?!trust\.css)) + to + https://a248.e.akamai.net/f/1505/4670/8/trust.turn.com/ + + + from + ^http://(akamai|console|d|r)\.turn\.com/ + to + https://$1.turn.com/ + + + securecookie + + host + ^\.turn\.com$ + name + ^uid$ + + target + + + host + turn.com + + + host + *.turn.com + + + + + Turner.com (partial) + + ruleset + + name + Turner.com (partial) + rule + + + from + ^http://(www\.)?turner\.com/ + to + https://$1turner.com/ + + + from + ^http://(?:i\d?|s|z)\.cdn\.turner\.com/ + to + https://s.cdn.turner.com/ + + + target + + + host + turner.com + + + host + *.turner.com + + + + + Turtlebeach + + ruleset + + name + Turtlebeach + rule + + from + ^http://(support|www)\.turtlebeach\.com/ + to + https://$1.turtlebeach.com/ + + target + + host + *.turtlebeach.com + + + + Tutor.com (partial) + + ruleset + + name + Tutor.com (partial) + rule + + + from + ^http://(?:www\.)?tutor\.com/(contact-forms/|favicon\.ico|get-started(?:$|[?/])|images/|(?:Script|Web)Resource\.axd|scripts/|styles/) + to + https://www.tutor.com/$1 + + + from + ^http://media\.tutor\.com/ + to + https://media.tutor.com/ + + + target + + + host + tutor.com + + + host + *.tutor.com + + + + + Tuts 4 You.com + + ruleset + + name + Tuts 4 You.com + rule + + from + ^http://(?:(forum\.)|www\.)?tuts4you\.com/ + to + https://$1tuts4you.com/ + + securecookie + + host + ^\.(?:forum\.)?tuts4you\.com$ + name + .+ + + target + + + host + tuts4you.com + + + host + *.tuts4you.com + + + + + TutsPlus.com (partial) + + ruleset + + exclusion + + + pattern + ^http://tutsplus\.com/+(?!favicon\.ico|sign_(?:in|up)(?:$|[?/])) + + + pattern + ^http://(?:business|code|design)\.tutsplus\.com/+(?!favicon\.ico) + + + name + TutsPlus.com (partial) + rule + + from + ^http://((?:business|cms-assets|code|design|jobs|static|support|www)\.)?tutsplus\.com/ + to + https://$1tutsplus.com/ + + securecookie + + host + ^\.tutsplus\.com$ + name + ^__cfduid$ + + target + + + host + tutsplus.com + + + host + *.tutsplus.com + + + + + TuxIC.nl + + ruleset + + name + TuxIC.nl + rule + + from + ^http://(www\.)?tuxic\.nl/ + to + https://$1tuxic.nl/ + + securecookie + + host + ^(?:www\.)?tuxic\.nl$ + name + .+ + + target + + + host + tuxic.nl + + + host + www.tuxic.nl + + + + + TvTorrents + + ruleset + + name + TvTorrents + rule + + from + ^https?://([^/:@]+)?\.tvtorrents\.com/ + to + https://$1.tvtorrents.com/ + + target + + + host + tvtorrents.com + + + host + *.tvtorrents.com + + + + + Tvheadend.org + + ruleset + + name + Tvheadend.org + rule + + from + ^http://(www\.)?tvheadend\.org/ + to + https://$1tvheadend.org/ + + securecookie + + host + ^(?:www\.)?tvheadend\.org$ + name + .+ + + target + + + host + tvheadend.org + + + host + www.tvheadend.org + + + + + Tvlicensing.co.uk + + ruleset + + name + Tvlicensing.co.uk + rule + + from + ^http://(www\.)?tvlicensing\.co\.uk/ + to + https://www.tvlicensing.co.uk/ + + target + + + host + tvlicensing.co.uk + + + host + www.tvlicensing.co.uk + + + + + Tweakers.net + + ruleset + + exclusion + + pattern + ^http://(?:tweakers|ic\.tweakimg)\.net/crossdomain\.xml$ + + name + Tweakers.net + rule + + + from + ^http://((?:gathering|secure|www)\.)?tweakers\.net/ + to + https://$1tweakers.net/ + + + from + ^http://(?:www\.)?(ic\.)?tweakimg\.net/ + to + https://$1tweakimg.net/ + + + securecookie + + host + ^\.tweakers\.net$ + name + .+ + + target + + + host + tweakers.net + + + host + *.tweakers.net + + + host + tweakimg.net + + + host + *.tweakimg.net + + + + + Tweetdeck + + ruleset + + exclusion + + pattern + ^http://support\.tweetdeck\.com/ + + name + Tweetdeck + rule + + from + ^http://(?:www\.)?tweetdeck\.com/ + to + https://www.tweetdeck.com/ + + target + + + host + tweetdeck.com + + + host + www.tweetdeck.com + + + + + Twenga.com (false MCB) + + ruleset + + name + Twenga.com (false MCB) + platform + mixedcontent + rule + + from + ^http://blog\.twenga\.com/ + to + https://blog.twenga.com/ + + target + + host + blog.twenga.com + + + + Twenga.com (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.twenga\.com/+(?!wp-content/|wp-includes/) + + name + Twenga.com (partial) + rule + + from + ^http://(blog|dynstatic|i\d+|r)\.twenga\.com/ + to + https://$1.twenga.com/ + + securecookie + + host + ^\.twenga\.com$ + name + ^(?:TW_VISITOR_ID|WSID|twr) + + target + + host + *.twenga.com + + + + Twilio + + ruleset + + name + Twilio + rule + + from + ^http://(static\d\.|www\.)?twilio\.com/ + to + https://$1twilio.com/ + + securecookie + + host + ^\.www\.twilio\.com$ + name + .+ + + target + + + host + twilio.com + + + host + *.twilio.com + + + + + Twimler.com + + ruleset + + name + Twimler.com + rule + + from + ^http://(www\.)?twimler\.com/ + to + https://$1twimler.com/ + + securecookie + + host + ^\.twimler\.com$ + name + .+ + + target + + + host + twimler.com + + + host + *.twimler.com + + + + + Twingly (partial) + + ruleset + + name + Twingly (partial) + rule + + from + ^http://api\.twingly\.com/ + to + https://api.twingly.com/ + + securecookie + + host + ^api\.twingly\.com$ + name + .+ + + target + + host + api.twingly.com + + + + Twinings (partial) + + ruleset + + exclusion + + pattern + ^http://shop.twinings.co.uk/(?!fileadmin/|shop/(?:media|skin)/) + + name + Twinings (partial) + rule + + from + ^http://(shop\.|www\.)?twinings\.co\.uk/ + to + https://$1twinings.co.uk/ + + securecookie + + host + ^(?:www\.)?twinings\.co\.uk$ + name + .+ + + target + + + host + twinings.co.uk + + + host + www.twinings.co.uk + + + + + Twistage (partial) + + ruleset + + name + Twistage (partial) + rule + + from + ^http://console\.twistage\.com/ + to + https://console.twistage.com/ + + securecookie + + host + ^console\.twistage\.com$ + name + .+ + + target + + host + console.twistage.com + + + + Twisted4Life + + ruleset + + name + Twisted4Life + rule + + from + ^http://((?:www\.)?twisted4life\.com)/ + to + https://$1/ + + securecookie + + host + ^(.+\.)?twisted4life\.com$ + name + .* + + target + + + host + twisted4life.com + + + host + www.twisted4life.com + + + + + TwistedMatrix + + ruleset + + name + TwistedMatrix + rule + + from + ^http://((?:glyph|java|saph|speed|www)\.)?twistedmatrix\.com/ + to + https://$1twistedmatrix.com/ + + securecookie + + host + ^twistedmatrix\.com$ + name + .+ + + target + + + host + twistedmatrix.com + + + host + *.twistedmatrix.com + + + + + TwitCasting (partial) + + ruleset + + name + TwitCasting (partial) + rule + + + from + ^http://(?:en\.|ja\.|pt\.|www\.)?twitcasting\.tv/(css|img|swf)/ + to + https://ssl.twitcasting.tv/$1/ + + + from + ^http://(?:movie|ssl)\.twitcasting\.tv/ + to + https://$1.twitcasting.tv/ + + + target + + + host + twitcasting.tv + + + host + *.twitcasting.tv + + + + + TwitPic + + ruleset + + name + TwitPic + platform + mixedcontent + rule + + from + ^http://(?:www\.)?twitpic\.com/ + to + https://twitpic.com/ + + securecookie + + host + ^\.twitpic\.com$ + name + .* + + target + + + host + twitpic.com + + + host + *.twitpic.com + + + + + Twitter + + ruleset + + name + Twitter + rule + + + from + ^http://(?:www\.)?t\.co/ + to + https://t.co/ + + + from + ^http://a[5-9]\.twimg\.com/ + to + https://si0.twimg.com/ + + + from + ^http://(abs|a\d|amp|dnt|ea|g[2u]?|hca|jp|ma\d?|o|p|pbs|r|si\d|(?:cdn\.)?syndication|tailfeather|ton|v|widgets)\.twimg\.com/ + to + https://$1.twimg.com/ + + + from + ^http://s\.twimg\.com/ + to + https://d2rdfnizen5apl.cloudfront.net/ + + + from + ^http://((?:201\d|about|ads|analytics|blog|(?:cdn\.|urls\.)?api|business|preview(?:-dev|-stage)?\.cdn|de|dev|engineering|en|es|firefox|fr|it|ja|jp|m|media|mobile|music|oauth|p|pic|platform|widgets\.platform|search|static|support|transparency|upload|www)\.)?twitter\.com/ + to + https://$1twitter.com/ + + + from + ^http://platform\d\.twitter\.com/ + to + https://platform.twitter.com/ + + + securecookie + + + host + ^\.t\.co$ + name + .+ + + + host + ^(?:.*\.)?twitter\.com$ + name + .+ + + + target + + + host + t.co + + + host + *.t.co + + + host + *.twimg.com + + + host + twitter.com + + + host + *.twitter.com + + + + + Twitter Community.com + + ruleset + + name + Twitter Community.com + rule + + from + ^http://(www\.)?twittercommunity\.com/ + to + https://$1twittercommunity.com/ + + target + + + host + twittercommunity.com + + + host + www.twittercommunity.com + + + + + Twitter Counter (partial) + + ruleset + + name + Twitter Counter (partial) + rule + + from + ^https?://(?:www\.)?twittercounter\.com/((?:blog|embed)(?:$|[\?/])) + to + https://twittercounter.com/$1 + + target + + + host + twittercounter.com + + + host + www.twittercounter.com + + + + + Two Factor Auth + + ruleset + + name + Two Factor Auth + rule + + + from + ^http://twofactorauth\.org/ + to + https://twofactorauth.org/ + + + from + ^http://([^/:@]+)\.twofactorauth\.org/ + to + https://twofactorauth.org/ + + + securecookie + + host + ^(.*\.)?twofactorauth\.org$ + name + .* + + target + + + host + twofactorauth.org + + + host + www.twofactorauth.org + + + + + Two Roads + + ruleset + + name + Two Roads + rule + + from + ^http://((?:fiber|news|www)\.)?2roads\.com/ + to + https://$12roads.com/ + + securecookie + + host + ^\.2roads\.com$ + name + .+ + + target + + + host + 2roads.com + + + host + *.2roads.com + + + + + Twoseventy.net + + ruleset + + name + Twoseventy.net + rule + + from + ^http://(www\.)?twoseventy\.net/ + to + https://$1twoseventy.net/ + + securecookie + + host + ^\.twoseventy\.net$ + name + .+ + + target + + + host + twoseventy.net + + + host + *.twoseventy.net + + + + + Twtpoll.com + + ruleset + + name + Twtpoll.com + rule + + from + ^http://(www\.)?twtpoll\.com/ + to + https://$1twtpoll.com/ + + securecookie + + host + ^(?:www\.)?twtpoll\.com$ + name + .+ + + target + + + host + twtpoll.com + + + host + www.twtpoll.com + + + + + Twylah.com + + ruleset + + name + Twylah.com + rule + + + from + ^http://(www\.)?twylah\.com/ + to + https://$1twylah.com/ + + + from + ^http://assets0\.twylah\.com/ + to + https://d2bnh6mf518le4.cloudfront.net/ + + + securecookie + + host + ^(?:www\.)?twylah\.com$ + name + .+ + + target + + + host + twylah.com + + + host + www.twylah.com + + + + + Tyndall.ie + + ruleset + + name + Tyndall.ie + rule + + from + ^http://www\.tyndall\.ie/ + to + https://www.tyndall.ie/ + + securecookie + + host + ^\.tyndall\.ie$ + name + .+ + + target + + host + *.tyndall.ie + + + + Tynt (partial) + + ruleset + + name + Tynt (partial) + rule + + from + ^http://id\.tynt\.com/ + to + https://id.tynt.com/ + + securecookie + + + host + ^\.tynt\.com$ + name + ^s_\w\w\w?$ + + + host + ^id\.tynt\.com$ + name + .+ + + + target + + host + *.tynt.com + + + + Typecast.com (partial) + + ruleset + + exclusion + + pattern + ^http://typecast\.com/blog/\w + + name + Typecast.com (partial) + rule + + from + ^http://(www\.)?typecast\.com/ + to + https://$1typecast.com/ + + securecookie + + + host + ^\.typecast\.com$ + name + ^tca_(?:last_activity|last_visit|tracker)$ + + + host + ^typecast\.com$ + name + .+ + + + target + + + host + typecast.com + + + host + *.typecast.com + + + + + Typekit + + ruleset + + name + Typekit + rule + + + from + ^http://typekit\.com/ + to + https://typekit.com/ + + + from + ^http://p\.typekit\.net/ + to + https://p.typekit.net/ + + + from + ^http://use\.typekit\.(com|net)/ + to + https://use.typekit.$1/ + + + target + + + host + typekit.com + + + host + use.typekit.com + + + host + *.typekit.net + + + + + Typepad (partial) + + ruleset + + exclusion + + pattern + http://www\.typepad\.com/(?:services)?($|[\?/]) + + name + Typepad (partial) + rule + + from + ^http://(?:www\.)?typepad\.com/ + to + https://www.typepad.com/ + + target + + + host + typepad.com + + + host + www.typepad.com + + + + + Typography.com (partial) + + ruleset + + name + Typography.com (partial) + rule + + + from + ^http://(?:www\.)?typography\.com/(?=account(?:$|[?/])|cart/|favicon\.ico|images/|include/) + to + https://www.typography.com/ + + + from + ^http://(cloud|secure|ssl)\.typography\.com/ + to + https://$1.typography.com/ + + + securecookie + + host + ^\.typography\.com$ + name + ^__utm\w+$ + + target + + + host + typography.com + + + host + *.typography.com + + + + + Typotheque (partial) + + ruleset + + name + Typotheque (partial) + rule + + + from + ^http://(www\.)?typotheque\.com/(css/|images/|my_account|WF-\d{6}-\d{6}) + to + https://$1typotheque.com/$2 + + + from + ^https?://im\.typotheque\.com/ + to + https://tptqimages.s3.amazonaws.com/ + + + from + ^http://wf\.typotheque\.com/ + to + https://wf.typotheque.com/ + + + securecookie + + host + ^wf\.typotheque\.com$ + name + .* + + target + + + host + typotheque.com + + + host + *.typotheque.com + + + + + Työ- ja elinkeinoministeriö + + ruleset + + name + Työ- ja elinkeinoministeriö + rule + + from + ^http://(?:www\.)?tem\.fi/ + to + https://www.tem.fi/ + + target + + + host + tem.fi + + + host + www.tem.fi + + + + + Työttömyyskassojen Yhteisjärjestö + + ruleset + + name + Työttömyyskassojen Yhteisjärjestö + rule + + from + ^http://(www\.)?tyj\.fi/ + to + https://$1tyj.fi/ + + securecookie + + host + ^\.tyj\.fi$ + name + PHPSESSID + + target + + + host + tyj.fi + + + host + *.tyj.fi + + + + + U by Kotex Australia + + ruleset + + name + U by Kotex Australia + rule + + from + ^http://(www\.)?ubykotex\.com\.au/ + to + https://$1ubykotex.com.au/ + + securecookie + + host + ^www\.ubykotex\.com\.au$ + name + .+ + + target + + + host + ubykotex.com.au + + + host + www.ubykotex.com.au + + + + + U-Tokyo.ac.jp (partial) + + ruleset + + name + U-Tokyo.ac.jp (partial) + rule + + from + ^http://((?:dav[mw]|itc-lms|lecture|ms|ras|secure)\.ecc|(?:mbc\.dl|opac\.dl|gateway|kiku|park-ssl)\.itc|www\.nc|payment\.utf)\.u-tokyo\.ac\.jp/ + to + https://$1.u-tokyo.ac.jp/ + + securecookie + + host + ^(?:dav[mw]|itc-lms|lecture)\.ecc\.u-tokyo\.ac\.jp$ + name + .+ + + target + + host + *.u-tokyo.ac.jp + + + + U-blox.com + + ruleset + + name + U-blox.com + rule + + from + ^http://(shop-america\.|www\.)?u-blox\.com/ + to + https://$1u-blox.com/ + + target + + + host + *.u-blox.com + + + host + u-blox.com + + + + + U.S. Bank Client Advocacy + + ruleset + + name + U.S. Bank Client Advocacy + rule + + from + ^http://(www\.)?usbclientadvocacy\.com/ + to + https://$1usbclientadvocacy.com/ + + securecookie + + host + ^(?:www)?\.usbclientadvocacy\.com$ + name + .+ + + target + + + host + usbclientadvocacy.com + + + host + *.usbclientadvocacy.com + + + + + U.S. Citizenship and Immigration Services (partial) + + ruleset + + exclusion + + pattern + ^http://infopass\.uscis\.gov/(?:$|css/infopass2\.css) + + name + U.S. Citizenship and Immigration Services (partial) + rule + + + from + ^https?://blog\.uscis\.gov/favicon\.ico + to + https://www.blogger.com/favicon.ico + + + from + ^http://(egov|infopass)\.uscis\.gov/ + to + https://$1.uscis.gov/ + + + target + + host + *.uscis.gov + + + + U.S. Department of Commerce (partial) + + ruleset + + name + U.S. Department of Commerce (partial) + rule + + from + ^http://(mailinglist|tac|www)\.bis\.doc\.gov/ + to + https://$1.bis.doc.gov/ + + target + + host + *.bis.doc.gov + + + + U.S. Department of the Treasury (partial) + + ruleset + + name + U.S. Department of the Treasury (partial) + rule + + from + ^http://(?:www\.)?ots\.treas\.gov/ + to + https://www.ots.treas.gov/ + + securecookie + + host + ^www\.ots\.treas\.gov$ + name + .+ + + target + + host + *.treas.gov + + + + U.S. Fish and Wildlife Service (partial) + + ruleset + + name + U.S. Fish and Wildlife Service (partial) + rule + + from + ^http://(?:www\.)?fws\.gov/ + to + https://www.fws.gov/ + + target + + + host + fws.gov + + + host + www.fws.gov + + + + + U.S. Geological Survey + + ruleset + + name + U.S. Geological Survey + platform + mixedcontent + rule + + from + ^http://(answers|nccwsc|water)\.usgs\.gov/ + to + https://$1.usgs.gov/ + + target + + host + *.usgs.gov + + + + U.S. Immigration and Customs Enforcement + + ruleset + + name + U.S. Immigration and Customs Enforcement + rule + + + from + ^https://ice\.gov/ + to + https://www.ice.gov/ + + + from + ^http://www\.ice\.gov/ + to + https://www.ice.gov/ + + + securecookie + + host + ^.*\.ice\.gov$ + name + .* + + target + + + host + ice.gov + + + host + www.ice.gov + + + + + U.S. Patent and Trademark Office (partial) + + ruleset + + name + U.S. Patent and Trademark Office (partial) + rule + + + from + ^http://(efs|oedci|ramps|tsdr)\.uspto\.gov/ + to + https://$1.uspto.gov/ + + + from + ^https?://t(?:ar|d)r\.uspto\.gov/(?:\?.*)?$ + to + https://tdsr.uspto.gov/ + + + securecookie + + host + ^.+\.uspto\.gov$ + name + .+ + + target + + host + *.uspto.gov + + + + U.S. Securities and Exchange Commission (partial) + + ruleset + + name + U.S. Securities and Exchange Commission (partial) + rule + + + from + ^http://(?:www\.)?sec\.gov/ + to + https://www.sec.gov/ + + + from + ^http://searchwww\.sec\.gov/ + to + https://searchwww.sec.gov/ + + + target + + + host + sec.gov + + + host + *.sec.gov + + + + + UA.edu (false MCB) + + ruleset + + name + UA.edu (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?as\.au\.edu/ + to + https://$1as.eu.edu/ + + target + + + host + as.au.edu + + + host + www.as.au.edu + + + + + UA.edu (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?as\.ua\.edu/+home(?!/wp-content/|/wp-includes/) + + name + UA.edu (partial) + rule + + from + ^http://((?:as|(?:home|www)\.as|bama|copingpower|fa-webprod\.fa|mybama|oirax|onlinegiving|secure\.sa|ssb|www)\.)?ua\.edu/ + to + https://$1ua.edu/ + + target + + + host + ua.edu + + + host + *.ua.edu + + + + + UBM (partial) + + ruleset + + name + UBM (partial) + rule + + from + ^http://(?:www\.)?events\.ubm\.com/ + to + https://events.ubm.com/ + + securecookie + + host + ^events\.ubm\.com$ + name + .+ + + target + + host + *.ubm.com + + + + UBS (partial) + + ruleset + + exclusion + + pattern + ^http://keyinvest\.ibb\.ubs\.com/(?!images/|styles/) + + name + UBS (partial) + rule + + + from + ^http://(?:www\.)?ubs\.com/ + to + https://www.ubs.com/ + + + from + ^https?://ubs\.com/ + to + https://www.ubs.com/ + + + from + ^http://(apps[12]?|assetgateway|connect(?:-ch[12]?)?|ebanking-\w+|grs|(?:client(?:login|portal)|keyinvest)\.ibb|jobs|m|neo|onesource|onlineservices|privatebank-us|quotes-global2?|quotes-public1?|realty|sbms[12]?|secure|www[12]?)\.ubs\.com/ + to + https://$1.ubs.com/ + + + from + ^http://www\.ubs-static\.com/ + to + https://www.ubs-static.com/ + + + securecookie + + host + ^.*\.ubs\.com$ + name + .+ + + target + + + host + ubs.com + + + host + *.ubs.com + + + host + *.ibb.ubs.com + + + host + *.www.ubs.com + + + host + www.ubs-static.com + + + + + UC Hastings.edu (false MCB) + + ruleset + + name + UC Hastings.edu (false MCB) + platform + mixedcontent + rule + + from + ^http://(journals|library|librarysource)\.uchastings\.edu/ + to + https://$1.uchastings.edu/ + + target + + + host + journals.uchastings.edu + + + host + library.uchastings.edu + + + host + librarysource.uchastings.edu + + + + + UC Hastings.edu (partial) + + ruleset + + exclusion + + + pattern + ^http://library\.uchastings\.edu/+(?!images/|_site_support/) + + + pattern + ^http://librarysource\.uchastings\.edu/+(?!sp/assets/) + + + name + UC Hastings.edu (partial) + rule + + from + ^http://((?:cio2|events|library|librarysource|webadvisor|www)\.)?uchastings\.edu/ + to + https://$1uchastings.edu/ + + target + + + host + uchastings.edu + + + host + *.uchastings.edu + + + + + UCAR.edu + + ruleset + + name + UCAR.edu + rule + + from + ^http://(abuse|www\.eol|(?:www\.)?ncar|security|www\.unidata|www2?)\.ucar\.edu/ + to + https://$1.ucar.edu/ + + securecookie + + host + ^(?:www\.eol|\.ncar|www\.unidata)\.ucar\.edu$ + name + .+ + + target + + host + *.ucar.edu + + + + UCC.dk + + ruleset + + name + UCC.dk + rule + + from + ^http://(www\.)?ucc\.dk/ + to + https://$1ucc.dk/ + + target + + + host + ucc.dk + + + host + www.ucc.dk + + + + + UCC.ie (partial) + + ruleset + + name + UCC.ie (partial) + rule + + + from + ^http://(booleweb|careersfdr|cora|library|lugh|pacadmin|pensionsonline|yosemite)\.ucc\.ie/ + to + https://$1.ucc.ie/ + + + from + ^http://events\.ucc\.ie/([^?]*)(?:\?.*)? + to + https://lugh.ucc.ie/eventslist/t4.do?pid=p1$1 + + + securecookie + + host + ^(?:booleweb|careersfdr|cora|library|lugh|pacadmin|pensionsonline)\.ucc\.ie$ + name + .+ + + target + + host + *.ucc.ie + + + + UCLA Health + + ruleset + + name + UCLA Health + rule + + from + ^http://(?:www\.)?uclahealth\.org/ + to + https://www.uclahealth.org/ + + securecookie + + host + ^www\.uclahealth\.org$ + name + .+ + + target + + + host + uclahealth.org + + + host + www.uclahealth.org + + + + + UCLA.edu (partial) + + ruleset + + exclusion + + + pattern + ^http://maps\.ucla\.edu/+m/ + + + pattern + ^http://mwf\.ucla\.edu/+(?!css/|img/) + + + pattern + ^http://www\.recreation\.ucla\.edu/+(?!\?css=|images/|scripts/) + + + name + UCLA.edu (partial) + rule + + + from + ^http://(?:www\.)?(admissions?|osd)\.ucla\.edu/ + to + https://www.$1.ucla.edu/ + + + from + ^http://(www\.)?(bruintech|ccle|dcp|diversity|events|happenings|library|logon|ucod)\.ucla\.edu/ + to + https://$1$2.ucla.edu/ + + + from + ^http://(shb\.ais|sheltie\.ats|(?:auth-asm1\.)?auth|docs\.ccle|welcome\.diversity|secure5\.ha|dev\.happenings|(?:studentweb|wwwprep)\.it|kb|(?:www-stage|www-test)\.library|logon-(?:asm|csb)1\.logon|m|maps|mwf|hr\.mycareer|(?:secure|www)\.recreation|computing\.sscnet|dnn\.uclanet|www\.ursa)\.ucla\.edu/ + to + https://$1.ucla.edu/ + + + from + ^http://guides\.library\.ucla\.edu/(?=css\d*/|data/|include/|js\d*/) + to + https://libguides.com/ + + + securecookie + + + host + ^(?:shb\.ais|kb|(?:www\.)?osd|dnn\.uclanet)\.ucla\.edu$ + name + .+ + + + host + ^www\.recreation\.ucla.edu$ + name + ^exp_last_(?:activity|visit)$ + + + target + + host + *.ucla.edu + + + + UCM.es (partial) + + ruleset + + exclusion + + + pattern + ^http://biblioteca\.ucm\.es/+(?!media/|temas/) + + + pattern + ^http://cisne\.sim\.ucm\.es/+(?!screens/|scripts/) + + + name + UCM.es (partial) + rule + + from + ^http://(biblioteca|pendientedemigracion|cisne\.sim|www)\.ucm\.es/ + to + https://$1.ucm.es/ + + target + + host + *.ucm.es + + + + UCSD + + ruleset + + exclusion + + + pattern + ^http://health\.ucsd\.edu/_layouts/spsredirect\.aspx + + + pattern + ^http://extension\.ucsd\.edu/+(?!cart/images/|css/|favicon\.ico|images/|profile/index\.cfm|programapplications/index\.cfm) + + + pattern + ^http://hdh\.ucsd\.edu/+mobile(?:$|[?/]) + + + pattern + ^http://(?:www\.)?psychology\.ucsd\.edu/+(?!favicon\.ico|_images/|_resources/) + + + pattern + ^http://studenthealth\.ucsd\.edu/+(?!css/|favicon\.ico|img/) + + + pattern + ^http://tuna\.ucsd\.edu/+(?!$|\?) + + + name + UCSD + rule + + + from + ^http://a4\.ucsd\.edu/ + to + https://a4.ucsd.edu/ + + + from + ^http://(acs-)?webmail\.ucsd\.edu/ + to + https://acs-webmail.ucsd.edu/ + + + from + ^http://altng\.ucsd\.edu/ + to + https://altng.ucsd.edu/ + + + from + ^http://aventeur\.ucsd\.edu/ + to + https://aventeur.ucsd.edu/ + + + from + ^http://cinfo\.ucsd\.edu/ + to + https://cinfo.ucsd.edu/ + + + from + ^http://facilities\.ucsd\.edu/ + to + https://facilities.ucsd.edu/ + + + from + ^http://gradapply\.ucsd\.edu/ + to + https://gradapply.ucsd.edu/ + + + from + ^http://graduateapp\.ucsd\.edu/ + to + https://graduateapp.ucsd.edu/ + + + from + ^http://jacobsstudent\.ucsd\.edu/ + to + https://jacobsstudent.ucsd.edu/ + + + from + ^http://myucsdchart\.ucsd\.edu/ + to + https://myucsdchart.ucsd.edu/ + + + from + ^http://sdacs\.ucsd\.edu/ + to + https://sdacs.ucsd.edu/ + + + from + ^http://shs\.ucsd\.edu/ + to + https://shs.ucsd.edu/ + + + from + ^http://ted\.ucsd\.edu/ + to + https://ted.ucsd.edu/ + + + from + ^http://ucsdbkst\.ucsd\.edu/ + to + https://ucsdbkst.ucsd.edu/ + + + from + ^http://a\.ucsd\.edu/ + to + https://a.ucsd.edu/ + + + from + ^http://acms\.ucsd\.edu/ + to + https://acms.ucsd.edu/ + + + from + ^http://(www\.)?bookstore\.ucsd\.edu/ + to + https://bookstore.ucsd.edu/ + + + from + ^http://(www[-\.])?cs(e)?\.ucsd\.edu/ + to + https://$1cs$2.ucsd.edu/ + + + from + ^http://(www\.)?ece\.ucsd\.edu(:16080)?/ + to + https://$1ece.ucsd.edu/ + + + from + ^http://(www\.)?hdh\.ucsd\.edu/ + to + https://$1hdh.ucsd.edu/ + + + from + ^http://(www\.)?hds\.ucsd\.edu/ + to + https://hds.ucsd.edu/ + + + from + ^http://maeweb\.ucsd\.edu/ + to + https://maeweb.ucsd.edu/ + + + from + ^http://(www\.)?nanoengineering\.ucsd\.edu/ + to + https://$1nanoengineering.ucsd.edu/ + + + from + ^http://ne(-?web)?\.ucsd\.edu/ + to + https://ne$1.ucsd.edu/ + + + from + ^http://roger\.ucsd\.edu/ + to + https://roger.ucsd.edu/ + + + from + ^http://se\.ucsd\.edu/ + to + https://se.ucsd.edu/ + + + from + ^http://(www\.)?structures\.ucsd\.edu/ + to + https://$1structures.ucsd.edu/ + + + from + ^http://uxt\.ucsd\.edu/ + to + https://uxt.ucsd.edu/ + + + from + ^http://www-ne\.ucsd\.edu/ + to + https://www-ne.ucsd.edu/ + + + from + ^http://www-structures\.ucsd\.edu/ + to + https://www-structures.ucsd.edu/ + + + from + ^http://health\.ucsd\.edu/(_layouts/|page_ad/|request_appt|Style\ Library/|WebResource\.axd) + to + https://health.ucsd.edu/$1 + + + from + ^http://libraries\.ucsd\.edu/digital/ + to + https://libraries.ucsd.edu/digital/ + + + from + ^http://studenthealth\.ucsd\.edu/secure/ + to + https://studenthealth.ucsd.edu/secure/ + + + from + ^http://(www-)?act\.ucsd\.edu/(bsl/home|cgi-bin/[A-Za-z]+link\.pl|classPlanner|marketplace-sso|mytritonlink/view|myTritonlink20|student[A-Z][A-Za-z]+/[A-Za-z]+|travellink/home) + to + https://$1act.ucsd.edu/$2 + + + from + ^http://accesslink\.ucsd\.edu/ + to + https://altng.ucsd.edu/ + + + from + ^http://financiallink\.ucsd\.edu/?$ + to + https://www-act.ucsd.edu/cgi-bin/financiallink.pl + + + from + ^http://marketplace\.ucsd\.edu/?$ + to + https://www-act.ucsd.edu/marketplace-sso/signon + + + from + ^http://(www\.)?(my)?tritonlink\.ucsd\.edu/?$ + to + https://act.ucsd.edu/myTritonlink20/display.htm + + + from + ^http://uclearning\.ucsd\.edu/ + to + https://a4.ucsd.edu/lms/ + + + from + ^http://(cri|desktop|resnet|software|sysstaff)\.ucsd\.edu/ + to + https://acms.ucsd.edu/units/$1/ + + + from + ^http://(www-)?acs\.ucsd\.edu/troublereport/?$ + to + https://a.ucsd.edu/troublereport/ + + + from + ^http://www-acs\.ucsd\.edu/?$ + to + https://acms.ucsd.edu/index.html + + + from + ^http://www-acs\.ucsd\.edu/account-tools/oce-intro\.shtml$ + to + https://acms.ucsd.edu/students/oce-intro.html + + + from + ^http://www-acs\.ucsd\.edu/instructional/?$ + to + https://acms.ucsd.edu/students/ + + + from + ^http://collections\.ucsd\.edu/+(?=$|\?) + to + https://scripps.ucsd.edu/collections + + + from + ^http://(?:www\.)?(chd|ethnicstudies)\.ucsd\.edu/ + to + https://$1.ucsd.edu/ + + + from + ^http://(?:www\.)?giftplanning\.ucsd\.edu/ + to + https://ucsd.giftlegacy.com/ + + + from + ^http://(www\.)?math\.ucsd\.edu/ + to + https://$1math.ucsd.edu/ + + + from + ^http://psy\.ucsd\.edu/+(?:$|\?.*) + to + https://psychology.ucsd.edu/ + + + from + ^http://(?:www\.)?psychology\.ucsd\.edu/ + to + https://psychology.ucsd.edu/ + + + from + ^http://scrippsnews\.ucsd\.edu/+(?=$|\?) + to + https://scripps.ucsd.edu/news + + + from + ^http://scrippsnews\.ucsd\.edu/Releases/ + to + https://scripps.ucsd.edu/news + + + from + ^http://(?:www\.)?supportscripps\.ucsd\.edu/[^?]* + to + https://scripps.ucsd.edu/giving + + + from + ^http://((?:admissions|academicconnections|as|assets|artsandhumanities|biology|blink|caesar|calendar|career|cfr|cgs|cilas|create|crlpsandiego|cseweb|csmp|cwo|dah|dbsportal|disabilities|eaop|ersys-webapps|extension|foundation|giving|globalhealthprogram|health2|healthsciences|hdh|hsreservations|igpp|igppticket|igppwiki|iod|isp|iwdc|jobs|libguides|libraries|lists|m|mailman|mathlink2?|meded|mobile|myextension|myosd|mytritonlink|myucsdchart|ocfr|ocga|onthego|pao|parents|physics|podcast|polisci|preuss|profiles|recreation|rmp|saber|sarc|sciencestudies|scripps|sdawp|ships|socialsciences|student(?:health|parents|s|support)|sustainability|trio|tuna|ucsdfoundation|ui|unex-shibboleth|usmex|usp|www|www-act|www-er|yankelovichcenter)\.)?ucsd\.edu/ + to + https://$1ucsd.edu/ + + + securecookie + + + host + ^(.+\.)?a(4|cs-webmail)\.ucsd\.edu$ + name + .* + + + host + .*\.ucsd\.edu + name + .* + + + target + + + host + a4.ucsd.edu + + + host + acs-webmail.ucsd.edu + + + host + altng.ucsd.edu + + + host + aventeur.ucsd.edu + + + host + cinfo.ucsd.edu + + + host + facilities.ucsd.edu + + + host + gradapply.ucsd.edu + + + host + graduateapp.ucsd.edu + + + host + jacobsstudent.ucsd.edu + + + host + myucsdchart.ucsd.edu + + + host + sdacs.ucsd.edu + + + host + shs.ucsd.edu + + + host + ted.ucsd.edu + + + host + ucsdbkst.ucsd.edu + + + host + a.ucsd.edu + + + host + acms.ucsd.edu + + + host + bookstore.ucsd.edu + + + host + www.bookstore.ucsd.edu + + + host + cs.ucsd.edu + + + host + www.cs.ucsd.edu + + + host + cse.ucsd.edu + + + host + www.cse.ucsd.edu + + + host + ece.ucsd.edu + + + host + www.ece.ucsd.edu + + + host + hdh.ucsd.edu + + + host + www.hdh.ucsd.edu + + + host + hds.ucsd.edu + + + host + www.hds.ucsd.edu + + + host + maeweb.ucsd.edu + + + host + nanoengineering.ucsd.edu + + + host + www.nanoengineering.ucsd.edu + + + host + ne-web.ucsd.edu + + + host + ne.ucsd.edu + + + host + neweb.ucsd.edu + + + host + roger.ucsd.edu + + + host + se.ucsd.edu + + + host + structures.ucsd.edu + + + host + www.structures.ucsd.edu + + + host + uxt.ucsd.edu + + + host + www-cs.ucsd.edu + + + host + www-cse.ucsd.edu + + + host + www-ne.ucsd.edu + + + host + www-structures.ucsd.edu + + + host + act.ucsd.edu + + + host + health.ucsd.edu + + + host + libraries.ucsd.edu + + + host + studenthealth.ucsd.edu + + + host + www-act.ucsd.edu + + + host + accesslink.ucsd.edu + + + host + acs.ucsd.edu + + + host + cri.ucsd.edu + + + host + desktop.ucsd.edu + + + host + financiallink.ucsd.edu + + + host + iwdc.ucsd.edu + + + host + marketplace.ucsd.edu + + + host + mytritonlink.ucsd.edu + + + host + www.mytritonlink.ucsd.edu + + + host + resnet.ucsd.edu + + + host + software.ucsd.edu + + + host + sysstaff.ucsd.edu + + + host + tritonlink.ucsd.edu + + + host + www.tritonlink.ucsd.edu + + + host + uclearning.ucsd.edu + + + host + webmail.ucsd.edu + + + host + www-acs.ucsd.edu + + + host + ucsd.edu + + + host + *.ucsd.edu + + + + + UCalgary.ca (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?ucalgary\.ca/+(?!(?:\w+/)?(?:files|misc|modules|sites)/|(?:alumni|brand|community|currentstudents|events|facultyandstaff|hr|identity|map|prospectivestudents|pubs|residence|science/user)(?:$|[?/])|favicon\.ico) + + + pattern + ^http://contacts\.ucalgary\.ca/+(?!files/|sites/|user(?:$|[?/])) + + + pattern + ^http://conted\.ucalgary\.ca/+(?!\w+/images/|coursebasket/publicCourseBasket\.do|css/|favicon\.ico|images/|javascript/|uc-scripts/|yahoo/) + + + pattern + ^http://(?:haskayne|kb)\.ucalgary\.ca/+(?!files/) + + + pattern + ^http://springsummer.ucalgary.ca/+(?!files/) + + + pattern + ^http://ereports2\.ucalgary\.ca/+(?!cognoscas/*(?:$|\?)) + + + name + UCalgary.ca (partial) + rule + + + from + ^http://((?:acctman|activeliving|arts|cas|contacts|conted|www\.efs|prdrps2\.ehs|eplanning|ereports2|grad|haskayne|idp|itsc|imagine|kb|library|ling|llc|my|netcommunity|oadm|people|pr1web|science|springsummer|spse|static|wcmprod2|www)\.)?ucalgary\.ca(:8445)?/ + to + https://$1ucalgary.ca$2/ + + + from + ^http://libguides\.ucalgary\.com/(?=css\d*/|favicon\.ico|include/|js\d*/) + to + https://libguides.com/ + + + from + ^http://(?:www\.)?su\.ucalgary\.ca/ + to + https://www.su.ucalgary.ca/ + + + from + ^http://www\.calgaryoutdoorcentre\.ca/files/ + to + https://www.ucalgary.ca/files/ + + + securecookie + + host + ^(?:acctman|activeliving|arts|cas|prdrps2\.ehs|eplanning|idp|imagine|itsc|library|llc|netcommunity|oadm|science|static|\.su|www\.su)\.ucalgary\.ca$ + name + .+ + + target + + + host + ucalgary.ca + + + host + *.ucalgary.ca + + + host + www.calgaryoutdoorcentre.ca + + + + + UD Media.de + + ruleset + + name + UD Media.de + rule + + + from + ^http://(www\.)?ud-?media\.de/ + to + https://$1udmedia.de/ + + + from + ^http://hilfe\.udmedia\.de/[^?]*(?=\?.*)? + to + https://www.udmedia.de/faq/ + + + from + ^http://livechat\.udmedia\.de/[^?]*(?=\?.*)? + to + https://messenger.providesupport.com/messenger/udmedia.html + + + from + ^http://(?:www\.)?root\.udmedia\.de/ + to + https://root.udmedia.de/ + + + securecookie + + host + ^(?:root|\.www)\.udmedia\.de$ + name + .+ + + target + + + host + udmedia.de + + + host + *.udmedia.de + + + host + ud-media.de + + + host + www.ud-media.de + + + + + UFC Fit + + ruleset + + name + UFC Fit + rule + + from + ^http://(launchpad\.|www\.)?ufcfit\.com/ + to + https://$1ufcfit.com/ + + securecookie + + host + ^(?:launchpad|www)\.ufcfit\.com$ + name + .+ + + target + + + host + ufcfit.com + + + host + *.ufcfit.com + + + + + UFies.org + + ruleset + + name + UFies.org + rule + + + from + ^http://(?:www\.)?ufies\.org/ + to + https://ufies.org/ + + + from + ^http://mail\.ufies\.org/[^?]*(\?.*)? + to + https://ufies.org/mail/$1 + + + securecookie + + host + ^ufies\.org$ + name + .+ + + target + + + host + ufies.org + + + host + *.ufies.org + + + + + UHH_Informatik + + ruleset + + name + UHH_Informatik + rule + + from + ^http://(?:www\.)?informatik\.uni-hamburg\.de/ + to + https://www.informatik.uni-hamburg.de/ + + target + + + host + www.informatik.uni-hamburg.de + + + host + informatik.uni-hamburg.de + + + + + UI CDN.com + + ruleset + + name + UI CDN.com + rule + + from + ^http://(?:sec-)?s\.uicdn\.com/ + to + https://sec-s.uicdn.com/ + + target + + host + *.uicdn.com + + + + UI CDN.net + + ruleset + + name + UI CDN.net + rule + + from + ^http://s([1-8])\.uicdn\.net/ + to + https://s$1.uicdn.net/ + + target + + host + *.uicdn.net + + + + UI Portal (partial) + + ruleset + + name + UI Portal (partial) + rule + + from + ^http://(img|js|logo|wa|us\.wa)\.ui-portal\.de/ + to + https://$1.ui-portal.de/ + + target + + host + *.ui-portal.de + + + + UIE + + ruleset + + name + UIE + rule + + from + ^http://(?:www\.)?uie\.com/ + to + https://www.uie.com/ + + securecookie + + host + ^(.+\.)?uie\.com$ + name + .* + + target + + + host + uie.com + + + host + www.uie.com + + + + + UImserv.net + + ruleset + + name + UImserv.net + rule + + from + ^http://(adclient|adimg|advideo|pixelbox|r|uidbox|uir|logout\.webde)\.uimserv\.net/ + to + https://$1.uimserv.net/ + + securecookie + + host + ^\.uimserv\.net$ + name + .+ + + target + + host + *.uimserv.net + + + + UK Access Management Federation + + ruleset + + name + UK Access Management Federation + rule + + from + ^http://wayf\.ukfederation\.org\.uk/ + to + https://wayf.ukfederation.org.uk/ + + securecookie + + host + ^wayf\.ukfederation\.org\.uk$ + name + .* + + target + + host + wayf.ukfederation.org.uk + + + + UK Free Software Network (partial) + + ruleset + + name + UK Free Software Network (partial) + rule + + from + ^http://(manage\.|www\.)?ukfsn\.org/ + to + https://$1ukfsn.org/ + + securecookie + + host + .*\.ukfsn\.org$ + name + .* + + target + + + host + ukfsn.org + + + host + *.ukfsn.org + + + + + UK Information Commissioner's Office (partial) + + ruleset + + name + UK Information Commissioner's Office (partial) + rule + + + from + ^http://ico\.gov\.uk/ + to + https://www.ico.gov.uk/ + + + from + ^http://www\.ico\.gov\.uk/(favicon.ico|(\w+/)?\w+/~/|upload/) + to + https://www.ico.gov.uk/$1 + + + target + + + host + ico.gov.uk + + + host + www.ico.gov.uk + + + + + UK Intellectual Property Office + + ruleset + + name + UK Intellectual Property Office + rule + + from + ^http://(www\.)?ipo\.gov\.uk/ + to + https://$1ipo.gov.uk/ + + securecookie + + host + ^(?:www\.)?ipo\.gov\.uk$ + name + .+ + + target + + + host + ipo.gov.uk + + + host + www.ipo.gov.uk + + + + + UK Local Government + + ruleset + + name + UK Local Government + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?(?:hinckleyandbosworthonline\.org\.uk|hinckley\-bosworth\.gov\.uk)/ + to + https://www.hinckley-bosworth.gov.uk/ + + + from + ^http://apps\.southend\.gov\.uk/ + to + https://apps.southend.gov.uk/ + + + from + ^http://(?:www\.)?(broadland\.gov\.uk|kettering\.gov\.uk|manchester\.gov\.uk|monmouthshire\.gov\.uk|northwarks\.gov\.uk)/ + to + https://secure.$1/ + + + from + ^http://(?:www\.)?([^/]+)/ + to + https://www.$1/ + + + securecookie + + host + ^www\.ceredigion\.gov\.uk$ + name + .+ + + target + + + host + www.hinckleyandbosworthonline.org.uk + + + host + hinckleyandbosworthonline.org.uk + + + host + www.hinckley-bosworth.gov.uk + + + host + hinckley-bosworth.gov.uk + + + host + apps.southend.gov.uk + + + host + broadland.gov.uk + + + host + www.broadland.gov.uk + + + host + manchester.gov.uk + + + host + www.manchester.gov.uk + + + host + monmouthshire.gov.uk + + + host + www.monmouthshire.gov.uk + + + host + northwarks.gov.uk + + + host + www.northwarks.gov.uk + + + host + aberdeencity.gov.uk + + + host + www.aberdeencity.gov.uk + + + host + aberdeenshire.gov.uk + + + host + www.aberdeenshire.gov.uk + + + host + angus.gov.uk + + + host + www.angus.gov.uk + + + host + bassetlaw.gov.uk + + + host + www.bassetlaw.gov.uk + + + host + bathnes.gov.uk + + + host + www.bathnes.gov.uk + + + host + blackpool.gov.uk + + + host + www.blackpool.gov.uk + + + host + bournemouth.gov.uk + + + host + www.bournemouth.gov.uk + + + host + bradford.gov.uk + + + host + www.bradford.gov.uk + + + host + braintree.gov.uk + + + host + www.braintree.gov.uk + + + host + brent.gov.uk + + + host + www.brent.gov.uk + + + host + burnley.gov.uk + + + host + www.burnley.gov.uk + + + host + calderdale.gov.uk + + + host + www.calderdale.gov.uk + + + host + camden.gov.uk + + + host + www.camden.gov.uk + + + host + canterbury.gov.uk + + + host + www.canterbury.gov.uk + + + host + ceredigion.gov.uk + + + host + www.ceredigion.gov.uk + + + host + charnwood.gov.uk + + + host + www.charnwood.gov.uk + + + host + cherwell.gov.uk + + + host + www.cherwell.gov.uk + + + host + cheshireeast.gov.uk + + + host + www.cheshireeast.gov.uk + + + host + cityoflondon.gov.uk + + + host + www.cityoflondon.gov.uk + + + host + derby.gov.uk + + + host + www.derby.gov.uk + + + host + devon.gov.uk + + + host + www.devon.gov.uk + + + host + doncaster.gov.uk + + + host + www.doncaster.gov.uk + + + host + dover.gov.uk + + + host + www.dover.gov.uk + + + host + dudley.gov.uk + + + host + www.dudley.gov.uk + + + host + dundeecity.gov.uk + + + host + www.dundeecity.gov.uk + + + host + easthants.gov.uk + + + host + www.easthants.gov.uk + + + host + eastlothian.gov.uk + + + host + www.eastlothian.gov.uk + + + host + east-northamptonshire.gov.uk + + + host + www.east-northamptonshire.gov.uk + + + host + eastriding.gov.uk + + + host + www.eastriding.gov.uk + + + host + edinburgh.gov.uk + + + host + www.edinburgh.gov.uk + + + host + elmbridge.gov.uk + + + host + www.elmbridge.gov.uk + + + host + enfield.gov.uk + + + host + www.enfield.gov.uk + + + host + essex.gov.uk + + + host + www.essex.gov.uk + + + host + falkirk.gov.uk + + + host + www.falkirk.gov.uk + + + host + fareham.gov.uk + + + host + www.fareham.gov.uk + + + host + fenland.gov.uk + + + host + www.fenland.gov.uk + + + host + fifedirect.org.uk + + + host + www.fifedirect.org.uk + + + host + fylde.gov.uk + + + host + www.fylde.gov.uk + + + host + gateshead.gov.uk + + + host + www.gateshead.gov.uk + + + host + glasgow.gov.uk + + + host + www.glasgow.gov.uk + + + host + gloucestershire.gov.uk + + + host + www.gloucestershire.gov.uk + + + host + hackney.gov.uk + + + host + www.hackney.gov.uk + + + host + hants.gov.uk + + + host + www.hants.gov.uk + + + host + hastings.gov.uk + + + host + www.hastings.gov.uk + + + host + herefordshire.gov.uk + + + host + www.herefordshire.gov.uk + + + host + hertsdirect.org + + + host + www.hertsdirect.org + + + host + hillingdon.gov.uk + + + host + www.hillingdon.gov.uk + + + host + ipswich.gov.uk + + + host + www.ipswich.gov.uk + + + host + islington.gov.uk + + + host + www.islington.gov.uk + + + host + iwight.com + + + host + www.iwight.com + + + host + kent.gov.uk + + + host + www.kent.gov.uk + + + host + kettering.gov.uk + + + host + www.kettering.gov.uk + + + host + kirklees.gov.uk + + + host + www.kirklees.gov.uk + + + host + lbhf.gov.uk + + + host + www.lbhf.gov.uk + + + host + leicestershire.gov.uk + + + host + www.leicestershire.gov.uk + + + host + lincolnshire.gov.uk + + + host + www.lincolnshire.gov.uk + + + host + london.gov.uk + + + host + www.london.gov.uk + + + host + maidstone.gov.uk + + + host + www.maidstone.gov.uk + + + host + merton.gov.uk + + + host + www.merton.gov.uk + + + host + midlothian.gov.uk + + + host + www.midlothian.gov.uk + + + host + miltonkeynes.gov.uk + + + host + www.miltonkeynes.gov.uk + + + host + newcastle.gov.uk + + + host + www.newcastle.gov.uk + + + host + n-kesteven.gov.uk + + + host + www.n-kesteven.gov.uk + + + host + north-herts.gov.uk + + + host + www.north-herts.gov.uk + + + host + northnorfolk.org + + + host + www.northnorfolk.org + + + host + nottinghamshire.gov.uk + + + host + www.nottinghamshire.gov.uk + + + host + n-somerset.gov.uk + + + host + www.n-somerset.gov.uk + + + host + pendle.gov.uk + + + host + www.pendle.gov.uk + + + host + peterborough.gov.uk + + + host + www.peterborough.gov.uk + + + host + redbridge.gov.uk + + + host + www.redbridge.gov.uk + + + host + ribblevalley.gov.uk + + + host + www.ribblevalley.gov.uk + + + host + richmondshire.gov.uk + + + host + www.richmondshire.gov.uk + + + host + rochford.gov.uk + + + host + www.rochford.gov.uk + + + host + rossendale.gov.uk + + + host + www.rossendale.gov.uk + + + host + rother.gov.uk + + + host + www.rother.gov.uk + + + host + rotherham.gov.uk + + + host + www.rotherham.gov.uk + + + host + rugby.gov.uk + + + host + www.rugby.gov.uk + + + host + ryedale.gov.uk + + + host + www.ryedale.gov.uk + + + host + scotborders.gov.uk + + + host + www.scotborders.gov.uk + + + host + sevenoaks.gov.uk + + + host + www.sevenoaks.gov.uk + + + host + sheffield.gov.uk + + + host + www.sheffield.gov.uk + + + host + slough.gov.uk + + + host + www.slough.gov.uk + + + host + solihull.gov.uk + + + host + www.solihull.gov.uk + + + host + somerset.gov.uk + + + host + www.somerset.gov.uk + + + host + southampton.gov.uk + + + host + www.southampton.gov.uk + + + host + southend.gov.uk + + + host + www.southend.gov.uk + + + host + southglos.gov.uk + + + host + www.southglos.gov.uk + + + host + southlanarkshire.gov.uk + + + host + www.southlanarkshire.gov.uk + + + host + southwark.gov.uk + + + host + www.southwark.gov.uk + + + host + staffordshire.gov.uk + + + host + www.staffordshire.gov.uk + + + host + staffsmoorlands.gov.uk + + + host + www.staffsmoorlands.gov.uk + + + host + stirling.gov.uk + + + host + www.stirling.gov.uk + + + host + tandridge.gov.uk + + + host + www.tandridge.gov.uk + + + host + tauntondeane.gov.uk + + + host + www.tauntondeane.gov.uk + + + host + threerivers.gov.uk + + + host + www.threerivers.gov.uk + + + host + tmbc.gov.uk + + + host + www.tmbc.gov.uk + + + host + torbay.gov.uk + + + host + www.torbay.gov.uk + + + host + uttlesford.gov.uk + + + host + www.uttlesford.gov.uk + + + host + valeofglamorgan.gov.uk + + + host + www.valeofglamorgan.gov.uk + + + host + walthamforest.gov.uk + + + host + www.walthamforest.gov.uk + + + host + warrington.gov.uk + + + host + www.warrington.gov.uk + + + host + wellingborough.gov.uk + + + host + www.wellingborough.gov.uk + + + host + westdevon.gov.uk + + + host + www.westdevon.gov.uk + + + host + west-lindsey.gov.uk + + + host + www.west-lindsey.gov.uk + + + host + westminster.gov.uk + + + host + www.westminster.gov.uk + + + host + westoxon.gov.uk + + + host + www.westoxon.gov.uk + + + host + westsussex.gov.uk + + + host + www.westsussex.gov.uk + + + host + wigan.gov.uk + + + host + www.wigan.gov.uk + + + host + wirral.gov.uk + + + host + www.wirral.gov.uk + + + host + wolverhampton.gov.uk + + + host + www.wolverhampton.gov.uk + + + host + havering.gov.uk + + + host + www.havering.gov.uk + + + + + UK Ministry of Defence + + ruleset + + name + UK Ministry of Defence + rule + + + from + ^https?://defenceimagery\.mod\.uk/ + to + https://www.defenceimagery.mod.uk/ + + + from + ^http://([^/:@]+)?\.defenceimagery\.mod\.uk/ + to + https://$1.defenceimagery.mod.uk/ + + + target + + + host + defenceimagery.mod.uk + + + host + www.defenceimagery.mod.uk + + + + + UK Web Solutions Direct + + ruleset + + name + UK Web Solutions Direct + rule + + from + ^http://(?:www\.)?ukwebsolutionsdirect\.co(?:\.uk|m)/ + to + https://ukwebsolutionsdirect.co.uk/ + + securecookie + + host + ^ukwebsolutionsdirect\.co\.uk$ + name + .+ + + target + + + host + ukwebsolutionsdirect.co.uk + + + host + www.ukwebsolutionsdirect.co.uk + + + host + ukwebsolutionsdirect.com + + + host + www.ukwebsolutionsdirect.com + + + + + UK online centres.com (partial) + + ruleset + + name + UK online centres.com (partial) + rule + + from + ^http://(www\.)?ukonlinecentres\.com/(?=images/|media/|modules/|services/|templates/) + to + https://$1ukonlinecentres.com/ + + target + + + host + ukonlinecentres.com + + + host + www.ukonlinecentres.com + + + + + UK-2 (partial) + + ruleset + + name + UK-2 (partial) + rule + + + from + ^http://((?:(?:static\.)?controlpanel|kb|support|www)\.)?uk2\.net/ + to + https://$1uk2.net/ + + + from + ^http://blog\.uk2\.net/ + to + https://www.uk2.net/blog/ + + + from + ^http://(?:www\.)?mail\.uk2\.net/ + to + https://mail.uk2.net/ + + + from + ^http://(www\.)?uk2img\.net/ + to + https://$1uk2img.net/ + + + securecookie + + + host + ^\.uk2\.net$ + name + ^controlpanel$ + + + host + ^(?:mail|support)\.uk2\.net$ + name + .+ + + + target + + + host + uk2.net + + + host + *.uk2.net + + + host + uk2img.net + + + host + www.uk2img.net + + + + + UKFast.co.uk (partial) + + ruleset + + exclusion + + pattern + ^http://www\.ukfast\.co\.uk/(?!favicon\.ico|images/|myukfast\.html|scripts/|stylesheets/) + + name + UKFast.co.uk (partial) + rule + + + from + ^http://(www\.)?ukfast\.co\.uk/ + to + https://$1ukfast.co.uk/ + + + from + ^http://images\.ukfast\.co\.uk/ + to + https://www.ukfast.co.uk/images/ + + + from + ^http://my2?\.ukfast\.co\.uk/ + to + https://my.ukfast.co.uk/ + + + securecookie + + host + ^(?:my\.)?ukfast\.co\.uk$ + name + .+ + + target + + + host + ukfast.co.uk + + + host + *.ukfast.co.uk + + + + + UKFur + + ruleset + + name + UKFur + rule + + from + ^http://forum\.ukfur\.org/ + to + https://forum.ukfur.org/ + + securecookie + + host + ^forum\.ukfur\.org$ + name + .+ + + target + + host + forum.ukfur.org + + + + UKNOF.org.uk (partial) + + ruleset + + name + UKNOF.org.uk (partial) + rule + + from + ^http://(indico|lists|wiki)\.uknof\.org\.uk/ + to + https://$1.uknof.org.uk/ + + target + + host + *.uknof.org.uk + + + + UL.ie (false MCB) + + ruleset + + name + UL.ie (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?ul\.ie/(?!ee/|favicon\.ico|styles/) + to + https://www.ul.ie/ + + securecookie + + host + ^www\.ul\.ie$ + name + .+ + + target + + + host + ul.ie + + + host + www.ul.ie + + + + + UL.ie (partial) + + ruleset + + name + UL.ie (partial) + rule + + from + ^http://(?:www\.)?ul\.ie/(?=ee/|favicon\.ico|styles/) + to + https://www.ul.ie/ + + securecookie + + host + ^\.ul\.ie$ + name + ^__utm\w$ + + target + + + host + ul.ie + + + host + *.ul.ie + + + + + UMBC.edu (partial) + + ruleset + + name + UMBC.edu (partial) + rule + + + from + ^http://(assets[1-4]-my|publications\.csee)\.umbc\.edu/ + to + https://$1.umbc.edu/ + + + from + ^http://(?:www\.)?csee\.umbc\.edu/ + to + https://www.csee.umbc.edu/ + + + securecookie + + host + ^publications\.csee\.umbc\.edu$ + name + .+ + + target + + host + *.umbc.edu + + + + UN Multimedia.org + + ruleset + + name + UN Multimedia.org + rule + + + from + ^http://(control\.|www\.)?unmultimedia\.org/ + to + https://$1unmultimedia.org/ + + + from + ^http://downloads\.unmultimedia\.org/ + to + https://s3.amazonaws.com/downloads.unmultimedia.org/ + + + target + + + host + unmultimedia.org + + + host + *.unmultimedia.org + + + + + UNC Lineberger.org + + ruleset + + name + UNC Lineberger.org + rule + + from + ^http://(www\.)?unclineberger\.org/ + to + https://$1unclineberger.org/ + + target + + + host + unclineberger.org + + + host + www.unclineberger.org + + + + + UNC.edu (mixed content) + + ruleset + + name + UNC.edu (mixed content) + platform + mixedcontent + rule + + from + ^http://(www\.)?library\.unc\.edu/ + to + https://$1library.unc.edu/ + + securecookie + + host + ^(?:www\.)?library\.unc\.edu$ + name + .+ + + target + + + host + library.unc.edu + + + host + www.library.unc.edu + + + + + UNC.edu (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:(?:cmsp|cs|events|global|help|hr|its|its-commons|research)\.)?unc\.edu/+(?!favicon\.ico|files/|wp-content/|wp-includes/) + + + pattern + ^http://(?:financeadmin|www\.(?:onecard|pid))\.unc\.edu/+(?!DesktopModules/|[Pp]ortals/|UNCImages/|favicon\.ico|images/|uncimages/|spacer\.gif) + + + pattern + ^http://library\.unc\.edu/+(?!favicon\.ico|wp-content/|wp-includes/) + + + name + UNC.edu (partial) + rule + + + from + ^http://((?:ccinfo|ccpa|cmsp|connectcarolina(?:www\.)?cs|dir|directory|diversity|financeadmin|help|hr|infoporte|its|itsapps|its-commons|blogs\.lib|(?:www\.)?library|my|obi|(?:www\.)?onecard|onyen|(?:www\.)?pid|research|search|selfservice|(?:cs|events|global|help|its2|its-commons)\.sites|sso|diversity\.web|webservices|www)\.)?unc\.edu/ + to + https://$1unc.edu/ + + + from + ^http://calendar\.lib\.unc\.edu/(?=css\d+|images/) + to + https://unc.libcal.com/ + + + securecookie + + host + ^(?:connectcarolina|dir|directory|infoporte|itsapps|onecard|onyen|pid|search|selfservice|(?:events|global|help|its2|its-commons)\.sites|diversity\.web|webservices)\.unc\.edu$ + name + .+ + + target + + host + *.unc.edu + + + + UNFPA.org + + ruleset + + name + UNFPA.org + rule + + + from + ^http://www\.unfpa\.org/ + to + https://www.unfpa.org/ + + + from + ^http://unfpa\.org/ + to + https://www.unfpa.org/ + + + target + + + host + www.unfpa.org + + + host + unfpa.org + + + + + UNIDO.org + + ruleset + + name + UNIDO.org + rule + + from + ^http://www\.unido\.org/ + to + https://www.unido.org/ + + target + + host + www.unido.org + + + + UNM + + ruleset + + name + UNM + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?unm\.edu/ + to + https://www.unm.edu/ + + + from + ^http://(?:www\.)?ece\.unm\.edu/ + to + https://www.ece.unm.edu/ + + + target + + + host + unm.edu + + + host + www.unm.edu + + + host + ece.unm.edu + + + host + www.ece.unm.edu + + + + + UNODC.org + + ruleset + + name + UNODC.org + platform + mixedcontent + rule + + + from + ^http://www\.unodc\.org/ + to + https://www.unodc.org/ + + + from + ^http://unodc\.org/ + to + https://www.unodc.org/ + + + target + + + host + www.unodc.org + + + host + unodc.org + + + + + UNSW + + ruleset + + name + UNSW + rule + + from + ^http://(newsroom\.|www\.)?unsw\.edu\.au/ + to + https://$1unsw.edu.au/ + + target + + host + *.unsw.edu.au + + + + UOL (partial) + + ruleset + + name + UOL (partial) + platform + mixedcontent + rule + + from + ^http://(mtv|p\.simg)\.uol\.com\.br/ + to + https://$1.uol.com.br/ + + target + + + host + mtv.uol.com.br + + + host + p.simg.uol.com.br + + + + + UOregon (Partial!) + + ruleset + + exclusion + + + pattern + ^http://aaeo\.uoregon\.edu/+(?!adr(?:$|[?/])) + + + pattern + ^http://ba\.uoregon\.edu/+(?!favicon\.ico|misc/|sites/) + + + pattern + ^http://(?:www\.)?law\.uoregon\.edu/+(?!assets/|favicon\.ico|wp-content/|wp-includes/) + + + pattern + ^http://sapp\.uoregon\.edu/+(?!favicon\.ico|images/|style\.css) + + + name + UOregon (Partial!) + rule + + + from + ^http://((?:aaa|aaeo|academicaffairs|academicextension|aim|around|asap|ba|oregoncis|blackboard|blogs|calendar|campusops|career|casadmin|casit(?:docs|forms|jobs|web)?|(?:videos\.)?cinema|cmae|commencement|conferences|distanceeducation|counseling|des|digital|duckid|duckweb|english|faprod|ffp|geogadvising|gradschool|gradweb|graphicacy|healthcenter|healthycampus|housing|hr2?|inventory|ir|it|pcs|budgetmotel|brp|library|libweb|lcb|lists|lists-prod|odt|oem|pde|proofpoint|sa-web|sapp|scholarsbank|secureserver|shibboleth|studentlife|sustainablemap|svpe|swat|tembo|wiki|systems\.cs|uodos|uonews|www2\.lcb|www\.(cs|law|lcb)|uoresearch|webmail|www)\.)?uoregon\.edu/ + to + https://$1uoregon.edu/ + + + from + ^http://(ba|safetyweb)\.uoregon\.edu/sites/ + to + https://$1.uoregon.edu/sites/ + + + from + ^http://ae\.uoregon\.edu/ + to + https://academicextension.uoregon.edu/ + + + from + ^http://(?:www\.)?emu\.uoregon\.edu/ + to + https://emu.uoregon.edu/ + + + from + ^http://giving\.uoregon\.edu/(?=$|\?) + to + https://securelb.imodules.com/s/1540/development/start.aspx?gid=2&pgid=61 + + + from + ^http://giving\.uoregon\.edu/ + to + https://securelb.imodules.com/ + + + from + ^http://(www\.)?law\.uoregon\.edu/ + to + https://$1law.uoregon.edu/ + + + from + ^http://newsletter\.uoregon\.edu/.* + to + https://studentlife.uoregon.edu/ + + + from + ^http://parking\.uoregon\.edu/(sites|misc|_images)/ + to + https://parking.uoregon.edu/$1/ + + + from + ^http://vpsa\.uoregon\.edu/[^?]* + to + https://studentlife.uoregon.edu/ + + + securecookie + + host + ^(?:(?:academicextension|aim|around|blackboard|blogs|calendar|campusops|\.casadmin|commencement|conferences|counseling|des|digital|emu|ffp|\.?geogadvising|gradschool|gradweb|healthcenter|inventory|it|oem|studentlife|sustainablemap|svpe|swat|tembo|uonews|uoresearch|webmail|www)\.)?uoregon\.edu$ + name + .+ + + target + + + host + uoregon.edu + + + host + *.uoregon.edu + + + + + UPC + + ruleset + + name + UPC + rule + + from + ^http://((?:business|preprod\.(?:business|www)|grootzakelijk|m|tvgids|overupc|service|upcmail|vragen|www)\.)?upc\.nl/ + to + https://$1upc.nl/ + + securecookie + + host + ^(?:service|upcmail|vragen|www)?\.upc\.nl$ + name + .+ + + target + + + host + upc.nl + + + host + *.upc.nl + + + + + UPU.int + + ruleset + + name + UPU.int + rule + + + from + ^http://www\.upu\.int/ + to + https://www.upu.int/ + + + from + ^http://upu\.int/ + to + https://www.upu.int/ + + + target + + + host + www.upu.int + + + host + upu.int + + + + + UQ WiMAX + + ruleset + + name + UQ WiMAX + platform + mixedcontent + rule + + from + ^http://(www\.)?uqwimax\.jp/ + to + https://www.uqwimax.jp/ + + target + + + host + uqwimax.jp + + + host + www.uqwimax.jp + + + + + URAC + + ruleset + + name + URAC + rule + + from + ^http://(?:www\.)?urac\.org/ + to + https://www.urac.org/ + + securecookie + + host + ^www\.urac\.org$ + name + .+ + + target + + + host + urac.org + + + host + www.urac.org + + + + + URX.com (partial) + + ruleset + + name + URX.com (partial) + rule + + from + ^http://(developers\.|www\.)?urx\.com/ + to + https://$1urx.com/ + + target + + + host + urx.com + + + host + *.urx.com + + + + + US Congressional Budget Office + + ruleset + + name + US Congressional Budget Office + rule + + from + ^http://(?:www\.)?cbo\.gov/ + to + https://www.cbo.gov/ + + target + + + host + cbo.gov + + + host + www.cbo.gov + + + + + US Courts.gov (partial) + + ruleset + + name + US Courts.gov (partial) + rule + + from + ^http://cdn\.ca9\.uscourts\.gov/ + to + https://d3bsvxk93brmko.cloudfront.net/ + + target + + host + cdn.ca9.uscourts.gov + + + + US Department of Housing and Urban Development (partial) + + ruleset + + name + US Department of Housing and Urban Development (partial) + rule + + + from + ^https?://(?:www\.)?hud\.gov/ + to + https://portal.hud.gov/portal/page/portal/HUD + + + from + ^http://portal\.hud\.gov/ + to + https://portal.hud.gov/ + + + securecookie + + host + ^portal\.hud\.gov$ + name + .* + + target + + + host + hud.gov + + + host + *.hud.gov + + + + + US Department of Veterans Affairs + + ruleset + + exclusion + + pattern + ^http://www\.va\.gov/kids($|/) + + name + US Department of Veterans Affairs + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?va\.gov/opa/fact/index\.asp(?:$|\?) + to + https://www.va.gov/opa/publications/factsheets.asp + + + from + ^https?://(?:www\.)?va\.gov/(?:cbo|CBO)/rates\.asp(?:$|\?) + to + https://www.va.gov/CBO/apps/rates/index.asp + + + from + ^http://www\.(ebenefits|vendorportal\.ecms|vis\.fsc|1010ez\.med|myhealth|pay|tms|valu|vba|visn23?)\.va\.gov/ + to + https://www.$1.va.gov/ + + + from + ^http://(iris|uploads|www4)\.va\.gov/ + to + https://$1.va.gov/ + + + from + ^https?://(?:www\.)?(fasttrack|gibill|move|vacanteen|vacareers|voa)\.va\.gov/ + to + https://www.$1.va.gov/ + + + from + ^http://(www\.)?vip\.vetbiz\.gov/ + to + https://www.vip.vetbiz.gov/ + + + from + ^https?://(?:www\.)?(insurance|(?:(?:assessments|login|mst|my|users|vct)\.)?vaforvets|(?:tas|vabenefits|vaonce|vip)\.vba)\.va\.gov/ + to + https://$1.va.gov/ + + + from + ^https?://(?:www1?)\.va\.gov/ + to + https://www.va.gov/ + + + securecookie + + + host + ^www\.(ebenefits|vendorportal\.ecms|vis\.fsc|1010ez\.med|myhealth|pay|tms|valu|vba|visn23?)\.va\.gov$ + name + .+ + + + host + ^(\.)?(((pki|register)\.eauth)|iris|uploads|www4)\.va\.gov$ + name + .+ + + + host + ^((www)?\.)?(fasttrack|gibill|move|vacanteen|vacareers|voa)\.va\.gov$ + name + .+ + + + host + ^www\.vip\.vetbiz\.gov$ + name + .+ + + + host + ^((www)?\.)?(insurance|((tas|vabenefits|vaonce|vip)\.vba))\.va\.gov$ + name + .+ + + + host + ^((www)?\.)?((assessments|login|mst|my|users|vct)\.)vaforvets\.va\.gov$ + name + .+ + + + host + ^www\.va\.gov$ + name + .+ + + + target + + + host + www.ebenefits.va.gov + + + host + www.vendorportal.ecms.va.gov + + + host + www.vis.fsc.va.gov + + + host + www.1010ez.med.va.gov + + + host + www.myhealth.va.gov + + + host + www.pay.va.gov + + + host + www.tms.va.gov + + + host + www.valu.va.gov + + + host + www.visn2.va.gov + + + host + www.visn23.va.gov + + + host + iris.va.gov + + + host + uploads.va.gov + + + host + www1.va.gov + + + host + www4.va.gov + + + host + fasttrack.va.gov + + + host + www.fasttrack.va.gov + + + host + gibill.va.gov + + + host + www.gibill.va.gov + + + host + move.va.gov + + + host + www.move.va.gov + + + host + vacanteen.va.gov + + + host + www.vacanteen.va.gov + + + host + vacareers.va.gov + + + host + www.vacareers.va.gov + + + host + voa.va.gov + + + host + www.voa.va.gov + + + host + vip.vetbiz.gov + + + host + www.vip.vetbiz.gov + + + host + insurance.va.gov + + + host + www.insurance.va.gov + + + host + vaforvets.va.gov + + + host + *.vaforvets.va.gov + + + host + www.*.vaforvets.va.gov + + + host + *.vba.va.gov + + + host + www.*.vba.va.gov + + + host + va.gov + + + host + www.va.gov + + + + + US Internet Crime Complaint Center + + ruleset + + name + US Internet Crime Complaint Center + rule + + + from + ^http://ic3\.gov/ + to + https://www.ic3.gov/ + + + from + ^http://(complaint|www)\.ic3\.gov/ + to + https://$1.ic3.gov/ + + + securecookie + + host + (^|\.)(complaint|www)\.ic3\.gov$ + name + .+ + + target + + + host + ic3.gov + + + host + complaint.ic3.gov + + + host + www.ic3.gov + + + + + US Mission.gov (partial) + + ruleset + + name + US Mission.gov (partial) + rule + + from + ^http://geneva\.usmission\.gov/ + to + https://geneva.usmission.gov/ + + securecookie + + host + ^geneva\.usmission\.gov$ + name + .+ + + target + + host + geneva.usmission.gov + + + + US Nautic (partial) + + ruleset + + name + US Nautic (partial) + rule + + from + ^http://(www\.)?usnautic\.com/([cC]ontent/|en/customer/info|en/login|Plugins/|Themes/) + to + https://$1usnautic.com/$2 + + target + + + host + usnautic.com + + + host + *.usnautic.com + + + + + US OSHA.gov + + ruleset + + name + US OSHA.gov + rule + + + from + ^http://(?:www\.)?osha\.gov/ + to + https://www.osha.gov/ + + + from + ^https://osha\.gov/ + to + https://www.osha.gov/ + + + target + + + host + osha.gov + + + host + www.osha.gov + + + + + US Selective Service System + + ruleset + + name + US Selective Service System + platform + mixedcontent + rule + + + from + ^https?://sss\.gov/ + to + https://www.sss.gov/ + + + from + ^http://(training|www)\.sss\.gov/ + to + https://$1.sss.gov/ + + + securecookie + + host + ^(.*\.)?sss\.gov$ + name + .+ + + target + + + host + sss.gov + + + host + training.sss.gov + + + host + www.sss.gov + + + + + US Social Forum (partial) + + ruleset + + name + US Social Forum (partial) + rule + + from + ^http://community\.ussf2010\.org/ + to + https://community.ussf2010.org/ + + target + + host + community.ussf2010.org + + + + US Social Security Administration + + ruleset + + exclusion + + pattern + ^https://ftp\. + + name + US Social Security Administration + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?socialsecurity\.gov/ + to + https://www.socialsecurity.gov/ + + + from + ^https?://(?:ftp\.|www\.)?ssa\.gov/ + to + https://www.socialsecurity.gov/ + + + from + ^http://s(ecure|tats)\.ssa\.gov/ + to + https://s$1.ssa.gov/ + + + securecookie + + + host + ^((www)?\.)?socialsecurity\.gov$ + name + .+ + + + host + ^((ftp|secure|stats|www)?\.)?ssa\.gov$ + name + .+ + + + target + + + host + socialsecurity.gov + + + host + *.socialsecurity.gov + + + host + ssa.gov + + + host + *.ssa.gov + + + + + US Weekly subscriptions.com + + ruleset + + name + US Weekly subscriptions.com + rule + + from + ^http://(?:www\.)?usweeklysubscriptions\.com/ + to + https://www.usweeklysubscriptions.com/ + + securecookie + + host + ^www\.usweeklysubscriptions\.com$ + name + .+ + + target + + + host + usweeklysubscriptions.com + + + host + www.usweeklysubscriptions.com + + + + + US government (partial) + + ruleset + + name + US government (partial) + platform + mixedcontent + rule + + + from + ^https?://mtrics\.cdc\.gov/ + to + https://cdcgov.112.2o7.net/ + + + from + ^http://wwwn\.cdc\.gov/ + to + https://wwwn.cdc.gov/ + + + from + ^http://(?:www\.)?(census|genome|medicare)\.gov/ + to + https://www.$1.gov/ + + + from + ^http://(?:www\.)?cms(?:\.hhs)?\.gov/ + to + https://www.cms.gov/ + + + from + ^http://assets\.cms\.gov/ + to + https://assets.cms.gov/ + + + from + ^http://questions\.(cms|medicare)\.gov/ + to + https://questions.$1.gov/ + + + from + ^http://(safeharbor|www)\.export\.gov/ + to + https://$1.export.gov/ + + + from + ^http://intelligence\.house\.gov/ + to + https://intelligence.house.gov/ + + + from + ^http://wwws\.loc\.gov/ + to + https://wwws.loc.gov/ + + + from + ^http://wtr\.nhtsa\.gov/ + to + https://wtr.nhtsa.gov/ + + + from + ^http://([\w\-]+\.)?usajobs\.gov/ + to + https://$1usajobs.gov/ + + + from + ^http://postalinspectors\.uspis\.gov/ + to + https://postalinspectors.uspis.gov/ + + + from + ^http://(www\.)?uspsoig\.gov/ + to + https://$1uspsoig.gov/ + + + from + ^http://wwws\.whitehouse\.gov/ + to + https://wwws.whitehouse.gov/ + + + securecookie + + + host + ^questions\.cms\.gov$ + name + .* + + + host + ^safeharbor\.export\.gov$ + name + .* + + + host + ^(.*\.)?(census|medicare|usajobs)\.gov$ + name + .* + + + host + ^intelligence\.house\.gov$ + name + .* + + + host + ^wtr\.nhtsa\.gov$ + name + .+ + + + target + + + host + mtrics.cdc.gov + + + host + wwwn.cdc.gov + + + host + census.gov + + + host + www.census.gov + + + host + cms.gov + + + host + *.cms.gov + + + host + export.gov + + + host + *.export.gov + + + host + genome.gov + + + host + www.genome.gov + + + host + cms.hhs.gov + + + host + www.cms.hhs.gov + + + host + intelligence.house.gov + + + host + wwws.loc.gov + + + host + medicare.gov + + + host + *.medicare.gov + + + host + wtr.nhtsa.gov + + + host + usajobs.gov + + + host + *.usajobs.gov + + + host + postalinspectors.uspis.gov + + + host + uspsoig.gov + + + host + www.uspsoig.gov + + + host + wwws.whitehouse.gov + + + + + US-Cert.gov + + ruleset + + name + US-Cert.gov + rule + + from + ^http://((?:(?:preview\.|www\.)?buildsecurityin|ics-cert|www)\.)?us-cert\.gov/ + to + https://$1us-cert.gov/ + + target + + + host + us-cert.gov + + + host + *.us-cert.gov + + + + + USA Today (partial) + + ruleset + + name + USA Today (partial) + rule + + + from + ^http://(?:www\.)?usatoday\.com/(favicon\.ico|services/|static/images/) + to + https://a248.e.akamai.net/f/534/1/1/www.usatoday.com/$1 + + + from + ^http://onlinestore\.usatoday\.com/Net/ + to + https://www.nexternal.com/Net/ + + + from + ^http://(service|videos)\.usatoday\.com/ + to + https://$1.usatoday.com/ + + + target + + + host + usatoday.com + + + host + *.usatoday.com + + + + + USA.gov (partial) + + ruleset + + name + USA.gov (partial) + rule + + from + ^http://(business|publications|search)\.usa\.gov/ + to + https://$1.usa.gov/ + + securecookie + + host + ^.*\.usa\.gov$ + name + .* + + target + + host + *.usa.gov + + + + USAlliance + + ruleset + + name + USAlliance + rule + + from + ^http://(www\.)?usalliance\.org/ + to + https://$1usalliance.org/ + + securecookie + + host + ^(?:www)?\.usalliance\.org$ + name + .+ + + target + + + host + usalliance.org + + + host + *.usalliance.org + + + + + USB.org (partial) + + ruleset + + name + USB.org (partial) + rule + + from + ^http://(?:www\.)?usb\.org/(?=images/|kstyles/) + to + https://www.usb.org/ + + target + + + host + usb.org + + + host + www.usb.org + + + + + USBank + + ruleset + + name + USBank + rule + + from + ^http://((?:access|espanol|mm?|ms2?|onlinebanking|trustnowessentials|wwws?)\.)?usbank\.com/ + to + https://$1usbank.com/ + + securecookie + + host + ^(?:(?:access|mm?|ms2?|onlinebanking|trustnowessentials|wwws?)\.)?usbank\.com$ + name + .+ + + target + + + host + usbank.com + + + host + *.usbank.com + + + + + USDA-ARS + + ruleset + + name + USDA-ARS + rule + + from + ^http://(?:www\.)?ars\.usda\.gov/ + to + https://www.ars.usda.gov/ + + target + + + host + ars.usda.gov + + + host + www.ars.usda.gov + + + + + USE OTR Project.org + + ruleset + + name + USE OTR Project.org + rule + + from + ^http://(?:www\.)?useotrproject\.org/ + to + https://www.useotrproject.org/ + + target + + + host + useotrproject.org + + + host + www.useotrproject.org + + + + + USENIX + + ruleset + + name + USENIX + rule + + + from + ^https?://www\.usenix\.org/ + to + https://www.usenix.org/ + + + from + ^https?://usenix\.org/ + to + https://www.usenix.org/ + + + target + + + host + usenix.org + + + host + www.usenix.org + + + + + USF CA.edu (partial) + + ruleset + + name + USF CA.edu (partial) + rule + + + from + ^http://(web\.|www\.)?usfca\.edu/ + to + https://$1usfca.edu/ + + + from + ^http://hashtag\.usfca\.edu/resources/ + to + https://www.scoop.it/resources/ + + + securecookie + + host + ^(?:web\.|www\.)?usfca\.edu$ + name + .+ + + target + + + host + usfca.edu + + + host + *.usfca.edu + + + + + USFreeads (partial) + + ruleset + + name + USFreeads (partial) + rule + + from + ^http://(www\.)?usfreeads\.com/(favicon\.ico|files/|modules/|uploads/) + to + https://$1usfreeads.com/$2 + + target + + + host + usfreeads.com + + + host + www.usfreeads.com + + + + + USNI.org (false MCB) + + ruleset + + name + USNI.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(blog|news)\.usni\.org/ + to + https://$1.usni.org/ + + target + + + host + blog.usni.org + + + host + news.usni.org + + + + + USNI.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|news)\.usni\.org/+(?!\?mcsf_action=|favicon\.ico|mc_news\.css|wp-content/|wp-includes/) + + name + USNI.org (partial) + rule + + + from + ^http://(?:www\.)?usni\.org/(?=(?:about|cart|membership|user)(?:$|[?/])|sites/) + to + https://www.usni.org/ + + + from + ^http://(blog|cdn\d+|news)\.usni\.org/ + to + https://$1.usni.org/ + + + target + + + host + usni.org + + + host + *.usni.org + + + + + USP.br (partial) + + ruleset + + name + USP.br (partial) + rule + + from + ^http://mail\.usp\.br/ + to + https://mail.usp.br/ + + target + + host + mail.usp.br + + + + USPS + + ruleset + + name + USPS + rule + + + from + ^http://usps\.com/ + to + https://www.usps.com/ + + + from + ^http://(about|cns|fast|gateway|gateway-cat|moversguide|sdc|shop|store|tools|www)\.usps\.com/ + to + https://$1.usps.com/ + + + securecookie + + host + ^(.*\.)?usps\.com$ + name + .* + + target + + + host + usps.com + + + host + *.usps.com + + + + + USRowing (partial) + + ruleset + + name + USRowing (partial) + rule + + from + ^http://(?:www\.)?usrowing\.org/(App_Themes/|jquery-1.4.2\.js|Libraries/|PopCalendar2008/CSS/|(?:Script|Web)Resource\.axd|[sS]itefinity/) + to + https://www.usrowing.org/$1 + + target + + + host + usrowing.org + + + host + www.usrowing.org + + + + + UTSanDiego.com (partial) + + ruleset + + name + UTSanDiego.com (partial) + rule + + + from + ^http://iservice\.uniontrib\.com/ + to + https://iservice.uniontrib.com/ + + + from + ^https?://(?:www\.)?utsandiego\.com/accounts + to + https://www.utsandiego.com/accounts + + + from + ^http://(dealmedia|media)\.utsandiego\.com/ + to + https://$1.utsandiego.com/ + + + securecookie + + host + ^iservice\.uniontrib\.com$ + name + .+ + + target + + + host + iservice.uniontrib.com + + + host + utsandiego.com + + + host + *.utsandiego.com + + + + + UTwente.nl (partial) + + ruleset + + name + UTwente.nl (partial) + rule + + + from + ^http://((?:webhare(?:\.civ)?|www|www\.abacus)\.)?utwente\.nl/ + to + https://$1utwente.nl/ + + + from + ^http://(?:outlook\.ad|autodiscover(?:\.\w+)?|xs|xs2010)\.utwente\.nl/.* + to + https://xs.utwente.nl/owa + + + securecookie + + host + ^xs\.utwente\.nl$ + name + .+ + + target + + + host + utwente.nl + + + host + *.utwente.nl + + + + + UU.nl (partial) + + ruleset + + name + UU.nl (partial) + rule + + + from + ^http://(caracal|wwwsec\.cs|(?:4thfloor|babaji|betaplanner|betaplannerstage|caracal|caracalstage|fa203|www\.projects|testweb|upper|uppersurvey|webfarm|webstats)\.science)\.uu\.nl/ + to + https://$1.uu.nl/ + + + from + ^http://w(?:eb|ebstage|ww)\.science\.uu\.nl/ + to + https://www.science.uu.nl/ + + + securecookie + + host + ^(?:caracal|(?:4thfloor|betaplanner|betaplannerstage|caracal|caracalstage|www\.projects|uppersurvey|webfarm)\.science)\.uu\.nl$ + name + .+ + + target + + host + *.uu.nl + + + + UU.se + + ruleset + + name + UU.se + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?uu\.se/ + to + https://www.uu.se/ + + + from + ^http://((?:filer|www)\.anst|(?:boxer|it)\.bmc|dropbox|filer|helpdesk|www\.it|www\.listserv|(?:filer|home)\.student|mail\.teknik|tor\.uadm|www\.uaf|www\.uppmax|www\.uuinnovation|webmail|www-hotel)\.uu\.se/ + to + https://$1.uu.se/ + + + securecookie + + host + ^www\.it\.uu\.se$ + name + .+ + + target + + + host + uu.se + + + host + *.uu.se + + + + + UVM.edu (partial) + + ruleset + + name + UVM.edu (partial) + rule + + + from + ^http://(?:www\.)?uvm\.edu/ + to + https://www.uvm.edu/ + + + from + ^http://(alumni|learn|library|myuvm)\.uvm\.edu/ + to + https://$1.uvm.edu/ + + + securecookie + + host + ^myuvm\.uvm\.edu$ + name + .+ + + target + + + host + uvm.edu + + + host + *.uvm.edu + + + + + UVic.ca (partial) + + ruleset + + name + UVic.ca (partial) + rule + + + from + ^http://(?:www\.)?uvic\.ca/ + to + https://www.uvic.ca/ + + + from + ^http://(www\.)?ece\.uvic\.ca/~ + to + https://$1ece.uvic.ca/~ + + + target + + + host + uvic.ca + + + host + *.uvic.ca + + + + + UWinnipeg.ca (partial) + + ruleset + + name + UWinnipeg.ca (partial) + rule + + + from + ^http://((?:ctlt-resources|ion|nexus|webadv|ww2|www)\.)?uwinnipeg\.ca/ + to + https://$1uwinnipeg.ca/ + + + from + ^http://indigenous\.uwinnipeg\.ca/+(?:\?.*)?$ + to + https://www.uwinnipeg.ca/index/indigenous-programs-services + + + target + + + host + uwinnipeg.ca + + + host + *.uwinnipeg.ca + + + + + Uber Technologies (partial) + + ruleset + + name + Uber Technologies (partial) + rule + + from + ^http://(clients\.|www\.)?uber\.com/ + to + https://$1uber.com/ + + target + + + host + uber.com + + + host + *.uber.com + + + + + UberEnt.com (partial) + + ruleset + + name + UberEnt.com (partial) + rule + + from + ^http://(forums\.)?uberent\.com/ + to + https://$1uberent.com/ + + securecookie + + host + ^forums\.uberent\.com$ + name + .+ + + target + + + host + uberent.com + + + host + forums.uberent.com + + + + + UberMedia.com (false MCB) + + ruleset + + name + UberMedia.com (false MCB) + platform + mixedcontent + rule + + from + ^http://ubermedia\.com/ + to + https://ubermedia.com/ + + target + + host + ubermedia.com + + + + UberMedia.com (partial) + + ruleset + + exclusion + + pattern + ^http://ubermedia\.com/+(?!wp-content/|wp-includes/) + + name + UberMedia.com (partial) + rule + + from + ^http://(www\.)?ubermedia\.com/ + to + https://$1ubermedia.com/ + + target + + + host + ubermedia.com + + + host + www.ubermedia.com + + + + + UberTags (partial) + + ruleset + + name + UberTags (partial) + rule + + from + ^http://(\w+)\.ubertags\.com/ + to + https://$1.ubertags.com/ + + securecookie + + host + ^console\.ubertags\.com$ + name + .* + + target + + + host + app.ubertags.com + + + host + console.ubertags.com + + + + + Uberspace + + ruleset + + name + Uberspace + rule + + + from + ^http://(?:helium\.|www\.)?uberspace\.de/ + to + https://uberspace.de/ + + + from + ^http://((?:[\w-]+\.)?(?:aries|cetus|menkar)|[\w-]+\.helium)\.uberspace\.de/ + to + https://$1.uberspace.de/ + + + securecookie + + host + ^(?:.+\.)?uberspace\.de$ + name + .+ + + target + + + host + uberspace.de + + + host + *.uberspace.de + + + + + Ubertt.org + + ruleset + + name + Ubertt.org + platform + firefox + rule + + from + ^http://(www\.)?ubertt\.org/ + to + https://ubertt.org/ + + securecookie + + host + ^ubertt\.org$ + name + .+ + + target + + + host + ubertt.org + + + host + www.ubertt.org + + + + + Ubisoft Entertainment (partial) + + ruleset + + exclusion + + pattern + ^http://(?:forums|www)\. + + name + Ubisoft Entertainment (partial) + platform + mixedcontent + rule + + + from + ^http://static7\.ubi\.com/ + to + https://s3.amazonaws.com/static7.ubi.com/ + + + from + ^http://(cs|engineroom|ghost-recon|hbe|secure|static\d(?:\.cdn)?|support|tomclancy-thedivision|tools|ubibar|uplay|uts)\.ubi\.com/ + to + https://$1.ubi.com/ + + + securecookie + + host + .*\.ubi\.com$ + name + .+ + + target + + host + *.ubi.com + + + + Ubisoft Group + + ruleset + + name + Ubisoft Group + rule + + + from + ^http://(www\.)?ubisoftgroup\.com/ + to + https://$1ubisoftgroup.com/ + + + from + ^http://common\.ubisoftgroup\.com/ + to + https://www.ubisoftgroup.com/comsite_common/ + + + securecookie + + host + ^\.ubisoftgroup\.com$ + name + .+ + + target + + + host + ubisoftgroup.com + + + host + *.ubisoftgroup.com + + + + + Ubuntu (partial) + + ruleset + + exclusion + + pattern + ^http://community\.ubuntu\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + name + Ubuntu (partial) + rule + + + from + ^http://(apps|assets|cloud|community|design|(?:myapps\.)?developer|entropy|fridge|help|insights|juju|lists|login|maas|one|patches|pay|jenkins\.qa|uds|uec-images|unity|wiki)\.ubuntu\.com/ + to + https://$1.ubuntu.com/ + + + from + ^http://shop\.ubuntu\.com/ + to + https://shop.canonical.com/ + + + from + ^http://(www\.)?ubuntuone\.com/ + to + https://$1ubuntuone.com/ + + + securecookie + + host + ^(?:apps|login|pay|jenkins\.qa|wiki)\.ubuntu\.com$ + name + .+ + + target + + + host + *.ubuntu.com + + + host + ubuntuone.com + + + host + www.ubuntuone.com + + + + + Ubuntu Forums.org (false MCB) + + ruleset + + name + Ubuntu Forums.org (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?ubuntuforums\.org/ + to + https://$1ubuntuforums.org/ + + securecookie + + host + ^\.ubuntuforums\.org$ + name + .+ + + target + + + host + ubuntuforums.org + + + host + *.ubuntuforums.org + + + + + Ubuntu.com (false MCB) + + ruleset + + name + Ubuntu.com (false MCB) + platform + mixedcontent + rule + + from + ^http://community\.ubuntu\.com/ + to + https://community.ubuntu.com/ + + target + + host + community.ubuntu.com + + + + Udacity.com (partial) + + ruleset + + name + Udacity.com (partial) + rule + + from + ^http://(www\.)?udacity\.com/ + to + https://$1udacity.com/ + + securecookie + + host + ^www\.udacity\.com$ + name + .+ + + target + + + host + udacity.com + + + host + www.udacity.com + + + + + Uefidk.com + + ruleset + + name + Uefidk.com + rule + + from + ^http://(www\.)?uefidk\.com/ + to + https://www.uefidk.com/ + + target + + + host + uefidk.com + + + host + www.uefidk.com + + + + + Uhrzeit.org (partial) + + ruleset + + name + Uhrzeit.org (partial) + rule + + + from + ^http://(www\.)?atomic-clock\.org\.uk/ + to + https://www.atomic-clock.org.uk/ + + + from + ^http://(www\.)?la-hora\.org/ + to + https://www.la-hora.org/ + + + from + ^http://(www\.)?uhrzeit\.org/(anmeldung|bilder|img|shop|sys)/ + to + https://www.uhrzeit.org/$2/ + + + from + ^http://watches\.uhrzeit\.org/(?=bilder/|img/|shop/|sys/) + to + https://watches.uhrzeit.org/ + + + securecookie + + host + ^\.(atomic-clock\.org\.uk|la-hora\.org)$ + name + .* + + target + + + host + atomic-clock.org.uk + + + host + *.atomic-clock.org.uk + + + host + la-hora.org + + + host + *.la-hora.org + + + host + uhrzeit.org + + + host + *.uhrzeit.org + + + + + UkashCardSATIS + + ruleset + + name + UkashCardSATIS + rule + + from + ^http://(www\.)?ukashcardsatis\.com/ + to + https://$1ukashcardsatis.com/ + + securecookie + + host + ^\.ukashcardsatis\.com$ + name + .+ + + target + + + host + ukashcardsatis.com + + + host + *.ukashcardsatis.com + + + + + Ukr.net + + ruleset + + name + Ukr.net + rule + + from + ^http://((?:counter|mail|www)\.)?ukr\.net/ + to + https://$1ukr.net/ + + target + + + host + ukr.net + + + host + *.ukr.net + + + + + Uline.com (partial) + + ruleset + + name + Uline.com (partial) + rule + + from + ^http://(?:www\.)?uline\.com/(?=favicon\.ico|FilesCombiner\.ashx|[iI]mages/|Product/ContainerBrowseListing\.aspx|(?:Script|Web)Resource\.axd|Signin/|WebServices/) + to + https://www.uline.com/ + + target + + + host + uline.com + + + host + www.uline.com + + + + + Ultimate Poker + + ruleset + + name + Ultimate Poker + rule + + from + ^http://(?:(upnvportal\.)|www\.)?ultimatepoker\.com/ + to + https://$1ultimatepoker.com/ + + securecookie + + host + ^(?:upnvportal\.)?ultimatepoker\.com$ + name + .+ + + target + + + host + ultimatepoker.com + + + host + *.ultimatepoker.com + + + + + Ultra Facil.com.br + + ruleset + + name + Ultra Facil.com.br + rule + + from + ^http://(www\.)?ultrafacil\.com\.br/ + to + https://$1ultrafacil.com.br/ + + securecookie + + host + ^\.ultrafacil\.com\.br$ + name + .+ + + target + + + host + ultrafacil.com.br + + + host + *.ultrafacil.com.br + + + + + Ultra HDTV (partial) + + ruleset + + name + Ultra HDTV (partial) + rule + + from + ^https?://cdn\.ultrahdtv\.net/ + to + https://dcmk2gfkvro5j.cloudfront.net/ + + target + + host + cdn.ultrahdtv.net + + + + UltraDNS + + ruleset + + name + UltraDNS + rule + + + from + ^https?://(?:www\.)?ultradns(?:com|info)/$ + to + https://www.neustar.biz/ + + + from + ^https?://(?:www\.)?ultradns\.net/ + to + https://www.ultradns.net/ + + + securecookie + + host + ^www\.ultradns\.net$ + name + .* + + target + + + host + ultradns.* + + + host + www.ultradns.* + + + + + UltraNature Lean + + ruleset + + name + UltraNature Lean + rule + + from + ^http://(www\.)?ultranaturelean\.com/ + to + https://$1ultranaturelean.com/ + + securecookie + + host + ^(?:w*\.)?ultranaturelean\.com$ + name + .+ + + target + + + host + ultranaturelean.com + + + host + *.ultranaturelean.com + + + + + Ultrasurf.us + + ruleset + + name + Ultrasurf.us + rule + + from + ^http://(www\.)?ultrasurf\.us/ + to + https://$1ultrasurf.us/ + + target + + + host + ultrasurf.us + + + host + www.ultrasurf.us + + + + + Ulule + + ruleset + + name + Ulule + platform + mixedcontent + rule + + + from + ^http://(www\.)?ulule\.com/ + to + https://$1ulule.com/ + + + from + ^http://(fr|de|es|it|br)\.ulule\.com/ + to + https://$1.ulule.com/ + + + target + + + host + *.ulule.com + + + host + ulule.com + + + + + Uma.es + + ruleset + + name + Uma.es + rule + + + from + ^http://(?:www\.)?([^/:@\.]*)\.cv\.uma\.es/ + to + https://$1.cv.uma.es/ + + + from + ^http://www\.sci\.uma\.es/ + to + https://www.sci.uma.es/ + + + from + ^http://web\.satd\.uma\.es/ + to + https://web.satd.uma.es/ + + + target + + + host + *.cv.uma.es + + + host + www.sci.uma.es + + + host + web.satd.uma.es + + + + + Umbel.com + + ruleset + + name + Umbel.com + rule + + + from + ^http://(?:www\.)?umbel\.com/ + to + https://www.umbel.com/ + + + from + ^http://(api|tags\.api|audience|media)\.umbel\.com/ + to + https://$1.umbel.com/ + + + securecookie + + host + ^(?:audience|www)\.umbel\.com$ + name + .+ + + target + + + host + umbel.com + + + host + *.umbel.com + + + + + Umeå University (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?(?:student\.)?umu\.se/(?!digitalAssets/|DownloadAsset\.action(?:$|\?)|static/) + + name + Umeå University (partial) + rule + + + from + ^http://((?:www\.cambro|cas|intra\.ub|www)\.?)umu\.se/ + to + https://$1umu.se/ + + + from + ^http://(www\.)?(anstalld|servicesdesk\.its|student)\.umu\.se/ + to + https://$1$2.umu.se/ + + + securecookie + + host + ^(?:(?:www\.)?anstalld|www\.cambro|cas|(?:www\.)?servicedesk\.its)\.umu\.se$ + name + .+ + + target + + + host + umu.se + + + host + *.umu.se + + + + + Unanimis (partial) + + ruleset + + name + Unanimis (partial) + rule + + from + ^http://(a|c|d|ssl-a)\.unanimis\.co\.uk/ + to + https://$1.unanimis.co.uk/ + + target + + host + *.unanimis.co.uk + + + + Unbit.it (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?packages\. + + name + Unbit.it (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?unbit\.it/ + to + https://$1unbit.it/ + + + from + ^http://(?:www\.)?(wiki|projects)\.unbit\.it/ + to + https://$1.unbit.it/ + + + securecookie + + host + ^(.*\.)?unbit\.it$ + name + .* + + target + + + host + unbit.it + + + host + *.unbit.it + + + host + www.*.unbit.it + + + + + Unblock-Us.com (partial) + + ruleset + + name + Unblock-Us.com (partial) + rule + + + from + ^http://(?:www\.)?unblock-us\.com/(?=css/|favicon\.ico|images/) + to + https://d2z2eomnanw2yj.cloudfront.net/ + + + from + ^http://(affiliate|portal)\.unblock-us\.com/ + to + https://$1.unblock-us.com/ + + + from + ^http://support\.unblock-us\.com/favicon\.ico + to + https://unblock.desk.com/favicon.ico + + + securecookie + + host + ^(?:affiliate|portal)\.unblock-us\.com$ + name + .+ + + target + + host + *.unblock-us.com + + + + Unblu.com (partial) + + ruleset + + name + Unblu.com (partial) + rule + + from + ^http://start\.unblu\.com/ + to + https://start.unblu.com/ + + target + + host + start.unblu.com + + + + Unbounce (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ubounce\.com/(?!\?mcsf_action=main_css|photos/|wp-content/) + + name + Unbounce (partial) + rule + + + from + ^http://(?:www\.)?ubounce(?:\.wpengine\.netdna-cdn)?\.com/ + to + https://unbounce.wpengine.com/ + + + from + ^http://(app|go)\.unbounce\.com/ + to + https://$1.unbounce.com/ + + + from + ^http://assets\.unbounce\.com/ + to + https://s3.amazonaws.com/assets.unbounce.com/ + + + securecookie + + host + ^go\.unbounce\.com$ + name + .+ + + target + + + host + ubounce.wpengine.netdna-cdn + + + host + unbounce.com + + + host + *.unbounce.com + + + + + Underground Gamer + + ruleset + + name + Underground Gamer + rule + + from + ^http://(www\.)?underground-gamer\.com/ + to + https://www.underground-gamer.com/ + + target + + + host + www.underground-gamer.com + + + host + underground-gamer.com + + + + + Underhanded Crypto.com (partial) + + ruleset + + name + Underhanded Crypto.com (partial) + rule + + from + ^http://(www\.)?underhandedcrypto\.com/ + to + https://$1underhandedcrypto.com/ + + target + + + host + underhandedcrypto.com + + + host + www.underhandedcrypto.com + + + + + Underskog + + ruleset + + name + Underskog + rule + + from + ^http://(?:www\.)?underskog\.no/ + to + https://underskog.no/ + + target + + + host + underskog.no + + + host + www.underskog.no + + + + + Undertone (partial) + + ruleset + + name + Undertone (partial) + rule + + from + ^http://ads\.undertone\.com/ + to + https://ads.undertone.com/ + + target + + host + ads.undertone.com + + + + Underwear Expert (partial) + + ruleset + + name + Underwear Expert (partial) + rule + + from + ^https?://cdn\.underwearexpert\.com/ + to + https://d2szvuirvbmbdl.cloudfront.net/ + + target + + host + cdn.underwearexpert.com + + + + Unhosted + + ruleset + + name + Unhosted + rule + + from + ^http://(?:(apps\.)|www\.)?unhosted\.org/ + to + https://$1unhosted.org/ + + target + + + host + unhosted.org + + + host + *.unhosted.org + + + + + Uni Leoben.ac.at (partial) + + ruleset + + name + Uni Leoben.ac.at (partial) + rule + + + from + ^http://(?:www\.)?unileoben\.ac\.at/ + to + https://www.unileoben.ac.at/ + + + from + ^http://(online|usi|usionline)\.unileoben\.ac\.at/ + to + https://$1.unileoben.ac.at/ + + + target + + + host + unileoben.ac.at + + + host + *.unileoben.ac.at + + + + + Uni-Goettingen.de (partial) + + ruleset + + name + Uni-Goettingen.de (partial) + rule + + + from + ^http://www\.uni-goettingen\.de/ + to + https://www.uni-goettingen.de/ + + + from + ^http://www\.sec\.informatik\.uni-goettingen\.de/ + to + https://www.uni-goettingen.de/de/266195.html + + + from + ^http://karzer\.uni-goettingen\.de/ + to + https://www.uni-goettingen.de/de/sh/29360.html + + + target + + host + *.uni-goettingen.de + + + + Uni-Hannover.de (partial) + + ruleset + + name + Uni-Hannover.de (partial) + rule + + from + ^http://((?:cc|www)\.dcsec|www\.(?:piwik\.)?rrzn|qis\.verwaltung|www)\.uni-hannover\.de/ + to + https://$1.uni-hannover.de/ + + securecookie + + host + ^www\.(?:dcsec|rrzn)\.uni-hannover\.de$ + name + .+ + + target + + host + *.uni-hannover.de + + + + Uni-Kl.de (false MCB) + + ruleset + + name + Uni-Kl.de (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.(architektur|www)\.uni-kl\.de/(?!favicon\.ico|fileadmin/|typo3temp/|uploads/) + to + https://www.$1.uni-kl.de/ + + securecookie + + host + ^www\.uni-kl\.de$ + name + .+ + + target + + + host + www.architektur.uni-kl.de + + + host + www.uni-kl.de + + + + + Uni-Kl.de (partial) + + ruleset + + exclusion + + pattern + ^http://www\.(?:architektur\.)?uni-kl\.de/+(?!favicon\.ico|fileadmin/|typo3temp/|uploads/) + + name + Uni-Kl.de (partial) + rule + + + from + ^http://(autodiscover(?:\.\w+)?|fit\.cs|fit\.informatik|(?:alumni|office)\.kis|mail|alumni\.physik|opac\.ub|(?:lists|svn)\.unix-ag|wa|(?:abwl|bisor|enpres|hotline|integrierter-studiengang|international|it-service|lff|luc|marketing|nagios|pmo|step|strama|sustain|marketing-forschung|vwl-makro|vwl-mikro|vwl-wipo|zwr)\.wiwi|www)\.uni-kl\.de/ + to + https://$1.uni-kl.de/ + + + from + ^http://www\.alumni\.uni-kl\.de/ + to + https://alumni.kis.uni-kl.de/ + + + from + ^http://www\.(architektur|bauing|fs\.bauing|bio|fachschaft\.(?:cs|informatik)|chemie|disc|kis|mpa|rhrk|ru|unix-ag)\.uni-kl\.de/ + to + https://www.$1.uni-kl.de/ + + + from + ^http://(www\.)?(physik|wiwi)\.uni-kl\.de/ + to + https://$1$2.uni-kl.de/ + + + from + ^http://www\.verw\.uni-kl\.de/+(?:$|\?.*) + to + https://www.uni-kl.de/ + + + securecookie + + host + ^(?:fit\.cs|\.www\.fachschaft\.(?:cs|informatik)|(?:alumni|office|www)\.kis|(?:alumni\.|www\.)?physik|\.www\.rhrk)\.uni-kl\.de$ + name + .+ + + target + + host + *.uni-kl.de + + + + Uni-Saarland.de (partial) + + ruleset + + exclusion + + pattern + ^http://www\.uni-saarland\.de/+(?!favicon\.ico|fileadmin/|typo3temp/|uploads/) + + name + Uni-Saarland.de (partial) + rule + + + from + ^http://(?:www\.)?(mmci\.)?uni-saarland\.de/ + to + https://www.$1uni-saarland.de/ + + + from + ^http://(www-int\.coli|epica\.cs|www-infsec\.cs|datscha|www\.ls[fv])\.uni-saarland\.de/ + to + https://$1.uni-saarland.de/ + + + from + ^http://(www\.)?(cispa|cs|(?:crypto|csl|cybersicherheit|infsec|lbs|sps)\.cs|cybersicherheit)\.uni-saarland\.de/ + to + https://$1$2.uni-saarland.de/ + + + securecookie + + host + ^(?:(?:www\.)?cispa|(?:epica\.|www\.)?cs|(?:www\.)?cybersicherheit\.cs|www\.lsv)\.uni-saarland\.de$ + name + .+ + + target + + + host + uni-saarland.de + + + host + *.uni-saarland.de + + + + + Uni-Wuerzburg.de (partial) + + ruleset + + name + Uni-Wuerzburg.de (partial) + rule + + from + ^http://(?:www\.)?mathematik\.uni-wuerzburg\.de/ + to + https://www.mathematik.uni-wuerzburg.de/ + + target + + host + *.uni-wuerzburg.de + + + + UniStra.fr (false MCB) + + ruleset + + name + UniStra.fr (false MCB) + platform + mixedcontent + rule + + from + ^http://(engees|typodun|www)\.unistra\.fr/ + to + https://$1.unistra.fr/ + + securecookie + + host + ^(?:engees|typodun)\.unistra\.fr$ + name + .+ + + target + + + host + engees.unistra.fr + + + host + typodun.unistra.fr + + + host + www.unistra.fr + + + + + Unibet Australia + + ruleset + + name + Unibet Australia + rule + + + from + ^https?://(?:www\.)?unibet\.com\.au/ + to + https://www.unibet.com.au/ + + + from + ^http://(cdn|m)\.unibet\.com\.au/ + to + https://$1.unibet.com.au/ + + + securecookie + + host + ^(?:www)?\.unibet\.com\.au$ + name + .+ + + target + + + host + unibet.com.au + + + host + *.unibet.com.au + + + + + Uniblue + + ruleset + + name + Uniblue + rule + + from + ^http://(?:www\.)?uniblue\.com/ + to + https://d2iq4cp2qrughe.cloudfront.net/ + + target + + + host + uniblue.com + + + host + www.uniblue.com + + + + + Unica (partial) + + ruleset + + name + Unica (partial) + rule + + + from + ^http://pt(\d+)\.unica\.com/ + to + https://pt$1.unica.com/ + + + from + ^http://(?:www\.)?unicaondemand\.com/ + to + https://www.unicaondemand.com/ + + + from + ^http://(\d+)\.unicaondemand\.com/ + to + https://$1.unicaondemand.com/ + + + securecookie + + + host + ^pt\d+\.unica\.com$ + name + .+ + + + host + .*\.unicaondemand\.com$ + name + .+ + + + target + + + host + *.unica.com + + + host + unicaondemand.com + + + host + *.unicaondemand.com + + + + + Unicom (partial) + + ruleset + + name + Unicom (partial) + rule + + from + ^http://totalrecall\.switchingon\.com/ + to + https://totalrecall.switchingon.com/ + + target + + host + totalrecall.switchingon.com + + + + Unigine + + ruleset + + name + Unigine + rule + + from + ^http://((?:developer|eu4|www)\.)?unigine\.com/ + to + https://$1unigine.com/ + + securecookie + + host + ^(?:.*\.)?unigine\.com$ + name + .+ + + target + + + host + unigine.com + + + host + *.unigine.com + + + + + Unimi.it (partial) + + ruleset + + name + Unimi.it (partial) + rule + + + from + ^http://(?:www\.)?unimi\.it/(?=css/|img/|registrazione/\w+\.keb) + to + https://www.unimi.it/ + + + from + ^http://(cas|www\.elearning|securemail)\.unimi\.it/ + to + https://$1.unimi.it/ + + + securecookie + + host + ^securemail\.unimi\.it$ + name + .+ + + target + + + host + unimi.it + + + host + *.unimi.it + + + + + Uninett (partial) + + ruleset + + name + Uninett (partial) + rule + + + from + ^http://((?:ansatt|bildebase|ca|www\.dike|disco|drupal|eureka|metanav|nav|openwiki|rt|surveytest|(?:test\.)?tjenester|www3?|www-feide)\.)?uninett\.no/ + to + https://$1uninett.no/ + + + from + ^http://(?:www\.)?gn3campus\.uninett\.no/ + to + https://ow.feide.no/geantcampus:start + + + securecookie + + host + ^(?:\.ansatt|\.?bildebase|\.?eureka|nav|openwiki|\.rt|surveytest|\.(?:test\.)?tjenester|\.www)\.uninett\.no$ + name + .+ + + target + + + host + uninett.no + + + host + *.uninett.no + + + + + Unique Vintage + + ruleset + + name + Unique Vintage + rule + + from + ^https?://(?:www\.)?unique-vintage\.com/ + to + https://www.unique-vintage.com/ + + securecookie + + host + ^\.unique-vintage\.com$ + name + .+ + + target + + + host + unique-vintage.com + + + host + *.unique-vintage.com + + + + + Unisg.ch + + ruleset + + name + Unisg.ch + rule + + from + ^http://(www\.)?unisg\.ch/ + to + https://www.unisg.ch/ + + target + + + host + unisg.ch + + + host + www.unisg.ch + + + + + Unister + + ruleset + + name + Unister + rule + + from + ^http://(m|static|w)\.unister-adservices\.com/ + to + https://$1.unister-adservices.com/ + + target + + host + *.unister-adservices.com + + + + Unisys.com (partial) + + ruleset + + name + Unisys.com (partial) + rule + + from + ^http://(www\.app3|infoselect|www\.support)\.unisys\.com/ + to + https://$1.unisys.com/ + + securecookie + + host + ^www\.support\.unisys\.com$ + name + .+ + + target + + host + *.unisys.com + + + + Unitarian Universalist Association of Congregations (partial) + + ruleset + + name + Unitarian Universalist Association of Congregations (partial) + rule + + from + ^http://(www\.)?uua\.org/ + to + https://$1uua.org/ + + target + + + host + uua.org + + + host + www.uua.org + + + + + United Acquisition Services (partial) + + ruleset + + name + United Acquisition Services (partial) + rule + + from + ^http://mail\.uas\.biz/ + to + https://mail.uas.biz/ + + target + + host + mail.uas.biz + + + + United Airlines + + ruleset + + name + United Airlines + rule + + + from + ^http://(?:www\.)?united\.com/ + to + https://www.united.com/ + + + from + ^http://travel\.united\.com/ + to + https://travel.united.com/ + + + from + ^http://pss\.united\.com/ + to + https://pss.united.com/ + + + from + ^http://(?:www\.)?ua2go\.com/ + to + https://www.ua2go.com/ + + + target + + + host + united.com + + + host + www.united.com + + + host + travel.united.com + + + host + pss.united.com + + + host + ua2go.com + + + host + www.ua2go.com + + + + + United Domains + + ruleset + + name + United Domains + rule + + + from + ^http://(?:www\.)?uniteddomains\.com/ + to + https://www.uniteddomains.com/ + + + from + ^http://www\.united-domains\.de/ + to + https://www.united-domains.de/ + + + target + + + host + uniteddomains.com + + + host + www.uniteddomains.com + + + host + www.united-domains.de + + + + + United Internet + + ruleset + + name + United Internet + rule + + from + ^http://(?:www\.)?united-internet\.de/ + to + https://www.united-internet.de/ + + securecookie + + host + ^www\.united-internet\.de$ + name + .* + + target + + + host + united-internet.de + + + host + www.united-internet.de + + + + + United Nations + + ruleset + + name + United Nations + platform + mixedcontent + rule + + from + ^http://(?:www\.)?un\.org/ + to + https://www.un.org/ + + target + + + host + un.org + + + host + www.un.org + + + + + United Nations Office at Vienna (partial) + + ruleset + + name + United Nations Office at Vienna (partial) + rule + + from + ^http://(unvextn2|www)\.unvienna\.org/ + to + https://$1.unvienna.org/ + + securecookie + + host + ^www\.unvienna\.org$ + name + .+ + + target + + host + *.unvienna.org + + + + United Nuclear Scientific + + ruleset + + name + United Nuclear Scientific + rule + + from + ^http://(www\.)?unitednuclear\.com/ + to + https://$1unitednuclear.com/ + + securecookie + + host + ^(.*\.)?unitednuclear\.com$ + name + .* + + target + + + host + unitednuclear.com + + + host + *.unitednuclear.com + + + + + United Republic (partial) + + ruleset + + name + United Republic (partial) + rule + + from + ^http://(www\.)?unitedrepublic\.org/(donate(?:$|\?|/)|wp-content/) + to + https://$1unitedrepublic.org/$2 + + target + + + host + unitedrepublic.org + + + host + www.unitedrepublic.org + + + + + United San Antonio Federal Credit Union + + ruleset + + name + United San Antonio Federal Credit Union + rule + + + from + ^https?://unitedsafcu\.org/ + to + https://www.unitedsafcu.org/ + + + from + ^http://([\w\-]+)\.unitedsafcu\.org/ + to + https://$1.unitedsafcu.org/ + + + securecookie + + host + ^\.?unitedsafcu\.org$ + name + .+ + + target + + + host + unitedsafcu.org + + + host + *.unitedsafcu.org + + + + + United States Department of Agriculture (partial) + + ruleset + + name + United States Department of Agriculture (partial) + rule + + + from + ^http://(?:www\.)?fsa\.usda\.gov/ + to + https://www.fsa.usda.gov/ + + + from + ^http://(my|oip|(?:oip|pws)\.sc\.egov)\.usda\.gov/ + to + https://$1.usda.gov/ + + + securecookie + + host + ^my\.usda\.gov$ + name + .* + + target + + + host + *.sc.egov.usda.gov + + + host + my.usda.gov + + + host + oip.usda.gov + + + + + United States Department of Energy (partial) + + ruleset + + name + United States Department of Energy (partial) + rule + + + from + ^http://(www\.)?directives\.doe\.gov/ + to + https://$1directives.doe.gov/ + + + from + ^http://(www\.)?hss\.doe\.gov/includes2/ + to + https://$1hss.doe.gov/includes2/ + + + securecookie + + host + ^(www\.)?directives\.doe\.gov$ + name + .* + + target + + + host + *.doe.gov + + + host + www.*.doe.gov + + + + + United States Nuclear Regulatory Commission + + ruleset + + name + United States Nuclear Regulatory Commission + platform + mixedcontent + rule + + from + ^https?://(?:forms\.|www\.)?nrc\.gov/ + to + https://forms.nrc.gov/ + + target + + + host + nrc.gov + + + host + forms.nrc.gov + + + host + www.nrc.gov + + + + + United Stationers (partial) + + ruleset + + name + United Stationers (partial) + rule + + + from + ^http://(content\.|marketingassets\.|www\.)?oppictures\.com/ + to + https://$1oppictures.com/ + + + from + ^https?://(?:www\.)?ussco\.com/ + to + https://www.ussco.com/ + + + from + ^http://(login|sso)\.ussco\.com/ + to + https://$1.ussco.com/ + + + securecookie + + host + ^.+\.ussco\.com$ + name + .+ + + target + + + host + oppictures.com + + + host + *.oppictures.com + + + host + ussco.com + + + host + *.ussco.com + + + + + Unity (partial) + + ruleset + + name + Unity (partial) + platform + mixedcontent + rule + + from + ^http://(blogs\.|forum\.|www\.)?unity3d\.com/ + to + https://$1unity3d.com/ + + securecookie + + host + ^(?:.+\.)?unity3d\.com$ + name + .* + + target + + + host + unity3d.com + + + host + *.unity3d.com + + + + + Univ-Brest.fr (partial) + + ruleset + + name + Univ-Brest.fr (partial) + rule + + from + ^http://(?:www\.)?univ-brest\.fr/ + to + https://www.univ-brest.fr/ + + target + + + host + univ-brest.fr + + + host + www.univ-brest.fr + + + + + Univention.de + + ruleset + + name + Univention.de + rule + + + from + ^http://(www\.)?univention\.de/ + to + https://$1univention.de/ + + + from + ^http://(?:www\.)?piwik\.univention\.de/ + to + https://www.piwik.univention.de/ + + + securecookie + + host + ^www\.univention\.de$ + name + .+ + + target + + + host + univention.de + + + host + *.univention.de + + + + + Universal Subtitles + + ruleset + + name + Universal Subtitles + rule + + + from + ^http://universalsubtitles\.org/ + to + https://www.universalsubtitles.org/ + + + from + ^http://(blog|www)\.universalsubtitles\.org/ + to + https://$1.universalsubtitles.org/ + + + from + ^http://s3\.www\.universalsubtitles\.org/ + to + https://s3.amazonaws.com/s3.www.universalsubtitles.org/ + + + target + + + host + universalsubtitles.org + + + host + *.universalsubtitles.org + + + host + s3.www.universalsubtitles.org + + + + + Universidad Distrital + + ruleset + + name + Universidad Distrital + platform + firefox + rule + + from + ^http://(?:www\.)?udistrital\.edu\.co/ + to + https://udistrital.edu.co/ + + target + + + host + udistrital.edu.co + + + host + www.udistrital.edu.co + + + + + University College London (partial) + + ruleset + + name + University College London (partial) + rule + + from + ^https?://(?:www\.)?ucl\.ac\.uk/ + to + https://www.ucl.ac.uk/ + + target + + + host + ucl.ac.uk + + + host + www.ucl.ac.uk + + + + + University Computer Club (partial) + + ruleset + + name + University Computer Club (partial) + rule + + from + ^http://matt\.ucc\.asn\.au/ + to + https://matt.ucc.asn.au/ + + target + + host + matt.ucc.asn.au + + + + University at Buffalo (partial) + + ruleset + + name + University at Buffalo (partial) + rule + + + from + ^http://((?:(?:www\.)?(?:alumni|hr|myub|provost|ubit|wings)|prv-web\.eng|inted\.oie|security|shibboleth|ublearns|ubmail|www)\.)?buffalo\.edu/ + to + https://$1buffalo.edu/ + + + from + ^http://(www\.)?student-affairs\.buffalo\.edu/(\w+/)?(images|style)/ + to + https://$1student-affairs.buffalo.edu/$2$3/ + + + from + ^https?://(?:www\.)?ubfoundation\.buffalo\.edu/ + to + https://ubfoundation.buffalo.edu/ + + + from + ^https?://(?:www\.)?ubjobs\.buffalo\.edu/ + to + https://www.ubjobs.buffalo.edu/ + + + securecookie + + host + ^.+\.buffalo\.edu$ + name + .+ + + target + + + host + buffalo.edu + + + host + *.buffalo.edu + + + + + University of Akron (partial) + + ruleset + + name + University of Akron (partial) + rule + + from + ^http://(www\.|my\.|zipline\.|id\.|support\.|supportchat\.|maps\.|auth\.|library\.|ece\.|www\.lawalum\.|wayne\.|wiep\.|lists\.|lawscout\.|ztv\.|eohs\.|springboard\.|lawclerk\.|blogs\.)?uakron\.edu/ + to + https://$1uakron.edu/ + + target + + + host + uakron.edu + + + host + *.uakron.edu + + + + + University of Alaska (partial) + + ruleset + + name + University of Alaska (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?(uaa\.)?alaska\.edu/ + to + https://www.$1alaska.edu/ + + + from + ^http://(authserv|(?:www\.)?(avo|uaonline)|cirt|edir|elmo|email|biotech\.inbre|lists|service|(?:swf|uaf)-1\.vpn|yukon)\.alaska\.edu/ + to + https://$1.alaska.edu/ + + + from + ^https?://lib\.uaa\.alaska\.edu/ + to + https://consortiumlibrary.org/ + + + securecookie + + host + ^www\.uaa\.alaska\.edu$ + name + .+ + + target + + + host + alaska.edu + + + host + *.alaska.edu + + + host + www.*.alaska.edu + + + host + biotech.inbre.alaska.edu + + + host + lib.uaa.alaska.edu + + + host + *.vpn.alaska.edu + + + + + University of Alaska Jobs (uakjobs.com) + + ruleset + + name + University of Alaska Jobs (uakjobs.com) + rule + + from + ^http://(?:www\.)?uakjobs\.com/ + to + https://www.uakjobs.com/ + + securecookie + + host + ^(www\.)?uakjobs\.com$ + name + .+ + + target + + + host + uakjobs.com + + + host + www.uakjobs.com + + + + + University of Applied Sciences Kiel + + ruleset + + name + University of Applied Sciences Kiel + rule + + + from + ^http://(?:www\.)?fh-kiel\.de/ + to + https://www.fh-kiel.de/ + + + from + ^http://(?:www\.)?(email|student)\.fh-kiel\.de/ + to + https://$1.fh-kiel.de/ + + + from + ^http://(ida|hrzsophos\.hrz\.isc|modulanmeldung|module|vpn)\.fh-kiel\.de/ + to + https://$1.fh-kiel.de/ + + + securecookie + + host + ^(?:(?:(?:www)?|(?:www\.)?(?:email|student)|hrzsophos\.hrz\.isc|ida|modulanmeldung|module|vpn)\.)?fh-kiel.de$ + name + .+ + + target + + + host + fh-kiel.de + + + host + *.fh-kiel.de + + + + + University of Applied Sciences Rapperswil + + ruleset + + name + University of Applied Sciences Rapperswil + rule + + + from + ^http://(?:www\.)?hsr\.ch/ + to + https://www.hsr.ch/ + + + from + ^http://log\.hsr\.ch/ + to + https://log.hsr.ch/ + + + securecookie + + host + ^www\.hsr\.ch$ + name + .* + + target + + + host + hsr.ch + + + host + *.hsr.ch + + + + + University of Arizona (partial) + + ruleset + + name + University of Arizona (partial) + rule + + + from + ^http://(www\.)?cs\.arizona\.edu/ + to + https://$1cs.arizona.edu/ + + + from + ^http://hirise-pds\.lpl\.arizona\.edu/(\?.*)?$ + to + https://hirise.lpl.arizona.edu/PDS/$1 + + + from + ^http://hirise(?:-pds)?\.lpl\.arizona\.edu/ + to + https://hirise.lpl.arizona.edu/ + + + from + ^http://www\.lpl\.arizona\.edu/ + to + https://www.lpl.arizona.edu/ + + + target + + host + *.arizona.edu + + + + University of Bath (partial) + + ruleset + + name + University of Bath (partial) + rule + + from + ^http://(?:www\.)?bath\.ac\.uk/(assets/|common/|external/|favicon\.ico|graphics/|news/system/|system/) + to + https://www.bath.ac.uk/$1 + + target + + + host + bath.ac.uk + + + host + www.bath.ac.uk + + + + + University of Bern (partial) + + ruleset + + name + University of Bern (partial) + rule + + + from + ^http://(cmslive3|www\.(?:kommunikation|phil(?:hist|hum|nat)|psy|rechtswissenschaft|risiko|uniaktuell|vetsuisse|wiso|zuw))\.unibe\.ch/ + to + https://$1.unibe.ch/ + + + from + ^https?://(?:www\.)?(id|medizin|ub)\.unibe\.ch/ + to + https://www.$1.unibe.ch/ + + + from + ^https?://www\.medienmitteilungen\.unibe\.ch/ + to + https://www.kommunikation.unibe.ch/content/medien/medienmitteilungen/index_ger.html + + + from + ^https?://www\.uni(link|press)\.unibe\.ch/ + to + https://www.kommunikation.unibe.ch/content/publikationen/uni$1/index_ger.html + + + securecookie + + host + ^.*\.unibe\.ch$ + name + .* + + target + + + host + *.unibe.ch + + + host + www.*.unibe.ch + + + + + University of Bristol (partial) + + ruleset + + name + University of Bristol (partial) + rule + + + from + ^https?://(?:www\.)?survey\.bris\.ac\.uk/ + to + https://www.survey.bris.ac.uk/ + + + from + ^http://shop\.bris\.ac\.uk/ + to + https://shop.bris.ac.uk/ + + + securecookie + + host + ^shop\.bris\.ac\.uk$ + name + .+ + + target + + host + *.bris.ac.uk + + + + University of California (partial) + + ruleset + + exclusion + + pattern + ^http://extension\.ucsb\.edu/(?!css/|images/|portal/) + + name + University of California (partial) + rule + + + from + ^http://(archive\.|www\.)?ics\.uci\.edu/ + to + https://$1ics.uci.edu/ + + + from + ^http://(?:www\.)?admissions\.ucsb\.edu/ + to + https://www.admissions.ucsb.edu/ + + + from + ^http://(wepawet\.cs|www\.cs|apps\.education|extension|ftp|secure\.lsit|analytics\.oist)\.ucsb\.edu/ + to + https://$1.ucsb.edu/ + + + from + ^http://login\.proxy\.library\.ucsb\.edu(:\d+)?/ + to + https://login.proxy.library.ucsb.edu/ + + + securecookie + + + host + ^(?:.*\.)?ics\.uci\.edu$ + name + .+ + + + host + ^(?:www\.admissions|analytics\.oist)\.ucsb\.edu$ + name + .+ + + + host + ^wepawet\.cs\.ucsb\.edu$ + name + .+ + + + target + + + host + *.uci.edu + + + host + *.ucsb.edu + + + + + University of California, Berkeley (partial) + + ruleset + + exclusion + + + pattern + ^http://alumni\.berkeley\.edu/(?!sites/) + + + pattern + ^http://blogs\.berkeley\.edu/(?:.+/)?(?:$|\?) + + + name + University of California, Berkeley (partial) + rule + + + from + ^http://(airbears|alumni|asterix|atcal|atcal-dev|auth|auth-key|beartracks(?:-new)?|blogs|blu|bspace|cal|calagenda|cal-dev|calfutures|callink|calmail|calmessages|(?:[\w-]+\.)?calnet|career|ccc|ccc-dev|cnr|(nature|www)\.cnr|commencement|convio|code|auto(?:config|discover)\.(?:ee)?cs|developer|(?:auth|buffy)\.eecs|egiving|eureka|events|fellowship|foundation(?:-dev)?|givetocal|haasawards|services\.housing|ihouseonline|inews|international|blu\.is|as-(?:code|ezsvn)-prod\.ist|ist|journalism|kb|lib|www\.lib|nature|newscenter|or|oskicatp|scholarship|(?:fortuna\.)?security|seniors|(?:new)?students|sunsite|(?:urshare-prod1|wiki)\.urel|wikihub(?:-new)?)\.berkeley\.edu/ + to + https://$1.berkeley.edu/ + + + from + ^http://(?:www\.)?(are|boinc)\.berkeley\.edu/ + to + https://$1.berkeley.edu/ + + + from + ^http://bmail\.berkeley\.edu/.* + to + https://mail.google.com/a/berkeley.edu + + + from + ^http://cal1card\.berkeley\.edu/+([^?])(?:\?.*)? + to + https://services.housing.berkeley.edu/c1c/$1 + + + from + ^http://callcenter\.berkeley\.edu/$ + to + https://givetocal.berkeley.edu/browse/?u=191 + + + from + ^http://(?:www\.)?(cs|eecs|law)\.berkeley\.edu/ + to + https://www.$1.berkeley.edu/ + + + from + ^http://graduation\.berkeley\.edu/$ + to + https://commencement.berkeley.edu/ + + + from + ^http://ourpromise\.berkeley\.edu/$ + to + https://givetocal.berkeley.edu/browse/?u=174 + + + securecookie + + host + ^(?:\w.*|\.events|(?:\.fortuna)?\.security)\.berkeley\.edu$ + name + .+ + + target + + host + *.berkeley.edu + + + + University of California, San Francisco (partial) + + ruleset + + name + University of California, San Francisco (partial) + rule + + + from + ^http://ucsf\.edu/ + to + https://www.ucsf.edu/ + + + from + ^http://makeagift\.ucsf\.edu/(?:site/PageServer)?(?:\?pagename=page_not_found)?$ + to + https://makeagift.ucsf.edu/site/PageServer?pagename=A1_API_GeneralGivingForm + + + from + ^http://(asuc|career|dp|edtech|finaid|graduate|gsa|insideguide|interprofessional|isso|it|learn|makeagift|myaccess|oir|registrar|saa|sac|sds|ssmb|studenthealth|warnme|www)\.ucsf\.edu/ + to + https://$1.ucsf.edu/ + + + from + ^http://www\.(career|warnme)\.ucsf\.edu/ + to + https://$1.ucsf.edu/ + + + securecookie + + host + ^(?:\.asuc|\.career|dp|\.edtech|\.finaid|\.graduate|\.gsa|\.insideguide|\.interprofessional|\.isso|\.?it|\.learn|makeagift|\.oir|\.registrar|\.?saa|\.sac|\.sds|\.ssmb|studenthealth|www)\.ucsf\.edu$ + name + .+ + + target + + + host + ucsf.edu + + + host + *.ucsf.edu + + + + + University of California, Santa Cruz (partial) + + ruleset + + name + University of California, Santa Cruz (partial) + rule + + + from + ^http://(clery-dev|cruzid|(?:cancer2|genome-cancer)\.cse|(?:www\.)?genome|genome-cancer|its-proposals-dev|my|(?:cbse|cs)\.soe|ugr\.ue|www1)\.ucsc\.edu/ + to + https://$1.ucsc.edu/ + + + from + ^http://email\.ucsc\.edu/.* + to + https://mail.google.com/a/ucsc.edu + + + from + ^http://(?:www\.)?soe\.ucsc\.edu/ + to + https://www.soe.ucsc.edu/ + + + from + ^http://ugr\.ucsc\.edu/ + to + https://ugr.ue.ucsc.edu/ + + + from + ^http://itrequest\.ucsc\.edu/[^\?]*(\?.*)? + to + https://ucsc.service-now.com/ess/$1 + + + securecookie + + host + ^(?:cruzid|(?:cancer2|genome-cancer)\.cse|www1)\.ucsc\.edu$ + name + .+ + + target + + host + *.ucsc.edu + + + + University of Cambridge (partial) + + ruleset + + name + University of Cambridge (partial) + rule + + + from + ^http://((?:hrsystems|sales|webservices|www)\.admin|www\.campaign|sysdata\.cl|(?:jotter|thinkingtogether|www|www-new)\.educ|www\.ice|map|www2\.mrc-lmb|(?:shib\.)?raven|search|api\.search|www\.(?:admin|cl|wolfson))\.cam\.ac\.uk/ + to + https://$1.cam.ac.uk/ + + + from + ^http://(?:www\.)?alumni\.cam\.ac\.uk/ + to + https://www.alumni.cam.ac.uk/ + + + from + ^http://(?:www\.)?damtp\.cam\.ac\.uk/global/ + to + https://www.damtp.cam.ac.uk/global/ + + + securecookie + + host + ^(?:(?:hrsystems|webservices)\.admin|www\.a(?:dmin|lumni)|www\.educ|sysdata\.cl|www\.ice)\.cam\.ac\.uk$ + name + .+ + + target + + host + *.cam.ac.uk + + + + University of Cape Town (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?icts\.uct\.ac\.za/(?!alerts\.php|favicon\.ico|images/|modules\.php\?name=Your_Account|themes/) + + name + University of Cape Town (partial) + rule + + + from + ^http://(?:www\.)?(icts\.)?uct\.ac\.za/ + to + https://www.$1uct.ac.za/ + + + from + ^http://(autodiscover|chrysalis|mail|netstorage|srvslspsw001|www\.staff|uctgwacc|vula)\.uct\.ac\.za/ + to + https://$1.uct.ac.za/ + + + from + ^http://(?:www\.)?hr\.uct\.ac\.za/(favicon\.ico|images/|scripts/) + to + https://www.uct.ac.za/$1 + + + from + ^http://www\.mail\.uct\.ac\.za/([^/]*)(?:\?.*)?$ + to + https://mail.uct.ac.za/owa/$1 + + + from + ^http://(?:www\.)?password\.uct\.ac\.za/ + to + https://password.uct.ac.za/ + + + from + ^http://staffonline\.uct\.ac\.za/.* + to + https://srvslspsw002.uct.ac.za:483/staff/signon.html + + + from + ^http://srvslspsw001\.uct\.ac\.za:483/ + to + https://srvslspsw001.uct.ac.za:483/ + + + from + ^http://www\.vula\.uct\.ac\.za/(?:\?.*)$ + to + https://vula.uct.ac.za/portal + + + securecookie + + host + ^(?:mail|netstorage|password|www\.staff|uctgwacc|vula|www)\.uct\.ac\.za$ + name + .+ + + target + + + host + uct.ac.za + + + host + *.uct.ac.za + + + + + University of Central Florida (partial) + + ruleset + + name + University of Central Florida (partial) + rule + + from + ^http://((?:admissions|bot|brand|cdn|communityrelations|fsi|hospitality|my|today|smca|universityheader|www)\.)?ucf\.edu/ + to + https://$1ucf.edu/ + + securecookie + + host + ^(?:admissions|bot|brand|cdn|communityrelations|fsi|hospitality|my|smca|today|universityheader)\.ucf\.edu$ + name + .* + + target + + + host + ucf.edu + + + host + *.ucf.edu + + + + + University of Central Lancashire + + ruleset + + name + University of Central Lancashire + rule + + from + ^http://(staff\.|www\.)?uclan\.ac\.uk/ + to + https://$1uclan.ac.uk/ + + target + + + host + uclan.ac.uk + + + host + *.uclan.ac.uk + + + + + University of Chicago (partial) + + ruleset + + name + University of Chicago (partial) + rule + + + from + ^https?://(?:www\.)?(ci\.)?uchicago\.edu/ + to + https://www.$1uchicago.edu/ + + + from + ^http://((?:beagle|pads|pokey)\.ci|identity)\.uchicago\.edu/ + to + https://$1.uchicago.edu/ + + + securecookie + + host + ^.*\.uchicago\.edu$ + name + .* + + target + + + host + uchicago.edu + + + host + *.uchicago.edu + + + host + *.ci.uchicago.edu + + + + + University of Cincinatti (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?(?:intmed|med|researchcompliance)\.uc\.edu/(?!App_(?:Master|Themes)/|Libraries/|[sS]itefinity/|WebResource\.axd) + + name + University of Cincinatti (partial) + rule + + + from + ^https?://(?:www\.)?uc\.edu/ + to + https://www.uc.edu/ + + + from + ^http://(admissions|(?:www\.)?(?:health|med|medcenter|pharmacy|researchcompliance)|intmed|ucdirectory)\.uc\.edu/ + to + https://$1.uc.edu/ + + + securecookie + + host + ^(?!(?:www\.)?(?:intmed|med|researchcompliance)\.).+\.uc\.edu$ + name + .+ + + target + + + host + uc.edu + + + host + *.uc.edu + + + + + University of Colorado at Boulder (partial) + + ruleset + + name + University of Colorado at Boulder (partial) + rule + + + from + ^http://(www\.)?colorado\.edu/(misc|profiles|sites)/ + to + https://$1colorado.edu/$2/ + + + from + ^http://(fiske|jila|laspwebmail)\.colorado\.edu/ + to + https://$1.colorado.edu/ + + + securecookie + + host + ^laspwebmail\.colorado\.edu$ + name + .+ + + target + + + host + colorado.edu + + + host + *.colorado.edu + + + + + University of Copenhagen (partial) + + ruleset + + name + University of Copenhagen (partial) + rule + + from + ^http://(www2\.adm|intranet)\.ku\.dk/ + to + https://$1.ku.dk/ + + securecookie + + host + ^\w.*\.ku\.dk$ + name + .* + + target + + + host + www2.adm.ku.dk + + + host + intranet.ku.dk + + + + + University of Delaware (partial) + + ruleset + + name + University of Delaware (partial) + rule + + + from + ^http://((?:ag|extension|web\.facilities|\w+\.nss|www)\.)?udel\.edu/ + to + https://$1udel.edu/ + + + from + ^http://www\.facilities\.udel\.edu/(App_Themes|[dD]ata|Secure)/ + to + https://www.facilities.udel.edu/$1/ + + + securecookie + + host + ^(?:extension|.*\.nss)\.udel\.edu$ + name + .+ + + target + + + host + udel.edu + + + host + *.udel.edu + + + host + *.facilities.udel.edu + + + host + *.nss.udel.edu + + + + + University of Derby (partial) + + ruleset + + name + University of Derby (partial) + rule + + from + ^http://(erecruitment|password|pssprd|students|udo)\.derby\.ac\.uk(:8030)?/ + to + https://$1.derby.ac.uk$2/ + + securecookie + + host + ^.+\.derby\.ac\.uk$ + name + .+ + + target + + host + *.derby.ac.uk + + + + University of Eastern Finland (partial) + + ruleset + + name + University of Eastern Finland (partial) + rule + + + from + ^http://cs\.joensuu\.fi/ + to + https://cs.joensuu.fi/ + + + from + ^http://(?:www\.)?uef\.fi/ + to + https://www.uef.fi/ + + + securecookie + + host + ^www\.uef\.fi$ + name + .* + + target + + + host + cs.joensuu.fi + + + host + uef.fi + + + host + www.uef.fi + + + + + University of Erlangen-Nuremberg (partial) + + ruleset + + name + University of Erlangen-Nuremberg (partial) + rule + + + from + ^http://((?:(?:www\.)?blogs|www1\.cs|www|ftp)\.)?fau\.de/ + to + https://$1fau.de/ + + + from + ^http://(?:www\.)?blog(?:\.fau|(?:home|s?)\.uni-erlangen)\.de/ + to + https://blogs.fau.de/ + + + from + ^http://((?:(?:www\.)?eam|www1\.informatik|zuv\.cms\.rrze|www)\.)?uni-erlangen\.de/ + to + https://$1uni-erlangen.de/ + + + securecookie + + + host + ^(?:www\.)?eam\.fau\.de$ + name + .+ + + + host + ^(?:www\.)?eam\.uni-erlangen\.de$ + name + .+ + + + target + + + host + fau.de + + + host + *.fau.de + + + host + uni-erlangen.de + + + host + *.uni-erlangen.de + + + + + University of Exeter (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?(?:psychology|sshs)\. + + name + University of Exeter (partial) + rule + + + from + ^http://newton\.ex\.ac\.uk/ + to + https://newton.ex.ac.uk/ + + + from + ^https?://([\w-]+\.)?ex(?:eter)?\.ac\.uk/ + to + https://$1exeter.ac.uk/ + + + from + ^https?://(?:www\.)?([\w-]+\.)ex(?:eter)?\.ac\.uk/ + to + https://$1exeter.ac.uk/ + + + securecookie + + host + ^(?:.*\.)?exeter\.ac\.uk$ + name + .+ + + target + + + host + ex.ac.uk + + + host + *.ex.ac.uk + + + host + exeter.ac.uk + + + host + *.exeter.ac.uk + + + + + University of Florida (partial) + + ruleset + + name + University of Florida (partial) + rule + + + from + ^https?://(?:www\.)?(cise|crc|fa|isis|uff)\.ufl\.edu/ + to + https://www.$1.ufl.edu/ + + + from + ^https?://lists\.ufl\.edu/archives/net-managers-l\.html + to + https://lists.ufl.edu/cgi-bin/wa?A0=NET-MANAGERS-L + + + from + ^http://((?:labs|lss)\.at|catalog|counceling|evaluations|service\.gatorlink|gradschool|security\.health|(?:alerts|asc|etd|static)\.helpdesk|infosec|test\.isis|alerts\.it|lists|login|my|net-services|nms(?:-console)?\.ns|open-systems|(?:images|style)\.webadmin|webmail)\.ufl\.edu/ + to + https://$1.ufl.edu/ + + + from + ^https?://forwardtogether\.(?:health|sites\.medinfo).ufl.edu/ + to + https://forwardtogether.sites.medinfo.ufl.edu/ + + + from + ^https?://(?:www\.)?ufalumni\.ufl\.edu/($|App_Themes/|images/|login\.aspx|membersonly/register|resources/|styles/|WebResource\.axd|[\w\-\./]+/$) + to + https://www.ufalumni.ufl.edu/$1 + + + from + ^http://www\.shands\.org/ + to + https://www.shands.org/ + + + securecookie + + host + ^\w[\w\.]*\.ufl\.edu$ + name + .* + + target + + + host + www.shands.org + + + host + *.ufl.edu + + + + + University of Georgia (partial) + + ruleset + + name + University of Georgia (partial) + platform + mixedcontent + rule + + from + ^http://news\.uga\.edu/ + to + https://news.uga.edu/ + + target + + host + news.uga.edu + + + + University of Greifswald (partial) + + ruleset + + name + University of Greifswald (partial) + rule + + from + ^http://(ilias|t3cl-hgw\.rz|typo3cluster\.rz)\.uni-greifswald\.de/ + to + https://$1.uni-greifswald.de/ + + securecookie + + host + ^ilias\.uni-greifswald\.de$ + name + .+ + + target + + host + *.uni-greifswald.de + + + + University of Grenada (partial) + + ruleset + + name + University of Grenada (partial) + rule + + from + ^http://cruetic\.ugr\.es/ + to + https://cruetic.ugr.es/ + + securecookie + + host + ^\.?cruetic\.ugr\.es$ + name + .+ + + target + + host + *.ugr.es + + + + University of Groningen (partial) + + ruleset + + name + University of Groningen (partial) + rule + + + from + ^http://(www\.)?rug\.nl/(_definition/|sterrenkunde/([!_]css|_shared/|onderwijs/index!login)) + to + https://$1rug.nl/$2 + + + from + ^http://(?:www\.)?astro\.rug\.nl/ + to + https://www.astro.rug.nl/ + + + target + + + host + rug.nl + + + host + *.rug.nl + + + host + www.astro.rug.nl + + + + + University of Helsinki (partial) + + ruleset + + name + University of Helsinki (partial) + rule + + + from + ^https?://helsinki\.fi/ + to + https://www.helsinki.fi/ + + + from + ^http://www\.helsinki\.fi/(css/|images/) + to + https://www.helsinki.fi/$1 + + + from + ^http://(alma|alumniverkosto|blogs|www-db2)\.helsinki\.fi/ + to + https://$1.helsinki.fi/ + + + from + ^http://(?:www\.)?cs\.helsinki\.fi/ + to + https://www.cs.helsinki.fi/ + + + target + + + host + helsinki.fi + + + host + *.helsinki.fi + + + + + University of Hertfordshire (partial) + + ruleset + + name + University of Hertfordshire (partial) + rule + + + from + ^https?://go\.herts\.ac\.uk/(\w*) + to + https://web-apps.herts.ac.uk/go/?go=$1 + + + from + ^http://(www\.studentrecord|web-apps)\.herts\.ac\.uk/ + to + https://$1.herts.ac.uk/ + + + from + ^https?://(?:www\.)?studynet([12])?\.herts\.ac\.uk/ + to + https://www.studynet$1.herts.ac.uk/ + + + target + + + host + *.herts.ac.uk + + + host + www.*.herts.ac.uk + + + + + University of Houston (partial) + + ruleset + + name + University of Houston (partial) + rule + + + from + ^https?://(?:www\.)?uh\.edu/ + to + https://ssl.uh.edu/ + + + from + ^http://(accessuh|fp\.mh|myuh|(?:forms|mail|mynsm|mynsmstore|nsmit)\.nsm|www\.opt|ssl|vnet)\.uh\.edu/ + to + https://$1.uh.edu/ + + + from + ^https?://(?:www\.)?nsm\.uh\.edu/ + to + https://nsm.uh.edu/ + + + from + ^https?://(?:www\.)?(bauer|coe|egr|law|tech)\.uh\.edu/ + to + https://www.$1.uh.edu/ + + + securecookie + + host + ^.+\.uh\.edu$ + name + .+ + + target + + + host + *.uh.edu + + + host + www.*.uh.edu + + + host + fp.my.uh.edu + + + host + *.nsm.uh.edu + + + + + University of Idaho (partial) + + ruleset + + name + University of Idaho (partial) + rule + + + from + ^http://((?:sitecore|vandalweb|www\.(?:dfa|sci|uiweb|webedit)|www2?\.sites|www)\.)?uidaho\.edu/ + to + https://$1uidaho.edu/ + + + from + ^https?://www\.its\.uidaho\.edu/$ + to + https://www.uidaho.edu/its + + + securecookie + + host + ^\w.*\.uidaho\.edu$ + name + .+ + + target + + + host + uidaho.edu + + + host + *.uidaho.edu + + + host + www.*.uidaho.edu + + + host + www2.sites.uidaho.edu + + + + + University of Illinois at Urban-Champaign (partial) + + ruleset + + name + University of Illinois at Urban-Champaign (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?(?:illinois|uiuc)\.edu/(about/about\.html|academics/academics\.html|assets2?/|athletics/athletics\.html|favicon\.ico|\.psg/) + to + https://illinois.edu/$1 + + + from + ^http://(secure\.admin|autodiscover|www1\.business|wiki\.engr|exchws|(?:internal|security)\.ncsa|webmail)\.illinois\.edu/ + to + https://$1.illinois.edu/ + + + from + ^https?://(?:www\.)?(business|chbe)\.illinois\.edu/ + to + https://$1.illinois.edu/ + + + from + ^https?://(?:cs|npre)\.illinois\.edu/sites/ + to + https://chbe.illinois.edu/sites/ + + + from + ^https?://(?:((?:blogs|iefx|it)\.)|www\.)?engineering\.illinois\.edu/ + to + https://$1engineering.illinois.edu/ + + + from + ^https?://(?:www(?:-s)?\.)?housing\.illinois\.edu/ + to + https://www-s.housing.illinois.edu/ + + + from + ^https?://(?:www\.)?mrp\.illinois\.edu/ + to + https://www.mrp.illinois.edu/ + + + from + ^http://parallel\.illinois\.edu/sites/ + to + https://parallel.illinois.edu/sites/ + + + from + ^https://(www\.)?union\.(?:uiuc|illinois)\.edu/ + to + https://$1union.illinois.edu/ + + + from + ^http://(www\.)?illinoislawreview\.org/ + to + https://$1illinoislawreview.org/ + + + from + ^https?://(?:www(?:-s)?\.)?ks\.uiuc\.edu/ + to + https://www-s.ks.uiuc.edu/ + + + from + ^http://www-s\.mechse\.uiuc\.edu/ + to + https://www-s.mechse.uiuc.edu/ + + + securecookie + + + host + ^.*[^w]\.illinois\.edu$ + name + .+ + + + host + ^www-s\.mechse\.uiuc\.edu$ + name + .+ + + + target + + + host + illinois.edu + + + host + *.illinois.edu + + + host + illinoislawreview.org + + + host + www.illinoislawreview.org + + + host + uiuc.edu + + + host + *.uiuc.edu + + + + + University of Iowa (partial) + + ruleset + + name + University of Iowa (partial) + rule + + from + ^http://tippie\.uiowa\.edu/ + to + https://tippie.uiowa.edu/ + + target + + host + tippie.uiowa.edu + + + + University of Kansas (partial) + + ruleset + + name + University of Kansas (partial) + rule + + from + ^http://(assets\.drupal|technology|web)\.ku\.edu/ + to + https://$1.ku.edu/ + + target + + + host + *.ku.edu + + + host + assets.drupal.ku.edu + + + + + University of Kent (partial) + + ruleset + + name + University of Kent (partial) + rule + + + from + ^http://((?:blogs|kar|sds|static|www)\.)?kent\.ac\.uk/ + to + https://$1kent.ac.uk/ + + + from + ^http://(?:www\.)?cs\.kent\.ac\.uk/ + to + https://www.cs.kent.ac.uk/ + + + target + + + host + kent.ac.uk + + + host + *.kent.ac.uk + + + + + University of Leeds (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?chase\.leeds\.ac\.uk/(?!-/|archive/images/) + + name + University of Leeds (partial) + rule + + + from + ^https?://(?:www\.)?((?:digitalis|environment|epocs|pvac)\.)?leeds\.ac\.uk/ + to + https://www.$1leeds.ac.uk/ + + + from + ^http://(acceptonline|access|(?:www\.)?(?:alumni|arts|chase|cjs|earth|engineering|env|iss|pvac-cms|rothaconference|see|wpad)|applyonline|asd|autodiscover(?:(?:adm|as|bmb|chem|comp|earth|education|ee|estates|food|getech|its|llu|lubs)\.)?|awesome|www\.bioelectronics|blog|changemypassword|www\.comp|concussion|www\.dentistry|apollo\d\.ds|dsalumni3\.ds|www\.geo|impact|www\.its|leedsforlife|(?:blog\.)?library|lubsw(?:s01|ww)|lutube|outlook|(?:dev|www)\.pdr|pvac-(?:pvac-forum|webhost)|qtool|(?:bookings|doc|homepages)\.see|stars|studentservices|vlebb)\.leeds\.ac\.uk/ + to + https://$1.leeds.ac.uk/ + + + from + ^https?://adm\.leeds\.ac\.uk/(?:.*) + to + https://www.leeds.ac.uk/ + + + from + ^https?://campus\.leeds\.ac\.uk/accessibility-statement\.htm + to + https://www.leeds.ac.uk/accessibility/ + + + from + ^https?://campus\.leeds\.ac\.uk/legal\.htm + to + https://www.leeds.ac.uk/terms/ + + + from + ^https?://(?:www\.)?(business|cipeg|leedsportal|stringeditions)\.leeds\.ac\.uk/ + to + https://$1.leeds.ac.uk/ + + + from + ^https?://www\.ee\.leeds\.ac\.uk/(?:[^\?]*)(\?.*) + to + https://www.engineering.leeds.ac.uk/electronic$1 + + + from + ^https?://jobs\.leeds\.ac\.uk/(?:\?.*)?$ + to + https://ig29.i-grasp.com/fe/tpl_universityofleeds01.asp + + + from + ^https?://jobs\.leeds\.ac\.uk/ + to + https://ig29.i-grasp.com/ + + + from + ^https?://music\.leeds\.ac\.uk/wp-content/ + to + https://pvac-webhost.leeds.ac.uk/wp-content/ + + + from + ^https?://(?:www\.)?portal\.leeds\.ac\.uk/ + to + https://leedsportal.leeds.ac.uk/ + + + securecookie + + host + ^.+\.leeds\.ac\.uk$ + name + .+ + + target + + + host + leeds.ac.uk + + + host + *.leeds.ac.uk + + + + + University of Leicester (partial) + + ruleset + + name + University of Leicester (partial) + rule + + + from + ^http://(?:www\.)?le\.ac\.uk/ + to + https://www.le.ac.uk/ + + + from + ^http://((?:www\.)?myleicester|s?www2)\.le\.ac\.uk/ + to + https://$1.le.ac.uk/ + + + from + ^http://(?:www\.)?physics\.le\.ac\.uk/ + to + https://physics.le.ac.uk/ + + + securecookie + + host + ^physics\.le\.ac\.uk + name + .+ + + target + + + host + le.ac.uk + + + host + *.le.ac.uk + + + + + University of Louisville (partial) + + ruleset + + name + University of Louisville (partial) + rule + + + from + ^http://((?:blackboard(?:temp)?|cardmail|emailarchive|exchange|paprod|sharepoint|ulink|www)\.)?louisville\.edu/ + to + https://$1louisville.edu/ + + + from + ^https?://admissions\.louisville\.edu/(?:.*) + to + https://louisville.edu/admissions/ + + + securecookie + + host + ^.*\.louisville\.edu$ + name + .+ + + target + + + host + louisville.edu + + + host + *.louisville.edu + + + + + University of Maine (partial) + + ruleset + + name + University of Maine (partial) + rule + + + from + ^http://((?:mainestreetcs|peportal|plugged-in\.umext|www)\.)?umaine\.edu/ + to + https://$1umaine.edu/ + + + from + ^https?://(?:www\.)?(calendar(?:-dev)?|extension|go)\.umaine\.edu/ + to + https://$1.umaine.edu/ + + + from + ^https?://extensionpubs.umext.maine.edu/(?:$|\?.*) + to + https://epos2-phx.sequoiars.com/ePOS?store=413&form=shared3%2findex.html + + + from + ^https?://extensionpubs\.umext\.maine\.edu/ePOS + to + https://epos2-phx.sequoiars.com/ePOS + + + securecookie + + host + ^.+\.umaine\.edu$ + name + .+ + + target + + + host + umaine.edu + + + host + *.umaine.edu + + + host + www.*.umaine.edu + + + host + *.umext.maine.edu + + + + + University of Maine System (partial) + + ruleset + + exclusion + + pattern + ^http://www\.maine\.edu/(?!favicon\.ico|peoplesearch(?:$|\?|/)) + + name + University of Maine System (partial) + rule + + from + ^http://(learn|mainestreet|peportal|think|www)\.maine\.edu/ + to + https://$1.maine.edu/ + + securecookie + + host + ^peportal\.maine\.edu$ + name + .+ + + target + + host + *.maine.edu + + + + University of Mainz (false MCB) + + ruleset + + name + University of Mainz (false MCB) + platform + mixedcontent + rule + + from + ^http://www(\.sfv|\.sport|\.zdv)?\.uni-mainz\.de/(?!\w+\.css|\w+\.js|Bilder_(?:allgemein|zentral)/|config/|favicon\.ico|Illustrationen/|pix/) + to + https://www$1.uni-mainz.de/ + + target + + + host + www.*.uni-mainz.de + + + host + www.uni-mainz.de + + + + + University of Mainz (partial) + + ruleset + + exclusion + + + pattern + ^http://www(?:\.sfv|\.sport|\.zdv)?\.uni-mainz\.de/(?!\w+\.css|\w+\.js|Bilder_(?:allgemein|zentral)/|config/|favicon\.ico|Illustrationen/|pix/) + + + pattern + ^http://(?:lokalsystem(?:-test)?|pica[78]1)\.ub\.uni-mainz\.de/(?!cgi-bin/|OPC-IMAGES(?:-NEW)?/) + + + name + University of Mainz (partial) + rule + + from + ^http://(ilias|www\.(?:pruefungsamt\.jura|sfv|staff|students)|(?:(?:lokalsystem|opac)(?:-test)?|pica[78]1?)\.ub|pa\.wiwi|www|(?:webstats|www|wwwvh)\.zdv)\.uni-mainz\.de/ + to + https://$1.uni-mainz.de/ + + securecookie + + host + ^(?:ilias|opac(?:-test)?\.ub|pica[78]\.ub)\.uni-mainz\.de$ + name + .+ + + target + + host + *.uni-mainz.de + + + + University of Manchester (partial) + + ruleset + + name + University of Manchester (partial) + rule + + + from + ^http://(?:www\.)?manchester\.ac\.uk/([\w-]+\.(?:jpg|JPG)$|favicon\.ico|media(?:library)?/) + to + https://www.manchester.ac.uk/$1 + + + from + ^http://(assets|(?:cdt|staffnet|utopia|www)\.cs|login)\.manchester\.ac\.uk/ + to + https://$1.manchester.ac.uk/ + + + securecookie + + host + ^login\.manchester\.ac\.uk$ + name + .+ + + target + + + host + manchester.ac.uk + + + host + *.manchester.ac.uk + + + + + University of Manitoba (partial) + + ruleset + + name + University of Manitoba (partial) + platform + mixedcontent + rule + + from + ^http://((?:aurora|(?:angel|baninb1|home|webapps|webware|wiki)\.cc|iridium|jump|myuminfo|www)\.)?umanitoba\.ca/ + to + https://$1umanitoba.ca/ + + target + + + host + umanitoba.ca + + + host + *.umanitoba.ca + + + host + *.cc.umanitoba.ca + + + + + University of Mary Washington (partial) + + ruleset + + name + University of Mary Washington (partial) + rule + + from + ^http://((?:academics|adminfinance|admissions|advancement|athletics|business|cas|dahlgren|diversity|eaglenet|economicdevelopment|(?:educ|found)ation|giving|libraries|president|provost|publications|research|sacs|students|sustainability|technology|www)\.)?umw\.edu/ + to + https://$1umw.edu/ + + securecookie + + host + ^.*\.umw\.edu$ + name + .* + + target + + + host + umw.edu + + + host + *.umw.edu + + + + + University of Maryland (partial) + + ruleset + + exclusion + + + pattern + ^http://helpdesk\.umd\.edu/+(?!favicon\.ico|images/|web\.support/) + + + pattern + ^http://www\.provost\.umd\.edu/+(?!favicon\.ico|images/|includes/|masthead\.jpg|photos/|resources/) + + + pattern + ^http://www\.lib\.umd\.edu/+(?!binaries/|css/|images/) + + + pattern + ^http://terpconnect\.umd\.edu/(?!~) + + + name + University of Maryland (partial) + rule + + + from + ^http://(www\.)((?:arch|eng|helpdesk|glue|inform|irpa|it|itsc|lib|oit|provost|umdrightnow)\.)?umd\.edu/ + to + https://$1$2umd.edu/ + + + from + ^http://(carma\.astro|catalog|cgi|aeon\.lib|login|ntst|researchport|terpconnect)\.umd\.edu/ + to + https://$1.umd.edu/ + + + from + ^http://kb\.umd\.edu/+(\d+)(?:\?.*)? + to + https://www.itsc.umd.edu/MRcgi/MRTicketPage.pl?USER=&MRP=0&PROJECTID=1&MR=$1 + + + securecookie + + host + ^(?:www\.)?umd\.edu$ + name + .+ + + target + + + host + umd.edu + + + host + *.umd.edu + + + + + University of Massachusetts Amherst (partial) + + ruleset + + name + University of Massachusetts Amherst (partial) + rule + + + from + ^http://umassathletics\.cstv\.com/ + to + https://umassathletics.cstv.com/ + + + from + ^http://((?:blogs|moodle|(?:(?:hds|hds05|spark|udrive|umail|umweb-3|www)\.)?oit|(?:webapp|www)\.spire|umii|www\.umii)\.)?umass\.edu/ + to + https://$1umass.edu/ + + + from + ^http://(www\.)?umassulearn\.net/ + to + https://$1umassulearn.net/ + + + securecookie + + + host + ^.*\.umass\.edu$ + name + .* + + + host + ^www\.umassulearn\.net$ + name + .* + + + target + + + host + umassathletics.cstv.com + + + host + umass.edu + + + host + *.umass.edu + + + host + *.oit.umass.edu + + + host + *.spire.umass.edu + + + host + *.umii.umass.edu + + + host + umassulearn.net + + + host + www.umassulearn.net + + + + + University of Michigan (partial) + + ruleset + + name + University of Michigan (partial) + rule + + + from + ^http://(((?:web\.|www\.)?eecs|eram|eresearch|erpm|friend|(?:www\.)?law|webapps\.lsa|servicerequest|wolverineaccess|www)\.)?umich\.edu/ + to + https://$1umich.edu/ + + + from + ^http://(?:www\.)?cse\.umich\.edu/ + to + https://www.cse.umich.edu/ + + + from + ^http://(?:www\.)?(ctools|lsa|weblogin)\.umich\.edu/ + to + https://$1.umich.edu/ + + + securecookie + + host + ^.+\.umich\.edu$ + name + .+ + + target + + + host + umich.edu + + + host + *.umich.edu + + + + + University of Minnesota (partial) + + ruleset + + name + University of Minnesota (partial) + rule + + + from + ^http://(shadow\.cs|hhh|www\.hhh|mathinstitutes\.ima|www1|onestop)\.umn\.edu/ + to + https://$1.umn.edu/ + + + from + ^http://(?:www\.)?dtc\.umn\.edu/ + to + https://www.dtc.umn.edu/ + + + securecookie + + host + ^www\.dtc\.umn\.edu$ + name + .+ + + target + + host + *.umn.edu + + + + University of North Carolina at Greensboro (partial) + + ruleset + + name + University of North Carolina at Greensboro (partial) + rule + + + from + ^http://(?:www\.)?uncg\.edu/ + to + https://www.uncg.edu/ + + + from + ^http://(alumni|baeservices|banweb|blackboard|communityengagement|fsv|giveto|hrl|its|library|newsandfeatures|oedi|online|provost|research|ure|web)\.uncg\.edu/ + to + https://$1.uncg.edu/ + + + from + ^http://inspirechange\.uncg\.edu/(\?.*)?$ + to + https://ure.uncg.edu/features/$1 + + + securecookie + + host + ^(?:baeservices|banweb|blackboard|communityengagement|\.library|newsandfeatures|provost|web)\.uncg\.edu$ + name + .+ + + target + + + host + uncg.edu + + + host + *.uncg.edu + + + + + University of North Texas (partial) + + ruleset + + name + University of North Texas (partial) + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?((?:ci|coe|hsc|library)\.)?unt\.edu/ + to + https://www.$1unt.edu/ + + + from + ^https?://(?:www\.)?((?:studyabroad\.admin)|afrotc|ally|ams|announce|annualreport|anthropology|c3b|calendar|call|careercenter|chile|citc|clear|compliance|conduct|coop|copyright|courses|dcbest|deanofstudents|development|dining|discoverypark|dos|dplife|eagleconnect|ecampus(?:support)?|edo|ee|efec|emds|emergency|endow|eng|engineering|essc|etec|facilities|factbook|financialaid|forms|gallery|gartner|greeklife|healthcenter|home|honors|hr|(?:cme|profile)\.hsc|iarta|ieli|imaging|info|inhouse|international|internships|inthenews|itunes|jaguarconnect|faculty(?:jobs)?|jazz|jobs|journalism|kddi|larc|learningcenter|(?:irservices|iii)\.library|(?:(?:classes|moodle)\.)?lt|messaging|moneymanagement|mtse|music|my|my[fl]s|northtexan|orgs|osprey|paccar|pacs|policy|pps|reac|records|recsports|research|reslife|rms|rtvf|security|smartenergy|spanishmedia|sportpsych|staffcouncil|src|student(?:activities|affairs|legal)|surfaces|sustainable|tams|tara|tcet|telecom|texasbest|thecblor|tours|transfer(?:institute|now)|transition|trio|tsgs|txcdk|union|unt(?:onthesquare|preview|system)|veteranscenter|virtualtour|volunteer|vpaa|vpsd|vtl|web[23]|webadmin|wiki|psychology)\.unt\.edu/ + to + https://$1.unt.edu/ + + + from + ^https?://(?:www\.)?unt\.edu/policy/UNT_Policy/volume\d/(\d+)_(\d+)\.html$ + to + https://policy.unt.edu/policy/$1-$2 + + + from + ^https?://(?:www\.)?unt\.edu/policy/UNT_Policy/volume\d/(\d+)_(\d+)_(\d+)\.html$ + to + https://policy.unt.edu/policy/$1-$2-$3 + + + target + + + host + unt.edu + + + host + *.unt.edu + + + + + University of Notre Dame (partial) + + ruleset + + exclusion + + + pattern + ^http://riskmgt\.nd\.ed/+(?!favicon\.ico|images/|stylesheets/) + + + pattern + ^http://calendar\.nd\.edu/+(?!(?:[\w.]+/)?themes/) + + + pattern + ^http://(?:www\.)?gsu\.nd\.edu/+(?!assets/|favicon\.ico|images/|stylesheets/) + + + pattern + ^http://performingarts\.nd\.edu/+(?!css/|favicon\.ico|images/) + + + pattern + ^http://policy\.nd\.edu/+(?!assets/|favicon\.ico) + + + name + University of Notre Dame (partial) + rule + + + from + ^http://((?:accounts|acms|admissions|africana|al|ame|annualreport2013|applymsba|applymsf|apps|architect|architecture|assyst|auxiliaryoperations|biology|blogs|budget|buildingcommunities|business|webapp\.business|buy|calendar|campus(?:mail|ministry|safety)|careercenter|cbe|inside-p\.cc|ccf|ccsp|cee|ceees|cemetery|centerformath|centerforsocialconcerns|centralreceiving|chemistry|classics|commencement|communitystandards|conductor|continuousimprovement|controller|creativecomputing|creekhouse|creo|cse|cslc|csrs?|disabilityservices|diversity|donate|dulac|emergency|endeavor|energy|engineering|english|equity|facultyhandbook|fieldhousemall|finance|financialaid|flowershop|food|fsntserv\.foodserv|fys|generalservices|globalhealth|gradlife|graduateschool|green|help|homeunderthedome|honorcode|housing|hr|greentree\.hr|iei|inside|international|investment|irish(?:1card|language|online|studies)|www\.irsurvey|issa|jobs|kaneb|kellogg|lafortune|(?:encore|innopac)\.law|learning|least|(?:alephprod|asset|bic|chemistry|discover|ejl|engineering|eresources|factotum|guides|link|m|onesearch|radlab|xerxes)\.library|listserv|login|magazine|marcomm|marketplace|medieval|msba|msf|msps|nanovic|ndfd|ndsp|news|newsinfo|och|offcampus|oit|oithelp|old2gold|osa|ospir|ott|patentlaw|performingarts|physics|playlikeachampion|policy|politicalscience|postdocs|precollege|preprofessional|president|prism|realestate|recsports|recycling|remix|renovare|research|riskmanagement|riskmgt|sac|sakai|sakailogin|sao|science|search|shakespeare|shop|sniteartmuseum|socialconcerns|sociology|sp|solution|sri|stemeducation|step|stepancenter|strategicplan|studentaccounts|studentaffairs|studentemployment|supporting|surplus|transportation|travel|treasury|trio|ucc?|uhs|utilities|was|webfile|weddingplanner|wellness|wiki|wireless|www3?|youthsports)\.)?nd\.edu/ + to + https://$1nd.edu/ + + + from + ^http://(?:cancerresearch|harpercancer)\.nd\.edu/ + to + https://harpercancer.nd.edu/ + + + from + ^http://(?:communityrelations|publicaffairs)\.nd\.edu/ + to + https://publicaffairs.nd.edu/ + + + from + ^http://(?:www\.)?(corecurriculum|dante|gsu|latinostudies|law|news|opac|provost|registrar|today)\.nd\.edu/ + to + https://$1.nd.edu/ + + + from + ^http://(?:www\.)?ee\.nd\.edu/ + to + https://www.ee.nd.edu/ + + + from + ^http://(?:enlighten|forum2008)\.nd\.edu/ + to + https://forum2008.nd.edu/ + + + from + ^http://givingtond\.nd\.edu/.* + to + https://supporting.nd.edu/ + + + from + ^http://gmail\.nd\.edu/.* + to + https://mail.google.com/a/nd.edu + + + from + ^http://(www\.)?(library)\.nd\.edu/ + to + https://$1$2.nd.edu/ + + + from + ^http://orlh\.nd\.edu/ + to + https://housing.nd.edu/ + + + from + ^http://www\.rarebooks\.nd\.edu/+(?:$|\?.*) + to + https://www.library.nd.edu/rarebooks/index.shtml + + + from + ^http://www\.undpress\.nd\.edu/+(?:$|\?.*) + to + https://www3.undpress.nd.edu//index.php + + + securecookie + + host + ^(?:ame|applymsba|applymsf|apps|EkAnalytics|business|webapp\.business|cbe|inside-p\.cc|ceees|cse|www\.ee|engineering|grc|www\.irsurvey|law|(?:encore|innopac)?\.law|least|library|(?:ejl|guides|onesearch|xerxes)\.library|applymsba|applymsf|was|wireless)\.nd\.edu$ + name + .+ + + target + + + host + nd.edu + + + host + *.nd.edu + + + + + University of Oslo + + ruleset + + name + University of Oslo + rule + + + from + ^http://((?:(?:www\.)?(?:apollon|mn|ub)|heim\.ifi|studweb|www)\.)?uio\.no/ + to + https://$1uio.no/ + + + from + ^http://(?:www\.)?ifi\.uio\.no/(?=$|\?.*) + to + https://mn.uio.no/ifi/ + + + from + ^http://(?:www\.)?ifi\.uio\.no/it/(?:$|hjemmeside\.html$|(\?.*)) + to + https://mn.uio.no/ifi/tjenester/it/$1 + + + from + ^http://(?:www\.)?matnat\.uio\.no/ + to + https://www.mn.uio.no/ + + + target + + + host + uio.no + + + host + *.uio.no + + + + + University of Ottawa (partial) + + ruleset + + name + University of Ottawa (partial) + rule + + from + ^http://web5\.uottawa\.ca/ + to + https://web5.uottawa.ca/ + + target + + host + web5.uottawa.ca + + + + University of Oxford (partial) + + ruleset + + name + University of Oxford (partial) + rule + + + from + ^http://(www\.admin|www\.cs|weblearn)\.ox\.ac\.uk/ + to + https://$1.ox.ac.uk/ + + + from + ^http://(?:www\.)?biop\.ox\.ac\.uk/coot + to + https://www2.mrc-lmb.cam.ac.uk/Personal/pemsley/coot + + + target + + host + *.ox.ac.uk + + + + University of Passau (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?(?:rz\.)?uni-passau\.de/(?:$|\?) + + name + University of Passau (partial) + rule + + + from + ^http://(?:www\.)?(rz\.)?uni-passau\.de/ + to + https://www.$1uni-passau.de/ + + + from + ^http://(blog|uniblog\.rzblogs)\.uni-passau\.de/ + to + https://$1.uni-passau.de/ + + + from + ^http://(?:www\.)?students\.uni-passau\.de/(\?.*)?$ + to + https:///www.uni-passau.de/hochschulgruppen.html$1 + + + securecookie + + host + ^www\.(?:rz\.)?uni-passau\.de$ + name + ^fe_typo_user$ + + target + + + host + uni-passau.de + + + host + *.uni-passau.de + + + + + University of Pennsylvania (partial) + + ruleset + + exclusion + + pattern + ^http://www\.library\.upenn\.edu/(?!images/|styles/) + + name + University of Pennsylvania (partial) + rule + + from + ^http://((?:www\.)?cis|www\.college|medley\.isc-seo|www\.library|weblogin\.pennkey|(?:fission|www)\.sas)\.upenn\.edu/ + to + https://$1.upenn.edu/ + + securecookie + + host + ^(?:weblogin\.pennkey|\.www\.sas)\.upenn\.edu$ + name + .+ + + target + + host + *.upenn.edu + + + + University of Pittsburgh (partial) + + ruleset + + name + University of Pittsburgh (partial) + rule + + + from + ^http://((?:(?:people\.|web\.|www\.)?cs|(?:www\.)?my|pre|www)\.)?pitt\.edu/ + to + https://$1pitt.edu/ + + + from + ^http://(?:www\.)?accounts\.pitt\.edu/ + to + https://accounts.pitt.edu/ + + + securecookie + + host + ^(?:(?:www\.)?(?:cs|my)|web\.cs)\.pitt\.edu$ + name + .+ + + target + + + host + pitt.edu + + + host + *.pitt.edu + + + + + University of Potsdam (partial) + + ruleset + + exclusion + + pattern + ^http://www\.jura\.uni-potsdam\.de/(?!favicon\.ico|_layout/|_medien/) + + name + University of Potsdam (partial) + rule + + + from + ^http://(?:www\.)?(hpi\.)?uni-potsdam\.de/ + to + https://www.$1uni-potsdam.de/ + + + from + ^http://jura\.uni-potsdam\.de/ + to + https://www.uni-potsdam.de/ + + + from + ^http://(www\.jura|(?:www\.)?pep|puls|webmail)\.uni-potsdam\.de/ + to + https://$1.uni-potsdam.de/ + + + securecookie + + host + ^(?:www\.hpi|(?:www\.)?pep|puls|\.webmail)\.uni-potsdam\.de$ + name + .+ + + target + + + host + uni-potsdam.de + + + host + *.uni-potsdam.de + + + + + University of Puerto Rico (partial) + + ruleset + + name + University of Puerto Rico (partial) + rule + + + from + ^http://(www\.)?laeditorialupr\.com/ + to + https://$1laeditorialupr.com/ + + + from + ^http://(fondodotal|patsiprod)\.upr\.edu/ + to + https://$1.upr.edu/ + + + securecookie + + + host + ^(?:www\.)?laeditorialupr\.com$ + name + .+ + + + host + ^.+\.upr\.edu$ + name + .+ + + + target + + + host + laeditorialupr.com + + + host + www.laeditorialupr.com + + + host + *.upr.edu + + + + + University of Reading + + ruleset + + name + University of Reading + rule + + from + ^http://(?:www\.)?reading\.ac\.uk/ + to + https://www.reading.ac.uk/ + + securecookie + + host + ^www\.reading\.ac\.uk$ + name + .+ + + target + + + host + reading.ac.uk + + + host + www.reading.ac.uk + + + + + University of Rochester + + ruleset + + name + University of Rochester + rule + + from + ^http://(www\.)?rochester\.edu/ + to + https://$1rochester.edu/ + + target + + + host + rochester.edu + + + host + www.rochester.edu + + + + + University of Rostock (partial) + + ruleset + + name + University of Rostock (partial) + rule + + from + ^http://(autodiscover|email|lsf|mail|aktivierung\.rz|passwd\.rz|pwd\.rz|studip|webapp)\.uni-rostock\.de/ + to + https://$1.uni-rostock.de/ + + securecookie + + host + ^(?:email|lsf|studip|webapp)\.uni-rostock\.de$ + name + .+ + + target + + host + *.uni-rostock.de + + + + University of Salford (partial) + + ruleset + + name + University of Salford (partial) + rule + + from + ^http://(usir|webhost|www)\.salford\.ac\.uk/ + to + https://$1.salford.ac.uk/ + + securecookie + + host + ^\.www\.salford\.ac\.uk$ + name + .+ + + target + + + host + *.salford.ac.uk + + + host + *.www.salford.ac.uk + + + + + University of Saskatchewan (partial) + + ruleset + + name + University of Saskatchewan (partial) + rule + + from + ^http://(?:www\.)?usask\.ca/ + to + https://www.usask.ca/ + + target + + + host + usask.ca + + + host + www.usask.ca + + + + + University of Sheffield (partial) + + ruleset + + name + University of Sheffield (partial) + rule + + + from + ^http://((?:guide\.dcs|onlineshop|portal|www)\.)?shef\.ac\.uk/ + to + https://$1shef.ac.uk/ + + + from + ^http://(www\.)?sheffield\.ac\.uk/ + to + https://$1sheffield.ac.uk/ + + + from + ^http://portal\.sheffield\.ac\.uk/ + to + https://portal.shef.ac.uk/ + + + securecookie + + host + ^(?:onlineshop|portal)\.shef\.ac\.uk$ + name + .+ + + target + + + host + shef.ac.uk + + + host + *.shef.ac.uk + + + host + sheffield.ac.uk + + + host + *.sheffield.ac.uk + + + + + University of South Florida (partial) + + ruleset + + name + University of South Florida (partial) + rule + + + from + ^https?://(?:www\.)?lib\.usf\.edu/ + to + https://www.lib.usf.edu/ + + + from + ^http://(my|mysites|netid|usfsts|usfweb2|webauth)\.usf\.edu/ + to + https://$1.usf.edu/ + + + from + ^https?://(?:www\.)?stpete\.usf\.edu/ + to + https://www.usfsp.edu/ + + + from + ^http://((?:dev|vpn|www)\.)?usfsp\.edu/ + to + https://$1usfsp.edu/ + + + from + ^https?://sharemypc\.(?:stpete\.usf|usfsp).edu/ + to + https://sharemypc.stpete.usf.edu/ + + + securecookie + + host + ^(\w.*\.)?usf(sp)?\.edu$ + name + .* + + target + + + host + *.usf.edu + + + host + *.stpete.usf.edu + + + host + usfsp.edu + + + host + *.usfsp.edu + + + + + University of Southampton (partial) + + ruleset + + name + University of Southampton (partial) + rule + + + from + ^http://www\.noc\.ac\.uk/ + to + https://noc.ac.uk/ + + + from + ^http://noc\.ac\.uk/(f|sites)/ + to + https://noc.ac.uk/$1/ + + + from + ^http://(?:www\.)?soton\.ac\.uk/ + to + https://www.soton.ac.uk/ + + + from + ^http://secure\.ecs\.soton\.ac\.uk/ + to + https://secure.ecs.soton.ac.uk/ + + + from + ^http://(www\.)?jobs\.soton\.ac\.uk/ + to + https://$1jobs.soton.ac.uk/ + + + from + ^http://(?:www\.)?noc\.soton\.ac\.uk/ + to + https://www.noc.soton.ac.uk/ + + + from + ^http://(?:www\.)?sussed\.soton\.ac\.uk/ + to + https://sussed.soton.ac.uk/ + + + from + ^http://www\.southampton\.ac\.uk(?:\:443)?/ + to + https://www.southampton.ac.uk/ + + + securecookie + + + host + ^(?:.*\.)?soton\.ac\.uk$ + name + .+ + + + host + ^www\.southampton\.ac\.uk$ + name + .+ + + + target + + + host + noc.ac.uk + + + host + *.noc.ac.uk + + + host + soton.ac.uk + + + host + *.soton.ac.uk + + + host + www.*.soton.ac.uk + + + host + www.southampton.ac.uk + + + + + University of Southern California (partial) + + ruleset + + name + University of Southern California (partial) + rule + + + from + ^https?://(?:www\.)?usc\.edu/ + to + https://www.usc.edu/ + + + from + ^https?://(?:www\.)?dornsife\.usc\.edu/ + to + https://dornsife.usc.edu/ + + + from + ^http://(dornsifecms|news|vsoeapp1\.vsoe)\.usc\.edu/ + to + https://$1.usc.edu/ + + + securecookie + + host + ^.*\.usc\.edu$ + name + .* + + target + + + host + usc.edu + + + host + *.usc.edu + + + host + www.dornsife.usc.edu + + + + + University of Southern Indiana (partial) + + ruleset + + name + University of Southern Indiana (partial) + rule + + + from + ^http://(?:www\.)?usi\.edu/ + to + https://www.usi.edu/ + + + from + ^https://usi\.edu/ + to + https://www.usi.edu/ + + + target + + + host + usi.edu + + + host + www.usi.edu + + + + + University of Strasbourg (partial) + + ruleset + + exclusion + + + pattern + ^http://engees\.unistra\.fr/+(?!favicon\.ico|site/(?:favicon\.ico|fileadmin/|typo3temp/|uploads/)) + + + pattern + ^http://typodun\.unistra\.fr/+(?!fileadmin/|typo3conf/) + + + pattern + ^http://www\.unistra\.fr/+plans(?!/commun/|styles/) + + + name + University of Strasbourg (partial) + rule + + + from + ^http://(?:www\.)?unistra\.fr/ + to + https://www.unistra.fr/ + + + from + ^http://(agenda|alumni|engees|guide-etudiant|icube|icube-intranet|inscriptions|mathinfo|physique-ingenierie|reseau-alumni|services-numeriques)\.unistra\.fr/ + to + https://$1.unistra.fr/ + + + from + ^http://lsiit-cnrs\.unistra\.fr/+ + to + https://icube.unistra.fr/ + + + from + ^http://icube-intranet\.u-strasbg\.fr/ + to + https://icube-intranet.unistra.fr/ + + + from + ^http://typodun30\.u-strasbg\.fr/ + to + https://typodun2012.unistra.fr/ + + + securecookie + + host + ^(?:guide-etudiant|icube|inscriptions|mathinfo|reseau-alumni|services-numeriques|typodun2012|www)\.unistra\.fr$ + name + .+ + + target + + + host + unistra.fr + + + host + *.unistra.fr + + + host + *.u-strasbg.fr + + + + + University of Strathclyde (partial) + + ruleset + + name + University of Strathclyde (partial) + rule + + from + ^http://www\.strath\.ac\.uk/ + to + https://www.strath.ac.uk/ + + target + + host + www.strath.ac.uk + + + + University of Stuttgart (partial) + + ruleset + + name + University of Stuttgart (partial) + rule + + + from + ^http://(cert\.)?uni-stuttgart\.de/ + to + https://$1uni-stuttgart.de/ + + + from + ^http://www\.uni-stuttgart\.de/(favicon\.ico|piwik/|res/) + to + https://www.uni-stuttgart.de/$1 + + + from + ^http://www\.rus\.uni-stuttgart\.de/(css|img)/ + to + https://www.rus.uni-stuttgart.de/$1/ + + + securecookie + + host + ^\.uni-stuttgart\.de$ + name + ^BALANCEID$ + + target + + + host + uni-stuttgart.de + + + host + *.uni-stuttgart.de + + + host + www.rus.uni-stuttgart.de + + + + + University of Tampa + + ruleset + + name + University of Tampa + rule + + + from + ^https?://(?:www\.)?ut\.edu/ + to + https://www.ut.edu/ + + + from + ^http://(jobs|sfs|spartanweb)\.ut\.edu/ + to + https://$1.ut.edu/ + + + securecookie + + host + ^.+\.ut\.edu$ + name + .+ + + target + + + host + ut.edu + + + host + *.ut.edu + + + + + University of Tennessee System (partial) + + ruleset + + name + University of Tennessee System (partial) + rule + + from + ^http://(andi|autodiscover|irisweb|its|my|security|utap1)\.tennessee\.edu/ + to + https://$1.tennessee.edu/ + + securecookie + + host + ^(?:autodiscover|irisweb|my)\.tennessee\.edu$ + name + .+ + + target + + host + *.tennessee.edu + + + + University of Tennessee, Knoxville + + ruleset + + name + University of Tennessee, Knoxville + rule + + from + ^http://((?:autodiscover|webapps\.dii|icl\.eecs|(?:www\.)?directory|ds|(?:www\.)?eecs|help|(?:www\.)?lib|listserv|myutk|online|oit2?|remedy|secure|tiny|tmail|volmail|www)\.)?utk\.edu/ + to + https://$1utk.edu/ + + securecookie + + host + ^(?:autodiscover|(?:icl|www)\.cs|capricorn\.dii|webapps\.dii|(?:www\.)?directory|ds|myutk|oit2|tiny|tmail)\.utk\.edu$ + name + .+ + + target + + + host + utk.edu + + + host + *.utk.edu + + + + + University of Texas Southwestern Medical Center (partial) + + ruleset + + name + University of Texas Southwestern Medical Center (partial) + rule + + + from + ^http://(ais|myutsouthwestern)\.swmed\.edu/ + to + https://$1.swmed.edu/ + + + from + ^https?://(?:www\.)?utsouthwestern\.edu/intranet(?:$|/.*) + to + https://myutsouthwestern.swmed.edu/ + + + from + ^http://(mutagenetix|www4)\.utsouthwestern\.edu/ + to + https://$1.utsouthwestern.edu/ + + + securecookie + + + host + ^.+\.swmed\.edu$ + name + .+ + + + host + ^mutagenetix\.utsouthwestern\.edu$ + name + .+ + + + target + + + host + *.swmed.edu + + + host + utsouthwestern.edu + + + host + *.utsouthwestern.edu + + + + + University of Texas System + + ruleset + + name + University of Texas System + rule + + from + ^http://(data\.|outlook\.|www\.)?utsystem\.edu/ + to + https://$1utsystem.edu/ + + securecookie + + host + ^(?:.*\.)?utsystem\.edu$ + name + .+ + + target + + + host + utsystem.edu + + + host + *.utsystem.edu + + + + + University of Texas at Austin (partial) + + ruleset + + name + University of Texas at Austin (partial) + rule + + + from + ^http://((?:(?:autodiscover|wmail|ww4)\.austin|(?:www\.)?(?:biosci|che|cm|cs|edb|energy|engr|finearts|ig|ischool|laits|landmarks|mccombs|ph|soa)|blogs|(?:advisorycouncil|elements|vhost)\.cns|courses|steelresearch\.geo|giving|ideas|\w+\.ig|[\w-]+\.its|(?:apps|edger)\.jsg|knightcenter|sites\.la|\w+\.lib|login|m|mail|registrar|rtf|security|smartvoice|(?:(?:m|portal|team|www)\.)?tacc|techstaff|utdirect|utmail|get\.utmail|webmail|webspace|wikis|www|auth\.www)\.)?utexas\.edu/ + to + https://$1utexas.edu/ + + + from + ^http://(?:www\.)?advertising\.utexas\.edu/(modul|sit)es/ + to + https://advertising.utexas.edu/$1es/ + + + from + ^http://(www\.)?(bealonghorn|commstudies|communication|csd|journalism)\.utexas\.edu/(modul|sit)es/ + to + https://$1$2.utexas.edu/$3es/ + + + from + ^https?://directory\.utexas\.edu/(?:.*) + to + https://www.utexas.edu/directory/ + + + from + ^https?://(?:www\.)?la\.utexas\.edu/(?:.*) + to + https://www.utexas.edu/cola + + + from + ^http://lib\.utexas\.edu/ + to + https://www.lib.utexas.edu/ + + + from + ^https?://(?:www\.)?(jsg|ma)\.utexas\.edu/ + to + https://www.$1.utexas.edu/ + + + from + ^https?://(?:www\.)?music\.utexas\.edu/ + to + https://ww4.austin.utexas.edu/ + + + securecookie + + host + ^.*\.utexas\.edu$ + name + .* + + target + + + host + utexas.edu + + + host + *.utexas.edu + + + + + University of Texas at Dallas (partial) + + ruleset + + name + University of Texas at Dallas (partial) + rule + + + from + ^http://(?:www\.)?utdallas\.edu/ + to + https://www.utdallas.edu/ + + + from + ^http://(autodiscover|coursebook|dali|dox|eforms|elearning(?:pilot|staging|test)?|eval|galaxy|go|goto|input|oue|pages|policy|provost|ptg|qep|rodin|sis-portal-prod|v|webmail)\.utdallas\.edu/ + to + https://$1.utdallas.edu/ + + + from + ^http://sacs(?:coc)?\.utdallas\.edu/ + to + https://sacs.utdallas.edu/ + + + securecookie + + host + ^(?:(?:autodiscover|elearning(?:pilot|staging|test)?|sis-portal-prod|webmail|www)\.)?utdallas\.edu$ + name + .+ + + target + + + host + utdallas.edu + + + host + *.utdallas.edu + + + + + University of Toronto (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?utoronto\.ca/(?!favicon\.ico|__shared/) + + + pattern + ^http://(?:www\.)?news\.utoronto\.ca/(?!sites/) + + + pattern + ^http://campusroomfinder\.studentlife\.utoronto\.ca/(?![cC]ontent/|Login|[sS]cripts/) + + + name + University of Toronto (partial) + rule + + + from + ^http://((?:2learn|alert|(?:www\.)?(?:bluebook|careers|cns|events|lamp2?|news|oise|portal|studentlife|ulife|utorid|utsc)|connect|www\.employers\.careers|www\.cs|support\.icicle|main\.its|(?:focus|link|login|myaccount|payfines|tspace)\.library|m\.lms|cus\.oise|(?:sws|www)\.rosi|(?:blogs|campusroomfinder)\.studentlife|www\.utm|(?:ctl|intranet|joomla|webapps|webmail)\.utsc|voting|weblogin|webmail|www)\.)?utoronto\.ca/ + to + https://$1utoronto.ca/ + + + from + ^https?://inbox\.alumni\.utoronto\.ca/(?:.*) + to + https://mail.google.com/a/alumni.utoronto.ca + + + from + ^https?://(?:www\.)?donate\.utoronto\.ca/ + to + https://donate.utoronto.ca/ + + + from + ^https?://www\.erin\.utoronto\.ca/ + to + https://www.utm.utoronto.ca/ + + + from + ^https?://(answer|guide)s\.library\.utoronto\.ca/(css\d*|data|js)/ + to + https://lib$1s.com/$2/ + + + from + ^https?://(?:www\.)?sa\.utoronto\.ca/ + to + https://www.studentlife.utoronto.ca/ + + + from + ^http://utcc\.utoronto\.ca/ + to + https://cns.utoronto.ca/ + + + from + ^https?://(?:www\.)?library\.utm\.utoronto\.ca/ + to + https://library.utm.utoronto.ca/ + + + from + ^https?://squirrelmail\.utsc\.utoronto\.ca/ + to + https://webmail.utsc.utoronto.ca/ + + + securecookie + + + host + ^(?!\.library\.|campusroomfinder\.studentlife\.).+\.utoronto\.ca$ + name + .+ + + + host + ^\.library\.utoronto\.ca$ + name + ^__utm\w$ + + + target + + + host + utoronto.ca + + + host + *.utoronto.ca + + + + + University of Tübingen (partial) + + ruleset + + name + University of Tübingen (partial) + rule + + + from + ^http://(?:zdv\.|www\.)?uni-tuebingen\.de/ + to + https://www.uni-tuebingen.de/ + + + from + ^http://(campus\.verwaltung|epv-welt)\.uni-tuebingen\.de/ + to + https://$1.uni-tuebingen.de/ + + + securecookie + + + host + ^\.uni-tuebingen\.de$ + name + ^fe_typo_user$ + + + host + ^epv-welt\.uni-tuebingen\.de$ + name + .+ + + + target + + + host + uni-tuebingen.de + + + host + *.uni-tuebingen.de + + + + + University of Utah (partial) + + ruleset + + name + University of Utah (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?dailyutahchronicle\.com/ + to + https://$1dailyutahchronicle.com/ + + + from + ^http://(www\.)?uofulaw\.org/ + to + https://$1uofulaw.org/ + + + from + ^http://(fbs\.admin|muss\.alumni|www-misc\.chpc|embed\.cs|(www\.)?csbs|go|(www\.)?gradschool|www\.umail|unid)\.utah\.edu/ + to + https://$1.utah.edu/ + + + from + ^http://(?:www\.)?(cs|alumni)\.utah\.edu/ + to + https://www.$1.utah.edu/ + + + from + ^http://(?:www\.)?law\.utah\.edu/ + to + https://uofulaw.org/ + + + securecookie + + + host + ^(.*\.)?dailyutahchronicle\.com$ + name + .* + + + host + ^(.*\.)?utah\.edu$ + name + .* + + + target + + + host + dailyutahchronicle.com + + + host + www.dailyutahchronicle.com + + + host + uofulaw.org + + + host + www.uofulaw.org + + + host + fbs.admin.utah.edu + + + host + alumni.utah.edu + + + host + muss.alumni.utah.edu + + + host + www.alumni.utah.edu + + + host + cs.utah.edu + + + host + www.cs.utah.edu + + + host + embed.cs.utah.edu + + + host + csbs.utah.edu + + + host + support.csbs.utah.edu + + + host + www.csbs.utah.edu + + + host + go.utah.edu + + + host + gradschool.utah.edu + + + host + www.gradschool.utah.edu + + + host + law.utah.edu + + + host + www.law.utah.edu + + + host + www.umail.utah.edu + + + host + unid.utah.edu + + + + + University of Virginia (partial) + + ruleset + + name + University of Virginia (partial) + rule + + + from + ^http://(sisuva\.admin|www\.cs|mail\.eservices|gwis|(?:collab|eventcal)\.itc|www\.its|lists|www\.mail|netbadge|news|admin\.people|rabi\.phys|standard\.pki|uvaemergency)\.virginia\.edu/ + to + https://$1.virginia.edu/ + + + from + ^http://(?:www\.)?itc\.virginia\.edu/ + to + https://www.itc.virginia.edu/ + + + from + ^http://its\.virginia\.edu/(?=css/|images/) + to + https://www.its.virginia.edu/ + + + securecookie + + host + ^(?:sisuva\.admin|collab\.itc)\.virginia\.edu$ + name + .+ + + target + + host + *.virginia.edu + + + + University of Waikato (partial) + + ruleset + + name + University of Waikato (partial) + rule + + + from + ^https?://(?:www\.)?waikato\.ac\.nz/ + to + https://www.waikato.ac.nz/ + + + from + ^http://(cookie|tools\.its|mngt|www\.mngt)\.waikato\.ac\.nz/ + to + https://$1.waikato.ac.nz/ + + + from + ^http://research\.waikato\.ac\.nz/($|\?) + to + https://www.waikato.ac.nz/research/$1 + + + securecookie + + host + ^.+\.waikato\.ac\.nz$ + name + .+ + + target + + + host + waikato.ac.nz + + + host + *.waikato.ac.nz + + + host + tools.its.waikato.ac.nz + + + host + www.mngt.waikato.ac.nz + + + + + University of Warwick (partial) + + ruleset + + exclusion + + pattern + ^http://www2\.warwick\.ac\.uk/(?!.+\.(?:gif|jpg|png)|brands/|static_war/) + + name + University of Warwick (partial) + rule + + from + ^http://((?:go|idp|onlinepayment|websignon|www2?)\.)?warwick\.ac\.uk/ + to + https://$1warwick.ac.uk/ + + securecookie + + host + ^(?:idp|onlinepayment)\.warwick\.ac\.uk$ + name + .+ + + target + + + host + warwick.ac.uk + + + host + *.warwick.ac.uk + + + + + University of Washington (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?washington\.edu/news/(?:\d{4}/(?:\d\d/(?:\d\d/(?:[\w-]+/)?)?)?)?(?:\?.*)?$ + + + pattern + ^http://digital\.lib\.washington\.edu/findingaids/ + + + name + University of Washington (partial) + rule + + + from + ^http://(blogs\.|www\.(?:tacoma\.)?)?uw\.edu/ + to + https://$1uw.edu/ + + + from + ^https?://tacoma\.uw\.edu/ + to + https://www.tacoma.uw.edu/ + + + from + ^http://((?:courses|(?:homes|idl|norfolk|sampa|sharemenot)\.cs|depts|dub|faculty|cloud\.ihme|digital\.lib|myuw|staff|www)\.)?washington\.edu/ + to + https://$1washington.edu/ + + + from + ^http://(?:www\.)?(cs|lib)\.washington\.edu/ + to + https://www.$1.washington.edu/ + + + securecookie + + + host + ^cloud\.ihme\.washington\.edu$ + name + .* + + + host + ^\.tacoma\.uw\.edu$ + name + .* + + + target + + + host + uw.edu + + + host + *.tacoma.uw.edu + + + host + *.uw.edu + + + host + washington.edu + + + host + cloud.ihme.washington.edu + + + host + www.lib.washington.edu + + + host + *.washington.edu + + + + + University of Waterloo (partial) + + ruleset + + name + University of Waterloo (partial) + rule + + + from + ^http://((?:cecspilot\.cecssys|csclub|(?:www\.)?cs|www)\.)?uwaterloo\.ca/ + to + https://$1uwaterloo.ca/ + + + from + ^http://campaign\.uwaterloo\.ca/(\?.*)?$ + to + https://uwaterloo.ca/support/$1 + + + from + ^http://cecs\.uwaterloo\.ca/.* + to + https://uwaterloo.ca/co-operative-education + + + from + ^http://development\.uwaterloo\.ca/[^\?]*(\?.*)? + to + https://uwaterloo.ca/support/$1 + + + from + ^http://info\.uwaterloo\.ca/(\?.*)?$ + to + https://uwaterloo.ca/central-stores/$1 + + + target + + + host + uwaterloo.ca + + + host + *.uwaterloo.ca + + + + + University of Western Australia (partial) + + ruleset + + name + University of Western Australia (partial) + rule + + from + ^http://static\.weboffice\.uwa\.edu\.au/ + to + https://static.weboffice.uwa.edu.au/ + + securecookie + + host + ^static\.weboffice\.uwa\.edu\.au$ + name + .* + + target + + host + static.weboffice.uwa.edu.au + + + + University of Wisconsin-Madison + + ruleset + + exclusion + + + pattern + ^http://pages\.cs\.wisc\.edu/+~ + + + pattern + ^http://(?:www\.)?library\.wisc\.edu/(?!css/|images/) + + + name + University of Wisconsin-Madison + rule + + from + ^http://((?:condor-wiki|htcondor-wiki|pages|research)\.cs|learnuw|(?:ecs\.|www\.)?library|login|my|mywebspace|wayf|wiscmail)\.wisc\.edu/ + to + https://$1.wisc.edu/ + + target + + + host + *.wisc.edu + + + host + *.library.wisc.edu + + + + + University of Wisconsin–Milwaukee (partial) + + ruleset + + name + University of Wisconsin–Milwaukee (partial) + rule + + + from + ^https?://www\.uwm\.edu/$ + to + https://www4.uwm.edu/ + + + from + ^http://einstein\.phys\.uwm\.edu/ + to + https://einstein.phys.uwm.edu/ + + + target + + + host + einstein.phys.uwm.edu + + + host + www.uwm.edu + + + host + www4.uwm.edu + + + + + University of Wollongong + + ruleset + + name + University of Wollongong + rule + + + from + ^http://(www\.)?uow\.edu\.au/ + to + https://www.uow.edu.au/ + + + from + ^http://(sols|unicentre|unishop|password|eis|ssl\.informatics)\.uow\.edu\.au/ + to + https://$1.uow.edu.au/ + + + from + ^http://(moodle|moodledev)\.uowplatform\.edu\.au/ + to + https://$1.uowplatform.edu.au/ + + + securecookie + + host + ^sols\.uow\.edu\.au$ + name + .+ + + target + + + host + uow.edu.au + + + host + *.uow.edu.au + + + host + *.uowplatform.edu.au + + + + + University of York + + ruleset + + name + University of York + rule + + from + ^http://www\.york\.ac\.uk/ + to + https://www.york.ac.uk/ + + target + + host + www.york.ac.uk + + + + Université catholique de Louvain + + ruleset + + name + Université catholique de Louvain + rule + + + from + ^http://listes-([123])\.sipr\.ucl\.ac\.be/ + to + https://listes-$1.sipr.ucl.ac.be/ + + + from + ^https?://(?:www\.)?uclouvain\.be/ + to + https://www.uclouvain.be/ + + + from + ^http://(mysqladm|perso|sites|tools|webhost-test)\.uclouvain\.be/ + to + https://$1.uclouvain.be/ + + + securecookie + + + host + ^listes-[123]\.sipr\.ucl\.ac\.be$ + name + .+ + + + host + ^(?:mysqladm|www)\.uclouvain\.be$ + name + .+ + + + target + + + host + *.sipr.ucl.ac.be + + + host + uclouvain.be + + + host + *.uclouvain.be + + + + + Univie.ac.at (partial) + + ruleset + + exclusion + + + pattern + ^http://blog\.univie\.ac\.at/+(?!backend/|favicon\.ico) + + + pattern + ^http://data\.univie\.ac\.at/index\.html + + + name + Univie.ac.at (partial) + rule + + from + ^http://((?:aufnahmeverfahren|bibliothek|blog|www\.bpc|cs|ctl|data|forschungsnewsletter|informatik|international|intra|kalender|medienportal|online|public|sbterminals|studentpoint|studien(?:service)?-lehrwesen|www\.tbi|univis|weblogin|webmail|www|zid)\.)?univie\.ac\.at// + to + https://$1univie.ac.at/ + + securecookie + + host + ^(?:aufnahmeverfahren|www\.bpc|chemie|cs|ctl|forschungsnewsletter|informatik|international|kalender|medienportal|public|sbterminals|studentpoint|studien(?:service)?-lehrwesen|univis|weblogin|www|zid)\.univie\.ac\.at$ + name + .+ + + target + + + host + univie.ac.at + + + host + *.univie.ac.at + + + + + Unknowncheats.me + + ruleset + + name + Unknowncheats.me + rule + + from + ^http://(www\.)?unknowncheats\.me/ + to + https://$1unknowncheats.me/ + + securecookie + + host + ^(?:www)?\.unknowncheats\.me$ + name + .+ + + target + + + host + unknowncheats.me + + + host + *.unknowncheats.me + + + + + UnlimitedHost (partial) + + ruleset + + name + UnlimitedHost (partial) + rule + + from + ^http://apollo\.unlimitedhost\.asia/ + to + https://apollo.unlimitedhost.asia/ + + target + + host + apollo.unlimitedhost.asia + + + + Uno.im + + ruleset + + name + Uno.im + rule + + from + ^http://(pbx\.|www\.)?uno\.im/ + to + https://$1uno.im/ + + securecookie + + host + ^\.(?:pbx\.|www\.)?uno\.im$ + name + .+ + + target + + + host + uno.im + + + host + *.uno.im + + + + + UnoEuro.com (partial) + + ruleset + + name + UnoEuro.com (partial) + rule + + from + ^http://((?:de|en|lu|no|static|sv|www)\.)?unoeuro\.com/ + to + https://$1unoeuro.com/ + + securecookie + + host + ^\.unoeuro\.com$ + name + .+ + + target + + + host + unoeuro.com + + + host + *.unoeuro.com + + + + + Unreal Development Kit + + ruleset + + name + Unreal Development Kit + rule + + from + ^http://(?:www\.)?udk\.com/ + to + https://udk.com/ + + target + + + host + udk.com + + + host + www.udk.com + + + + + Unreal Engine + + ruleset + + name + Unreal Engine + rule + + from + ^http://((?:answers|docs|forums|wiki|www)\.)?unrealengine\.com/ + to + https://$1unrealengine.com/ + + securecookie + + host + ^(?:(?:answers|forums|wiki|www)\.)?unrealengine\.com$ + name + .+ + + target + + + host + unrealengine.com + + + host + *.unrealengine.com + + + + + Unreality TV (partial) + + ruleset + + name + Unreality TV (partial) + rule + + from + ^https?://static\.unrealitytv\.co\.uk/ + to + https://d2t0hyryl46u6u.cloudfront.net/ + + target + + host + static.unrealitytv.co.uk + + + + Untappd.com + + ruleset + + name + Untappd.com + rule + + from + ^http://(www\.)?untappd\.com/ + to + https://$1untappd.com/ + + securecookie + + host + ^untappd\.com$ + name + .+ + + target + + + host + untappd.com + + + host + www.untappd.com + + + + + Unwanted Witness.or.ug + + ruleset + + name + Unwanted Witness.or.ug + rule + + from + ^http://(www\.)?unwantedwitness\.or\.ug/ + to + https://$1unwantedwitness.or.ug/ + + target + + + host + unwantedwitness.or.ug + + + host + www.unwantedwitness.or.ug + + + + + Upay + + ruleset + + name + Upay + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?upay\.co\.uk/ + to + https://www.upay.co.uk/ + + + from + ^http://(?:www\.)?upaymobile\.co\.uk/ + to + https://www.upaymobile.co.uk/ + + + target + + + host + upay.co.uk + + + host + www.upay.co.uk + + + host + upaymobile.co.uk + + + host + www.upaymobile.co.uk + + + + + Upgraded Self.com + + ruleset + + name + Upgraded Self.com + rule + + from + ^http://(?:www\.)?upgradedself\.com/ + to + https://www.upgradedself.com/ + + securecookie + + host + ^www\.upgradedself\.com$ + name + .+ + + target + + + host + upgradedself.com + + + host + www.upgradedself.com + + + + + Uplay.ubi.com + + ruleset + + name + Uplay.ubi.com + rule + + from + ^http://(www\.)?uplay\.ubi\.com/ + to + https://www.uplay.ubi.com/ + + target + + + host + uplay.ubi.com + + + host + www.uplay.ubi.com + + + + + Uploading.com (partial) + + ruleset + + name + Uploading.com (partial) + rule + + from + ^https?://(?:(api\.)|www\.)?uploading\.com/ + to + https://$1uploading.com/ + + securecookie + + host + ^\.uploading\.com$ + name + .+ + + target + + + host + uploading.com + + + host + *.uploading.com + + + + + UppSite (partial) + + ruleset + + name + UppSite (partial) + rule + + from + ^http://(www\.)?upp(\.st|site\.com)/ + to + https://upp$2/ + + securecookie + + host + ^(?:www\.)?uppsite\.com$ + name + .+ + + target + + + host + upp.st + + + host + uppsite.com + + + host + www.uppsite.com + + + + + Upplandsvasby.se + + ruleset + + name + Upplandsvasby.se + rule + + from + ^http://www\.upplandsvasby\.se/ + to + https://www.upplandsvasby.se/ + + target + + host + www.upplandsvasby.se + + + + Uprotect.it + + ruleset + + name + Uprotect.it + platform + firefox + rule + + from + ^http://(www\.)?uprotect\.it/ + to + https://uprotect.it/ + + securecookie + + host + ^uprotect\.it$ + name + .+ + + target + + + host + uprotect.it + + + host + www.uprotect.it + + + + + UpsideOut.com (partial) + + ruleset + + name + UpsideOut.com (partial) + rule + + from + ^http://tally\.upsideout\.com/ + to + https://tally.upsideout.com/ + + target + + host + tally.upsideout.com + + + + Upstart + + ruleset + + name + Upstart + rule + + from + ^https?://(?:www\.)?upstart\.com/ + to + https://www.upstart.com/ + + securecookie + + host + ^(?:www)?\.upstart\.com$ + name + .+ + + target + + + host + upstart.com + + + host + *.upstart.com + + + + + Uptilo + + ruleset + + name + Uptilo + rule + + + from + ^http://(esm\.|www\.)?uptilo\.com/ + to + https://$1uptilo.com/ + + + from + ^https?://assets\.uptilo\.com/ + to + https://d3rvd86gsdneth.cloudfront.net/ + + + securecookie + + host + ^(?:.*\.)?uptilo\.com$ + name + .+ + + target + + + host + uptilo.com + + + host + *.uptilo.com + + + + + Uptime Robot + + ruleset + + name + Uptime Robot + rule + + from + ^http://uptimerobot\.com/ + to + https://uptimerobot.com/ + + securecookie + + host + ^(?:.*\.)?uptimerobot\.com$ + name + .+ + + target + + host + uptimerobot.com + + + + Upworthy.com (partial) + + ruleset + + name + Upworthy.com (partial) + rule + + from + ^http://(www\.)?upworthy\.com/ + to + https://$1upworthy.com/ + + target + + + host + upworthy.com + + + host + www.upworthy.com + + + + + Urban Villa.nl + + ruleset + + name + Urban Villa.nl + rule + + from + ^http://(www\.)?urbanvilla\.nl/ + to + https://$1urbanvilla.nl/ + + securecookie + + host + ^\.urbanvilla\.nl$ + name + .+ + + target + + + host + urbanvilla.nl + + + host + *.urbanvilla.nl + + + + + UrbanTerror.info (partial) + + ruleset + + name + UrbanTerror.info (partial) + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?urbanterror\.info/((?:cache|css|files|images|members/register)/|downloads/.+\.zip\?key=[\da-f]+) + to + https://www.urbanterror.info/$1 + + target + + + host + urbanterror.info + + + host + *.urbanterror.info + + + + + UrlTrends + + ruleset + + name + UrlTrends + rule + + from + ^http://(www\.)?urltrends\.com/ + to + https://$1urltrends.com/ + + securecookie + + host + ^(?:www\.)?urltrends\.com$ + name + .+ + + target + + + host + urltrends.com + + + host + www.urltrends.com + + + + + Urospace (partial) + + ruleset + + name + Urospace (partial) + rule + + + from + ^http://(?:www\.)?urospace\.de/ + to + https://urospace.de/ + + + from + ^http://prima\.urospace\.net:2083/ + to + https://prima.urospace.net:2083/ + + + securecookie + + host + ^prima\.urospace\.net$ + name + .+ + + target + + + host + urospace.de + + + host + www.urospace.de + + + host + prima.urospace.net + + + + + Us Magazine.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:assets-s3|www)\.usmagazine\.com/+(?!css/|favicon\.ico|images/|uploads/) + + name + Us Magazine.com (partial) + rule + + from + ^http://(assets-s3\.|www\.)?usmagazine\.com/ + to + https://$1usmagazine.com/ + + target + + + host + usmagazine.com + + + host + *.usmagazine.com + + + + + Usablenet.com + + ruleset + + name + Usablenet.com + rule + + from + ^http://cdns\.usablenet\.com/ + to + https://cdns.usablenet.com/ + + target + + host + cdns.usablenet.com + + + + Use SSH 001.com + + ruleset + + name + Use SSH 001.com + rule + + from + ^http://(www\.)?usessh001\.com/ + to + https://$1usessh001.com/ + + securecookie + + host + ^www\.usessh001\.com$ + name + .+ + + target + + + host + usessh001.com + + + host + www.usessh001.com + + + + + Use-Enco.com + + ruleset + + name + Use-Enco.com + rule + + from + ^http://(?:www\.)?use-enco\.com/ + to + https://www.use-enco.com/ + + securecookie + + host + ^(?:www)?\.use-enco\.com$ + name + .+ + + target + + + host + use-enco.com + + + host + *.use-enco.com + + + + + UseResponse.com (false MCB) + + ruleset + + name + UseResponse.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.useresponse\.com/ + to + https://www.useresponse.com/ + + securecookie + + host + ^(?:www)?\.useresponse\.com$ + name + .+ + + target + + host + *.useresponse.com + + + + UseResponse.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.useresponse\.com/+(?!favicon\.ico|public/) + + name + UseResponse.com (partial) + rule + + from + ^http://(www\.)?useresponse\.com/ + to + https://$1useresponse.com/ + + target + + + host + useresponse.com + + + host + www.useresponse.com + + + + + Usenet Junction + + ruleset + + name + Usenet Junction + rule + + from + ^http://(www\.)?usenetjunction\.com/ + to + https://$1usenetjunction.com/ + + securecookie + + host + ^(www\.)?usenetjunction\.com$ + name + .* + + target + + + host + usenetjunction.com + + + host + www.usenetjunction.com + + + + + Usenet.nl (partial) + + ruleset + + name + Usenet.nl (partial) + rule + + + from + ^http://(?:www\.)?usenet\.nl/ + to + https://www.usenet.nl/ + + + from + ^http://en\.usenet\.nl/+register-now/*(?:$|\?.*) + to + https://en.usenet.nl/registration/ + + + from + ^http://de\.usenet\.nl/+jetzt-anmelden/*(?:$|\?.*) + to + https://de.usenet.nl/anmeldung/ + + + from + ^http://es\.usenet\.nl/+registrese-ahora/*(?:$|\?.*) + to + https://es.usenet.nl/registro/ + + + from + ^http://fr\.usenet\.nl/+inscription-maintenant/*(?:$|\?.*) + to + https://fr.usenet.nl/inscription/ + + + from + ^http://it\.usenet\.nl/+registratevi-ora/*(?:$|\?.*) + to + https://it.usenet.nl/registrazione/ + + + from + ^http://nl\.usenet\.nl/+nu-aanmelden/*(?:$|\?.*) + to + https://nl.usenet.nl/aanmelding/ + + + from + ^http://(\w\w)\.usenet\.nl/(?=(?:aanmelding|anmeldung|inscription|registration|registrazione|registro)(?:$|[?/])|(?:assistenza/modulo-di-assistenza|service/formulaire-assistance|service/support-form|service/support-formular|service/support-formulier|servicio/formulario-de-soporte)/*(?:$|\?)|UNF/|unf/) + to + https://$1.usenet.nl/ + + + target + + host + *.usenet.nl + + + + UsenetServer + + ruleset + + name + UsenetServer + rule + + from + ^http://((?:accounts|globalsearch|www)\.)?usenetserver\.com/ + to + https://$1usenetserver.com/ + + securecookie + + host + ^.*\.usenetserver\.com$ + name + .* + + target + + + host + usenetserver.com + + + host + *.usenetserver.com + + + + + User Local (partial) + + ruleset + + name + User Local (partial) + rule + + + from + ^http://(b)?s\.nakanohito\.jp/ + to + https://$1s.nakanohito.jp/ + + + from + ^https?://b0\d\.nakanohito\.jp/ + to + https://bs.nakanohito.jp/ + + + securecookie + + host + ^\.nakanohito\.jp$ + name + ^AP$ + + target + + host + *.nakanohito.jp + + + + UserEcho (partial) + + ruleset + + name + UserEcho (partial) + rule + + from + ^http://(?:www\.)?userecho\.com/ + to + https://userecho.com/ + + securecookie + + host + ^(www\.)?userecho\.com$ + name + .* + + target + + + host + userecho.com + + + host + *.userecho.com + + + + + UserScape + + ruleset + + name + UserScape + rule + + from + ^http://(www\.)?userscape\.com/ + to + https://$1userscape.com/ + + securecookie + + host + ^\.userscape\.com$ + name + .+ + + target + + + host + userscape.com + + + host + *.userscape.com + + + + + UserScripts.org + + ruleset + + exclusion + + pattern + ^http://(www\.)?userscripts\.org/scripts/source/ + + name + UserScripts.org + rule + + + from + ^https?://www\.userscripts\.org/ + to + https://userscripts.org/ + + + from + ^http://userscripts\.org/ + to + https://userscripts.org/ + + + target + + + host + userscripts.org + + + host + www.userscripts.org + + + + + Userstyles.org + + ruleset + + name + Userstyles.org + rule + + from + ^http://(www\.)?userstyles\.org/ + to + https://userstyles.org/ + + target + + + host + userstyles.org + + + host + www.userstyles.org + + + + + Uservoice (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|email|developer)\.uservoice\.com + + name + Uservoice (partial) + rule + + + from + ^http://(?:www\.)?uservoice\.com/images/ + to + https://cdn.uservoice.com/images/ + + + from + ^http://(?!www\.)(\w+)\.uservoice\.com/ + to + https://$1.uservoice.com/ + + + securecookie + + host + ^.*\.uservoice\.com$ + name + .* + + target + + + host + uservoice.com + + + host + *.uservoice.com + + + + + UsplusU.com + + ruleset + + name + UsplusU.com + rule + + from + ^http://(store\.|www\.)?usplusu\.com/ + to + https://$1usplusu.com/ + + securecookie + + host + ^\.(?:store\.|www\.)?usplusu\.com$ + name + .+ + + target + + + host + usplusu.com + + + host + *.usplusu.com + + + + + UsrJoy + + ruleset + + name + UsrJoy + rule + + from + ^http://(?:www\.)?usrjoy\.com/ + to + https://www.usrjoy.com/ + + securecookie + + host + ^(.+\.)?usrjoy\.com$ + name + .* + + target + + + host + usrjoy.com + + + host + www.usrjoy.com + + + + + Utah Education Network (partial) + + ruleset + + name + Utah Education Network (partial) + rule + + + from + ^http://uen\.org/ + to + https://www.eun.org/ + + + from + ^http://(?:www\.)?uen\.org/(css|images)/ + to + https://www.uen.org/$2/ + + + from + ^http://online\.uen\.org/ + to + https://online.uen.org/ + + + securecookie + + host + ^online\.uen\.org$ + name + .* + + target + + + host + uen.org + + + host + online.uen.org + + + host + www.uen.org + + + + + Utica College + + ruleset + + name + Utica College + rule + + from + ^http://(www\.)?utica\.edu/ + to + https://utica.edu/ + + target + + + host + www.utica.edu + + + host + utica.edu + + + + + Utopia + + ruleset + + name + Utopia + rule + + from + ^http://(www\.)?utopia\.ai/ + to + https://$1utopia.ai/ + + securecookie + + host + ^\.utopia\.ai$ + name + .+ + + target + + + host + utopia.ai + + + host + *.utopia.ai + + + + + Utopia-Web (partial) + + ruleset + + name + Utopia-Web (partial) + rule + + from + ^http://secure\.utopia-web\.com/ + to + https://secure.utopia-web.com/ + + securecookie + + host + ^secure\.utopia-web\.com$ + name + .* + + target + + host + secure.utopia-web.com + + + + V2 Cigs (partial) + + ruleset + + name + V2 Cigs (partial) + rule + + + from + ^http://(?:www\.)?v2cigs\.com/$ + to + https://www.v2cigs.com/index.php + + + from + ^https?://(?:www\.)?v2cigs\.com/(addons/|javascript/|lib/|prefetcher/|(?:(?:account|cart|giftcertificates|index|login)\.php|security\.html)(?:$|\?)|templates/) + to + https://www.v2cigs.com/$1 + + + from + ^http://(money|whoson-gw)\.v2cigs\.com/ + to + https://$1.v2cigs.com/ + + + securecookie + + host + ^money\.v2cigs\.com$ + name + .+ + + target + + + host + v2cigs.com + + + host + *.v2cigs.com + + + + + V3.co.uk (partial) + + ruleset + + name + V3.co.uk (partial) + rule + + from + ^http://(?:www\.)?v3\.co\.uk/(images/loading\.gif|IMG/) + to + https://incmai.incisivemedia.com/$1 + + target + + + host + v3.co.uk + + + host + www.v3.co.uk + + + + + VA Loan Captain + + ruleset + + name + VA Loan Captain + rule + + from + ^http://(www\.)?valoancaptain\.com/ + to + https://$1valoancaptain.com/ + + securecookie + + host + ^\.(?:www\.)?valoancaptain\.com$ + name + .+ + + target + + + host + valoancaptain.com + + + host + *.valoancaptain.com + + + + + VARCentral.com.au (partial) + + ruleset + + name + VARCentral.com.au (partial) + rule + + from + ^http://origin\.varcentral\.com\.au/ + to + https://origin.varcentral.com.au/ + + target + + host + origin.varcentral.com.au + + + + VCAB.com (partial) + + ruleset + + name + VCAB.com (partial) + rule + + from + ^http://secure\.vcab\.com/ + to + https://secure.vcab.com/ + + target + + host + secure.vcab.com + + + + VCE.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?vce\.com/(?!asset/|campaigns/|favicon\.ico|login(?:$|\?|/)|(?:[sS]cript|[wW]eb)[rR]esource\.axd|[wW]eb[mM]ethods\.aspx) + + name + VCE.com (partial) + rule + + + from + ^http://(static\.|www\.)?vce\.com/ + to + https://$1vce.com/ + + + from + ^http://support\.vce\.com/ + to + https://vce.secure.force.com/ + + + target + + + host + vce.com + + + host + www.vce.com + + + + + VDQ Bulbs.com + + ruleset + + name + VDQ Bulbs.com + rule + + from + ^http://(www\.)?vdqbulbs\.com\.au/ + to + https://$1vdqbulbs.com.au/ + + securecookie + + host + ^(?:w*\.)?vdqbulbs\.com\.au$ + name + .+ + + target + + + host + vdqbulbs.com.au + + + host + *.vdqbulbs.com.au + + + + + VDownloader + + ruleset + + name + VDownloader + rule + + from + ^http://(www\.)?vdownloader\.(?:com|es)/ + to + https://$1vdownloader.com/ + + securecookie + + host + ^\.?vdownloader\.com$ + name + .* + + target + + + host + vdownloader.com + + + host + *.vdownloader.com + + + host + vdownloader.es + + + host + www.vdownloader.com + + + + + VEVO + + ruleset + + name + VEVO + rule + + + from + ^https?://(?:www\.)?vevo\.com/ + to + https://www.vevo.com/ + + + from + ^https?://(?:img\.|s)?cache\.vevo\.com/ + to + https://scache.vevo.com/ + + + target + + + host + vevo.com + + + host + *.vevo.com + + + host + img.cache.vevo.com + + + + + VFEmail.net + + ruleset + + name + VFEmail.net + rule + + from + ^http://(www\.)?vfemail\.net/ + to + https://$1vfemail.net/ + + securecookie + + host + ^(?:\.|\.www\.)?vfemail\.net$ + name + .+ + + target + + + host + vfemail.net + + + host + *.vfemail.net + + + + + VG WORT (partial) + + ruleset + + name + VG WORT (partial) + rule + + from + ^http://(schulbuchportal\.|tom\.|www\.)?vgwort\.de/ + to + https://$1vgwort.de/ + + securecookie + + host + ^(?:.*\.)?vgwort\.de$ + name + .+ + + target + + + host + vgwort.de + + + host + *.vgwort.de + + + + + VG.no + + ruleset + + name + VG.no + platform + mixedcontent + rule + + + from + ^http://www\.vg\.no/ + to + https://www.vg.no/ + + + from + ^http://vg\.no/ + to + https://vg.no/ + + + from + ^http://static\.vg\.no/ + to + https://static.vg.no/ + + + from + ^http://static01\.vg\.no/ + to + https://static01.vg.no/ + + + from + ^http://static02\.vg\.no/ + to + https://static02.vg.no/ + + + from + ^http://static03\.vg\.no/ + to + https://static03.vg.no/ + + + from + ^http://static04\.vg\.no/ + to + https://static04.vg.no/ + + + target + + + host + vg.no + + + host + www.vg.no + + + host + static.vg.no + + + host + static01.vg.no + + + host + static02.vg.no + + + host + static03.vg.no + + + host + static04.vg.no + + + + + VGO Com.com (partial) + + ruleset + + name + VGO Com.com (partial) + rule + + from + ^http://(controlpanel\.)?vgocom\.com/ + to + https://$1vgocom.com/ + + securecookie + + host + ^controlpanel\.vgocom\.com$ + name + .+ + + target + + + host + vgocom.com + + + host + controlpanel.vgocom.com + + + + + VIPserv.org + + ruleset + + name + VIPserv.org + rule + + + from + ^http://((?:webmail|www)\.)?vipserv\.org/ + to + https://$1vipserv.org/ + + + from + ^https?://x14\.eu/ + to + https://vipserv.org/ + + + target + + + host + vipserv.org + + + host + www.vipserv.org + + + host + x14.eu + + + + + VIRURL + + ruleset + + name + VIRURL + rule + + + from + ^http://spn\.sr/ + to + https://spn.sr/ + + + from + ^http://(www\.)?virurl\.com/ + to + https://$1virurl.com/ + + + securecookie + + + host + ^spn\.sr$ + name + .+ + + + host + ^(?:www\.)?virurl\.com$ + name + .+ + + + target + + + host + spn.sr + + + host + virurl.com + + + host + www.virurl.com + + + + + VK (experimental new rule) + + ruleset + + exclusion + + pattern + ^http://cs(\w*\.)vk.me/ + + name + VK (experimental new rule) + rule + + + from + ^http://([\w+\-\.]+\.)?vk\.me/ + to + https://$1vk.me/ + + + from + ^http://((?:login|m|www)\.)?vk\.com/ + to + https://$1vk.com/ + + + from + ^http://([\w+\-\.]+\.)?vkontakte\.ru/ + to + https://$1vk.com/ + + + securecookie + + host + ^.*\.vk\.com$ + name + .* + + target + + + host + vk.com + + + host + *.vk.com + + + host + vk.me + + + host + *.vk.me + + + host + vkontakte.ru + + + host + www.vkontakte.ru + + + + + VK.se (partial) + + ruleset + + name + VK.se (partial) + rule + + + from + ^http://etidning\.vk\.se/ + to + https://etidning.vk.se/ + + + from + ^http://sifomedia\.vk\.se/ + to + https://oasc07.247realmedia.com/ + + + securecookie + + host + ^etidning\.vk\.se$ + name + .+ + + target + + host + *.vk.se + + + + VMware (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:forum|info|ir|kb|nlblogs|partnerlocator)\. + + + pattern + ^http://store\.vmware\.com/(?!DRHM/Storefront/Site/|favicon\.ico) + + + name + VMware (partial) + rule + + from + ^http://(\w+\.)?vmware\.com/ + to + https://$1vmware.com/ + + securecookie + + host + ^(?!store\.)(?:.*\.)?vmware\.com$ + name + .+ + + target + + + host + vmware.com + + + host + *.vmware.com + + + + + VOICE Daily Deals + + ruleset + + name + VOICE Daily Deals + rule + + from + ^http://(www\.)?voicedailydeals\.com/ + to + https://$1voicedailydeals.com/ + + securecookie + + host + ^.*\.voicedailydeals\.com$ + name + .* + + target + + + host + voicedailydeals.com + + + host + *.voicedailydeals.com + + + + + VPN Reviewer.com + + ruleset + + name + VPN Reviewer.com + rule + + from + ^http://(www\.)?vpnreviewer\.com/ + to + https://$1vpnreviewer.com/ + + target + + + host + vpnreviewer.com + + + host + www.vpnreviewer.com + + + + + VPN4ALL + + ruleset + + name + VPN4ALL + rule + + from + ^http://(?:www\.)?vpn4all\.com/ + to + https://www.vpn4all.com/ + + target + + + host + vpn4all.com + + + host + www.vpn4all.com + + + + + VPNGlobe.com + + ruleset + + name + VPNGlobe.com + rule + + from + ^http://(my\.|www\.)?vpnglobe\.com/ + to + https://$1vpnglobe.com/ + + securecookie + + host + ^(?:my)?\.vpnglobe\.com$ + name + .+ + + target + + + host + vpnglobe.com + + + host + *.vpnglobe.com + + + + + VPNReactor.com + + ruleset + + name + VPNReactor.com + rule + + from + ^http://(members\.|www\.)?vpnreactor\.com/ + to + https://$1vpnreactor.com/ + + securecookie + + host + ^(.*\.)?vpnreactor\.com$ + name + .* + + target + + + host + vpnreactor.com + + + host + *.vpnreactor.com + + + + + VPNSearch.net + + ruleset + + name + VPNSearch.net + rule + + from + ^http://(?:www\.)?vpnsearch\.net/ + to + https://vpnsearch.net/ + + securecookie + + host + ^(?:w*\.)?vpnsearch\.net$ + name + .+ + + target + + + host + vpnsearch.net + + + host + *.vpnsearch.net + + + + + VPNService.ru + + ruleset + + name + VPNService.ru + rule + + from + ^http://(www\.)?vpnservice\.ru/ + to + https://$1vpnservice.ru/ + + securecookie + + host + ^\.vpnservice\.ru$ + name + .+ + + target + + + host + vpnservice.ru + + + host + *.vpnservice.ru + + + + + VPS.net (partial) + + ruleset + + name + VPS.net (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?vps\.net/blog/wp-content/themes/vps/images/(bgshadow\d|logo)\.png$ + to + https://control.vps.net/images/dark_night/$1.png + + + from + ^http://(?:www\.)?vps\.net/images/(bgcity\d\.(?:jpg|png)|logo\.png)$ + to + https://control.vps.net/images/dark_night/$1 + + + from + ^http://(www\.)?control\.vps\.net/ + to + https://$1control.vps.net/ + + + target + + + host + vps.net + + + host + *.vps.net + + + host + www.control.vps.net + + + + + VR.se + + ruleset + + name + VR.se + platform + mixedcontent + rule + + + from + ^http://www\.vr\.se/ + to + https://www.vr.se/ + + + from + ^http://vr\.se/ + to + https://www.vr.se/ + + + target + + + host + vr.se + + + host + www.vr.se + + + + + VSCo.co + + ruleset + + name + VSCo.co + rule + + + from + ^http://(www\.)?vsco\.co/ + to + https://$1vsco.co/ + + + from + ^http://static\d\.vsco\.co/ + to + https://d1484tg77u0d9i.cloudfront.net/ + + + securecookie + + host + ^vsco\.co$ + name + .+ + + target + + + host + vsco.co + + + host + *.vsco.co + + + + + VT.edu (partial) + + ruleset + + name + VT.edu (partial) + rule + + + from + ^https?://(?:www\.)?(bioinformatics\.|vbi\.)?vt\.edu/ + to + https://www.$1vt.edu/ + + + from + ^http://((?:m\.)?addison|auth|www\.(?:fralin|hnfe|lib)|(?:www\.)?(?:assessment|bse|cals|cnre|ext|pubs\.ext|vectorborne\.fralin|hipl\.hnfe|osp|research(?:\.cals)?|(?:ibc\.)?researchcompliance|security|unirel|vaes|vtnews)|secure\.hosting|(?:aqua|ulfs)\.lib|my|(?:confluence|dev|help|secure)\.research|arec\.vaes)\.vt\.edu/ + to + https://$1.vt.edu/ + + + from + ^https?://www\.cnr\.vt\.edu/ + to + https://cnre.vt.edu/ + + + from + ^http://login\.ezproxy\.lib\.vt\.edu:2443/ + to + https://login.ezproxy.lib.vt.edu:2443/ + + + from + ^https?://(?:www\.)?oesrc\.researchcompliance\.vt\.edu/ + to + https://oesrc.researchcompliance.vt.edu/ + + + securecookie + + host + ^(?:(?:m?\.)?addison|auth|www\.(?:bioinformatics|vbi)|(?:\.vectorborne)?\.fralin|(?:confluence|help|secure)?\.research|(?:\.ibc|\.oesrc)?\.researchcompliance)\.vt\.edu$ + name + .+ + + target + + + host + vt.edu + + + host + *.vt.edu + + + + + VTCSec.ru + + ruleset + + name + VTCSec.ru + rule + + from + ^http://(?:www\.)?vtcsec\.ru/ + to + https://vtcsec.ru/ + + target + + + host + vtcsec.ru + + + host + *.vtcsec.ru + + + + + VTEC Direct + + ruleset + + name + VTEC Direct + rule + + from + ^https?://(?:www\.)?vtecdirect\.com/ + to + https://vtecdirect.com/ + + securecookie + + host + ^\.vtecdirect\.com$ + name + .* + + target + + + host + vtecdirect.com + + + host + *.vtecdirect.com + + + + + VTLUUG.org + + ruleset + + name + VTLUUG.org + rule + + from + ^http://(?:(milton\.)|www\.)?vtluug\.org/ + to + https://$1vtluug.org/ + + target + + + host + vtluug.org + + + host + *.vtluug.org + + + + + VTunnel + + ruleset + + name + VTunnel + rule + + from + ^http://(www\.)?vtunnel\.com/ + to + https://$1vtunnel.com/ + + securecookie + + host + ^(?:.*\.)?vtunnel\.com$ + name + .+ + + target + + + host + vtunnel.com + + + host + *.vtunnel.com + + + + + VU.nl (partial) + + ruleset + + name + VU.nl (partial) + rule + + + from + ^http://(www\.)?vu\.nl/+(?=\w\w/css/|\w\w/[Ii]mages/) + to + https://$1vu.nl/ + + + from + ^http://(?:www\.)?(cs|falw|fbw|few|godgeleerdheid|let|psy)\.vu\.nl/ + to + https://www.$1.vu.nl/ + + + from + ^http://(?:www\.)?fpp\.vu\.nl/+(?=$|\?) + to + https://www.psy.vu.nl/ + + + from + ^http://vunet\.vu\.nl/ + to + https://vunet.vu.nl/ + + + securecookie + + host + ^www\.(?:cs|few)\.vu\.nl$ + name + .+ + + target + + host + *.vu.nl + + + + VacationRoost + + ruleset + + name + VacationRoost + rule + + from + ^http://ajax\.vacationroost\.com/ + to + https://ajax.vacationroost.com/ + + target + + host + ajax.vacationroost.com + + + + Vagrant Cloud.com + + ruleset + + name + Vagrant Cloud.com + rule + + from + ^http://(www\.)?vagrantcloud\.com/ + to + https://$1vagrantcloud.com/ + + securecookie + + host + ^vagrantcloud\.com$ + name + .+ + + target + + + host + vagrantcloud.com + + + host + www.vagrantcloud.com + + + + + Vagrantup.com (partial) + + ruleset + + name + Vagrantup.com (partial) + rule + + + from + ^http://(?:www\.)?vagrantup\.com/ + to + https://www.vagrantup.com/ + + + from + ^http://docs\.vagrantup\.com/ + to + https://docs.vagrantup.com/ + + + from + ^http://downloads\.vagrantup\.com/ + to + https://vagrant-downloads.herokuapp.com/ + + + from + ^http://files\.vagrantup\.com/ + to + https://s3.amazonaws.com/files.vagrantup.com/ + + + securecookie + + host + ^\.vagrantup\.com$ + name + .+ + + target + + + host + vagrantup.com + + + host + *.vagrantup.com + + + + + Valley First CU.org + + ruleset + + name + Valley First CU.org + rule + + from + ^http://(hb\.|www\.)?valleyfirstcu\.org/ + to + https://$1valleyfirstcu.org/ + + securecookie + + host + ^(?:www\.)?valleyfirstcu\.org$ + name + .+ + + target + + + host + valleyfirstcu.org + + + host + *.valleyfirstcu.org + + + + + Valtiolle.fi + + ruleset + + name + Valtiolle.fi + rule + + + from + ^http://(?:www\.)?valtiolle\.fi/ + to + https://www.valtiolle.fi/ + + + from + ^http://(?:haku|heli)\.valtiolle\.fi/ + to + https://haku.valtiolle.fi/ + + + securecookie + + host + ^(?:haku|www)\.valtiolle\.fi$ + name + .+ + + target + + + host + valtiolle.fi + + + host + *.valtiolle.fi + + + + + Valtion taloudellinen tutkimuskeskus + + ruleset + + name + Valtion taloudellinen tutkimuskeskus + rule + + from + ^http://(www\.)?vatt\.fi/ + to + https://$1vatt.fi/ + + securecookie + + host + ^(?:www\.)?vatt\.fi$ + name + .+ + + target + + + host + vatt.fi + + + host + www.vatt.fi + + + + + Valtiontalouden tarkastusvirasto + + ruleset + + name + Valtiontalouden tarkastusvirasto + rule + + from + ^http://(?:www\.)?vtv\.fi/ + to + https://www.vtv.fi/ + + securecookie + + host + ^www\.vtv\.fi$ + name + .+ + + target + + + host + vtv.fi + + + host + www.vtv.fi + + + + + Value Applications + + ruleset + + name + Value Applications + rule + + from + ^https?://(?:www\.)?valueapplications\.com/ + to + https://www.valueapplications.com/ + + securecookie + + host + ^(.*\.)?valueapplications\.com$ + name + .+ + + target + + + host + valueapplications.com + + + host + www.valueapplications.com + + + + + Value-Domain.com (partial) + + ruleset + + name + Value-Domain.com (partial) + rule + + from + ^http://(www\.)?value-domain\.com/ + to + https://$1value-domain.com/ + + target + + + host + value-domain.com + + + host + www.value-domain.com + + + + + ValueClick (partial) + + ruleset + + name + ValueClick (partial) + rule + + + from + ^http://(mp|rd)\.apmebf\.com/ + to + https://$1.apmebf.com/ + + + from + ^https?://(?:www\.)?(?:fast|value)click(media)?\.com/ + to + https://www.valueclick$1.com/ + + + from + ^http://(?:secure\.)?cdn\.fastclick\.net/ + to + https://secure.cdn.fastclick.net/ + + + from + ^http://(?:media|secure)\.fastclick\.net/ + to + https://secure.fastclick.net/ + + + from + ^http://sp\.fastclick\.net/ + to + https://sp.fastclick.net/ + + + from + ^http://(adfarm|altfarm|app|img|mojofarm)\.mediaplex\.com/ + to + https://$1.mediaplex.com/ + + + from + ^http://(?:secure\.)?img-cdn\.mediaplex\.com/ + to + https://secure.img-cdn.mediaplex.com/ + + + from + ^https?://(?:www\.)?mediaplex\.com/ + to + https://www.mediaplex.com/ + + + from + ^https?://(?:secure-)?cdn\.mplxtms\.com/ + to + https://secure-cdn.mplxtms.com/ + + + from + ^http://admin\.valueclickmedia\.com/ + to + https://admin.valueclickmedia.com/ + + + securecookie + + + host + ^\.apmebf\.com$ + name + .+ + + + host + ^.*\.(?:fastclick|mediaplex|valueclick(?:media)?)\.(?:com|net)$ + name + .+ + + + host + ^admin\.valueclickmedia\.com$ + name + .+ + + + target + + + host + *.apmebf.com + + + host + fastclick.com + + + host + www.fastclick.com + + + host + *.fastclick.net + + + host + mediaplex.com + + + host + *.mediaplex.com + + + host + *.mplxtms.com + + + host + valueclick.com + + + host + www.valueclick.com + + + host + valueclickmedia.com + + + host + *.valueclickmedia.com + + + + + ValueCommerce (partial) + + ruleset + + name + ValueCommerce (partial) + rule + + from + ^https?://(?:www\.)?valuecommerce\.(com|ne\.jp)/ + to + https://www.valuecommerce.$1/ + + securecookie + + + host + ^\.valuecommerce\.com$ + name + ^VCIDENTITY$ + + + host + ^www\.valuecommerce\.ne\.jp$ + name + .+ + + + target + + + host + valuecommerce.com + + + host + *.valuecommerce.com + + + host + valuecommerce.ne.jp + + + host + www.valuecommerce.ne.jp + + + + + ValueHost.ru + + ruleset + + name + ValueHost.ru + rule + + from + ^http://(www\.)?valuehost\.ru/ + to + https://$1valuehost.ru/ + + securecookie + + host + ^\.?www\.valuehost\.ru$ + name + .+ + + target + + + host + valuehost.ru + + + host + *.valuehost.ru + + + + + ValueShop.co.uk + + ruleset + + name + ValueShop.co.uk + rule + + from + ^http://(?:www\.)?valueshop\.co\.uk/ + to + https://www.valueshop.co.uk/ + + securecookie + + host + ^www\.valueshop\.co\.uk$ + name + .+ + + target + + + host + valueshop.co.uk + + + host + www.valueshop.co.uk + + + + + Valued Opinions + + ruleset + + name + Valued Opinions + rule + + + from + ^https?://(?:www\.)?valuedopinions\.co\.uk/ + to + https://www.valuedopinions.co.uk/ + + + from + ^http://adtracker\.valuedopinions\.co\.uk/ + to + https://adtracker.valuedopinions.co.uk/ + + + target + + + host + valuedopinions.co.uk + + + host + *.valuedopinions.co.uk + + + + + Valve Software.com (partial) + + ruleset + + name + Valve Software.com (partial) + rule + + from + ^http://(developer\.|www\.)?valvesoftware\.com/ + to + https://$1valvesoftware.com/ + + securecookie + + host + ^developer\.valvesoftware\.com$ + name + .+ + + target + + + host + valvesoftware.com + + + host + *.valvesoftware.com + + + + + Van Lanschot.com + + ruleset + + name + Van Lanschot.com + rule + + from + ^http://(?:www\.)?vanlanschot\.com/ + to + https://www.vanlanschot.com/ + + securecookie + + host + ^(?:www\.)?vanlanschot\.com$ + name + .+ + + target + + + host + vanlanschot.com + + + host + www.vanlanschot.com + + + + + Van Lanschot.nl + + ruleset + + name + Van Lanschot.nl + rule + + from + ^http://(?:www\.)?vanlanschot\.nl/ + to + https://www.vanlanschot.nl/ + + securecookie + + host + ^(?:www\.)?vanlanschot\.nl$ + name + .+ + + target + + + host + vanlanschot.nl + + + host + www.vanlanschot.nl + + + + + Vanderbilt University (partial) + + ruleset + + name + Vanderbilt University (partial) + rule + + from + ^http://sitemason\.vanderbilt\.edu/ + to + https://sitemason.vanderbilt.edu/ + + target + + host + sitemason.vanderbilt.edu + + + + Vanilla Forums (partial) + + ruleset + + exclusion + + pattern + ^http://(www\.)?vanillaforums\.com/($|info($|/)) + + name + Vanilla Forums (partial) + rule + + + from + ^http://autostatic\.vanilladev\.com/ + to + https://autostatic.vanilladev.com/ + + + from + ^http://(www\.)?vanillaforums\.com/ + to + https://$1vanillaforums.com/ + + + from + ^https?://cdn\.v(?:anillaforums\.com|ni\.la)/ + to + https://c3409409.ssl.cf0.rackcdn.com/ + + + from + ^https?://autostatic-cl1\.vanilladev\.com/(\w+)\.vanillaforums\.com/ + to + https://$1.vanillaforums.com/ + + + target + + + host + vanillaforums.com + + + host + *.vanillaforums.com + + + host + *.vanilladev.com + + + host + cdn.vni.la + + + + + VanillaMastercard + + ruleset + + name + VanillaMastercard + rule + + from + ^http://([^/:@\.]+)\.vanillamastercard\.com/ + to + https://$1.vanillamastercard.com/ + + target + + + host + vanillamastercard.com + + + host + *.vanillamastercard.com + + + + + Vanillicon.com + + ruleset + + name + Vanillicon.com + rule + + from + ^http://(www\.)?vanillicon\.com/ + to + https://$1vanillicon.com/ + + target + + + host + vanillicon.com + + + host + www.vanillicon.com + + + + + Vanity Fair (partial) + + ruleset + + name + Vanity Fair (partial) + rule + + + from + ^http://secure\.vanityfair\.com/ + to + https://secure.vanityfair.com/ + + + from + ^https?://stats2\.vanityfair\.com/ + to + https://vanityfair-com.122.2o7.net/ + + + securecookie + + host + ^.*\.vanityfair\.com$ + name + .* + + target + + host + *.vanityfair.com + + + + Vara.nl (partial) + + ruleset + + exclusion + + pattern + ^http://humortv\.vara\.nl/+(?!favicon\.ico|fileadmin/|typo3conf/|typo3temp/) + + name + Vara.nl (partial) + rule + + from + ^http://(humortv|media-service|omroep|shop|static|tickets|www)\.vara\.nl/ + to + https://$1.vara.nl/ + + securecookie + + + host + ^(?:media-service|omroep|static|www)\.vara\.nl$ + name + .+ + + + host + ^\.(?:shop|tickets)\.vara\.nl$ + name + ^frontend$ + + + target + + host + *.vara.nl + + + + Variety.com (partial) + + ruleset + + name + Variety.com (partial) + rule + + + from + ^http://(?:www\.)?variety\.com/ + to + https://variety.com/ + + + from + ^http://images[1-3]?\.variety\.com/ + to + https://dxcdzflj3dom3.cloudfront.net/ + + + from + ^https?://haas\.variety\.com/ + to + https://haas.reedbusiness.nl/ + + + securecookie + + host + ^(?:www)?\.variety\.com$ + name + .+ + + target + + + host + variety.com + + + host + *.variety.com + + + + + Varnish-Cache.org + + ruleset + + name + Varnish-Cache.org + rule + + from + ^http://(repo\.|www\.)?varnish-cache\.org/ + to + https://$1varnish-cache.org/ + + securecookie + + host + ^www\.varnish-cache\.org$ + name + .+ + + target + + + host + varnish-cache.org + + + host + *.varnish-cache.org + + + + + Varnish-Software.com (partial) + + ruleset + + name + Varnish-Software.com (partial) + rule + + from + ^http://(www\.)?varnish-software\.com/ + to + https://$1varnish-software.com/ + + target + + + host + varnish-software.com + + + host + www.varnish-software.com + + + + + Varuste.net + + ruleset + + name + Varuste.net + rule + + from + ^http://(www\.)?varuste\.net/ + to + https://$1varuste.net/ + + securecookie + + host + ^www\.varuste\.net$ + name + .+ + + target + + + host + varuste.net + + + host + www.varuste.net + + + + + Varusteleka.fi + + ruleset + + name + Varusteleka.fi + rule + + from + ^http://www\.varusteleka\.fi/ + to + https://www.varusteleka.fi/ + + securecookie + + host + ^www\.varusteleka\.fi$ + name + .+ + + target + + host + www.varusteleka.fi + + + + Vast (partial) + + ruleset + + name + Vast (partial) + rule + + + from + ^http://(?:www\.)?(?:staticv\.net|vast\.com)/ + to + https://www.vast.com/ + + + from + ^http://img\.vast\.com/ + to + https://img.vast.com/ + + + securecookie + + host + ^(.*\.)?vast\.com$ + name + .* + + target + + + host + staticv.net + + + host + www.staticv.net + + + host + vast.com + + + host + *.vast.com + + + + + Vast Interactive (partial) + + ruleset + + name + Vast Interactive (partial) + rule + + from + ^http://(www\.)?dsply\.com/ + to + https://$1dsply.com/ + + securecookie + + host + ^(?:.*\.)?dsply\.com$ + name + .+ + + target + + + host + dsply.com + + + host + *.dsply.com + + + + + Vault.cca.edu + + ruleset + + name + Vault.cca.edu + rule + + from + ^http://vault\.cca\.edu/ + to + https://vault.cca.edu/ + + target + + host + vault.cca.edu + + + + Vayable.com + + ruleset + + name + Vayable.com + rule + + from + ^http://(?:www\.)?vayable\.com/ + to + https://www.vayable.com/ + + securecookie + + host + ^www\.vayable\.com$ + name + .+ + + target + + + host + vayable.com + + + host + www.vayable.com + + + + + Vcommerce (partial) + + ruleset + + name + Vcommerce (partial) + rule + + + from + ^https?://(?:www\.)?vcommerce\.com/ + to + https://www.vcommerce.com/ + + + from + ^https?://content\.vcommerce\.com/ + to + https://s3.amazonaws.com/content.vcommerce.com/ + + + securecookie + + host + ^www\.vcommerce\.com$ + name + .+ + + target + + + host + vcommerce.com + + + host + *.vcommerce.com + + + + + Vdio + + ruleset + + name + Vdio + rule + + from + ^http://(www\.)?vdio\.com/ + to + https://$1vdio.com/ + + securecookie + + host + ^\.vdio\.com$ + name + .+ + + target + + + host + vdio.com + + + host + *.vdio.com + + + + + Vdopia + + ruleset + + exclusion + + pattern + ^https?://i2\.vdopia\.com/(?!js/) + + name + Vdopia + rule + + + from + ^https?://(?:www\.)?ivdopia\.com/ + to + https://www.ivdopia.com/ + + + from + ^https?://(?:i2\.|serve\.|(online\.|sb\.|www\.))?vdopia\.com/ + to + https://$1vdopia.com/ + + + from + ^http://(?:cdn|mobile(\.sb)?)\.vdopia\.com/ + to + https://mobile$1.vdopia.com/ + + + securecookie + + host + ^(?:.+\.)?vdopia\.com$ + name + .+ + + target + + + host + ivdopia.com + + + host + www.ivdopia.com + + + host + vdopia.com + + + host + *.vdopia.com + + + host + mobile.sb.vdopia.com + + + + + Vdoth.com + + ruleset + + name + Vdoth.com + rule + + + from + ^http://www\.clipth\.net/ + to + https://www.vdoth.com/ + + + from + ^http://(kodsana\.|www\.)?vdoth\.com/ + to + https://$1vdoth.com/ + + + securecookie + + host + ^(?:w*\.)?vdoth\.com$ + name + .+ + + target + + + host + www.clipth.net + + + host + vdoth.com + + + host + *.vdoth.com + + + + + Ve Interactive.com (partial) + + ruleset + + name + Ve Interactive.com (partial) + rule + + from + ^http://(cdsusa|config1|configusa|drs2|mail|rcs|vecapture|vecontact|vemerchant)\.veinteractive\.com/ + to + https://$1.veinteractive.com/ + + securecookie + + host + ^(?:mail|vecapture|vecontact|vemerchant)\.veinteractive\.com$ + name + .+ + + target + + host + *.veinteractive.com + + + + Veber.co.uk + + ruleset + + name + Veber.co.uk + rule + + from + ^http://(blog\.|www\.)?veber\.co\.uk/ + to + https://$1veber.co.uk/ + + securecookie + + host + ^(?:www\.)?veber\.co\.uk$ + name + .+ + + target + + + host + veber.co.uk + + + host + *.veber.co.uk + + + + + Vector Media Group + + ruleset + + name + Vector Media Group + rule + + from + ^http://(?:www\.)?vectormediagroup\.com/ + to + https://www.vectormediagroup.com/ + + target + + + host + vectormediagroup.com + + + host + www.vectormediagroup.com + + + + + Vegas Deal Hunter + + ruleset + + name + Vegas Deal Hunter + rule + + from + ^https?://(?:www\.)?vegasdealhunter\.com/ + to + https://www.vegasdealhunter.com/ + + securecookie + + host + ^\.vegasdealhunter\.com$ + name + .+ + + target + + + host + vegasdealhunter.com + + + host + *.vegasdealhunter.com + + + + + Vegas Partner Lounge + + ruleset + + name + Vegas Partner Lounge + rule + + from + ^http://((?:secure|starpartner|www)\.)?vegaspartnerlounge\.com/ + to + https://$1vegaspartnerlounge.com/ + + securecookie + + host + ^(?:.+\.)?vegaspartnerlounge\.com$ + name + .+ + + target + + + host + vegaspartnerlounge.com + + + host + *.vegaspartnerlounge.com + + + + + VehBidz (partial) + + ruleset + + name + VehBidz (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?vehbidz\.com/((?:login|members_area|register)\.php|themes/|uplimg/) + to + https://www.vehbidz.com/$1 + + target + + + host + vehbidz.com + + + host + www.vehbidz.com + + + + + Velaro (partial) + + ruleset + + name + Velaro (partial) + rule + + from + ^http://(c|service|sp)\.velaro\.com/ + to + https://$1.velaro.com/ + + securecookie + + host + ^.*\.velaro.com$ + name + .* + + target + + + host + c.velaro.com + + + host + service.velaro.com + + + host + sp.velaro.com + + + + + Velleman Group (partial) + + ruleset + + name + Velleman Group (partial) + rule + + + from + ^(http://(www\.)?|https://)hqpower\.eu/ + to + https://www.hqpower.eu/ + + + from + ^(http://(www\.)?|https://)perel\.eu/ + to + https://www.perel.eu/ + + + from + ^(http://(www\.)?|https://)velleman\.be/ + to + https://www.velleman.eu/ + + + from + ^https?://portal\.velleman\.be/$ + to + https://portal.velleman.eu/ServicePortal/ + + + from + ^https?://portal\.velleman\.be/(.+) + to + https://portal.velleman.eu/$1 + + + from + ^(http://(www\.)?|https://)velleman\.eu/ + to + https://www.velleman.eu/ + + + from + ^https?://portal\.velleman\.eu/$ + to + https://portal.velleman.eu/ServicePortal/ + + + from + ^http://portal\.velleman\.eu/(.+) + to + https://portal.velleman.eu/$1 + + + from + ^(http://(www\.)?|https://)vellemanusa\.com/ + to + https://www.vellemanusa.com/ + + + securecookie + + + host + ^www\.hqpower\.eu$ + name + .+ + + + host + ^www\.perel\.eu$ + name + .+ + + + host + ^(portal|www)\.velleman\.eu$ + name + .+ + + + host + ^www\.vellemanusa\.com$ + name + .+ + + + target + + + host + hqpower.eu + + + host + www.hqpower.eu + + + host + perel.eu + + + host + www.perel.eu + + + host + velleman.be + + + host + portal.velleman.be + + + host + www.velleman.be + + + host + velleman.eu + + + host + portal.velleman.eu + + + host + www.velleman.eu + + + host + vellemanusa.com + + + host + www.vellemanusa.com + + + + + Velocity Micro + + ruleset + + name + Velocity Micro + rule + + from + ^https?://(?:www\.)?velocitymicro\.com/ + to + https://www.velocitymicro.com/ + + securecookie + + host + ^www\.velocitymicro\.com$ + name + .+ + + target + + + host + velocitymicro.com + + + host + www.velocitymicro.com + + + + + Velox-Project.eu + + ruleset + + name + Velox-Project.eu + rule + + from + ^http://(?:www\.)?velox-project\.eu/ + to + https://www.velox-project.eu/ + + target + + + host + velox-project.eu + + + host + www.velox-project.eu + + + + + Velvet Cache.org (partial) + + ruleset + + name + Velvet Cache.org (partial) + rule + + from + ^http://static\.velvetcache\.org/ + to + https://s3.amazonaws.com/static.velvetcache.org/ + + target + + host + static.velvetcache.org + + + + Vendercom (partial) + + ruleset + + name + Vendercom (partial) + rule + + from + ^http://(ecomm\.|www\.)?vendercom\.com/ + to + https://$1vendercom.com/ + + target + + + host + vendercom.com + + + host + *.vendercom.com + + + + + Vendetta Online (partial) + + ruleset + + name + Vendetta Online (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?vendetta-online\.com/ + to + https://$1vendetta-online.com/ + + + from + ^http://images\.vendetta-online\.com/ + to + https://vendetta-online.com/ + + + securecookie + + host + ^(.*\.)?vendetta-online\.com$ + name + .* + + target + + + host + vendetta-online.com + + + host + *.vendetta-online.com + + + + + Vendo Services (partial) + + ruleset + + name + Vendo Services (partial) + rule + + + from + ^http://cdn1\.vendocdn\.com/ + to + https://cdn1.vendocdn.com/ + + + from + ^http://secure3\.vend-o\.com/ + to + https://secure3.vend-o.com/ + + + target + + host + cdn1.vendocdn.com + + + + Ventra Chicago.com + + ruleset + + name + Ventra Chicago.com + rule + + from + ^http://(www\.)?ventrachicago\.com/ + to + https://$1ventrachicago.com/ + + securecookie + + host + ^(?:www)?\.ventrachicago\.com$ + name + .+ + + target + + + host + ventrachicago.com + + + host + *.ventrachicago.com + + + + + VentureBeat (partial) + + ruleset + + name + VentureBeat (partial) + rule + + from + ^http://store\.venturebeat\.com/ + to + https://store.venturebeat.com/ + + target + + host + store.venturebeat.com + + + + Veracode.com + + ruleset + + name + Veracode.com + rule + + from + ^http://((?:analysiscenter|blog|info|www)\.)?veracode\.com/ + to + https://$1veracode.com/ + + securecookie + + host + ^(?:analysiscenter|info)\.veracode\.com$ + name + .+ + + target + + + host + veracode.com + + + host + *.veracode.com + + + + + Verbraucher-sicher-online.de + + ruleset + + name + Verbraucher-sicher-online.de + rule + + from + ^http://(?:www\.)?verbraucher-sicher-online\.de/ + to + https://www.verbraucher-sicher-online.de/ + + target + + + host + verbraucher-sicher-online.de + + + host + www.verbraucher-sicher-online.de + + + + + Verbraucherzentrale Nordrhein-Westfalen + + ruleset + + name + Verbraucherzentrale Nordrhein-Westfalen + rule + + + from + ^http://(www\.)?(meine|ratgeber)-verbraucherzentrale\.de/ + to + https://$1$2-verbraucherzentrale.de/ + + + from + ^http://(www\.)?vz-nrw\.de/ + to + https://$1vz-nrw.de/ + + + target + + + host + www.meine-verbraucherzentrale.de + + + host + ratgeber-verbraucherzentrale.de + + + host + www.ratgeber-verbraucherzentrale.de + + + host + vz-nrw.de + + + host + www.vz-nrw.de + + + + + Verdad Media + + ruleset + + name + Verdad Media + rule + + from + ^https?://(?:www\.)?verdadmedia\.com/ + to + https://www.verdadmedia.com/ + + target + + + host + verdadmedia.com + + + host + www.verdadmedia.com + + + + + Vereinigte IKK + + ruleset + + name + Vereinigte IKK + rule + + from + ^http://(?:www\.)?vereinigte-ikk\.de/ + to + https://www.vereinigte-ikk.de/ + + target + + + host + www.vereinigte-ikk.de + + + host + vereinigte-ikk.de + + + + + VeriSign (partial) + + ruleset + + exclusion + + + pattern + ^http://verisigntransition101\.verisign\.[\w\.]{2,6}/ + + + pattern + ^http://[\w\-]*ocsp\.verisign\.com + + + name + VeriSign (partial) + rule + + + from + ^https?://(?:www\.)?verisign\.([\w\.]{2,6})/ + to + https://www.verisign.$1/ + + + from + ^http://([\w\-]+)\.verisign\.([\w\.]{2,6})/ + to + https://$1.verisign.$2/ + + + from + ^http://knowledge\.verisign-grs\.com/ + to + https://knowledge.verisign-grs.com/ + + + from + ^https?://(?:www\.)?verisign(inc|-japan-domain)\.com/ + to + https://www.verisign$1.com/ + + + securecookie + + host + ^(.*\.)?verisign(inc)?\.com$ + name + .* + + target + + + host + verisign.be + + + host + www.verisign.be + + + host + verisign.ch + + + host + knowledge.verisign.ch + + + host + ssl-certificate-center.verisign.ch + + + host + trust-center.verisign.ch + + + host + www.verisign.ch + + + host + verisign.com + + + host + *.verisign.com + + + host + verisign.com.au + + + host + knowledge.verisign.com.au + + + host + mygatekeeper.verisign.com.au + + + host + ssl-certificate-center.verisign.com.au + + + host + tracking.verisign.com.au + + + host + trust-center.verisign.com.au + + + host + www.verisign.com.au + + + host + verisign.com.br + + + host + www.verisign.com.br + + + host + verisign.com.hk + + + host + knowledge.verisign.com.hk + + + host + ssl-certificate-center.verisign.com.hk + + + host + tracking.verisign.com.hk + + + host + trust.verisign.com.hk + + + host + www.verisign.com.hk + + + host + verisign.com.sg + + + host + knowledge.verisign.com.sg + + + host + ssl-certificate-center.verisign.com.sg + + + host + trust-center.verisign.com.sg + + + host + www.verisign.com.sg + + + host + verisign.com.tw + + + host + knowledge.verisign.com.tw + + + host + ssl-certificate-center.verisign.com.tw + + + host + tracking.verisign.com.tw + + + host + trust-center.verisign.com.tw + + + host + www.verisign.com.tw + + + host + verisign.co.jp + + + host + storefront.verisign.co.jp + + + host + www.verisign.co.jp + + + host + verisign.co.nz + + + host + knowledge.verisign.co.nz + + + host + tracking.verisign.co.nz + + + host + www.verisign.co.nz + + + host + verisign.co.uk + + + host + knowledge.verisign.co.uk + + + host + ssl-certificate-center.verisign.co.uk + + + host + trust-center.verisign.co.uk + + + host + www.verisign.co.uk + + + host + verisign.dk + + + host + knowledge.verisign.dk + + + host + ssl-certificate-center.verisign.dk + + + host + trust-center.verisign.dk + + + host + www.verisign.dk + + + host + verisign.de + + + host + knowledge.verisign.de + + + host + ssl-certificate-center.verisign.de + + + host + trust-center.verisign.de + + + host + www.verisign.de + + + host + verisign.es + + + host + knowledge.verisign.es + + + host + ssl-certificate-center.verisign.es + + + host + trust-center.verisign.es + + + host + www.verisign.es + + + host + verisign.fr + + + host + knowledge.verisign.fr + + + host + ssl-certificate-center.verisign.fr + + + host + trust-center.verisign.fr + + + host + www.verisign.fr + + + host + verisign.it + + + host + ssl-certificate-center.verisign.it + + + host + trust-center.verisign.it + + + host + www.verisign.it + + + host + verisign.nl + + + host + www.verisign.nl + + + host + verisign.se + + + host + knowledge.verisign.se + + + host + ssl-certificate-center.verisign.se + + + host + trust-center.verisign.se + + + host + www.verisign.se + + + host + knowledge.verisign-grs.com + + + host + verisigninc.com + + + host + www.verisigninc.com + + + host + verisign-japan-domain.com + + + host + www.verisign-japan-domain.com + + + + + Verified Voting + + ruleset + + name + Verified Voting + rule + + from + ^http://(www\.)?verifiedvoting(foundation)?\.org/ + to + https://$1verifiedvoting$2.org/ + + securecookie + + host + ^(?:www\.)?verifiedvoting(?:foundation)?\.org$ + name + .+ + + target + + + host + verifiedvoting.org + + + host + www.verifiedvoting.org + + + host + verifiedvotingfoundation.org + + + host + www.verifiedvotingfoundation.org + + + + + Verigames.com + + ruleset + + name + Verigames.com + rule + + from + ^http://(www\.)?verigames\.com/ + to + https://$1verigames.com/ + + securecookie + + host + ^\.verigames\.com$ + name + .+ + + target + + + host + verigames.com + + + host + *.verigames.com + + + + + Verio (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?verio\.com/(?!images/|myverio/|order/) + + name + Verio (partial) + rule + + from + ^http://(support\.|www\.)?verio\.com/ + to + https://$1verio.com/ + + target + + + host + verio.com + + + host + *.verio.com + + + + + Verisign Labs.com (partial) + + ruleset + + name + Verisign Labs.com (partial) + rule + + from + ^http://((?:[\w-]+\.dane|lists|pip|svn|tools|www)\.)?verisignlabs\.com/ + to + https://$1verisignlabs.com/ + + target + + + host + verisignlabs.com + + + host + *.verisignlabs.com + + + + + Verivox (partial) + + ruleset + + name + Verivox (partial) + rule + + + from + ^https?://(?:www\.)?verivox\.de/(i/|(?:login|PasswordReset|Register)\.aspx) + to + https://www.verivox.de/$1 + + + from + ^http://(css|img)\.vxcdn\.com/ + to + https://$1.vxcdn.com/ + + + from + ^http://partner\.vxcp\.de/ + to + https://partner.vxcp.de/ + + + securecookie + + host + ^partner\.vxcp\.de$ + name + .+ + + target + + + host + verivox.de + + + host + www.verivox.de + + + host + *.vxcdn.com + + + host + partner.vxcp.de + + + + + Verizon (partial) + + ruleset + + exclusion + + + pattern + ^http://collaborateext(?:stg)?\.verizon\.com/(?:$|\?|aims/main/ext_index\.jsp) + + + pattern + ^http://www22\.verizon\.com/(?:Foryourhome/MyAccount/Unprotected|investor/DocServlet|secure/pages/viewbill)/ + + + pattern + ^http://www98\.verizon\.com/(?:$|\?) + + + pattern + ^http://business\.verizon\.net/.*SMBPortalWeb/login$ + + + name + Verizon (partial) + rule + + + from + ^http://(?:www(?:22)?\.)?verizon\.com/(?:$|\?.*) + to + https://www22.verizon.com/home/verizonglobalhome/ghp_landing.aspx + + + from + ^http://(?:www(22|98)?\.)?verizon\.com/ + to + https://www$1.verizon.com/ + + + from + ^http://(auth|collaborateext(?:stg)?|enterprisecenter|entertainmentlogin|espanol|forums|responsibility|smallbusiness|signon|webmail)\.verizon\.com/ + to + https://$1.verizon.com/ + + + from + ^https?://(?:www\.)?verizon\.net/ + to + https://www.verizon.net/ + + + from + ^http://(static-)?business\.verizon\.net/ + to + https://$1business.verizon.net/ + + + from + ^https?://businessforums\.verizon\.net/html/ + to + https://forums.verizon.com/html/ + + + from + ^https?://(?:www\.)?verizonbusiness\.com/(gfx|support/myaccount|templates)/ + to + https://www.verizonbusiness.com/$1/ + + + securecookie + + + host + ^(?:enterprisecenter|espanol|forums|responsibility|signin|smallbusiness|webmail)\.verizon\.com$ + name + .+ + + + host + ^(?:www\.)?verizon\.net$ + name + .+ + + + target + + + host + verizon.com + + + host + *.verizon.com + + + host + verizon.net + + + host + *.verizon.net + + + host + verizonbusiness.com + + + host + www.verizonbusiness.com + + + + + Verizon Enterprise (partial) + + ruleset + + name + Verizon Enterprise (partial) + rule + + + from + ^http://(?:www\.)?verizonenterprise\.com/Support(?:\?.*)?$ + to + https://www.verizonenterprise.com/Support/ + + + from + ^http://(?:www\.)?verizonenterprise\.com/(gfx|Support|templates)/ + to + https://www.verizonenterprise.com/$1/ + + + target + + + host + verizonenterprise.com + + + host + www.verizonenterprise.com + + + + + Verizon Wireless + + ruleset + + name + Verizon Wireless + rule + + + from + ^https?://(?:www\.)?v(?:erizonwireless|zw)\.com/ + to + https://www.verizonwireless.com/ + + + from + ^http://(aboutus|b2b|billpaysvc|businessportals|community|login|m|mblogin|mediastore|myaccount|news|opennetwork|products|psearch|ringtones|sanalytics|support|videos|wbillpay|wizard|vzwworkshops)\.verizonwireless\.com/ + to + https://$1.verizonwireless.com/ + + + from + ^https?://analytics\.verizonwireless\.com/ + to + https://verizonwireless.112.2o7.net/ + + + from + ^http://(aboutus|alerts|b2b|ecache|espanol2?|mediaimages|picture|text|wallpaper)\.vzw\.com/ + to + https://$1.vzw.com/ + + + from + ^https?://(?:www\.)?(lte|trade-in)\.vzw\.com/ + to + https://www.$1.vzw.com/ + + + from + ^https?://s?(cache|s7)\.vzw\.com/ + to + https://s$1.vzw.com/ + + + securecookie + + + host + ^.*\.verizonwireless\.com$ + name + .+ + + + host + ^.*\.vzw\.com$ + name + .+ + + + target + + + host + verizonwireless.com + + + host + *.verizonwireless.com + + + host + vzw.com + + + host + *.vzw.com + + + + + Verkkomaksut.fi (partial) + + ruleset + + name + Verkkomaksut.fi (partial) + rule + + from + ^http://(img|payment)\.verkkomaksut\.fi/ + to + https://$1.verkkomaksut.fi/ + + securecookie + + host + ^(?:\.?payment)?\.verkkomaksut\.fi$ + name + .+ + + target + + host + *.verkkomaksut.fi + + + + Veronmaksajat + + ruleset + + name + Veronmaksajat + rule + + from + ^http://(?:www\.)?veronmaksajat\.fi/ + to + https://www.veronmaksajat.fi/ + + securecookie + + host + ^www\.veronmaksajat\.fi$ + name + .+ + + target + + + host + veronmaksajat.fi + + + host + www.veronmaksajat.fi + + + + + VersaCart Systems + + ruleset + + name + VersaCart Systems + rule + + from + ^http://(www\.)?versacart\.com/ + to + https://$1versacart.com/ + + securecookie + + host + ^\.versacart\.com$ + name + .+ + + target + + + host + versacart.com + + + host + *.versacart.com + + + + + VersionEye.com + + ruleset + + name + VersionEye.com + rule + + from + ^http://(www\.)?versioneye\.com/ + to + https://$1versioneye.com/ + + securecookie + + host + ^www\.versioneye\.com$ + name + .+ + + target + + + host + versioneye.com + + + host + www.versioneye.com + + + + + Versus Technologies + + ruleset + + name + Versus Technologies + rule + + from + ^http://(\w+\.)?vstech\.net/ + to + https://$1vstech.net/ + + securecookie + + host + ^(.*\.)?vstech\.net$ + name + .* + + target + + + host + vstech.net + + + host + *.vstech.net + + + + + Vertical Acuity (partial) + + ruleset + + name + Vertical Acuity (partial) + rule + + from + ^https?://scripts\.verticalacuity\.com/ + to + https://d2frbsrahs9p5r.cloudfront.net/ + + target + + host + scripts.verticalacuity.com + + + + Vertical Media (partial) + + ruleset + + name + Vertical Media (partial) + rule + + from + ^http://mail\.verticalmedia\.com/ + to + https://mail.verticalmedia.com/ + + target + + host + mail.verticalmedia.com + + + + Vertical Web Media + + ruleset + + name + Vertical Web Media + platform + mixedcontent + rule + + from + ^http://(?:www\.)?internetretailer\.com/ + to + https://www.internetretailer.com/ + + securecookie + + host + ^(.*\.)?internetretailer\.com$ + name + .* + + target + + + host + internetretailer.com + + + host + *.internetretailer.com + + + + + VerticalResponse + + ruleset + + name + VerticalResponse + rule + + from + ^http://cts\.vresp\.com/ + to + https://cts.vresp.com/ + + target + + host + cts.vresp.com + + + + Vertriebsassistent.de (partial) + + ruleset + + name + Vertriebsassistent.de (partial) + rule + + from + ^http://(app|stats)\.vertriebsassistent\.de/ + to + https://$1.vertriebsassistent.de/ + + securecookie + + host + ^stats\.vertriebsassistent\.de$ + name + .+ + + target + + host + *.vertriebsassistent.de + + + + Veruta.com + + ruleset + + name + Veruta.com + rule + + from + ^http://(adserver|w\.p)\.veruta\.com/ + to + https://$1.veruta.com/ + + target + + host + *.veruta.com + + + + Verve Hosting (partial) + + ruleset + + name + Verve Hosting (partial) + rule + + + from + ^http://(?:www\.)?vervehosting\.com/ + to + https://vervehosting.com/ + + + from + ^http://(cms|hudson)\.vervehosting\.com/ + to + https://$1.vervehosting.com/ + + + securecookie + + host + ^cms\.vervehosting\.com$ + name + .+ + + target + + + host + vervehosting.com + + + host + *.vervehosting.com + + + + + Verwaltung Online + + ruleset + + name + Verwaltung Online + rule + + from + ^http://(www\.)?bund\.de/ + to + https://$1bund.de/ + + securecookie + + host + ^(?:www\.)?bund\.de$ + name + .+ + + target + + + host + bund.de + + + host + www.bund.de + + + + + Verzekeringssite.nl (partial) + + ruleset + + name + Verzekeringssite.nl (partial) + rule + + from + ^https?://(?:www\.)?verzekeringssite\.nl/(?!blog) + to + https://www.verzekeringssite.nl/ + + securecookie + + host + ^(?:www)?\.verzekeringssite\.nl$ + name + .+ + + target + + + host + verzekeringssite.nl + + + host + *.verzekeringssite.nl + + + + + Vesess (partial) + + ruleset + + name + Vesess (partial) + rule + + from + ^http://app\.curdbee\.com/ + to + https://app.curdbee.com/ + + securecookie + + host + ^\w+\.curdbee\.com$ + name + .* + + target + + host + app.curdbee.com + + + + Vesica + + ruleset + + name + Vesica + platform + mixedcontent + rule + + from + ^http://(www\.)?vesica\.ws/ + to + https://$1vesica.ws/ + + securecookie + + host + ^vesica\.ws$ + name + .* + + target + + + host + vesica.ws + + + host + www.vesica.ws + + + + + Vesper Marine + + ruleset + + name + Vesper Marine + rule + + from + ^http://(www\.)?vespermarine\.co(m\.au|\.nz|\.uk)/ + to + https://$1vespermarine.co$2/ + + securecookie + + host + ^\.vespermarine\.co(?:m\.au|\.nz|\.uk)$ + name + .+ + + target + + + host + vespermarine.com.au + + + host + *.vespermarine.com.au + + + host + vespermarine.co.* + + + host + *.vespermarine.co.nz + + + host + *.vespermarine.co.uk + + + + + Vessel + + ruleset + + name + Vessel + rule + + from + ^http://(www\.)?vesselbags\.com/ + to + https://$1vesselbags.com/ + + securecookie + + host + ^\.vesselbags\.com$ + name + .+ + + target + + + host + vesselbags.com + + + host + *.vesselbags.com + + + + + ViaMichelin.com (partial) + + ruleset + + name + ViaMichelin.com (partial) + rule + + from + ^http://(ccu|download|webservices)\.viamichelin\.com/ + to + https://$1.viamichelin.com/ + + securecookie + + host + ^download\.viamichelin\.com$ + name + .+ + + target + + host + *.viamichelin.com + + + + Viacom + + ruleset + + name + Viacom + rule + + + from + ^http://secure\.iphone\.mtvn\.com/ + to + https://secure.iphone.mtvn.com/ + + + from + ^http://(api|specials|videos)\.mtvnn\.com/ + to + https://$1.mtvnn.com/ + + + from + ^http://btg\.mtvnservices\.com/ + to + https://btg.mtvnservices.com/ + + + target + + + host + secure.iphone.mtvn.com + + + host + *.mtvnn.com + + + host + btg.mtvnservices.com + + + + + Viaverio.com + + ruleset + + name + Viaverio.com + rule + + from + ^http://(?:www\.)?viaverio\.com/ + to + https://www.viaverio.com/ + + securecookie + + host + ^(.*\.)?viaverio\.com$ + name + .* + + target + + + host + viaverio.com + + + host + www.viaverio.com + + + + + Viber (partial) + + ruleset + + name + Viber (partial) + rule + + + from + ^http://(?:www\.)?viber\.com/ + to + https://www.viber.com/ + + + from + ^http://(?:helpme|support)\.viber\.com/ + to + https://viber.kayako.com/ + + + target + + + host + viber.com + + + host + *.viber.com + + + + + Vibrant + + ruleset + + name + Vibrant + rule + + from + ^http://(www\.)?vibrantmedia\.com/ + to + https://$1vibrantmedia.com/ + + securecookie + + host + ^(www\.)?vibrantmedia\.com$ + name + .* + + target + + + host + vibrantmedia.com + + + host + www.vibrantmedia.com + + + + + Vice (partial) + + ruleset + + exclusion + + pattern + ^http://motherboard\.vice\.com/+(?!assets/(?:favicon|font|image)s/) + + name + Vice (partial) + rule + + + from + ^http://assets\.motherboard\.tv/ + to + https://dz6snzmhpcl6f.cloudfront.net/ + + + from + ^http://assets2\.motherboard\.tv/ + to + https://d7qfuicnb8zug.cloudfront.net/ + + + from + ^http://assets\.noisey\.cn/ + to + https://d1ymkg0yqrfr5q.cloudfront.net/ + + + from + ^http://assets\.noisey\.com/ + to + https://d19o6jcqbnxtyy.cloudfront.net/ + + + from + ^http://assets\.thecreatorsproject\.com/ + to + https://dm07ef02yemve.cloudfront.net/ + + + from + ^http://assets\.vice\.com/ + to + https://d1qzzfctbfyh6r.cloudfront.net/ + + + from + ^http://assets-i-d\.vice\.com/ + to + https://d1wzhalc7g55g3.cloudfront.net/ + + + from + ^http://((?:assets-(?:news|sports)|assets2|embeds|images|munchies|news|noisey|socials|sports|staging-assets-news|thump|www)\.)?vice\.com/ + to + https://$1vice.com/ + + + from + ^http://motherboard(-cdn-assets)?\.vice\.com/ + to + https://a248.e.akamai.net/f/248/4735/10/motherboard$1.vice.com/ + + + from + ^http://assets\.thump\.vice\.com/ + to + https://df5qbu832tmne.cloudfront.net/ + + + target + + + host + *.motherboard.tv + + + host + assets.noisey.* + + + host + assets.thecreatorsproject.com + + + host + vice.com + + + host + *.vice.com + + + + + Victor Chandler International + + ruleset + + name + Victor Chandler International + rule + + + from + ^http://betvictor\.com/ + to + https://www.betvictor.com/ + + + from + ^http://www\.betvictor\.com/(images/|[\w/]+/account/new) + to + https://www.betvictor.com/$1 + + + from + ^http://assets([123])\.image-repository\.com/ + to + https://assets$1.image-repository.com/ + + + from + ^http://vcint\.com/ + to + https://vcint.com/ + + + from + ^http://(?:webmail|www)\.vcint\.com/ + to + https://webmail.vcint.com/ + + + from + ^http://banners\.victor\.com/ + to + https://banners.victor.com/ + + + securecookie + + + host + ^(.*\.)?banners\.victor\.com$ + name + .* + + + host + ^webmail\.vcint\.com$ + name + .* + + + target + + + host + betvictor.com + + + host + www.betvictor.com + + + host + *.image-repository.com + + + host + vcint.com + + + host + *.vcint.com + + + host + banners.victor.com + + + host + *.banners.victor.com + + + + + VictorOps.com + + ruleset + + name + VictorOps.com + rule + + from + ^http://(portal\.|www\.)?victorops\.com/ + to + https://$1victorops.com/ + + securecookie + + host + ^\.victorops\.com$ + name + .+ + + target + + + host + victorops.com + + + host + *.victorops.com + + + + + Victoria's Secret (partial) + + ruleset + + name + Victoria's Secret (partial) + rule + + + from + ^http://((?:dm|secure|secure-media|www)\.)?victoriassecret\.com/ + to + https://$1victoriassecret.com/ + + + from + ^http://espanol\.victoriassecret\.com/.* + to + https://www.victoriassecret.com/ + + + securecookie + + host + ^(?:espanol|secure|www)?\.victoriassecret\.com$ + name + .+ + + target + + + host + victoriassecret.com + + + host + *.victoriassecret.com + + + + + Victorias Secret Canada.ca + + ruleset + + name + Victorias Secret Canada.ca + rule + + from + ^http://(www\.)?victoriassecretcanada\.ca/ + to + https://$1victoriassecretcanada.ca/ + + securecookie + + host + ^(?:www\.)?victoriassecretcanada\.ca$ + name + .+ + + target + + + host + victoriassecretcanada.ca + + + host + www.victoriassecretcanada.ca + + + + + Victorinox + + ruleset + + name + Victorinox + rule + + + from + ^https?://victorinox\.com/ + to + https://www.victorinox.com/ + + + from + ^https?://(images|static|www\.)?victorinox\.com/ + to + https://$1victorinox.com/ + + + target + + + host + victorinox.com + + + host + *.victorinox.com + + + + + Vid.ly (partial) + + ruleset + + name + Vid.ly (partial) + rule + + + from + ^http://(?:(m\.)|www\.)?vid\.ly/ + to + https://$1vid.ly/ + + + from + ^http://cf\.cdn\.vid\.ly/ + to + https://d3fenhwk93s16g.cloudfront.net/ + + + from + ^http://s\.vid\.ly/ + to + https://d132d9vcg4o0oh.cloudfront.net/ + + + securecookie + + host + \.vid\.ly$ + name + .+ + + target + + + host + vid.ly + + + host + *.vid.ly + + + + + Vid.me + + ruleset + + name + Vid.me + rule + + from + ^http://(www\.)?vid\.me/ + to + https://$1vid.me/ + + securecookie + + host + ^\.vid\.me$ + name + .+ + + target + + + host + vid.me + + + host + *.vid.me + + + + + VidStore (partial) + + ruleset + + name + VidStore (partial) + rule + + from + ^http://ads\.vidstore\.com/ + to + https://ads.vidstore.com/ + + securecookie + + host + ^ads\.vidstore\.com$ + name + .+ + + target + + host + ads.vidstore.com + + + + Vida y Salud.com (partial) + + ruleset + + name + Vida y Salud.com (partial) + rule + + from + ^http://(?:www\.)?vidaysalud\.com/wp-content/ + to + https://www.vidaysalud.com/wp-content/ + + target + + + host + vidaysalud.com + + + host + www.vidaysalud.com + + + + + Vidahost (partial) + + ruleset + + name + Vidahost (partial) + rule + + from + ^http://(my\.|www\.)?vidahost\.com/ + to + https://$1vidahost.com/ + + securecookie + + host + ^(?:my|www)\.vidahost\.com$ + name + .+ + + target + + + host + vidahost.com + + + host + *.vidahost.com + + + + + Vidble.com + + ruleset + + name + Vidble.com + rule + + from + ^http://(www\.)?vidble\.com/ + to + https://$1vidble.com/ + + securecookie + + host + ^(?:www\.)?vidble\.com$ + name + .+ + + target + + + host + vidble.com + + + host + www.vidble.com + + + + + Viddler.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?viddler\.com/(?!embed/|favicon\.ico|login(?:$|[?/])|mini/|plans|vidgets/) + + name + Viddler.com (partial) + rule + + + from + ^http://((?:\w+\.cdn-ec|cdn-static(?:-\d\d)?|cdn-thumbs|support|www)\.)?viddler\.com/ + to + https://$1viddler.com/ + + + from + ^http://vidgets\.viddler\.com/(?=\?.*)$ + to + https://www.viddler.com/vidgets/ + + + securecookie + + host + ^(?:support|www)\.viddler\.com$ + name + .+ + + target + + + host + viddler.com + + + host + *.viddler.com + + + + + Video Aided Instruction + + ruleset + + name + Video Aided Instruction + rule + + from + ^http://(?:www\.)?videoaidedinstruction\.com/ + to + https://www.videoaidedinstruction.com/ + + securecookie + + host + ^www\.videoaidedinstruction\.com$ + name + .+ + + target + + + host + videoaidedinstruction.com + + + host + www.videoaidedinstruction.com + + + + + Video Dean + + ruleset + + name + Video Dean + rule + + from + ^http://(www\.)?video-dean\.com/ + to + https://$1video-dean.com/ + + securecookie + + host + ^(?:www)?\.video-dean\.com$ + name + .+ + + target + + + host + video-dean.com + + + host + *.video-dean.com + + + + + VideoBloom.com (partial) + + ruleset + + name + VideoBloom.com (partial) + rule + + from + ^http://my\.videobloom\.com/ + to + https://my.videobloom.com/ + + target + + host + my.videobloom.com + + + + VideoHub.tv (partial) + + ruleset + + name + VideoHub.tv (partial) + rule + + from + ^http://(data|marketplace|portal|publishers)\.videohub\.tv/ + to + https://$1.videohub.tv/ + + securecookie + + host + ^(?:data|marketplace|\.?portal)\.videohub\.tv$ + name + .+ + + target + + host + *.videohub.tv + + + + VideoLAN (partial) + + ruleset + + name + VideoLAN (partial) + rule + + + from + ^http://((?:forum|get|git|images1?|mailman|munin|trac|wiki|www1?)\.)?videolan\.org/ + to + https://$1videolan.org/ + + + from + ^http://(?:ganesh|rsync|stats)\.videolan\.org/$ + to + https://www.videolan.org/ + + + securecookie + + host + (?:.*\.)?videolan\.org$ + name + .+ + + target + + + host + videolan.org + + + host + *.videolan.org + + + + + VideoPP.com (partial) + + ruleset + + name + VideoPP.com (partial) + rule + + from + ^http://(?:www\.)?videopp\.com/ + to + https://videopp.com/ + + securecookie + + host + ^videopp\.com$ + name + .+ + + target + + + host + videopp.com + + + host + www.videopp.com + + + + + VideoPros + + ruleset + + name + VideoPros + rule + + from + ^http://(www\.)?videopros\.com/ + to + https://$1videopros.com/ + + securecookie + + host + ^(?:www\.)?videopros\.com$ + name + .+ + + target + + + host + videopros.com + + + host + www.videopros.com + + + + + Videodroid.org + + ruleset + + name + Videodroid.org + rule + + from + ^http://(www\.)?videodroid\.org/ + to + https://www.videodroid.org/ + + target + + + host + videodroid.org + + + host + www.videodroid.org + + + + + Videoemail.com + + ruleset + + name + Videoemail.com + rule + + from + ^http://sc\.videoemail\.com/ + to + https://sc.videoemail.com/ + + securecookie + + host + ^sc\.videoemail\.com$ + name + .+ + + target + + host + sc.videoemail.com + + + + Videoplaza.tv (partial) + + ruleset + + name + Videoplaza.tv (partial) + rule + + from + ^http://(www\.)?videoplaza\.tv/ + to + https://$1videoplaza.tv/ + + target + + + host + videoplaza.tv + + + host + www.videoplaza.tv + + + + + Videotron.com (mixed content) + + ruleset + + name + Videotron.com (mixed content) + platform + mixedcontent + rule + + from + ^http://illicoweb\.videotron\.com/ + to + https://illicoweb.videotron.com/ + + securecookie + + host + ^illicoweb\.videotron\.com$ + name + .+ + + target + + host + illicoweb.videotron.com + + + + Videotron.com (partial) + + ruleset + + name + Videotron.com (partial) + rule + + + from + ^http://courrielweb\.videotron\.ca/ + to + https://courrielweb.videotron.ca/ + + + from + ^http://(?:www\.)?videotron\.com/(client|resources|vcom)/ + to + https://www.videotron.com/$1/ + + + from + ^http://clavardage\.videotron\.com/ + to + https://clavardage.videotron.com/ + + + securecookie + + + host + ^courrielweb\.videotron\.ca$ + name + .+ + + + host + ^clavardage\.videotron\.com$ + name + .+ + + + target + + + host + courrielweb.videotron.ca + + + host + videotron.com + + + host + *.videotron.com + + + + + Vidi Emi (partial) + + ruleset + + name + Vidi Emi (partial) + rule + + from + ^http://snap\.vidiemi\.com/ + to + https://snap.vidiemi.com/ + + securecookie + + host + ^snap\.vidiemi\.com$ + name + .+ + + target + + host + snap.vidiemi.com + + + + Vidup.me (fales MCB) + + ruleset + + name + Vidup.me (fales MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?vidup\.me/ + to + https://$1vidup.me/ + + securecookie + + host + ^\.vidup\.me$ + name + .+ + + target + + + host + vidup.me + + + host + *.vidup.me + + + + + Vidup.me (partial) + + ruleset + + name + Vidup.me (partial) + rule + + from + ^http://(www\.)?vidup\.me/(?=css/|favicon\.ico|images/|main\.css) + to + https://$1vidup.me/ + + target + + + host + vidup.me + + + host + www.vidup.me + + + + + Vidyard (partial) + + ruleset + + name + Vidyard (partial) + rule + + + from + ^https?://(?:secure\.|www\.)?vidyard\.com/ + to + https://secure.vidyard.com/ + + + from + ^http://(embed|play)\.vidyard\.com/ + to + https://$1.vidyard.com/ + + + securecookie + + host + ^seure\.vidyard\.com$ + name + .+ + + target + + + host + vidyard.com + + + host + *.vidyard.com + + + + + Vie Pratique.fr (partial) + + ruleset + + name + Vie Pratique.fr (partial) + rule + + + from + ^http://(?:sf\d\.|www\.)?viepratique\.fr/ + to + https://www.viepratique.fr/ + + + from + ^http://gourmand\.viepratique\.fr/ + to + https://gourmand.viepratique.fr/ + + + securecookie + + host + ^(?:gourmand|www)?\.viepratique\.fr$ + name + .+ + + target + + + host + viepratique.fr + + + host + *.viepratique.fr + + + + + Vienna University of Technology (partial) + + ruleset + + exclusion + + pattern + ^http://www.zid\.tuwien\.ac\.at/sts/(?!campussoftware|studentensoftware) + + name + Vienna University of Technology (partial) + rule + + + from + ^http://(?:www\.)?tuwien\.ac\.at/ + to + https://www.tuwien.ac.at/ + + + from + ^http://(mail|pop|mail\.student|webmail|(?:ui|www)\.zid|(?:mail|webstats)\.zserv)\.tuwien\.ac\.at/ + to + https://$1.tuwien.ac.at/ + + + securecookie + + host + ^(?:\.mail\.student|\.webmail|www)\.tuwien\.ac\.at$ + name + .+ + + target + + + host + tuwien.ac.at + + + host + *.tuwien.ac.at + + + + + View Central.com (partial) + + ruleset + + name + View Central.com (partial) + rule + + from + ^http://(admin|inter)\.viewcentral\.com/ + to + https://$1.viewcentral.com/ + + securecookie + + host + ^(?:admin|inter)\.viewcentral\.com$ + name + .+ + + target + + host + *.viewcentral.com + + + + VigLink + + ruleset + + name + VigLink + rule + + + from + ^http://(api\.|www\.)?viglink\.com/ + to + https://$1viglink.com/ + + + from + ^http://(?:api)?cdn\.viglink\.com/ + to + https://dp2drdtly304p.cloudfront.net/ + + + from + ^http://support\.viglink\.com/(assets|generated|images|registration|system)/ + to + https://viglink.zendesk.com/$1/ + + + securecookie + + host + ^.*\.viglink\.com$ + name + .* + + target + + + host + viglink.com + + + host + *.viglink.com + + + + + VikingVPN.com + + ruleset + + name + VikingVPN.com + rule + + + from + ^http://vikingvpn\.com/ + to + https://vikingvpn.com/ + + + from + ^http://www\.vikingvpn\.com/+(?=\?.+) + to + https://vikingvpn.com/ + + + from + ^http://www\.vikingvpn\.com/.* + to + https://vikingvpn.com/ + + + securecookie + + host + ^vikingvpn\.com$ + name + .+ + + target + + + host + vikingvpn.com + + + host + www.vikingvpn.com + + + + + Villa Saint Exupéry (partial) + + ruleset + + name + Villa Saint Exupéry (partial) + rule + + from + ^https?://(?:www\.)?villahostels\.com/(c-css\.php|images/|themes/|[\w\-]+\.dimg$) + to + https://www.villahostels.com/$1 + + target + + + host + villahostels.com + + + host + www.villahostels.com + + + + + Vimention.com (partial) + + ruleset + + name + Vimention.com (partial) + rule + + + from + ^http://(www\.)?vimention\.com/ + to + https://vimention.com/ + + + from + ^http://(users|pictures|static-eu1|static)\.vimention\.com/ + to + https://$1.vimention.com/ + + + from + ^https?://(www\.)?vimention\.mobi/ + to + https://m.vimention.com/ + + + target + + + host + vimention.com + + + host + www.vimention.com + + + host + static.vimention.com + + + host + static-eu1.vimention.com + + + host + pictures.vimention.com + + + host + users.vimention.com + + + host + vimention.mobi + + + host + www.vimention.mobi + + + + + Vin DiCarlo (partial) + + ruleset + + name + Vin DiCarlo (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?(secure\.)?3questionsgetthegirl\.com/ + to + https://$13questionsgetthegirl.com/ + + securecookie + + host + ^(.*\.)?3questionsgetthegirl\.com$ + name + .* + + target + + + host + 3questionsgetthegirl.com + + + host + *.3questionsgetthegirl.com + + + + + Vindico suite.com + + ruleset + + name + Vindico suite.com + rule + + from + ^http://(mpp|www)\.vindicosuite\.com/ + to + https://$1.vindicosuite.com/ + + target + + host + *.vindicosuite.com + + + + Vine.co + + ruleset + + name + Vine.co + rule + + from + ^http://(v\.cdn\.|www\.)?vine\.co/ + to + https://$1vine.co/ + + target + + + host + vine.co + + + host + *.vine.co + + + + + Violet Darkling.com + + ruleset + + name + Violet Darkling.com + rule + + from + ^http://(www\.)?violetdarkling\.com/ + to + https://$1violetdarkling.com/ + + securecookie + + host + ^\.(?:www\.)?violetdarkling\.com$ + name + .+ + + target + + + host + violetdarkling.com + + + host + *.violetdarkling.com + + + + + Violet Indigo + + ruleset + + name + Violet Indigo + rule + + from + ^https?://(?:static2?\.|(www\.))?violetindigo\.com\.au/ + to + https://$1violetindigo.com.au/ + + securecookie + + host + ^(?:www)?\.violetindigo\.com\.au$ + name + .+ + + target + + + host + violetindigo.com.au + + + host + *.violetindigo.com.au + + + + + VipCell + + ruleset + + name + VipCell + rule + + from + ^http://(www\.)?vipcell\.com\.tr/ + to + https://www.vipcell.com.tr/ + + securecookie + + host + ^(www\.)?vipcell\.com\.tr$ + name + .* + + target + + + host + vipcell.com.tr + + + host + www.vipcell.com.tr + + + + + Vippy.co + + ruleset + + name + Vippy.co + rule + + + from + ^http://(?:www\.)?vippy\.co/ + to + https://vippy.co/ + + + from + ^http://cdn1\.vippy\.co/ + to + https://s1r30b2exd0ux4.cloudfront.net/ + + + from + ^http://cdn2\.vippy\.co/ + to + https://d19noydrgsp9ie.cloudfront.net/ + + + from + ^http://cdn3\.vippy\.co/ + to + https://s2u565w4df8lrm.cloudfront.net/ + + + from + ^http://cdn4\.vippy\.co/ + to + https://dfe23o0oezpl4.cloudfront.net/ + + + securecookie + + host + ^\.?vippy\.co$ + name + .+ + + target + + + host + vippy.co + + + host + *.vippy.co + + + + + VirWoX.com + + ruleset + + name + VirWoX.com + rule + + from + ^http://(?:www\.)?virwox\.com/ + to + https://www.virwox.com/ + + securecookie + + host + ^(?:www\.)?virwox\.com$ + name + .+ + + target + + + host + virwox.com + + + host + www.virwox.com + + + + + Virgin Australia + + ruleset + + name + Virgin Australia + rule + + + from + ^http://virginaustralia\.com/ + to + https://www.virginaustralia.com/ + + + from + ^http://(insurance|www)\.virginaustralia\.com/ + to + https://$1.virginaustralia.com/ + + + target + + + host + virginaustralia.com + + + host + *.virginaustralia.com + + + + + Virgin Media.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?virginmedia\.com/(?!favicon\.ico|images/|img/|styles/) + + + pattern + ^http://onlinemovies\.virginmedia\.com/(?!App_Themes/|[cC]ommon/|COMMON/|favicon\.ico|js/|rfc\d+\.gif|WebResource\.axd) + + + pattern + ^http://store\.virginmedia\.com/(?!assets/|content/|etc/|images/|includes/) + + + name + Virgin Media.com (partial) + rule + + + from + ^http://(?:static-content\.|www\.)?virginmedia\.com/ + to + https://www.virginmedia.com/ + + + from + ^http://(allyours|da|help|identity|mail|my|national|onlinemovies|store)\.virginmedia\.com/ + to + https://$1.virginmedia.com/ + + + securecookie + + + host + ^\.virginmedia\.com$ + name + ^(?:gpv_p\w|s_\w+)$ + + + host + ^(?:da|help|identity|my|national)\.virginmedia\.com$ + name + .+ + + + target + + + host + virginmedia.com + + + host + *.virginmedia.com + + + + + Virgin Mobile + + ruleset + + name + Virgin Mobile + rule + + + from + ^https?://(?:www(1)?\.)?virginmobileusa\.com/ + to + https://www$1.virginmobileusa.com/ + + + from + ^http://(espanol|origin-www-ls|shop)\.virginmobileusa\.com/ + to + https://$1.virginmobileusa.com/ + + + from + ^https?://newsroom\.virginmobileusa\.com/sites/ + to + https://virginmobileusa.newshq.businesswire.com/sites/ + + + from + ^http://www\.virginmobile\.com\.au/ + to + https://www.virginmobile.com.au/ + + + securecookie + + host + ^.*\.virginmobileusa\.com$ + name + .* + + target + + + host + virginmobileusa.com + + + host + *.virginmobileusa.com + + + host + www.virginmobile.com.au + + + + + Virginia Mason Hospital & Medical Center + + ruleset + + name + Virginia Mason Hospital & Medical Center + rule + + from + ^http(?:://(?:www\.)?|s://)virginiamason\.org/ + to + https://www.virginiamason.org/ + + securecookie + + host + ^(.*\.)?virginiamason\.org$ + name + .+ + + target + + + host + virginiamason.org + + + host + www.virginiamason.org + + + + + VirtKick.io + + ruleset + + name + VirtKick.io + rule + + from + ^http://(www\.)?virtkick\.io/ + to + https://$1virtkick.io/ + + securecookie + + host + ^(?:\.|www\.)?virtkick\.io$ + name + .+ + + target + + + host + virtkick.io + + + host + *.virtkick.io + + + + + Virtual News Center + + ruleset + + name + Virtual News Center + rule + + + from + ^http://(www\.)?virtualnewscenter\.com/ + to + https://$1virtualnewscenter.com/ + + + from + ^http://virtualnewscenter\.wpengine\.netdna-cdn\.com/ + to + https://virtualnewscenter.com/ + + + securecookie + + host + ^\.virtualnewscenter.com$ + name + .+ + + target + + + host + virtualnewscenter.wpengine.netdna-cdn.com + + + host + virtualnewscenter.com + + + host + *.virtualnewscenter.com + + + + + Virtual Privacy Office + + ruleset + + name + Virtual Privacy Office + rule + + from + ^http://(?:www\.)?datenschutz\.de/ + to + https://www.datenschutz.de/ + + target + + + host + datenschutz.de + + + host + www.datenschutz.de + + + + + Virtual Sprits + + ruleset + + name + Virtual Sprits + rule + + from + ^http://(www\.)?virtualspirits\.com/ + to + https://$1virtualspirits.com/ + + securecookie + + host + ^(?:www\.)?virtualspirits\.com$ + name + .+ + + target + + + host + virtualspirits.com + + + host + www.virtualspirits.com + + + + + Virtual-Server.org + + ruleset + + name + Virtual-Server.org + rule + + from + ^http://(www\.)?virtual-server\.org/ + to + https://$1virtual-server.org/ + + target + + + host + virtual-server.org + + + host + www.virtual-server.org + + + + + VirtualBox + + ruleset + + name + VirtualBox + rule + + + from + ^http://(?:www\.)?virtualbox\.org/ + to + https://www.virtualbox.org/ + + + from + ^http://forums\.virtualbox\.org/ + to + https://forums.virtualbox.org/ + + + securecookie + + host + ^(?:\.forums|www)\.virtualbox\.org$ + name + .+ + + target + + + host + virtualbox.org + + + host + *.virtualbox.org + + + + + VirtualTourist (partial) + + ruleset + + exclusion + + pattern + ^http://members\.virtualtourist\.com/(?!_assets/|m/j/|m/nl/) + + name + VirtualTourist (partial) + rule + + + from + ^https?://(?:www\.)?virtualtourist\.com/ajax/ + to + https://www.virtualtourist.com/ajax/ + + + from + ^http://(meetings|members|vpn)\.virtualtourist\.com/ + to + https://$1.virtualtourist.com/ + + + from + ^https?://(?:(?:cdn\d|p).v|(?:cache|p)\.virtual)tourist.com/ + to + https://members.virtualtourist.com/_assets/ + + + securecookie + + host + ^vpn\.virtualtourist\.com$ + name + .+ + + target + + + host + *.vtourist.com + + + host + *.virtualtourist.com + + + + + Virus Bulletin + + ruleset + + name + Virus Bulletin + rule + + from + ^https?://(?:www\.)?virusbtn\.com/ + to + https://www.virusbtn.com/ + + securecookie + + host + ^www\.virusbtn\.com$ + name + .+ + + target + + + host + virusbtn.com + + + host + www.virusbtn.com + + + + + VirusTotal + + ruleset + + name + VirusTotal + rule + + from + ^http://(?:www\.)?virustotal\.com/ + to + https://www.virustotal.com/ + + securecookie + + host + ^www\.virustotal\.com$ + name + .+ + + target + + + host + virustotal.com + + + host + www.virustotal.com + + + + + Virusec.com + + ruleset + + name + Virusec.com + rule + + + from + ^http://www\.escan\.com/ + to + https://www.virusec.com/ + + + from + ^http://escan\.com/ + to + https://www.virusec.com/ + + + from + ^http://virusec\.com/ + to + https://www.virusec.com/ + + + from + ^http://www\.virusec\.com/ + to + https://www.virusec.com/ + + + target + + + host + www.escan.com + + + host + escan.com + + + host + www.virusec.com + + + host + virusec.com + + + + + Visa (partial) + + ruleset + + name + Visa (partial) + rule + + + from + ^https?://(?:www\.)?visa\.com/ + to + https://www.visa.com/ + + + from + ^http://corporate\.visa\.com/_(cs|image)s/ + to + https://corporate.visa.com/_$1s/ + + + from + ^http://usa\.visa\.com/(css|ext|img|merchants)/ + to + https://usa.visa.com/$1/ + + + downgrade + 1 + from + ^https://usa\.visa\.com/(?=about_visa/|download/|personal/|sitewide/) + to + http://usa.visa.com/ + + + target + + + host + visa.com + + + host + *.visa.com + + + + + Visa Buxx.com (partial) + + ruleset + + name + Visa Buxx.com (partial) + rule + + + from + ^http://(?:www\.)?visabuxx\.com/$ + to + https://usa.visa.com/personal/cards/prepaid/visa_buxx.html + + + from + ^http://usbank\.visabuxx\.com/ + to + https://usbank.visabuxx.com/ + + + securecookie + + host + ^usbank\.visabuxx\.com$ + name + .+ + + target + + + host + visabuxx.com + + + host + *.visabuxx.com + + + + + Visa Europe (partial) + + ruleset + + name + Visa Europe (partial) + rule + + from + ^https?://(?:www\.)?visaeurope\.com/(\w\w/idoc\.ashx|\w\w/member_area\.aspx|assets|favicon\.ico|plugins|templates|WebResource\.axd)($|\?|/) + to + https://www.visaeurope.com/$1$2 + + target + + + host + visaeurope.com + + + host + www.visaeurope.com + + + + + Visa to Vietnam + + ruleset + + name + Visa to Vietnam + rule + + from + ^http://(www\.)?visatovietnam\.org/ + to + https://$1visatovietnam.org/ + + securecookie + + host + ^(?:w*\.)?visatovietnam\.org$ + name + .+ + + target + + + host + visatovietnam.org + + + host + *.visatovietnam.org + + + + + VisaHQ + + ruleset + + name + VisaHQ + rule + + + from + ^https?://visahq\.com/ + to + https://www.visahq.com/ + + + from + ^http://([^/:@]+)?\.visahq\.com/ + to + https://$1.visahq.com/ + + + target + + + host + visahq.com + + + host + www.visahq.com + + + + + Visaforchina.org + + ruleset + + name + Visaforchina.org + rule + + + from + ^https?://visaforchina\.org/ + to + https://www.visaforchina.org/ + + + from + ^http://([^/:@]+)?\.visaforchina\.org/ + to + https://$1.visaforchina.org/ + + + target + + + host + visaforchina.org + + + host + www.visaforchina.org + + + + + Visalia Times-Delta + + ruleset + + name + Visalia Times-Delta + rule + + + from + ^http://(?:cmsimg\.|www\.)?visaliatimesdelta\.com/ + to + https://www.visaliatimesdelta.com/ + + + from + ^http://advertise\.visaliatimesdelta\.com/ + to + https://advertise.visaliatimesdelta.com/ + + + from + ^http://deals\.visaliatimesdelta\.com/ + to + https://visalia.planetdiscover.com/ + + + securecookie + + host + ^.+\.visaliatimesdelta\.com$ + name + .+ + + target + + + host + visaliatimesdelta.com + + + host + *.visaliatimesdelta.com + + + + + VisiStat.com (partial) + + ruleset + + name + VisiStat.com (partial) + rule + + + from + ^http://(?:www\.)?sa-as\.com/tracking/ + to + https://www.visistat.com/tracking/ + + + from + ^http://(sniff\.|www\.)?visistat\.com/ + to + https://$1visistat.com/ + + + from + ^http://s(?:niff|tats)\.visistat\.com/ + to + https://sniff.visistat.com/ + + + from + ^http://demo\.visistat\.com/ + to + https://www.visistat.com/demo-login.php + + + securecookie + + host + ^(?:www\.)?visistat\.com$ + name + .+ + + target + + + host + sa-as.com + + + host + www.sa-as.com + + + host + visistat.com + + + host + *.visistat.com + + + + + Visiba.com + + ruleset + + name + Visiba.com + rule + + from + ^http://(www\.)?visiba\.com/ + to + https://$1visiba.com/ + + securecookie + + host + ^www\.visiba\.com$ + name + ^ + + target + + + host + visiba.com + + + host + www.visiba.com + + + + + Visible Measures (partial) + + ruleset + + name + Visible Measures (partial) + rule + + + from + ^http://(auth|cdn)\.visiblemeasures\.com/ + to + https://$1.visiblemeasures.com/ + + + from + ^https?://(?:od2|video\.od)\.visiblemeasures\.com/ + to + https://video.od.visiblemeasures.com/ + + + from + ^http://(?:www\.)?viewablemedia\.net/ + to + https://www.viewablemedia.net/ + + + from + ^http://ad\.viewablemedia\.net/ + to + https://ad.viewablemedia.net/ + + + securecookie + + host + ^auth\.visiblemeasures\.com$ + name + .+ + + target + + + host + *.visiblemeasures.com + + + host + viewablemedia.net + + + host + *.viewablemedia.net + + + + + Visible Technologies + + ruleset + + name + Visible Technologies + rule + + from + ^http://(www\.)?visibletechnologies\.com/ + to + https://$1visibletechnologies.com/ + + securecookie + + host + ^\.visibletechnologies\.com$ + name + .+ + + target + + + host + visibletechnologies.com + + + host + *.visibletechnologies.com + + + + + VisibleGains.com (partial) + + ruleset + + name + VisibleGains.com (partial) + rule + + from + ^http://(my|player)\.visiblegains\.com/ + to + https://$1.visiblegains.com/ + + securecookie + + host + ^my\.visiblegains\.com$ + name + .+ + + target + + host + *.visiblegains.com + + + + Vision Airlines + + ruleset + + name + Vision Airlines + rule + + from + ^http://(?:www\.)?visionairlines\.com/ + to + https://www.visionairlines.com/ + + target + + + host + visionairlines.com + + + host + www.visionairlines.com + + + + + Vision Art Forum.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?visionartforum\.com/(?:content\.php)?(?:\?.*)?$ + + name + Vision Art Forum.com (partial) + rule + + from + ^http://(www\.)?visionartforum\.com/ + to + https://$1visionartforum.com/ + + target + + + host + visionartforum.com + + + host + www.visionartforum.com + + + + + Vispa (partial) + + ruleset + + name + Vispa (partial) + platform + mixedcontent + rule + + + from + ^http://secure\.vispa\.net\.uk/ + to + https://secure.vispa.net.uk/ + + + from + ^http://www\.vispahost\.com/ + to + https://www.vispahost.com/ + + + from + ^http://(www\.)?vispashop\.com/ + to + https://$1vispashop.com/ + + + securecookie + + + host + ^secure\.vispa\.net\.uk$ + name + .* + + + host + ^(.*\.)?vispa(host|shop)\.com$ + name + .* + + + target + + + host + secure.vispa.net.uk + + + host + www.vispahost.com + + + host + vispashop.com + + + host + www.vispashop.com + + + host + *.www.vispashop.com + + + + + Vistech Communications + + ruleset + + name + Vistech Communications + platform + mixedcontent + rule + + from + ^http://(?:bundy\.|www\.)?vistech\.net/ + to + https://bundy.vistech.net/ + + securecookie + + host + ^(.*\.)?vistech\.net$ + name + .* + + target + + + host + vistech.net + + + host + *.vistech.net + + + + + Visual Paradigm + + ruleset + + name + Visual Paradigm + rule + + + from + ^http://s1\.linkvp\.com/ + to + https://d1dlalugb0z2hd.cloudfront.net/ + + + from + ^http://(?:www\.)?visual-paradigm\.com/ + to + https://www.visual-paradigm.com/ + + + securecookie + + host + ^www\.visual-paradigm\.com$ + name + .* + + target + + + host + s1.linkvp.com + + + host + visual-paradigm.com + + + host + www.visual-paradigm.com + + + + + Visual Revenue (partial) + + ruleset + + name + Visual Revenue (partial) + rule + + from + ^http://platform\.visualrevenue\.com/ + to + https://platform.visualrevenue.com/ + + securecookie + + host + ^\.platform\.visualrevenue\.com$ + name + .+ + + target + + host + *.visualrevenue.com + + + + Visual Website Optimizer (partial) + + ruleset + + exclusion + + pattern + ^http://visualwebsiteoptimizer\.com/($|.+/$|(about-us|affiliates|careers|case-studies|(certified-|tech-)?partners|comparison|customers|faqs|feature(-list|s)|ideafox|privacy-policy|terms-conditions|testimonials)\.php($|\?)) + + name + Visual Website Optimizer (partial) + rule + + from + ^https?://(?:(dev\.|v2\.)|www\.)?visualwebsiteoptimizer\.com/ + to + https://$1visualwebsiteoptimizer.com/ + + securecookie + + host + ^[^w].*\.visualwebsiteoptimizer\.com$ + name + .* + + target + + + host + visualwebsiteoptimizer.com + + + host + *.visualwebsiteoptimizer.com + + + + + Visualising Advocacy.org + + ruleset + + name + Visualising Advocacy.org + rule + + from + ^http://(www\.)?visualisingadvocacy\.org/ + to + https://$1visualisingadvocacy.org/ + + target + + + host + visualisingadvocacy.org + + + host + www.visualisingadvocacy.org + + + + + VitalAds (partial) + + ruleset + + name + VitalAds (partial) + rule + + from + ^http://(www\.)?vitalads\.com/ + to + https://$1vitalads.com/ + + securecookie + + host + ^(.*\.)?vitalads\.com$ + name + .* + + target + + + host + vitalads.com + + + host + www.vitalads.com + + + + + VitalMend.com (partial) + + ruleset + + name + VitalMend.com (partial) + rule + + from + ^http://(www\.)?vitalmend\.com/(?=favicon\.ico|images/|my-account(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1vitalmend.com/ + + target + + + host + vitalmend.com + + + host + www.vitalmend.com + + + + + Vitalwerks (partial) + + ruleset + + name + Vitalwerks (partial) + rule + + + from + ^http://cdn\.no-ip\.com/ + to + https://noipcdn.s3.amazonaws.com/ + + + from + ^http://(?:www\.)?no-ip\.com/(client/|company/[^$]|favicon\.ico|images/|login|(?:1click|newUser)\.php) + to + https://www.no-ip.com/$1 + + + target + + + host + no-ip.com + + + host + *.no-ip.com + + + + + Vitamin D Council + + ruleset + + name + Vitamin D Council + rule + + from + ^http://(www\.)?vitamindcouncil\.org/ + to + https://$1vitamindcouncil.org/ + + securecookie + + host + ^(?:www\.)?vitamindcouncil\.org$ + name + .+ + + target + + + host + vitamindcouncil.org + + + host + www.vitamindcouncil.org + + + + + Vitamin Shoppe.com (partial) + + ruleset + + name + Vitamin Shoppe.com (partial) + rule + + + from + ^http://(?:www\.)?vitaminshoppe\.com/ + to + https://www.vitaminshoppe.com/ + + + from + ^http://m\.vitaminshoppe\.com/ + to + https://m.vitaminshoppe.com/ + + + securecookie + + host + ^(?:m|www)?\.vitaminshoppe\.com + name + .+ + + target + + + host + vitaminshoppe.com + + + host + *.vitaminshoppe.com + + + + + Vitamin T + + ruleset + + name + Vitamin T + platform + mixedcontent + rule + + from + ^http://(?:www\.)?vitamintalent\.com/ + to + https://vitamintalent.com/ + + securecookie + + host + ^vitamintalent\.com$ + name + .* + + target + + + host + vitamintalent.com + + + host + www.vitamintalent.com + + + + + Vitelity + + ruleset + + name + Vitelity + rule + + from + ^http://portal\.vitelity\.net/ + to + https://portal.vitelity.net/ + + target + + host + portal.vitelity.net + + + + Vivaciti (partial) + + ruleset + + exclusion + + pattern + ^http://www\.vivaciti\.net/forum/$ + + name + Vivaciti (partial) + rule + + from + ^http://(?:www\.)?vivaciti\.net/ + to + https://vivaciti.net/ + + securecookie + + host + ^vivaciti\.net$ + name + .* + + target + + + host + vivaciti.net + + + host + www.vivaciti.net + + + + + Viviscal + + ruleset + + name + Viviscal + platform + mixedcontent + rule + + from + ^http://(www\.)?viviscal\.co\.uk/ + to + https://$1viviscal.co.uk/ + + target + + + host + viviscal.co.uk + + + host + www.viviscal.co.uk + + + + + Vizzit.se + + ruleset + + name + Vizzit.se + rule + + from + ^http://www\.vizzit\.se/ + to + https://www.vizzit.se/ + + target + + host + www.vizzit.se + + + + Vmail.me + + ruleset + + name + Vmail.me + rule + + from + ^http://(www\.)?vmail\.me/ + to + https://www.vmail.me/ + + target + + + host + vmail.me + + + host + www.vmail.me + + + + + VoIPDistributor.net + + ruleset + + name + VoIPDistributor.net + rule + + from + ^http://(www\.)?voipdistributor\.net/ + to + https://$1voipdistributor.net/ + + securecookie + + host + ^\.?voipdistributor\.net$ + name + .+ + + target + + + host + voipdistributor.net + + + host + *.voipdistributor.net + + + + + Vodafone + + ruleset + + name + Vodafone + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?vodafone\.(co\.nz|co\.uk|de|ie)/ + to + https://www.vodafone.$1/ + + + from + ^http://online\.vodafone\.co\.uk/ + to + https://online.vodafone.co.uk/ + + + from + ^http://shop\.vodafone\.(co\.uk|de)/ + to + https://shop.vodafone.$1/ + + + from + ^http://(?:www\.)?dsl(shop)?\.vodafone\.de/ + to + https://dsl$1.vodafone.de/ + + + from + ^http://(forum|hilfe|media|vfd2dyn|was)\.vodafone\.de/ + to + https://$1.vodafone.de/ + + + securecookie + + + host + ^\.vodafone\.de$ + name + ^(?:DYN_USER_(?:CONFIRM|ID)|oshop|s_vi)$ + + + host + ^(?:dsl|dslshop|forum|hilfe|shop|www)\.vodafone\.de$ + name + .+ + + + target + + + host + vodafone.ie + + + host + www.vodafone.ie + + + host + vodafone.co.uk + + + host + www.vodafone.co.uk + + + host + online.vodafone.co.uk + + + host + shop.vodafone.co.uk + + + host + vodafone.de + + + host + *.vodafone.de + + + host + shop.vodafone.de + + + host + vodafone.co.nz + + + host + www.vodafone.co.nz + + + + + Voffka (partial) + + ruleset + + name + Voffka (partial) + platform + cacert + rule + + from + ^http://(www\.)?voffka\.com/ + to + https://$1voffka.com/ + + target + + + host + voffka.com + + + host + www.voffka.com + + + + + Vogel.de + + ruleset + + name + Vogel.de + rule + + from + ^http://((?:files|images|www)\.)?vogel\.de/ + to + https://$1vogel.de/ + + securecookie + + host + ^(?:www\.)?vogel\.de$ + name + .+ + + target + + + host + vogel.de + + + host + *.vogel.de + + + + + VoiceFive + + ruleset + + name + VoiceFive + rule + + + from + ^http://(ar\.|www\.)?voicefive\.com/ + to + https://$1voicefive.com/ + + + from + ^https?://s?b\.voicefive\.com/ + to + https://sb.voicefive.com/ + + + securecookie + + host + ^(.*\.)?voicefive\.com$ + name + .* + + target + + + host + voicefive.com + + + host + *.voicefive.com + + + + + Voices.com (partial) + + ruleset + + name + Voices.com (partial) + rule + + from + ^https?://(?:www\.)?voices\.com/((?:answers|apps|articles|client|community|company|css|directory|ebooks|find|help|images|img|industries|infographics|languages|login|newsroom|rates|resources|royalty-free-music|rss|rss_feeds|scripts|security|service|signup|site_map|tag|talents|videos)(?:$|[\?/])|(?:faq|surepay)\./html(?:$|\?)|talent/\w) + to + https://www.voices.com/$1 + + target + + + host + voices.com + + + host + www.voices.com + + + + + Volatile Systems.com (partial) + + ruleset + + name + Volatile Systems.com (partial) + rule + + from + ^http://(?:www\.)?volatilesystems\.com/ + to + https://www.volatilesystems.com/ + + securecookie + + host + ^www\.volatilesystems\.com$ + name + .+ + + target + + + host + volatilesystems.com + + + host + www.volatilesystems.com + + + + + Volcano eCigs + + ruleset + + name + Volcano eCigs + platform + mixedcontent + rule + + from + ^http://(?:www\.)?volcanoecigs\.com/ + to + https://www.volcanoecigs.com/ + + target + + + host + volcanoecigs.com + + + host + www.volcanoecigs.com + + + + + Volgistics (partial) + + ruleset + + name + Volgistics (partial) + rule + + from + ^(http://(www\.)?|https://)volgistics\.com/ + to + https://www.volgistics.com/ + + target + + + host + volgistics.com + + + host + www.volgistics.com + + + + + Volkswagen Bank + + ruleset + + name + Volkswagen Bank + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?volkswagenbank\.de/ + to + https://www.volkswagenbank.de/ + + + from + ^http://online-banking\.volkswagenbank\.de/ + to + https://online-banking.volkswagenbank.de/ + + + target + + + host + *.volkswagenbank.de + + + host + volkswagenbank.de + + + + + Volotea.com + + ruleset + + name + Volotea.com + rule + + from + ^http://((?:auto|cars|coches|media|static|voitures|www)\.)?volotea\.com/ + to + https://$1volotea.com/ + + securecookie + + host + ^(?:www)?\.volotea\.com$ + name + .+ + + target + + + host + volotea.com + + + host + *.volotea.com + + + + + Volunteer Matters + + ruleset + + name + Volunteer Matters + rule + + from + ^http://(www\.)?volunteermatters\.com/ + to + https://$1volunteermatters.com/ + + securecookie + + host + ^(?:www\.)?volunteermatters\.com$ + name + .+ + + target + + + host + volunteermatters.com + + + host + www.volunteermatters.com + + + + + Volunteer² (partial) + + ruleset + + name + Volunteer² (partial) + rule + + + from + ^http://(?:app\.volunteer2|(?:www\.)?myvolunteerpage)\.com/ + to + https://app.volunteer2.com/ + + + from + ^http://cdn\.volunteer2\.com/ + to + https://cdn.volunteer2.com/ + + + target + + + host + *.volunteer2.com + + + host + myvolunteerpage.com + + + host + www.myvolunteerpage.com + + + + + Volusion (partial) + + ruleset + + name + Volusion (partial) + rule + + + from + ^http://(store\.|www\.)?volusion\.co\.uk/ + to + https://$1volusion.co.uk/ + + + from + ^https?://volusion\.com/ + to + https://www.volusion.com/ + + + from + ^http://(forums|my|store|vchangedesign|www)\.volusion\.com/ + to + https://$1.volusion.com/ + + + securecookie + + host + ^(?:.*\.)?volusion\.co(?:\.uk|m)$ + name + .+ + + target + + + host + volusion.co.uk + + + host + *.volusion.co.uk + + + host + volusion.com + + + host + *.volusion.com + + + + + Vonage + + ruleset + + name + Vonage + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?vonage\.com/ + to + https://www.vonage.com/ + + + from + ^http://(?:www\.)?vonage\.co\.uk/ + to + https://www.vonage.co.uk/ + + + from + ^http://(?:www\.)?vonage\.ca/ + to + https://www.vonage.ca/ + + + target + + + host + vonage.com + + + host + www.vonage.com + + + host + vonage.co.uk + + + host + www.vonage.co.uk + + + host + vonage.ca + + + host + www.vonage.ca + + + + + Voodoo Ping.com + + ruleset + + name + Voodoo Ping.com + rule + + from + ^http://(www\.)?voodooping\.com/ + to + https://$1voodooping.com/ + + securecookie + + host + ^(?:w*\.)?voodooping\.com$ + name + .+ + + target + + + host + voodooping.com + + + host + *.voodooping.com + + + + + Voodoo.com (partial) + + ruleset + + name + Voodoo.com (partial) + rule + + from + ^http://(?:secure\.|www\.)?voodoo\.com/ + to + https://secure.voodoo.com/ + + securecookie + + host + ^\.voodoo\.com$ + name + .+ + + target + + + host + voodoo.com + + + host + *.voodoo.com + + + + + Voost! + + ruleset + + name + Voost! + rule + + from + ^http://(www\.)?voo\.st/ + to + https://$1voo.st/ + + securecookie + + host + ^\.voo\.st$ + name + .+ + + target + + + host + voo.st + + + host + *.voo.st + + + + + Vorpal.io + + ruleset + + name + Vorpal.io + rule + + from + ^http://(www\.)?vorpal\.io/ + to + https://$1vorpal.io/ + + securecookie + + host + ^(?:.*\.)?vorpal\.io$ + name + .+ + + target + + + host + vorpal.io + + + host + *.vorpal.io + + + + + VosCast.com + + ruleset + + name + VosCast.com + rule + + from + ^http://(www\.)?voscast\.com/ + to + https://$1voscast.com/ + + securecookie + + host + ^(?:w*\.)?voscast\.com$ + name + .+ + + target + + + host + voscast.com + + + host + *.voscast.com + + + + + VoteWatch.eu + + ruleset + + name + VoteWatch.eu + rule + + from + ^https?://(?:www\.)?votewatch\.eu/ + to + https://www.votewatch.eu/ + + securecookie + + host + ^www\.votewatch\.eu$ + name + .* + + target + + + host + votewatch.eu + + + host + www.votewatch.eu + + + + + Vovici.com (partial) + + ruleset + + name + Vovici.com (partial) + rule + + from + ^http://(desktop\.|system\.)?(www\.)?vovici\.com/ + to + https://$1vovici.com/ + + target + + + host + vovici.com + + + host + desktop.vovici.com + + + host + system.vovici.com + + + host + www.vovici.com + + + + + Vox-CDN.com + + ruleset + + name + Vox-CDN.com + rule + + from + ^http://cdn(\d)\.vox-cdn\.com/ + to + https://cdn$1.vox-cdn.com/ + + target + + host + *.vox-cdn.com + + + + Vox.com (false MCB) + + ruleset + + name + Vox.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?vox\.com/ + to + https://www.vox.com/ + + target + + + host + vox.com + + + host + www.vox.com + + + + + Voxer (partial) + + ruleset + + name + Voxer (partial) + rule + + + from + ^http://((?:business|one|support|web|www)\.)?voxer\.com/ + to + https://$1voxer.com/ + + + from + ^http://dev-10\.voxer\.com/assets/ + to + https://voxer.com/assets/ + + + securecookie + + host + .+\.voxer\.com$ + name + .+ + + target + + + host + voxer.com + + + host + *.voxer.com + + + + + Voxility.com + + ruleset + + name + Voxility.com + rule + + from + ^http://(?:www\.)?voxility\.com/ + to + https://www.voxility.com/ + + target + + + host + voxility.com + + + host + www.voxility.com + + + + + Vr.org (partial) + + ruleset + + name + Vr.org (partial) + rule + + from + ^http://(www\.)?vr\.org/ + to + https://$1vr.org/ + + securecookie + + host + ^www\.vr\.org$ + name + .+ + + target + + + host + vr.org + + + host + www.vr.org + + + + + Vrijstelling Oldtimer + + ruleset + + name + Vrijstelling Oldtimer + platform + mixedcontent + rule + + + from + ^http://vrijstellingoldtimer\.nl/ + to + https://vrijstellingoldtimer.nl/ + + + from + ^http://www\.vrijstellingoldtimer\.nl/ + to + https://www.vrijstellingoldtimer.nl/ + + + target + + + host + vrijstellingoldtimer.nl + + + host + www.vrijstellingoldtimer.nl + + + + + Vtiger.com + + ruleset + + name + Vtiger.com + rule + + from + ^http://((?:blogs|discussions|forums|wiki|www)\.)?vtiger\.com/ + to + https://$1vtiger.com/ + + securecookie + + host + ^(?:\.|forums\.|www\.)?vtiger\.com$ + name + .+ + + target + + + host + vtiger.com + + + host + *.vtiger.com + + + + + Vtracy + + ruleset + + name + Vtracy + rule + + + from + ^http://vtracy\.de/ + to + https://vtracy.de/ + + + from + ^http://red\.vtracy\.de/ + to + https://red.vtracy.de/ + + + target + + + host + vtracy.de + + + host + *.vtracy.de + + + + + Vub.sk + + ruleset + + name + Vub.sk + rule + + + from + ^http://(www\.)?vub\.sk/ + to + https://www.vub.sk/ + + + from + ^http://nib\.vub\.sk/ + to + https://nib.vub.sk/ + + + target + + + host + vub.sk + + + host + www.vub.sk + + + host + nib.vub.sk + + + + + Vueling + + ruleset + + name + Vueling + rule + + + from + ^http://vueling\.com/ + to + https://vueling.com/ + + + from + ^http://([^/:@\.]+)\.vueling\.com/ + to + https://$1.vueling.com/ + + + target + + + host + vueling.com + + + host + *.vueling.com + + + + + Vulnscan.org + + ruleset + + name + Vulnscan.org + rule + + from + ^http://(www\.)?vulnscan\.org/ + to + https://$1vulnscan.org/ + + target + + + host + vulnscan.org + + + host + www.vulnscan.org + + + + + Vulture.com (partial) + + ruleset + + name + Vulture.com (partial) + rule + + from + ^http://stats\.vulture\.com/ + to + https://vulture-com.112.2o7.net/ + + securecookie + + host + ^\.vulture\.com$ + name + ^s_\w+$ + + target + + host + *.vulture.com + + + + Vumanity.net (partial) + + ruleset + + name + Vumanity.net (partial) + rule + + from + ^http://(www\.)?vumanity\.net/ + to + https://$1vumanity.net/ + + securecookie + + host + ^\.vumanity\.net$ + name + .+ + + target + + + host + vumanity.net + + + host + *.vumanity.net + + + + + Vungle (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|www)\.vungle\.com/+(?!wp-content/|wp-includes/) + + name + Vungle (partial) + rule + + + from + ^http://(v\.|www\.)?vungle\.com/ + to + https://$1vungle.com/ + + + from + ^http://blog\.vungle\.com/ + to + https://www.vungle.com/blog/ + + + securecookie + + host + ^v\.vungle\.com$ + name + .+ + + target + + + host + vungle.com + + + host + blog.vungle.com + + + host + v.vungle.com + + + host + www.vungle.com + + + + + Vungle.com (false MCB) + + ruleset + + name + Vungle.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(blog|www)\.vungle\.com/ + to + https://$1.vungle.com/ + + securecookie + + host + ^\.vungle\.com$ + name + .+ + + target + + host + *.vungle.com + + + + Vuze + + ruleset + + name + Vuze + platform + mixedcontent + rule + + + from + ^https?://(?:www\.)?vuze\.com/ + to + https://www.vuze.com/ + + + from + ^http://(blog|forum|plugins|p?search|remote|wiki)\.vuze\.com/ + to + https://$1.vuze.com/ + + + from + ^https?://cf2\.vuze\.com/ + to + https://d1ov8b9v5fwdrf.cloudfront.net/ + + + from + ^http://hwcdn01\.vuze\.com/ + to + https://d2ojrr2o5sghfq.cloudfront.net/ + + + securecookie + + host + ^w(?:iki|ww)\.vuze\.com$ + name + .* + + target + + + host + vuze.com + + + host + *.vuze.com + + + + + W3Counter.com + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?w3counter\.com/(?!css/|favicon\.ico|images/|js/|tracker\.(?:js|php)) + + name + W3Counter.com + rule + + from + ^http://(pulse\.|www\.)?w3counter\.com/ + to + https://$1w3counter.com/ + + securecookie + + host + ^\.w3counter\.com$ + name + ^_\d+_visitFlag$ + + target + + + host + w3counter.com + + + host + *.w3counter.com + + + + + WANdisco.com (partial) + + ruleset + + name + WANdisco.com (partial) + rule + + from + ^http://(support\.|www\.)?wandisco\.com/ + to + https://$1wandisco.com/ + + securecookie + + host + ^support\.wandisco\.com$ + name + .+ + + target + + + host + wandisco.com + + + host + *.wandisco.com + + + + + WD2go.com + + ruleset + + name + WD2go.com + rule + + from + ^https?://(?:www\.)?wd2go\.com/ + to + https://www.wd2go.com/ + + securecookie + + host + ^www\.wd2go\.com$ + name + .* + + target + + + host + wd2go.com + + + host + www.wd2go.com + + + + + WDWS (partial) + + ruleset + + name + WDWS (partial) + rule + + from + ^http://(?:www\.)?wdws\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.wdws.com/$1 + + target + + + host + wdws.com + + + host + www.wdws.com + + + + + WDpromedia.com + + ruleset + + name + WDpromedia.com + rule + + from + ^http://analytics\.wdpromedia\.com/ + to + https://a248.e.akamai.net/f/1092/1/5m/analytics.wdpromedia.com/ + + target + + host + analytics.wdpromedia.com + + + + WEBxMedia + + ruleset + + name + WEBxMedia + rule + + from + ^http://(www\.)?webxmedia\.co\.uk/ + to + https://$1webxmedia.co.uk/ + + securecookie + + host + ^\.webxmedia\.co\.uk$ + name + .+ + + target + + + host + webxmedia.co.uk + + + host + *.webxmedia.co.uk + + + + + WHMCS (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog|docs|forum)\. + + name + WHMCS (partial) + rule + + from + ^http://(\w+\.)?whmcs\.com/ + to + https://$1whmcs.com/ + + securecookie + + host + ^(?:.*\.)?whmcs\.com$ + name + .+ + + target + + + host + whmcs.com + + + host + *.whmcs.com + + + + + WHMS-FM (partial) + + ruleset + + name + WHMS-FM (partial) + rule + + from + ^http://(?:www\.)?whms\.com/(misc/|sites/|user(?:$|\?|/)) + to + https://www.whms.com/$1 + + target + + + host + whms.com + + + host + www.whms.com + + + + + WHSmith (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?whsmith\.co\.uk/(?!App_Themes/|(?:Books|CatalogAndSearch|E?Products|GiftCardProducts|Voting)(?:$|\?|/)|favicon\.ico|GiftsGamesAndToys/\w|[iI]mages/|Script/|StationeryAndCards/\w|[sS]upport/|WebResource\.axd) + + name + WHSmith (partial) + rule + + + from + ^https?://(?:secure\.|www\.)?whsmith\.co\.uk/ + to + https://secure.whsmith.co.uk/ + + + from + ^http://(www\.)?magazines\.whsmith\.co\.uk/ + to + https://$1magazines.whsmith.co.uk/ + + + securecookie + + host + ^(?:www\.)?magazines\.whsmith\.co\.uk$ + name + .+ + + target + + + host + whsmith.co.uk + + + host + *.whsmith.co.uk + + + + + WHYY.org + + ruleset + + name + WHYY.org + rule + + from + ^http://(?:www\.)?whyy\.org/ + to + https://www.whyy.org/ + + securecookie + + host + ^\.whyy\.org$ + name + .+ + + target + + + host + whyy.org + + + host + *.whyy.org + + + + + WIMM.com (partial) + + ruleset + + name + WIMM.com (partial) + rule + + from + ^http://my\.wimm\.com/ + to + https://my.wimm.com/ + + securecookie + + host + ^\.?my\.wimm\.com$ + name + .+ + + target + + host + *.wimm.com + + + + WIPmania + + ruleset + + name + WIPmania + rule + + + from + ^http://(?:www\.)?wipmania\.com/ + to + https://www.wipmania.com/ + + + from + ^http://wipmania\.com/ + to + https://wipmania.com/ + + + target + + + host + www.wipmania.com + + + host + wipmania.com + + + + + WNYC + + ruleset + + name + WNYC + rule + + + from + ^http://(culture\.|media\.|www\.)?wnyc\.org/ + to + https://$1wnyc.org/ + + + from + ^https?://media40\.wnyc\.net/ + to + https://media.wnyc.org/ + + + target + + + host + media40.wnyc.net + + + host + wnyc.org + + + host + *.wnyc.org + + + + + WOW Analytics.co.uk (partial) + + ruleset + + name + WOW Analytics.co.uk (partial) + rule + + from + ^http://(app|t|test\.t)\.wowanalytics\.co\.uk/ + to + https://$1.wowanalytics.co.uk/ + + target + + host + *.wowanalytics.co.uk + + + + WP Engine + + ruleset + + name + WP Engine + platform + mixedcontent + rule + + + from + ^https?://cdn\.wpengine\.com/ + to + https://wpengine.com/ + + + from + ^https?://press\.wpengine\.com/ + to + https://wpengine.totemapp.com/ + + + from + ^http://(\w+\.)?wpengine\.com/ + to + https://$1wpengine.com/ + + + securecookie + + host + ^(?:.*\.)?wpengine\.com$ + name + .+ + + target + + + host + wpengine.com + + + host + *.wpengine.com + + + + + WP digital.net (partial) + + ruleset + + name + WP digital.net (partial) + rule + + + from + ^http://css\.wpdigital\.net/ + to + https://ssl.washingtonpost.com/ + + + from + ^http://echoapi\.wpdigital\.net/ + to + https://api.echoenabled.com/ + + + target + + host + *.wpdigital.net + + + + WP.me + + ruleset + + name + WP.me + rule + + from + ^http://(www\.)?wp\.me/ + to + https://$1wp.me/ + + target + + + host + wp.me + + + host + www.wp.me + + + + + WP.pl (partial) + + ruleset + + exclusion + + + pattern + ^http://agito\.wp\.pl/(?!favicon\.ico|skin/) + + + pattern + ^http://profile\.wp\.pl/(?!css/|favicon\.ico|login\.html|obrazek\.html) + + + name + WP.pl (partial) + rule + + + from + ^http://(agito|s?i|ir\.i|m\.poczta|profil|adv\.reklama|ticket\.www)\.wp\.pl/ + to + https://$1.wp.pl/ + + + from + ^http://[ab]\.wpimg\.pl/ + to + https://a.wpimg.pl/ + + + from + ^http://c\.wpimg\.pl/ + to + https://i.wp.pl/ + + + from + ^http://[ij]\.wpimg\.pl/ + to + https://ir.i.wp.pl/ + + + securecookie + + + host + ^\.wp\.pl$ + name + ^statid$ + + + host + ^(?:i|adv\.reklama|ticket\.www)\.wp\.pl$ + name + .+ + + + host + ^a\.wpimg\.pl$ + name + .+ + + + target + + + host + *.wp.pl + + + host + *.wpimg.pl + + + + + WPP + + ruleset + + name + WPP + rule + + from + ^http://(?:secure\.|www\.)?wpp\.com/ + to + https://secure.wpp.com/ + + securecookie + + host + ^secure\.wpp\.com$ + name + .+ + + target + + + host + wpp.com + + + host + *.wpp.com + + + + + WRAL.com + + ruleset + + name + WRAL.com + rule + + + from + ^http://(www\.)?wral\.com/ + to + https://$1wral.com/ + + + from + ^https?://wwwcache\.wral\.com/ + to + https://www.wral.com/ + + + securecookie + + host + ^\.wral\.com$ + name + .+ + + target + + + host + wral.com + + + host + *.wral.com + + + + + WRZRU + + ruleset + + name + WRZRU + rule + + from + ^http://(?:bt\.|www\.)?wrzru\.com/ + to + https://bt.wrzru.com/ + + target + + + host + wrzru.com + + + host + *.wrzru.com + + + + + WTFismyIP + + ruleset + + name + WTFismyIP + rule + + from + ^http://(ipv4\.|ipv6\.)?wtfismyip\.com/ + to + https://$1wtfismyip.com/ + + target + + + host + wtfismyip.com + + + host + ipv4.wtfismyip.com + + + host + ipv6.wtfismyip.com + + + + + WTFuzz.com + + ruleset + + name + WTFuzz.com + rule + + + from + ^http://www\.wtfuzz\.com/ + to + https://www.wtfuzz.com/ + + + from + ^http://wtfuzz\.com/ + to + https://www.wtfuzz.com/ + + + target + + + host + wtfuzz.com + + + host + www.wtfuzz.com + + + + + WTO.org (partial) + + ruleset + + name + WTO.org (partial) + rule + + from + ^http://((?:docs|docsonline|erecruitment|etraining|www)\.)?wto\.org/ + to + https://$1wto.org/ + + securecookie + + host + ^(?:docs|erecruitment|etraining)\.wto\.org$ + name + .+ + + target + + + host + wto.org + + + host + *.wto.org + + + + + WWE.com (partial) + + ruleset + + name + WWE.com (partial) + rule + + from + ^http://community\.wwe\.com/ + to + https://community.wwe.com/ + + target + + host + community.wwe.com + + + + WWTE (partial) + + ruleset + + name + WWTE (partial) + rule + + + from + ^http://media\.wwte\.com/ + to + https://media.wwte.com/ + + + from + ^http://(travel\.|www\.)?wwte1\.com/ + to + https://$1wwte1.com/ + + + from + ^https?://www\.wwte(?:2|3|1\d)\.com/(?:default\.htm|pubspec/scripts/default\.asp)?(?:\?.*)?$ + to + https://travel.wwte1.com/pubspec/scripts/eap.asp?eapid=0-30001 + + + from + ^https?://wwte4\.com/(\?.*)?$ + to + https://uk.wwte4.com/Default.aspx$1 + + + from + ^http://uk\.wwte4\.com/ + to + https://uk.wwte4.com/ + + + from + ^https?://wwte7\.com/(\?.*)?$ + to + https://euro.wwte7.com/Default.aspx$1 + + + from + ^http://euro\.wwte7\.com/ + to + https://euro.wwte7.com/ + + + from + ^https?://wwte8\.com/(\?.*)?$ + to + https://aus.wwte8.com/Default.aspx$1 + + + from + ^http://aus\.wwte8\.com/ + to + https://aus.wwte8.com/ + + + from + ^https?://wwte9\.com/(\?.*)?$ + to + https://se.wwte9.com/Default.aspx$1 + + + from + ^https?://wwte10\.com/(?:default\.htm|pubspec/scripts/default\.asp)?(?:\?.*)?$ + to + https://travel.wwte1.com/pubspec/scripts/eap.asp?eapid=0-30001 + + + from + ^http://travel\.wwte10\.com/ + to + https://travel.wwte10.com/ + + + securecookie + + + host + ^\.(?:travel\.)?wwte1\.com$ + name + .+ + + + host + ^uk\.wwte4\.com$ + name + .+ + + + host + ^\.?euro\.wwte7\.com$ + name + .+ + + + host + ^aus\.wwte8\.com$ + name + .+ + + + host + ^se\.wwte9\.com$ + name + .+ + + + target + + + host + media.wwte.com + + + host + wwte1.com + + + host + *.wwte1.com + + + host + www.wwte2.com + + + host + www.wwte3.com + + + host + wwte4.com + + + host + uk.wwte4.com + + + host + wwte7.com + + + host + *.wwte7.com + + + host + wwte8.com + + + host + aus.wwte8.com + + + host + wwte9.com + + + host + se.wwte9.com + + + host + wwte10.com + + + host + *.wwte10.com + + + host + www.wwte11.com + + + host + www.wwte12.com + + + host + www.wwte13.com + + + host + www.wwte14.com + + + + + WaPo Labs.com (partial) + + ruleset + + name + WaPo Labs.com (partial) + rule + + from + ^http://bunsen\.wapolabs\.com/ + to + https://d2pe20ur0h0p8p.cloudfront.net/ + + target + + host + bunsen.wapolabs.com + + + + Wachovia + + ruleset + + name + Wachovia + rule + + + from + ^http://wachovia\.com/ + to + https://wachovia.com/ + + + from + ^http://(myed|odpsla|onlineservices|www)\.wachovia\.com/ + to + https://$1.wachovia.com/ + + + target + + + host + wachovia.com + + + host + *.wachovia.com + + + + + Waeckerlin.org + + ruleset + + name + Waeckerlin.org + rule + + from + ^http://(?:marc\.|www\.)?waeckerlin\.org/ + to + https://marc.waeckerlin.org/ + + target + + + host + waeckerlin.org + + + host + *.waeckerlin.org + + + + + Waffle.io + + ruleset + + name + Waffle.io + rule + + from + ^http://(badge\.|www\.)?waffle\.io/ + to + https://$1waffle.io/ + + securecookie + + host + ^\.?waffle\.io$ + name + .+ + + target + + + host + waffle.io + + + host + *.waffle.io + + + + + Waffles.fm + + ruleset + + name + Waffles.fm + rule + + from + ^http://www\.waffles\.fm/ + to + https://$1waffles.fm/ + + target + + + host + waffles.fm + + + host + www.waffles.fm + + + + + Wagner College + + ruleset + + name + Wagner College + rule + + from + ^http://(www\.)?wagner\.edu/ + to + https://wagner.edu/ + + target + + + host + www.wagner.edu + + + host + wagner.edu + + + + + Waindigo.org + + ruleset + + name + Waindigo.org + rule + + from + ^http://(www\.)?waindigo\.org/ + to + https://$1waindigo.org/ + + target + + + host + waindigo.org + + + host + www.waindigo.org + + + + + Waitrose Direct.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?waitrosedirect\.com/+(?!favicon\.ico|info/|wcsstore/SharedStoreFront/Custom/|webapp/) + + name + Waitrose Direct.com (partial) + rule + + from + ^http://(?:images\.|www\.)?waitrosedirect\.com/ + to + https://www.waitrosedirect.com/ + + target + + + host + waitrosedirect.com + + + host + *.waitrosedirect.com + + + + + Waitrose.com (partial) + + ruleset + + name + Waitrose.com (partial) + rule + + from + ^http://(?:www\.)?waitrose\.com/(?=content/|favicon\.ico|(?:errors/error_)?images/|home/mywaitrose/|(?:shop/(?:GetCustomerOrders|MyAccount|MyAddresses)|webapp/wcs/stores/servlet/LogonForm)(?:$|\?)) + to + https://www.waitrose.com/ + + target + + + host + waitrose.com + + + host + www.waitrose.com + + + + + Walder Wyss.com + + ruleset + + name + Walder Wyss.com + rule + + from + ^http://(?:www\.)?walderwyss\.com/ + to + https://www.walderwyss.com/ + + target + + + host + walderwyss.com + + + host + www.walderwyss.com + + + + + Walgreens (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?walgreens\.com/(?!common/|images/) + + name + Walgreens (partial) + rule + + from + ^http://((?:img2|news|www)\.)?walgreens\.com/ + to + https://$1walgreens.com/ + + securecookie + + host + ^\.walgreens\.com$ + name + ^s_\w\w$ + + target + + + host + walgreens.com + + + host + *.walgreens.com + + + + + Walking Men + + ruleset + + name + Walking Men + rule + + from + ^https?://(?:www\.)?walkingmen\.com/ + to + https://www.walkingmen.com/ + + securecookie + + host + ^\.walkingmen\.com$ + name + .+ + + target + + + host + walkingmen.com + + + host + *.walkingmen.com + + + + + Wallpaperstoday + + ruleset + + name + Wallpaperstoday + rule + + from + ^http://(www\.)?wallpapers-today\.com/ + to + https://$1wallpapers-today.com/ + + securecookie + + host + ^(?:www)?\.wallpapers-today\.com$ + name + .+ + + target + + + host + wallpapers-today.com + + + host + *.wallpapers-today.com + + + + + Walmart images.com + + ruleset + + name + Walmart images.com + rule + + + from + ^http://i(2)?\.walmartimages\.com/(?!/*css/wmCommon\.css(?:$|\?)) + to + https://a248.e.akamai.net/f/1253/7491/1/i$1.walmartimages.com/ + + + from + ^http://(?:i2?|secure)\.walmartimages\.com/ + to + https://secure.walmartimages.com/ + + + from + ^http://(i5|i-secure)\.walmartimages\.com/ + to + https://$1.walmartimages.com/ + + + target + + host + *.walmartimages.com + + + + Walmart.com (false MCB) + + ruleset + + name + Walmart.com (false MCB) + platform + mixedcontent + rule + + from + ^http://help\.walmart\.com/ + to + https://help.walmart.com/ + + securecookie + + host + ^help\.walmart\.com$ + name + .+ + + target + + host + help.walmart.com + + + + Walmart.com (partial) + + ruleset + + exclusion + + pattern + ^http://help\.walmart\.com/+(?!euf/(?:assets|rightnow)/|favicon\.ico) + + name + Walmart.com (partial) + rule + + + from + ^http://(?:www\.)?walmart\.com/(?=client_side_redirect\.gsp|cservice(?:$|[?/])|favicon\.ico|i/|logout\.do) + to + https://www.walmart.com/ + + + from + ^http://(accionistas|affil|beacon\.affil|affiliates|beacon|beacon\.(?:beta|classrooms)|(?:(?:cdn|cms|es)\.)?corporate|corporativo|foundation|es\.foundation|fundacion|help|news|es\.news|noticias|partner|(?:beacon\.)?savingscatcher|beacon\.stage|stock|es\.stock)\.walmart\.com/ + to + https://$1.walmart.com/ + + + from + ^http://localad\.walmart\.com/+(?=$|\?) + to + https://weeklyad.walmart.com/walmart/ + + + from + ^http://p13n-assets\.walmart\.com/ + to + https://a248.e.akamai.net/f/1697/4479/7/p13n-assets.walmart.com/ + + + securecookie + + host + ^(?:accionistas|beacon\.affil|affiliates|beacon\.(?:beta|classrooms)|corporate|(?:cms|es)\.corporate|corporativo|foundation|es\.foundation|fundacion|news|es\.news|noticias|beacon\.s(?:avingscatcher|tage)|stock|es\.stock)\.walmart\.com$ + name + .+ + + target + + + host + walmart.com + + + host + *.walmart.com + + + + + Walthers + + ruleset + + name + Walthers + rule + + from + ^http://(www\.)?walthers\.com/ + to + https://walthers.com/ + + target + + + host + www.walthers.com + + + host + walthers.com + + + + + Wantful + + ruleset + + name + Wantful + rule + + from + ^http://(assets\.|www\.)?wantful\.com/ + to + https://$1wantful.com/ + + securecookie + + host + ^(?:.*\.)?wantful\.com$ + name + .+ + + target + + + host + wantful.com + + + host + *.wantful.com + + + + + Wargaming.net + + ruleset + + name + Wargaming.net + rule + + + from + ^https?://(?:www\.)?wargaming\.com/ + to + https://wargaming.com/ + + + from + ^http://((?:eu|na|ru|sea|www)\.)?wargaming\.net/ + to + https://$1wargaming.net/ + + + securecookie + + host + ^wargaming\.com$ + name + .+ + + target + + + host + wargaming.com + + + host + www.wargaming.com + + + host + wargaming.net + + + host + *.wargaming.net + + + + + WarmlyYours + + ruleset + + name + WarmlyYours + rule + + from + ^http://(cdn\.|crm\.|www\.)?warmlyyours\.com/ + to + https://$1warmlyyours.com/ + + securecookie + + host + ^.*\.warmlyyours\.com$ + name + .+ + + target + + + host + warmlyyours.com + + + host + *.warmlyyours.com + + + + + Warner Artists + + ruleset + + name + Warner Artists + rule + + from + ^https?://(?:www\.)?warnerartists\.com/ + to + https://www.warnerartists.com/ + + target + + + host + warnerartists.com + + + host + www.warnerartists.com + + + + + WartStick.com (false MCB) + + ruleset + + name + WartStick.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?wartstick\.com/ + to + https://$1wartstick.com/ + + securecookie + + host + ^\.wartstick\.com$ + name + .+ + + target + + + host + wartstick.com + + + host + www.wartstick.com + + + + + Warzone2100 (CAcert) + + ruleset + + name + Warzone2100 (CAcert) + platform + cacert + rule + + + from + ^http://wz2100\.net/ + to + https://www.wz2100.net/ + + + from + ^http://([^/:@\.]+)\.wz2100\.net/ + to + https://$1.wz2100.net/ + + + securecookie + + host + ^(.*\.)?wz2100\.net$ + name + .* + + target + + + host + wz2100.net + + + host + *.wz2100.net + + + + + Wash Post.com + + ruleset + + name + Wash Post.com + rule + + from + ^http://((?:media|subscription|www)\.)?washpost\.com/ + to + https://$1washpost.com/ + + target + + + host + washpost.com + + + host + *.washpost.com + + + + + Washington Free Beacon (partial) + + ruleset + + name + Washington Free Beacon (partial) + rule + + from + ^http://s([1-4])\.freebeacon\.com/ + to + https://a248.e.akamai.net/f/1910/2849/6d/s$1.freebeacon.com/ + + target + + host + *.freebeacon.com + + + + Washington University in St. Louis (partial) + + ruleset + + exclusion + + + pattern + ^http://admissions\.wustl\.edu/(?!HomePageRotatingImages/|images/|js/|_layouts/|request/|SiteCollectionImages/|Style\ Library/|WebResource\.axd) + + + pattern + ^http://(?:www\.)?ot\.wustl\.edu/(?!css/|fonts/|images/|js/|mm/images/|RadControls/|(?:Script|Web)Resource\.axd|UltimateSearchInclude/) + + + name + Washington University in St. Louis (partial) + rule + + + from + ^http://(?:www\.)?(cait\.)?wustl\.edu/ + to + https://www.$1wustl.edu/ + + + from + ^http://(acadinfo|admissions|[af]ishelp|aiswiki|aladdin|alumni|(?:asapps|college|computing|thought)\.artsci|assemblyseries|bb|becker1?|(?:login\.|www\.)?beckerproxy|secure\.biostat|biostatistics|brand|bulletin(?:-int|oftheschoolofmedicine)?|www\.cait|ccs|circle|cits|connect(?:help)?|(?:www\.)?cornerstone|danforthuniversitycenter|du?c|diningservices|diversity|dropbox|ehs|ehsaweb|secure\.engineering|epars|essweb|facilities|firstyear|fppeducation|gifts|global(?:database)?|gme|go|gradpages|graduateschool|grantsandcontracts|helpdesk|historyofmedicine|hr|hrpo|inside(?:olin)?|istcs|law|login|loopliving|magazine|mcdonnell|med(?:admissions|facilities|news|portal|schoolhr)|minimed|mylaw|news|news-info|notesplace|nso|(?:apps\.|www\.)?olin|olincareers|apply\.onlinelaw|(?:www\.)?ot|pages|physicaltherapy|police|provost|pt|radsafety|record|research|reslife|rprportal|(?:autodiscover|(?:www\.)?email)\.samfox|casarray\.seas|sharedtech|s[ht]s|summer(?:experiences|school)|technology|telesis|together|train2web|undergradresearch|universitycompliance|vfh|webstac|wubio|wuissrv20|wumsapply|wuro|(?:anest|citpmo|citservices|dptcourses|dxdialog|facultyaffairs|fpp|mail|portal|ppdpt|risk|secpriv|wumatrix|wusmeducation)\.wusm|wusmdar1|wusmhelp|wustlkey)\.wustl\.edu/ + to + https://$1.wustl.edu/ + + + from + ^http://www\.(alumni|bulletinoftheschoolofmedicine|ehs)\.wustl\.edu/.* + to + https://$1.wustl.edu/ + + + from + ^http://apap\.wustl\.edu/.* + to + https://alumni.wustl.edu/getinvolved/apap/Pages/default.aspx + + + from + ^http://(?:www\.)?artsci\.wustl\.edu/sites/ + to + https://computing.artsci.wustl.edu/sites/ + + + from + ^http://asc\.wustl\.edu/.* + to + https://research.wustl.edu/Offices_Committees/ASC/Pages/default.aspx + + + from + ^http://(?:www\.)?(bearsports|card|careercenter|codeofconduct|communityservice|complianceoffice|emergency|facultysenate|getinvolved|glo|icares|internalaudit|law|oisshome|pacs|parents|parking|publichealth|registrar|sc|schoolpartnership|spa|spokane|teachingcenter|ucollege|undergraduatecouncil|writingcenter|wulife|wupd|wusmhealth)\.wustl\.edu/ + to + https://$1.wustl.edu/ + + + from + ^http://(?:www\.becker|beckerweb)\.wustl\.edu/(?:\?.*)?$ + to + https://becker.wustl.edu/ + + + from + ^http://(?:www\.becker|beckerweb)\.wustl\.edu/.* + to + https://becker.wustl.edu/wip/404.html + + + from + ^http://www\.biology4?\.wustl\.edu/(?:\?.*)?$ + to + https://wubio.wustl.edu/ + + + from + ^http://www\.biostatistics\.wustl\.edu/.* + to + https://biostatistics.wustl.edu/ + + + from + ^http://(?:www\.)?campusy\.wustl\.edu/ + to + https://www.ymcastlouis.org/washington-university-campus-ymca + + + from + ^http://(?:www\.)?careers\.wustl\.edu/.* + to + https://careercenter.wustl.edu/ + + + from + ^http://digitalcommons\.wustl\.edu/assets/ + to + https://dcwustl.bepress.com/assets/ + + + from + ^http://www\.diningservices\.wustl\.edu/.* + to + https://diningservices.wustl.edu/ + + + from + ^http://(?:www\.)?eliotsocietyvolunteer\.wustl\.edu/.* + to + https://alumni.wustl.edu/give/annualfund/givingclubs/eliot/volunteers/Pages/default.aspx + + + from + ^http://evals\.wustl\.edu/(?:\?.*)?$ + to + https://asapps.artsci.wustl.edu/evals/login.asp + + + from + ^http://evals\.wustl\.edu/ + to + https://artsci.wustl.edu/~college/Redirect/index.html + + + from + ^http://(bec|bgc|cssa|ican|kgsa)\.grad\.wustl\.edu/ + to + https://gradpages.wustl.edu/$1/ + + + from + ^http://hipaa\.wustl\.edu/ + to + https://secpriv.wusm.wustl.edu/privacy/default.aspx + + + from + ^http://lib(answer|guide)s\.wustl\.edu/(css\d*|data|include|js\d*)/ + to + https://lib$1s.com/$2/ + + + from + ^http://m\.wustl\.edu/.* + to + https://wustl.edu/apps + + + from + ^http://myreslife\.wustl\.edu/(\?.*)?$ + to + https://reslife.wustl.edu/$1 + + + from + ^http://openscholarship\.wustl\.edu/assets/ + to + https://dcwustlmain.bepress.com/assets/ + + + from + ^http://otm\.wustl\.edu/.* + to + https://research.wustl.edu/Offices_Committees/otm/Pages/OTM.aspx + + + from + ^http://outgrads\.wustl\.edu/ + to + https://gradpages.wustl.edu/outgrads/ + + + from + ^http://researchgateway\.wustl\.edu/.* + to + https://research.wustl.edu/pages/researchgateway.aspx + + + from + ^http://(?:www\.)?studentrecords\.wustl\.edu/(\?.*)?$ + to + https://registrar.wustl.edu/$1 + + + from + ^http://(?:www\.)?studentrecords\.wustl\.edu/AcadCalendar(\?.*)?$ + to + https://registrar.wustl.edu/academic-calendars/$1 + + + from + ^http://swi\.ucollege\.wustl\.edu/ + to + https://summerschool.wustl.edu/swi/ + + + from + ^http://ur\.wustl\.edu/(\?.*)?$ + to + https://undergradresearch.wustl.edu/$1 + + + from + ^http://(?:www\.)?visitor\.wustl\.edu/.* + to + https://www.wustl.edu/community/visitors + + + from + ^http://wusmproserv\.wustl\.edu/.* + to + https://medfacilities.wustl.edu/SECURITY/Pages/Home.aspx + + + securecookie + + host + ^(?:acadinfo|[af]ishelp|alumni|(?:asapps|college|computing|thought)\.artsci|assemblyseries|bearsports|becker1?|\.secure\.biostat|brand|bulletin|card|careercenter|ccs|cme|codeofconduct|communityservice|complianceoffice|connect(?:help)?|(?:www\.)?cornerstone|danforthuniversitycenter|du?c|epars|facilities|facultysenate|firstyear|getinvolved|gifts|glo|globaldatabase|go|gradpages|graduateschool|grantsandcontracts|helpdesk|hr|hrpo|icares|inside(?:olin)?|internalaudit|istcs|login|magazine|mcdonnell|med(?:facilities|news|portal|schoolhr)|mylaw|news|news-info|notesplace|nso|oisshome|apps\.olin|apply\.onlinelaw|pages|parents|parking|physicaltherapy|police|provost|pt|publichealth|radsafety|record|research|reslife|rprportal|(?:www\.)?email\.samfox|sc|casarray\.seas|sharedtech|shs|spokane|summer(?:experiences|school)|teachingcenter|telesis|together|train2web|ucollege|undergrad(?:research|uatecouncil)|universitycompliance|wubio|wuissrv20|wulife|wumsapply|wupd|wuro|(?:anest|citservices|dptcourses|dxdialog|facultyaffairs|fpp|mail|portal|ppdpt|risk|secpriv|wusmeducation)\.wusm|wustlkey|www)\.wustl\.edu$ + name + .+ + + target + + + host + wustl.edu + + + host + *.wustl.edu + + + + + Washington University in St. Louis Alumni Association + + ruleset + + name + Washington University in St. Louis Alumni Association + rule + + from + ^http://(?:www\.)?wustlconnections\.com/ + to + https://www.wustlconnections.com/ + + securecookie + + host + ^www\.wustlconnections\.com$ + name + .+ + + target + + + host + wustlconnections.com + + + host + www.wustlconnections.com + + + + + Wasilczyk.pl + + ruleset + + name + Wasilczyk.pl + rule + + from + ^http://(blog\.|www\.)?wasilczyk\.pl/ + to + https://$1wasilczyk.pl/ + + securecookie + + host + ^\.blog\.wasilczyk\.pl$ + name + .+ + + target + + + host + wasilczyk.pl + + + host + *.wasilczyk.pl + + + + + Water Marquee + + ruleset + + name + Water Marquee + rule + + from + ^http://(www\.)?watermarquee\.com/ + to + https://$1watermarquee.com/ + + securecookie + + host + ^(?:.*\.)?watermarquee\.com$ + name + .+ + + target + + + host + watermarquee.com + + + host + *.watermarquee.com + + + + + Water-Challenge.com (partial) + + ruleset + + name + Water-Challenge.com (partial) + rule + + from + ^http://(www\.)?water-challenge\.com/(image\.axd|Styles/|themes/) + to + https://$1water-challenge.com/$2 + + target + + + host + water-challenge.com + + + host + www.water-challenge.com + + + + + Water.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:give\.|www\.)?water\.org/(?!favicon\.ico|media/|static/) + + name + Water.org (partial) + rule + + + from + ^http://(?:www\.)?water\.org/ + to + https://water.org/ + + + from + ^http://(contribut|giv)e\.water\.org/ + to + https://$1e.water.org/ + + + securecookie + + host + ^contribute\.water\.org$ + name + .+ + + target + + + host + water.org + + + host + *.water.org + + + + + Waterfox project.org + + ruleset + + name + Waterfox project.org + rule + + from + ^http://(www\.)?waterfoxproject\.org/ + to + https://$1waterfoxproject.org/ + + target + + + host + waterfoxproject.org + + + host + www.waterfoxproject.org + + + + + Watershed + + ruleset + + name + Watershed + rule + + + from + ^http://(?:www\.)?watershed\.co\.uk/ + to + https://www.watershed.co.uk/ + + + from + ^http://piwik\.watershed\.co\.uk/ + to + https://piwik.watershed.co.uk/ + + + target + + + host + watershed.co.uk + + + host + *.watershed.co.uk + + + + + Watkins.edu + + ruleset + + name + Watkins.edu + rule + + from + ^http://(www\.)?watkins\.edu/ + to + https://$1watkins.edu/ + + target + + + host + watkins.edu + + + host + www.watkins.edu + + + + + Watsi.org + + ruleset + + name + Watsi.org + rule + + from + ^http://(?:www\.)?watsi\.org/ + to + https://watsi.org/ + + target + + + host + watsi.org + + + host + www.watsi.org + + + + + Watson.ch + + ruleset + + name + Watson.ch + rule + + from + ^http://(?:www\.)?watson\.ch/ + to + https://www.watson.ch/ + + target + + + host + watson.ch + + + host + www.watson.ch + + + + + Wattpad.com (partial) + + ruleset + + name + Wattpad.com (partial) + rule + + + from + ^http://(?:www\.)?wattpad\.com/(?=$|\?|user_login(?:$|[?/])) + to + https://www.wattpad.com/ + + + from + ^http://(a|shop)\.wattpad\.com/ + to + https://$1.wattpad.com/ + + + target + + + host + wattpad.com + + + host + *.wattpad.com + + + + + Wauland.de + + ruleset + + name + Wauland.de + rule + + from + ^http://(www\.)?wauland\.de/ + to + https://$1wauland.de/ + + target + + + host + wauland.de + + + host + www.wauland.de + + + + + WaveCon.de + + ruleset + + name + WaveCon.de + rule + + from + ^http://(www\.)?wavecon\.de/ + to + https://$1wavecon.de/ + + target + + + host + wavecon.de + + + host + www.wavecon.de + + + + + Wavpin + + ruleset + + name + Wavpin + rule + + from + ^http://(www\.)?wavpin\.com/ + to + https://$1wavpin.com/ + + securecookie + + host + ^\.wavpin\.com$ + name + .+ + + target + + + host + wavpin.com + + + host + *.wavpin.com + + + + + Wdr.de + + ruleset + + name + Wdr.de + rule + + from + ^http://(www\.)?wdr\.de/ + to + https://www.wdr.de/ + + target + + + host + www.wdr.de + + + host + wdr.de + + + + + We Fight Censorship (partial) + + ruleset + + name + We Fight Censorship (partial) + rule + + from + ^http://(www\.)?wefightcensorship\.org/ + to + https://$1wefightcensorship.org/ + + target + + + host + wefightcensorship.org + + + host + www.wefightcensorship.org + + + + + We Heart It + + ruleset + + name + We Heart It + rule + + + from + ^http://(m\.|www\.)?weheartit\.com/ + to + https://$1weheartit.com/ + + + from + ^http://(assets|data2?)\.whicdn\.com/ + to + https://$1.whicdn.com/ + + + securecookie + + host + ^\.?weheartit\.com$ + name + .+ + + target + + + host + weheartit.com + + + host + *.weheartit.com + + + host + *.whicdn.com + + + + + We Need to Know.info + + ruleset + + name + We Need to Know.info + rule + + from + ^http://(www\.)?weneedtoknow\.info/ + to + https://$1weneedtoknow.info/ + + securecookie + + host + ^\.weneedtoknow\.info$ + name + .+ + + target + + + host + weneedtoknow.info + + + host + *.weneedtoknow.info + + + + + WeChat (partial) + + ruleset + + name + WeChat (partial) + rule + + from + ^http://((?:admin|compass\.admin|api|file\d|login|res|support|video|web\d?|webpush\d?|www)\.)?wechat\.com/ + to + https://$1wechat.com/ + + target + + + host + wechat.com + + + host + *.wechat.com + + + + + WeGotEd.com + + ruleset + + name + WeGotEd.com + rule + + from + ^http://(www\.)?wegoted\.com/ + to + https://$1wegoted.com/ + + securecookie + + host + ^(?:www\.)?wegoted\.com$ + name + .+ + + target + + + host + wegoted.com + + + host + www.wegoted.com + + + + + WeGotWax.com + + ruleset + + name + WeGotWax.com + rule + + from + ^http://(?:www\.)?wegotwax\.com/ + to + https://www.wegotwax.com/ + + securecookie + + host + ^(?:www)?\.wegotwax.com$ + name + .+ + + target + + + host + wegotwax.com + + + host + *.wegotwax.com + + + + + WePay (partial) + + ruleset + + name + WePay (partial) + rule + + from + ^http://((?:stage|static|support|t|www)\.)?wepay\.com/ + to + https://$1wepay.com/ + + securecookie + + host + ^.+\.wepay\.com$ + name + .+ + + target + + + host + wepay.com + + + host + *.wepay.com + + + + + WePromise.EU + + ruleset + + name + WePromise.EU + rule + + from + ^http://(www\.)?wepromise\.eu/ + to + https://$1wepromise.eu/ + + securecookie + + host + ^(?:www\.)?wepromise\.eu$ + name + .+ + + target + + + host + wepromise.eu + + + host + www.wepromise.eu + + + + + WeTransfer + + ruleset + + name + WeTransfer + rule + + from + ^http://(www\.)?wetransfer\.com/ + to + https://$1wetransfer.com/ + + securecookie + + host + ^(?:www\.)?wetransfer\.com$ + name + .+ + + target + + + host + wetransfer.com + + + host + www.wetransfer.com + + + + + WeUseCoins + + ruleset + + name + WeUseCoins + rule + + + from + ^https?://weusecoins\.com/ + to + https://www.weusecoins.com/ + + + from + ^http://([^/:@]+)?\.weusecoins\.com/ + to + https://$1.weusecoins.com/ + + + target + + + host + weusecoins.com + + + host + *.weusecoins.com + + + + + Weather Decision Technologies + + ruleset + + name + Weather Decision Technologies + rule + + + from + ^https?://support\.wdtinc\.com/(?:$|\?.*) + to + https://wdt.zendesk.com/ + + + from + ^http://weather\.wdtinc\.com/ + to + https://weather.wdtinc.com/ + + + target + + host + *.wdtinc.com + + + + Weatherzone (partial) + + ruleset + + exclusion + + pattern + ^http://resources\.weatherzone\.com\.au/(images/widgets/graphics|wz/images/(ads|openx|widgets/graphics))/ + + name + Weatherzone (partial) + rule + + + from + ^https?://weatherzone\.com\.au/ + to + https://www.weatherzone.com.au/ + + + from + ^http://www\.weatherzone\.com\.au/(customise\.jsp|i(mag|nclud)es/|join/) + to + https://www.weatherzone.com.au/$1 + + + from + ^https?://resources\.weatherzone\.com\.au/(?:wz/)?i(mag|nclud)es/ + to + https://www.weatherzone.com.au/i$1es/ + + + target + + + host + weatherzone.com.au + + + host + *.weatherzone.com.au + + + + + Web Design Marketing + + ruleset + + name + Web Design Marketing + rule + + from + ^http://(www\.)?webdesignmarketing\.eu/ + to + https://$1webdesignmarketing.eu/ + + securecookie + + host + ^\.webdesignmarketing.eu$ + name + .+ + + target + + + host + webdesignmarketing.eu + + + host + *.webdesignmarketing.eu + + + + + Web Faction + + ruleset + + name + Web Faction + rule + + from + ^http://((?:blog|docs|help|my|www)\.)?webfaction\.com/ + to + https://$1webfaction.com/ + + target + + + host + webfaction.com + + + host + *.webfaction.com + + + + + Web Forest.eu + + ruleset + + name + Web Forest.eu + rule + + from + ^http://(?:www\.)?webforest\.eu/ + to + https://webforest.eu/ + + securecookie + + host + ^webforest\.eu$ + name + .+ + + target + + + host + webforest.eu + + + host + www.webforest.eu + + + + + Web Foundation.org + + ruleset + + name + Web Foundation.org + rule + + from + ^http://(www\.)?webfoundation\.org/ + to + https://$1webfoundation.org/ + + target + + + host + webfoundation.org + + + host + www.webfoundation.org + + + + + Web Hosting Geeks.com + + ruleset + + name + Web Hosting Geeks.com + rule + + + from + ^http://(?:www\.)?webhostinggeeks\.com/ + to + https://webhostinggeeks.com/ + + + from + ^http://acf\.webhostinggeeks\.com/ + to + https://d2qa8wpyt2chna.cloudfront.net/ + + + securecookie + + host + ^webhostinggeeks\.com$ + name + .+ + + target + + + host + webhostinggeeks.com + + + host + *.webhostinggeeks.com + + + + + Web Hosting Pad (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?webhostingpad\.com/(?!\w+\.css$|images/) + + name + Web Hosting Pad (partial) + rule + + from + ^http://((?:livesupport|secure|support|www)\.)?webhostingpad\.com/ + to + https://$1webhostingpad.com/ + + securecookie + + host + ^s(?:ecure|upport)\.webhostingpad\.com$ + name + .+ + + target + + + host + webhostingpad.com + + + host + *.webhostingpad.com + + + + + Web Hosting Search (partial) + + ruleset + + name + Web Hosting Search (partial) + rule + + from + ^https?://stat\.webhostingsearch\.com/ + to + https://webhostingsearch.122.2o7.net/ + + target + + host + stat.webhostingsearch.com + + + + Web Hosting Talk (partial) + + ruleset + + name + Web Hosting Talk (partial) + rule + + from + ^http://(www\.)?webhostingtalk\.com/ + to + https://$1webhostingtalk.com/ + + securecookie + + host + ^\.webhostingtalk\.com$ + name + .* + + target + + + host + webhostingtalk.com + + + host + *.webhostingtalk.com + + + + + Web Inspector + + ruleset + + name + Web Inspector + rule + + from + ^http://(www\.)?webinspector\.com/ + to + https://$1webinspector.com/ + + securecookie + + host + ^www\.webinspector\.com$ + name + .+ + + target + + + host + webinspector.com + + + host + www.webinspector.com + + + + + Web Inspector App (partial) + + ruleset + + exclusion + + pattern + ^http://app\.webinspector\.com/(online_scan|public|recent_detections) + + name + Web Inspector App (partial) + platform + mixedcontent + rule + + + from + ^https?://app\.webinspector\.com/online_scan$ + to + https://app.webinspector.com/ + + + from + ^http://app\.webinspector\.com/ + to + https://app.webinspector.com/ + + + target + + host + app.webinspector.com + + + + Web Power (partial) + + ruleset + + name + Web Power (partial) + rule + + from + ^http://(?:www\.)?webpower\.nl/ + to + https://www.webpower.nl/ + + securecookie + + host + ^www\.webpower\.nl$ + name + .* + + target + + + host + webpower.nl + + + host + www.webpower.nl + + + + + Web Reservations International (partial) + + ruleset + + name + Web Reservations International (partial) + rule + + + from + ^http://secure\.bookhostels\.com/ + to + https://secure.bookhostels.com/ + + + from + ^https?://(?:images.hostel(?:s|world)|(?:images|static)\.webresint)\.com/ + to + https://static.webresint.com/ + + + from + ^https?://(?:vsecure|www)\.hostelworld\.com/ + to + https://vsecure.hostelworld.com/ + + + from + ^http://ccd\.hwstatic\.com/ + to + https://ucd.hwstatic.com/ + + + from + ^https?://scd\.hwstatic\.com/ + to + https://icd.hwstatic.com/ + + + from + ^htps?://shccd\.hwstatic\.com/ + to + https://ihccd.hwstatic.com/ + + + from + ^http://(icd|ihccd|ucd)\.hwstatic\.com/ + to + https://$1.hwstatic.com/ + + + from + ^http://secure\.webresint\.com/ + to + https://secure.webresint.com/ + + + securecookie + + + host + ^secure\.bookhostels\.com$ + name + .* + + + host + ^vsecure\.hostelworld\.com$ + name + .* + + + host + ^secure\.webresint\.com$ + name + .* + + + target + + + host + secure.bookhostels.com + + + host + images.hostels.com + + + host + *.hostelworld.com + + + host + *.hwstatic.com + + + host + *.webresint.com + + + + + Web Service Award (partial) + + ruleset + + name + Web Service Award (partial) + rule + + from + ^http://ssl\.webserviceaward\.com/ + to + https://ssl.webserviceaward.com/ + + target + + host + ssl.webserviceaward.com + + + + Web Tune Factory + + ruleset + + name + Web Tune Factory + rule + + from + ^https?://(?:www\.)?w-tune\.com/ + to + https://www.w-tune.com/ + + target + + + host + w-tune.com + + + host + www.w-tune.com + + + + + Web of Knowledge + + ruleset + + name + Web of Knowledge + rule + + + from + ^http://(www\.)?isiknowledge\.com/ + to + https://$1isiknowledge.com/ + + + from + ^http://((?:apps|cm|ets|images|sub3|wcs|www)\.)?webofknowledge\.com/ + to + https://$1webofknowledge.com/ + + + securecookie + + host + ^.*\.webofknowledge\.com$ + name + .+ + + target + + + host + isiknowledge.com + + + host + www.isiknowledge.com + + + host + webofknowledge.com + + + host + *.webofknowledge.com + + + + + Web-Stat.net + + ruleset + + name + Web-Stat.net + rule + + from + ^http://(?:www\.)?web-stat\.net/ + to + https://www.web-stat.net/ + + securecookie + + host + ^\.web-stat\.net$ + name + .+ + + target + + + host + web-stat.net + + + host + *.web-stat.net + + + + + Web.com (partial) + + ruleset + + name + Web.com (partial) + rule + + + from + ^https?://(?:www\.)?web\.com/ + to + https://www.web.com/ + + + from + ^http://(support|webmail)\.web\.com/ + to + https://$1.web.com/ + + + from + ^http://wpc\.016b\.edgecastcdn\.net/00016B/ + to + https://ne1.wpc.edgecastcdn.net/00016B/ + + + securecookie + + host + ^(?:.*\.)?web\.com$ + name + .* + + target + + + host + wpc.016b.edgecastcdn.net + + + host + web.com + + + host + *.web.com + + + + + Web4U + + ruleset + + name + Web4U + rule + + + from + ^http://web4u\.cz/ + to + https://www.web4u.cz/ + + + from + ^http://(\w+)\.web4u\.cz/ + to + https://$1.web4u.cz/ + + + securecookie + + host + ^\w*\.web4u\.cz$ + name + .* + + target + + + host + web4u.cz + + + host + *.web4u.cz + + + + + WebAlert.jp + + ruleset + + name + WebAlert.jp + rule + + + from + ^http://(?:www\.)?webalert\.jp/[^?]* + to + https://panel.webalert.jp/ + + + from + ^http://(panel|seal)\.webalert\.jp/ + to + https://$1.webalert.jp/ + + + securecookie + + host + ^panel\.webalert\.jp$ + name + .+ + + target + + + host + webalert.jp + + + host + *.webalert.jp + + + + + WebAssign + + ruleset + + name + WebAssign + rule + + + from + ^http://(www\.)?webassign\.net/ + to + https://webassign.net/ + + + from + ^http://demo\.webassign\.net/ + to + https://demo.webassign.net/ + + + securecookie + + host + webassign\.net/ + name + .* + + target + + + host + www.webassign.net + + + host + demo.webassign.net + + + host + webassign.net + + + + + WebCitz + + ruleset + + name + WebCitz + rule + + from + ^http://(www\.)?webcitz\.com/ + to + https://$1webcitz.com/ + + securecookie + + host + ^(?:w*\.)?webcitz\.com$ + name + .+ + + target + + + host + webcitz.com + + + host + *.webcitz.com + + + + + WebDevStudios (partial) + + ruleset + + name + WebDevStudios (partial) + rule + + + from + ^http://clientarea\.ewebscapes\.com/ + to + https://clientarea.ewebscapes.com/ + + + from + ^http://(?:www\.)?webdevstudios\.com/wp-content/ + to + https://webdevstudios.com/wp-content/ + + + target + + + host + clientarea.ewebscapes.com + + + host + webdevstudios.com + + + host + www.webdevstudios.com + + + + + WebEx Communications + + ruleset + + exclusion + + pattern + ^http://www\. + + name + WebEx Communications + rule + + from + ^http://(\w+\.)?webex\.com/ + to + https://$1webex.com/ + + securecookie + + host + ^.*\.webex\.com$ + name + .* + + target + + host + *.webex.com + + + + WebGo24.de + + ruleset + + name + WebGo24.de + rule + + + from + ^http://(?:www\.)?webgo24\.de/ + to + https://www.webgo24.de/ + + + from + ^http://login\.webgo24\.de/ + to + https://login.webgo24.de/ + + + securecookie + + host + ^www\.webgo24\.de$ + name + .+ + + target + + + host + webgo24.de + + + host + *.webgo24.de + + + + + WebHost4Life + + ruleset + + name + WebHost4Life + rule + + from + ^http://(secure\.|www\.)?webhost4life\.com/ + to + https://$1webhost4life.com/ + + securecookie + + host + ^\.webhost4life\.com$ + name + .+ + + target + + + host + webhost4life.com + + + host + *.webhost4life.com + + + + + WebHostingStuff (partial) + + ruleset + + name + WebHostingStuff (partial) + rule + + + from + ^http://webhostingstuff\.com/ + to + https://webhostingstuff.com/ + + + from + ^http://www\.webhostingstuff\.com/(images/|socialmedia\.html|stuffstyle\.css) + to + https://www.webhostingstuff.com/ + + + target + + + host + webhostingstuff.com + + + host + www.webhostingstuff.com + + + + + WebINK.com (partial) + + ruleset + + name + WebINK.com (partial) + rule + + from + ^http://((?:app|fnt|www)\.)?webink\.com/ + to + https://$1webink.com/ + + securecookie + + host + ^(?:app\.|www\.)?webink\.com$ + name + .+ + + target + + + host + webink.com + + + host + *.webink.com + + + + + WebKite.com (partial) + + ruleset + + name + WebKite.com (partial) + rule + + from + ^http://((?:admin|auth|errors|fb|iago|jafar|results|www)\.)?webkite\.com/ + to + https://$1webkite.com/ + + securecookie + + host + ^\.admin\.webkite\.com$ + name + .+ + + target + + + host + webkite.com + + + host + *.webkite.com + + + + + WebMD (partial) + + ruleset + + name + WebMD (partial) + rule + + + from + ^http://(as|css|doctor|healthmanager|img|member)\.webmd\.com/ + to + https://$1.webmd.com/ + + + from + ^http://ls\.turn\.com/ + to + https://oasc18.247realmedia.com/ + + + from + ^http://std\.o\.webmd\.com/ + to + https://webmdglobal.122.2o7.net/ + + + securecookie + + host + ^(?:as|doctor|healthmanager|member)\.webmd\.com$ + name + .+ + + target + + host + *.webmd.com + + + + WebMD Health + + ruleset + + name + WebMD Health + rule + + from + ^http://(?:www\.)?webmdhealth\.com/ + to + https://www.webmdhealth.com/ + + securecookie + + host + ^(?:www)?\.webmdhealth\.com$ + name + .+ + + target + + + host + webmdhealth.com + + + host + *.webmdhealth.com + + + + + WebMD Health Services + + ruleset + + name + WebMD Health Services + rule + + + from + ^http://(?:www\.)?webmdhealthservices\.com/ + to + https://www.webmdhealthservices.com/ + + + from + ^http://insights\.webmdhealthservices\.com/ + to + https://insights.webmdhealthservices.com/ + + + securecookie + + host + ^(?:insights|www)\.webmdhealthservices\.com$ + name + .+ + + target + + + host + webmdhealthservices.com + + + host + *.webmdhealthservices.com + + + + + WebMoney (partial) + + ruleset + + name + WebMoney (partial) + rule + + + from + ^http://(arbitrage|debt|events|link|my|passport|security|support|wiki)\.webmoney\.ru/ + to + https://$1.webmoney.ru/ + + + from + ^http://(advisor|arbitrage|debt|link|login|my|passport|security|stats|support|wiki)\.wmtransfer\.com/ + to + https://$1.wmtransfer.com/ + + + securecookie + + host + ^.+\.w(?:ebmoney\.ru|mtransfer\.com)$ + name + .+ + + target + + + host + *.webmoney.ru + + + host + *.wmtransfer.com + + + + + WebPlatform + + ruleset + + name + WebPlatform + rule + + from + ^http://(blog|code|docs|preview|project|result|source|static|stats|www)\.webplatform\.org/ + to + https://$1.webplatform.org/ + + securecookie + + host + ^(blog|code|docs|preview|project|result|source|static|stats|www)\.webplatform\.org$ + name + .+ + + target + + + host + blog.webplatform.org + + + host + code.webplatform.org + + + host + docs.webplatform.org + + + host + preview.webplatform.org + + + host + project.webplatform.org + + + host + result.webplatform.org + + + host + source.webplatform.org + + + host + static.webplatform.org + + + host + stats.webplatform.org + + + host + www.webplatform.org + + + + + WebProspector (partial) + + ruleset + + exclusion + + pattern + ^http://www\.webprospector\.de/(?!app/|(?:preise-)?bestellen|css/|img/|js/|kostenlos-(?:flatrate-)?testen|pixel\.php) + + name + WebProspector (partial) + rule + + from + ^http://(mein\.|trs\.|www\.)?webprospector\.de/ + to + https://$1webprospector.de/ + + securecookie + + host + ^mein\.webprospector\.de$ + name + .+ + + target + + + host + webprospector.de + + + host + *.webprospector.de + + + + + WebSanity + + ruleset + + name + WebSanity + rule + + from + ^http://(?:(traffic\.)|www\.)?websanity\.com/ + to + https://$1websanity.com/ + + securecookie + + host + ^traffic\.websanity\.com$ + name + .* + + target + + + host + websanity.com + + + host + *.websanity.com + + + + + WebShop Revolution + + ruleset + + name + WebShop Revolution + rule + + + from + ^http://webshoprevolution\.com/ + to + https://webshoprevolution.com/ + + + from + ^http://([\w-]+)\.webshoprevolution\.com/ + to + https://$1.webshoprevolution.com/ + + + target + + + host + webshoprevolution.com + + + host + *.webshoprevolution.com + + + + + WebSocial.ly (partial) + + ruleset + + name + WebSocial.ly (partial) + rule + + from + ^http://([\w-]+\.)?websocially\.com/(assets/|sign-up(?:$|\?|/)|wp-content/) + to + https://$1websocially.com/$2 + + target + + + host + websocially.com + + + host + *.websocially.com + + + + + WebSpectator.com + + ruleset + + name + WebSpectator.com + rule + + from + ^http://((?:scripts|services|www)\.)?webspectator\.com/ + to + https://$1webspectator.com/ + + securecookie + + host + ^\.webspectator\.com$ + name + .+ + + target + + + host + webspectator.com + + + host + *.webspectator.com + + + + + WebStarts + + ruleset + + name + WebStarts + rule + + from + ^https?://(?:static\.|(www\.))?webstarts\.com/ + to + https://$1webstarts.com/ + + securecookie + + host + ^(?:www\.)?webstarts\.com$ + name + .+ + + target + + + host + webstarts.com + + + host + *.webstarts.com + + + + + WebTrust (partial) + + ruleset + + name + WebTrust (partial) + rule + + from + ^http://(cert|entrust)\.webtrust\.org/ + to + https://$1.webtrust.org/ + + target + + host + *.webtrust.org + + + + WebType (partial) + + ruleset + + exclusion + + pattern + ^http://www\.webtype\.com/(?!global/|local/) + + name + WebType (partial) + rule + + from + ^http://((?:cloud|pls|www)\.)?webtype\.com/ + to + https://$1webtype.com/ + + target + + + host + webtype.com + + + host + *.webtype.com + + + + + WebWeWant.org + + ruleset + + name + WebWeWant.org + rule + + from + ^http://(www\.)?webwewant\.org/ + to + https://$1webwewant.org/ + + target + + + host + webwewant.org + + + host + www.webwewant.org + + + + + WebXakep.Net + + ruleset + + name + WebXakep.Net + rule + + from + ^http://(www\.)?(infotech-team\.com|webxakep\.net)/ + to + https://$1$2/ + + securecookie + + host + ^\.(?:infotech-team\.com|webxakep\.net)$ + name + .+ + + target + + + host + infotech-team.com + + + host + *.infotech-team.com + + + host + webxakep.net + + + host + *.webxakep.net + + + + + WebZilla + + ruleset + + name + WebZilla + rule + + from + ^http://(www\.)?webzilla\.com/ + to + https://$1webzilla.com/ + + target + + + host + webzilla.com + + + host + www.webzilla.com + + + + + Webby Awards (partial) + + ruleset + + name + Webby Awards (partial) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?webbyawards\.com/ + to + https://www.webbyawards.com/ + + securecookie + + host + ^www\.webbyawards\.com$ + name + .* + + target + + + host + webbyawards.com + + + host + www.webbyawards.com + + + + + WebcamBoys (partial) + + ruleset + + name + WebcamBoys (partial) + rule + + from + ^http://(www\.)?webcamboys\.us/ + to + https://$1webcamboys.us/ + + securecookie + + host + ^\.webcamboys\.us$ + name + .+ + + target + + + host + webcamboys.us + + + host + *.webcamboys.us + + + + + Webcruiter (partial) + + ruleset + + name + Webcruiter (partial) + rule + + from + ^http://(www\.)?webcruiter\.no/ + to + https://$1webcruiter.no/ + + securecookie + + host + ^(?:www\.)?webcruiter\.no$ + name + .+ + + target + + + host + webcruiter.no + + + host + www.webcruiter.no + + + + + Webento + + ruleset + + name + Webento + rule + + from + ^http://(www\.)?webento\.com/ + to + https://$1webento.com/ + + securecookie + + host + ^(?:.*\.)?webento\.com$ + name + .+ + + target + + + host + webento.com + + + host + *.webento.com + + + + + Webfest Global + + ruleset + + name + Webfest Global + rule + + from + ^http://(?:www\.)?webfestglobal\.com/ + to + https://www.webfestglobal.com/ + + securecookie + + host + ^www\.webfestglobal\.com$ + name + .+ + + target + + + host + webfestglobal.com + + + host + www.webfestglobal.com + + + + + Webgility (partial) + + ruleset + + name + Webgility (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?(portal\.)?webgility\.com/ + to + https://$2webgility.com/ + + securecookie + + host + ^portal\.webgility\.com$ + name + .* + + target + + + host + webgility.com + + + host + portal.webgility.com + + + host + www.webgility.com + + + + + Webglobe.sk + + ruleset + + name + Webglobe.sk + rule + + from + ^http://(www\.)?webglobe\.sk/ + to + https://www.webglobe.sk/ + + target + + + host + webglobe.sk + + + host + www.webglobe.sk + + + + + WebhostOne + + ruleset + + name + WebhostOne + rule + + + from + ^http://(?:www\.)?webhostone\.de/ + to + https://www.webhostone.de/ + + + from + ^http://(?:www\.)?kcc\.webhostone\.de/ + to + https://kcc.webhostone.de/ + + + securecookie + + host + ^(?:www\.)?(?:kcc\.)?webhostone\.de$ + name + .+ + + target + + + host + webhostone.de + + + host + www.webhostone.de + + + host + kcc.webhostone.de + + + host + www.kcc.webhostone.de + + + + + Webhungary.hu + + ruleset + + name + Webhungary.hu + rule + + from + ^http://(www\.)?webhungary\.hu/ + to + https://$1webhungary.hu/ + + target + + + host + webhungary.hu + + + host + www.webhungary.hu + + + + + Webkit.org + + ruleset + + name + Webkit.org + rule + + from + ^http://((?:bugs|lists|trac|www)\.)?webkit\.org/ + to + https://$1webkit.org/ + + securecookie + + host + ^(?:bugs|trac|www)?\.webkit\.org$ + name + .+ + + target + + + host + webkit.org + + + host + *.webkit.org + + + + + Weblog Awards + + ruleset + + name + Weblog Awards + rule + + from + ^http://(2006\.|www\.)?weblogawards\.org/ + to + https://$1weblogawards.org/ + + securecookie + + host + ^\.weblogawards\.org$ + name + .+ + + target + + + host + weblogawards.org + + + host + *.weblogawards.org + + + + + Webmail.loxinfo.co.th + + ruleset + + name + Webmail.loxinfo.co.th + rule + + from + ^http://webmail\.loxinfo\.co\.th/ + to + https://webmail.loxinfo.co.th/ + + target + + host + webmail.loxinfo.co.th + + + + Webmasterplan.com + + ruleset + + name + Webmasterplan.com + rule + + from + ^http://(bann|partn)ers\.webmasterplan\.com/ + to + https://$1ers.webmasterplan.com/ + + securecookie + + + host + ^\.webmasterplan\.com$ + name + ^affili_\d+$ + + + host + ^(?:bann|partn)ers\.webmasterplan\.com$ + name + .+ + + + target + + host + *.webmasterplan.com + + + + Webnium.co.jp + + ruleset + + name + Webnium.co.jp + rule + + from + ^http://(www\.)?webnium\.co\.jp/ + to + https://$1webnium.co.jp/ + + securecookie + + host + ^\.webnium\.co\.jp$ + name + .+ + + target + + + host + webnium.co.jp + + + host + *.webnium.co.jp + + + + + Weboolu (partial) + + ruleset + + name + Weboolu (partial) + rule + + + from + ^http://(publisher\.|www\.)?weboolu\.com/ + to + https://$1weboolu.com/ + + + from + ^http://(www\.)?webooluinc\.com/ + to + https://$1webooluinc.com/ + + + securecookie + + host + ^(?:w*\.)?weboolu(?:inc)?\.com$ + name + .+ + + target + + + host + weboolu.com + + + host + *.weboolu.com + + + host + webooluinc.com + + + host + *.webooluinc.com + + + + + Weborama (partial) + + ruleset + + name + Weborama (partial) + rule + + + from + ^http://(?:a|el)static\.weborama\.fr/ + to + https://gs1.wpc.edgecastcdn.net/001F34/ + + + from + ^http://cstatic\.weborama\.fr/ + to + https://cstatic.weborama.fr/ + + + from + ^http://perf\.weborama\.fr/ + to + https://webo.solution.weborama.fr/ + + + from + ^http://(\w+)\.solution\.weborama\.fr/ + to + https://$1.solution.weborama.fr/ + + + from + ^http://s(?:sl|tatic)\.weborama\.fr/ + to + https://ssl.weborama.fr/ + + + securecookie + + host + ^\.\w+\.solution\.weborama\.fr$ + name + .* + + target + + + host + *.weborama.fr + + + host + *.solution.weborama.fr + + + host + *.sfr.solution.weborama.fr + + + host + *.webo.solution.weborama.fr + + + + + Webroot.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.webroot\.com/(?!favicon\.ico|shared/) + + name + Webroot.com (partial) + rule + + from + ^http://((?:blog|community|www)\.)?webroot\.com/ + to + https://$1webroot.com/ + + securecookie + + host + ^community\.webroot\.com$ + name + .+ + + target + + + host + webroot.com + + + host + *.webroot.com + + + + + Webropolsurveys.com + + ruleset + + name + Webropolsurveys.com + rule + + from + ^http://(www\.)?webropolsurveys\.com/ + to + https://www.webropolsurveys.com/ + + target + + + host + webropolsurveys.com + + + host + www.webropolsurveys.com + + + + + Webs (partial) + + ruleset + + name + Webs (partial) + rule + + + from + ^http://((?:es\.)?premium\.)?members\.webs\.com/ + to + https://$1members.webs.com/ + + + from + ^http://(images\.(?:free)?web|static\.websimage)s\.com/ + to + https://a248.e.akamai.net/f/1129/8333/3m/$1s.com/ + + + securecookie + + host + ^\.?members\.webm\.com$ + name + .+ + + target + + + host + images.freewebs.com + + + host + *.webs.com + + + host + static.websimages.com + + + + + Websecurify.com + + ruleset + + name + Websecurify.com + rule + + from + ^http://((?:learn|suite|www)\.)?websecurify\.com/ + to + https://$1websecurify.com/ + + securecookie + + host + ^(?:suite)?\.websecurify\.com$ + name + .+ + + target + + + host + websecurify.com + + + host + *.websecurify.com + + + + + Websense (partial) + + ruleset + + name + Websense (partial) + rule + + from + ^http://(community\.|securitylabs\.|www\.)?websense\.com/ + to + https://$1websense.com/ + + securecookie + + host + ^.*\.websense\.com$ + name + .* + + target + + + host + websense.com + + + host + *.websense.com + + + + + Webshopapp.com + + ruleset + + name + Webshopapp.com + rule + + from + ^http://([\w-]+\.)?webshopapp\.com/ + to + https://$1webshopapp.com/ + + target + + + host + webshopapp.com + + + host + *.webshopapp.com + + + + + Website Pipeline (partial) + + ruleset + + name + Website Pipeline (partial) + rule + + + from + ^http://extranet\.websitepipeline\.com/ + to + https://extranet.websitepipeline.com/ + + + from + ^http://gweb03\.webstorepackage\.com/ + to + https://gweb03.webstorepackage.com/ + + + securecookie + + + host + ^extranet\.websitepipeline\.com$ + name + .+ + + + host + ^gweb03\.webstorepackage\.com$ + name + .+ + + + target + + + host + extranet.websitepipeline.com + + + host + gweb03.webstorepackage.com + + + + + WebsiteAlive (partial) + + ruleset + + name + WebsiteAlive (partial) + rule + + + from + ^http://((?:a\d|api|api-(?:v1-)?stage|api-v1|cn1|floorforce|go|godzilla|images|mmos|monitoring|orrick|pcm|pcmall|secure|team|todaysdigitalsolutions|(?:tracking|www)(?:-stage)?)\.)?websitealive\.com/ + to + https://$1websitealive.com/ + + + from + ^http://(?:www\.)?websitealive(\d+)\.com/ + to + https://www.websitealive$1.com/ + + + securecookie + + + host + ^(?:.*\.)?websitealive\.com$ + name + .+ + + + host + ^www\.websitealive\d+\.com$ + name + .+ + + + target + + + host + websitealive.com + + + host + *.websitealive.com + + + host + websitealive1.com + + + host + www.websitealive1.com + + + host + websitealive2.com + + + host + www.websitealive2.com + + + host + websitealive3.com + + + host + www.websitealive3.com + + + host + websitealive4.com + + + host + www.websitealive4.com + + + host + websitealive5.com + + + host + www.websitealive5.com + + + host + websitealive6.com + + + host + www.websitealive6.com + + + host + websitealive7.com + + + host + www.websitealive7.com + + + host + websitealive8.com + + + host + www.websitealive8.com + + + host + websitealive9.com + + + host + www.websitealive9.com + + + host + websitealive10.com + + + host + www.websitealive10.com + + + + + WebsiteGrowers.com + + ruleset + + name + WebsiteGrowers.com + rule + + from + ^http://(www\.)?websitegrowers\.com/ + to + https://$1websitegrowers.com/ + + securecookie + + host + ^(?:www)?\.websitegrowers\.com$ + name + .+ + + target + + + host + websitegrowers.com + + + host + *.websitegrowers.com + + + + + Webspace4All + + ruleset + + name + Webspace4All + rule + + from + ^http://(?:www\.)?webspace4all\.eu/ + to + https://www.webspace4all.eu/ + + securecookie + + host + ^www\.webspace4all\.eu$ + name + .+ + + target + + + host + webspace4all.eu + + + host + www.webspace4all.eu + + + + + Webspace4Clans.de (partial) + + ruleset + + name + Webspace4Clans.de (partial) + rule + + from + ^http://(?:www\.)?webspace4clans\.de/(?=components/|favicon\.ico|images/|index\.php\?option=com_aicontactsafe&sTask=captcha&task=captcha&pf=1&r_id=\d+&lang=\w\w&format=raw|index\.php/(?:domainparking|hosting|only-mail)(?:$|[?/]|\.html)|modules/|plugins/|templates/|ticketsystem(?:$|[?/])) + to + https://webspace4clans.de/ + + securecookie + + host + ^\.webspace4clans\.de$ + name + ^__utm\w$ + + target + + + host + webspace4clans.de + + + host + *.webspace4clans.de + + + + + Websupport_sk_cz_at_hu + + ruleset + + name + Websupport_sk_cz_at_hu + rule + + + from + ^http://(www\.)?websupport\.sk/ + to + https://www.websupport.sk/ + + + from + ^http://(www\.)?websupport\.cz/ + to + https://www.websupport.cz/ + + + from + ^http://(www\.)?websupport\.at/ + to + https://www.websupport.at/ + + + from + ^http://(www\.)?webonic\.hu/ + to + https://www.webonic.hu/ + + + from + ^http://webmail\.websupport\.sk/ + to + https://webmail.websupport.sk/ + + + from + ^http://mail\.websupport\.sk/ + to + https://mail.websupport.sk/ + + + from + ^http://smail\.websupport\.sk/ + to + https://smail.websupport.sk/ + + + from + ^http://mail082\.websupport\.sk/ + to + https://mail082.websupport.sk/ + + + from + ^http://webmail\.websupport\.at/ + to + https://webmail.websupport.at/ + + + from + ^http://mail\.websupport\.at/ + to + https://mail.websupport.at/ + + + from + ^http://mail\.webonic\.hu/ + to + https://mail.webonic.hu/ + + + target + + + host + websupport.sk + + + host + www.websupport.sk + + + host + websupport.cz + + + host + www.websupport.cz + + + host + websupport.at + + + host + www.websupport.at + + + host + webonic.hu + + + host + www.webonic.hu + + + host + webmail.websupport.sk + + + host + mail.websupport.sk + + + host + smail.websupport.sk + + + host + mail082.websupport.sk + + + host + webmail.websupport.at + + + host + mail.websupport.at + + + host + mail.webonic.hu + + + + + Webtimeclock.com + + ruleset + + name + Webtimeclock.com + rule + + from + ^http://(www\.)?webtimeclock\.com/ + to + https://$1webtimeclock.com/ + + securecookie + + host + ^(?:w*\.)?webtimeclock\.com$ + name + .+ + + target + + + host + webtimeclock.com + + + host + *.webtimeclock.com + + + + + Webtracker.jp + + ruleset + + name + Webtracker.jp + rule + + + from + ^http://(t\.|www\.)?webtracker\.jp/ + to + https://$1webtracker.jp/ + + + from + ^http://[ai]\.t\.webtracker\.jp/ + to + https://a.t.webtracker.jp/ + + + securecookie + + host + ^www\.webtracker\.jp$ + name + .+ + + target + + + host + webtracker.jp + + + host + *.webtracker.jp + + + + + WebtraffIQ.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?webtraffiq\.com/(?!images/|styles/) + + name + WebtraffIQ.com (partial) + rule + + from + ^http://(?:(?:dev\.)?secure\.|www\.)?webtraffiq\.com/ + to + https://secure.webtraffiq.com/ + + securecookie + + host + ^secure\.webtraffiq\.com$ + name + .+ + + target + + + host + webtraffiq.com + + + host + *.webtraffiq.com + + + + + Webtraffic.se (partial) + + ruleset + + name + Webtraffic.se (partial) + rule + + from + ^http://(adsby|dyn)\.webtraffic\.se/ + to + https://$1.webtraffic.se/ + + securecookie + + + host + ^\.webtraffic\.se$ + name + (?:CfP|JEB2)$ + + + host + ^\.adsby\.webtraffic\.se$ + name + .+ + + + target + + host + *.webtraffic.se + + + + Webtranslateit + + ruleset + + name + Webtranslateit + rule + + from + ^http://(?:www\.)?webtranslateit\.com/ + to + https://webtranslateit.com/ + + target + + + host + webtranslateit.com + + + host + www.webtranslateit.com + + + + + Webtraxs.com (partial) + + ruleset + + name + Webtraxs.com (partial) + rule + + from + ^http://(?:www\.)?webtraxs\.com/ + to + https://www.webtraxs.com/ + + securecookie + + host + ^www\.webtraxs\.com$ + name + .+ + + target + + + host + webtraxs.com + + + host + www.webtraxs.com + + + + + Webtrekk + + ruleset + + name + Webtrekk + rule + + + from + ^https?://webtrekk\.net/ + to + https://www.webtrekk.net/ + + + from + ^http://([\w\-]+)\.webtrekk\.net/ + to + https://$1.webtrekk.net/ + + + securecookie + + host + ^.*\.webtrekk\.net$ + name + .+ + + target + + + host + webtrekk.net + + + host + *.webtrekk.net + + + + + Webtrekk.net + + ruleset + + name + Webtrekk.net + rule + + from + ^http://gigaset01\.webtrekk\.net/ + to + https://gigaset01.webtrekk.net/ + + target + + host + gigaset01.webtrekk.net + + + + Webtrends (partial) + + ruleset + + name + Webtrends (partial) + platform + mixedcontent + rule + + + from + ^http://include\.reinvigorate\.net/ + to + https://denvua8xbp3vs.cloudfront.net/ + + + from + ^http://(report\.|track\.|www\.)?reinvigorate\.net/ + to + https://$1reinvigorate.net/ + + + from + ^http://(ads|analytics|s?auth|autodiscover|blackberry|(?:(?:apps\.)?uat\.)?connect|developer|email|generator|itservices|m|mobile|ondemand(?:ui)?|ots\.optimize|s|segments|social|tagbuilder)\.webtrends\.com/ + to + https://$1.webtrends.com/ + + + from + ^http://forums\.webtrends\.com/(assets/|favicon\.png) + to + https://getsatisfaction.com/$1 + + + securecookie + + host + ^.*\.webtrendslive\.com$ + name + .+ + + target + + + host + reinvigorate.net + + + host + *.reinvigorate.net + + + host + *.webtrends.com + + + + + Webtrendslive.com + + ruleset + + name + Webtrendslive.com + rule + + from + ^http://statse\.webtrendslive\.com/ + to + https://statse.webtrendslive.com/ + + securecookie + + host + .*\.webtrendslive\.com$ + name + .+ + + target + + host + *.webtrendslive.com + + + + Webtru.st Keyserver + + ruleset + + name + Webtru.st Keyserver + rule + + from + ^http://(www\.)?pgp\.webtru\.st/ + to + https://pgp.webtru.st/ + + target + + + host + pgp.webtru.st + + + host + www.pgp.webtru.st + + + + + Wed.is + + ruleset + + name + Wed.is + rule + + from + ^http://(www\.)?wed\.is/ + to + https://$1wed.is/ + + securecookie + + host + ^\.?wed\.is$ + name + .+ + + target + + + host + wed.is + + + host + *.wed.is + + + + + WeeChat.org + + ruleset + + name + WeeChat.org + rule + + from + ^http://(www\.)?weechat\.org/ + to + https://$1weechat.org/ + + target + + + host + weechat.org + + + host + www.weechat.org + + + + + Weebly (mixed content) + + ruleset + + exclusion + + + pattern + ^https://cdn\d\.editmysite\.com/(?:editor/(?:font|image|librarie)s/|images/(?:404background\.jpg|404_textbox\.png)) + + + pattern + ^http://(?:www\.)?weebly\.com/(?:$|\?) + + + pattern + ^http://(?:www\.)?weebly\.com/images/ + + + name + Weebly (mixed content) + platform + mixedcontent + rule + + + from + ^http://(www\.)?weebly\.com/ + to + https://$1weebly.com/ + + + downgrade + 1 + from + ^https://cdn(1|2)\.editmysite\.com/ + to + http://cdn$1.editmysite.com/ + + + target + + + host + *.editmysite.com + + + host + weebly.com + + + host + www.weebly.com + + + + + Weebly (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?weebly\.com/(?!editor/(?:app|font|image|librarie)s|images/) + + name + Weebly (partial) + rule + + from + ^http://((?:mobileapi|secure|teffect|www)\.)?weebly\.com/ + to + https://$1weebly.com/ + + securecookie + + + host + ^\.weebly\.com$ + name + ^sto-id$ + + + host + ^www\.weebly\.com$ + name + ^wt-\w{6}$ + + + target + + + host + weebly.com + + + host + *.weebly.com + + + + + Week Plan + + ruleset + + name + Week Plan + rule + + from + ^http://(app\.|www\.)?weekplan\.net/ + to + https://$1weekplan.net/ + + securecookie + + host + ^\.weekplan\.net$ + name + .+ + + target + + + host + weekplan.net + + + host + *.weekplan.net + + + + + WeeklyPlus (partial) + + ruleset + + name + WeeklyPlus (partial) + rule + + + from + ^http://(www\.)?weeklyplus\.com/(\w+/membership/|cdn-cgi/|members/|themes/) + to + https://$1weeklyplus.com/$2 + + + from + ^http://(www\.)?weeklyplus\.com/(\w+/membership|members)(\?.*)?$ + to + https://$1weeklyplus.com/$1/$3 + + + target + + + host + weeklyplus.com + + + host + www.weeklyplus.com + + + + + Wego Health.com (partial) + + ruleset + + exclusion + + pattern + ^http://awards\.wegohealth\.com/+(?!nominees(?:$|\?)) + + name + Wego Health.com (partial) + rule + + from + ^http://((?:awards|tv|www)\.)?wegohealth\.com/ + to + https://$1wegohealth.com/ + + securecookie + + host + ^\.wegohealth\.com$ + name + .+ + + target + + + host + wegohealth.com + + + host + *.wegohealth.com + + + + + Weilde Beuger Solmecke + + ruleset + + name + Weilde Beuger Solmecke + rule + + from + ^https?://(?:www\.)?wbs-law\.de/ + to + https://www.wbs-law.de/ + + securecookie + + host + ^www\.wbs-law\.de$ + name + .+ + + target + + + host + wbs-law.de + + + host + www.wbs-law.de + + + + + Weiss Research + + ruleset + + name + Weiss Research + rule + + + from + ^http://(www\.)?moneyandmarkets\.com/ + to + https://$1moneyandmarkets.com/ + + + from + ^http://((?:cdn|images|www)\.)?weissinc\.com/ + to + https://$1weissinc.com/ + + + securecookie + + host + ^.*\.moneyandmarkets\.com$ + name + .* + + target + + + host + moneyandmarkets.com + + + host + *.moneyandmarkets.com + + + host + weissinc.com + + + host + *.weissinc.com + + + + + Weizmann Institute of Science (partial) + + ruleset + + name + Weizmann Institute of Science (partial) + rule + + from + ^http://www\.weizmann\.ac\.il/pages/ + to + https://www.weizmann.ac.il/pages/ + + target + + host + www.weizmann.ac.il + + + + Wellcome Trust Sanger Institute (partial) + + ruleset + + name + Wellcome Trust Sanger Institute (partial) + rule + + from + ^http://(?:www\.)?sanger\.ac\.uk/ + to + https://www.sanger.ac.uk/ + + securecookie + + host + ^www\.sanger\.ac\.uk$ + name + .* + + target + + + host + sanger.ac.uk + + + host + www.sanger.ac.uk + + + + + Wello.com + + ruleset + + name + Wello.com + rule + + from + ^http://(www\.)?wello\.com/ + to + https://$1wello.com/ + + securecookie + + host + ^(?:www)?\.wello\.com$ + name + .+ + + target + + + host + wello.com + + + host + *.wello.com + + + + + Wells Fargo + + ruleset + + name + Wells Fargo + rule + + + from + ^http://wellsfargo\.com/ + to + https://www.wellsfargo.com/ + + + from + ^http://([^/:@\.]+)\.wellsfargo\.com/ + to + https://$1.wellsfargo.com/ + + + target + + + host + wellsfargo.com + + + host + *.wellsfargo.com + + + + + Weltbild.ch + + ruleset + + name + Weltbild.ch + platform + mixedcontent + rule + + from + ^http://(?:www\.)?weltbild\.ch/ + to + https://www.weltbild.ch/ + + securecookie + + host + ^(.*\.)?weltbild\.ch$ + name + .* + + target + + + host + weltbild.ch + + + host + www.weltbild.ch + + + + + Wemineltc.com + + ruleset + + name + Wemineltc.com + rule + + from + ^http://(www\.)?wemineltc\.com/ + to + https://www.wemineltc.com/ + + securecookie + + host + ^(www\.)?wemineltc\.com$ + name + .* + + target + + + host + wemineltc.com + + + host + www.wemineltc.com + + + + + Wennect.info + + ruleset + + name + Wennect.info + rule + + from + ^http://(?:(admin\.)|www\.)?wennect\.info/ + to + https://$1wennect.info/ + + target + + + host + wennect.info + + + host + *.wennect.info + + + + + West Jet + + ruleset + + name + West Jet + rule + + + from + ^http://westjet\.com/ + to + https://www.westjet.com/ + + + from + ^http://(hg|www)\.westjet\.com/ + to + https://$1.westjet.com/ + + + target + + + host + westjet.com + + + host + *.westjet.com + + + + + West Virginia University (partial) + + ruleset + + name + West Virginia University (partial) + rule + + + from + ^http://((?:about|apply|brand|cal|calendar|careerservices|cas|connect|facebook|ferpa|financialaid|grad|(?:autodiscover|exweb|sole|www)\.hsc|kc|(?:enginecms|mediasite(?:hscmed)?|reserves|systems)\.lib|map|mixinfo|myaccess|myapps|myid|nanosafe|researchoffice|sharedresearchfacilities|tour|twitter|webservices|wvudownloads|wvugw|www)\.)?wvu\.edu/ + to + https://$1wvu.edu/ + + + from + ^http://(?:www\.)?(admissions|eberly|emergency|finaid|hr|itunes|law|mix|oit|protected|research|slate|slatecms|studentaccounts|wvutoday)\.wvu\.edu/ + to + https://$1.wvu.edu/ + + + from + ^http://libguides\.wvu\.edu/(css\d*/|data/|favicon\.ico|images/|include/|js\d*/) + to + https://libguides.com/$1 + + + from + ^http://(?:www\.)?libraries\.wvu\.edu/ + to + https://www.libraries.wvu.edu/ + + + from + ^http://medicine\.hsc\.wvu\.edu/(?:\?.*)$ + to + https://www.hsc.wvu.edu/som + + + from + ^http://www\.simpleforms\.scripts\.wvu\.edu/(?!\?).+ + to + https://www.wvu.edu/error/404.html + + + from + ^http://(?:www\.)?assets\.slate\.wvu\.edu/resources/ + to + https://slate.wvu.edu/resources/ + + + from + ^http://www\.slate\.wvu\.edu/[^?]*(\?.*)? + to + https://slate.wvu.edu/$1 + + + securecookie + + + host + ^\.wvu\.edu$ + name + ^(?:fos\.secure\.web\.server|slate_\w{32}|_wvutodaystaging_1\.0\.0)$ + + + host + ^(?:about|admissions|apply|brand|cal|calendar|careerservices|cas|connect|eberly|emergency|facebook|ferpa|finaid|financialaid|grad|hr|(?:exweb|www)\.hsc|itunes|kc|law|(?:enginecms|mediasite(?:hscmed)?|reserves|systems)\.lib|www\.libraries|map|mix|mixinfo|myapps|myid|nanosafe|research(?:office)?|sharedresearchfacilities|slate|slatecms|studentaccounts|tour|twitter|webservices|wvudownloads|wvugw|wvutoday|www)\.wvu\.edu$ + name + .+ + + + target + + + host + wvu.edu + + + host + *.wvu.edu + + + + + Westconsin Credit Union + + ruleset + + name + Westconsin Credit Union + rule + + + from + ^http://(www\.)?westconsincu\.org/ + to + https://$1westconsincu.org/ + + + from + ^http://(?:www\.)?westconsincuhb\.org/ + to + https://www.westconsincuhb.org/ + + + securecookie + + + host + ^\.westconsincu\.org$ + name + .+ + + + host + ^www\.westconsincuhb\.org$ + name + .+ + + + target + + + host + westconsincu.org + + + host + *.westconsincu.org + + + host + westconsincuhb.org + + + host + www.westconsincuhb.org + + + + + Western Union (partial) + + ruleset + + name + Western Union (partial) + rule + + + from + ^http://(agentportal|(?:demo\.|payee\.)?globalpay|marketing|online|secure|wumt)\.westernunion\.com/ + to + https://$1.westernunion.com/ + + + from + ^http://metrics\.westernunion\.com/ + to + https://westernunion-com.d1.sc.omtrdc.net/ + + + from + ^http://(www\.)?wupaymentsolutions\.com/ + to + https://$1wupaymentsolutions.com/ + + + securecookie + + + host + ^\.westernunion\.com$ + name + ^s_\w+$ + + + host + ^(?:agentportal|(?:demo\.)?globalpay|marketing|online|secure|wumt)\.westernunion\.com$ + name + .+ + + + target + + + host + *.westernunion.com + + + host + wupaymentsolutions.com + + + host + www.wupaymentsolutions.com + + + + + WestlandUtrecht Bank + + ruleset + + name + WestlandUtrecht Bank + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?westlandutrecht(?:bank)?\.nl/ + to + https://www.westlandutrechtbank.nl/ + + + from + ^http://(?:www\.)?mijnwestlandutrecht\.nl/ + to + https://mijnwestlandutrecht.nl/ + + + target + + + host + www.westlandutrecht.nl + + + host + westlandutrecht.nl + + + host + www.westlandutrechtbank.nl + + + host + westlandutrechtbank.nl + + + host + www.mijnwestlandutrecht.nl + + + host + mijnwestlandutrecht.nl + + + + + Westlaw.com (partial) + + ruleset + + name + Westlaw.com (partial) + rule + + from + ^http://((?:lawschool|[1m]\.next|onepass|(?:images\.)?store|text|web2|west|www)\.)?westlaw\.com/ + to + https://$1westlaw.com/ + + securecookie + + host + ^(?:(?:lawschool|[1m]\.next|store|text|web2|west|www)\.)?westlaw\.com$ + name + .* + + target + + + host + westlaw.com + + + host + *.westlaw.com + + + + + Westlotto.com + + ruleset + + name + Westlotto.com + rule + + from + ^http://wlresults\.westlotto\.com/ + to + https://wlresults.westlotto.com/ + + target + + host + *.westlotto.com + + + + Westpac + + ruleset + + name + Westpac + rule + + + from + ^http://westpac\.com\.au/ + to + https://www.westpac.com.au/ + + + from + ^http://(businessonline|info|introducers|m\.onlineinvesting|onlineinvesting|services|www)\.westpac\.com\.au/ + to + https://$1.westpac.com.au/ + + + target + + + host + westpac.com.au + + + host + *.westpac.com.au + + + + + Wg cdn.net + + ruleset + + name + Wg cdn.net + rule + + from + ^http://(?:www\d|secure)\.wgcdn\.net/ + to + https://secure.wgcdn.net/ + + target + + host + *.wgcdn.net + + + + WhatCD + + ruleset + + name + WhatCD + rule + + + from + ^http://(www\.)?what\.cd/ + to + https://what.cd/ + + + from + ^http://(m|ssl)\.what\.cd/ + to + https://$1.what.cd/ + + + target + + + host + what.cd + + + host + *.what.cd + + + + + WhatIsMyIP + + ruleset + + name + WhatIsMyIP + platform + mixedcontent + rule + + from + ^http://(www\.)?whatismyip\.com/ + to + https://$1whatismyip.com/ + + securecookie + + host + ^(?:.*\.)?whatismyip\.com$ + name + .+ + + target + + + host + whatismyip.com + + + host + *.whatismyip.com + + + + + Whatbox.ca + + ruleset + + name + Whatbox.ca + rule + + from + ^http://((?:m|ssl|www)\.)?whatbox\.ca/ + to + https://$1whatbox.ca/ + + target + + + host + whatbox.ca + + + host + *.whatbox.ca + + + + + Whatimg.com + + ruleset + + name + Whatimg.com + rule + + from + ^http://(www\.)?whatimg\.com/ + to + https://whatimg.com/ + + target + + + host + whatimg.com + + + host + www.whatimg.com + + + + + Whats My DNS.net + + ruleset + + name + Whats My DNS.net + rule + + from + ^http://(www\.)?whatsmydns\.net/ + to + https://$1whatsmydns.net/ + + securecookie + + host + ^www\.whatsmydns\.net$ + name + .+ + + target + + + host + whatsmydns.net + + + host + www.whatsmydns.net + + + + + WhatsApp.com + + ruleset + + name + WhatsApp.com + rule + + from + ^http://((?:blog|translate|www)\.)?whatsapp\.com/ + to + https://$1whatsapp.com/ + + securecookie + + host + ^\.whatsapp\.com$ + name + .+ + + target + + + host + whatsapp.com + + + host + *.whatsapp.com + + + + + Wheel.sk + + ruleset + + name + Wheel.sk + rule + + from + ^http://(gentoo\.|www\.)?wheel\.sk/ + to + https://$1wheel.sk/ + + target + + + host + wheel.sk + + + host + *.wheel.sk + + + + + Where 2 Get It (partial) + + ruleset + + name + Where 2 Get It (partial) + rule + + + from + ^http://(direct|hosted|ignite)\.where2getit\.com/ + to + https://$1.where2getit.com/ + + + from + ^http://mobile\.where2getit\.com/([\w-]+)/(images|javascript)/ + to + https://hosted.where2getit.com/$1/$2/ + + + from + ^http://static\.where2getit\.com/w2gi/ + to + https://hosted.where2getit.com/w2gi/ + + + securecookie + + host + ^\.(?:hosted|ignite)\.where2getit\.com$ + name + .+ + + target + + host + *.where2getit.com + + + + Where.com + + ruleset + + name + Where.com + rule + + from + ^http://((?:ads?|paypal\.adtag|upstream|www)\.)?where\.com/ + to + https://$1where.com/ + + securecookie + + host + ^ad\.where\.com$ + name + .+ + + target + + + host + where.com + + + host + *.where.com + + + + + Which? (partial) + + ruleset + + exclusion + + + pattern + ^http://staticwhich\.co\.uk/+(?:$|\?) + + + pattern + ^http://blogs\.which\.co\.uk/+(?!\w+/(?:(?:login|register)(?:$|[?/])|wp-(?:content|includes)/)|favicon\.ico) + + + pattern + ^http://www\.which\.co\.uk/+(?!assets/|components/eprivacy\.html|favicon\.ico|(?:login|signup)(?:$|[?/])|media/) + + + name + Which? (partial) + rule + + + from + ^http://(www\.)?staticwhich\.co\.uk/ + to + https://$1staticwhich.co.uk/ + + + from + ^http://((?:blogs|info|www)\.)?which\.co\.uk/ + to + https://$1which.co.uk/ + + + from + ^http://search\.which\.co\.uk/(?=favicon\.ico|sli_styles\.css) + to + https://which.resultspage.com/ + + + from + ^http://(www\.)?which\.net/(?=(?:about|services|support)(?:$|[?/])|assets/|favicon\.ico|images/|styles/) + to + https://$1which.net/ + + + from + ^http://(?:www\.)?which\.net/(?=(?:account|webmail)(?:$|[?/])) + to + https://www.which.net/ + + + from + ^http://static\.which\.net/ + to + https://www.staticwhich.co.uk/ + + + from + ^http://subscribe\.which\.net/+[^?]* + to + https://www.which.net/account + + + securecookie + + + host + ^which\.net$ + name + ^SQMSESSID$ + + + host + ^(?:www\.)?staticwhich\.co\.uk$ + name + .+ + + + target + + + host + staticwhich.co.uk + + + host + www.staticwhich.co.uk + + + host + which.co.uk + + + host + *.which.co.uk + + + host + which.net + + + host + *.which.net + + + + + Whirlpool + + ruleset + + name + Whirlpool + rule + + from + ^http://(bc\.|forums\.|www\.)?whirlpool\.net\.au/ + to + https://$1whirlpool.net.au/ + + securecookie + + host + ^\.whirlpool\.net\.au$ + name + .+ + + target + + + host + whirlpool.net.au + + + host + *.whirlpool.net.au + + + + + Whiskey Media (partial) + + ruleset + + name + Whiskey Media (partial) + rule + + + from + ^http://auth\.(comicvine|whiskeymedia)\.com/ + to + https://auth.$1.com/ + + + from + ^https?://media\.(comicvine|screened|corp\.whiskeymedia)\.com/ + to + https://s3.amazonaws.com/media.$1.com/ + + + from + ^http://files\.tested\.com/ + to + https://ddjhyz888xk1m.cloudfront.net/ + + + target + + + host + *.comicvine.com + + + host + media.screened.com + + + host + files.tested.com + + + host + auth.whiskeymedia.com + + + host + media.corp.whiskeymedia.com + + + + + Whisper Gifts (partial) + + ruleset + + name + Whisper Gifts (partial) + rule + + + from + ^https://whispergifts\.com/ + to + https://whispergifts.com/ + + + from + ^http://www\.whispergifts/(media/|whisper/(?:login|manage|signup)) + to + https://www.whispergifts/$1 + + + target + + + host + whispergifts.com + + + host + www.whispergifts.com + + + + + WhisperSystems (partial) + + ruleset + + name + WhisperSystems (partial) + rule + + + from + ^http://(www\.)?whispersystems\.org/ + to + https://$1whispersystems.org/ + + + from + ^http://support\.whispersystems\.org/(?=favicon\.ico|images/) + to + https://openwhispersystems.desk.com/ + + + target + + + host + whispersystems.org + + + host + *.whispersystems.org + + + + + WhistleOut (partial) + + ruleset + + name + WhistleOut (partial) + rule + + + from + ^http://(www\.)?whistleout\.co(m|m\.au|\.uk)/(blog/wp-content/|css/|ImageLibrary/) + to + https://$1whistleout.co$2/$3 + + + from + ^http://resources([123])\.whistleout\.com/ + to + https://resources$1.whistleout.com/ + + + target + + + host + whistleout.com + + + host + *.whistleout.com + + + host + whistleout.com.au + + + host + www.whistleout.com.au + + + host + whistleout.co.uk + + + host + www.whistleout.co.uk + + + + + White Cat Publications + + ruleset + + name + White Cat Publications + rule + + from + ^http://(?:www\.)?whitecatpublications\.com/ + to + https://www.whitecatpublications.com/ + + securecookie + + host + ^(?:www)?\.whitecatpublications\.com$ + name + .+ + + target + + + host + whitecatpublications.com + + + host + *.whitecatpublications.com + + + + + White Hot Hair.co.uk (partial) + + ruleset + + name + White Hot Hair.co.uk (partial) + rule + + from + ^http://(?:www\.)?whitehothair\.co\.uk/(?=$|\?|address-details\.aspx|App_Portals/|[aA]pp_[tT]hemes/|login\.aspx|WebResource\.axd) + to + https://www.whitehothair.co.uk/ + + target + + + host + whitehothair.co.uk + + + host + www.whitehothair.co.uk + + + + + WhiteFence.com (partial) + + ruleset + + name + WhiteFence.com (partial) + rule + + + from + ^http://(?:www\.)?whitefence\.com/ + to + https://www.whitefence.com/ + + + from + ^http://ox-d\.whitefence\.com/ + to + https://ox-d.whitefence.com/ + + + securecookie + + host + ^ox-d\.whitefence\.com$ + name + .+ + + target + + + host + whitefence.com + + + host + *.whitefence.com + + + + + WhiteHat Security + + ruleset + + name + WhiteHat Security + rule + + from + ^http://(blog\.|info\.|www\.)?whitehatsec\.com/ + to + https://$1whitehatsec.com/ + + securecookie + + host + ^(?:blog|info)\.whitehatsec\.com$ + name + .+ + + target + + + host + whitehatsec.com + + + host + *.whitehatsec.com + + + + + Whitelabel.net + + ruleset + + name + Whitelabel.net + rule + + from + ^http://(www\.)?whitelabel\.net/ + to + https://$1whitelabel.net/ + + securecookie + + host + ^\.?whitelabel\.net$ + name + .+ + + target + + + host + whitelabel.net + + + host + *.whitelabel.net + + + + + Whiteout.io + + ruleset + + name + Whiteout.io + rule + + from + ^http://(blog\.|www\.)?whiteout\.io/ + to + https://$1whiteout.io/ + + target + + + host + whiteout.io + + + host + *.whiteout.io + + + + + Whitepages.com (partial) + + ruleset + + name + Whitepages.com (partial) + rule + + + from + ^http://(s|w)\.cdnwp\.com/ + to + https://$1.cdnwp.com/ + + + from + ^http://whitepages\.com/ + to + https://www.whitepages.com/ + + + from + ^http://(pro|secure)\.whitepages\.com/ + to + https://$1.whitepages.com/ + + + securecookie + + host + ^secure\.whitepages\.com$ + name + .+ + + target + + + host + *.cdnwp.com + + + host + whitepages.com + + + host + *.whitepages.com + + + + + WhoSampled.com (partial) + + ruleset + + name + WhoSampled.com (partial) + rule + + from + ^http://(www\.)?whosampled\.com/(?=accounts/(?:login|registration)(?:$|[?/])|static/) + to + https://$1whosampled.com/ + + target + + + host + whosampled.com + + + host + www.whosampled.com + + + + + Whole Earth 'Lectronic Link (partial) + + ruleset + + name + Whole Earth 'Lectronic Link (partial) + rule + + + from + ^https?://(?:www\.)?well\.com/(images/|(?:cgi-bin/)?newpass/|well\.css) + to + https://www.well.com/$1 + + + from + ^http://(iris|user)\.well\.com/ + to + https://$1.well.com/ + + + securecookie + + host + ^(?:iris|user)\.well\.com$ + name + .+ + + target + + + host + well.com + + + host + *.well.com + + + + + Whole Foods Market.com + + ruleset + + name + Whole Foods Market.com + rule + + from + ^http://(users\.|www\.)?wholefoodsmarket\.com/ + to + https://$1wholefoodsmarket.com/ + + securecookie + + host + ^users\.wholefoodsmarket\.com$ + name + .+ + + target + + + host + wholefoodsmarket.com + + + host + *.wholefoodsmarket.com + + + + + Wholesale Labels.com (partial) + + ruleset + + name + Wholesale Labels.com (partial) + rule + + from + ^http://(www\.)?wholesalelabels\.com/(?=favicon\.ico|images/|include/) + to + https://$1wholesalelabels.com/ + + target + + + host + wholesalelabels.com + + + host + www.wholesalelabels.com + + + + + Whonix.org + + ruleset + + name + Whonix.org + rule + + from + ^http://(?:www\.)?whonix\.org/ + to + https://www.whonix.org/ + + securecookie + + host + ^(?:www\.)?whonix\.org$ + name + .+ + + target + + + host + whonix.org + + + host + www.whonix.org + + + + + WhosOn.com (partial) + + ruleset + + name + WhosOn.com (partial) + rule + + from + ^http://(chat|gateway[3-9]?|gateway1[01])\.whoson\.com/ + to + https://$1.whoson.com/ + + target + + host + *.whoson.com + + + + Wi-Fi Alliance + + ruleset + + name + Wi-Fi Alliance + rule + + + from + ^https?://(?:www\.)?wi-fi\.org/ + to + https://www.wi-fi.org/ + + + from + ^http://certifications\.wi-fi\.org/ + to + https://certifications.wi-fi.org/ + + + securecookie + + host + ^(?:certifications|www)\.wi-fi\.org$ + name + .* + + target + + + host + wi-fi.org + + + host + *.wi-fi.org + + + + + WiGLE + + ruleset + + name + WiGLE + platform + mixedcontent + rule + + from + ^http://(www\.)?wigle\.net/ + to + https://$1wigle.net/ + + securecookie + + host + ^\.wigle\.net$ + name + .+ + + target + + + host + wigle.net + + + host + *.wigle.net + + + + + WiMo.com + + ruleset + + name + WiMo.com + rule + + from + ^http://(www\.)?wimo\.com/ + to + https://$1wimo.com/ + + target + + + host + wimo.com + + + host + www.wimo.com + + + + + WiTopia.net + + ruleset + + name + WiTopia.net + rule + + + from + ^http://(?:www\.)?witopia\.net/ + to + https://www.witopia.net/ + + + from + ^http://my\.witopia\.net/ + to + https://my.witopia.net/ + + + securecookie + + host + ^my\.witopia\.net$ + name + .+ + + target + + + host + witopia.net + + + host + *.witopia.net + + + + + Wicked Fiber + + ruleset + + name + Wicked Fiber + rule + + from + ^http://(www\.)?wickedfiber\.com/ + to + https://$1wickedfiber.com/ + + securecookie + + host + ^(?:www\.)?wickedfiber\.com$ + name + .+ + + target + + + host + wickedfiber.com + + + host + www.wickedfiber.com + + + + + Wicked Lasers + + ruleset + + name + Wicked Lasers + platform + mixedcontent + rule + + from + ^http://(www\.)?wickedlasers\.com/ + to + https://$1wickedlasers.com/ + + securecookie + + host + ^\.?www\.wickedlasers\.com$ + name + .* + + target + + + host + wickedlasers.com + + + host + www.wickedlasers.com + + + host + *.www.wickedlasers.com + + + + + Wickr.com + + ruleset + + name + Wickr.com + rule + + from + ^http://(www\.)?wickr\.com/ + to + https://$1wickr.com/ + + target + + + host + wickr.com + + + host + www.wickr.com + + + + + Widgetbox.com (partial) + + ruleset + + name + Widgetbox.com (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?widget(box|server)\.com/ + to + https://www.widget$1.com/ + + + from + ^http://pub\.widgetbox\.com/ + to + https://pub.widgetbox.com/ + + + from + ^https?://support\.widgetbox\.com/generated/ + to + https://generated.zendesk.com/generated/ + + + from + ^http://(cdn|p|t)\.widgetserver\.com/ + to + https://$1.widgetserver.com/ + + + securecookie + + host + ^www\.widgetbox\.com$ + name + .+ + + target + + + host + widgetbox.com + + + host + *.widgetbox.com + + + host + widgetserver.com + + + host + *.widgetserver.com + + + + + Wiggle (partial) + + ruleset + + name + Wiggle (partial) + rule + + + from + ^http://(?:www\.)?wiggle\.co\.uk/(favicon\.ico|h/|secure/) + to + https://www.wiggle.co.uk/$1 + + + from + ^http://(ajax|s|s-dyni)\.wiggle\.co\.uk/ + to + https://$1.wiggle.co.uk/ + + + from + ^http://www\.wigglestatic\.com/ + to + https://www.wigglestatic.com/ + + + securecookie + + host + ^ajax\.wiggle\.co\.uk$ + name + .+ + + target + + + host + wiggle.co.uk + + + host + *.wiggle.co.uk + + + host + www.wigglestatic.com + + + + + Wiiings.com + + ruleset + + name + Wiiings.com + rule + + + from + ^http://(?:www\.)?wiiings\.com/ + to + https://www.wiiings.com/ + + + from + ^http://(dms|dms-[dq]|int-mas|mas|stage-mas)\.wiiings\.com/ + to + https://$1.wiiings.com/ + + + securecookie + + host + ^(?:dms|dms-[dq]|int-mas|mas|stage-mas|www)\.wiiings\.com$ + name + .+ + + target + + + host + wiiings.com + + + host + *.wiiings.com + + + + + Wiki.15m.cc + + ruleset + + name + Wiki.15m.cc + rule + + from + ^http://wiki\.15m\.cc/ + to + https://wiki.15m.cc/ + + target + + host + wiki.15m.cc + + + + WikiFur + + ruleset + + name + WikiFur + rule + + from + ^http://([a-z][a-z]\.)?wikifur\.com/ + to + https://$1wikifur.com/ + + securecookie + + host + ^([a-z][a-z]\.)?wikifur\.com$ + name + .+ + + target + + + host + wikifur.com + + + host + *.wikifur.com + + + + + WikiLeaks + + ruleset + + name + WikiLeaks + rule + + from + ^http://((?:chat|search|shop|www)\.)?wikileaks\.org/ + to + https://$1wikileaks.org/ + + securecookie + + host + ^(?:w*\.)?wikileaks\.org$ + name + .+ + + target + + + host + wikileaks.org + + + host + *.wikileaks.org + + + + + WikiSpooks + + ruleset + + name + WikiSpooks + rule + + + from + ^https?://wikispooks\.com/ + to + https://www.wikispooks.com/ + + + from + ^http://([^/:@]+)?\.wikispooks\.com/ + to + https://$1.wikispooks.com/ + + + securecookie + + host + ^(.*\.)?wikispooks\.com$ + name + .+ + + target + + + host + wikispooks.com + + + host + *.wikispooks.com + + + + + Wikidot (partial) + + ruleset + + exclusion + + + pattern + ^http://blog\.wikidot\.com/($|blog:.+[^/].*) + + + pattern + ^http://snippets\.wikidot\.com/($|.+[^:].*) + + + name + Wikidot (partial) + platform + mixedcontent + rule + + + from + ^http://([\w\-_]+\.)?wdfiles\.com/ + to + https://$1wdfiles.com/ + + + from + ^http://(?:\d)\.([\w\-_]+)\.wdfiles\.com/ + to + https://$1.wdfiles.com/ + + + from + ^http://wikidot\.com/ + to + https://www.wikidot.com/ + + + from + ^http://([\w\-_]+)\.wikidot\.com/local- + to + https://$1.wikidot.com/local- + + + from + ^http://(blog|snippets|static(-\d)?|www)\.wikidot\.com/ + to + https://$1.wikidot.com/ + + + securecookie + + host + .*\.wdfiles\.com$ + name + .* + + target + + + host + wdfiles.com + + + host + *.wdfiles.com + + + host + 1.*.wdfiles.com + + + host + 2.*.wdfiles.com + + + host + 3.*.wdfiles.com + + + host + 4.*.wdfiles.com + + + host + 5.*.wdfiles.com + + + host + 6.*.wdfiles.com + + + host + 7.*.wdfiles.com + + + host + 8.*.wdfiles.com + + + host + 9.*.wdfiles.com + + + host + wikidot.com + + + host + *.wikidot.com + + + + + Wikileaks Party (partial) + + ruleset + + name + Wikileaks Party (partial) + rule + + from + ^http://(www\.)?wikileaksparty\.org\.au/(component|form|image|plugin|template)s/ + to + https://$1wikileaksparty.org.au/$2s/ + + target + + + host + wikileaksparty.org.au + + + host + www.wikileaksparty.org.au + + + + + Wikimedia + + ruleset + + exclusion + + + pattern + ^http://(?:apt|cs|cz|parsoid-lb\.eqiad|status|torrus|ubuntu)\.wikimedia\.org + + + pattern + ^http://lists\.wikimedia\.org/pipermail(?:$|/) + + + name + Wikimedia + rule + + + from + ^http://(en|fr)wp\.org/ + to + https://$1.wikipedia.org/wiki/ + + + from + ^http://(?:www\.)?mediawiki\.org/ + to + https://www.mediawiki.org/ + + + from + ^https?://download\.wikipedia\.org/ + to + https://dumps.wikimedia.org/ + + + from + ^http://links\.email\.donate\.wikimedia\.org/ + to + https://www.links.mkt41.net/ + + + from + ^https?://(download|dataset2|sitemap)\.wikimedia\.org/ + to + https://dumps.wikimedia.org/ + + + from + ^https?://(labs-ns[01]|virt0)\.wikimedia\.org/ + to + https://wikitech.wikimedia.org/ + + + from + ^https?://noboard\.chapters\.wikimedia\.org/ + to + https://noboard-chapters.wikimedia.org/ + + + from + ^https?://wg\.en\.wikipedia\.org/ + to + https://wg-en.wikipedia.org/ + + + from + ^https?://arbcom\.(de|en|fi|nl)\.wikipedia\.org/ + to + https://arbcom-$1.wikipedia.org/ + + + from + ^http://([^@:/]+\.)?wik(ibooks|idata|imedia|inews|ipedia|iquote|isource|iversity|ivoyage|tionary)\.org/ + to + https://$1wik$2.org/ + + + from + ^http://(www\.)?wikimediafoundation\.org/ + to + https://$1wikimediafoundation.org/ + + + from + ^http://(www\.)?wikimedia\.ca/ + to + https://wikimedia.ca/ + + + from + ^http://([^@:/]+)\.wmflabs\.org/ + to + https://$1.wmflabs.org/ + + + securecookie + + + host + ^\.wik(?:ibooks|idata|imedia|imediafoundation|inews|ipedia|iquote|isource|iversity|ivoyage|tionary)\.org$ + name + ^GeoIP$ + + + host + ^([^@:/]+\.)?wik(ibooks|idata|inews|ipedia|iquote|isource|iversity|ivoyage|tionary)\.org$ + name + .* + + + host + ^(species|commons|meta|incubator|wikitech).wikimedia.org$ + name + .* + + + host + ^(?:www\.)?mediawiki\.org$ + name + .* + + + host + ^wikimediafoundation.org$ + name + .* + + + target + + + host + enwp.org + + + host + frwp.org + + + host + mediawiki.org + + + host + www.mediawiki.org + + + host + wikimedia.org + + + host + *.wikimedia.org + + + host + wikimediafoundation.org + + + host + www.wikimediafoundation.org + + + host + wikibooks.org + + + host + *.wikibooks.org + + + host + wikidata.org + + + host + *.wikidata.org + + + host + wikinews.org + + + host + *.wikinews.org + + + host + wikipedia.org + + + host + *.wikipedia.org + + + host + wikiquote.org + + + host + *.wikiquote.org + + + host + wikisource.org + + + host + *.wikisource.org + + + host + wikiversity.org + + + host + *.wikiversity.org + + + host + wikivoyage.org + + + host + *.wikivoyage.org + + + host + wiktionary.org + + + host + *.wiktionary.org + + + host + wikimedia.ca + + + host + www.wikimedia.ca + + + host + tools.wmflabs.org + + + host + icinga.wmflabs.org + + + host + ganglia.wmflabs.org + + + + + Wikinvest + + ruleset + + name + Wikinvest + rule + + from + ^https?://(?:ad\.|cdn\.|www\.)?wikinvest\.com/ + to + https://www.wikinvest.com/ + + securecookie + + host + ^\.www\.wikinvest\.com$ + name + .+ + + target + + + host + wikinvest.com + + + host + *.wikinvest.com + + + host + *.www.wikinvest.com + + + + + Wikivs.com + + ruleset + + name + Wikivs.com + rule + + from + ^http://(?:www\.)?wikivs\.com/ + to + https://www.wikivs.com/ + + target + + + host + www.wikivs.com + + + host + wikivs.com + + + + + Wild Apricot.org + + ruleset + + name + Wild Apricot.org + rule + + from + ^http://(?:(f\.)|www\.)?wildapricot\.org/ + to + https://$1wildapricot.org/ + + securecookie + + host + ^wildapricot\.org$ + name + .+ + + target + + + host + wildapricot.org + + + host + *.wildapricot.org + + + + + Wild West Domains + + ruleset + + name + Wild West Domains + rule + + + from + ^http://((?:cart|img|who|www)\.)?wildwestdomains\.com/ + to + https://$1wildwestdomains.com/ + + + from + ^https?://(e|web)mail\.wildwestdomains\.com/ + to + https://login.secureserver.net/index.php?app=wbe&domain=$1mail.wildwestdomains.com + + + from + ^https?://(?:www\.)?wwdomains\.com/ + to + https://wildwestdomains.com/ + + + securecookie + + host + ^.*\.wildwestdomains\.com$ + name + .* + + target + + + host + wildwestdomains.com + + + host + *.wildwestdomains.com + + + host + wwdomains.com + + + host + www.wwdomains.com + + + + + WildArchives.com + + ruleset + + name + WildArchives.com + rule + + from + ^http://(www\.)?wildarchives\.com/ + to + https://$1wildarchives.com/ + + securecookie + + host + ^\.wildarchives\.com$ + name + .+ + + target + + + host + wildarchives.com + + + host + *.wildarchives.com + + + + + WildStar online.com + + ruleset + + name + WildStar online.com + rule + + + from + ^http://(?:www\.)?wildstar-online\.com/ + to + https://www.wildstar-online.com/ + + + from + ^http://(forums|shop|static|support)\.wildstar-online\.com/ + to + https://$1.wildstar-online.com/ + + + target + + + host + wildstar-online.com + + + host + *.wildstar-online.com + + + + + Wildcard Corp.com + + ruleset + + name + Wildcard Corp.com + rule + + + from + ^http://(?:www\.)?assemblys\.net/ + to + https://assemblys.net/ + + + from + ^http://(?:www\.)?wildcardcorp\.com/ + to + https://www.wildcardcorp.com/ + + + securecookie + + host + ^\.(?:assemblys\.net|wildcardcorp\.com)$ + name + .+ + + target + + + host + assemblys.net + + + host + *.assemblys.net + + + host + wildcardcorp.com + + + host + *.wildcardcorp.com + + + + + Wiley (partial) + + ruleset + + name + Wiley (partial) + rule + + + from + ^http://(?:www\.)?wiley\.com/(?:remcover\.cg|WileyRemoteAPI/Cover\.rap)i\?isbn=(\d{8})(\w\w) + to + https://media.wiley.com/product_data/coverImage/$2/$1/$1$2.jpg + + + from + ^http://hesupport\.wiley\.com/(?:\?.*)?$ + to + https://higheredwiley.custhelp.com/ + + + from + ^http://onlinelibrary\.wiley\.com/store/([\d\.]+)(/[^/]+)?/asset/ + to + https://onlinelibrarystatic.wiley.com/store/$1$2/asset/ + + + from + ^http://(images|sp\.onlinelibrary|onlinelibrarystatic)\.wiley\.com/ + to + https://$1.wiley.com/ + + + securecookie + + host + ^sp\.onlinelibrary\.wiley\.com$ + name + .* + + target + + + host + wiley.com + + + host + *.wiley.com + + + host + onlinelibrarystatic.wiley.com + + + host + sp.onlinelibrary.wiley.com + + + + + Will Bond + + ruleset + + name + Will Bond + rule + + from + ^http://sublime\.wbond\.net/ + to + https://sublime.wbond.net/ + + target + + host + sublime.wbond.net + + + + Will Leather Goods + + ruleset + + name + Will Leather Goods + rule + + from + ^http://(www\.)?willleathergoods\.com/ + to + https://$1willleathergoods.com/ + + securecookie + + host + ^(?:.*\.)?willleathergoods\.com$ + name + .+ + + target + + + host + willleathergoods.com + + + host + *.willleathergoods.com + + + + + William Hill (partial) + + ruleset + + name + William Hill (partial) + platform + mixedcontent + rule + + + from + ^http://cmscdn\.staticcache\.org/ + to + https://cmscdn.staticcache.org/ + + + from + ^http://(?:www\.)?williamhill\.com/ + to + https://www.williamhill.com/ + + + from + ^http://(cachemobile|files)\.williamhill\.com/ + to + https://$1.williamhill.com/ + + + from + ^http://(?:cache)?serve\.williamhill\.com/ + to + https://serve.williamhill.com/ + + + from + ^http://(?:sec|wh)dn\.williamhill\.com/ + to + https://secdn.williamhill.com/ + + + from + ^http://sports\.williamhill\.com/acc/ + to + https://sports.williamhill.com/acc/ + + + securecookie + + + host + ^\.williamhill\.com$ + name + ^(?:banner_(?:domain)?click|clickinfo|fd_click|exp_\w+) + + + host + ^\w+\.williamhill\.com$ + name + .* + + + target + + + host + cmscdn.staticcache.org + + + host + williamhill.com + + + host + *.williamhill.com + + + + + WilliamHill (partial) + + ruleset + + exclusion + + pattern + ^http://www2\.whipplehill\.com/(?:\?.*)?$ + + name + WilliamHill (partial) + rule + + + from + ^http://www2\.whipplehill\.com/ + to + https://go.pardot.com/ + + + from + ^http://schoolpress\.cdn\.whipplehill\.net/ + to + https://s3.amazonaws.com/schoolpress.cdn.whipplehill.net/ + + + target + + + host + www2.whipplehill.com + + + host + schoolpress.cdn.whipplehill.net + + + + + Williams College (partial) + + ruleset + + name + Williams College (partial) + rule + + + from + ^https?://(?:www\.)?williams\.edu/ + to + https://www.williams.edu/ + + + from + ^http://(admission|cf|francis|glow|it|roomscheduler|sarah|sites|wcma|web|webprspct)\.williams\.edu/ + to + https://$1.williams.edu/ + + + from + ^https?://people\.williams\.edu/ + to + https://sites.williams.edu/ + + + securecookie + + host + ^\w+\.williams\.edu$ + name + .* + + target + + + host + williams.edu + + + host + *.williams.edu + + + + + Willow Garage (partial) + + ruleset + + name + Willow Garage (partial) + rule + + from + ^http://(?:www\.)?willowgarage\.com/ + to + https://www.willowgarage.com/ + + securecookie + + host + ^(?:www)?\.willowgarage\.com$ + name + .+ + + target + + + host + willowgarage.com + + + host + *.willowgarage.com + + + + + Wilmington University (partial) + + ruleset + + name + Wilmington University (partial) + rule + + + from + ^http://(www\.)?wilmu\.edu/ + to + https://www.wilmu.edu/ + + + from + ^http://(www\.)?webcampus\.wilmu\.edu/ + to + https://webcampus.wilmu.edu/ + + + target + + + host + wilmu.edu + + + host + www.wilmu.edu + + + host + webcampus.wilmu.edu + + + host + www.webcampus.wilmu.edu + + + + + Wimdu.co.uk + + ruleset + + name + Wimdu.co.uk + rule + + from + ^http://(www\.)?wimdu\.co\.uk/ + to + https://$1wimdu.co.uk/ + + securecookie + + host + ^[.w]*\.wimdu\.co\.uk$ + name + .+ + + target + + + host + wimdu.co.uk + + + host + *.wimdu.co.uk + + + + + Win-is.com + + ruleset + + name + Win-is.com + rule + + from + ^http://cp\.win-is\.com/ + to + https://cp.win-is.com/ + + securecookie + + host + ^cp\.win-is\.com$ + name + .+ + + target + + host + cp.win-is.com + + + + Win-rd.jp + + ruleset + + name + Win-rd.jp + rule + + from + ^http://cp(8)?\.win-rd\.jp/ + to + https://cp$1.win-rd.jp/ + + securecookie + + host + ^cp8?\.win-rd\.jp$ + name + .+ + + target + + host + *.win-rd.jp + + + + Win-sv.jp + + ruleset + + name + Win-sv.jp + rule + + from + ^http://(?:cp\.)?win-sv\.jp/ + to + https://cp.win-sv.jp/ + + securecookie + + host + ^cp\.win-sv\.jp$ + name + .+ + + target + + + host + win-sv.jp + + + host + cp.win-sv.jp + + + + + WinPcap + + ruleset + + name + WinPcap + platform + mixedcontent + rule + + + from + ^http://winpcap\.org/ + to + https://winpcap.org/ + + + from + ^http://www\.winpcap\.org/ + to + https://www.winpcap.org/ + + + target + + + host + winpcap.org + + + host + www.winpcap.org + + + + + WinRAR + + ruleset + + name + WinRAR + rule + + from + ^http://(?:www\.)?win-rar\.com/ + to + https://www.win-rar.com/ + + securecookie + + host + ^.*\.win-rar\.com$ + name + .* + + target + + + host + win-rar.com + + + host + *.win-rar.com + + + + + WinSuperSite.com (partial) + + ruleset + + name + WinSuperSite.com (partial) + rule + + from + ^http://(?:www\.)?winsupersite\.com/(?=site-files/|sites/) + to + https://winsupersite.com/ + + target + + + host + winsupersite.com + + + host + www.winsupersite.com + + + + + WinTieWin + + ruleset + + name + WinTieWin + rule + + from + ^http://(www\.)?wintiewin\.com/ + to + https://$1wintiewin.com/ + + securecookie + + host + ^\.wintiewin\.com$ + name + .+ + + target + + + host + wintiewin.com + + + host + *.wintiewin.com + + + + + WinZip.com (false MCB) + + ruleset + + name + WinZip.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?winzip\.com/(?!cgi-bin/|.+/css/|favicon\.ico|lang\.json|static/) + to + https://$1winzip.com/ + + securecookie + + host + ^\.winzip\.com$ + name + .+ + + target + + + host + winzip.com + + + host + *.winzip.com + + + + + WinZip.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?winzip\.com/(?!cgi-bin/|.+/css/|favicon\.ico|lang\.json|static/) + + name + WinZip.com (partial) + rule + + + from + ^http://(store\.|www\.)?winzip\.com/ + to + https://$1winzip.com/ + + + from + ^http://download\.winzip\.com/ + to + https://a248.e.akamai.net/f/4695/10/download.winzip.com/ + + + from + ^http://image(wz)?\.winzip\.com/(?!.+/css/(?!(?:colorbox_common|dropdownbase|dropdown_common|footer|footer_common|jquery-ui-custom_common|layout|newsroom|print)\.css)) + to + https://a248.e.akamai.net/f/1449/2216/6/image$1.winzip.com/ + + + from + ^http://image(?:wz)?\.winzip\.com/ + to + https://winzip.com/ + + + from + ^http://inst\.winzip\.com/ + to + https://inst.avg.com/ + + + from + ^http://install\.winzip\.com/ + to + https://98acdc60cb7e28f9e56a-c9c8355414dceb2e62093c8746e20714.ssl.cf2.rackcdn.com/ + + + securecookie + + host + ^\.store\.winzip\.com$ + name + .+ + + target + + + host + winzip.com + + + host + download.winzip.com + + + host + image.winzip.com + + + host + imagewz.winzip.com + + + host + inst.winzip.com + + + host + install.winzip.com + + + host + store.winzip.com + + + host + *.store.winzip.com + + + host + www.winzip.com + + + + + Winbond.com + + ruleset + + name + Winbond.com + rule + + from + ^http://www\.winbond\.com/ + to + https://www.winbond.com/ + + securecookie + + host + ^www\.winbond\.com$ + name + .+ + + target + + host + www.winbond.com + + + + Wincent.com + + ruleset + + name + Wincent.com + rule + + from + ^http://(?:www\.)?wincent\.com/ + to + https://wincent.com/ + + target + + + host + wincent.com + + + host + www.wincent.com + + + + + Wind + + ruleset + + name + Wind + rule + + from + ^http://www\.wind\.com\.gr/ + to + https://www.wind.com.gr/ + + securecookie + + host + ^www\.wind\.com\.gr$ + name + .* + + target + + host + www.wind.com.gr + + + + Window Maker (partial) + + ruleset + + name + Window Maker (partial) + platform + cacert + rule + + from + ^http://lists\.windowmaker\.org/ + to + https://lists.windowmaker.org/ + + target + + host + lists.windowmaker.org + + + + Window Switch + + ruleset + + name + Window Switch + rule + + from + ^http://(?:www\.)?winswitch\.org/ + to + https://winswitch.org/ + + securecookie + + host + ^winswitch\.org$ + name + .+ + + target + + + host + winswitch.org + + + host + www.winswitch.org + + + + + Windows Azure + + ruleset + + name + Windows Azure + rule + + + from + ^http://(?:www\.)?windowsazure\.com/ + to + https://www.windowsazure.com/ + + + from + ^http://(account|manage|www\.remoteapp)\.windowsazure\.com/ + to + https://$1.windowsazure.com/ + + + securecookie + + host + ^(?:www\.remoteapp)?\.windowsazure\.com$ + name + .+ + + target + + + host + windowsazure.com + + + host + *.windowsazure.com + + + + + Windows IT Pro (partial) + + ruleset + + name + Windows IT Pro (partial) + rule + + from + ^https?://(?:www\.)?windowsitpro\.com/(cart/checkout(?:$|\?|/)|site-files/|sites/) + to + https://windowsitpro.com/$1 + + target + + + host + windowsitpro.com + + + host + www.windowsitpro.com + + + + + Windows Phone (partial) + + ruleset + + name + Windows Phone (partial) + rule + + + from + ^https?://(?:www\.)?windowsphone\.com/ + to + https://www.windowsphone.com/ + + + from + ^http://((?:cms)?resources|dev|developer|images\.partner)\.windowsphone\.com/ + to + https://$1.windowsphone.com/ + + + from + ^https://wpdev\.ms/$ + to + https://bitly.com/ + + + securecookie + + host + ^.+\.windowsphone\.com$ + name + .+ + + target + + + host + windowsphone.com + + + host + *.windowsphone.com + + + + + Windows Secrets.com (partial) + + ruleset + + name + Windows Secrets.com (partial) + rule + + from + ^http://(www\.)?windowssecrets\.com/(?=favicon\.ico|subscription-preferences(?:$|[?/])|wp-content/|wp-includes/) + to + https://$1windowssecrets.com/ + + target + + + host + windowssecrets.com + + + host + www.windowssecrets.com + + + + + Windows.com (partial) + + ruleset + + exclusion + + pattern + ^http://blogs\.windows\.com/(?!cfs-file\.ashx|cfs-filesystemfile\.ashx|favicon\.ico|login\.aspx|themes/|user/createuser\.aspx) + + name + Windows.com (partial) + rule + + from + ^http://(blogs|insider)\.windows\.com/ + to + https://$1.windows.com/ + + target + + host + *.windows.com + + + + Windows.net + + ruleset + + name + Windows.net + rule + + + from + ^http://(?:www\.)?windows\.net/$ + to + https://www.microsoft.com/net + + + from + ^http://(\w+)\.blob\.core\.windows\.net/ + to + https://$1.blob.core.windows.net/ + + + from + ^http://msngpm\.accesscontrol\.windows\.net/ + to + https://msngpm.accesscontrol.windows.net/ + + + target + + + host + windows.net + + + host + *.blob.core.windows.net + + + host + www.windows.net + + + + + Windstream Business + + ruleset + + name + Windstream Business + rule + + from + ^http://(?:www\.)?windstreambusiness\.com/ + to + https://www.windstreambusiness.com/ + + securecookie + + host + ^www\.windstreambusiness\.com$ + name + .+ + + target + + + host + windstreambusiness.com + + + host + www.windstreambusiness.com + + + + + Windstream Communications (partial) + + ruleset + + name + Windstream Communications (partial) + rule + + + from + ^http://(?:www\.)?windstream\.com/ + to + https://www.windstream.com/ + + + from + ^http://rebates\.windstream\.com/.* + to + https://rebates.windstream.com/ + + + securecookie + + host + ^(?:\.?rebates|www)\.windstream\.com$ + name + .+ + + target + + + host + windstream.com + + + host + *.windstream.com + + + + + Wine Australia Corporation + + ruleset + + name + Wine Australia Corporation + rule + + from + ^http://(?:www\.)?wineaustralia\.com/ + to + https://www.wineaustralia.com/ + + target + + + host + wineaustralia.com + + + host + *.wineaustralia.com + + + + + WineHQ (partial) + + ruleset + + name + WineHQ (partial) + rule + + from + ^http://((?:appdb|bugs|forum|source|test|www)\.)?winehq\.org/ + to + https://$1winehq.org/ + + securecookie + + host + ^(?:appdb|\.bugs|\.forum)\.winehq\.org$ + name + .+ + + target + + + host + winehq.org + + + host + *.winehq.org + + + + + Winhawille.edu.hel.fi + + ruleset + + name + Winhawille.edu.hel.fi + rule + + from + ^http://winhawille\.edu\.hel\.fi/ + to + https://winhawille.edu.hel.fi/ + + target + + host + winhawille.edu.hel.fi + + + + Winhistory Forum + + ruleset + + name + Winhistory Forum + rule + + from + ^http://(www\.)?winhistory-forum\.net/ + to + https://$1winhistory-forum.net/ + + securecookie + + host + ^\.?www\.winhistory-forum\.net$ + name + .+ + + target + + + host + winhistory-forum.net + + + host + www.winhistory-forum.net + + + host + *.www.winhistory-forum.net + + + + + Winner.com (partial) + + ruleset + + exclusion + + + pattern + ^http://casino\.winner\.com/(?!media/) + + + pattern + ^http://poker\.winner\.com/(?!style/|tpl/) + + + pattern + ^http://static\.winner\.com/www/ + + + name + Winner.com (partial) + rule + + + from + ^http://((?:banner|chat-winner|m)?casino|cdn-bingo|login|m|mbingo|poker|secure|service|static|wap)\.winner\.com/ + to + https://$1.winner.com/ + + + from + ^http://(?:secure)?(bingo|games|livecasino|mobile)\.winner\.com/ + to + https://secure$1.winner.com/ + + + from + ^https?://cachepoker\.winner\.com/ + to + https://poker.winner.com/ + + + securecookie + + + host + ^\.winner\.com$ + name + ^banner_.+ + + + host + .+\.winner\.com$ + name + .+ + + + target + + host + *.winner.com + + + + Winoptions.com (partial) + + ruleset + + name + Winoptions.com (partial) + rule + + from + ^http://cms\.winoptions\.com/(?=appProxy/|css/|favicon\.ico|/?homemediaProxy/|images/|mediaProxy/) + to + https://cms.winoptions.com/ + + target + + host + cms.winoptions.com + + + + Wippies Webmail + + ruleset + + name + Wippies Webmail + rule + + from + ^http://webmail\.wippies\.com/ + to + https://webmail.wippies.com/ + + target + + host + webmail.wippies.com + + + + WireEdit.com + + ruleset + + name + WireEdit.com + rule + + from + ^http://(www\.)?wireedit\.com/ + to + https://$1wireedit.com/ + + target + + + host + wireedit.com + + + host + www.wireedit.com + + + + + Wired (false MCB, partial) + + ruleset + + name + Wired (false MCB, partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?wired\.com/ + to + https://www.wired.com/ + + + from + ^http://s(ecure|ubscribe|ubcriptions)\.wired\.com/ + to + https://s$1.wired.com/ + + + from + ^http://cdni\.wired\.co\.uk/ + to + https://d2f0ban6dhfdsw.cloudfront.net/ + + + from + ^http://wrd\.cm/ + to + https://bit.ly/ + + + securecookie + + host + ^subscriptions\.wired\.com$ + name + .+ + + target + + + host + wired.com + + + host + *.wired.com + + + host + cdni.wired.co.uk + + + host + wrd.cm + + + + + WiredMinds (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?wiredminds\.de/(?!/?assets/|favicon\.ico) + + name + WiredMinds (partial) + rule + + from + ^http://((?:st1|test|wm|wmapp|www)\.)?wiredminds\.de/ + to + https://$1wiredminds.de/ + + securecookie + + + host + \.wiredminds\.de$ + name + ^WMSESSNAME$ + + + host + ^(?:st1|test|wm)\.wiredminds\.de$ + name + .+ + + + target + + + host + wiredminds.de + + + host + *.wiredminds.de + + + + + Wireshark (partial) + + ruleset + + name + Wireshark (partial) + rule + + from + ^http://((?:anonsvn|blog|www)\.)?wireshark\.org/ + to + https://$1wireshark.org/ + + securecookie + + host + ^\.wireshark\.org$ + name + .+ + + target + + + host + wireshark.org + + + host + *.wireshark.org + + + + + Wishabi + + ruleset + + name + Wishabi + rule + + + from + ^https?://f.wishabi.ca/ + to + https://s3.amazonaws.com/f.wishabi.ca/ + + + from + ^http://f1\.wishabi\.ca/ + to + https://d2e0sxz09bo7k2.cloudfront.net/ + + + from + ^http://(analytic|(?:editorials\.)?merchant)s\.wishabi\.ca/ + to + https://$1s.wishabi.ca/ + + + securecookie + + host + ^\.merchants\.wishabi\.ca$ + name + .+ + + target + + host + *.wishabi.ca + + + + Wishlist Granted.com + + ruleset + + name + Wishlist Granted.com + rule + + from + ^http://(?:www\.)?wishlistgranted\.com/ + to + https://wishlistgranted.com/ + + target + + + host + wishlistgranted.com + + + host + www.wishlistgranted.com + + + + + Wishpot.com + + ruleset + + name + Wishpot.com + rule + + + from + ^http://(?:www\.)?wishpot\.com/ + to + https://www.wishpot.com/ + + + from + ^http://(it|uk)\.wishpot\.com/ + to + https://$1.wishpot.com/ + + + securecookie + + host + ^(?:it|uk|www)?\.wishpot\.com$ + name + .+ + + target + + + host + wishpot.com + + + host + *.wishpot.com + + + + + Wistia (partial) + + ruleset + + name + Wistia (partial) + rule + + + from + ^http://(app|buy|embed-ssl|fast|prime|(?:rs-)?static|secure)\.wistia\.com/ + to + https://$1.wistia.com/ + + + from + ^http://(?:embed|grove-cdn)\.wistia\.com/ + to + https://wistia.sslcs.cdngc.net/ + + + from + ^http://home\.wistia\.com/images/ + to + https://home.wistia.com/images/ + + + from + ^http://fast\.wistia\.net/ + to + https://fast.wistia.net/ + + + securecookie + + host + ^(?:embed-ssl|prime)\.wistia\.com$ + name + .+ + + target + + + host + *.wistia.com + + + host + fast.wistia.net + + + + + With Google.com + + ruleset + + name + With Google.com + rule + + from + ^http://([\w-]+\.)?withgoogle\.com/ + to + https://$1withgoogle.com/ + + securecookie + + host + ^[\w-]+\.withgoogle\.com$ + name + .+ + + target + + + host + withgoogle.com + + + host + *.withgoogle.com + + + + + WithSIX (Partial) + + ruleset + + name + WithSIX (Partial) + rule + + + from + ^http://(www\.)?dev\.withsix\.com/ + to + https://dev.withsix.com/ + + + from + ^http://(www\.)?connect\.withsix\.com/me/ + to + https://connect.withsix.com/me/ + + + target + + + host + dev.withsix.com + + + host + connect.withsix.com + + + + + Wix (partial) + + ruleset + + exclusion + + pattern + ^https?://static\.parastorage\.com/media/ + + name + Wix (partial) + platform + mixedcontent + rule + + + from + ^http://(frog\.|(?:www\.)?dns\.lc\.|publicorigin\.|www\.)?wix\.com/ + to + https://$1wix.com/ + + + from + ^http://archive\.wix\.com/sites/ + to + https://a248.e.akamai.net/f/1778/1/5m/static.wix.com/sites/ + + + from + ^https?://users\.(?:parastorage|wix)\.com/ + to + https://users.wix.com/ + + + from + ^https?://tracking\.wix\.com/ + to + https://wix.go2cloud.org/ + + + from + ^http://static\.wix(static)?\.com/ + to + https://a248.e.akamai.net/f/1778/1/5m/static.wix$1.com/ + + + securecookie + + host + ^\.wix\.com$ + name + .+ + + target + + + host + static.parastorage.com + + + host + wix.com + + + host + *.wix.com + + + host + dns.lc.wix.com + + + host + www.dns.lc.wix.com + + + host + static.wixstatic.com + + + + + Wiz.biz + + ruleset + + name + Wiz.biz + platform + firefox + rule + + from + ^http://wiz\.biz/ + to + https://wiz.biz/ + + securecookie + + host + ^wiz\.biz$ + name + .+ + + target + + host + wiz.biz + + + + Wizard Internet Services (partial) + + ruleset + + name + Wizard Internet Services (partial) + rule + + + from + ^https?://mail\.wizard\.ca/ + to + https://www.cityemail.com/ + + + from + ^http://secure\.wizard\.ca/ + to + https://secure.wizard.ca/ + + + target + + host + *.wizard.ca + + + + Wizards of the Coast (partial) + + ruleset + + name + Wizards of the Coast (partial) + rule + + + from + ^http://(accounts\.|www\.)?wizards\.com/ + to + https://$1wizards.com/ + + + from + ^https?://images\.community\.wizards\.com/ + to + https://images.onesite.com/ + + + securecookie + + host + ^(?:.+\.)?wizards\.com$ + name + .+ + + target + + + host + wizards.com + + + host + images.community.wizards.com + + + host + www.wizards.com + + + + + Wizbang + + ruleset + + name + Wizbang + rule + + from + ^http://(www\.)?wizbangblog\.com/ + to + https://$1wizbangblog.com/ + + securecookie + + host + ^\.wizbangblog\.com$ + name + .+ + + target + + + host + wizbangblog.com + + + host + *.wizbangblog.com + + + + + Wizbang Pop + + ruleset + + name + Wizbang Pop + rule + + from + ^http://(www\.)?wizbangpop\.com/ + to + https://$1wizbangpop.com/ + + securecookie + + host + ^\.wizbangpop\.com$ + name + .+ + + target + + + host + wizbangpop.com + + + host + *.wizbangpop.com + + + + + Woahh + + ruleset + + name + Woahh + rule + + from + ^http://(www\.)?woahh\.com/ + to + https://$1woahh.com/ + + securecookie + + host + ^\.woahh\.com$ + name + .+ + + target + + + host + woahh.com + + + host + *.woahh.com + + + + + Wolfram Alpha (experimental) + + ruleset + + exclusion + + pattern + ^http://www\d\w?\.wolframalpha\.com/input/(?:pod|recalculate)\.jsp + + name + Wolfram Alpha (experimental) + rule + + + from + ^http://(?:www\.)?wolframalpha\.com/ + to + https://www.wolframalpha.com/ + + + from + ^http://(volunteer|www\d\w?)\.wolframalpha\.com/ + to + https://$1.wolframalpha.com/ + + + securecookie + + + host + ^\.wolframalpha\.com$ + name + ^__utm\w$ + + + host + ^(?:volunteer|www)\.wolframalpha\.com$ + name + .+ + + + target + + + host + wolframalpha.com + + + host + *.wolframalpha.com + + + + + Wolfram CDN.com + + ruleset + + name + Wolfram CDN.com + rule + + from + ^http://www\.wolframcdn\.com/ + to + https://www.wolframcdn.com/ + + target + + host + www.wolframcdn.com + + + + Wolfram.com (partial) + + ruleset + + name + Wolfram.com (partial) + rule + + + from + ^http://(?:www\.)?wolfram\.com/ + to + https://www.wolfram.com/ + + + from + ^http://user\.wolfram\.com/ + to + https://user.wolfram.com/ + + + from + ^http://reference\.wolfram\.com/ + to + https://reference.wolfram.com/ + + + securecookie + + host + ^user\.wolfram\.com$ + name + .+ + + target + + + host + wolfram.com + + + host + *.wolfram.com + + + + + Wolframcloud.com + + ruleset + + name + Wolframcloud.com + rule + + + from + ^http://(www\.)?wolframcloud\.com/ + to + https://www.wolframcloud.com/ + + + from + ^http://programming\.wolframcloud\.com/ + to + https://programming.wolframcloud.com/ + + + target + + + host + wolframcloud.com + + + host + www.wolframcloud.com + + + host + programming.wolframcloud.com + + + + + Wolframscience.com + + ruleset + + name + Wolframscience.com + rule + + from + ^http://(www\.)?wolframscience\.com/ + to + https://www.wolframscience.com/ + + target + + + host + wolframscience.com + + + host + www.wolframscience.com + + + + + Wolfson Microelectronics (partial) + + ruleset + + name + Wolfson Microelectronics (partial) + rule + + from + ^http://(www\.)?wolfsonmicro\.com/ + to + https://$1wolfsonmicro.com/ + + securecookie + + host + ^www\.wolfsonmicro\.com$ + name + .* + + target + + + host + wolfsonmicro.com + + + host + www.wolfsonmicro.com + + + + + WoltLab.com + + ruleset + + name + WoltLab.com + rule + + from + ^http://(www\.)?woltlab\.com/ + to + https://$1woltlab.com/ + + securecookie + + host + ^(?:www)?\.woltlab\.com$ + name + .+ + + target + + + host + woltlab.com + + + host + *.woltlab.com + + + + + Women Sex Pova.com (partial) + + ruleset + + name + Women Sex Pova.com (partial) + rule + + from + ^http://(www\.)?womensexpova\.com/(?=assets/|favicon\.ico|public/) + to + https://$1womensexpova.com/ + + target + + + host + womensexpova.com + + + host + www.womensexpova.com + + + + + Women on Web + + ruleset + + name + Women on Web + rule + + from + ^http://(www\.)?womenonweb\.org/ + to + https://$1womenonweb.org/ + + securecookie + + host + ^www\.womenonweb\.org$ + name + .+ + + target + + + host + womenonweb.org + + + host + www.womenonweb.org + + + + + Women's Aid + + ruleset + + name + Women's Aid + rule + + from + ^http://(www\.)?womensaid\.ie/ + to + https://$1womensaid.ie/ + + target + + + host + womensaid.ie + + + host + www.womensaid.ie + + + + + Women's Health Specialists (partial) + + ruleset + + name + Women's Health Specialists (partial) + rule + + from + ^http://(?:www\.)?womenshealthspecialists\.org/(app/|css/|images/|scripts/|.+\?type=pdf) + to + https://www.womenshealthspecialists.org/$1 + + target + + + host + womenshealthspecialists.org + + + host + www.womenshealthspecialists.org + + + + + Womenonwaves.org + + ruleset + + name + Womenonwaves.org + rule + + from + ^http://(www\.)?womenonwaves\.org/ + to + https://www.womenonwaves.org/ + + target + + + host + womenonwaves.org + + + host + www.womenonwaves.org + + + + + Womenshealth.de + + ruleset + + name + Womenshealth.de + platform + mixedcontent + rule + + + from + ^http://www\.womenshealth\.de/ + to + https://www.womenshealth.de/ + + + from + ^http://images\.womenshealth\.de/ + to + https://images.womenshealth.de/ + + + target + + + host + www.womenshealth.de + + + host + images.womenshealth.de + + + + + Wonderlandmovies + + ruleset + + name + Wonderlandmovies + rule + + from + ^https?://(?:www\.)?wonderlandmovies\.de/ + to + https://www.wonderlandmovies.de/ + + securecookie + + host + ^(?:www)?\.wonderlandmovies\.de$ + name + .+ + + target + + + host + wonderlandmovies.de + + + host + *.wonderlandmovies.de + + + + + Wonga.com + + ruleset + + name + Wonga.com + rule + + from + ^http://(?:www\.)?wonga\.com/ + to + https://www.wonga.com/ + + securecookie + + host + ^www\.wonga\.com$ + name + .+ + + target + + + host + wonga.com + + + host + www.wonga.com + + + + + WooThemes (partial) + + ruleset + + name + WooThemes (partial) + rule + + + from + ^http://(www\.)?woothemes\.com/wp-(content|includes)/ + to + https://$1woothemes.com/wp-$2/ + + + from + ^https?://wcdocs\.woothemes\.com/ + to + https://woocommercedoc.wpengine.com/ + + + target + + + host + woothemes.com + + + host + www.woothemes.com + + + + + Woobox.com (partial) + + ruleset + + exclusion + + pattern + ^http://blog\.woobox\.com/+(?!wp-content/|wp-includes/) + + name + Woobox.com (partial) + rule + + from + ^http://(blog\.|www\.)?woobox\.com/ + to + https://$1woobox.com/ + + securecookie + + host + ^(?:\.|www\.)?woobox\.com$ + name + .+ + + target + + + host + woobox.com + + + host + *.woobox.com + + + + + Wood Green Shop.org.uk + + ruleset + + name + Wood Green Shop.org.uk + rule + + from + ^http://(?:secure\.|www\.)?woodgreenshop\.org\.uk/ + to + https://secure.woodgreenshop.org.uk/ + + securecookie + + host + ^secure\.woodgreenshop\.org\.uk$ + name + .+ + + target + + + host + woodgreenshop.org.uk + + + host + *.woodgreenshop.org.uk + + + + + Wood Green.org.uk (partial) + + ruleset + + name + Wood Green.org.uk (partial) + rule + + from + ^http://(?:www\.)?woodgreen\.org\.uk/(?=assets/|favicon\.ico|images/|stylesheets/) + to + https://www.woodgreen.org.uk/ + + target + + + host + woodgreen.org.uk + + + host + www.woodgreen.org.uk + + + + + Wood Tree Swings + + ruleset + + name + Wood Tree Swings + rule + + from + ^http://(www\.)?woodtreeswing\.com/ + to + https://$1woodtreeswing.com/ + + securecookie + + host + ^\.?woodtreeswing\.com$ + name + .+ + + target + + + host + woodtreeswing.com + + + host + *.woodtreeswing.com + + + + + Wooga (partial) + + ruleset + + name + Wooga (partial) + rule + + from + ^http://cdn(?:12|-mkt)\.wooga\.com/ + to + https://cdn-mkt.wooga.com/ + + target + + host + *.wooga.com + + + + Woopra (partial) + + ruleset + + name + Woopra (partial) + rule + + from + ^http://(static\.|www\.)?woopra\.com/ + to + https://$1woopra.com/ + + securecookie + + host + ^(?:w*\.)?woopra\.com$ + name + .+ + + target + + + host + woopra.com + + + host + *.woopra.com + + + + + Woot (partial) + + ruleset + + name + Woot (partial) + rule + + + from + ^https?://(?:www\.)?w[0o]{2}t\.com/((?:account|App_Themes|Blog|Forums|[iI]mages|Search)(?:$|/)|(?:blog/rss|Jobs|Recalls|SponsorUs|Terms|WhatIsWoot|WriteUs)\.aspx) + to + https://www.woot.com/$1 + + + from + ^http://(account|members)\.woot\.com/ + to + https://$1.woot.com/ + + + from + ^https?://(avatar|images\.deals|(?:gzip\.)?static)\.woot\.com/ + to + https://s3.amazonaws.com/$1.woot.com/ + + + target + + + host + w00t.com + + + host + *.w00t.com + + + host + woot.com + + + host + *.woot.com + + + host + images.deals.woot.com + + + host + gzip.static.woot.com + + + + + Wopsa (partial) + + ruleset + + name + Wopsa (partial) + rule + + from + ^http://kundarea\.wopsa\.se/ + to + https://kundarea.wopsa.se/ + + securecookie + + host + kundarea\.wopsa\.se$ + name + .+ + + target + + host + kundarea.wopsa.se + + + + Worcester Polytechnic Institute (partial) + + ruleset + + name + Worcester Polytechnic Institute (partial) + rule + + + from + ^https?://(?:www\.)?wpi\.edu/ + to + https://www.wpi.edu/ + + + from + ^http://my\.wpi\.edu/ + to + https://my.wpi.edu/ + + + securecookie + + host + ^my\.wpi\.edu$ + name + .* + + target + + + host + wpi.edu + + + host + www.wpi.edu + + + + + WordCamp (partial) + + ruleset + + name + WordCamp (partial) + rule + + from + ^http://(www\.)?wordcamp\.org/ + to + https://$1wordcamp.org/ + + target + + + host + wordcamp.org + + + host + www.wordcamp.org + + + + + WordPress (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:[^/:@\.]+\.)?wordpress\.com/latex\.php(?:\?.*)?$ + + + pattern + ^http://s-plugins\.wordpress\.org/ + + + name + WordPress (partial) + rule + + + from + ^http://wordpress\.(com|org)/ + to + https://wordpress.$1/ + + + from + ^http://([^/:@\.]+)\.(blog|files)\.wordpress\.com/ + to + https://$1.$2.wordpress.com/ + + + from + ^http://(\w+)\.blog\.files\.wordpress\.com/ + to + https://$1-blog.files.wordpress.com/ + + + from + ^http://s\.wordpress\.(com|org)/ + to + https://www.wordpress.$1/ + + + from + ^http://s\d\.wordpress\.(com|org)/ + to + https://secure.wordpress.$1/ + + + from + ^http://([^/:@\.]+)\.wordpress\.(com|org)/ + to + https://$1.wordpress.$2/ + + + from + ^http://s\.stats\.wordpress\.com/ + to + https://stats.wordpress.com/ + + + from + ^http://([^/:@\.]+)\.(trac|svn)\.wordpress\.org/ + to + https://$1.$2.wordpress.org/ + + + from + ^http://(i[012]|s\d*)\.wp\.com/ + to + https://$1.wp.com/ + + + securecookie + + + host + ^wordpress\.com$ + name + ^wordpress_homepage$ + + + host + ^\.wordpress\.com$ + name + ^(?:km_\w\w|kvcd|optimizely\w+)$ + + + host + ^wordpress\.org$ + name + .+ + + + host + .*\.wordpress\.(?:com|org)$ + name + ^__utm\w$ + + + target + + + host + wordpress.com + + + host + *.wordpress.com + + + host + wordpress.org + + + host + *.wordpress.org + + + host + *.wp.com + + + + + Wordentropy.org + + ruleset + + name + Wordentropy.org + rule + + from + ^http://(www\.)?wordentropy\.org/ + to + https://$1wordentropy.org/ + + target + + + host + wordentropy.org + + + host + www.wordentropy.org + + + + + Wordnik + + ruleset + + name + Wordnik + rule + + from + ^http://(www\.)?wordnik\.com/ + to + https://$1wordnik.com/ + + securecookie + + host + ^(www)?\.wordnik\.com$ + name + .* + + target + + + host + wordnik.com + + + host + *.wordnik.com + + + + + Wordpanelinfo + + ruleset + + name + Wordpanelinfo + rule + + from + ^http://(?:www\.)?worldpanelinfo\.com/ + to + https://www.worldpanelinfo.com/ + + securecookie + + host + ^.*\.worldpanelinfo\.com$ + name + .* + + target + + + host + worldpanelinfo.com + + + host + *.worldpanelinfo.com + + + + + Work4 Labs + + ruleset + + name + Work4 Labs + rule + + from + ^http://(app\.|www\.)?work4labs\.com/ + to + https://$1work4labs.com/ + + securecookie + + host + ^(?:\.?www)?\.work4labs.com$ + name + .+ + + target + + + host + work4labs.com + + + host + *.work4labs.com + + + + + Workforce Hosting.com (partial) + + ruleset + + name + Workforce Hosting.com (partial) + rule + + from + ^http://sdsurf\.workforcehosting\.com/ + to + https://sdsurf.workforcehosting.com/ + + securecookie + + host + ^sdsurf\.workforcehosting\.com$ + name + .+ + + target + + host + sdsurf.workforcehosting.com + + + + Workplace Gender Equality Agency + + ruleset + + name + Workplace Gender Equality Agency + rule + + from + ^http://(?:www\.)?wgea\.gov\.au/ + to + https://www.wgea.gov.au/ + + target + + + host + wgea.gov.au + + + host + *.wgea.gov.au + + + + + Workplace Giving + + ruleset + + name + Workplace Giving + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?workplacegiving\.co\.uk/ + to + https://www.workplacegiving.co.uk/ + + target + + + host + workplacegiving.co.uk + + + host + www.workplacegiving.co.uk + + + + + World Chamber of Commerce Directory (partial) + + ruleset + + name + World Chamber of Commerce Directory (partial) + rule + + from + ^http://(www\.)?worldchamberdirectoryonline\.com/(checkout(?:$|\?|/)|favicon\.ico|memb/|wp-content/|wp-includes/) + to + https://$1worldchamberdirectoryonline.com/$2 + + target + + + host + worldchamberdirectoryonline.com + + + host + www.worldchamberdirectoryonline.com + + + + + World City Card + + ruleset + + name + World City Card + rule + + from + ^http://(www\.)?worldcitycard\.com/ + to + https://$1worldcitycard.com/ + + securecookie + + host + ^(?:www)?\.worldcitycard\.com$ + name + .+ + + target + + + host + worldcitycard.com + + + host + *.worldcitycard.com + + + + + World Community Grid + + ruleset + + name + World Community Grid + rule + + + from + ^https?://worldcommunitygrid\.org/ + to + https://secure.worldcommunitygrid.org/ + + + from + ^http://(secure|www)\.worldcommunitygrid\.org/ + to + https://$1.worldcommunitygrid.org/ + + + securecookie + + host + ^\.worldcommunitygrid\.org$ + name + .+ + + target + + + host + worldcommunitygrid.org + + + host + *.worldcommunitygrid.org + + + + + World Development Movement + + ruleset + + name + World Development Movement + rule + + from + ^http://(www\.)?wdm\.org\.uk/ + to + https://$1wdm.org.uk/ + + securecookie + + host + ^\.wdm\.org\.uk$ + name + .+ + + target + + + host + wdm.org.uk + + + host + *.wdm.org.uk + + + + + World Football Extra + + ruleset + + name + World Football Extra + rule + + from + ^https?://(?:cdn\.|(www\.))?worldfootballextra\.com/ + to + https://$1worldfootballextra.com/ + + securecookie + + host + ^(www\.)?worldfootballextra\.com$ + name + .* + + target + + + host + worldfootballextra.com + + + host + *.worldfootballextra.com + + + + + World Landscape Architecture + + ruleset + + name + World Landscape Architecture + rule + + from + ^http://(www\.)?worldlandscapearchitect\.com/ + to + https://$1worldlandscapearchitect.com/ + + securecookie + + host + ^\.worldlandscapearchitect\.com$ + name + .+ + + target + + + host + worldlandscapearchitect.com + + + host + *.worldlandscapearchitect.com + + + + + World Socialist Web Site + + ruleset + + name + World Socialist Web Site + rule + + + from + ^http://(?:www\.)?wsws\.org/ + to + https://www.wsws.org/ + + + from + ^http://([^/:@\.]+)\.wsws\.org/ + to + https://$1.wsws.org/ + + + target + + + host + wsws.org + + + host + *.wsws.org + + + + + World Television + + ruleset + + name + World Television + rule + + from + ^http://(doddsegrads|streamstudio)\.world-television\.com/ + to + https://$1.world-television.com/ + + securecookie + + host + ^streamstudio\.world-television\.com$ + name + .+ + + target + + host + *.world-television.com + + + + World for Pets.com.au + + ruleset + + name + World for Pets.com.au + rule + + from + ^http://(www\.)?worldforpets\.com\.au/ + to + https://$1worldforpets.com.au/ + + securecookie + + host + ^www\.worldforpets\.com\.au$ + name + .+ + + target + + + host + worldforpets.com.au + + + host + www.worldforpets.com.au + + + + + World of Games + + ruleset + + name + World of Games + rule + + from + ^http://(?:www\.)?wog\.ch/ + to + https://www.wog.ch/ + + target + + + host + wog.ch + + + host + www.wog.ch + + + + + World of Warplanes (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?worldofwarplanes.(?:com|eu|ru)/(?!(?:auth|captcha|registration)(?:$|\?|/)|dcont/|l?static/) + + name + World of Warplanes (partial) + rule + + + from + ^https?://(?:(forum\.|support\.)|www\.)?worldofwarplanes\.(com|ru)/ + to + https://$1worldofwarplanes.$2/ + + + from + ^http://(forum\.|www\.)?worldofwarplanes\.eu/ + to + https://$1worldofwarplanes.eu/ + + + securecookie + + host + ^forum\.worldofwarplanes\.(?:com|eu|ru)$ + name + .+ + + target + + + host + worldofwarplanes.* + + + host + *.worldofwarplanes.com + + + host + *.worldofwarplanes.eu + + + host + *.worldofwarplanes.ru + + + + + World of Warships (partial) + + ruleset + + name + World of Warships (partial) + rule + + from + ^http://forum\.worldofwarships\.(com|eu|ru)/ + to + https://forum.worldofwarships.$1/ + + securecookie + + host + ^forum\.worldofwarships\.(?:com|eu|ru)$ + name + .+ + + target + + host + forum.worldofwarships.* + + + + WorldCat + + ruleset + + name + WorldCat + rule + + from + ^http://(coverart\.|static1\.|www\.)?worldcat\.org/ + to + https://$1worldcat.org/ + + securecookie + + host + ^.*\.worldcat\.org$ + name + .+ + + target + + + host + worldcat.org + + + host + *.worldcat.org + + + + + WorldMate.com + + ruleset + + name + WorldMate.com + rule + + + from + ^http://(?:www\.)?worldmate\.com/ + to + https://www.worldmate.com/ + + + from + ^http://cdn\.worldmate\.com/ + to + https://cdn.worldmate.com/ + + + target + + + host + worldmate.com + + + host + *.worldmate.com + + + + + WorldNow.com (partial) + + ruleset + + name + WorldNow.com (partial) + rule + + + from + ^http://content\.worldnow\.com/ + to + https://content.worldnow.com/ + + + from + ^http://ftpcontent\.worldnow\.com/ + to + https://a248.e.akamai.net/f/1452/7216/9/ftpcontent.worldnow.com/ + + + from + ^http://(kmsp|wnyw)\.images\.worldnow\.com/ + to + https://a248.e.akamai.net/f/1628/2991/2/$1.images.worldnow.com/ + + + target + + host + *.worldnow.com + + + + WorldRemit.com + + ruleset + + name + WorldRemit.com + rule + + + from + ^http://(?:www\.)?worldremit\.com/ + to + https://www.worldremit.com/ + + + from + ^http://agents\.worldremit\.com/ + to + https://agents.worldremit.com/ + + + securecookie + + host + ^(?:agents|www)\.worldremit\.com$ + name + .+ + + target + + + host + worldremit.com + + + host + *.worldremit.com + + + + + Worldhealth.net + + ruleset + + name + Worldhealth.net + rule + + from + ^http://(www\.)?worldhealth\.net/ + to + https://$1worldhealth.net/ + + securecookie + + host + ^www\.worldhealth\.net$ + name + .+ + + target + + + host + worldhealth.net + + + host + www.worldhealth.net + + + + + WorstPills.org + + ruleset + + name + WorstPills.org + rule + + from + ^http://(?:www\.)?worstpills\.org/ + to + https://www.worstpills.org/ + + target + + + host + worstpills.org + + + host + www.worstpills.org + + + + + Wowhead (partial) + + ruleset + + name + Wowhead (partial) + rule + + + from + ^http://static\.wowhead\.com/ + to + https://static.wowhead.com/ + + + from + ^http://(cdn|wow|wowcss|wowimg|wowjs)\.zamimg\.com/ + to + https://$1.zamimg.com/ + + + target + + + host + *.wowhead.com + + + host + *.zamimg.com + + + + + Woz.ch + + ruleset + + name + Woz.ch + rule + + from + ^http://(www\.)?woz\.ch/ + to + https://www.woz.ch/ + + target + + + host + www.woz.ch + + + host + woz.ch + + + + + Writeapp.me + + ruleset + + name + Writeapp.me + platform + firefox + rule + + from + ^http://writeapp\.me/ + to + https://writeapp.me/ + + securecookie + + host + ^writeapp\.me$ + name + .+ + + target + + host + writeapp.me + + + + Wrzuta.pl (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?wrzuta\.pl/(?!static/) + + name + Wrzuta.pl (partial) + rule + + from + ^http://(?:ssl\.|www\.)?wrzuta\.pl/ + to + https://ssl.wrzuta.pl/ + + target + + + host + wrzuta.pl + + + host + *.wrzuta.pl + + + + + Wtop.com (partial) + + ruleset + + name + Wtop.com (partial) + rule + + from + ^http://(www\.)?wtop\.com/(?=css/|emedia/|favicon\.ico|images/|jqueryO/) + to + https://$1wtop.com/ + + target + + + host + wtop.com + + + host + www.wtop.com + + + + + Wufoo + + ruleset + + exclusion + + pattern + ^http://help\. + + name + Wufoo + rule + + from + ^http://([\w-]+\.)?wufoo\.com/ + to + https://$1wufoo.com/ + + securecookie + + host + ^(?:.*\.)?wufoo\.com$ + name + .+ + + target + + + host + wufoo.com + + + host + *.wufoo.com + + + + + Wunderkraut.fi + + ruleset + + name + Wunderkraut.fi + rule + + from + ^http://(www\.)?wunderkraut\.fi/ + to + https://$1wunderkraut.fi/ + + securecookie + + host + ^\.wunderkraut\.fi$ + name + .+ + + target + + + host + wunderkraut.fi + + + host + *.wunderkraut.fi + + + + + Wunderlist (partial) + + ruleset + + name + Wunderlist (partial) + rule + + from + ^https?://(?:www\.)?wunderlist\.com/ + to + https://www.wunderlist.com/ + + securecookie + + host + ^www\.wunderlist\.com$ + name + .* + + target + + + host + wunderlist.com + + + host + www.wunderlist.com + + + + + Wush.Net + + ruleset + + name + Wush.Net + rule + + + from + ^http://((?:billing|portal|support|www)\.)?wush\.net/ + to + https://$1wush.net/ + + + from + ^http://status\.wush\.net/+ + to + https://portal.wush.net/ + + + securecookie + + host + ^(?:(?:status|support|www)\.)?wush\.net$ + name + .+ + + target + + + host + wush.net + + + host + *.wush.net + + + + + Wykop.pl (partial) + + ruleset + + name + Wykop.pl (partial) + rule + + from + ^http://(www\.)?wykop\.pl/ + to + https://$1wykop.pl/ + + securecookie + + host + ^(?:www\.)?wykop\.pl$ + name + .+ + + target + + + host + wykop.pl + + + host + www.wykop.pl + + + + + Wyndham (partial) + + ruleset + + exclusion + + + pattern + ^http://(www\.)?landalskilife\.(com|fr)/ + + + pattern + ^http://www\.wyndhamvrap\. + + + name + Wyndham (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?(canvasholidays|cheznous|cottages(?:4you|direct|election)|(?:english|french|irish|italian|scottish|welsh)-country-cottages|(?:individual-|james)villas|villas4you)\.co\.uk/ + to + https://www.$1.co.uk/ + + + from + ^http://(www\.)?competitionsbywyndham\.com\.au/ + to + https://$1competitionsbywyndham.com.au/ + + + from + ^http://blog\.cottages4you\.co\.uk/ + to + https://blog.cottages4you.co.uk/ + + + from + ^http://(?:www\.)?((?:easy|welcome)cottages|resortquestsecure|secureholidays|worldmarkbywyndham|wyndhamrentals)\.com/ + to + https://www.$1.com/ + + + from + ^http://(images\.|www\.)?hoseasons\.co\.uk/ + to + https://$1hoseasons.co.uk/ + + + from + ^http://landal(skilife)?\.(\w[\w^z]\w?)/ + to + https://www.landal$1.$2/ + + + from + ^http://www\.landal(skilife)?\.(\w[\w^z]\w?)/(bp|db|favicons|img)/ + to + https://www.landal$1.$2/$3/ + + + from + ^http://(?:www\.)?landal(?:skilife)?\.cz/ + to + https://www.landal.cz/ + + + from + ^http://landal(campings|parkshop)\.([bd]e|nl)/ + to + https://www.landal$1.$2/ + + + from + ^http://www\.landacampings\.([bd]e|nl)/(css|favicons|img)/ + to + https://www.landalcampings.$1/$2/ + + + from + ^http://(?:www\.)?landalparkshop\.de/ + to + https://www.landal.de/ + + + from + ^http://secure\.landal\.com/ + to + https://secure.landal.com/ + + + from + ^http://(?:www\.)?landalgreenparks\.com/ + to + https://www.landal.com/ + + + from + ^http://(www\.)?mijnlandal\.nl/ + to + https://$1mijnlandal.nl/ + + + from + ^http://(www\.)?ovscruise\.com/ + to + https://$1ovscruise.com/ + + + from + ^http://prep\.rci\.com/ + to + https://prep.rci.com/ + + + from + ^http://(www\.)?rcitravelstore\.co\.uk/(images/|includes/|managebooking/login\.asp|shortlist/) + to + https://$1rcitravelstore.co.uk/$2 + + + from + ^http://wyndham\.com/ + to + https://www.wyndham.com/ + + + from + ^http://www\.wyndham\.com/(cms_content|hotels/images|resources) + to + https://www.wyndham.com/$1/ + + + from + ^http://wynres\.wyndham\.com/ + to + https://wynres.wyndham.com/ + + + from + ^http://(hotels|new)\.wyndhamvrap\.com/ + to + https://$1.wyndhamvrap.com/ + + + securecookie + + + host + ^(.*\.)?(canvasholidays|cheznous|cottages(direct|4you)|english-country-cottages|hoseasons|(individual-|james)villas)\.co\.uk$ + name + .* + + + host + ^(www\.)?competitionsbywyndham\.com\.au$ + name + .* + + + host + ^secure\.landal\.com$ + name + .* + + + host + ^www\.ourvacationstore\.com$ + name + .* + + + host + ^(www\.)?ovscruise\.com$ + name + .* + + + host + ^new\.wyndhamvrap\.com$ + name + .* + + + target + + + host + canvasholidays.co.uk + + + host + www.canvasholidays.co.uk + + + host + cheznous.com + + + host + www.cheznous.com + + + host + competitionsbywyndham.com.au + + + host + www.competitionsbywyndham.com.au + + + host + cottages4you.co.uk + + + host + *.cottages4you.co.uk + + + host + cottagesdirect.co.uk + + + host + www.cottagesdirect.co.uk + + + host + cottageselection.co.uk + + + host + www.cottageselection.co.uk + + + host + easycottages.com + + + host + www.easycottages.com + + + host + english-country-cottages.co.uk + + + host + *.english-country-cottages.co.uk + + + host + french-country-cottages.co.uk + + + host + *.french-country-cottages.co.uk + + + host + hoseasons.co.uk + + + host + *.hoseasons.co.uk + + + host + individual-villas.co.uk + + + host + www.individual-villas.co.uk + + + host + irish-country-cottages.co.uk + + + host + *.irish-country-cottages.co.uk + + + host + italian-country-cottages.co.uk + + + host + *.italian-country-cottages.co.uk + + + host + jamesvillas.co.uk + + + host + www.jamesvillas.co.uk + + + host + landal.* + + + host + secure.landal.com + + + host + www.landal.* + + + host + landalgreenparks.com + + + host + www.landalgreenparks.com + + + host + landalcampings.be + + + host + www.landalcampings.be + + + host + landalcampings.de + + + host + www.landalcampings.de + + + host + landalcampings.nl + + + host + www.landalcampings.nl + + + host + landalparkshop.* + + + host + www.landalparkshop.* + + + host + landalskilife.* + + + host + www.landalskilife.* + + + host + mijnlandal.nl + + + host + www.mijnlandal.nl + + + host + ovscruise.com + + + host + www.ovscruise.com + + + host + prep.rci.com + + + host + rcitravelstore.co.uk + + + host + www.rcitravelstore.co.uk + + + host + resortquestsecure.com + + + host + www.resortquestsecure.com + + + host + secureholidays.com + + + host + www.secureholidays.com + + + host + scottish-country-cottages.co.uk + + + host + www.scottish-country-cottages.co.uk + + + host + villas4you.co.uk + + + host + www.villas4you.co.uk + + + host + welcomecottages.com + + + host + www.welcomecottages.com + + + host + welsh-country-cottages.co.uk + + + host + www.welsh-country-cottages.co.uk + + + host + worldmarkbywyndham.com + + + host + www.worldmarkbywyndham.com + + + host + wyndham.com + + + host + *.wyndham.com + + + host + wyndhamrentals.com + + + host + www.wyndhamrentals.com + + + host + *.wyndhamvrap.com + + + + + WyzAnt (partial) + + ruleset + + name + WyzAnt (partial) + rule + + + from + ^http://wyzant\.com/ + to + https://www.wyzant.com/ + + + from + ^http://www\.wyzant\.com/(DES/|(image|[gG]raphic|Les)s/|combiner\.ashx|EmailTutor\.aspx|(Script|Web)Resource\.axd) + to + https://www.wyzant.com/$1 + + + target + + + host + wyzant.com + + + host + www.wyzant.com + + + + + WyzerMe + + ruleset + + name + WyzerMe + rule + + from + ^http://(www\.)?wyzerme\.com/ + to + https://$1wyzerme.com/ + + securecookie + + host + ^www\.wyzerme\.com$ + name + .+ + + target + + + host + wyzerme.com + + + host + www.wyzerme.com + + + + + X PRIZE Foundation (partial) + + ruleset + + name + X PRIZE Foundation (partial) + rule + + from + ^http://(www\.)?xprize\.org/(donate(?:/?$|\?)|files/|sites/) + to + https://$1xprize.org/$2 + + target + + + host + xprize.org + + + host + www.xprize.org + + + + + XDA Developers (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?xda-developers\.com/+(?!favicon\.ico|wp-content/|wp-includes/) + + + pattern + ^http://forum\.xda-developers\.com/(?!clientscript/|css/|favicon\.ico|images/) + + + name + XDA Developers (partial) + rule + + + from + ^http://(forum\.|www\.)?xda-developers\.com/ + to + https://$1xda-developers.com/ + + + from + ^http://(?:images|(?:(?:buttons|cdn|icons|img\d?)\.)?media)\.xda-developers\.com/ + to + https://forum.xda-developers.com/ + + + from + ^http://cdn\.www\.xda-developers\.com/ + to + https://www.xda-developers.com/ + + + target + + + host + xda-developers.com + + + host + *.xda-developers.com + + + + + XDA-Developers.com (false MCB) + + ruleset + + exclusion + + pattern + ^http://(www\.)?xda-developers\.com/+(favicon\.ico|wp-content/|wp-includes/) + + name + XDA-Developers.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?xda-developers\.com/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://$1xda-developers.com/ + + securecookie + + host + ^(?:www\.)?xda-developers\.com$ + name + .+ + + target + + + host + xda-developers.com + + + host + www.xda-developers.com + + + + + XE (partial) + + ruleset + + name + XE (partial) + rule + + + from + ^https?://(?:www\.)?xe\.com/(themes/|xetrade/(?:help/)?login) + to + https://www.xe.com/$1 + + + from + ^http://fx2\.xe\.com/ + to + https://fx2.xe.com/ + + + from + ^http://s\.xe\.com/ + to + https://gp1.wac.edgecastcdn.net/00157D/ + + + target + + + host + xe.com + + + host + *.xe.com + + + + + XEU.com (partial) + + ruleset + + name + XEU.com (partial) + rule + + from + ^http://shop\.xeu\.com/ + to + https://shop.xeu.com/ + + securecookie + + host + ^\.shop\.xeu\.com$ + name + .+ + + target + + host + *.xeu.com + + + + XFCE (partial) + + ruleset + + name + XFCE (partial) + rule + + from + ^http://(bugzilla|forum|translations|wiki)\.xfce\.org/ + to + https://$1.xfce.org/ + + securecookie + + host + ^(?:.*\.)xfce\.org$ + name + .+ + + target + + host + *.xfce.org + + + + XGaming + + ruleset + + name + XGaming + rule + + from + ^http://(www\.)?xgaming\.com/ + to + https://$1xgaming.com/ + + securecookie + + host + ^www\.xgaming\.com$ + name + .+ + + target + + + host + xgaming.com + + + host + www.xgaming.com + + + + + XGraph (partial) + + ruleset + + name + XGraph (partial) + rule + + from + ^http://sxcdn\.xgraph\.net/ + to + https://sxcdn.xgraph.net/ + + target + + host + sxcdn.xgraph.net + + + + XILO Communications (partial) + + ruleset + + name + XILO Communications (partial) + rule + + + from + ^http://discuss\.xilo\.net/ + to + https://discuss.xilo.net/ + + + from + ^http://(?:my|login)\.xilo\.net/ + to + https://my.xilo.net/ + + + securecookie + + host + ^discuss\.xilo\.net$ + name + .+ + + target + + host + *.xilo.net + + + + XM.com + + ruleset + + name + XM.com + rule + + + from + ^http://(?:www\.)?xm\.com/ + to + https://www.xm.com/ + + + from + ^http://(bo|my)\.xm\.com/ + to + https://$1.xm.com/ + + + securecookie + + host + .*\.xm\.com$ + name + .+ + + target + + + host + xm.com + + + host + *.xm.com + + + + + XMMS2.org + + ruleset + + name + XMMS2.org + rule + + from + ^http://(?:(bugs\.)|www\.)?xmms2\.org/ + to + https://$1xmms2.org/ + + securecookie + + host + ^bugs\.xmms2\.org$ + name + .+ + + target + + + host + xmms2.org + + + host + *.xmms2.org + + + + + XMOS (partial) + + ruleset + + name + XMOS (partial) + rule + + from + ^http://(www\.)?xmos\.com/(download/|favicon\.ico|files/|misc/|register|sites/|system/|/user/) + to + https://$1xmos.com/$2/ + + target + + + host + xmos.com + + + host + www.xmos.com + + + + + XMPP.net + + ruleset + + name + XMPP.net + rule + + from + ^http://(?:(beta\.)|www\.)?xmpp\.net/ + to + https://$1xmpp.net/ + + target + + + host + xmpp.net + + + host + *.xmpp.net + + + + + XMPP.org (partial) + + ruleset + + name + XMPP.org (partial) + rule + + from + ^http://(?:(muc\.)|www\.)?xmpp\.org/ + to + https://$1xmpp.org/ + + securecookie + + host + ^xmpp\.org$ + name + .+ + + target + + + host + xmpp.org + + + host + *.xmpp.org + + + + + XMind.net (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?xmind\.net/(?:$|\?|(?:blog|download)(?:$|\?|/)) + + name + XMind.net (partial) + rule + + from + ^http://(www\.)?xmind\.net/ + to + https://$1xmind.net/ + + target + + + host + xmind.net + + + host + www.xmind.net + + + + + XMission (partial) + + ruleset + + exclusion + + pattern + ^http://(?:anon|maddox|wiki)\. + + name + XMission (partial) + rule + + from + ^http://(\w+\.)?xmission\.com/ + to + https://$1xmission.com/ + + securecookie + + host + ^(?:.*\.)?xmission\.com$ + name + .+ + + target + + + host + xmission.com + + + host + *.xmission.com + + + + + XO Communications (partial) + + ruleset + + name + XO Communications (partial) + rule + + + from + ^http://(register|secure)\.cnchost\.com/ + to + https://$1.cnchost.com/ + + + from + ^http://(apps|channelink)\.xo\.com/ + to + https://$1.xo.com/ + + + securecookie + + host + ^secure\.chchost\.com$ + name + .* + + target + + + host + *.cnchost.com + + + host + *.xo.com + + + + + XO Skins + + ruleset + + name + XO Skins + platform + mixedcontent + rule + + from + ^http://(?:www\.)?xoskins\.com/ + to + https://xoskins.com/ + + target + + + host + xoskins.com + + + host + www.xoskins.com + + + + + XPD.se + + ruleset + + name + XPD.se + rule + + + from + ^http://www\.xpd\.se/ + to + https://www.xpd.se/ + + + from + ^http://xpd\.se/ + to + https://xpd.se/ + + + target + + + host + xpd.se + + + host + www.xpd.se + + + + + XPic only + + ruleset + + name + XPic only + rule + + from + ^http://(www\.)?xpiconly\.com/ + to + https://$1xpiconly.com/ + + securecookie + + host + ^(?:w*\.)?xpiconly\.com$ + name + .+ + + target + + + host + xpiconly.com + + + host + *.xpiconly.com + + + + + XS4ALL (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?xs4all.nl/(?:(?:%7E)|~)+ + + name + XS4ALL (partial) + rule + + + from + ^http://(?:www\.)?xs4all\.nl/ + to + https://www.xs4all.nl/ + + + from + ^http://(blog|cdn|service|wachtwoord|webmail|webstatistieken)\.xs4all\.nl/ + to + https://$1.xs4all.nl/ + + + securecookie + + host + ^.+\.xs4all\.nl$ + name + .+ + + target + + + host + xs4all.nl + + + host + *.xs4all.nl + + + host + *.service.xs4all.nl + + + + + Xagasoft + + ruleset + + name + Xagasoft + rule + + from + ^http://(www\.)?xagasoft\.com/ + to + https://$1xagasoft.com/ + + securecookie + + host + ^(www\.)?xagasoft\.com$ + name + .* + + target + + + host + xagasoft.com + + + host + www.xagasoft.com + + + + + Xamarin.com (partial) + + ruleset + + name + Xamarin.com (partial) + rule + + + from + ^http://((?:components|developer|forums|store|www)\.)?xamarin\.com/ + to + https://$1xamarin.com/ + + + from + ^http://planet\.xamarin\.com/(?=favicon\.ico|images/|wp-content/|wp-includes/) + to + https://planetxamarin.azurewebsites.net/ + + + from + ^http://scan\.xamarin\.com/ + to + https://xamarinmobilizer.azurewebsites.net/ + + + from + ^http://support\.xamarin\.com/[^?]* + to + https://xamarin.com/support + + + securecookie + + host + ^(?:components\.|store\.)?xamarin\.com$ + name + .+ + + target + + + host + xamarin.com + + + host + *.xamarin.com + + + + + Xavisys + + ruleset + + name + Xavisys + rule + + from + ^http://(www\.)?xavisys\.com/ + to + https://$1xavisys.com/ + + securecookie + + host + ^xavisys\.com$ + name + .* + + target + + + host + xavisys.com + + + host + www.xavisys.com + + + + + Xbox (partial) + + ruleset + + exclusion + + + pattern + ^http://support\.xbox\.com/(?:en-US/)?(?:$|\?) + + + pattern + ^http://rewards\.xbox\.com/(?!join-now|(?:localized_)?media/) + + + name + Xbox (partial) + rule + + + from + ^http://(c|halo|help|live|music-cache|(?:my)?service|retailer|rewards|solutions|support)\.xbox\.com/ + to + https://$1.xbox.com/ + + + from + ^https?://o\.xbox\.com/ + to + https://xbox-com.112.2o7.net/ + + + from + ^https?://piflc\.xbox(?:live)?\.com/ + to + https://piflc.xboxlive.com/ + + + securecookie + + + host + ^\.xbox\.com$ + name + ^s_vi$ + + + host + ^(?:help|live|myservice)\.xbox\.com$ + name + .+ + + + target + + + host + *.xbox.com + + + host + piflc.xboxlive.com + + + + + Xelerence.com + + ruleset + + name + Xelerence.com + rule + + from + ^http://((?:dane|proxy|www)\.)?xelerance\.com/ + to + https://$1xelerance.com/ + + target + + + host + xelerance.com + + + host + *.xelerance.com + + + + + Xemail.de + + ruleset + + name + Xemail.de + rule + + from + ^http://(www\.)?xemail\.de/ + to + https://www.xemail.de/ + + target + + + host + xemail.de + + + host + www.xemail.de + + + + + Xen Project.org (partial) + + ruleset + + name + Xen Project.org (partial) + rule + + from + ^http://blog\.xenproject\.org/ + to + https://blog.xenproject.org/ + + target + + host + blog.xenproject.org + + + + Xen VPS.com + + ruleset + + name + Xen VPS.com + rule + + from + ^http://(www\.)?xenvps\.com/ + to + https://$1xenvps.com/ + + target + + + host + xenvps.com + + + host + www.xenvps.com + + + + + Xen-Orchestra.com + + ruleset + + name + Xen-Orchestra.com + rule + + from + ^http://(www\.)?xen-orchestra\.com/ + to + https://$1xen-orchestra.com/ + + securecookie + + host + ^xen-orchestra\.com$ + name + .+ + + target + + + host + xen-orchestra.com + + + host + www.xen-orchestra.com + + + + + XenForo.com (partial) + + ruleset + + name + XenForo.com (partial) + rule + + from + ^http://(www\.)?xenforo\.com/(?!/*community(?!/styles/)) + to + https://$1xenforo.com/ + + target + + + host + xenforo.com + + + host + www.xenforo.com + + + + + Xengrade (partial) + + ruleset + + name + Xengrade (partial) + rule + + from + ^http://registration\.xenegrade\.com/ + to + https://registration.xenegrade.com/ + + target + + host + registration.xenegrade.com + + + + Xeno Gamers.org + + ruleset + + name + Xeno Gamers.org + rule + + from + ^http://(img\d\.|www\.)?xenogamers\.org/ + to + https://$1xenogamers.org/ + + securecookie + + host + ^\.?xenogamers\.org$ + name + .+ + + target + + + host + xenogamers.org + + + host + *.xenogamers.org + + + + + Xenobite.eu + + ruleset + + name + Xenobite.eu + rule + + from + ^http://(torcheck\.)?xenobite\.eu/ + to + https://$1xenobite.eu/ + + target + + + host + xenobite.eu + + + host + torcheck.xenobite.eu + + + + + Xetum.com (partial) + + ruleset + + name + Xetum.com (partial) + rule + + from + ^http://(www\.)?xetum\.com/(?=[^?/]+/+[^?/]+|checkout(?:$|[?/])|favicon\.ico|static/) + to + https://$1xetum.com/ + + target + + + host + xetum.com + + + host + www.xetum.com + + + + + Xfire (partial) + + ruleset + + name + Xfire (partial) + rule + + + from + ^http://(www\.)?xfire\.com/lo(gin|st_password) + to + https://$1xfire.com/lo$2 + + + from + ^http://secure\.xfire\.com/ + to + https://secure.xfire.com/ + + + target + + + host + *.xfire.com + + + host + xfire.com + + + + + XiTi.com (partial) + + ruleset + + name + XiTi.com (partial) + rule + + + from + ^http://(logs13|logs[12]42|logs1204|logs1279|secured75|v75)\.xiti\.com/ + to + https://$1.xiti.com/ + + + from + ^http://logc142\.xiti\.com/ + to + https://logs1142.xiti.com/ + + + from + ^http://log[cs]2\.xiti\.com/ + to + https://logs2.xiti.com/ + + + from + ^http://logi10\.xiti\.com/ + to + https://logs13.xiti.com/ + + + from + ^http://logc20[56]\.xiti\.com/ + to + https://logs1204.xiti.com/ + + + from + ^http://log[ci]242\.xiti\.com/ + to + https://logs1242.xiti.com/ + + + from + ^http://log(?:c279|c400|i9)\.xiti\.com/ + to + https://logs.xiti.com/ + + + securecookie + + + host + ^\.xiti\.com$ + name + ^(?:idrxvr|tmst)$ + + + host + ^(?:secured|v)75\.xiti\.com$ + name + .* + + + target + + host + *.xiti.com + + + + Xignite (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?xignite\.com/(?:$|\?|Documents/|market-data/|Products/|Support/) + + name + Xignite (partial) + rule + + + from + ^http://(www\.)?xignite\.com/ + to + https://$1xignite.com/ + + + from + ^https?://cdn\.xignite\.com/ + to + https://d238gk3mw72oe2.cloudfront.net/ + + + target + + + host + xignite.com + + + host + *.xignite.com + + + + + Xing + + ruleset + + name + Xing + rule + + + from + ^http://([\w-]+\.)?xing\.com/ + to + https://$1xing.com/ + + + from + ^http://x1\.xingassets\.com/ + to + https://x1.xingassets.com/ + + + securecookie + + host + .*\.xing\.com$ + name + .+ + + target + + + host + xing.com + + + host + *.xing.com + + + host + x1.xingassets.com + + + + + Xiph.org + + ruleset + + name + Xiph.org + rule + + from + ^http://((?:git|media|people|svn|wiki|trac|www)\.)?xiph\.org/ + to + https://$1xiph.org/ + + securecookie + + host + ^.*\.xiph\.org$ + name + .* + + target + + + host + xiph.org + + + host + *.xiph.org + + + + + Xiscosoft.es + + ruleset + + name + Xiscosoft.es + platform + cacert + rule + + + from + ^http://(www\.)?xiscosoft\.(com|com\.es|es|info|net|org)/ + to + https://$1xiscosoft.$2/ + + + from + ^http://klondike\.xiscosoft\.es/ + to + https://klondike.xiscosoft.es/ + + + target + + + host + xiscosoft.* + + + host + www.xiscosoft.* + + + host + xiscosoft.com.es + + + host + www.xiscosoft.com.es + + + host + klondike.xiscosoft.es + + + + + Xmarks + + ruleset + + name + Xmarks + rule + + + from + ^http://(?:www\.)?xmarks\.com/ + to + https://www.xmarks.com/ + + + from + ^http://(buy|download|login|my|static|thumbs)\.xmarks\.com/ + to + https://$1.xmarks.com/ + + + securecookie + + host + ^(.*\.)?xmarks.com$ + name + .* + + target + + + host + xmarks.com + + + host + *.xmarks.com + + + + + Xparkmedia.com + + ruleset + + name + Xparkmedia.com + rule + + from + ^http://(www\.)?xparkmedia\.com/ + to + https://$1xparkmedia.com/ + + securecookie + + host + ^\.xparkmedia\.com$ + name + .+ + + target + + + host + xparkmedia.com + + + host + *.xparkmedia.com + + + + + Xperia Studio (partial) + + ruleset + + name + Xperia Studio (partial) + rule + + from + ^https?://(?:www\.)?xperiastudio\.com/wp-content/ + to + https://www.xperiastudio.com/wp-content/ + + target + + + host + xperiastudio.com + + + host + www.xperiastudio.com + + + + + Xperience Days + + ruleset + + name + Xperience Days + rule + + + from + ^http://secure\.xperiencedays\.com/ + to + https://secure.xperiencedays.com/ + + + from + ^https?://((static|www)\.)?xperiencedays\.com/ + to + https://secure.xperiencedays.com/ + + + securecookie + + host + ^secure\.xperiencedays\.com$ + name + .+ + + target + + + host + xperiencedays.com + + + host + secure.xperiencedays.com + + + host + static.xperiencedays.com + + + host + www.xperiencedays.com + + + + + Xplr + + ruleset + + name + Xplr + rule + + from + ^http://(piwik\.|www\.)?xplr\.com/ + to + https://$1xplr.com/ + + securecookie + + host + ^(?:piwik\.|www\.)?xplr\.com$ + name + .+ + + target + + + host + xplr.com + + + host + *.xplr.com + + + + + Xpra + + ruleset + + name + Xpra + rule + + from + ^http://(www\.)?xpra\.org/ + to + https://$1xpra.org/ + + securecookie + + host + ^www\.xpra\.org$ + name + .* + + target + + + host + xpra.org + + + host + www.xpra.org + + + + + Xsens.com (partial) + + ruleset + + name + Xsens.com (partial) + rule + + from + ^http://(www\.)?xsens\.com/ + to + https://$1xsens.com/ + + target + + + host + xsens.com + + + host + www.xsens.com + + + + + Xserver (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?xserver\.(?:co|ne)\.jp/(?:\?.*)?$ + + name + Xserver (partial) + rule + + from + ^http://(www\.)?xserver\.(co|ne)\.jp/ + to + https://$1xserver.$2.jp/ + + target + + + host + xserver.*.jp + + + host + www.xserver.*.jp + + + + + Xsolla (partial) + + ruleset + + name + Xsolla (partial) + rule + + + from + ^http://2pay\.ru/ + to + https://2pay.ru/ + + + from + ^http://((?:dev-)?account|cdn|ps|secure|static)\.xsolla\.com/ + to + https://$1.xsolla.com/ + + + securecookie + + host + ^.+\.xsolla\.com$ + name + .+ + + target + + + host + 2pay.ru + + + host + *.xsolla.com + + + + + XtGem.com (partial) + + ruleset + + name + XtGem.com (partial) + rule + + from + ^http://(?:www\.)?xtgem\.com/ + to + https://xtgem.com/ + + securecookie + + host + ^\.xtgem\.com$ + name + .+ + + target + + + host + xtgem.com + + + host + *.xtgem.com + + + + + Xtenit (partial) + + ruleset + + name + Xtenit (partial) + rule + + from + ^http://([\w-]+)\.secure\.xtenit\.com/ + to + https://$1.secure.xtenit.com/ + + target + + host + *.secure.xtenit.com + + + + Xtube.com + + ruleset + + name + Xtube.com + platform + mixedcontent + rule + + + from + ^http://(www\.)?xtube\.com/ + to + https://$1xtube.com/ + + + from + ^http://cdn\.static\.xtube\.com/(?=img/|newcss/|newjs/) + to + https://www.xtube.com/ + + + securecookie + + host + ^(?:www\.)?xtube\.com$ + name + .+ + + target + + + host + xtube.com + + + host + www.xtube.com + + + + + Xtwo.ne.jp (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?xtwo\.ne\.jp/(?:\?.*)?$ + + name + Xtwo.ne.jp (partial) + rule + + from + ^http://(secure\.|www\.)?xtwo\.ne\.jp/ + to + https://$1xtwo.ne.jp/ + + target + + + host + xtwo.ne.jp + + + host + *.xtwo.ne.jp + + + + + Xumaa.com (partial) + + ruleset + + name + Xumaa.com (partial) + rule + + from + ^http://(www\.)?xumaa\.com/(favicon\.ico|images/|includes/) + to + https://$1xumaa.com/$2 + + target + + + host + xumaa.com + + + host + www.xumaa.com + + + + + Xyratex.com (partial) + + ruleset + + name + Xyratex.com (partial) + rule + + from + ^http://(my|projectlava)\.xyratex\.com/ + to + https://$1.xyratex.com/ + + securecookie + + host + ^projectlava\.xyratex\.com$ + name + .+ + + target + + host + *.xyratex.com + + + + YADG.cc + + ruleset + + name + YADG.cc + rule + + from + ^http://(www\.)?yadg\.cc/ + to + https://yadg.cc/ + + target + + + host + yadg.cc + + + host + www.yadg.cc + + + + + YEAH! + + ruleset + + name + YEAH! + rule + + from + ^http://(?:www\.)?yeahtv\.com/ + to + https://www.yeahtv.com/ + + target + + + host + yeahtv.com + + + host + www.yeahtv.com + + + + + YIFY Torrents + + ruleset + + name + YIFY Torrents + rule + + from + ^http://(static\.|www\.)?yify-torrents\.(com|im)/ + to + https://$1yify-torrents.$2/ + + securecookie + + host + ^\.yify-torrents\.(?:com|im)$ + name + .+ + + target + + + host + yify-torrents.com + + + host + *.yify-torrents.com + + + host + yify-torrents.im + + + host + *.yify-torrents.im + + + + + YMCA of Greater St. Louis + + ruleset + + name + YMCA of Greater St. Louis + rule + + + from + ^http://(?:www\.)?ymcastlouis\.org/ + to + https://www.ymcastlouis.org/ + + + from + ^http://(payroll-remote|registration)\.ymcastlouis\.org/ + to + https://$1.ymcastlouis.org/ + + + securecookie + + host + ^(?:payroll-remote|registration|\.www)\.ymcastlouis\.org$ + name + .+ + + target + + + host + ymcastlouis.org + + + host + *.ymcastlouis.org + + + + + YMCMB Official Merch + + ruleset + + name + YMCMB Official Merch + rule + + from + ^https?://(?:www\.)?ymcmbofficial\.com/stores/(account_login\.php|images/|skins_ymcmb/) + to + https://www.ymcmbofficial.com/stores/$1 + + target + + + host + ymcmbofficial.com + + + host + www.ymcmbofficial.com + + + + + YMcdn.com + + ruleset + + name + YMcdn.com + rule + + from + ^http://c\.ymcdn\.com/ + to + https://c.ymcdn.com/ + + target + + host + c.ymcdn.com + + + + YP bot.net (partial) + + ruleset + + exclusion + + pattern + ^http://media-cache\.ypbot\.net/ + + name + YP bot.net (partial) + rule + + from + ^http://(?:static\.solfoinc\.netdna-cdn\.com|st[12]?\.ypbot\.net)/ + to + https://solfo.pimg.net/ + + target + + + host + static.solfoinc.netdna-cdn.com + + + host + *.ypbot.net + + + + + YUI Library + + ruleset + + name + YUI Library + rule + + from + ^http://(www\.)?yuilibrary\.com/ + to + https://$1yuilibrary.com/ + + securecookie + + host + ^yuilibrary\.com$ + name + .+ + + target + + + host + yuilibrary.com + + + host + www.yuilibrary.com + + + + + Yabumi.cc + + ruleset + + name + Yabumi.cc + rule + + from + ^http://(direct\.)?yabumi\.cc/ + to + https://$1yabumi.cc/ + + securecookie + + host + ^\.yabumi\.cc$ + name + .+ + + target + + + host + yabumi.cc + + + host + *.yabumi.cc + + + + + Yadro.ru (partial) + + ruleset + + name + Yadro.ru (partial) + rule + + from + ^http://counter\.yadro\.ru/ + to + https://counter.yadro.ru/ + + securecookie + + host + ^\.yadro\.ru$ + name + .+ + + target + + host + *.yadro.ru + + + + Yagina.com + + ruleset + + name + Yagina.com + rule + + from + ^http://(www\.)?yagina\.com/ + to + https://$1yagina.com/ + + securecookie + + host + ^\.yagina\.com$ + name + .+ + + target + + + host + yagina.com + + + host + *.yagina.com + + + + + Yaha + + ruleset + + name + Yaha + rule + + + from + ^http://yaha\.no/ + to + https://yaha.no/ + + + from + ^http://www\.yaha\.no/ + to + https://www.yaha.no/ + + + target + + + host + yaha.no + + + host + www.yaha.no + + + + + Yahoo APIs (partial) + + ruleset + + name + Yahoo APIs (partial) + rule + + + from + ^http://(open\.login|query|yui-s)\.yahooapis\.com/ + to + https://$1.yahooapis.com/ + + + from + ^http://(?:search\.)?yahooapis\.com/(?:.*) + to + https://developer.yahoo.com/ + + + target + + + host + yahooapis.com + + + host + *.yahooapis.com + + + host + open.login.yahooapis.com + + + + + Yahoo! (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?totaltravel\.com/images/ + + + pattern + ^http://(?:(?:cn|kr|tw)\.adspecs|(?:co|espanol|mx)\.astrology|kr\.mobile)\.yahoo\.com/ + + + pattern + ^http://ca\.local\.yahoo\.com/ + + + pattern + ^http://cn\.overview\.mail\.yahoo\.com/ + + + pattern + ^http://(?:br|es)\.safely\.yahoo\.com/ + + + name + Yahoo! (partial) + rule + + + from + ^http://i\.acdn\.us/ + to + https://s.yimg.com/ck/ + + + from + ^http://(?:www\.)?(?:rocket|y)mail\.com/ + to + https://mail.yahoo.com/ + + + from + ^http://(?:www\.)?totaltravel\.co(?:m|\.uk)/ + to + https://au.totaltravel.yahoo.com/ + + + from + ^http://builder\.totaltravel\.com/ + to + https://builder.totaltravel.com/ + + + from + ^http://fr\.actualites\.yahoo\.com/.* + to + https://fr.news.yahoo.com/ + + + from + ^http://advertisingcentral\.yahoo\.com/+(?=$|\?) + to + https://advertising.yahoo.com/ + + + from + ^http://(?:cl|co|pe|ve)\.answers\.yahoo\.com/+ + to + https://espanol.answers.yahoo.com/ + + + from + ^http://(au|nz)\.astrology\.yahoo\.com/[^?]* + to + https://$1.lifestyle.yahoo.com/horoscopes/ + + + from + ^http://ca\.astrology\.yahoo\.com/.* + to + https://ca.shine.yahoo.com/horoscope/ + + + from + ^http://(ar|mx)\.autos\.yahoo\.com/+ + to + https://$1.autocosmos.yahoo.net/ + + + from + ^http://(de|fr)\.autos\.yahoo\.com/+ + to + https://$1.cars.yahoo.com/ + + + from + ^http://(au|nz)\.biz\.yahoo\.com/[^?]* + to + https://$1.finance.yahoo.com/news + + + from + ^http://(ar|au|br|ca|cl|de|fr|es|hk|id|ie|in|it|jp|mx|my|no|nz|ph|sg|tw|uk|us|vn)\.careers\.yahoo\.com/+ + to + https://careers.yahoo.com/$1/ + + + from + ^http://malaysia\.careers\.yahoo\.com/+ + to + https://careers.yahoo.com/my/ + + + from + ^http://qc\.careers\.yahoo\.com/+ + to + https://careers.yahoo.com/ca/ + + + from + ^http://cars\.yahoo\.com/ + to + https://autos.yahoo.com/ + + + from + ^http://(?:tw\.help\.cc|help\.cc\.tw)\.yahoo\.com/.* + to + https://help.yahoo.com/kb/index?page=home&locale=zh_TW + + + from + ^http://cn\.yahoo\.com/+ + to + https://sg.yahoo.com/ + + + from + ^http://(?:cine|espanol\.movies)\.yahoo\.com/+ + to + https://es-us.cine.yahoo.com/ + + + from + ^http://(?:cl|co|pe|ve)\.deportes\.yahoo\.com/+ + to + https://es-us.deportes.yahoo.com/ + + + from + ^http://es\.deportes\.yahoo\.com/+ + to + https://es.eurosport.yahoo.com/ + + + from + ^http://www\.developer\.yahoo\.com/[^?]* + to + https://developer.yahoo.com/ + + + from + ^http://au\.dir\.yahoo\.com/+([^?]*).* + to + https://au.search.yahoo.com/web?fr= + + + from + ^http://(?:dk|no|ru)\.yahoo\.com/+ + to + https://www.yahoo.com/ + + + from + ^http://e1\.yahoo\.com/+ + to + https://espanol.yahoo.com/ + + + from + ^http://hk\.ent\.yahoo\.com/+ + to + https://hk.celebrity.yahoo.com/ + + + from + ^http://java\.europe\.yahoo\.com/ + to + https://adgallery.zenfs.com/ + + + from + ^http://fr\.eurosport\.yahoo\.com/ + to + https://fr.sports.yahoo.com/ + + + from + ^http://es\.everything\.yahoo\.com/.* + to + https://es.todo.yahoo.com/ + + + from + ^http://fantasysports\.yahoo\.com/(?=$|\?) + to + https://sports.yahoo.com/fantasy + + + from + ^http://es\.laliga\.fantasysports\.yahoo\.com/+ + to + https://es.eurosport.yahoo.com/fantasy/la-liga/ + + + from + ^http://feedback\.yahoo\.com/ + to + https://yahoo.uservoice.com/ + + + from + ^http://(i)?chart\.finance\.yahoo\.com/ + to + https://$1chart.yahoo.com/ + + + from + ^http://connectedtv\.yahoo\.com/[^?]* + to + https://smarttv.yahoo.com/ + + + from + ^http://kr\.finance\.yahoo\.com/ + to + https://tools.search.yahoo.com/kr-eol.html + + + from + ^http://(au|nz)\.food\.yahoo\.com/ + to + https://$1.lifestyle.yahoo.com/food/ + + + from + ^http://de\.games\.yahoo\.com/+ + to + https://de.spiele.yahoo.com/ + + + from + ^http://(?:id|malaysia|nz|ph)\.games\.yahoo\.com/+ + to + https://games.yahoo.com/ + + + from + ^http://ie\.(finance|groups|lifestyle)\.yahoo\.com/.* + to + https://uk.$1.yahoo.com/ + + + from + ^http://au\.(?:answer|forum)s\.yahoo\.com/[^?]* + to + https://au.answers.yahoo.com/ + + + from + ^http://kr\.(?:gugi|maps|searchad)\.yahoo\.com/.* + to + https://tools.search.yahoo.com/kr-eol.html + + + from + ^http://fr\.help\.yahoo\.com/+ + to + https://help.yahoo.com/l/fr/yahoo/helpcentral/ + + + from + ^http://help\.cc\.hk\.yahoo\.com/.* + to + https://help.yahoo.com/kb/index?page=home&locale=zh_HK + + + from + ^http://(?:home|realestate)\.yahoo\.com/+ + to + https://homes.yahoo.com/ + + + from + ^http://(ar|es-us|mx)\.lifestyle\.yahoo\.com/+ + to + https://$1.mujer.yahoo.com/ + + + from + ^http://ca\.(?:lifestyle|shine)\.yahoo\.com/ + to + https://ca.shine.yahoo.com/ + + + from + ^http://fr\.local\.yahoo\.com/.* + to + https://fr.yahoo.com/ + + + from + ^http://es\.maps\.yahoo\.com/.* + to + https://es.search.yahoo.com/search/es?p=callejero+itinerarios&y=y + + + from + ^http://in\.maps\.yahoo\.com/.* + to + https://maps.yahoo.com/ + + + from + ^http://mx\.maps\.yahoo\.com/+ + to + https://espanol.maps.yahoo.com/ + + + from + ^http://nz\.maps\.yahoo\.com/+ + to + https://nz.search.yahoo.com/search/maps/ + + + from + ^http://ie\.messenger\.yahoo\.com/.* + to + https://uk.messenger.yahoo.com/ + + + from + ^http://nz\.messenger\.yahoo\.com/[^?].* + to + https://messenger.yahoo.com/ + + + from + ^http://ie\.mobile\.yahoo\.com/.* + to + https://uk.mobile.yahoo.com/ + + + from + ^http://tw\.music\.yahoo\.com/+ + to + https://tw.music.yahoo.net/ + + + from + ^http://(?:axis|(?:dk|no)\.mobile|dk\.news)\.yahoo\.com/.* + to + https://www.yahoo.com/ + + + from + ^http://es\.movies\.yahoo\.com/+ + to + https://es.cine.yahoo.com/ + + + from + ^http://(br|fr|it)\.movies\.yahoo\.com/+ + to + https://$1.cinema.yahoo.com/ + + + from + ^http://dps\.msg\.yahoo\.com/ + to + https://ycpi-mail-dps.msg.yahoo.com/ + + + from + ^http://hk\.(?:music|tv)\.yahoo\.com/.* + to + https://hk.celebrity.yahoo.com/music/ + + + from + ^http://(ar|br|co|es|mx|pe)\.news\.yahoo\.com/+ + to + https://$1.noticias.yahoo.com/ + + + from + ^http://ie\.news\.yahoo\.com/.* + to + https://uk.news.yahoo.com/n/news_ireland.html + + + from + ^http://on\.yahoo\.com/+ + to + https://pilotx1.yahoo.com/ + + + from + ^http://rds?\.yahoo\.com/ + to + https://us.rd.yahoo.com/ + + + from + ^http://(ar|cl|co|es-us|mx|pe|ve)\.safely\.yahoo\.com/+ + to + https://$1.seguridad.yahoo.com/ + + + from + ^http://malaysia\.safely\.yahoo\.com/+ + to + https://my.safely.yahoo.com/ + + + from + ^http://cn\.search\.yahoo\.com/.* + to + https://sg.search.yahoo.com/ + + + from + ^http://kr\.(?:images\.)?search\.yahoo\.com/.* + to + https://kr.search.yahoo.com/ + + + from + ^http://my\.images\.search\.yahoo\.com/ + to + https://malaysia.images.search.yahoo.com/ + + + from + ^http://nz\.maps\.search\.yahoo\.com/+ + to + https://nz.search.yahoo.com/ + + + from + ^http://my\.search\.yahoo\.com/+ + to + https://malaysia.search.yahoo.com/ + + + from + ^http://(de|es|fr|it|uk)\.solutions\.yahoo\.com/[^?]* + to + https://$1.adspecs.yahoo.com/ + + + from + ^http://sport\.yahoo\.com/+ + to + https://sports.yahoo.com/ + + + from + ^http://(de|es|uk)\.sports\.yahoo\.com/+ + to + https://$1.eurosport.yahoo.com/ + + + from + ^http://in\.sports\.yahoo\.com/+$ + to + https://cricket.yahoo.com/ + + + from + ^http://au\.todaytonight\.yahoo\.com/+\??$ + to + https://au.news.yahoo.com/today-tonight/ + + + from + ^http://au\.todaytonight\.yahoo\.com/[^?]* + to + https://au.news.yahoo.com/today-tonight/ + + + from + ^http://(au|nz)\.travel\.yahoo\.com/[^?]* + to + https://$1.totaltravel.yahoo.com/ + + + from + ^http://ca\.travel\.yahoo\.com/+ + to + https://travel.yahoo.com/ + + + from + ^http://(my|ph)\.travel\.yahoo\.com/.* + to + https://$1.news.yahoo.com/travel/ + + + from + ^http://uk\.travel\.yahoo\.com/.* + to + https://uk.lifestyle.yahoo.com/travel/ + + + from + ^http://ca\.tv\.yahoo\.com/+ + to + https://tv.yahoo.com/ + + + from + ^http://pe\.tv\.yahoo\.com/+ + to + https://es-us.tv.yahoo.com/ + + + from + ^http://((?:br|ca|de|es|es-us|fr|it|mx|uk)\.)?video\.yahoo\.com/+ + to + https://$1screen.yahoo.com/ + + + from + ^http://(ar|co|in)\.video\.yahoo\.com/.* + to + https://$1.screen.yahoo.com/ + + + from + ^http://au\.video\.yahoo\.com/.* + to + https://au.tv.yahoo.com/plus7/ + + + from + ^http://[pv]e\.video\.yahoo\.com/+ + to + https://es-us.screen.yahoo.com/ + + + from + ^http://hk\.video\.yahoo\.com/.* + to + https://help.yahoo.com/kb/index?page=home&locale=zh_HK + + + from + ^http://my\.video\.yahoo\.com/ + to + https://malaysia.video.yahoo.com/ + + + from + ^http://nz\.video\.yahoo\.com/+(?:\?.*)?$ + to + https://nz.news.yahoo.com/video/ + + + from + ^http://(ar|es)\.weather\.yahoo\.com/+ + to + https://$1.tiempo.yahoo.com/ + + + from + ^http://(cl|co|mx|pe|ve)\.weather\.yahoo\.com/+ + to + https://$1.clima.yahoo.com/ + + + from + ^http://espanol\.weather\.yahoo\.com/+ + to + https://es-us.clima.yahoo.com/ + + + from + ^http://(fr|it)\.weather\.yahoo\.com/+ + to + https://$1.meteo.yahoo.com/ + + + from + ^http://tw\.weather\.yahoo\.com/.* + to + https://tw.news.yahoo.com/weather-forecast/ + + + from + ^http://widgets\.yahoo\.com/[^?]* + to + https://www.yahoo.com/ + + + from + ^http://((?:\w\w|fr-ca\.actualites|address|\w\w\.address|admanager|(?:\w\w|global)\.adserver|adspecs|\w+\.adspecs|\w+\.adspecs-new|advertising|\w\w\.advertising|beap\.adx|c5a?\.ah|(?:s-)?cookex\.amp|(?:[aosz]|apac|y3?)\.analytics|anc|answers|(?:\w\w|espanol|malaysia)\.answers|antispam|\w\w\.antispam|vn\.antoan|au\.apps|global\.ard|astrology|\w\w\.astrology|hk\.(?:(?:info|f1\.master|f1\.page|search|store|edit\.store|user)\.)?auctions|autos|\w\w\.autos|ar\.ayuda|(?:clicks\.beap|csc\.beap|pn1|row|us)\.bc|tw\.bid|tw\.(?:campaign|master|mb|page|search|store|user)\.bid|(?:m\.)?tw\.bigdeals|tw\.billing|biz|boss|(?:tw\.partner|tw)\.buy|(?:\w\w\.)?calendar|careers|\w\w\.cars|(?:\w\w|es-us)\.celebridades|(?:\w\w\.)?celebrity|tw\.charity|i?chart|(?:\w\w|es-us)\.cine|\w\w\.cinema|(?:\w\w|es-us)\.clima|migration\.cn|(?:deveopers\.)?commercecentral|br\.contribuidores|(?:uk\.)?contributor|au\.dating|(?:\w\w|es-us)\.deportes|developer|tw\.dictionary|dir|downloads|s-b\.dp|(?:eu\.|na\.|sa\.|tw\.)?edit|tw\.(?:ysm\.)?emarketing|en-maktoob|\w\w\.entertainment|espanol|edit\.europe|eurosport|(?:de|es|it|uk)\.eurosport|everything|\w\w\.everything|\w+\.fantasysports|au\.fango|tw\.fashion|br\.financas|finance|(?:\w\w|tw\.chart|espanol|tw\.futures|streamerapi)\.finance|(?:\w\w|es-us)\.finanzas|nz\.rss\.food|nz\.forums|games|(?:au|ca|uk)\.games|geo|gma|groups|(?:\w\w|asia|espanol|es-us|fr-ca|moderators)\.groups|health|help|(?:\w\w|secure)\.help|homes|(?:tw|tw\.v2)\.house|info|\w\w\.info|tw\.tool\.ks|au\.launch|legalredirect|(?:\w\w)\.lifestyle|(?:gh\.bouncer\.)?login|us\.l?rd|local|\w\w\.local|m|r\.m|\w\w\.m|mail|(?:\w\w\.overview|[\w-]+(?:\.c\.yom)?)\.mail|maktoob|malaysia|tw\.(?:user\.)?mall|maps|(?:\w\w|espanol|sgws2)\.maps|messenger|(?:\w\w|malaysia)\.messenger|\w\w\.meteo|mlogin|mobile|(?:\w\w|espanol|malaysia)\.mobile|tw\.(?:campaign\.)?money|tw\.movie|movies|(?:au|ca|nz|au\.rss|nz\.rss|tw|uk)\.movies|[\w.-]+\.msg|(?:\w\w|es-us)\.mujer|music|ca\.music|[\w-]+\.musica|my|add\.my|us\.my|de\.nachrichten|ucs\.netsvs|news|(?:au|ca|fr|gr|hk|in|nz|ph|nz\.rss|sg|tw|uk)\.news|cookiex\.ngd|(?:\w\w|es-us)\.noticias|omg|(?:\w\w|es-us)\.omg|au\.oztips|rtb\.pclick|pilotx1|pipes|play|playerio|privacy|profile|tw\.promo|(?:au|hk|nz)\.promotions|publishing|(?:analytics|mailapps|media|ucs|us-locdrop|video)\.query|hk\.rd|(?:\w\w\.|fr-ca\.)?safely|screen|(?:\w\w|es-us)\.screen|scribe|search|(?:\w\w|w\w\.blog|\w\w\.dictionary|finance|\w\w\.finance|images|\w\w\.images|\w\w\.knowledge|\w\w\.lifestyle|\w\w\.local|malaysia|movies|\w\w\.movies|news|\w\w\.news|malaysia\.news|r|recipes|\w\w\.recipes|shine|shopping|\w\w\.shopping|sports|\w\w\.sports|tools|au\.tv|video|\w\w\.video|malaysia\.video)\.search|sec|rtb\.pclick\.secure|security|tw\.security|\w\w\.seguranca|\w\w\.seguridad|es-us\.seguridad|\w\w\.seguro|tw\.serviceplus|settings|shine|ca\.shine|shopping|ca\.shopping|\w+\.sitios|dashboard\.slingstone|(?:au\.|order\.)?smallbusiness|smarttv|rd\.software|de\.spiele|sports|(?:au|ca|fr|hk|nz|ph|profiles|au\.rss|nz\.rss|tw)\.sports|tw\.stock|au\.thehype|\w\w\.tiempo|es\.todo|toolbar|(?:\w\w|data|malaysia)\.toolbar|(?:au|nz)\.totaltravel|transparency|travel|tw\.travel||tv|(?:ar|au|de|fr|es|es-us|it|mx|nz|au\.rss|uk)\.tv|tw\.uwant|(?:mh|nz|qos|yep)\.video|weather|(?:au|ca|hk|in|nz|sg|ph|uk|us)\.weather|de\.wetter|www|au\.yel|video\.media\.yql|dmros\.ysm)\.)?yahoo\.com/ + to + https://$1yahoo.com/ + + + from + ^http://([\w-]+)\.yahoofs\.com/ + to + https://$1.yahoofs.com/ + + + from + ^http://yhoo\.it/ + to + https://bit.ly/ + + + from + ^http://(\w+)\.zenfs\.com/ + to + https://$1.zenfs.com/ + + + securecookie + + + host + ^\.yahoo\.com$ + name + ^(?:AO|B|SSL)$ + + + host + ^(?:\.analytics|\w\w\.celebridades|\w\w\.cinema|commercecentral|\.contributor|tw\.ysm\.emarketing|everything|\w\w\.financas|games|help|\w\w\.help|homes|\w\w\.local|\.mail|\.maps|\.maktoob|movies|\.?news|\w\w.news|\.playerio|profile|(?:us-locdrop|video)\.query|images\.search|fr\.images\.search|\.toolbar|\.\w\w\.tv|\.uk|\.?us|tw\.uwant|\.www)\.yahoo\.com$ + name + .+ + + + host + ^\.bid\.yahoo\.com$ + name + ^twRecentHistory$ + + + host + ^\.auctions\.yahoo\.com$ + name + ^hkRecentHistory$ + + + host + ^\.zenfs\.com$ + name + ^BX$ + + + target + + + host + i.acdn.us + + + host + rocketmail.com + + + host + www.rocketmail.com + + + host + totaltravel.co.uk + + + host + www.totaltravel.co.uk + + + host + totaltravel.com + + + host + *.totaltravel.com + + + host + yahoo.com + + + host + *.yahoo.com + + + host + *.yahoofs.com + + + host + yhoo.it + + + host + ymail.com + + + host + www.ymail.com + + + host + *.zenfs.com + + + + + Yahoo! Japan (partial) + + ruleset + + exclusion + + + pattern + ^http://custom\.search\.yahoo\.co\.jp/(?!favicon\.ico|images/) + + + pattern + ^http://omiai\.yahoo\.co\.jp/(?!favicon\.ico) + + + name + Yahoo! Japan (partial) + rule + + + from + ^http://(adserver|contact\.advertising|ard|b\d+|(?:forms|ols|yadui)\.business|biz-form\.ec|help|docs\.id|login|ms|form\.ms|omiai|details\.payment|pclick|(?:biz\.)?points|secure\.promotionalads|(?:lot|s)\.sample|custom\.search|odhistory\.shopping|order\.store|yeas)\.yahoo\.co\.jp/ + to + https://$1.yahoo.co.jp/ + + + from + ^http://(?:secure\.)?stepup\.yahoo\.co\.jp/ + to + https://secure.stepup.yahoo.co.jp/ + + + from + ^http://www\.yahoo-help\.jp/ + to + https://www.yahoo-help.jp/ + + + from + ^http://(?:a[hi]?|[ik]|s)\.yimg\.jp/ + to + https://s.yimg.jp/ + + + from + ^http://([\w-]+)\.c\.yimg\.jp/ + to + https://$1.c.yimg.jp/ + + + from + ^http://s\.yjtag\.jp/ + to + https://s.yjtag.jp/ + + + securecookie + + + host + ^\.yahoo\.co\.jp$ + name + ^B$ + + + host + ^\.forms\.business\.yahoo\.co\.jp$ + name + .+ + + + host + ^www\.yahoo-help\.jp$ + name + .+ + + + target + + + host + *.yahoo.co.jp + + + host + www.yahoo-help.jp + + + host + *.yimg.jp + + + host + s.yjtag.jp + + + + + Yahoo.com (false MCB) + + ruleset + + name + Yahoo.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(au\.gwn7|au\.rss\.news|au\.prime7)\.yahoo\.com/ + to + https://$1.yahoo.com/ + + target + + + host + au.gwn7.yahoo.com + + + host + au.rss.news.yahoo.com + + + host + au.prime7.yahoo.com + + + + + Yahoo.com.tw (partial) + + ruleset + + name + Yahoo.com.tw (partial) + rule + + from + ^http://buy\.yahoo\.com\.tw/ + to + https://buy.yahoo.com.tw/ + + target + + host + buy.yahoo.com.tw + + + + Yahoo.net (partial) + + ruleset + + name + Yahoo.net (partial) + rule + + + from + ^http://contextualads\.yahoo\.net/(?=js/|style/(?!screen\.css)) + to + https://a248.e.akamai.net/f/1907/9547/9m/contextualads.yahoo.net/ + + + from + ^http://br\.games\.yahoo\.net/img/ + to + https://secure.atrativa.com.br/img/ + + + from + ^http://(\w\w\.autocosmos|(?:m\.)?tw\.bigdeals|(?:fashion|house|games\.m|marketing|promo|travel|yimg)\.tw\.campaign|espanol\.cine|cinema|tw\.(?:rimg\.)?discount|tw\.uimg\.fashion|tw\.urcosme\.fashion|tw\.(?:quote|screener)\.finance|tw\.gamedb\.games|(?:es|fr|uk)\.games|investor|[\w-]+\.c\.yom\.mail|tw\.music|hk\.promotion|(?:lib|order)\.store|s\.wc)\.yahoo\.net/ + to + https://$1.yahoo.net/ + + + from + ^http://tw\.(house|marketing)\.campaign\.yahoo\.net/+ + to + https://$1.tw.campaign.yahoo.net/ + + + from + ^http://developer\.yahoo\.net/[^?]* + to + https://developer.yahoo.com/ + + + from + ^http://uk\.slot\.games\.yahoo\.net/ + to + https://yahoogames.minver.com/ + + + from + ^http://uk\.health\.lifestyle\.yahoo\.net/images/ + to + https://s.yimg.com/lq/lib/lsl/i/uk/ + + + from + ^http://rp1\.monday\.vip\.tw1\.yahoo\.net/ + to + https://tw.m.yimg.com/ + + + securecookie + + + host + ^hk\.promotion\.yahoo\.net$ + name + ^YLBID$ + + + host + (?:(?:fashion|promo)\.tw\.campaign|tw\.discount|.+-c\.c\.yom\.mail|hk\.promotion)\.yahoo\.net$ + name + .+ + + + target + + host + *.yahoo.net + + + + Yakala.co + + ruleset + + name + Yakala.co + platform + mixedcontent + rule + + from + ^http://(www\.)?yakala\.co/ + to + https://www.yakala.co/ + + securecookie + + host + ^(.*\.)?yakala\.co$ + name + .* + + target + + + host + www.yakala.co + + + host + yakala.co + + + + + Yale University (partial) + + ruleset + + name + Yale University (partial) + rule + + from + ^http://(affiliate|fa|inside|seatgen|secure|share|students)\.law\.yale\.edu/ + to + https://$1.law.yale.edu/ + + securecookie + + host + ^seatgen\.law\.yale\.edu$ + name + .+ + + target + + host + *.law.yale.edu + + + + Yaler.net (partial) + + ruleset + + name + Yaler.net (partial) + rule + + from + ^http://(www\.)?yaler\.net/ + to + https://$1yaler.net/ + + target + + + host + yaler.net + + + host + www.yaler.net + + + + + Yamgo.com + + ruleset + + name + Yamgo.com + rule + + from + ^http://(www\.)?yamgo\.com/ + to + https://$1yamgo.com/ + + securecookie + + host + ^yamgo\.com$ + name + .+ + + target + + + host + yamgo.com + + + host + www.yamgo.com + + + + + Yamli API + + ruleset + + name + Yamli API + rule + + from + ^http://api\.yamli\.com/ + to + https://api.yamli.com/ + + target + + host + api.yamli.com + + + + Yammer + + ruleset + + name + Yammer + rule + + + from + ^http://c64\.assets-yammer\.com/ + to + https://c64.assets-yammer.com/ + + + from + ^http://((?:(?:design|developer|eng|sites)(?:\.staging)?|help|whatsnew|www)\.)?yammer\.com/ + to + https://$1yammer.com/ + + + from + ^http://blog\.yammer\.com/(images|blog/wp-content)/ + to + https://secure.bluehost.com/~yammerco/$1/ + + + from + ^http://whatsnew\.staging\.yammer\.com/ + to + https://sites.staging.yammer.com/summer-release-2012/ + + + securecookie + + host + ^.*\.yammer\.com$ + name + .* + + target + + + host + yammer.com + + + host + *.yammer.com + + + host + c64.assets-yammer.com + + + + + Yandex + + ruleset + + exclusion + + + pattern + ^http://(?:bar-widgets|blogs|cards|cs-ellpic|cs-thumb|dict|dzen|encyclopedia|feedback|fotki|images|lingvo|ll|metro|mirror|music|newmoscow|news|openid|pogoda|presocial|rasp|slovari|sprav|static-maps|tv|twitter|wdgt|weather|wordstat|xml)\.yandex\.ru/ + + + pattern + ^http://www\.yandex\.ru/(?!cycounter(?:$|\?)) + + + pattern + ^http://video\.yandex\.ru/iframe/ + + + pattern + ^http://[^.]+\.video\.yandex\.net/ + + + pattern + ^http://streaming\.video\.yandex\.ru/ + + + pattern + ^http://[^.]+\.video\.yandex\.ru/q-upload/ + + + pattern + ^http://(?:www\.)?[^.]+\.ya\.ru/ + + + pattern + ^http://probki\.yandex\.ru/ + + + pattern + ^http://(?:blogs|fotki|images|music|probki|video|wdgt|www)\.ya\.ru + + + pattern + ^http://narod\d*\.yandex\.ru/ + + + pattern + ^http://suggest\.yandex\.ru/ + + + pattern + ^http://suggest-[a-z]+\.yandex\.(?:net|ru)/ + + + pattern + ^http://content\.webmaster\.yandex\.ru/ + + + pattern + ^http://(?:m|mobile)\.yandex\.ru/ + + + pattern + ^http://internet\.yandex\.ru/ + + + pattern + ^http://(?:clck|copy|hghltd|print|market-click\d+|wrz)\.yandex\.ru/ + + + pattern + ^http://mdata\.yandex\.(?:ru|net)/ + + + pattern + ^http://(?:jgo|vec\d+|stv\d+)\.maps\.yandex\.(?:net|ru)/ + + + pattern + ^http://[^.]+-tub(?:-[^.]+)?\.yandex\.(?:net|ru)/ + + + pattern + ^http://panoramas\.api-maps\.yandex\.ru + + + pattern + ^http://(?:advertising|afisha|api|browser|business|collection|fx|help|kapersky|keyboard|large|market|nahodki|navigator|online|opera|punto|site|skype|time|yaca|zakladki)\.yandex\.ru/ + + + pattern + ^http://(?:ie|soft|widgets)\.yandex\.ru/ + + + pattern + ^http://tune\.yandex\.ru/ + + + name + Yandex + rule + + + from + ^http://www\.yandex\.ru/cycounter(?=$|\?) + to + https://yandex.ru/cycounter + + + from + ^http://(?:www\.)?([^.]+)\.yandex\.(net|ru|st)/ + to + https://$1.yandex.$2/ + + + from + ^http://(?:www\.)?yandex\.(net|st)/ + to + https://yandex.$1/ + + + from + ^http://yandex\.ru/ + to + https://yandex.ru/ + + + from + ^http://([^.]+)\.([^.]+)\.yandex\.(net|ru)/ + to + https://$1.$2.yandex.$3/ + + + from + ^http://(?:www\.)?([^.]+)\.ya\.ru/ + to + https://$1.ya.ru/ + + + from + ^http://(?:www\.)?moikrug\.ru/ + to + https://moikrug.ru/ + + + from + ^http://awaps\.yandex\.(com\.au|by|kz|ua)/ + to + https://awaps.yandex.$1/ + + + downgrade + 1 + from + ^https://(cs-ellpic|mdata)\.yandex\.net/ + to + http://$1.yandex.net/ + + + downgrade + 1 + from + ^https://static-maps\.yandex\.ru/ + to + http://static-maps.yandex.ru/ + + + securecookie + + host + (?:mc|\.video)\.yandex\.ru$ + name + .* + + target + + + host + moikrug.ru + + + host + *.moikrug.ru + + + host + ya.ru + + + host + *.ya.ru + + + host + awaps.yandex.* + + + host + yandex.net + + + host + *.yandex.net + + + host + yandex.ru + + + host + *.yandex.ru + + + + + Yannick.net + + ruleset + + name + Yannick.net + rule + + from + ^http://(www\.)?yannick\.net/ + to + https://$1yannick.net/ + + securecookie + + host + ^\.yannick\.net$ + name + .+ + + target + + + host + yannick.net + + + host + *.yannick.net + + + + + Yawoot (partial) + + ruleset + + name + Yawoot (partial) + platform + mixedcontent + rule + + from + ^http://(img|t)\.yawoot\.com/ + to + https://$1.yawoot.com/ + + target + + + host + img.yawoot.com + + + host + t.yawoot.com + + + + + Yaziba webmail + + ruleset + + name + Yaziba webmail + rule + + from + ^http://mail\.yaziba\.net/ + to + https://mail.yaziba.net/ + + target + + host + mail.yaziba.net + + + + Yellow Pages IMA (partial) + + ruleset + + name + Yellow Pages IMA (partial) + rule + + + from + ^http://(?:www\.)?(?:localsearch|yp)association\.org/ + to + https://localsearchassociation.org/ + + + from + ^http://(?:www\.)?yellowpagesoptout\.com/ + to + https://www.yellowpagesoptout.com/ + + + securecookie + + + host + ^(.*\.)?localsearchassociation\.org$ + name + .* + + + host + ^(.*\.)?yellowpagesoptout\.com$ + name + .* + + + target + + + host + localsearchassociation.org + + + host + *.localsearchassociation.org + + + host + yellowpagesoptout.com + + + host + *.yellowpagesoptout.com + + + host + ypassociation.org + + + host + www.ypassociation.org + + + + + YellowBot.com (partial) + + ruleset + + name + YellowBot.com (partial) + rule + + from + ^http://(login\.|www\.)?yellowbot\.com/ + to + https://$1yellowbot.com/ + + securecookie + + host + ^login\.yellowbot\.com$ + name + .+ + + target + + + host + yellowbot.com + + + host + *.yellowbot.com + + + + + YellowPages.ca (partial) + + ruleset + + name + YellowPages.ca (partial) + rule + + from + ^http://secure\.yellowpages\.ca/ + to + https://secure.yellowpages.ca/ + + securecookie + + + host + ^\.yellowpages\.ca$ + name + ^psid_ypca$ + + + host + ^secure\.yellowpages\.ca$ + name + .+ + + + target + + host + secure.yellowpages.ca + + + + Yelp (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?yelp\.com/(?!(?:forgot|login|signup)(?:$|\?|/)) + + name + Yelp (partial) + rule + + + from + ^http://(www\.)?(biz\.)?yelp\.com/ + to + https://$1$2yelp.com/ + + + from + ^http://s3-media(\d)\.ak\.yelpcdn\.com/ + to + https://s3-media$1.ak.yelpcdn.com/ + + + securecookie + + host + ^\.biz\.yelp\.com$ + name + .+ + + target + + + host + yelp.com + + + host + *.yelp.com + + + host + *.ak.yelpcdn.com + + + + + Yemeksepeti + + ruleset + + name + Yemeksepeti + rule + + + from + ^http://images\.yemeksepetim\.com/ + to + https://images.yemeksepeti.com/ + + + from + ^http://yemeksepeti\.com/ + to + https://www.yemeksepeti.com/ + + + from + ^http://([^/:@]*)\.yemeksepeti\.com/ + to + https://$1.yemeksepeti.com/ + + + securecookie + + host + ^(.*\.)?yemeksepeti\.com$ + name + .* + + target + + + host + yemeksepeti.com + + + host + images.yemeksepetim.com + + + host + *.yemeksepeti.com + + + + + Yeshiva University + + ruleset + + name + Yeshiva University + rule + + from + ^http://(?:www\.)?yu\.edu/ + to + https://yu.edu/ + + target + + + host + www.yu.edu + + + host + yu.edu + + + + + Ygnition (partial) + + ruleset + + name + Ygnition (partial) + rule + + from + ^http://(www\.)?ygnition\.com/ + to + https://$1ygnition.com/ + + securecookie + + host + ^(.*\.)?ygnition\.com$ + name + .* + + target + + + host + ygnition.com + + + host + *.ygnition.com + + + + + Yho.com + + ruleset + + name + Yho.com + rule + + from + ^http://yho\.com/ + to + https://yho.com/ + + securecookie + + host + ^yho\.com$ + name + .+ + + target + + host + yho.com + + + + YieldBot (partial) + + ruleset + + name + YieldBot (partial) + rule + + + from + ^http://cdn\.yb0t\.com/ + to + https://dqckmuwjiytix.cloudfront.net/ + + + from + ^http://i\.yldbt\.com/ + to + https://i.yldbt.com/ + + + target + + + host + cdn.yb0t.com + + + host + i.yldbt.com + + + + + Yieldlab.net + + ruleset + + name + Yieldlab.net + rule + + from + ^http://(ad|probe)\.yieldlab\.net/ + to + https://$1.yieldlab.net/ + + securecookie + + host + ^\.yieldlab\.net$ + name + ^id$ + + target + + host + *.yieldlab.net + + + + Yimg.com (partial) + + ruleset + + name + Yimg.com (partial) + rule + + + from + ^http://ads\.yimg\.com/ + to + https://s.yimg.com/ + + + from + ^http://(?:d\d?|(?:a\.)?l\d?|us\.(?:a2|i1|js2?))\.yimg\.com/(?:a|d|us(?:\.js)?\.yimg\.com)/ + to + https://s.yimg.com/lq/ + + + from + ^http://(?:d\d?|au\.i1|(?:a\.)?l\d?|mail)\.yimg\.com/(ao|bm|ck|cv|dh|ea|ep|f|fv|fz|iu|jc|kj|kx|lo|mi|mq|na|nt|ok|pj|pp|pu|qa|qj|qk|qo|rb|rf|rq|rx|rz|sr|ss|tu|ugcwidgets|zz|aunz\.yimg\.com)/ + to + https://s.yimg.com/$1/ + + + from + ^http://(?:d\d?|(?:a\.)?l\d?|us\.(?:a1|js1?)|mail|xa)\.yimg\.com/(bb|bt|dg|(?:eur|us)\.yimg\.com|fg|fp|[ghijqt]|gh|ho|j[ghn]|kq|lh|lm|ml|nn|nq|os|pb|pv|qb|qw|qx|qz|r[luw]|sc|ts)/ + to + https://s.yimg.com/zz/$1/ + + + from + ^http://(tw\.bid|tw\.buy|ci-[\da-f]{10}-\d{8}\.http\.atlas\.cdn|ec|ext|tw\.m|s(?:1|2|3|ec|p)?|tw|qos\.video)\.yimg\.com/ + to + https://$1.yimg.com/ + + + from + ^http://s?(ep|xh|xp)\.yimg\.com/ + to + https://s$1.yimg.com/ + + + from + ^http://movienewsletters\.o\.yimg\.com/ + to + https://www.movienewsletters.net/ + + + from + ^https://s\.yimg\.com/common/img/ + to + https://s.yimg.com/kj/ydn/common/img/ + + + securecookie + + host + ^\.s\.yimg\.com$ + name + .+ + + target + + host + *.yimg.com + + + + Ylilauta + + ruleset + + name + Ylilauta + rule + + + from + ^http://(www\.)?ylilauta\.org/ + to + https://ylilauta.org/ + + + from + ^http://boards\.ylilauta\.org/ + to + https://boards.ylilauta.org/ + + + from + ^http://static\.ylilauta\.org/ + to + https://static.ylilauta.org/ + + + target + + + host + www.ylilauta.org + + + host + ylilauta.org + + + host + boards.ylilauta.org + + + host + static.ylilauta.org + + + + + Yocto Project.org (partial) + + ruleset + + name + Yocto Project.org (partial) + rule + + from + ^http://((?:bugzilla|eula-downloads|git|lists|wiki|www)\.)?yoctoproject\.org/ + to + https://$1yoctoproject.org/ + + securecookie + + host + ^(?:.*\.)?yoctoproject\.org$ + name + .+ + + target + + + host + yoctoproject.org + + + host + *.yoctoproject.org + + + + + Yoox.biz + + ruleset + + name + Yoox.biz + rule + + + from + ^http://cdn\.yoox\.biz/ + to + https://a248.e.akamai.net/f/1250/9104/5f/cdn.yoox.biz/ + + + from + ^http://cdn2\.yoox\.biz/ + to + https://a248.e.akamai.net/f/1129/7497/10f/cdn2.yoox.biz/ + + + from + ^http://media\.yoox\.biz/ + to + https://media.yoox.biz/ + + + target + + host + *.yoox.biz + + + + Yopto.com (partial) + + ruleset + + name + Yopto.com (partial) + rule + + + from + ^http://(api\.|(?:static)?w(?:idget|ww)\.)?yopto\.com/ + to + https://$1yopto.com/ + + + from + ^http://support\.yopto\.com/(?=favicon\.ico|generated/|system/|widgets/) + to + https://yotposupport.zendesk.com/ + + + securecookie + + host + ^(?:api|www)\.yopto\.com$ + name + .+ + + target + + + host + yopto.com + + + host + *.yopto.com + + + + + York College of New York + + ruleset + + name + York College of New York + rule + + from + ^http://(?:www\.)?york\.cuny\.edu/ + to + https://york.cuny.edu/ + + target + + + host + www.york.cuny.edu + + + host + york.cuny.edu + + + + + York Fitness + + ruleset + + name + York Fitness + rule + + from + ^http://(www\.)?yorkfitness\.com/ + to + https://$1yorkfitness.com/ + + securecookie + + host + ^www\.yorkfitness\.com$ + name + .+ + + target + + + host + yorkfitness.com + + + host + www.yorkfitness.com + + + + + Yospace.com (partial) + + ruleset + + name + Yospace.com (partial) + rule + + from + ^http://cds1\.yospace\.com/ + to + https://cds1.yospace.com/ + + securecookie + + host + ^cds1\.yospace\.com$ + name + .+ + + target + + host + cds1.yospace.com + + + + Yotsuba Archiver (partial) + + ruleset + + name + Yotsuba Archiver (partial) + rule + + from + ^http://archive\.installgentoo\.net/ + to + https://archive.installgentoo.net/ + + target + + host + archive.installgentoo.net + + + + Yottaa (partial) + + ruleset + + name + Yottaa (partial) + rule + + from + ^http://ap(i|ps)(-dev|-dev-new)?\.yottaa\.com/ + to + https://ap$1$2.yottaa.com/ + + securecookie + + host + ^apps(?:-dev|-dev-new)?\.yottaa\.com$ + name + .+ + + target + + host + *.yottaa.com + + + + Yottaa.net (partial) + + ruleset + + name + Yottaa.net (partial) + rule + + from + ^http://cdn-(eu|[\da-f]{12})\.yottaa\.net/ + to + https://cdn-$1.yottaa.net/ + + target + + host + *.yottaa.net + + + + You Got Posted + + ruleset + + name + You Got Posted + rule + + from + ^https?://(www\.)?(?:yo)?ugotposted\.com/ + to + https://$1ugotposted.com/ + + securecookie + + host + ^(?:w*\.)?ugotposted\.com$ + name + .+ + + target + + + host + ugotposted.com + + + host + *.ugotposted.com + + + host + yougotposted.com + + + host + www.yougotposted.com + + + + + You Have Downloaded + + ruleset + + name + You Have Downloaded + rule + + from + ^http://(www\.)?youhavedownloaded\.com/ + to + https://$1youhavedownloaded.com/ + + target + + + host + youhavedownloaded.com + + + host + www.youhavedownloaded.com + + + + + YouSendIt + + ruleset + + name + YouSendIt + rule + + + from + ^https?://(?:www\.)?yousendit\.com/ + to + https://www.yousendit.com/ + + + from + ^http://a15\.ysicdo002\.com/ + to + https://a15.ysicdo002.com/ + + + securecookie + + host + ^(?:www)?\.yousendit\.com$ + name + .+ + + target + + + host + yousendit.com + + + host + www.yousendit.com + + + host + a15.ysicdo002.com + + + + + YouTorrent (partial) + + ruleset + + name + YouTorrent (partial) + rule + + from + ^https?://t\.ytcdn\.net/ + to + https://s3.amazonaws.com/t.ytcdn.net/ + + target + + host + t.ytcdn.net + + + + YouTube + + ruleset + + name + YouTube + rule + + + from + ^http://([^/@:]+\.)?youtube\.com/ + to + https://$1youtube.com/ + + + from + ^http://([^/@:]+)\.ytimg\.com/ + to + https://$1.ytimg.com/ + + + from + ^http://([^/@:]+)\.googlevideo\.com/ + to + https://$1.googlevideo.com/ + + + from + ^http://(www\.)?youtube\.((?:com?\.)?\w\w)/ + to + https://$1youtube.$2/ + + + from + ^http://youtu\.be/ + to + https://youtu.be/ + + + from + ^http://(www\.)?youtube-nocookie\.com/ + to + https://$1youtube-nocookie.com/ + + + securecookie + + host + ^\.youtube\.com + name + .* + + target + + + host + youtube.com + + + host + *.youtube.com + + + host + *.ytimg.com + + + host + *.googlevideo.com + + + host + youtube.ae + + + host + www.youtube.ae + + + host + youtube.co.ae + + + host + www.youtube.co.ae + + + host + youtube.com.ar + + + host + www.youtube.com.ar + + + host + youtube.at + + + host + www.youtube.at + + + host + youtube.co.at + + + host + www.youtube.co.at + + + host + youtube.com.au + + + host + www.youtube.com.au + + + host + youtube.ba + + + host + www.youtube.ba + + + host + youtube.be + + + host + www.youtube.be + + + host + youtube.bg + + + host + www.youtube.bg + + + host + youtube.bh + + + host + www.youtube.bh + + + host + youtube.com.bh + + + host + www.youtube.com.bh + + + host + youtube.com.br + + + host + www.youtube.com.br + + + host + youtube.ca + + + host + www.youtube.ca + + + host + youtube.ch + + + host + www.youtube.ch + + + host + youtube.cl + + + host + www.youtube.cl + + + host + youtube.co + + + host + www.youtube.co + + + host + youtube.com.co + + + host + www.youtube.com.co + + + host + youtube.cz + + + host + www.youtube.cz + + + host + youtube.de + + + host + www.youtube.de + + + host + youtube.dk + + + host + www.youtube.dk + + + host + youtube.dz + + + host + www.youtube.dz + + + host + youtube.ee + + + host + www.youtube.ee + + + host + youtube.com.ee + + + host + www.youtube.com.ee + + + host + youtube.com.eg + + + host + www.youtube.com.eg + + + host + youtube.es + + + host + www.youtube.es + + + host + youtube.com.es + + + host + www.youtube.com.es + + + host + youtube.fi + + + host + www.youtube.fi + + + host + youtube.fr + + + host + www.youtube.fr + + + host + youtube.com.gh + + + host + www.youtube.com.gh + + + host + youtube.gr + + + host + www.youtube.gr + + + host + youtube.com.gr + + + host + www.youtube.com.gr + + + host + youtube.hk + + + host + www.youtube.hk + + + host + youtube.com.hk + + + host + www.youtube.com.hk + + + host + youtube.hr + + + host + www.youtube.hr + + + host + youtube.com.hr + + + host + www.youtube.com.hr + + + host + youtube.hu + + + host + www.youtube.hu + + + host + youtube.co.hu + + + host + www.youtube.co.hu + + + host + youtube.co.id + + + host + www.youtube.co.id + + + host + youtube.ie + + + host + www.youtube.ie + + + host + youtube.co.il + + + host + www.youtube.co.il + + + host + youtube.in + + + host + www.youtube.in + + + host + youtube.co.in + + + host + www.youtube.co.in + + + host + youtube.it + + + host + www.youtube.it + + + host + youtube.jo + + + host + www.youtube.jo + + + host + youtube.com.jo + + + host + www.youtube.com.jo + + + host + youtube.co.ke + + + host + www.youtube.co.ke + + + host + youtube.kr + + + host + www.youtube.kr + + + host + youtube.co.kr + + + host + www.youtube.co.kr + + + host + youtube.com.kw + + + host + www.youtube.com.kw + + + host + youtube.com.lb + + + host + www.youtube.com.lb + + + host + youtube.lv + + + host + www.youtube.lv + + + host + youtube.com.lv + + + host + www.youtube.com.lv + + + host + youtube.lt + + + host + www.youtube.lt + + + host + youtube.ma + + + host + www.youtube.ma + + + host + youtube.co.ma + + + host + www.youtube.co.ma + + + host + youtube.me + + + host + www.youtube.me + + + host + youtube.mk + + + host + www.youtube.mk + + + host + youtube.com.mk + + + host + www.youtube.com.mk + + + host + youtube.mx + + + host + www.youtube.mx + + + host + youtube.com.mx + + + host + www.youtube.com.mx + + + host + youtube.my + + + host + www.youtube.my + + + host + youtube.com.my + + + host + www.youtube.com.my + + + host + youtube.ng + + + host + www.youtube.ng + + + host + youtube.com.ng + + + host + www.youtube.com.ng + + + host + youtube.nl + + + host + www.youtube.nl + + + host + youtube.no + + + host + www.youtube.no + + + host + youtube.co.nz + + + host + www.youtube.co.nz + + + host + youtube.com.om + + + host + www.youtube.com.om + + + host + youtube.pe + + + host + www.youtube.pe + + + host + youtube.com.pe + + + host + www.youtube.com.pe + + + host + youtube.ph + + + host + www.youtube.ph + + + host + youtube.com.ph + + + host + www.youtube.com.ph + + + host + youtube.pl + + + host + www.youtube.pl + + + host + youtube.pr + + + host + www.youtube.pr + + + host + youtube.pt + + + host + www.youtube.pt + + + host + youtube.com.pt + + + host + www.youtube.com.pt + + + host + youtube.qa + + + host + www.youtube.qa + + + host + youtube.com.qa + + + host + www.youtube.com.qa + + + host + youtube.ro + + + host + www.youtube.ro + + + host + youtube.com.ro + + + host + www.youtube.com.ro + + + host + youtube.rs + + + host + www.youtube.rs + + + host + youtube.ru + + + host + www.youtube.ru + + + host + youtube.sa + + + host + www.youtube.sa + + + host + youtube.com.sa + + + host + www.youtube.com.sa + + + host + youtube.se + + + host + www.youtube.se + + + host + youtube.sg + + + host + www.youtube.sg + + + host + youtube.com.sg + + + host + www.youtube.com.sg + + + host + youtube.si + + + host + www.youtube.si + + + host + youtube.sk + + + host + www.youtube.sk + + + host + youtube.sn + + + host + www.youtube.sn + + + host + youtube.co.th + + + host + www.youtube.co.th + + + host + youtube.tn + + + host + www.youtube.tn + + + host + youtube.com.tn + + + host + www.youtube.com.tn + + + host + youtube.com.tr + + + host + www.youtube.com.tr + + + host + youtube.com.tw + + + host + www.youtube.com.tw + + + host + youtube.ua + + + host + www.youtube.ua + + + host + youtube.com.ua + + + host + www.youtube.com.ua + + + host + youtube.ug + + + host + www.youtube.ug + + + host + youtube.co.ug + + + host + www.youtube.co.ug + + + host + youtube.co.uk + + + host + www.youtube.co.uk + + + host + youtube.ye + + + host + www.youtube.ye + + + host + youtube.com.ye + + + host + www.youtube.com.ye + + + host + youtube.co.za + + + host + www.youtube.co.za + + + host + youtu.be + + + host + youtube-nocookie.com + + + host + www.youtube-nocookie.com + + + + + YouVersion + + ruleset + + name + YouVersion + rule + + + from + ^http?://(?:www\.)?(bible|yourversion)\.com/ + to + https://www.$1.com/ + + + from + ^http://bibles\.biblesociety\.co\.za/ + to + https://bibles.biblesociety.co.za/ + + + securecookie + + + host + ^(?:www)?\.(?:bible|youversion)\.com$ + name + .+ + + + host + ^\.biblesociety\.co\.za$ + name + ^_youversion-web_session$ + + + target + + + host + bible.com + + + host + *.bible.com + + + host + *.biblesociety.co.za + + + host + youversion.com + + + host + *.youversion.com + + + + + YouVisit.com + + ruleset + + name + YouVisit.com + rule + + from + ^http://(www\.)?youvisit\.com/ + to + https://$1youvisit.com/ + + securecookie + + host + ^(?:www\.)?youvisit\.com$ + name + .+ + + target + + + host + youvisit.com + + + host + www.youvisit.com + + + + + Youm7.com (false MCB) + + ruleset + + exclusion + + pattern + ^http://(?:www1?\.)?youm7\.com/+(?:cdn-cgi/|favicon\.ico|images/|layoutnew\.css|newsbar_files/) + + name + Youm7.com (false MCB) + platform + mixedcontent + rule + + + from + ^http://(img\.|www1?\.)?youm7\.com/ + to + https://$1youm7.com/ + + + from + ^http://(?:the)?cairopost\.youm7\.com/(?!favicon\.ico|wp-content/|wp-includes/) + to + https://thecairopost.youm7.com/ + + + securecookie + + host + ^\.?youm7\.com$ + name + .+ + + target + + + host + youm7.com + + + host + *.youm7.com + + + + + Youm7.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www1?\.)?youm7\.com/+(?!cdn-cgi/|favicon\.ico|images/|layoutnew\.css|newsbar_files/) + + name + Youm7.com (partial) + rule + + + from + ^http://(img\.|www\d?\.)?youm7\.com/ + to + https://$1youm7.com/ + + + from + ^http://(?:the)?cairopost\.youm7\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://thecairopost.youm7.com/ + + + target + + + host + youm7.com + + + host + img1.youm7.com + + + host + cairopost.youm7.com + + + host + thecairopost.youm7.com + + + host + www.youm7.com + + + host + www1.youm7.com + + + host + www2.youm7.com + + + + + Youmix (partial) + + ruleset + + name + Youmix (partial) + rule + + from + ^http://(t\.(album|track)|static)\.youmix\.co\.uk/ + to + https://s3.amazonaws.com/$1.youmix.co.uk/ + + target + + + host + t.album.youmix.co.uk + + + host + static.youmix.co.uk + + + host + t.track.youmix.co.uk + + + + + Young Rewired State.org + + ruleset + + name + Young Rewired State.org + rule + + from + ^http://(www\.)?youngrewiredstate\.org/ + to + https://$1youngrewiredstate.org/ + + securecookie + + host + ^youngrewiredstate\.org$ + name + .+ + + target + + + host + youngrewiredstate.org + + + host + www.youngrewiredstate.org + + + + + Youngstown State University Bookstore + + ruleset + + name + Youngstown State University Bookstore + rule + + from + ^http://(www\.)?ysubookstore\.com/ + to + https://www.ysubookstore.com/ + + target + + + host + ysubookstore.com + + + host + www.ysubookstore.com + + + + + Your Date Link + + ruleset + + name + Your Date Link + rule + + from + ^http://(www\.)?yourdatelink\.com/ + to + https://$1yourdatelink.com/ + + securecookie + + host + ^(?:w*\.)?yourdatelink\.com$ + name + .+ + + target + + + host + yourdatelink.com + + + host + *.yourdatelink.com + + + + + Your Freedom + + ruleset + + name + Your Freedom + rule + + from + ^http://(?:www\.)?your-freedom\.net/ + to + https://www.your-freedom.net/ + + target + + + host + your-freedom.net + + + host + www.your-freedom.net + + + + + Your Local Edge.com + + ruleset + + name + Your Local Edge.com + rule + + from + ^http://(?:www\.)?yourlocaledge\.com/ + to + https://yourlocaledge.com/ + + securecookie + + host + ^\.yourlocaledge\.com$ + name + .+ + + target + + + host + yourlocaledge.com + + + host + *.yourlocaledge.com + + + + + Your Mailing List Provider + + ruleset + + name + Your Mailing List Provider + rule + + + from + ^(https://|http://(www\.)?)ymlp\.com/ + to + https://www.ymlp.com/ + + + from + ^http://chiclet\.ymlp\.com/ + to + https://chiclet.ymlp.com/ + + + from + ^http://(www\.)?yourmailinglistprovider\.com/ + to + https://www.ymlp.com/ + + + securecookie + + host + ^(chiclet|www)\.ymlp\.com$ + name + .+ + + target + + + host + ymlp.com + + + host + chiclet.ymlp.com + + + host + www.ymlp.com + + + host + yourmailinglistprovider.com + + + host + www.yourmailinglistprovider.com + + + + + Your Support Services.co.uk + + ruleset + + name + Your Support Services.co.uk + rule + + from + ^http://(?:www\.)?yoursupportservices\.co\.uk/ + to + https://www.yoursupportservices.co.uk/ + + target + + + host + yoursupportservices.co.uk + + + host + www.yoursupportservices.co.uk + + + + + Your-File-System.com + + ruleset + + name + Your-File-System.com + rule + + from + ^http://(www\.)?your-file-system\.com/ + to + https://$1your-file-system.com/ + + securecookie + + host + ^(?:www\.)?your-file-system\.com$ + name + .+ + + target + + + host + your-file-system.com + + + host + www.your-file-system.com + + + + + YourBittorrent + + ruleset + + name + YourBittorrent + rule + + + from + ^http://(www\.)?yourbittorrent\.com/ + to + https://$1yourbittorrent.com/ + + + from + ^https?://i\.yourbittorrent\.com/ + to + https://yourbittorrent.com/images/ + + + securecookie + + host + ^\.yourbittorrent\.com$ + name + .+ + + target + + + host + yourbittorrent.com + + + host + *.yourbittorrent.com + + + + + YourMembership.com + + ruleset + + exclusion + + pattern + ^http://www\.yourmembership\.com/+resource-library/+blog/ + + name + YourMembership.com + rule + + from + ^http://(www\.)?yourmembership\.com/ + to + https://$1yourmembership.com/ + + target + + + host + yourmembership.com + + + host + www.yourmembership.com + + + + + Yourhosting + + ruleset + + name + Yourhosting + rule + + + from + ^https?://webmail\.server1\.firstfind\.nl/(?:.*) + to + https://webmail.yourhosting.nl/ + + + from + ^http://(webmail\.|www\.)?yourhosting\.nl/ + to + https://$1yourhosting.nl/ + + + securecookie + + host + ^.*\.yourhosting\.nl$ + name + .* + + target + + + host + webmail.server1.firstfind.nl + + + host + yourhosting.nl + + + host + *.yourhosting.nl + + + + + Yourvideofile.org + + ruleset + + name + Yourvideofile.org + rule + + from + ^http://(www\.)?yourvideofile\.org/ + to + https://www.yourvideofile.org/ + + target + + + host + yourvideofile.org + + + host + www.yourvideofile.org + + + + + Yts.re + + ruleset + + name + Yts.re + rule + + from + ^http://(www\.)?yts\.re/ + to + https://yts.re/ + + target + + + host + yts.re + + + host + www.yts.re + + + + + Yubico + + ruleset + + name + Yubico + platform + mixedcontent + rule + + + from + ^http://yubico\.com/ + to + https://yubico.com/ + + + from + ^http://(www|store|openid|api|upload)\.yubico\.com/ + to + https://$1.yubico.com/ + + + from + ^http://static\.yubico\.com/ + to + https://www.yubico.com/static/ + + + securecookie + + host + ^(?:.+\.)?yubico\.com$ + name + .* + + target + + + host + yubico.com + + + host + www.yubico.com + + + host + store.yubico.com + + + host + openid.yubico.com + + + host + api.yubico.com + + + host + upload.yubico.com + + + + + Yuku (partial) + + ruleset + + name + Yuku (partial) + rule + + from + ^http://(images|static)\.yuku\.com/ + to + https://s3.amazonaws.com/$1.yuku.com/ + + target + + host + *.yuku.com + + + + Yuri.org.uk + + ruleset + + name + Yuri.org.uk + rule + + from + ^http://www\.yuri\.org\.uk/ + to + https://www.yuri.org.uk/ + + target + + host + www.yuri.org.uk + + + + Z Natural Foods.com + + ruleset + + name + Z Natural Foods.com + rule + + from + ^http://(www\.)?znaturalfoods\.com/ + to + https://$1znaturalfoods.com/ + + securecookie + + host + ^\.znaturalfoods\.com$ + name + .+ + + target + + + host + znaturalfoods.com + + + host + *.znaturalfoods.com + + + + + ZB45.nl + + ruleset + + name + ZB45.nl + rule + + from + ^http://(www\.)?zb45\.nl/ + to + https://$1zb45.nl/ + + target + + + host + zb45.nl + + + host + www.zb45.nl + + + + + ZComm.org + + ruleset + + name + ZComm.org + rule + + from + ^http://(www\.)?zcomm\.org/ + to + https://$1zcomm.org/ + + securecookie + + host + ^(?:\.|www\.)?zcomm\.org$ + name + .+ + + target + + + host + zcomm.org + + + host + *.zcomm.org + + + + + ZDNet (partial) + + ruleset + + name + ZDNet (partial) + rule + + + from + ^http://(?:www\.)?zdnet\.com\.au/secure-au\.imrworldwide\.com/ + to + https://secure-au.imrworldwide.com/ + + + from + ^http://om\.zdnet\.com\.au/ + to + https://zdau-zdnetbeta.122.2o7.net/ + + + target + + + host + zdnet.com.au + + + host + *.zdnet.com.au + + + + + ZDTronic + + ruleset + + name + ZDTronic + rule + + from + ^http://(www\.)?zdtronic\.com/ + to + https://$1zdtronic.com/ + + securecookie + + host + ^.+\.zdtronic\.com$ + name + .+ + + target + + + host + zdtronic.com + + + host + www.zdtronic.com + + + host + *.www.zdtronic.com + + + + + ZDmcirc.com + + ruleset + + name + ZDmcirc.com + rule + + from + ^http://(www\.)?zdmcirc\.com/ + to + https://$1zdmcirc.com/ + + target + + + host + zdmcirc.com + + + host + www.zdmcirc.com + + + + + ZMap.io + + ruleset + + name + ZMap.io + rule + + from + ^http://(www\.)?zmap\.io/ + to + https://$1zmap.io/ + + target + + + host + zmap.io + + + host + www.zmap.io + + + + + ZONZA + + ruleset + + name + ZONZA + rule + + from + ^http://([^/:@]+\.)?zonza\.tv/ + to + https://$1zonza.tv/ + + securecookie + + host + ^w*\.zonza\.tv$ + name + .+ + + target + + + host + zonza.tv + + + host + *.zonza.tv + + + + + ZOUM + + ruleset + + name + ZOUM + rule + + from + ^http://(www\.)?zoum\.ca/ + to + https://$1zoum.ca/ + + securecookie + + host + ^(?:www\.)?zoum\.ca$ + name + .+ + + target + + + host + zoum.ca + + + host + www.zoum.ca + + + + + ZPChips.com + + ruleset + + name + ZPChips.com + rule + + from + ^http://(www\.)?zpchips\.com/ + to + https://$1zpchips.com/ + + securecookie + + host + ^\.zpchips\.com$ + name + .+ + + target + + + host + zpchips.com + + + host + *.zpchips.com + + + + + ZTunnel + + ruleset + + name + ZTunnel + rule + + from + ^http://(www\.)?ztunnel\.com/ + to + https://$1ztunnel.com/ + + securecookie + + host + ^(w*\.)?ztunnel\.com$ + name + .* + + target + + + host + ztunnel.com + + + host + *.ztunnel.com + + + + + ZUNO_BANK_AG + + ruleset + + name + ZUNO_BANK_AG + rule + + + from + ^http://(www\.)?zuno\.eu/ + to + https://www.zuno.eu/ + + + from + ^http://(www\.)?zuno\.cz/ + to + https://www.zuno.cz/ + + + from + ^http://(www\.)?zuno\.sk/ + to + https://www.zuno.sk/ + + + from + ^http://moje\.zuno\.cz/ + to + https://moje.zuno.cz/ + + + from + ^http://moje\.zuno\.sk/ + to + https://moje.zuno.sk/ + + + target + + + host + zuno.eu + + + host + www.zuno.eu + + + host + zuno.cz + + + host + www.zuno.cz + + + host + zuno.sk + + + host + www.zuno.sk + + + host + moje.zuno.sk + + + host + moje.zuno.cz + + + + + ZXIDP.org + + ruleset + + name + ZXIDP.org + rule + + from + ^http://(?:www\.)?zxidp\.org/ + to + https://zxidp.org/ + + target + + + host + zxidp.org + + + host + www.zxidp.org + + + + + Zabbix (partial) + + ruleset + + name + Zabbix (partial) + rule + + from + ^http://support\.zabbix\.com/ + to + https://support.zabbix.com/ + + securecookie + + host + ^support\.zabbix\.com$ + name + .* + + target + + host + support.zabbix.com + + + + Zacks Investment Research (partial) + + ruleset + + name + Zacks Investment Research (partial) + rule + + + from + ^http://(?:www\.)?zacks\.com/(css/|(?:[\w-]+/)?images/|registration) + to + https://www.zacks.com/$1 + + + from + ^http://(smetrics|1\.widget3|woas)\.zacks\.com/ + to + https://$1.zacks.com/ + + + from + ^http://cloud\.staticzacks\.net/ + to + https://b7d61a7c6b8c307bf531-a92a66b9587e2a0aa805bd4e70b98407.ssl.cf2.rackcdn.com/ + + + securecookie + + host + ^\.zacks\.com$ + name + ^s_vi$ + + target + + + host + zacks.com + + + host + *.zacks.com + + + host + cloud.staticzacks.net + + + + + Zadara Storage (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?zadarastorage\.com/(?!favicon\.ico|static/) + + name + Zadara Storage (partial) + rule + + + from + ^http://(?:www\.)?zadarastorage\.com/ + to + https://zadara-web.herokuapp.com/ + + + from + ^http://manage\.zadarastorage\.com/ + to + https://manage.zadarastorage.com/ + + + from + ^http://support\.zadarastorage\.com/(generated|system)/ + to + https://assets.zendesk.com/$1/ + + + securecookie + + host + ^manage\.zadarastorage\.com$ + name + .+ + + target + + + host + zadarastorage.com + + + host + *.zadarastorage.com + + + + + Zakir D.com + + ruleset + + name + Zakir D.com + rule + + from + ^http://(www\.)?zakird\.com/ + to + https://$1zakird.com/ + + target + + + host + zakird.com + + + host + www.zakird.com + + + + + Zamzar.com (partial) + + ruleset + + name + Zamzar.com (partial) + rule + + + from + ^http://(?:www\.)?zamzar\.com/(?!/*$|/*\?) + to + https://www.zamzar.com/ + + + from + ^http://secure\.zamzar\.com/ + to + https://secure.zamzar.com/ + + + securecookie + + host + ^secure\.zamzar\.com$ + name + .+ + + target + + + host + zamzar.com + + + host + *.zamzar.com + + + + + Zanesville Times Recorder + + ruleset + + name + Zanesville Times Recorder + rule + + + from + ^http://(?:cmsimg\.|www\.)?zanesvilletimesrecorder\.com/ + to + https://www.zanesvilletimesrecorder.com/ + + + from + ^http://findnsave\.zanesvilletimesrecorder\.com/static/ + to + https://zanesville.findnsave.com/static/ + + + securecookie + + host + ^(?:www)?\.zanesvilletimesrecorder\.com$ + name + .+ + + target + + + host + zanesvilletimesrecorder.com + + + host + *.zanesvilletimesrecorder.com + + + + + Zanox (partial) + + ruleset + + name + Zanox (partial) + rule + + + from + ^http://(?:www\.)?zanox\.com/ + to + https://www.zanox.com/ + + + from + ^http://(ad|ui)\.zanox\.com/ + to + https://$1.zanox.com/ + + + securecookie + + host + ^(?:ad|www)\.zanox\.com$ + name + .+ + + target + + + host + zanox.com + + + host + *.zanox.com + + + + + Zap2it (partial) + + ruleset + + name + Zap2it (partial) + rule + + from + ^http://login\.zap2it\.com/ + to + https://login.zap2it.com/ + + securecookie + + host + ^login\.zap2it\.com$ + name + .+ + + target + + host + login.zap2it.com + + + + Zapier.com + + ruleset + + name + Zapier.com + rule + + from + ^http://(www\.)?zapier\.com/ + to + https://$1zapier.com/ + + target + + + host + zapier.com + + + host + www.zapier.com + + + + + Zappos (partial) + + ruleset + + name + Zappos (partial) + rule + + + from + ^https?://(?:www\.)?zappos\.com/(account(?:$|\?|/)|(?:assets|boutiques|css|images|imgs?|styles)/) + to + https://secure-www.zappos.com/$1 + + + from + ^https?://(?:www\.)?zappos\.com/[\w\-]+/imgs/ + to + https://secure-www.zappos.com/imgs/ + + + from + ^http://secure-www\.zappos\.com/ + to + https://secure-www.zappos.com/ + + + from + ^https?://(?:a[123]?|l[34])\.zassets\.com/ + to + https://secure-www.zappos.com/ + + + target + + + host + zappos.com + + + host + *.zappos.com + + + host + *.zassets.com + + + + + Zaption + + ruleset + + name + Zaption + rule + + from + ^http://(www\.)?zaption\.com/ + to + https://$1zaption.com/ + + securecookie + + host + ^(?:www)?\.zaption\.com$ + name + .+ + + target + + + host + zaption.com + + + host + *.zaption.com + + + + + Zareason.com + + ruleset + + name + Zareason.com + rule + + from + ^http://(www\.)?zareason\.com/ + to + https://$1zareason.com/ + + securecookie + + host + ^\.zareason\.com$ + name + .+ + + target + + + host + zareason.com + + + host + *.zareason.com + + + + + Zark Zork.com + + ruleset + + name + Zark Zork.com + rule + + from + ^http://(?:(buhta\.)|www\.)?zarkzork\.com/ + to + https://$1zarkzork.com/ + + target + + + host + zarkzork.com + + + host + *.zarkzork.com + + + + + Zataz (false MCB) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?zataz\.com/(?:css/|favicon\.ico|images/) + + name + Zataz (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?zataz\.com/ + to + https://$1zataz.com/ + + securecookie + + host + ^(?:.*\.)?zataz\.com$ + name + .+ + + target + + + host + zataz.com + + + host + *.zataz.com + + + + + Zataz (partial) + + ruleset + + exclusion + + pattern + ^http://(?:new\.|www\.)?zataz\.com/(?!css/|favicon\.ico|favicon-\d+x\d+\.png|images/|wp-content/|wp-includes/) + + name + Zataz (partial) + rule + + from + ^http://((?:archives|new|www)\.)?zataz\.com/ + to + https://$1zataz.com/ + + target + + + host + zataz.com + + + host + *.zataz.com + + + + + Zazzle (partial) + + ruleset + + exclusion + + pattern + ^http://www\.zazzle\.com/($|[\w\+]+pillows|gift|[\w\+]+macbook\+sleeves|printed\+envelopes) + + name + Zazzle (partial) + rule + + + from + ^http://zazzle\.com/ + to + https://www.zazzle.com/ + + + from + ^http://www\.zazzle\.com/(assets/|(\w+\+)?cases|c[ro]/|create|css/|custom/|keychains|(kitchen|\w+\+holiday)\+gifts|lgn/|macbook\+sleeves|m[ky]/|newcustomgifts|pd/|pillows|rlv/|svc/|zazzleblack|\w+-\d{10,20}) + to + https://www.zazzle.com/$1 + + + from + ^http://asset\.zcache\.com/ + to + https://www.zazzle.com/ + + + from + ^http://rlv\.zcache\.com/ + to + https://www.zazzle.com/rlv/ + + + from + ^http://track\.www\.zazzle\.com/ + to + https://www-zazzle-com.112.2o7.net/ + + + from + ^http://tracks\.www\.zazzle\.com/ + to + https://tracks.www.zazzle.com/ + + + securecookie + + host + ^\.zazzle\.com$ + name + ^s_vi$ + + target + + + host + zazzle.com + + + host + www.zazzle.com + + + host + tracks.www.zazzle.com + + + host + *.zcache.com + + + + + ZeHosting (partial) + + ruleset + + name + ZeHosting (partial) + rule + + from + ^http://secure\.zehosting\.com/ + to + https://secure.zehosting.com/ + + securecookie + + host + ^secure\.zehosting\.com$ + name + .+ + + target + + host + secure.zehosting.com + + + + Zedo (partial) + + ruleset + + name + Zedo (partial) + rule + + + from + ^http://s?axp\.zedo\.com/ + to + https://saxp.zedo.com/ + + + from + ^http://(?:d[1-3]|r1)\.zedo\.com/ + to + https://a248.e.akamai.net/f/355/9953/5m/d1.zedo.com/ + + + from + ^http://c5\.zedo\.com/ + to + https://a248.e.akamai.net/f/426/2931/1h/c5.zedo.com/ + + + from + ^http://c7\.zedo\.com/ + to + https://a248.e.akamai.net/f/1979/2136/7m/c7.zedo.com/ + + + from + ^http://d4\.zedo\.com/ + to + https://a248.e.akamai.net/f/296/2092/8/d4.zedo.com/ + + + from + ^http://d5\.zedo\.com/ + to + https://a248.e.akamai.net/f/724/5364/5m/d5.zedo.com/ + + + from + ^http://d6\.zedo\.com/ + to + https://a248.e.akamai.net/f/535/6454/9m/d6.zedo.com/ + + + from + ^http://d7\.zedo\.com/ + to + https://a248.e.akamai.net/f/124/2263/10/d7.zedo.com/ + + + from + ^http://d8\.zedo\.com/ + to + https://a248.e.akamai.net/f/489/1101/5m/d8.zedo.com/ + + + from + ^http://d9\.zedo\.com/ + to + https://a248.e.akamai.net/f/48/9886/2m/d9.zedo.com/ + + + from + ^http://(ss1|target)\.zedo\.com/ + to + https://$1.zedo.com/ + + + securecookie + + host + ^(?:target)?\.zedo\.com$ + name + .+ + + target + + host + *.zedo.com + + + + Zeit.de (partial) + + ruleset + + name + Zeit.de (partial) + rule + + + from + ^http://(inserieren|premium|shop|ssl)\.zeit\.de/ + to + https://$1.zeit.de/ + + + from + ^http://images\.zeit\.de/ + to + https://ssl.zeit.de/images.zeit.de/ + + + securecookie + + host + ^(?:\.premium|shop)\.zeit\.de$ + name + .+ + + target + + host + *.zeit.de + + + + Zemanta (partial) + + ruleset + + name + Zemanta (partial) + rule + + + from + ^http://img\.zemanta\.com/ + to + https://s3.amazonaws.com/img.zemanta.com/ + + + from + ^http://content\.zemanta\.com/ + to + https://d25rszouhfu52v.cloudfront.net/ + + + from + ^http://i\.zemanta\.com/ + to + https://d1r7mnnsvydqxs.cloudfront.net/ + + + target + + host + *.zemanta.com + + + + Zen Cart (partial) + + ruleset + + name + Zen Cart (partial) + rule + + from + ^http://(www\.)?zen-cart\.com/ + to + https://$1zen-cart.com/ + + securecookie + + host + ^www\.zen-cart\.com$ + name + .+ + + target + + + host + zen-cart.com + + + host + www.zen-cart.com + + + + + Zen Internet (false MCB) + + ruleset + + name + Zen Internet (false MCB) + platform + mixedcontent + rule + + from + ^http://support\.zen\.co\.uk/ + to + https://support.zen.co.uk/ + + securecookie + + host + ^support\.zen\.co\.uk$ + name + .+ + + target + + host + support.zen.co.uk + + + + Zen Internet (partial) + + ruleset + + exclusion + + pattern + ^http://support\.zen\.co\.uk/+(?=kb/+(?!(?:Knowledgebase/)?BotDetectCaptcha\.ashx|Globalization/|js/|Logon/|(?:Script|Web)Resource\.axd|Skins/)|template/) + + name + Zen Internet (partial) + rule + + + from + ^http://(?:www\.)?zen\.co\.uk/ + to + https://www.zen.co.uk/ + + + from + ^http://(blog|forum|livesupport|myaccount|order|portal|status|support|webmail)\.zen\.co\.uk/ + to + https://$1.zen.co.uk/ + + + securecookie + + host + (?!support\.).*\.zen\.co\.uk$ + name + .+ + + target + + + host + zen.co.uk + + + host + *.zen.co.uk + + + + + Zencoder (partial) + + ruleset + + name + Zencoder (partial) + rule + + + from + ^http://(a|vjs)\.zencdn\.net/ + to + https://$1.zencdn.net/ + + + from + ^http://(app\.|www\.)?zencoder\.com/ + to + https://$1zencoder.com/ + + + securecookie + + host + ^(?:app)?\.zencoder\.com$ + name + .+ + + target + + + host + *.zencdn.net + + + host + zencoder.com + + + host + *.zencoder.com + + + + + Zend (partial) + + ruleset + + name + Zend (partial) + rule + + + from + ^http://(?:www\.)?zend\.com/ + to + https://www.zend.com/ + + + from + ^http://(pages|shop)\.zend\.com/ + to + https://$1.zend.com/ + + + from + ^http://static\.zend\.com/shop/ + to + https://shop-zend.pantherssl.com/ + + + from + ^http://static\.zend\.com/ + to + https://static-zend.pantherssl.com/ + + + securecookie + + + host + ^\.zend\.com$ + name + ^__utm\w$ + + + host + ^shop\.zend\.com$ + name + ^(?:\d{8}-SKEY|\d{8}-VID|HumanClickSiteContainerID_\d{8}|lpFPCtest|VIEWED_PRODUCTS)$ + + + target + + + host + zend.com + + + host + *.zend.com + + + + + Zendesk (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:video|developer)\. + + + pattern + ^http://[\w-]+\.zendesk\.com/forums(?:$|\?) + + + name + Zendesk (partial) + platform + mixedcontent + rule + + + from + ^http://p(\d)\.zdassets\.com/ + to + https://p$1.zdassets.com/ + + + from + ^http://cdn\.zendesk\.com/ + to + https://d16cvnquvjw7pr.cloudfront.net/ + + + from + ^http://([\w-]+\.)?zendesk\.com/ + to + https://$1zendesk.com/ + + + target + + + host + *.zdassets.com + + + host + zendesk.com + + + host + *.zendesk.com + + + + + Zendesk.com clients (partial) + + ruleset + + name + Zendesk.com clients (partial) + rule + + from + ^http://support\.photobucket\.com/(assets|external|generated|images|registration|system)/ + to + https://photobucket.zendesk.com/$1/ + + target + + host + support.photobucket.com + + + + Zendition.net + + ruleset + + name + Zendition.net + rule + + from + ^http://(www\.)?zendition\.net/ + to + https://$1zendition.net/ + + securecookie + + host + ^(?:www)?\.zendition\.net$ + name + .+ + + target + + + host + zendition.net + + + host + *.zendition.net + + + + + Zendy Labs + + ruleset + + name + Zendy Labs + rule + + from + ^http://(www\.)?zendylabs\.com/ + to + https://$1zendylabs.com/ + + securecookie + + host + ^(?:w*\.)?zendylabs\.com$ + name + .+ + + target + + + host + zendylabs.com + + + host + *.zendylabs.com + + + + + Zenfolio (partial) + + ruleset + + exclusion + + pattern + ^http://cdn\.zenfolio\.net/crossdomain\.xml + + name + Zenfolio (partial) + rule + + + from + ^http://cdn\.zenfolio\.net/ + to + https://www.zenfolio.com/ + + + from + ^http://(?:www\.)?zenfolio\.com/zf/(css/|img/|login\.aspx) + to + https://secure.zenfolio.com/zf/$1 + + + from + ^http://(?:www\.)?zenfolio\.com/zf/transfer/s/ + to + https://secure.zenfolio.com/zf/ + + + from + ^http://secure\.zenfolio\.com/ + to + https://secure.zenfolio.com/ + + + from + ^http://\w+\.zenfolio\.com/img/ + to + https://secure.zenfolio.com/img/ + + + from + ^http://\w+\.zenfolio\.com/cdn/ + to + https://www.zenfolio.com/cdn/ + + + target + + + host + zenfolio.com + + + host + *.zenfolio.com + + + host + cdn.zenfolio.net + + + + + ZeniMax Media (partial) + + ruleset + + name + ZeniMax Media (partial) + rule + + from + ^https?://static\.zenimax\.com/ + to + https://d1z7bw3wiqzsm4.cloudfront.net/ + + target + + + host + cms.elderscrolls.com + + + host + static.zenimax.com + + + + + Zeno's Forensic Site + + ruleset + + name + Zeno's Forensic Site + rule + + from + ^http://(www\.)?forensic\.to/ + to + https://$1forensic.to/ + + securecookie + + host + ^(?:www\.)?forensic\.to$ + name + .+ + + target + + + host + forensic.to + + + host + www.forensic.to + + + + + Zentyal.org (partial) + + ruleset + + name + Zentyal.org (partial) + rule + + from + ^http://(forum|store|tracker|wiki)\.zentyal\.org/ + to + https://$1.zentyal.org/ + + securecookie + + host + ^(?:forum|\.store|tracker|wiki)\.zentyal\.org$ + name + .+ + + target + + host + *.zentyal.org + + + + Zeringo + + ruleset + + name + Zeringo + rule + + from + ^http://(manage\.|www\.)?zeringo\.com/ + to + https://$1zeringo.com/ + + securecookie + + host + ^\.zeringo\.com$ + name + .+ + + target + + + host + zeringo.com + + + host + *.zeringo.com + + + + + Zerista (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + Zerista (partial) + rule + + from + ^http://(\w+)\.zerista\.com/ + to + https://$1.zerista.com/ + + target + + host + *.zerista.com + + + + Zero Day Initiative.com (partial) + + ruleset + + name + Zero Day Initiative.com (partial) + rule + + from + ^http://(www\.)?zerodayinitiative\.com/(?=css/|favicon\.ico|img/|portal(?:$|[?/])) + to + https://$1zerodayinitiative.com/ + + target + + + host + zerodayinitiative.com + + + host + www.zerodayinitiative.com + + + + + Zero Robotics + + ruleset + + name + Zero Robotics + rule + + from + ^http://(www\.)?zerorobotics\.org/ + to + https://$1zerorobotics.org/ + + securecookie + + host + ^(.*\.)?zerorobotics\.org$ + name + .* + + target + + + host + zerorobotics.org + + + host + *.zerorobotics.org + + + + + ZeroBin.net + + ruleset + + name + ZeroBin.net + rule + + from + ^http://(www\.)?zerobin\.net/ + to + https://$1zerobin.net/ + + target + + + host + zerobin.net + + + host + www.zerobin.net + + + + + ZeroBlock.com + + ruleset + + name + ZeroBlock.com + rule + + from + ^http://(?:www\.)?zeroblock\.com/ + to + https://zeroblock.com/ + + securecookie + + host + ^\.zeroblock\.com$ + name + .+ + + target + + + host + zeroblock.com + + + host + *.zeroblock.com + + + + + ZeroTier.com + + ruleset + + name + ZeroTier.com + rule + + from + ^http://(www\.)?zerotier\.com/ + to + https://$1zerotier.com/ + + target + + + host + zerotier.com + + + host + www.zerotier.com + + + + + ZeroXX + + ruleset + + name + ZeroXX + rule + + from + ^http://(www\.)?zeroxx\.nl/ + to + https://$1zeroxx.nl/ + + securecookie + + host + ^w*\.zeroxx\.nl$ + name + .+ + + target + + + host + zeroxx.nl + + + host + *.zeroxx.nl + + + + + Zerve + + ruleset + + name + Zerve + rule + + + from + ^http://(?:www\.)?zerve\.com/(cookie_check\.php|(?:directory/)?(?:css|img)/|raa/raa3_2\.php) + to + https://www.zerve.com/$1 + + + from + ^http://img-static\.cdn\.zerve\.com/ + to + https://d3ks0ua4wrpv20.cloudfront.net/ + + + target + + + host + zerve.com + + + host + *.zerve.com + + + + + Zerzar + + ruleset + + name + Zerzar + rule + + from + ^http://(www\.)?zerzar\.com/ + to + https://$1zerzar.com/ + + securecookie + + host + ^(?:www)?\.zerzar.com$ + name + .+ + + target + + + host + zerzar.com + + + host + *.zerzar.com + + + + + Zetetic.net + + ruleset + + name + Zetetic.net + rule + + from + ^http://(discuss\.|www\.)?zetetic\.net/ + to + https://$1zetetic.net/ + + securecookie + + host + ^discuss\.zetetic\.net$ + name + .+ + + target + + + host + zetetic.net + + + host + *.zetetic.net + + + + + ZeusClicks.com (partial) + + ruleset + + name + ZeusClicks.com (partial) + rule + + from + ^http://ads2\.zeusclicks\.com/ + to + https://ads2.zeusclicks.com/ + + securecookie + + host + ^ads2\.zeusclicks\.com$ + name + .+ + + target + + host + ads2.zeusclicks.com + + + + Ziedot.lv + + ruleset + + name + Ziedot.lv + rule + + from + ^http://(www\.)?ziedot\.lv/ + to + https://www.ziedot.lv/ + + target + + + host + ziedot.lv + + + host + www.ziedot.lv + + + + + Ziff Davis (partial) + + ruleset + + name + Ziff Davis (partial) + rule + + + from + ^http://static\.adziff\.com/ + to + https://d3dd6h0gw79f7z.cloudfront.net/ + + + from + ^http://metrics\.geek\.com/ + to + https://geek-com.122.2o7.net/ + + + from + ^http://metrics\.pcmag\.com/ + to + https://ziffdavis-com.112.2o7.net/ + + + from + ^http://(cdn\.static\.)?zdbb\.net/ + to + https://$1zdbb.net/ + + + from + ^http://static\.zdbb\.net/ + to + https://d8r7hw7bvlsxi.cloudfront.net/ + + + from + ^http://static\.ziffdavis\.com/ + to + https://static.ziffdavis.com/ + + + securecookie + + host + ^\.zdbb\.net$ + name + .+ + + target + + + host + static.adziff.com + + + host + metrics.geek.com + + + host + metrics.pcmag.com + + + host + zdbb.net + + + host + *.zdbb.net + + + host + static.ziffdavis.com + + + + + Ziggo + + ruleset + + name + Ziggo + rule + + from + ^http://(?:www\.)?ziggo\.(nl|com)/ + to + https://www.ziggo.$1/ + + target + + + host + *.ziggo.nl + + + host + *.ziggo.com + + + + + Zillow (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?zillow\.com/(?!.*\$LoginLink|favicon\.ico|(?:advertising|advice(?:pages|-thread)|agents|app|corp|directory|fhs-loan|foreclosures|for-sale-by-owner|help|home-(?:equity-loan|improvement-dueling-digs)|howto|imaging|learnmore|local-info|make-me-move|mobile|mortgage-(?:calculator|glossary|rates)|post-re(?:al-estate|ntal)-listings|refinance|search|static|visuals|webtools)(?:$|\?|/)) + + name + Zillow (partial) + rule + + + from + ^http://((?:engineering|mortgageapi|rentalapp|www)\.)?zillow\.com/ + to + https://$1zillow.com/ + + + from + ^http://photos\d?\.zillow\.com/ + to + https://photos.zillow.com/ + + + from + ^http://(www\.)?zillowstatic\.com/ + to + https://$1zillowstatic.com/ + + + securecookie + + host + ^engineering\.zillow\.com$ + name + .+ + + target + + + host + zillow.com + + + host + *.zillow.com + + + host + zillowstatic.com + + + host + www.zillowstatic.com + + + + + Zimbra (false MCB) + + ruleset + + name + Zimbra (false MCB) + platform + mixedcontent + rule + + + from + ^http://files2?\.zimbra\.com/ + to + https://s3.amazonaws.com/files.zimbra.com/ + + + from + ^http://([^/:@\.]+\.)?zimbra\.com/ + to + https://$1zimbra.com/ + + + from + ^http://(?:www\.)?zimbrablog\.com/ + to + https://blog.zimbra.com/ + + + securecookie + + host + ^(?:.*\.)?zimbra\.com$ + name + .+ + + target + + + host + zimbra.com + + + host + *.zimbra.com + + + host + zimbrablog.com + + + host + www.zimbrablog.com + + + + + Zing Checkout.com (partial) + + ruleset + + name + Zing Checkout.com (partial) + rule + + from + ^http://app\.zingcheckout\.com/ + to + https://app.zingcheckout.com/ + + target + + host + app.zingcheckout.com + + + + Zipcar + + ruleset + + exclusion + + pattern + http://members\.zipcar\.com/(?!apply|regist) + + name + Zipcar + rule + + + from + ^http://(?:www\.)?zipcar\.com/ + to + https://www.zipcar.com/ + + + from + ^http://(dru-cdn|media|members)\.zipcar\.com/ + to + https://$1.zipcar.com/ + + + securecookie + + + host + ^\.zipcar\.com$ + name + ^ad_\w+$ + + + host + ^www\.zipcar\.com$ + name + .+ + + + target + + + host + zipcar.com + + + host + *.zipcar.com + + + + + Ziplist.com + + ruleset + + name + Ziplist.com + rule + + from + ^http://(?:www\.)?ziplist\.com/ + to + https://www.ziplist.com/ + + target + + + host + ziplist.com + + + host + www.ziplist.com + + + + + Zlatkovic.com + + ruleset + + name + Zlatkovic.com + rule + + from + ^http://(www\.)?zlatkovic\.com/ + to + https://$1zlatkovic.com/ + + target + + + host + zlatkovic.com + + + host + www.zlatkovic.com + + + + + Zlavadna.sk + + ruleset + + name + Zlavadna.sk + rule + + from + ^http://(www\.)?zlavadna\.sk/ + to + https://www.zlavadna.sk/ + + target + + + host + zlavadna.sk + + + host + www.zlavadna.sk + + + + + Zlavy.odpadnes.sk + + ruleset + + name + Zlavy.odpadnes.sk + rule + + from + ^http://(www\.|zlavy\.)?odpadnes\.sk/ + to + https://zlavy.odpadnes.sk/ + + target + + + host + odpadnes.sk + + + host + www.odpadnes.sk + + + host + zlavy.odpadnes.sk + + + + + Zmanda (partial) + + ruleset + + name + Zmanda (partial) + rule + + + from + ^http://mysqlbackup\.zmanda\.com/+(?:\??$|(index\.php(?:$|[?/]))) + to + https://wiki.zmanda.com/$1 + + + from + ^http://((?:forums|mysqlbackup|network|wiki|www)\.)?zmanda\.com/ + to + https://$1zmanda.com/ + + + securecookie + + host + ^(?:(?:forums|mysqlbackup|\.?network|wiki))\.zmanda\.com$ + name + .+ + + target + + + host + zmanda.com + + + host + *.zmanda.com + + + + + Zoho (partial) + + ruleset + + name + Zoho (partial) + rule + + + from + ^http://forums\.webnms\.com/ + to + https://forums.webnms.com/ + + + from + ^http://((?:accounts|assist|(?:customer-|www\.)?blogs|business|chat|(?:(?:api|help|kbase|lounge|www)\.)?creator|crm|crmkbase|discuss|(?:help\.)?discussions|docs|forums|invoice|iplocation|mail|meeting|notebook|personal|planner|projects|recruit|reports|people|search|share|sheet|show2?|support|viewer|(?:\w+\.)?wiki|export\.writer|writer2?|www)\.)?zoho\.com/ + to + https://$1zoho.com/ + + + from + ^http://www\.forums\.zoho\.com/ + to + https://forums.zoho.com/ + + + from + ^http://(www\.)?zoho(blogs|corp)\.com/ + to + https://$1zoho$2.com/ + + + from + ^http://(\w+)\.zohostatic\.com/ + to + https://$1.zohostatic.com/ + + + securecookie + + + host + ^forums\.webnms\.com$ + name + .+ + + + host + ^.*\.zoho\.com$ + name + .+ + + + host + ^(?:www\.)?zohoblogs\.com$ + name + .+ + + + target + + + host + forums.webnms.com + + + host + zoho.com + + + host + *.zoho.com + + + host + zohoblogs.com + + + host + www.zohoblogs.com + + + host + zohocorp.com + + + host + www.zohocorp.com + + + host + *.zohostatic.com + + + + + Zoho.jp (partial) + + ruleset + + name + Zoho.jp (partial) + rule + + + from + ^http://(blogs\.|forums\.)?zoho\.jp/ + to + https://$1zoho.jp/ + + + from + ^http://ssl\.zoho\.co\.jp/ + to + https://ssl.zoho.co.jp/ + + + securecookie + + host + ^forums\.zoho\.jp$ + name + .+ + + target + + + host + zoho.jp + + + host + *.zoho.jp + + + host + ssl.zoho.co.jp + + + + + Zoklet.net + + ruleset + + name + Zoklet.net + rule + + from + ^http://(www\.)?zoklet\.net/ + to + https://www.zoklet.net/ + + securecookie + + host + ^(.*\.)?zoklet\.net$ + name + .* + + target + + + host + www.zoklet.net + + + host + zoklet.net + + + + + Zomato.com + + ruleset + + name + Zomato.com + rule + + from + ^http://(www\.)?zomato\.com/ + to + https://$1zomato.com/ + + securecookie + + host + ^(?:www)?\.zomato\.com$ + name + .+ + + target + + + host + zomato.com + + + host + *.zomato.com + + + + + Zombie Watch + + ruleset + + name + Zombie Watch + rule + + from + ^http://(www\.)?zombeewatch\.org/ + to + https://$1zombeewatch.org/ + + securecookie + + host + ^www\.zombeewatch\.org$ + name + .* + + target + + + host + zombeewatch.org + + + host + www.zombeewatch.org + + + + + Zone-H.org + + ruleset + + name + Zone-H.org + rule + + from + ^http://(www\.)?zone-h\.org/ + to + https://$1zone-h.org/ + + securecookie + + host + ^\.zone-h\.org$ + name + ^__utm\w+$ + + target + + + host + zone-h.org + + + host + *.zone-h.org + + + + + ZoneEdit (partial) + + ruleset + + name + ZoneEdit (partial) + rule + + from + ^http://(www\.)?zoneedit\.com/(css/|img/|js/|signUp\.html) + to + https://$1zoneedit.com/$2 + + target + + + host + zoneedit.com + + + host + www.zoneedit.com + + + + + Zoner.fi + + ruleset + + name + Zoner.fi + rule + + from + ^http://((?:oma|tuki|www)\.)?zoner\.fi/ + to + https://$1zoner.fi/ + + securecookie + + host + ^(?:oma|tuki|www)\.zoner\.fi$ + name + .+ + + target + + + host + zoner.fi + + + host + *.zoner.fi + + + + + Zong (partial) + + ruleset + + name + Zong (partial) + rule + + from + ^http://pay02\.zong\.com/ + to + https://pay02.zong.com/ + + target + + host + pay02.zong.com + + + + Zonomi + + ruleset + + name + Zonomi + rule + + from + ^http://(www\.)?zonomi\.com/ + to + https://zonomi.com/ + + securecookie + + host + ^zonomi.com$ + name + .* + + target + + + host + www.zonomi.com + + + host + zonomi.com + + + + + Zoo24.de + + ruleset + + name + Zoo24.de + platform + firefox + rule + + from + ^http://zoo24\.de/ + to + https://zoo24.de/ + + securecookie + + host + ^zoo24\.de$ + name + .+ + + target + + host + zoo24.de + + + + Zooko.com + + ruleset + + name + Zooko.com + rule + + from + ^http://(www\.)?zooko\.com/ + to + https://$1zooko.com/ + + securecookie + + host + ^zooko\.com$ + name + .+ + + target + + + host + zooko.com + + + host + www.zooko.com + + + + + Zooku + + ruleset + + name + Zooku + rule + + from + ^http://(secure\.|www\.)?zooku\.ro/ + to + https://$1zooku.rp/ + + securecookie + + host + ^(?:.+\.)?zooku\.ro$ + name + .+ + + target + + + host + zooku.ro + + + host + *.zooku.ro + + + + + Zoological Society of London (partial) + + ruleset + + name + Zoological Society of London (partial) + rule + + + from + ^http://(?:www\.)?zsl\.org/ + to + https://www.zsl.org/ + + + from + ^http://static\.zsl\.org/ + to + https://static.zsl.org/ + + + securecookie + + host + ^www\.zsl\.org$ + name + .+ + + target + + + host + zsl.org + + + host + *.zsl.org + + + + + Zoomerang + + ruleset + + name + Zoomerang + rule + + from + ^http://(static\.|www\.)?zoomerang\.com/ + to + https://$1zoomerang.com/ + + securecookie + + host + ^\.zoomerang\.com$ + name + .+ + + target + + + host + zoomerang.com + + + host + *.zoomerang.com + + + + + Zoomshare (partial) + + ruleset + + name + Zoomshare (partial) + rule + + from + ^http://ssl\.zoomshare\.com/ + to + https://ssl.zoomshare.com/ + + target + + host + ssl.zoomshare.com + + + + Zooniverse + + ruleset + + name + Zooniverse + rule + + + from + ^http://(?:www\.)?zooinverse\.org/ + to + https://www.zooniverse.org/ + + + from + ^http://login\.zooniverse\.org/ + to + https://login.zooniverse.org/ + + + securecookie + + host + ^.+\.zooniverse\.org$ + name + .+ + + target + + + host + zooniverse.org + + + host + www.zooniverse.org + + + + + Zoosk.com + + ruleset + + name + Zoosk.com + rule + + from + ^http://(?:www\.)?zoosk\.com/ + to + https://www.zoosk.com/ + + target + + + host + zoosk.com + + + host + www.zoosk.com + + + + + Zopa (partial) + + ruleset + + name + Zopa (partial) + rule + + from + ^http://(?:uk\.|www\.)?zopa\.com/ + to + https://uk.zopa.com/ + + securecookie + + host + ^\.zopa\.com$ + name + .* + + target + + + host + zopa.com + + + host + uk.zopa.com + + + host + www.zopa.com + + + + + Zopim + + ruleset + + name + Zopim + rule + + from + ^http://((?:api|blog|cdn|classic|dashboard|de\d\d|status\d*|tickets|us\d\d|v2|wiki|www)\.)?zopim\.com/ + to + https://$1zopim.com/ + + securecookie + + host + ^.*\.zopim\.com$ + name + .+ + + target + + + host + zopim.com + + + host + *.zopim.com + + + + + Zorpia (false MCB) + + ruleset + + name + Zorpia (false MCB) + platform + mixedcontent + rule + + + from + ^http://((?:en|h150|lrg131|me|mini|search|t[hn]s|www)\.)?zorpia\.com/ + to + https://$1zorpia.com/ + + + from + ^http://(?:static\.zorpia|(?:ec\.)?static\.zpcdn)\.com/ + to + https://zorpia.com/ + + + from + ^http://(?:ec\.)?(h150|t[hn]s)\.zpcdn\.com/ + to + https://$1.zorpia.com/ + + + from + ^http://lrg131\.zpcdn\.com/ + to + https://lrg131.zorpia.com/ + + + securecookie + + host + .*\.zorpia\.com$ + name + .+ + + target + + + host + zorpia.com + + + host + *.zorpia.com + + + host + *.zpcdn.com + + + + + ZorroVPN.com + + ruleset + + name + ZorroVPN.com + rule + + from + ^http://(www\.)?zorrovpn\.com/ + to + https://$1zorrovpn.com/ + + securecookie + + host + ^\.zorrovpn\.com$ + name + .+ + + target + + + host + zorrovpn.com + + + host + *.zorrovpn.com + + + + + Zotero + + ruleset + + name + Zotero + rule + + + from + ^http://(?:www\.)?zotero\.org/ + to + https://www.zotero.org/ + + + from + ^http://download\.zotero\.org/ + to + https://d20yc6ste5hadj.cloudfront.net/ + + + from + ^http://forums\.zotero\.org/ + to + https://forums.zotero.org/ + + + securecookie + + host + ^(?:.*\.)?zotero\.org$ + name + .+ + + target + + + host + zotero.org + + + host + *.zotero.org + + + + + Zscaler + + ruleset + + name + Zscaler + rule + + from + ^http://www\.zscaler\.com/ + to + https://www.zscaler.com/ + + target + + host + www.zscaler.com + + + + Zueri wie neu.ch + + ruleset + + name + Zueri wie neu.ch + rule + + from + ^http://www\.zueriwieneu\.ch/ + to + https://www.zueriwieneu.ch/ + + target + + host + www.zueriwieneu.ch + + + + Zugaina (partial) + + ruleset + + name + Zugaina (partial) + platform + cacert + rule + + + from + ^http://(?:www\.)?zugaina\.org/ + to + https://www.zugaina.org/ + + + from + ^http://(blog|funtoo-portage|gentoo)\.zugaina\.org/ + to + https://$1.zugaina.org/ + + + target + + + host + zugaina.org + + + host + *.zugaina.org + + + + + Zuhah.com + + ruleset + + name + Zuhah.com + rule + + from + ^http://(cdn\.|www\.)?zuhah\.com/ + to + https://$1zuhah.com/ + + securecookie + + host + ^\.zuhah\.com$ + name + .+ + + target + + + host + zuhah.com + + + host + *.zuhah.com + + + + + Zumzi (partial) + + ruleset + + name + Zumzi (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?zumzi\.(md|ro)/ + to + https://$1zumzi.$2/ + + securecookie + + host + ^(?:www)?\.zumzi\.(?:md|ro)$ + name + .+ + + target + + + host + zumzi.* + + + host + *.zumzi.md + + + host + *.zumzi.ro + + + + + Zuse-Crew.de + + ruleset + + name + Zuse-Crew.de + rule + + from + ^http://(www\.)?zuse-crew\.de/ + to + https://$1zuse-crew.de/ + + securecookie + + host + ^\.?zuse-crew\.de$ + name + .+ + + target + + + host + zuse-crew.de + + + host + *.zuse-crew.de + + + + + Zwame.pt + + ruleset + + name + Zwame.pt + rule + + from + ^http://(www\.)?zwame\.pt/ + to + https://www.zwame.pt/ + + target + + + host + zwame.pt + + + host + www.zwame.pt + + + + + Zwiebelfreunde.de + + ruleset + + name + Zwiebelfreunde.de + rule + + from + ^http://(www\.)?zwiebelfreunde\.de/ + to + https://$1zwiebelfreunde.de/ + + target + + + host + zwiebelfreunde.de + + + host + www.zwiebelfreunde.de + + + + + Zy0d0x.com + + ruleset + + name + Zy0d0x.com + rule + + from + ^http://(www\.)?zy0d0x\.com/ + to + https://$1zy0d0x.com/ + + target + + + host + zy0d0x.com + + + host + www.zy0d0x.com + + + + + Zylom.com (partial) + + ruleset + + name + Zylom.com (partial) + rule + + + from + ^http://(?:cdn\.)?media\.zylom\.com/ + to + https://media.zylom.com/ + + + from + ^http://secure2\.zylom\.com/ + to + https://secure2.zylom.com/ + + + target + + host + *.zylom.com + + + + Zylon.net (false MCB) + + ruleset + + name + Zylon.net (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?zylon\.net/ + to + https://$1zylon.net/ + + target + + + host + zylon.net + + + host + www.zylon.net + + + + + Zynga (partial) + + ruleset + + name + Zynga (partial) + rule + + + from + ^http://userimages\.static\.zgncdn\.com/ + to + https://userimages.static.zgncdn.com/ + + + from + ^http://(www\.)?zynga\.com/ + to + https://$1zynga.com/ + + + from + ^http://company\.zynga\.com/(img|nfs|sites)/ + to + https://company.zynga.com/$1/ + + + securecookie + + host + ^\.zynga\.com$ + name + .* + + target + + + host + userimages.static.zgncdn.com + + + host + zynga.com + + + host + *.zynga.com + + + + + Zynga Player Support.com + + ruleset + + name + Zynga Player Support.com + rule + + from + ^http://(www\.)?zyngaplayersupport\.com/ + to + https://$1zyngaplayersupport.com/ + + target + + + host + zyngaplayersupport.com + + + host + www.zyngaplayersupport.com + + + + + a-ads.com + + ruleset + + name + a-ads.com + rule + + from + ^http://((?:ad|static|www)\.)?a-ads\.com/ + to + https://$1a-ads.com/ + + securecookie + + host + ^a-ads\.com$ + name + .+ + + target + + + host + a-ads.com + + + host + *.a-ads.com + + + + + a2e.de + + ruleset + + name + a2e.de + rule + + from + ^http://(www\.)?a2e\.de/ + to + https://$1a2e.de/ + + securecookie + + host + ^a2e\.de$ + name + .+ + + target + + + host + a2e.de + + + host + www.a2e.de + + + + + a2z, Inc (partial) + + ruleset + + exclusion + + + pattern + http://www\..+/$ + + + pattern + .+\.aspx$ + + + name + a2z, Inc (partial) + rule + + from + ^http://(\w+)\.a2zinc\.net/ + to + https://$1.a2zinc.net/ + + target + + host + *.a2zinc.net + + + + a3li + + ruleset + + name + a3li + platform + cacert + rule + + from + ^http://(www\.)?a3li\.li/ + to + https://$1a3li.li/ + + target + + + host + a3li.li + + + host + www.a3li.li + + + + + a4apphack (partial) + + ruleset + + name + a4apphack (partial) + rule + + from + ^https?://img\.a4apphack\.com/ + to + https://s3.amazonaws.com/img.a4apphack.com/ + + target + + host + img.a4apphack.com + + + + aTech Media (partial) + + ruleset + + name + aTech Media (partial) + rule + + + from + ^http://(?:www\.)?atech(?:\.io|media\.com)/ + to + https://atechmedia.com/ + + + from + ^http://community\.atechmedia\.com/ + to + https://community.atechmedia.com/ + + + securecookie + + host + ^(?:community\.|www\.)?atechmedia\.com$ + name + .+ + + target + + + host + atech.io + + + host + www.atech.io + + + host + atechmedia.com + + + host + *.atechmedia.com + + + + + aaspring.com + + ruleset + + name + aaspring.com + rule + + from + ^http://(www\.)?aaspring\.com/ + to + https://$1aaspring.com/ + + target + + + host + aaspring.com + + + host + www.aaspring.com + + + + + abusix.com + + ruleset + + name + abusix.com + rule + + from + ^http://((?:abusehq|blackholemx|leakdb|spamfeedme|www)\.)?abusix\.com/ + to + https://$1abusix.com/ + + target + + + host + abusix.com + + + host + *.abusix.com + + + + + abysmal.nl + + ruleset + + name + abysmal.nl + rule + + from + ^http://(www\.)?abysmal\.nl/ + to + https://$1abysmal.nl/ + + securecookie + + host + ^\.abysmal.nl$ + name + .+ + + target + + + host + abysmal.nl + + + host + *.abysmal.nl + + + + + academics.de + + ruleset + + name + academics.de + rule + + from + ^http://(squid\.|www\.)?academics\.de/ + to + https://$1academics.de/ + + securecookie + + host + ^(?:www)?\.academics\.de$ + name + .+ + + target + + + host + academics.de + + + host + *.academics.de + + + + + access-kaiseki-tools.com + + ruleset + + name + access-kaiseki-tools.com + rule + + from + ^http://(www\.)?access-kaiseki-tools\.com/ + to + https://$1access-kaiseki-tools.com/ + + target + + + host + access-kaiseki-tools.com + + + host + www.access-kaiseki-tools.com + + + + + accesstrade.net (partial) + + ruleset + + name + accesstrade.net (partial) + rule + + from + ^http://member\.accesstrade\.net/ + to + https://member.accesstrade.net/ + + securecookie + + host + ^member\.accesstrade\.net$ + name + .+ + + target + + host + member.accesstrade.net + + + + account3000.com + + ruleset + + name + account3000.com + rule + + from + ^http://(www\.)?account3000\.com/ + to + https://$1account3000.com/ + + securecookie + + host + ^(?:www\.)?account3000\.com$ + name + .+ + + target + + + host + account3000.com + + + host + www.account3000.com + + + + + accountservergroup.com + + ruleset + + name + accountservergroup.com + rule + + from + ^http://(?!www\.)([\w-]+)\.accountservergroup\.com/ + to + https://$1accountservergroup.com/ + + target + + host + *.accountservergroup.com + + + + ace-analyzer.com + + ruleset + + name + ace-analyzer.com + rule + + from + ^http://(www\.)?ace-analyzer\.com/ + to + https://$1ace-analyzer.com/ + + securecookie + + host + ^(?:www\.)?ace-analyzer\.com$ + name + .+ + + target + + + host + ace-analyzer.com + + + host + www.ace-analyzer.com + + + + + acessoseguro.net + + ruleset + + name + acessoseguro.net + rule + + from + ^http://([\w-]+)\.acessoseguro\.net/ + to + https://$1.acessoseguro.net/ + + securecookie + + host + .+\.acessoseguro\.net$ + name + .+ + + target + + host + *.acessoseguro.net + + + + actionallocator.com + + ruleset + + name + actionallocator.com + rule + + from + ^http://(?:www\.)?actionallocator\.com/ + to + https://www.actionallocator.com/ + + securecookie + + host + ^(?:www)?\.actionallocator\.com$ + name + .+ + + target + + + host + actionallocator.com + + + host + *.actionallocator.com + + + + + active-srv02.de + + ruleset + + name + active-srv02.de + rule + + from + ^http://(www\.)?active-srv02\.de/ + to + https://$1active-srv02.de/ + + securecookie + + host + ^\.active-srv02\.de$ + name + .+ + + target + + + host + active-srv02.de + + + host + *.active-srv02.de + + + + + ad6media (partial) + + ruleset + + name + ad6media (partial) + rule + + from + ^http://r\.ad6media\.fr/ + to + https://r.ad6media.fr/ + + target + + host + r.ad6media.fr + + + + ada.lt (partial) + + ruleset + + name + ada.lt (partial) + rule + + from + ^http://(www\.)?ada\.lt/ + to + https://$1ada.lt/ + + securecookie + + host + ^(?:www\.)?ada\.lt$ + name + .+ + + target + + + host + ada.lt + + + host + www.ada.lt + + + + + adbuyer.com + + ruleset + + name + adbuyer.com + rule + + + from + ^http://(?:www\.)?adbuyer\.com/([^?]*)(\?:.*)? + to + https://app.mbuy.com/$1 + + + from + ^http://(gbid|pixel)\.adbuyer\.com/ + to + https://$1.adbuyer.com/ + + + securecookie + + host + ^(?:gbid)?\.adbuyer\.com$ + name + .+ + + target + + + host + adbuyer.com + + + host + *.adbuyer.com + + + + + adentifi.com + + ruleset + + name + adentifi.com + rule + + from + ^http://(www\.)?adentifi\.com/ + to + https://$1adentifi.com/ + + securecookie + + host + ^(?:www\.)?adentifi\.com$ + name + .+ + + target + + + host + adentifi.com + + + host + www.adentifi.com + + + + + adigital (partial) + + ruleset + + name + adigital (partial) + rule + + from + ^https?://(?:www\.)?adigital\.org/(misc/|registrate/?(?:$|\?)|sites/|user(?:$|\?|/)) + to + https://www.adigital.org/$1 + + target + + + host + adigital.org + + + host + www.adigital.org + + + + + adingo (partial) + + ruleset + + name + adingo (partial) + rule + + + from + ^https?://(?:www\.)?adingo.jp/ + to + https://adingo.jp/ + + + from + ^http://product\.adingo\.jp(?:\.eimg\.jp)?/ + to + https://product.adingo.jp/ + + + securecookie + + host + ^product\.adingo\.jp$ + name + .+ + + target + + + host + adingo.jp + + + host + *.adingo.jp + + + host + product.adingo.jp.eimg.jp + + + + + adition.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:en|www)\.adition\.com/ + + name + adition.com (partial) + rule + + from + ^http://([\w+\.-]+)\.adition\.com/ + to + https://$1.adition.com/ + + securecookie + + host + ^(?:ad1)?\.adfarm1\.adition\.com$ + name + .+ + + target + + host + *.adition.com + + + + adjust-net.jp + + ruleset + + name + adjust-net.jp + rule + + from + ^http://(ads|ifr)\.adjust-net\.jp/ + to + https://$1.adjust-net.jp/ + + target + + host + *.adjust-net.jp + + + + adk2 (partial) + + ruleset + + name + adk2 (partial) + rule + + + from + ^http://((?:ads|adstract|cpmrocket)\.)?adk2\.com/ + to + https://$1adk2.com/ + + + from + ^http://cdn\.adk2\.com/ + to + https://d38cp5x90nxyo0.cloudfront.net/ + + + securecookie + + host + ^\.?ads\.adk2\.com$ + name + .+ + + target + + + host + adk2.com + + + host + *.adk2.com + + + + + adlink.net + + ruleset + + name + adlink.net + rule + + from + ^http://js\.adlink\.net/ + to + https://js.adlink.net/ + + target + + host + js.adlink.net + + + + admin.ch (partial) + + ruleset + + name + admin.ch (partial) + rule + + from + ^http://(www\.somed\.bfs|www\.li)\.admin\.ch/ + to + https://$1.admin.ch/ + + securecookie + + host + ^www\.somed\.bfs\.admin\.ch$ + name + .+ + + target + + host + *.admin.ch + + + + adrolays (partial) + + ruleset + + name + adrolays (partial) + rule + + from + ^http://a\.adrolays\.de/ + to + https://a.adrolays.de/ + + target + + host + a.adrolays.de + + + + adscale + + ruleset + + name + adscale + rule + + + from + ^http://(?:www\.)?adscale\.de/ + to + https://www.adscale.de/ + + + from + ^http://(ih|js|rh)\.adscale\.de/ + to + https://$1.adscale.de/ + + + securecookie + + host + .*\.adscale\.de$ + name + .+ + + target + + + host + adscale.de + + + host + *.adscale.de + + + + + adserver01.de + + ruleset + + name + adserver01.de + rule + + from + ^http://(ad|r)2\.adserver01\.de/ + to + https://$12.adserver01.de/ + + securecookie + + host + ^ad2\.adserver01\.de$ + name + .+ + + target + + host + *.adserver01.de + + + + adshostnet.com + + ruleset + + name + adshostnet.com + rule + + from + ^http://n5\.adshostnet\.com/ + to + https://n5.adshostnet.com/ + + target + + host + n5.adshostnet.com + + + + adspdbl.com (partial) + + ruleset + + name + adspdbl.com (partial) + rule + + from + ^http://files\.adspdbl\.com/ + to + https://d3ijm230svej28.cloudfront.net/ + + target + + host + files.adspdbl.com + + + + adsrvmedia.com + + ruleset + + name + adsrvmedia.com + rule + + + from + ^http://ads\.adsrvmedia\.com/ + to + https://ads.adk2.com/ + + + from + ^http://cdn\.adsrvmedia\.com/ + to + https://d3vg9hiogk70qz.cloudfront.net/ + + + target + + host + *.adsrvmedia.com + + + + adsrvr.org (partial) + + ruleset + + name + adsrvr.org (partial) + rule + + from + ^http://insight\.adsrvr\.org/ + to + https://insight.adsrvr.org/ + + target + + host + insight.adsrvr.org + + + + adtarget.me + + ruleset + + name + adtarget.me + rule + + from + ^http://static[.-]trackers\.adtarget\.me/ + to + https://static-trackers.adtarget.me/ + + target + + host + *.adtarget.me + + + + adtraxx.de + + ruleset + + name + adtraxx.de + rule + + from + ^http://view\.adtraxx\.de/ + to + https://view.adtraxx.de/ + + securecookie + + host + ^\.adtraxx\.de$ + name + .+ + + target + + host + *.adtraxx.de + + + + adultcineporn.com + + ruleset + + name + adultcineporn.com + rule + + from + ^http://(www\.)?adultcineporn\.com/ + to + https://$1adultcineporn.com/ + + target + + + host + adultcineporn.com + + + host + www.adultcineporn.com + + + + + advertisers-OpenX.com + + ruleset + + name + advertisers-OpenX.com + rule + + from + ^http://d3\.advertisers-openx\.com/ + to + https://d3.advertisers-openx.com/ + + securecookie + + host + ^d3\.advertisers-openx\.com$ + name + .+ + + target + + host + d3.advertisers-openx.com + + + + advg.jp (partial) + + ruleset + + name + advg.jp (partial) + rule + + from + ^http://r\.advg\.jp/ + to + https://r.advg.jp/ + + target + + host + r.advg.jp + + + + advolution.de + + ruleset + + name + advolution.de + rule + + from + ^http://asn\.advolution\.de/ + to + https://asn.advolution.de/ + + securecookie + + host + ^\.advolution\.de$ + name + .+ + + target + + host + *.advolution.de + + + + adzip.co + + ruleset + + name + adzip.co + rule + + from + ^http://metrics\.adzip\.co/ + to + https://metrics.adzip.co/ + + target + + host + metrics.adzip.co + + + + affili.net (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?affili\.net/(?:\w\w/defaultdesktop|de/Startseite)\.aspx + + name + affili.net (partial) + rule + + + from + ^http://(?:www\.)?affili\.net/ + to + https://www.affili.net/ + + + from + ^http://(?:www\.)?affili\.de/ + to + https://www.affili.net/de/ + + + securecookie + + host + ^www\.affili\.net$ + name + .* + + target + + + host + affili.net + + + host + www.affili.net + + + + + agmk.net + + ruleset + + name + agmk.net + rule + + from + ^http://(poczta\.|www\.)?agmk\.net/ + to + https://$1agmk.net/ + + securecookie + + host + ^(?:.+\.)?agmk\.net$ + name + .+ + + target + + + host + agmk.net + + + host + *.agmk.net + + + + + ahm.com.au (partial) + + ruleset + + exclusion + + pattern + ^http://(?:providers|www)\.ahm\.com\.au/+(?!assets/) + + name + ahm.com.au (partial) + rule + + from + ^http://((?:members|providers|www)\.)?ahm\.com\.au/ + to + https://$1ahm.com.au/ + + securecookie + + host + ^members\.ahm\.com\.au$ + name + .+ + + target + + + host + ahm.com.au + + + host + *.ahm.com.au + + + + + ahmia.fi + + ruleset + + name + ahmia.fi + rule + + from + ^http://(www\.)?ahmia\.fi/ + to + https://$1ahmia.fi/ + + target + + + host + ahmia.fi + + + host + www.ahmia.fi + + + + + aidsmap.com + + ruleset + + name + aidsmap.com + rule + + + from + ^http://(?:www\.)?aidsmap\.com/ + to + https://www.aidsmap.com/ + + + from + ^http://images\.aidsmap\.com/ + to + https://images.aidsmap.com/ + + + target + + + host + aidsmap.com + + + host + *.aidsmap.com + + + + + aimatch.com + + ruleset + + name + aimatch.com + rule + + + from + ^http://(?:www\.)?aimatch\.com/[^?]*(\?.*)? + to + https://www.sas.com/software/customer-intelligence/intelligent-advertising.html$1 + + + from + ^http://crtl\.aimatch\.com/ + to + https://crtl.aimatch.com/ + + + target + + + host + aimatch.com + + + host + *.aimatch.com + + + + + aklamio.com + + ruleset + + name + aklamio.com + rule + + from + ^http://(www\.)?aklamio\.com/ + to + https://$1aklamio.com/ + + securecookie + + host + ^(?:www\.)?aklamio\.com$ + name + .+ + + target + + + host + aklamio.com + + + host + www.aklamio.com + + + + + al-akhbar + + ruleset + + name + al-akhbar + rule + + from + ^http://(english\.|www\.)?al-akhbar\.com/ + to + https://$1al-akhbar.com/ + + securecookie + + host + ^(?:english)?\.al-akhbar\.com$ + name + .+ + + target + + + host + al-akhbar.com + + + host + *.al-akhbar.com + + + + + albinoloverats + + ruleset + + name + albinoloverats + rule + + from + ^http://(www\.)?albinoloverats\.net/ + to + https://$1albinoloverats.net/ + + target + + + host + albinoloverats.net + + + host + www.albinoloverats.net + + + + + alchemistowl.org + + ruleset + + name + alchemistowl.org + rule + + from + ^http://www\.alchemistowl\.org/ + to + https://www.alchemistowl.org/ + + target + + host + www.alchemistowl.org + + + + alfa Media Partner (partial) + + ruleset + + name + alfa Media Partner (partial) + rule + + + from + ^http://owa\.alfa\.de/ + to + https://owa.alfa.de/ + + + from + ^http://sso\.alfa-openmedia\.de/ + to + https://sso.alfa-openmedia.de/ + + + target + + + host + owa.alfa.de + + + host + sso.alfa-openmedia.de + + + + + alias.io + + ruleset + + name + alias.io + rule + + from + ^http://(www\.)?alias\.io/ + to + https://$1alias.io/ + + target + + + host + alias.io + + + host + www.alias.io + + + + + alivenotdead.com + + ruleset + + name + alivenotdead.com + rule + + + from + ^https?://(?:www\.)?alivenotdead\.com/ + to + https://www.alivenotdead.com/ + + + from + ^http://s3\.alivenotdead\.com/ + to + https://s3.alivenotdead.com/ + + + securecookie + + host + ^(?:www)?\.alivenotdead\.com$ + name + .+ + + target + + + host + alivenotdead.com + + + host + *.alivenotdead.com + + + + + all4xs.net + + ruleset + + name + all4xs.net + rule + + from + ^http://(www\.)?all4xs\.net/ + to + https://$1all4xs.net/ + + securecookie + + host + ^(www\.)?all4xs\.net$ + name + .* + + target + + + host + all4xs.net + + + host + www.all4xs.net + + + + + allAfrica (partial) + + ruleset + + name + allAfrica (partial) + rule + + from + ^http://(?:www\.)?allafrica\.com/(commerce/user/(?:manage|subscribe)|static)/ + to + https://allafrica.com/$1/ + + target + + + host + allafrica.com + + + host + www.allafrica.com + + + + + allmyvideos.net (partial) + + ruleset + + name + allmyvideos.net (partial) + rule + + from + ^http://((?:api|cacti|wiki|www)\.)?allmyvideos\.net/ + to + https://$1allmyvideos.net/ + + securecookie + + host + ^(?:api|cacti)?\.allmyvideos\.net$ + name + .+ + + target + + + host + allmyvideos.net + + + host + *.allmyvideos.net + + + + + alonetone (partial) + + ruleset + + name + alonetone (partial) + rule + + from + ^https?://stash\.alonetone\.com/ + to + https://s3.amazonaws.com/stash.alonetone.com/ + + target + + host + stash.alonetone.com + + + + alumniconnections.com + + ruleset + + name + alumniconnections.com + rule + + from + ^http://(secure\.www\.|www\.)?alumniconnections\.com/ + to + https://$1alumniconnections.com/ + + securecookie + + host + ^secure\.www\.alumniconnections\.com$ + name + .+ + + target + + + host + alumniconnections.com + + + host + *.alumniconnections.com + + + + + alwaysdata.com (partial) + + ruleset + + name + alwaysdata.com (partial) + rule + + from + ^http://((?:admin|help|php(?:my|pg)admin|static|status|webmail|www)\.)?alwaysdata\.com/ + to + https://$1alwaysdata.com/ + + securecookie + + host + ^(?!blog\.|forum\.)\w+\.alwaysdata\.com$ + name + .+ + + target + + + host + alwaysdata.com + + + host + *.alwaysdata.com + + + + + amazingweb + + ruleset + + name + amazingweb + rule + + from + ^http://(www\.)?amazingweb\.co/ + to + https://$1amazingweb.co/ + + target + + + host + amazingweb.co + + + host + www.amazingweb.co + + + + + amblin.io (partial) + + ruleset + + name + amblin.io (partial) + rule + + from + ^http://amblin\.io/ + to + https://amblin.io/ + + securecookie + + host + ^amblin\.io$ + name + .+ + + target + + host + amblin.io + + + + amd.co.at (partial) + + ruleset + + exclusion + + pattern + ^http://mail\.amd\.co\.at/+(?!(?:phpmyadmin|roundcube)(?:$|[?/])) + + name + amd.co.at (partial) + rule + + from + ^http://(?:(diebold\.|mail\.)|www\.)?amd\.co\.at/ + to + https://$1amd.co.at/ + + target + + + host + amd.co.at + + + host + *.amd.co.at + + + + + amgdgt.com + + ruleset + + name + amgdgt.com + rule + + + from + ^http://ad\.amgdgt\.com/ + to + https://ad.amgdgt.com/ + + + from + ^http://cdn\.amgdgt\.com/ + to + https://a248.e.akamai.net/f/1075/1/5m/cdn.amgdgt.com/ + + + securecookie + + host + ^\.amgdgt\.com$ + name + .+ + + target + + host + *.amgdgt.com + + + + amiando (partial) + + ruleset + + name + amiando (partial) + rule + + + from + ^https?://amiando\.com/ + to + https://www.amiando.com/ + + + from + ^http://(?!blog\.|info\.)(\w+)\.amiando\.com/ + to + https://$1.amiando.com/ + + + securecookie + + host + .*\.amiando\.com$ + name + .+ + + target + + + host + amiando.com + + + host + *.amiando.com + + + + + analytics.edgesuite.net + + ruleset + + name + analytics.edgesuite.net + rule + + + from + ^http://([\w-]+)\.analytics\.edgekey\.net/ + to + https://$1.analytics.edgekey.net/ + + + from + ^http://([\w-]+)\.analytics\.edgesuite\.net/ + to + https://a248.e.akamai.net/f/307/4345/10m/$1.analytics.edgesuite.net/ + + + target + + + host + *.analytics.edgekey.net + + + host + *.analytics.edgesuite.net + + + + + andyet.com (partial) + + ruleset + + name + andyet.com (partial) + rule + + from + ^http://(?:(blog\.|labs\.)|www\.)?andyet\.com/ + to + https://$1andyet.com/ + + target + + + host + andyet.com + + + host + *.andyet.com + + + + + anglomedia.net + + ruleset + + name + anglomedia.net + rule + + + from + ^http://(?:www\.)?anglomedia\.net/ + to + https://www.anglomedia.net/ + + + from + ^http://cdn\.anglomedia\.net/ + to + https://3024-iamnoonesolution.netdna-ssl.com/ + + + securecookie + + host + ^www\.anglomedia\.net$ + name + .+ + + target + + + host + anglomedia.net + + + host + *.anglomedia.net + + + + + anibis.ch + + ruleset + + name + anibis.ch + rule + + + from + ^http://(?:www\.)?anibis\.ch/ + to + https://www.anibis.ch/ + + + from + ^http://show\.anibis\.ch/ + to + https://show.anibis.ch/ + + + target + + + host + anibis.ch + + + host + *.anibis.ch + + + + + annihil.us + + ruleset + + name + annihil.us + rule + + from + ^http://[ix]\.annihil\.us/ + to + https://i.annihil.us/ + + target + + host + *.annihil.us + + + + anonbox.net + + ruleset + + name + anonbox.net + platform + cacert + rule + + from + ^http://(?:www\.)?anonbox\.net/ + to + https://anonbox.net/ + + target + + + host + anonbox.net + + + host + www.anonbox.net + + + + + anonymoX + + ruleset + + name + anonymoX + rule + + from + ^http://(www\.)?anonymox\.net/ + to + https://$1anonymox.net/ + + securecookie + + host + ^(?:.*\.)?anonymox\.net$ + name + .+ + + target + + + host + anonymox.net + + + host + *.anonymox.net + + + + + anyoption.com (partial) + + ruleset + + name + anyoption.com (partial) + rule + + + from + ^http://(?:www\.)?anyoption\.com/(?=bridge/|css/|favicon\.ico|images/|javax\.faces\.resource/|jsp?/|thickbox/) + to + https://www.anyoption.com/ + + + from + ^http://(image|l)s\.anyoption\.com/ + to + https://$1s.anyoption.com/ + + + target + + + host + anyoption.com + + + host + *.anyoption.com + + + + + ao2.it (CAcert) + + ruleset + + name + ao2.it (CAcert) + platform + cacert + rule + + from + ^http://(www\.)?ao2\.it/ + to + https://$1.ao2.it/ + + securecookie + + host + (.*\.)ao2\.it$ + name + .* + + target + + host + www.ao2.it + + + + api.sh + + ruleset + + name + api.sh + rule + + from + ^http://(?:www\.)?api\.sh/ + to + https://api.sh/ + + securecookie + + host + ^\.?api\.sh$ + name + .+ + + target + + + host + api.sh + + + host + *.api.sh + + + + + archive.moe + + ruleset + + name + archive.moe + rule + + from + ^http://(data\.|www\.)?archive\.moe/ + to + https://$1archive.moe/ + + securecookie + + host + ^archive\.moe$ + name + .+ + + target + + + host + archive.moe + + + host + *.archive.moe + + + + + archive.today (partial) + + ruleset + + name + archive.today (partial) + rule + + + from + ^http://(www\.)?archive\.today/ + to + https://$1archive.today/ + + + from + ^http://(www\.)archive\.is/ + to + https://$1archive.is/ + + + target + + + host + archive.today + + + host + www.archive.today + + + host + archive.is + + + host + www.archive.is + + + + + arkOS.io + + ruleset + + name + arkOS.io + rule + + from + ^http://(bbs\.|www\.)?arkos\.io/ + to + https://$1arkos.io/ + + securecookie + + host + ^bbs\.arkos\.io$ + name + .+ + + target + + + host + arkos.io + + + host + *.arkos.io + + + + + arvm.de + + ruleset + + name + arvm.de + rule + + from + ^http://i\.arvm\.de/ + to + https://i.arvm.de/ + + target + + host + i.arvm.de + + + + ashleymadison.com (partial) + + ruleset + + name + ashleymadison.com (partial) + rule + + from + ^http://static\.ashleymadison\.com/ + to + https://static.ashleymadison.com/ + + target + + host + static.ashleymadison.com + + + + asknet (partial) + + ruleset + + name + asknet (partial) + rule + + from + ^http://srv\.(cdn-)?asknet\.(com|de)/ + to + https://srv.$1asknet.$2/ + + target + + + host + srv.asknet.com + + + host + srv.asknet.de + + + host + srv.cdn-asknet.com + + + host + srv.cdn-asknet.de + + + + + asseenonresponsetv.com + + ruleset + + name + asseenonresponsetv.com + rule + + from + ^http://(www\.)?asseenonresponsetv\.com/ + to + https://$1asseenonresponsetv.com/ + + securecookie + + host + ^www\.asseenonresponsetv\.com$ + name + .+ + + target + + + host + asseenonresponsetv.com + + + host + www.asseenonresponsetv.com + + + + + associatedcontent.com + + ruleset + + name + associatedcontent.com + rule + + + from + ^http://associatedcontent\.com/ + to + https://www.associatedcontent.com/ + + + from + ^http://www\.associatedcontent\.com/ + to + https://www.associatedcontent.com/ + + + target + + host + associatedcontent.com + + + + aswirlgirl.com (partial) + + ruleset + + name + aswirlgirl.com (partial) + rule + + from + ^http://(?:www\.)?(?:aswirlgirl|theswirlworld)\.com/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://secure.bluehost.com/~aswirlgi/ + + target + + + host + aswirlgirl.com + + + host + www.aswirlgirl.com + + + host + theswirlworld.com + + + host + www.theswirlworld.com + + + + + atagar.com + + ruleset + + name + atagar.com + rule + + from + ^http://(www\.)?atagar\.com/ + to + https://$1atagar.com/ + + target + + + host + atagar.com + + + host + www.atagar.com + + + + + atgsvcs.com + + ruleset + + name + atgsvcs.com + rule + + from + ^http://(rules|static)\.atgsvcs\.com/ + to + https://$1.atgsvcs.com/ + + target + + host + *.atgsvcs.com + + + + atipso.com + + ruleset + + name + atipso.com + rule + + from + ^http://((?:app|piwik|static|www)\.)?atipso\.com/ + to + https://$1atipso.com/ + + securecookie + + host + ^\.app\.atipso\.com$ + name + .+ + + target + + + host + atipso.com + + + host + *.atipso.com + + + + + atsec.com + + ruleset + + name + atsec.com + rule + + from + ^http://(www\.)?atsec\.com/ + to + https://$1atsec.com/ + + target + + + host + atsec.com + + + host + www.atsec.com + + + + + auctionthing.net + + ruleset + + name + auctionthing.net + rule + + from + ^http://(www\.)?auctionthing\.net/ + to + https://$1auctionthing.net/ + + target + + + host + auctionthing.net + + + host + www.auctionthing.net + + + + + aunggo.com + + ruleset + + name + aunggo.com + rule + + from + ^http://tracking\.aunggo\.com/ + to + https://gunggo.go2cloud.org/ + + target + + host + tracking.aunggo.com + + + + automx.org (partial) + + ruleset + + name + automx.org (partial) + rule + + from + ^http://(?:autodiscover|mail)\.automx\.org/ + to + https://mail.automx.org/ + + target + + host + *.automx.org + + + + av18mov.com + + ruleset + + name + av18mov.com + rule + + from + ^http://(www\.)?av18mov\.com/ + to + https://$1av18mov.com/ + + securecookie + + host + ^(?:w*\.)?av18mov\.com$ + name + .+ + + target + + + host + av18mov.com + + + host + *.av18mov.com + + + + + avoinyliopisto.fi + + ruleset + + name + avoinyliopisto.fi + rule + + + from + ^http://(www\.)?avoinyliopisto\.fi/ + to + https://www.avoinyliopisto.fi/ + + + from + ^https://avoinyliopisto\.fi/ + to + https://www.avoinyliopisto.fi/ + + + securecookie + + host + ^(www)?\.avoinyliopisto\.fi + name + .* + + target + + + host + www.avoinyliopisto.fi + + + host + avoinyliopisto.fi + + + + + avonmaquiagem.com.br + + ruleset + + name + avonmaquiagem.com.br + rule + + from + ^http://(static5\.|www\.)?avonmaquiagem\.com\.br/ + to + https://$1avonmaquiagem.com.br/ + + securecookie + + host + ^(?:w*\.)?avonmaquiagem\.com\.br$ + name + .+ + + target + + + host + avonmaquiagem.com.br + + + host + *.avonmaquiagem.com.br + + + + + azcentral.com (partial) + + ruleset + + name + azcentral.com (partial) + rule + + from + ^https?://(?:[il]\.|(www\.))?azcentral\.com/ + to + https://$1azcentral.com/ + + securecookie + + host + ^\.azcentral\.com$ + name + .+ + + target + + + host + azcentral.com + + + host + *.azcentral.com + + + + + b2bmediaportal.com + + ruleset + + name + b2bmediaportal.com + rule + + from + ^http://(?:www\.)?b2bmediaportal\.com/ + to + https://www.b2bmediaportal.com/ + + securecookie + + host + ^www\.b2bmediaportal\.com$ + name + .+ + + target + + + host + b2bmediaportal.com + + + host + www.b2bmediaportal.com + + + + + b3n.org + + ruleset + + name + b3n.org + rule + + from + ^http://(www\.)?b3n\.org/ + to + https://$1b3n.org/ + + target + + + host + b3n.org + + + host + www.b3n.org + + + + + bGamed.de (partial) + + ruleset + + name + bGamed.de (partial) + rule + + from + ^http://(?:www\.)?bgamed\.de/ + to + https://bgamed.de/ + + securecookie + + host + ^bgamed\.de$ + name + .+ + + target + + + host + bgamed.de + + + host + www.bgamed.de + + + + + bHosted.nl (partial) + + ruleset + + name + bHosted.nl (partial) + rule + + + from + ^http://(?:www\.)?bhosted\.nl/(css/|favicon\.ico|images/|js/|webmail(?:$|\?|/)) + to + https://www.bhosted.nl/$1 + + + from + ^http://(admin|klant|webmail)\.bhosted\.nl/ + to + https://$1.bhosted.nl/ + + + securecookie + + host + ^webmail\.bhosted\.nl$ + name + .+ + + target + + + host + bhosted.nl + + + host + *.bhosted.nl + + + + + bankrate.com + + ruleset + + name + bankrate.com + rule + + from + ^http://(?:www\.)?bankrate\.com/ + to + https://origin.bankrate.com/ + + securecookie + + host + ^(.*\.)?bankrate\.com$ + name + .* + + target + + + host + bankrate.com + + + host + www.bankrate.com + + + + + baztab.net + + ruleset + + name + baztab.net + rule + + from + ^http://(www\.)?baztab\.net/ + to + https://$1baztab.net/ + + securecookie + + host + ^\.baztab\.net$ + name + .+ + + target + + + host + baztab.net + + + host + *.baztab.net + + + + + bbelements.com + + ruleset + + name + bbelements.com + rule + + from + ^http://go\.(?:cz|eu)\.bbelements\.com/ + to + https://go.eu.bbelements.com/ + + securecookie + + host + ^\.go\.eu\.bbelements\.com$ + name + .+ + + target + + host + *.bbelements.com + + + + bbsey.es (partial) + + ruleset + + name + bbsey.es (partial) + rule + + from + ^http://(www\.)?bbsey(?:\.es|es\.com)/(?=favicon\.ico|wp-content/|wp-includes/) + to + https://$1bbseye.es/ + + target + + + host + bbsey.es + + + host + www.bbsey.es + + + host + bbseyes.com + + + host + www.bbseyes.com + + + + + bcobandits.com + + ruleset + + name + bcobandits.com + rule + + from + ^http://(www\.)?bcobandits\.com/ + to + https://$1bcobandits.com/ + + securecookie + + host + ^\.bcobandits\.com$ + name + .+ + + target + + + host + bcobandits.com + + + host + *.bcobandits.com + + + + + be quiet.com (false MCB) + + ruleset + + name + be quiet.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(?:www\.)?bequiet\.com/ + to + https://www.bequiet.com/ + + securecookie + + host + ^www\.bequiet\.com$ + name + .+ + + target + + + host + bequiet.com + + + host + www.bequiet.com + + + + + bear.im + + ruleset + + name + bear.im + rule + + from + ^http://(www\.)?bear\.im/ + to + https://$1bear.im/ + + target + + + host + bear.im + + + host + www.bear.im + + + + + beender.co + + ruleset + + name + beender.co + rule + + from + ^http://(?:www\.)?beender\.co/ + to + https://beender.co/ + + securecookie + + host + ^\.?beender\.co$ + name + .+ + + target + + + host + beender.co + + + host + *.beender.co + + + + + benefitsweb.com + + ruleset + + name + benefitsweb.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?benefitsweb\.com/ + to + https://www.benefitsweb.com/ + + securecookie + + host + ^(?:www)?\.benefitsweb\.com$ + name + .+ + + target + + + host + benefitsweb.com + + + host + *.benefitsweb.com + + + + + bepress + + ruleset + + name + bepress + platform + mixedcontent + rule + + from + ^http://(\w+\.)?bepress\.com/ + to + https://$1bepress.com/ + + securecookie + + host + ^(.*\.)?bepress\.com$ + name + .* + + target + + + host + bepress.com + + + host + *.bepress.com + + + + + bet365 Group (partial) + + ruleset + + name + bet365 Group (partial) + rule + + + from + ^http://(?:www\.)?bet365\.com/ + to + https://www.bet365.com/ + + + from + ^http://(?:www\.)?bet365affiliates\.com/ + to + https://www.bet365affiliates.com/ + + + securecookie + + + host + ^(.*\.)?bet365\.com$ + name + .* + + + host + ^www.bet365affiliates.com$ + name + .* + + + target + + + host + bet365.com + + + host + www.bet365.com + + + host + bet365affiliates.com + + + host + www.bet365affiliates.com + + + + + bibbitec + + ruleset + + name + bibbitec + rule + + from + ^http://(www\.)?bibbitec\.com/ + to + https://$1bibbitec.com/ + + securecookie + + host + ^\.www\.bibbitec\.com$ + name + .+ + + target + + + host + bibbitec.com + + + host + *.bibbitec.com + + + + + bigjocker.com + + ruleset + + name + bigjocker.com + rule + + from + ^http://(www\.)?bigjocker\.com/ + to + https://$1bigjocker.com/ + + target + + + host + bigjocker.com + + + host + www.bigjocker.com + + + + + billiger.de (partial) + + ruleset + + name + billiger.de (partial) + rule + + + from + ^http://(www\.)?billiger\.de/(combine/|favicon\.ico|img/|vnt_gc/img/|js/|stats/graphite\.gif) + to + https://$1billiger.de/$2 + + + from + ^http://api-img\.billiger\.de/ + to + https://api-img.billiger.de/ + + + securecookie + + + host + ^\.billiger\.de$ + name + ^_#\w+$ + + + host + ^www\.billiger\.de$ + name + ^(?:billigerderevisit|emos_jc[sv]id|emosTransmit1)$ + + + target + + + host + billiger.de + + + host + *.billiger.de + + + + + biofitt.com + + ruleset + + name + biofitt.com + rule + + from + ^http://(www\.)?biofitt\.com/ + to + https://$1biofitt.com/ + + securecookie + + host + ^(?:www)?\.biofitt\.com$ + name + .+ + + target + + + host + biofitt.com + + + host + *.biofitt.com + + + + + bit.ly + + ruleset + + name + bit.ly + rule + + + from + ^http://(pix\.|www\.)?bit\.ly/ + to + https://$1bit.ly/ + + + from + ^http://s\.bit\.ly/ + to + https://s3.amazonaws.com/s.bit.ly/ + + + from + ^http://(?:www\.)?bit\.?ly\.pro/ + to + https://bitly.com/pro/ + + + from + ^http://(?:www\.)?bitly\.com/ + to + https://bitly.com/ + + + from + ^http://(www\.)?j\.mp/ + to + https://$1j.mp/ + + + securecookie + + + host + ^(?:.*\.)?bit\.ly$ + name + .+ + + + host + ^bitly\.com$ + name + .+ + + + host + ^\.j\.mp$ + name + .+ + + + target + + + host + bit.ly + + + host + *.bit.ly + + + host + bit.ly.pro + + + host + www.bit.ly.pro + + + host + bitly.com + + + host + www.bitly.com + + + host + bitly.pro + + + host + www.bitly.pro + + + host + j.mp + + + host + www.j.mp + + + + + bit.ly vanity domains + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?(?:cnb\.cx|glo\.bo|reut\.rs|zd\.net)/+(?!$|\?) + + name + bit.ly vanity domains + rule + + + from + ^http://(?:www\.)?buff\.ly/+(?:$|\?.*) + to + https://bufferapp.com/ + + + from + ^http://sched\.co/+(?:$|\?.*) + to + https://sched.org/ + + + from + ^http://(?:www\.)?stanford\.io/+(?:$|\?.*) + to + https://www.stanford.edu/ + + + from + ^http://(?:(?:www\.)?1tw\.org|4mn\.ca|a21\.tv|apne\.ws|bbc\.in|(?:www\.)?buff\.ly|on\.cfr\.org|(?:www\.)?cnb\.cx|cs\.is|(?:www\.)?curbed\.cc|dico\.im|do\.co|dly\.do|(?:www\.)?glo\.bo|lat\.ms|(?:www\.)?mzl\.la|n\.pr|nyti\.ms|to\.pbs\.org|(?:www\.)?rbl\.ms|(?:www\.)?reut\.rs|seati\.ms|sched\.co|slate\.me|(?:www\.)?stanford\.io|theatln\.tc|ucla\.in|ubm\.io|1\.usa\.gov|usat\.ly|wapo\.st|(?:www\.)?wcas\.nu|on\.wsj\.com|(?:www\.)?zd\.net)/ + to + https://bit.ly/ + + + target + + + host + 1tw.org + + + host + www.1tw.org + + + host + 4mn.ca + + + host + a21.tv + + + host + apne.ws + + + host + bbc.in + + + host + buff.ly + + + host + www.buff.ly + + + host + on.cfr.org + + + host + cnb.cx + + + host + www.cnb.cx + + + host + cs.is + + + host + curbed.cc + + + host + www.curbed.cc + + + host + dico.im + + + host + dly.do + + + host + do.co + + + host + glo.bo + + + host + www.glo.bo + + + host + lat.ms + + + host + mzl.la + + + host + www.mzl.la + + + host + n.pr + + + host + nyti.ms + + + host + to.pbs.org + + + host + rbl.ms + + + host + www.rbl.ms + + + host + reut.rs + + + host + www.reut.rs + + + host + seati.ms + + + host + sched.co + + + host + slate.me + + + host + stanford.io + + + host + www.stanford.io + + + host + theatln.tc + + + host + usat.ly + + + host + wapo.st + + + host + on.wsj.com + + + host + ucla.in + + + host + ubm.io + + + host + 1.usa.gov + + + host + wcas.nu + + + host + www.wcas.nu + + + host + zd.net + + + host + www.zd.net + + + + + bitGamer + + ruleset + + name + bitGamer + rule + + + from + ^http://(www\.)?bitgamer\.su/ + to + https://bitgamer.su/ + + + from + ^http://(www\.)?bitgamer\.com/ + to + https://bitgamer.su/ + + + from + ^https://(www\.)?bitgamer\.com/ + to + https://bitgamer.su/ + + + target + + + host + www.bitgamer.su + + + host + bitgamer.su + + + host + www.bitgamer.com + + + host + bitgamer.com + + + + + bitaddress.org + + ruleset + + name + bitaddress.org + rule + + from + ^http://(www\.)?bitaddress\.org/ + to + https://$1bitaddress.org/ + + target + + + host + bitaddress.org + + + host + www.bitaddress.org + + + + + bitcoinapi.de + + ruleset + + name + bitcoinapi.de + rule + + from + ^http://bitcoinapi\.de/ + to + https://bitcoinapi.de/ + + securecookie + + host + ^\.bitcoinapi\.de$ + name + .+ + + target + + + host + bitcoinapi.de + + + host + *.bitcoinapi.de + + + + + bitfetch + + ruleset + + name + bitfetch + rule + + from + ^http://(www\.)?bitfetch\.com/ + to + https://$1bitfetch.com/ + + securecookie + + host + ^(?:www\.)?bitfetch\.com$ + name + .+ + + target + + + host + bitfetch.com + + + host + www.bitfetch.com + + + + + bitsontherun.com (partial) + + ruleset + + name + bitsontherun.com (partial) + rule + + from + ^http://(content|dashboard)\.bitsontherun\.com/ + to + https://$1.bitsontherun.com/ + + target + + host + *.bitsontherun.com + + + + blackVPN + + ruleset + + name + blackVPN + rule + + + from + ^http://(www\.)?blackvpn\.com/ + to + https://$1blackvpn.com/ + + + from + ^http://news\.blackvpn\.com/(?=favicon\.ico|stylesheets/) + to + https://www.twylah.com/ + + + securecookie + + host + ^\.blackvpn\.com$ + name + .+ + + target + + + host + blackvpn.com + + + host + *.blackvpn.com + + + + + blaze.com (partial) + + ruleset + + name + blaze.com (partial) + rule + + from + ^http://(assets|downloads|platform|secure)\.blaze\.com/ + to + https://$1.blaze.com/ + + target + + host + *.blaze.com + + + + blink-182 (partial) + + ruleset + + name + blink-182 (partial) + rule + + from + ^http://(?:www\.)?blink-182\.com/(_?css/|favicon\.ico) + to + https://modlife.com/$1 + + target + + + host + blink-182.com + + + host + www.blink-182.com + + + + + blogcdn.com (partial) + + ruleset + + name + blogcdn.com (partial) + rule + + from + ^http://www\.blogcdn\.com/ + to + https://a248.e.akamai.net/f/1949/3326/8/www.blogcdn.com/ + + target + + host + www.blogcdn.com + + + + blogo (partial) + + ruleset + + name + blogo (partial) + rule + + + from + ^http://static(?:-a)?\.blogo\.it/ + to + https://d2vgi5skuln6ia.cloudfront.net/ + + + from + ^http://static-q\.blogo\.it/ + to + https://d2ofxhm151efeq.cloudfront.net/ + + + securecookie + + host + ^(?:www)?\.blogo\.it$ + name + ^__utm\w$ + + target + + host + *.blogo.it + + + + blueSSL + + ruleset + + name + blueSSL + rule + + + from + ^https?://bluessl\.com/ + to + https://www.bluessl.com/ + + + from + ^http://([^/:@]+)?\.bluessl\.com/ + to + https://$1.bluessl.com/ + + + target + + + host + bluessl.com + + + host + *.bluessl.com + + + + + bluehosting.pl (partial) + + ruleset + + name + bluehosting.pl (partial) + rule + + from + ^http://([\w-]+\.)?bho\.pl/ + to + https://$1bho.pl/ + + securecookie + + host + ^.+\.bho\.pl$ + name + .+ + + target + + + host + bho.pl + + + host + *.bho.pl + + + + + bn-MCLP.org (partial) + + ruleset + + name + bn-MCLP.org (partial) + rule + + from + ^http://(www\.)?insight\.bn-mclp\.org/ + to + https://$1insight.bn-mclp.org/ + + target + + host + *.bn-mclp.org + + + + bnw + + ruleset + + name + bnw + rule + + + from + ^http://(www\.)?bnw\.im/ + to + https://bnw.im/ + + + from + ^http://meow\.bnw\.im/ + to + https://meow.bnw.im/ + + + securecookie + + host + ^bnw\.im$ + name + .* + + target + + + host + bnw.im + + + host + www.bnw.im + + + host + meow.bnw.im + + + + + bofh.it + + ruleset + + name + bofh.it + platform + cacert + rule + + + from + ^http://ml\.azzurra\.org/ + to + https://ml.azzurra.org/ + + + from + ^http://(blog|censura|lists|www)\.bofh\.it/ + to + https://$1bofh.it/ + + + target + + + host + ml.azzurra.org + + + host + *.bofh.it + + + + + bohoomil.com + + ruleset + + name + bohoomil.com + rule + + from + ^http://(?:(ams2\.)|www\.)?bohoomil\.com/ + to + https://$1bohoomil.com/ + + target + + + host + bohoomil.com + + + host + *.bohoomil.com + + + + + booklooker.de + + ruleset + + name + booklooker.de + rule + + + from + ^http://(?:www\.)?(?:secure\.)?booklooker\.de/ + to + https://secure.booklooker.de/ + + + from + ^http://(?:www\.)?images\.booklooker\.de/ + to + https://images.booklooker.de/ + + + securecookie + + host + ^(?:www\.)?(?:images\.|secure\.)?booklooker\.de$ + name + .+ + + target + + + host + booklooker.de + + + host + *.booklooker.de + + + + + boost (partial) + + ruleset + + name + boost (partial) + rule + + + from + ^http://lists\.boost\.org/(?:\?.*)?$ + to + https://lists.boost.org/mailman/listinfo.cgi + + + from + ^http://(lists|svn)\.boost\.org/ + to + https://$1.boost.org/ + + + securecookie + + host + ^svn\.boost\.org$ + name + .* + + target + + host + *.boost.org + + + + boum.org + + ruleset + + name + boum.org + rule + + + from + ^http://boum\.org/ + to + https://boum.org/ + + + from + ^http://([^/:@\.]+)\.boum\.org/ + to + https://$1.boum.org/ + + + target + + + host + boum.org + + + host + *.boum.org + + + + + bouncebidder.com + + ruleset + + name + bouncebidder.com + rule + + from + ^http://bouncebidder\.com/ + to + https://bouncebidder.com/ + + target + + host + bouncebidder.com + + + + boxopus.com + + ruleset + + name + boxopus.com + rule + + from + ^http://(www\.)?boxopus\.com/ + to + https://$1boxopus.com/ + + target + + + host + boxopus.com + + + host + www.boxopus.com + + + + + braincert.org + + ruleset + + name + braincert.org + rule + + from + ^http://(www\.)?braincert\.org/ + to + https://$1braincert.org/ + + securecookie + + host + ^\.braincert\.org$ + name + .+ + + target + + + host + braincert.org + + + host + *.braincert.org + + + + + brand-server.com + + ruleset + + name + brand-server.com + rule + + from + ^http://t\.brand-server\.com/ + to + https://t.brand-server.com/ + + securecookie + + host + ^t\.brand-server\.com$ + name + .+ + + target + + host + t.brand-server.com + + + + break.com + + ruleset + + name + break.com + rule + + from + ^http://media1\.break\.com/ + to + https://media1.break.com/ + + target + + host + media1.break.com + + + + brevado + + ruleset + + name + brevado + rule + + from + ^http://(www\.)?brevado\.com/ + to + https://$1brevado.com/ + + securecookie + + host + ^\.brevado\.com$ + name + .+ + + target + + + host + brevado.com + + + host + *.brevado.com + + + + + briandunning.com + + ruleset + + name + briandunning.com + rule + + from + ^http://(www\.)?briandunning\.com/ + to + https://$1briandunning.com/ + + securecookie + + host + ^www\.briandunning\.com$ + name + .* + + target + + + host + briandunning.com + + + host + www.briandunning.com + + + + + brmlab + + ruleset + + name + brmlab + rule + + from + ^http://(?:www\.)?brmlab\.cz/ + to + https://www.brmlab.cz/ + + securecookie + + host + ^(?:www\.)?brmlab\.cz$ + name + .* + + target + + + host + www.brmlab.cz + + + host + brmlab.cz + + + + + btc.to + + ruleset + + name + btc.to + rule + + from + ^https?://(?:www\.)?btc\.to/ + to + https://btc.to/ + + securecookie + + host + ^btc\.to$ + name + .+ + + target + + + host + btc.to + + + host + www.btc.to + + + + + btjunkie + + ruleset + + name + btjunkie + platform + mixedcontent + rule + + + from + ^http://dl\.btjunkie\.org/ + to + https://dl.btjunkie.org/ + + + from + ^https?://(?:www\.)?btjunkie\.org/ + to + https://btjunkie.org/ + + + target + + + host + btjunkie.org + + + host + www.btjunkie.org + + + host + dl.btjunkie.org + + + + + buch.ch + + ruleset + + name + buch.ch + rule + + from + ^http://(?:www\.)?buch\.ch/ + to + https://www.buch.ch/ + + target + + + host + buch.ch + + + host + www.buch.ch + + + + + budgetkredit.ch (partial) + + ruleset + + name + budgetkredit.ch (partial) + rule + + from + ^http://(www\.)?budgetkredit\.ch/(core/|css/|de/kredit/kreditantrag/antrag\.php|pix/) + to + https://$1budgetkredit.ch/$2 + + target + + + host + budgetkredit.ch + + + host + www.budgetkredit.ch + + + + + bugzil.la + + ruleset + + name + bugzil.la + rule + + from + ^http://(www\.)?bugzil\.la/ + to + https://$1bugzil.la/ + + target + + + host + bugzil.la + + + host + www.bugzil.la + + + + + bunadformenn.info (partial) + + ruleset + + name + bunadformenn.info (partial) + rule + + from + ^http://cdn\.bunadformenn\.info/ + to + https://dml5atgx9m0j8.cloudfront.net/ + + target + + host + cdn.bunadformenn.info + + + + buzzdoes.com + + ruleset + + name + buzzdoes.com + rule + + from + ^http://(www\.)?buzzdoes\.com/ + to + https://$1buzzdoes.com/ + + securecookie + + host + ^(?:www\.)?buzzdoes\.com$ + name + .+ + + target + + + host + buzzdoes.com + + + host + www.buzzdoes.com + + + + + bwbx.io + + ruleset + + name + bwbx.io + rule + + from + ^http://images\.bwbx\.io/ + to + https://d3kfrplp7t05mg.cloudfront.net/ + + target + + host + images.bwbx.io + + + + by David Wittig.com + + ruleset + + name + by David Wittig.com + rule + + from + ^http://(www\.)?bydavidwittig\.com/ + to + https://$1bydavidwittig.com/ + + securecookie + + host + ^\.?bydavidwittig\.com$ + name + .+ + + target + + + host + bydavidwittig.com + + + host + *.bydavidwittig.com + + + + + c-and-a.com + + ruleset + + name + c-and-a.com + rule + + + from + ^http://(?:www\.)?c-and-a\.com/ + to + https://www.c-and-a.com/ + + + from + ^http://postview\.c-and-a\.com/ + to + https://postview.c-and-a.com/ + + + securecookie + + host + ^(?:www)?\.c-and-a\.com$ + name + .+ + + target + + + host + c-and-a.com + + + host + *.c-and-a.com + + + + + c.dk + + ruleset + + name + c.dk + rule + + from + ^http://i(\d)?\.c\.dk/ + to + https://i$1.c.dk/ + + target + + host + *.c.dk + + + + c4tw.net (partial) + + ruleset + + name + c4tw.net (partial) + rule + + from + ^http://(s[01]\.)?c4tw\.net/ + to + https://$1c4tw.net/ + + target + + + host + c4tw.net + + + host + s0.c4tw.net + + + + + cPanel (partial) + + ruleset + + name + cPanel (partial) + platform + mixedcontent + rule + + from + ^http://((?:blog|docs|documentation|forums|manage2|mt|partnernoc|podcast|tickets|verify|videos|www)\.)?cpanel\.net/ + to + https://$1cpanel.net/ + + securecookie + + host + ^(?:.*\.)?cpanel\.net$ + name + .+ + + target + + + host + cpanel.net + + + host + *.cpanel.net + + + + + cPanel.guru + + ruleset + + name + cPanel.guru + rule + + from + ^http://(www\.)?cpanel\.guru/ + to + https://$1cpanel.guru/ + + target + + + host + cpanel.guru + + + host + www.cpanel.guru + + + + + cXense + + ruleset + + name + cXense + rule + + + from + ^http://s?cdn\.cxense\.com/ + to + https://scdn.cxense.com/ + + + from + ^http://(comcluster|(?:s-)?adserver(?:\.sandbox)?\.cxad|wiki)\.cxense\.com/ + to + https://$1.cxense.com/ + + + securecookie + + + host + ^\.cxense\.com$ + name + ^gck\w$ + + + host + ^wiki\.cxense\.com$ + name + .+ + + + target + + host + *.cxense.com + + + + cafegate.com + + ruleset + + name + cafegate.com + rule + + from + ^http://(www\.)?cafegate\.com/ + to + https://$1cafegate.com/ + + securecookie + + host + ^\.cafegate.com$ + name + .+ + + target + + + host + cafegate.com + + + host + *.cafegate.com + + + + + calyx.net + + ruleset + + name + calyx.net + rule + + from + ^http://(?:www\.)?calyx\.net/ + to + https://calyx.net/ + + target + + + host + calyx.net + + + host + www.calyx.net + + + + + camaya.net + + ruleset + + name + camaya.net + rule + + from + ^http://(www\.)?camaya\.net/ + to + https://$1camaya.net/ + + securecookie + + host + ^camaya\.net$ + name + .+ + + target + + + host + camaya.net + + + host + www.camaya.net + + + + + camelcamelcamel (partial) + + ruleset + + name + camelcamelcamel (partial) + rule + + from + ^http://s3\.(antimac\.org|camelcamelcamel\.com)/ + to + https://s3.amazonaws.com/s3.$1/ + + target + + + host + s3.antimac.org + + + host + s3.camelcamelcamel.com + + + + + canaltech.com.br + + ruleset + + name + canaltech.com.br + rule + + from + ^http://(img|thumbs4)\.canaltech\.com\.br/ + to + https://a248.e.akamai.net/f/248/282/10/$1.canaltech.com.br/ + + target + + host + *.canaltech.com.br + + + + cape-it.de (partial) + + ruleset + + name + cape-it.de (partial) + rule + + from + ^http://support\.cape-it\.de/ + to + https://support.cape-it.de/ + + target + + host + support.cape-it.de + + + + capwiz.com (partail) + + ruleset + + name + capwiz.com (partail) + rule + + from + ^http://secure(ff|image)s\.capwiz\.com/ + to + https://secure$1s.capwiz.com/ + + target + + host + *.capwiz.com + + + + carrier-lost.org + + ruleset + + name + carrier-lost.org + rule + + from + ^http://(www\.)?carrier-lost\.org/ + to + https://$1carrier-lost.org/ + + target + + + host + carrier-lost.org + + + host + www.carrier-lost.org + + + + + cashback4you + + ruleset + + name + cashback4you + rule + + from + ^http://(www\.)?cashback4you\.de/ + to + https://$1cashback4you.de/ + + securecookie + + host + ^(?:www\.)?cashback4you\.de$ + name + .+ + + target + + + host + cashback4you.de + + + host + www.cashback4you.de + + + + + ccc.de (CAcert) + + ruleset + + exclusion + + pattern + ^http://(?:(?:blog\.)?chaosradio|desalte|ds)\.ccc\.de/ + + name + ccc.de (CAcert) + platform + cacert + rule + + + from + ^http://ccc\.de/ + to + https://www.ccc.de/ + + + from + ^http://static\.media\.ccc\.de/ + to + https://media.ccc.de/ + + + from + ^http://([^/:@\.]+)\.ccc\.de/ + to + https://$1.ccc.de/ + + + securecookie + + host + ^svn\.berlin\.ccc\.de$ + name + .+ + + target + + + host + ccc.de + + + host + *.ccc.de + + + + + cdig.me + + ruleset + + name + cdig.me + rule + + from + ^http://(www\.)?cdig\.me/ + to + https://$1cdig.me/ + + securecookie + + host + ^(?:w*\.)?cdig\.me$ + name + .+ + + target + + + host + cdig.me + + + host + *.cdig.me + + + + + cdn-net.com + + ruleset + + name + cdn-net.com + rule + + from + ^http://(www\.)?cdn-net\.com/ + to + https://$1cdn-net.com/ + + target + + + host + cdn-net.com + + + host + www.cdn-net.com + + + + + cdncomputer.com + + ruleset + + name + cdncomputer.com + rule + + from + ^http://cdn\.cdncomputer\.com/ + to + https://d1eiwcwqdd4h4w.cloudfront.net/ + + target + + host + cdn.cdncomputer.com + + + + cdnjs + + ruleset + + name + cdnjs + rule + + from + ^http://(www\.)?cdnjs\.com/ + to + https://$1cdnjs.com/ + + target + + + host + cdnjs.com + + + host + www.cdnjs.com + + + + + cede + + ruleset + + name + cede + rule + + from + ^http://(?:www\.)?cede\.ch/ + to + https://www.cede.ch/ + + target + + + host + cede.ch + + + host + www.cede.ch + + + + + cf-example.com + + ruleset + + name + cf-example.com + rule + + from + ^https?://(?:www\.)?cf-example\.com/ + to + https://www.cf-example.com/ + + securecookie + + host + ^\.cf-example\.com$ + name + .+ + + target + + + host + cf-example.com + + + host + *.cf-example.com + + + + + ch.ch + + ruleset + + name + ch.ch + rule + + + from + ^https?://ch\.ch/ + to + https://www.ch.ch/ + + + from + ^http://([^/:@]+)?\.ch\.ch/ + to + https://$1.ch.ch/ + + + securecookie + + host + ^(?:www\.)?\.ch\.ch$ + name + .+ + + target + + + host + ch.ch + + + host + *.ch.ch + + + + + ch9.ms (partial) + + ruleset + + name + ch9.ms (partial) + rule + + + from + ^http://(?:www\.)?ch9\.ms/+(?:$|\?.*) + to + https://channel9.msdn.com/ + + + from + ^http://video\.ch9\.ms/ + to + https://a248.e.akamai.net/f/248/3922/10/video.ch9.ms/ + + + target + + + host + ch9.ms + + + host + *.ch9.ms + + + + + channelme.tv + + ruleset + + name + channelme.tv + rule + + from + ^http://(?:cdn-)?media\.channelme\.tv/ + to + https://media.channelme.tv/ + + target + + host + *.channelme.tv + + + + chaox.net + + ruleset + + name + chaox.net + platform + cacert + rule + + from + ^http://(www\.)?chaox\.net/ + to + https://$1chaox.net/ + + target + + + host + chaox.net + + + host + www.chaox.net + + + + + charity water.org + + ruleset + + name + charity water.org + rule + + + from + ^http://((?:d2p|f01|my|www)\.)?charitywater\.org/ + to + https://$1charitywater.org/ + + + from + ^http://store\.charitywater\.com/ + to + https://charitywater.myshopify.com/ + + + securecookie + + host + ^(?:www\.)?charitywater\.org$ + name + .+ + + target + + + host + charitywater.org + + + host + *.charitywater.org + + + + + chdir.org (partial) + + ruleset + + name + chdir.org (partial) + rule + + from + ^http://(?:(nico\.)|www\.)?chdir\.org/ + to + https://$1chdir.org/ + + target + + + host + chdir.org + + + host + *.chdir.org + + + + + chinadialogue.net + + ruleset + + name + chinadialogue.net + rule + + from + ^http://(?:www\.)?chinadialogue\.net/ + to + https://www.chinadialogue.net/ + + securecookie + + host + ^\.chinadialogue\.net$ + name + .+ + + target + + + host + chinadialogue.net + + + host + *.chinadialogue.net + + + + + chroot-me.in + + ruleset + + name + chroot-me.in + rule + + from + ^http://(ssl\.)?chroot-me\.in/ + to + https://$1chroot-me.in/ + + target + + + host + chroot-me.in + + + host + ssl.chroot-me.in + + + + + chs.us + + ruleset + + name + chs.us + rule + + from + ^http://(www\.)?chs\.us/ + to + https://$1chs.us/ + + target + + + host + chs.us + + + host + www.chs.us + + + + + cinapalace.com + + ruleset + + name + cinapalace.com + rule + + from + ^http://(www\.)?cinapalace\.com/ + to + https://$1cinapalace.com/ + + securecookie + + host + ^(?:www\.)?cinapalace\.com$ + name + .+ + + target + + + host + cinapalace.com + + + host + *.cinapalace.com + + + + + cineble.com + + ruleset + + name + cineble.com + rule + + from + ^http://(www\.)?cineble\.com/ + to + https://$1cineble.com/ + + securecookie + + host + ^(?:w*\.)?cineble\.com$ + name + .+ + + target + + + host + cineble.com + + + host + *.cineble.com + + + + + cirw.in + + ruleset + + name + cirw.in + rule + + from + ^http://(www\.)?cirw\.in/ + to + https://$1cirw.in/ + + securecookie + + host + ^\.cirw\.in$ + name + .+ + + target + + + host + cirw.in + + + host + *.cirw.in + + + + + cleverbridge (partial) + + ruleset + + exclusion + + + pattern + ^http://(events|saas)\. + + + pattern + ^http://message\.cleverbridge\.com/bin/icon_generator\?key=captcha-key$ + + + name + cleverbridge (partial) + rule + + from + ^http://(\w+)\.cleverbridge\.(?:com|org)/ + to + https://$1.cleverbridge.com/ + + securecookie + + host + ^(.*\.)cleverbridge\.com$ + name + .* + + target + + + host + cleverbridge.com + + + host + *.cleverbridge.com + + + host + cleverbridge.org + + + host + *.cleverbridge.org + + + + + clicks.lv (partial) + + ruleset + + name + clicks.lv (partial) + rule + + from + ^http://apps\.clicks\.lv/ + to + https://apps.clicks.lv/ + + target + + host + apps.clicks.lv + + + + clkads.com + + ruleset + + name + clkads.com + rule + + from + ^http://(?:www\.)?clk(?:ads|mon|rev)\.com/ + to + https://clkads.com/ + + target + + + host + clkads.com + + + host + www.clkads.com + + + host + clkmon.com + + + host + www.clkmon.com + + + host + clkrev.com + + + host + www.clkrev.com + + + + + cloudControl.com (partial) + + ruleset + + name + cloudControl.com (partial) + rule + + + from + ^http://(?:www\.)?cloudcontrol\.com/ + to + https://www.cloudcontrol.com/ + + + from + ^http://api\.cloudcontrol\.com/ + to + https://api.cloudcontrol.com/ + + + target + + + host + cloudcontrol.com + + + host + *.cloudcontrol.com + + + + + cloudset.net + + ruleset + + name + cloudset.net + rule + + from + ^http://(app|index\.app|integrator|qa)\.cloudset\.net/ + to + https://$1.cloudset.net/ + + target + + host + *.cloudset.net + + + + clssl.org + + ruleset + + name + clssl.org + rule + + from + ^http://(www\.)?clssl\.org/ + to + https://$1clssl.org/ + + securecookie + + host + ^\.clssl\.org$ + name + .+ + + target + + + host + clssl.org + + + host + *.clssl.org + + + + + cnzz.com + + ruleset + + name + cnzz.com + rule + + from + ^http://s25\.cnzz\.com/ + to + https://s25.cnzz.com/ + + target + + host + s25.cnzz.com + + + + co-operative bank + + ruleset + + name + co-operative bank + rule + + + from + ^http://(?:www\.)?co-operativebank\.co\.uk/ + to + https://www.co-operativebank.co.uk/ + + + from + ^http://personal\.co-operativebank\.co\.uk/ + to + https://personal.co-operativebank.co.uk/ + + + securecookie + + host + ^.*\.co-operativebank\.co\.uk$ + name + .* + + target + + + host + co-operativebank.co.uk + + + host + *.co-operativebank.co.uk + + + + + codefund.io (partial) + + ruleset + + name + codefund.io (partial) + rule + + from + ^http://(app\.|www\.)?codefund\.io/ + to + https://$1codefund.io/ + + target + + + host + codefund.io + + + host + *.codefund.io + + + + + codespeak + + ruleset + + name + codespeak + rule + + from + ^http://(www\.)?codespeak\.net/ + to + https://$1codespeak.net/ + + target + + + host + codespeak.net + + + host + www.codespeak.net + + + + + collectd.org + + ruleset + + name + collectd.org + rule + + from + ^http://(www\.)?collectd\.org/ + to + https://$1collectd.org/ + + target + + + host + collectd.org + + + host + www.collectd.org + + + + + colors-il.com + + ruleset + + name + colors-il.com + rule + + from + ^http://(www\.)?colors-il\.com/ + to + https://$1colors-il.com/ + + securecookie + + host + ^(?:w*\.)?colors-il.com$ + name + .+ + + target + + + host + colors-il.com + + + host + *.colors-il.com + + + + + com100.cn + + ruleset + + name + com100.cn + rule + + from + ^http://(chatserver|hosted)\.comm100\.cn/ + to + https://$1.comm100.cn/ + + securecookie + + host + ^chatserver\.comm100\.cn$ + name + .+ + + target + + host + *.comm100.cn + + + + comScore Data Mine.com + + ruleset + + name + comScore Data Mine.com + rule + + from + ^http://(www\.)?comscoredatamine\.com/ + to + https://$1comscoredatamine.com/ + + target + + + host + comscoredatamine.com + + + host + www.comscoredatamine.com + + + + + comScore.com (partial) + + ruleset + + name + comScore.com (partial) + rule + + + from + ^http://(?:www\.)?comscore\.com/ + to + https://www.comscore.com/ + + + from + ^http://(autodiscover|dax|dax-files|my|siterecruit)\.comscore\.com/ + to + https://$1.comscore.com/ + + + from + ^http://ir\.shareholder\.com/common/ + to + https://investor.shareholder.com/common/ + + + from + ^http://(?:web)?mail\.comscore\.com/ + to + https://mail.comscore.com/ + + + from + ^http://(?:www\.)?nedstat\.com/ + to + https://dax-files.comescore.com/ + + + securecookie + + host + ^(?:mail|my)\.comscore\.com$ + name + .* + + target + + + host + comscore.com + + + host + *.comscore.com + + + host + nedstat.com + + + host + www.nedstat.com + + + + + comdirect bank + + ruleset + + name + comdirect bank + rule + + + from + ^http://(?:www\.)?comdirect\.de/ + to + https://www.comdirect.de/ + + + from + ^http://kunde\.comdirect\.de/ + to + https://kunde.comdirect.de/ + + + target + + + host + kunde.comdirect.de + + + host + www.comdirect.de + + + host + comdirect.de + + + + + comiXology.com (partial) + + ruleset + + name + comiXology.com (partial) + rule + + + from + ^http://(?:www\.)?comixology\.com/(assets/|login(?:$|\?)) + to + https://www.comixology.com/$1 + + + from + ^http://(pulllist|retailers|(?:store|www)-images|submit)\.comixology\.com/ + to + https://$1.comixology.com/ + + + from + ^http://support\.comixology\.com/favicon\.ico + to + https://d3jyn100am7dxp.cloudfront.net/favicon.ico + + + securecookie + + host + ^(?:pulllist|retailers|store-images|submit)\.comixology\.com$ + name + .+ + + target + + + host + comixology.com + + + host + *.comixology.com + + + + + comm100.com + + ruleset + + name + comm100.com + rule + + from + ^http://chatserver\.comm100\.com/ + to + https://chatserver.comm100.com/ + + target + + host + chatserver.comm100.com + + + + commindo media (partial) + + ruleset + + name + commindo media (partial) + rule + + from + ^http://auslieferung\.commindo-media-ressourcen\.de/ + to + https://auslieferung.commindo-media-ressourcen.de/ + + target + + host + auslieferung.commindo-media-ressourcen.de + + + + computeruniverse + + ruleset + + name + computeruniverse + rule + + + from + ^https?://computeruniverse\.net/ + to + https://www.computeruniverse.net/ + + + from + ^http://(\w+)\.computeruniverse\.net/ + to + https://$1.computeruniverse.net/ + + + securecookie + + host + ^www\.computeruniverse\.net$ + name + .+ + + target + + + host + computeruniverse.net + + + host + *.computeruniverse.net + + + + + con-tech.de (partial) + + ruleset + + name + con-tech.de (partial) + rule + + from + ^http://ct-cds\.con-tech\.de/ + to + https://ct-cds.con-tech.de/ + + securecookie + + host + ^ct-cds\.con-tech\.de$ + name + .+ + + target + + host + ct-cds.con-tech.de + + + + concrete5 (partial) + + ruleset + + name + concrete5 (partial) + rule + + from + ^http://(www\.)?concrete5\.org/ + to + https://$1concrete5.org/ + + securecookie + + host + ^(?:www\.)?concrete5\.org$ + name + .+ + + target + + + host + concrete5.org + + + host + www.concrete5.org + + + + + conduit-data.com + + ruleset + + name + conduit-data.com + rule + + from + ^http://([\w-]+)\.conduit-data\.com/ + to + https://$1.conduit-data.com/ + + securecookie + + host + ^\.conduit-data\.com$ + name + .+ + + target + + host + *.conduit-data.com + + + + congstar + + ruleset + + name + congstar + rule + + + from + ^https?://(?:www\.)?congstar\.de/ + to + https://www.congstar.de/ + + + from + ^http://(gewinnspiel|mgm)\.congstar\.de/ + to + https://$1.congstar.de/ + + + securecookie + + host + ^.*\.congstar\.de$ + name + .* + + target + + + host + congstar.de + + + host + *.congstar.de + + + + + connextra.com (partial) + + ruleset + + name + connextra.com (partial) + rule + + + from + ^http://ff\.connextra\.com/ + to + https://a248.e.akamai.net/f/22/8130/7/ff.connextra.com/ + + + from + ^http://workbench\.connextra\.com/ + to + https://workbench.connextra.com/ + + + securecookie + + host + ^workbench\.connextra\.com$ + name + .+ + + target + + host + *.connextra.com + + + + contentabc.com + + ruleset + + name + contentabc.com + rule + + from + ^http://ads(2)?\.contentabc\.com/ + to + https://ads$1.contentabc.com/ + + target + + host + *.contentabc.com + + + + contentdn.net + + ruleset + + name + contentdn.net + rule + + from + ^http://contentdn\.net/ + to + https://contentdn.net/ + + target + + host + contentdn.net + + + + coreboot (partial) + + ruleset + + name + coreboot (partial) + platform + cacert + rule + + from + ^http://((?:blogs|tracker|www)\.)?coreboot\.org/ + to + https://$1coreboot.org/ + + securecookie + + host + .*\.coreboot\.org$ + name + .+ + + target + + + host + coreboot.org + + + host + *.coreboot.org + + + + + corpimages.de + + ruleset + + name + corpimages.de + rule + + from + ^http://(?:www\.)?corpimages\.de/ + to + https://corpimages.de/ + + target + + + host + corpimages.de + + + host + www.corpimages.de + + + + + corporate-ir.net (partial) + + ruleset + + exclusion + + pattern + ^http://(?:(?:phoenix|phx|www)\.)?corporate-ir\.net/(?!External\.File\?|HttpCombiner\.ashx|media_files/|WebSideStory/|client/\d+/\d+/css/) + + name + corporate-ir.net (partial) + rule + + + from + ^http://phx\.corporate-ir\.net/HttpCombiner\.ashx + to + https://origin-phoenix.corporate-ir.net/HttpCombiner.ashx + + + from + ^http://(?:(?:origin-)?media|phx)\.corporate-ir\.net/ + to + https://a248.e.akamai.net/f/121/1/1/phx.corporate-ir.net/ + + + from + ^http://origin-(phoenix|www)\.corporate-ir\.net/ + to + https://origin-$1.corporate-ir.net/ + + + from + ^http://(phoenix|www)\.corporate-ir\.net/ + to + https://a248.e.akamai.net/f/121/1/1/$1.corporate-ir.net/ + + + securecookie + + host + ^origin-phoenix\.corporate-ir\.net$ + name + .+ + + target + + host + *.corporate-ir.net + + + + coxnewsweb.net + + ruleset + + name + coxnewsweb.net + rule + + + from + ^http://img\.coxnewsweb\.com/ + to + https://img.coxnewsweb.com/ + + + from + ^http://alt\.coxnewsweb\.com/ + to + https://alt.coxnewsweb.com/ + + + target + + + host + coxnewsweb.com + + + host + img.coxnewsweb.com + + + host + alt.coxnewsweb.com + + + + + cpaptalk.com (partial) + + ruleset + + name + cpaptalk.com (partial) + rule + + from + ^http://(www\.)?cpaptalk\.com/(?=cdn-cgi/|images/|mobiquo/|styles/) + to + https://$1cpaptalk.com/ + + target + + + host + cpaptalk.com + + + host + www.cpaptalk.com + + + + + cpaste + + ruleset + + name + cpaste + rule + + from + ^http://(www\.)?cpaste\.org/ + to + https://$1cpaste.org/ + + securecookie + + host + ^cpaste\.org$ + name + .+ + + target + + + host + cpaste.org + + + host + www.cpaste.org + + + + + cpunk.de (partial) + + ruleset + + name + cpunk.de (partial) + platform + cacert + rule + + from + ^http://gpg4usb\.cpunk\.de/ + to + https://gpg4usb.cpunk.de/ + + target + + host + gpg4usb.cpunk.de + + + + cr0.org (partial) + + ruleset + + name + cr0.org (partial) + rule + + + from + ^http://(www\.)?cr0\.org/ + to + https://$1cr0.org/ + + + from + ^http://www-pw\.cr0\.org/ + to + https://www.cr0.org/ + + + target + + + host + cr0.org + + + host + *.cr0.org + + + + + crackedconsole.com + + ruleset + + name + crackedconsole.com + rule + + from + ^http://(www\.)?crackedconsole\.com/ + to + https://$1crackedconsole.com/ + + securecookie + + host + ^\.crackedconsole\.com$ + name + .+ + + target + + + host + crackedconsole.com + + + host + *.crackedconsole.com + + + + + createsend1.com + + ruleset + + name + createsend1.com + rule + + from + ^http://(btn|css|img)\.createsend1\.com/ + to + https://$1.createsend1.com/ + + target + + host + *.createsend1.com + + + + creative-serving.com (partial) + + ruleset + + name + creative-serving.com (partial) + rule + + from + ^http://ads\.creative-serving\.com/ + to + https://ads.creative-serving.com/ + + securecookie + + host + ^ads\.creative-serving\.com$ + name + .+ + + target + + host + ads.creative-serving.com + + + + cru.fr + + ruleset + + name + cru.fr + rule + + + from + ^http://(listes|subversion|svn|www)\.cru\.fr/ + to + https://$1.cru.fr/ + + + from + ^http://(git|sourcesup)\.cru\.fr/ + to + https://$1.renater.fr/ + + + securecookie + + host + ^www\.cru\.fr$ + name + .+ + + target + + host + *.cru.fr + + + + cryptomilk.org (partial) + + ruleset + + name + cryptomilk.org (partial) + rule + + from + ^http://(blog|milliways)\.cryptomilk\.org/ + to + https://$1.cryptomilk.org/ + + securecookie + + host + ^blog\.cryptomilk\.org$ + name + .+ + + target + + host + *.cryptomilk.org + + + + cryptonit + + ruleset + + name + cryptonit + rule + + from + ^http://(?:www\.)?cryptonit\.net/ + to + https://cryptonit.net/ + + securecookie + + host + ^\.cryptonit\.net$ + name + .+ + + target + + + host + cryptonit.net + + + host + *.cryptonit.net + + + + + csn static.com (partial) + + ruleset + + name + csn static.com (partial) + rule + + from + ^http://css\.csnstatic\.com/(?=(?:carcontent/carsales/editorial/editorial-prev-next-hide|design/desktoplayouts/motoring/layout|tig/desktopmodules/memberui/subscription/subscriptiondialog/subscriptiondialog)\.css) + to + https://a248.e.akamai.net/f/1835/3350/2/css.csnstatic.com/ + + target + + host + css.csnstatic.com + + + + csquad.org + + ruleset + + name + csquad.org + rule + + from + ^http://(www\.)?csquad\.org/ + to + https://$1csquad.org/ + + target + + + host + csquad.org + + + host + www.csquad.org + + + + + csync.org + + ruleset + + name + csync.org + rule + + from + ^http://(www\.)?csync\.org/ + to + https://$1csync.org/ + + target + + + host + csync.org + + + host + www.csync.org + + + + + ctt.org + + ruleset + + name + ctt.org + rule + + from + ^http://(?:www\.)?ctt\.org/ + to + https://www.ctt.org/ + + target + + + host + ctt.org + + + host + www.ctt.org + + + + + curiosity-driven.org + + ruleset + + name + curiosity-driven.org + rule + + from + ^http://(?:www\.)?curiosity-driven\.org/ + to + https://curiosity-driven.org/ + + target + + + host + curiosity-driven.org + + + host + www.curiosity-driven.org + + + + + customersaas.com + + ruleset + + name + customersaas.com + rule + + + from + ^https?://imageservice\.customersaas\.com/ + to + https://d35v9wsdymy32b.cloudfront.net/ + + + from + ^https?://static1\.customersaas\.com/ + to + https://d1wawgqwk8hdm1.cloudfront.net/ + + + target + + host + *.customersaas.com + + + + customersvc.com + + ruleset + + name + customersvc.com + rule + + from + ^http://(chat1|secure)\.customersvc\.com/ + to + https://$1.customersvc.com/ + + securecookie + + host + ^secure\.customersvc\.com$ + name + .+ + + target + + host + *.customersvc.com + + + + cxsecurity.com + + ruleset + + name + cxsecurity.com + rule + + from + ^http://(?:www\.)?cxsecurity\.com/ + to + https://cxsecurity.com/ + + securecookie + + host + ^cxsecurity\.com$ + name + .+ + + target + + + host + cxsecurity.com + + + host + www.cxsecurity.com + + + + + cyberciti.org + + ruleset + + name + cyberciti.org + rule + + from + ^http://s0\.cyberciti\.org/ + to + https://d2m4hyssawyie7.cloudfront.net/ + + target + + host + s0.cyberciti.org + + + + cypouz.com + + ruleset + + name + cypouz.com + platform + cacert + rule + + from + ^http://(photo\.|www\.)?cypouz\.com/ + to + https://$1cypouz.com/ + + securecookie + + host + ^photo\.cypouz\.com$ + name + .+ + + target + + + host + cypouz.com + + + host + *.cypouz.com + + + + + cyscon.net (partial) + + ruleset + + name + cyscon.net (partial) + rule + + from + ^http://stats\.cyscon\.net/ + to + https://stats.cyscon.net/ + + target + + host + stats.cyscon.net + + + + d0wn.biz (partial) + + ruleset + + name + d0wn.biz (partial) + rule + + from + ^http://(dns\.)?d0wn\.biz/ + to + https://$1d0wn.biz/ + + target + + + host + d0wn.biz + + + host + dns.d0wn.biz + + + + + dBforums + + ruleset + + name + dBforums + rule + + from + ^http://(www\.)?dbforums\.com/ + to + https://$1dbforums.com/ + + securecookie + + host + ^(?:www)?\.dbforums\.com$ + name + .+ + + target + + + host + dbforums.com + + + host + *.dbforums.com + + + + + dabs (partial) + + ruleset + + name + dabs (partial) + rule + + + from + ^http://(?:www\.)?dabs\.com/(?=account|Article\.aspx|articles/|asp-images/|blank\.html|(?:blog|products/recently-viewed|wishlist)(?:$|[?/])|brands/(?!$)|[cC]ss/|checkout|clearance-corner|cms/|contact/|forms/|forum/|go/|[iI]mages/|learn-more|my-dabs|register|[sS]cripts/|SimpleContent/) + to + https://www.dabs.com/ + + + from + ^http://reporting\.dabs\.com/ + to + https://reporting.dabs.com/ + + + target + + + host + dabs.com + + + host + *.dabs.com + + + + + dafdirect.org + + ruleset + + name + dafdirect.org + rule + + from + ^http://(?:www\.)?dafdirect\.org/ + to + https://www.dafdirect.org/ + + target + + + host + dafdirect.org + + + host + www.dafdirect.org + + + + + dakko.us (partial) + + ruleset + + name + dakko.us (partial) + rule + + + from + ^http://(www-s\.)?dakko\.us/ + to + https://$1dakko.us/ + + + from + ^https?://www\.dakko\.us/ + to + https://www-s.dakko.us/ + + + target + + + host + dakko.us + + + host + www.dakko.us + + + host + www-s.dakko.us + + + + + dan blah.com (false MCB) + + ruleset + + name + dan blah.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?danblah\.com/ + to + https://$1danblah.com/ + + securecookie + + host + ^\.danblah\.com$ + name + .+ + + target + + + host + danblah.com + + + host + *.danblah.com + + + + + dan blah.com (partial) + + ruleset + + name + dan blah.com (partial) + rule + + from + ^http://(www\.)?danblah\.com/(?=modules/|sites/) + to + https://$1danblah.com/ + + target + + + host + danblah.com + + + host + www.danblah.com + + + + + danhlode.com + + ruleset + + name + danhlode.com + rule + + from + ^http://(www\.)?danhlode\.com/ + to + https://$1danhlode.com/ + + securecookie + + host + ^\.danhlode\.com$ + name + .+ + + target + + + host + danhlode.com + + + host + *.danhlode.com + + + + + data.fm + + ruleset + + name + data.fm + rule + + + from + ^http://data\.fm/ + to + https://data.fm/ + + + from + ^http://([\w\-_]+)\.data\.fm/ + to + https://$1.data.fm/ + + + securecookie + + host + .*\.data\.fm$ + name + .* + + target + + + host + data.fm + + + host + *.data.fm + + + + + data.gov.au + + ruleset + + name + data.gov.au + rule + + from + ^http://(?:www\.)?data\.gov\.au/ + to + https://data.gov.au/ + + target + + + host + data.gov.au + + + host + *.data.gov.au + + + + + dataHC.com + + ruleset + + name + dataHC.com + rule + + from + ^http://(cdn|media)\.datahc\.com/ + to + https://$1.datahc.com/ + + target + + host + *.datahc.com + + + + databits.net + + ruleset + + name + databits.net + rule + + from + ^http://(www\.)?databits\.net/ + to + https://$1databits.net/ + + target + + + host + databits.net + + + host + www.databits.net + + + + + datamind.ru + + ruleset + + name + datamind.ru + rule + + from + ^http://sync\.pool\.datamind\.ru/ + to + https://sync.pool.datamind.ru/ + + securecookie + + host + ^\.pool\.datamind\.ru$ + name + .+ + + target + + host + *.pool.datamind.ru + + + + daydeal + + ruleset + + name + daydeal + rule + + from + ^http://(?:www\.)?daydeal\.ch/ + to + https://www.daydeal.ch/ + + target + + + host + daydeal.ch + + + host + www.daydeal.ch + + + + + dealnews.com (partial) + + ruleset + + name + dealnews.com (partial) + rule + + from + ^http://(www\.)?dealnews\.com/(?=lw/|mydealnews/) + to + https://$1dealnews.com/ + + target + + + host + dealnews.com + + + host + www.dealnews.com + + + + + delvenetworks + + ruleset + + name + delvenetworks + rule + + from + ^http://img\.delvenetworks\.com/ + to + https://img.delvenetworks.com/ + + target + + host + img.delvenetworks.com + + + + deprexis (partial) + + ruleset + + name + deprexis (partial) + rule + + from + ^http://(system3\.|www\.)?deprexis\.com/ + to + https://$1deprexis.com/ + + securecookie + + host + ^.*\.deprexis\.com$ + name + .+ + + target + + + host + deprexis.com + + + host + *.deprexis.com + + + + + der-preis-jaeger.de + + ruleset + + name + der-preis-jaeger.de + rule + + from + ^http://(www\.)?der-preis-jaeger\.de/ + to + https://$1der-preis-jaeger.de/ + + target + + + host + der-preis-jaeger.de + + + host + www.der-preis-jaeger.de + + + + + derpy.me + + ruleset + + name + derpy.me + rule + + from + ^http://(piwik\.)?derpy\.me/ + to + https://$1derpy.me/ + + securecookie + + host + ^derpy\.me$ + name + .+ + + target + + + host + derpy.me + + + host + piwik.derpy.me + + + + + deutschepost + + ruleset + + name + deutschepost + rule + + from + ^http://www\.deutschepost\.de/ + to + https://www.deutschepost.de/ + + target + + host + www.deutschepost.de + + + + devZing.com + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?devzing\.com/blog/index\.php + + name + devZing.com + rule + + from + ^http://(support\.|www\.)?devzing\.com/ + to + https://$1devzing.com/ + + securecookie + + host + ^devzing\.com$ + name + .+ + + target + + + host + devzing.com + + + host + *.devzing.com + + + + + dgl.cx + + ruleset + + name + dgl.cx + rule + + from + ^http://(?:www\.)?dgl\.cx/ + to + https://dgl.cx/ + + target + + + host + dgl.cx + + + host + www.dgl.cx + + + + + dianomi (partial) + + ruleset + + name + dianomi (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?dianomi\.com/ + to + https://www.dianomi.com/ + + + from + ^http://cdn\.dianomi\.com/ + to + https://d3von6il1wr7wo.cloudfront.net/ + + + securecookie + + host + ^(?:.*\.)?dianomi\.com$ + name + .+ + + target + + + host + dianomi.com + + + host + *.dianomi.com + + + + + die netztaucher (partial) + + ruleset + + name + die netztaucher (partial) + rule + + from + ^http://((?:www\.)?kundenserver42|stu)\.kundenserver42\.de/ + to + https://$1.kundenserver42.de/ + + securecookie + + host + ^(?:(?:www\.)?kundenserver42|stu)\.kundenserver42\.de$ + name + .+ + + target + + host + *.kundenserver42.de + + + + digiKam.org + + ruleset + + name + digiKam.org + rule + + from + ^http://(www\.)?digikam\.org/ + to + https://$1digikam.org/ + + securecookie + + host + ^\.digikam\.org$ + name + .+ + + target + + + host + digikam.org + + + host + *.digikam.org + + + + + digitalscirocco.net + + ruleset + + name + digitalscirocco.net + rule + + from + ^http://www\.digitalscirocco\.net/ + to + https://www.digitalscirocco.net/ + + securecookie + + host + ^www\.digitalscirocco\.net$ + name + .+ + + target + + host + www.digitalscirocco.net + + + + directrev.com + + ruleset + + name + directrev.com + rule + + + from + ^http://ad\.directrev\.com/ + to + https://ad.directrev.com/ + + + from + ^http://cdn\.directrev\.com/ + to + https://d2wxwu28a4m0zf.cloudfront.net/ + + + securecookie + + host + ^ad\.directrev\.com$ + name + .+ + + target + + host + *.directrev.com + + + + disc-soft.com (partial) + + ruleset + + name + disc-soft.com (partial) + rule + + + from + ^http://(secure|img)\.disc-soft\.com/ + to + https://$1.disc-soft.com/ + + + from + ^http://(www\.)?disc-soft\.com/ + to + https://www.disc-soft.com/ + + + target + + + host + secure.disc-soft.com + + + host + disc-soft.com + + + host + www.disc-soft.com + + + host + img.disc-soft.com + + + + + discojuice.org (partial) + + ruleset + + name + discojuice.org (partial) + rule + + from + ^http://(engine|static|store)\.discojuice\.org/ + to + https://$1.discojuice.org/ + + target + + host + *.discojuice.org + + + + discshop.se + + ruleset + + name + discshop.se + rule + + from + ^http://(?:s\d\.|www\.)?discshop\.se/ + to + https://www.discshop.se/ + + securecookie + + host + ^\.?www\.discshop\.se$ + name + .+ + + target + + + host + discshop.se + + + host + *.discshop.se + + + + + disman.tl + + ruleset + + name + disman.tl + rule + + from + ^http://(www\.)?disman\.tl/ + to + https://$1disman.tl/ + + target + + + host + disman.tl + + + host + www.disman.tl + + + + + displaymarketplace.com (partial) + + ruleset + + name + displaymarketplace.com (partial) + rule + + from + ^http://(?:edge\.|secure\.)?aperture\.displaymarketplace\.com/ + to + https://secure.aperture.displaymarketplace.com/ + + target + + host + *.displaymarketplace.com + + + + divShare + + ruleset + + name + divShare + platform + mixedcontent + rule + + from + ^http://(www\.)?divshare\.com/ + to + https://$1divshare.com/ + + securecookie + + host + ^(.*\.)?divshare\.com$ + name + .* + + target + + + host + divshare.com + + + host + *.divshare.com + + + + + dlnws.com + + ruleset + + name + dlnws.com + rule + + from + ^http://s(\d)\.dlnws\.com/ + to + https://s$1.dlnws.com/ + + target + + host + *.dlnws.com + + + + dlvr.it + + ruleset + + name + dlvr.it + rule + + from + ^http://(?:(static\.)|www\.)?dlvr\.it/ + to + https://$1dlvr.it/ + + target + + + host + dlvr.it + + + host + *.dlvr.it + + + + + dmesg.gr + + ruleset + + name + dmesg.gr + rule + + from + ^http://(www\.)?dmesg\.gr/ + to + https://$1dmesg.gr/ + + target + + + host + dmesg.gr + + + host + www.dmesg.gr + + + + + dmg media (partial) + + ruleset + + name + dmg media (partial) + rule + + from + ^http://wa\.and\.co\.uk/ + to + https://and-co-uk.122.2o7.net/ + + securecookie + + host + ^\.and\.co\.uk$ + name + ^s_vi$ + + target + + host + *.and.co.uk + + + + dmri-library.com + + ruleset + + name + dmri-library.com + rule + + from + ^http://c\d\.dmri-library\.com/ + to + https://dmri.cachefly.net/ + + target + + host + *.dmri-library.com + + + + docelu.pl (partial) + + ruleset + + name + docelu.pl (partial) + platform + mixedcontent + rule + + from + ^http://(?:(trasy\.)|www\.)?docelu\.pl/ + to + https://$1docelu.pl/ + + securecookie + + host + ^(?:.+\.)?docelu\.pl$ + name + .+ + + target + + + host + docelu.pl + + + host + trasy.docelu.pl + + + host + www.docelu.pl + + + + + docstorepro.com + + ruleset + + name + docstorepro.com + rule + + from + ^http://(www\.)?docstorepro\.com/ + to + https://$1docstorepro.com/ + + securecookie + + host + ^\.docstorepro\.com$ + name + .+ + + target + + + host + docstorepro.com + + + host + *.docstorepro.com + + + + + dolphin-emu.org + + ruleset + + name + dolphin-emu.org + rule + + from + ^http://((?:dl|forums|wiki|www)\.)?dolphin-emu\.org/ + to + https://$1dolphin-emu.org/ + + securecookie + + host + .+\.dolphin-emu\.org$ + name + .+ + + target + + + host + dolphin-emu.org + + + host + *.dolphin-emu.org + + + + + domainCAMP + + ruleset + + name + domainCAMP + rule + + from + ^https?://(?:www\.)?domaincamp\.de/ + to + https://www.domaincamp.de/ + + securecookie + + host + ^www\.domaincamp\.de$ + name + .* + + target + + + host + domaincamp.de + + + host + www.domaincamp.de + + + + + domdex.com + + ruleset + + name + domdex.com + rule + + from + ^http://((?:f|magnetic|[\w-]+\.t|www)\.)?domdex\.com/ + to + https://$1domdex.com/ + + securecookie + + host + ^\.domdex\.com$ + name + .+ + + target + + + host + domdex.com + + + host + *.domdex.com + + + + + dormproject.ch + + ruleset + + name + dormproject.ch + rule + + from + ^https?://secure\.dormproject\.ch/ + to + https://secure.dormproject.ch/ + + target + + host + secure.dormproject.ch + + + + dot429 (partial) + + ruleset + + name + dot429 (partial) + rule + + + from + ^http://(www\.)?dot429\.com/(blueprint|fonts|images|packages|stylesheets)/ + to + https://$1dot429.com/$2/ + + + from + ^https?://cdn[1-5]\.dot429\.com/ + to + https://d2qmyvn67i80mw.cloudfront.net/ + + + target + + + host + dot429.com + + + host + *.dot429.com + + + + + dotCOM host + + ruleset + + name + dotCOM host + rule + + from + ^http://(\w+\.)?dotcomhost\.com/ + to + https://$1dotcomhost.com/ + + securecookie + + host + ^(.*\.)?dotcomhost\.com$ + name + .* + + target + + + host + dotcomhost.com + + + host + *.dotcomhost.com + + + host + *.webmail.dotcomhost.com + + + + + dotCloud.com (partial) + + ruleset + + name + dotCloud.com (partial) + rule + + + from + ^http://((?:blog|docs|help|status|www)\.)?dotcloud\.com/ + to + https://$1dotcloud.com/ + + + from + ^http://support\.dotcloud\.com/ + to + https://dotcloud.zendesk.com/ + + + securecookie + + host + ^www\.dotcloud\.com$ + name + .+ + + target + + + host + dotcloud.com + + + host + *.dotcloud.com + + + + + dotMailer (partial) + + ruleset + + exclusion + + pattern + ^https?://(?:www\.)?dotmailer\.co(?:m|\.uk)/(?!favicon\.ico|images/|m/css|login\.aspx|professional_email_marketing_solutions/professional_trial_signup) + + name + dotMailer (partial) + rule + + + from + ^https?://(?:www\.)?dotmailer\.com/ + to + https://www.dotmailer.com/ + + + from + ^http://(my|support)\.dotmailer\.com/ + to + https://$1.dotmailer.com/ + + + from + ^http://(www\.)?dotmailer\.co\.uk/ + to + https://$1dotmailer.co.uk/ + + + from + ^http://t\.trackedlink\.net/ + to + https://t.trackedlink.net/ + + + securecookie + + host + ^.+\.dotmailer\.com$ + name + .+ + + target + + + host + dotmailer.com + + + host + *.dotmailer.com + + + host + dotmailer.co.uk + + + host + www.dotmailer.co.uk + + + host + t.trackedlink.net + + + + + dotplex.de + + ruleset + + name + dotplex.de + rule + + from + ^http://(?:secure\.|www\.)?dotplex\.de/ + to + https://secure.dotplex.de/ + + securecookie + + host + ^secure\.dotplex\.de$ + name + .+ + + target + + + host + dotplex.de + + + host + *.dotplex.de + + + + + dotultima.com + + ruleset + + name + dotultima.com + rule + + from + ^http://(www\.)?dotultima\.com/ + to + https://$1dotultima.com/ + + securecookie + + host + ^\.dotultima\.com$ + name + .+ + + target + + + host + dotultima.com + + + host + *.dotultima.com + + + + + dreampass.jp + + ruleset + + name + dreampass.jp + rule + + from + ^http://(special\.|www\.)?dreampass\.jp/ + to + https://$1dreampass.jp/ + + securecookie + + host + ^\.dreampass\.jp$ + name + .+ + + target + + + host + dreampass.jp + + + host + *.dreampass.jp + + + + + drivee + + ruleset + + name + drivee + rule + + + from + ^http://(?:www\.)?drivee\.(?:ne\.)?jp/ + to + https://www.drivee.jp/ + + + from + ^http://secure\.drivee\.ne\.jp/ + to + https://secure.drivee.ne.jp/ + + + target + + + host + drivee.jp + + + host + www.drivee.jp + + + host + drivee.ne.jp + + + host + *.drivee.ne.jp + + + + + drugpolicy.org + + ruleset + + name + drugpolicy.org + rule + + + from + ^http://(www\.)?drugpolicy\.org/ + to + https://www.drugpolicy.org/ + + + from + ^https://drugpolicy\.org/ + to + https://www.drugpolicy.org/ + + + securecookie + + host + ^(www)?\.drugpolicy\.org + name + .* + + target + + + host + www.drugpolicy.org + + + host + drugpolicy.org + + + + + drugstore.com (partial) + + ruleset + + name + drugstore.com (partial) + rule + + + from + ^http://(cfs\.|dscmp1\.|www\.)?drugstore\.com/(css/|img/|user(?:$|[\?/])) + to + https://$1drugstore.com/$2 + + + from + ^http://pics([123])?\.drugstore\.com/ + to + https://pics$1.drugstore.com/ + + + from + ^http://pics([123])?\.ds-static\.com/ + to + https://pics$1.ds-static.com/ + + + target + + + host + drugstore.com + + + host + *.drugstore.com + + + host + *.ds-static.com + + + + + dshop.se + + ruleset + + name + dshop.se + rule + + from + ^http://(www\.)?dshop\.se/ + to + https://$1dshop.se/ + + securecookie + + host + ^\.dshop\.se$ + name + .+ + + target + + + host + dshop.se + + + host + *.dshop.se + + + + + dubfire.net + + ruleset + + name + dubfire.net + rule + + from + ^http://(www\.)?dubfire\.net/ + to + https://$1dubfire.net/ + + target + + + host + dubfire.net + + + host + www.dubfire.net + + + + + dustri.org + + ruleset + + name + dustri.org + platform + cacert + rule + + from + ^http://(kiwie\.|www\.)?dustri\.org/ + to + https://$1dustri.org/ + + target + + + host + dustri.org + + + host + *.dustri.org + + + + + dydx.io + + ruleset + + name + dydx.io + rule + + from + ^http://(?:www\.)?dydx\.io/ + to + https://dydx.io/ + + securecookie + + host + ^\.?dydx\.io$ + name + .+ + + target + + + host + dydx.io + + + host + *.dydx.io + + + + + dynaTrace (partial) + + ruleset + + name + dynaTrace (partial) + rule + + + from + ^https?://(?:(ajax\.)|cdn\.|(www\.))?dynatrace\.com/(App_Themes/|en/partner_login\.html|favicon\.ico|images/|Login/|WebResource\.axd) + to + https://$1$2dynatrace.com/$3 + + + from + ^http://support\.dynatrace\.com/ + to + https://support.dynatrace.com/ + + + securecookie + + host + ^support\.dynatrace\.com$ + name + .* + + target + + + host + dynatrace.com + + + host + *.dynatrace.com + + + + + dynamic-net.ch (partial) + + ruleset + + name + dynamic-net.ch (partial) + rule + + + from + ^http://(www\.)?dynamic-net\.ch/ + to + https://$1dynamic-net.ch/ + + + from + ^https?://webmail\.dynamic-net\.ch/ + to + https://service.ibone.ch/cgi-bin/openwebmail/openwebmail.pl + + + from + ^https?://(?:www\.)?dynamic-support\.ch/ + to + https://ticketsystem.dynamic-support.ch/ + + + from + ^http://ticketsystem\.dynamic-support\.ch/ + to + https://ticketsystem.dynamic-support.ch/ + + + from + ^http://(mars|service)\.ibone\.ch/ + to + https://$1.ibone.ch/ + + + securecookie + + + host + ^(www\.)?dynamic-net\.ch$ + name + .* + + + host + ^ticketsystem\.dynamic-support\.ch$ + name + .* + + + target + + + host + dynamic-net.ch + + + host + *.dynamic-net.ch + + + host + dynamic-support.ch + + + host + *.dynamic-support.ch + + + host + *.ibone.ch + + + + + e-ShopBrokers + + ruleset + + name + e-ShopBrokers + rule + + from + ^https?://(?:www\.)?eshopbrokers\.co\.uk/ + to + https://www.eshopbrokers.co.uk/ + + securecookie + + host + ^www\.eshopbrokers\.co\.uk$ + name + .* + + target + + + host + eshopbrokers.co.uk + + + host + www.eshopbrokers.co.uk + + + + + e-food.gr + + ruleset + + name + e-food.gr + rule + + from + ^http://(www\.)?e-food\.gr/ + to + https://$1e-food.gr/ + + securecookie + + host + ^(www\.)?e-food\.gr$ + name + .* + + target + + + host + e-food.gr + + + host + www.e-food.gr + + + + + e-gold (partial) + + ruleset + + name + e-gold (partial) + rule + + from + ^http://(?:www\.)?e-gold\.com/ + to + https://www.e-gold.com/ + + securecookie + + host + \.e-gold.com$ + name + .* + + target + + + host + e-gold.com + + + host + www.e-gold.com + + + + + e-onlinedata.com + + ruleset + + name + e-onlinedata.com + rule + + from + ^http://(?:www\.)?e-onlinedata\.com/ + to + https://www.e-onlinedata.com/ + + securecookie + + host + ^www\.e-onlinedata\.com$ + name + .+ + + target + + + host + e-onlinedata.com + + + host + www.e-onlinedata.com + + + + + e-prawnik.pl (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?e-prawnik\.pl/(?!favicon\.ico|i/|zamow-opinie(?:$|[?/])) + + name + e-prawnik.pl (partial) + rule + + + from + ^http://(?:www\.)?e-prawnik\.pl/ + to + https://e-prawnik.pl/ + + + from + ^http://static\.e-prawnik\.pl/ + to + https://e-prawnik.pl/i/ + + + from + ^http://static1\.e-prawnik\.pl/ + to + https://static1.money.pl/ + + + target + + + host + e-prawnik.pl + + + host + *.e-prawnik.pl + + + + + e621.net + + ruleset + + name + e621.net + platform + mixedcontent + rule + + from + ^http://(www\.)?e621\.net/ + to + https://$1e621.net/ + + securecookie + + host + ^(?:www\.)?e621\.net$ + name + .+ + + target + + + host + e621.net + + + host + www.e621.net + + + + + eArcu + + ruleset + + name + eArcu + rule + + from + ^http://(ea1\.|www\.)?earcu\.com/ + to + https://$1earcu.com/ + + securecookie + + host + ^(?:.*\.)?earcu\.com$ + name + .+ + + target + + + host + earcu.com + + + host + *.earcu.com + + + + + eBanking - aber sicher! + + ruleset + + name + eBanking - aber sicher! + rule + + + from + ^https?://ebas\.ch/ + to + https://www.ebas.ch/ + + + from + ^http://([^/:@]+)?\.ebas\.ch/ + to + https://$1.ebas.ch/ + + + from + ^https?://ebankingabersicher\.ch/ + to + https://www.ebankingabersicher.ch/ + + + from + ^http://([^/:@]+)?\.ebankingabersicher\.ch/ + to + https://$1.ebankingabersicher.ch/ + + + securecookie + + + host + ^(.*\.)?ebas\.ch$ + name + .+ + + + host + ^(.*\.)?ebankingabersicher\.ch$ + name + .+ + + + target + + + host + ebas.ch + + + host + *.ebas.ch + + + host + ebankingabersicher.ch + + + host + *.ebankingabersicher.ch + + + + + eBid.net + + ruleset + + name + eBid.net + rule + + from + ^http://([A-Za-z]+\.)?ebid\.net/ + to + https://$1ebid.net/ + + target + + + host + *.ebid.net + + + host + ebid.net + + + + + eCash.io + + ruleset + + name + eCash.io + rule + + + from + ^http://(?:www\.)?bitservicex\.com/ + to + https://ecash.io/ + + + from + ^http://(www\.)?ecash\.io/ + to + https://$1ecash.io/ + + + securecookie + + host + ^(?:w*\.)?ecash\.io$ + name + .+ + + target + + + host + bitservicex.com + + + host + www.bitservicex.com + + + host + ecash.io + + + host + *.ecash.io + + + + + eCigPros + + ruleset + + name + eCigPros + rule + + from + ^http://(www\.)?ecigpros\.com/ + to + https://$1ecigpros.com/ + + securecookie + + host + ^(?:.*\.)?ecigpros\.com$ + name + .+ + + target + + + host + ecigpros.com + + + host + *.ecigpros.com + + + + + eCosCentric.com + + ruleset + + name + eCosCentric.com + rule + + + from + ^http://(?:www(2)?\.)?ecoscentric\.com/ + to + https://www$1.ecoscentric.com/ + + + from + ^http://(bugzilla|lists)\.ecoscentric\.com/ + to + https://$1.ecoscentric.com/ + + + securecookie + + host + ^\.bugzilla\.ecoscentric\.com$ + name + .+ + + target + + + host + ecoscentric.com + + + host + *.ecoscentric.com + + + + + eDeveloperz (partial) + + ruleset + + name + eDeveloperz (partial) + rule + + + from + ^https?://(?:www\.)?edeveloperz\.com/([^\?]*)(?:\?.*) + to + https://version5.edeveloperz.com/$1 + + + from + ^http://version5\.edeveloperz\.com/ + to + https://version5.edeveloperz.com/ + + + target + + + host + edeveloperz.com + + + host + *.edeveloperz.com + + + + + eDigitalResearch (partial) + + ruleset + + name + eDigitalResearch (partial) + rule + + from + ^http://(?:www\.)?ecustomeropinions\.com/ + to + https://ecustomeropinions.com/ + + securecookie + + host + ^ecustomeropinions\.com$ + name + .* + + target + + + host + ecustomeropinions.com + + + host + www.ecustomeropinions.com + + + + + eDirectDebit (partial) + + ruleset + + name + eDirectDebit (partial) + rule + + from + ^https?://(?:www\.)?edirectdebit\.com/ + to + https://www.edirectdebit.com/ + + securecookie + + host + ^www\.edirectdebit\.com$ + name + .+ + + target + + + host + edirectdebit.com + + + host + www.edirectdebit.com + + + + + eDonorCentral.com + + ruleset + + name + eDonorCentral.com + rule + + from + ^http://(www\.)?edonorcentral\.com/ + to + https://$1edonorcentral.com/ + + target + + + host + edonorcentral.com + + + host + www.edonorcentral.com + + + + + eFinancialCareers + + ruleset + + name + eFinancialCareers + rule + + from + ^http://backoffice\.efinancialcareers\.com/ + to + https://backoffice.efinancialcareers.com/ + + securecookie + + host + ^.*\.efinancialcareers\.com$ + name + .+ + + target + + host + *.efinancialcareers.com + + + + eForensics Mag.com (partial) + + ruleset + + name + eForensics Mag.com (partial) + rule + + from + ^http://(www\.)?eforensicsmag\.com/ + to + https://$1eforensicsmag.com/ + + target + + + host + eforensicsmag.com + + + host + www.eforensicsmag.com + + + + + eForsa.pl + + ruleset + + name + eForsa.pl + rule + + from + ^http://(www\.)?eforsa\.pl/ + to + https://$1eforsa.pl/ + + securecookie + + host + ^\.?eforsa\.pl$ + name + .+ + + target + + + host + eforsa.pl + + + host + *.eforsa.pl + + + + + eFukt.com + + ruleset + + name + eFukt.com + rule + + from + ^http://(www\.)?efukt\.com/ + to + https://$1efukt.com/ + + securecookie + + host + ^(?:www\.)?efukt\.com$ + name + .+ + + target + + + host + efukt.com + + + host + www.efukt.com + + + + + eFurnitureNY + + ruleset + + name + eFurnitureNY + rule + + from + ^http://(www\.)?efurnitureny\.com/ + to + https://$1efurnitureny.com/ + + securecookie + + host + ^(?:.*\.)?efurnitureny\.com$ + name + .+ + + target + + + host + efurnitureny.com + + + host + *.efurnitureny.com + + + + + eGenix.com + + ruleset + + name + eGenix.com + rule + + from + ^http://((?:downloads|lists|www)\.)?egenix\.com/ + to + https://$1egenix.com/ + + target + + + host + egenix.com + + + host + *.egenix.com + + + + + eHarmony (partial) + + ruleset + + exclusion + + + pattern + ^http://static\.eharmony\.com/ + + + pattern + ^http://(advice|photos)\.eharmony\.com/ + + + name + eHarmony (partial) + rule + + + from + ^http://eharmony\.com/ + to + https://eharmony.com/ + + + from + ^http://([\w\-]+)\.eharmony\.com/ + to + https://$1.eharmony.com/ + + + securecookie + + host + ^(.*\.)?eharmony\.com$ + name + .* + + target + + + host + eharmony.com + + + host + *.eharmony.com + + + + + eHoiva + + ruleset + + name + eHoiva + rule + + + from + ^http://(www\.)?ehoiva\.fi/ + to + https://ehoiva-fi.directo.fi/ + + + from + ^https://(www\.)?ehoiva\.fi/ + to + https://ehoiva-fi.directo.fi/ + + + from + ^http://ehoiva-fi\.directo\.fi/ + to + https://ehoiva-fi.directo.fi/ + + + target + + + host + www.ehoiva.fi + + + host + ehoiva.fi + + + host + ehoiva-fi.directo.fi + + + + + eHow (partial) + + ruleset + + name + eHow (partial) + rule + + + from + ^http://(www\.)?ehow\.com/ + to + https://$1ehow.com/ + + + from + ^http://(?:test\d-)?(?:img|v5-static)\.ehow(?:cdn)?\.com/ + to + https://www.ehow.com/ + + + securecookie + + host + ^www\.ehow\.com$ + name + .+ + + target + + + host + ehow.com + + + host + *.ehow.com + + + host + *.ehowcdn.com + + + + + eKomi + + ruleset + + name + eKomi + rule + + + from + ^https?://(?:www\.)?ekomi\.(?:at|ch)/ + to + https://www.ekomi.de/ + + + from + ^https?://ssl\.ekomi\.de/ + to + https://www.ekomi.de/ + + + from + ^https?://ekomi\.(co\.za|it|se|sk)/ + to + https://www.ekomi.$1/ + + + from + ^http://(vf-js\.|www\.)?ekomi(\.\w\w|\.co\.\w\w|-us\.com)/ + to + https://$1ekomi$2/ + + + securecookie + + host + ^(?:www)?\.ekomi(?:\.\w\w|\.co\.\w\w|-us\.com)$ + name + .+ + + target + + + host + ekomi.* + + + host + www.ekomi.* + + + host + ekomi.co.* + + + host + *.ekomi.co.uk + + + host + www.ekomi.co.za + + + host + *.ekomi.de + + + host + ekomi-us.com + + + host + www.ekomi-us.com + + + + + eLabor (partial) + + ruleset + + name + eLabor (partial) + rule + + from + ^http://workforceportal\.elabor\.com/ + to + https://workforceportal.elabor.com/ + + securecookie + + host + ^workforceportal\.elabor\.com$ + name + .+ + + target + + host + workforceportal.elabor.com + + + + eLatinos.com + + ruleset + + name + eLatinos.com + rule + + from + ^http://(www\.)?elatinos\.com/ + to + https://$1elatinos.com/ + + securecookie + + host + ^(?:www)?\.elatinos\.com$ + name + .+ + + target + + + host + elatinos.com + + + host + *.elatinos.com + + + + + eLearnSecurity.com + + ruleset + + name + eLearnSecurity.com + rule + + from + ^http://((?:blog|members|www)\.)?elearnsecurity\.com/ + to + https://$1elearnsecurity.com/ + + securecookie + + host + ^members\.elearnsecurity\.com$ + name + .+ + + target + + host + *.elearnsecurity.com + + + + eNom (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?enom\.com/(?!login|signup/).*\.aspx(?:$|\?) + + name + eNom (partial) + rule + + from + ^http://(www\.)?enom\.com/ + to + https://$1enom.com/ + + target + + + host + enom.com + + + host + www.enom.com + + + + + eNomCentral (partial) + + ruleset + + name + eNomCentral (partial) + rule + + from + ^http://(?:www\.)?enomcentral\.com/(captchautil/|css/|_?images/|js/|login\.aspx|myaccount(?:$|\?|/)|(?:Script|Web)Resource\.axd|verisign-seal\.htm) + to + https://www.enomcentral.com/$1 + + target + + + host + enomcentral.com + + + host + www.enomcentral.com + + + + + eNovance + + ruleset + + exclusion + + pattern + ^http://openstackreactions\.enovance\.com + + name + eNovance + rule + + + from + ^https?://enovance\.com/ + to + https://www.enovance.com/ + + + from + ^http://([^/:@]+)?\.enovance\.com/ + to + https://$1.enovance.com/ + + + from + ^https?://enocloud\.com/ + to + https://www.enocloud.com/ + + + from + ^http://([^/:@]+)?\.enocloud\.com/ + to + https://$1.enocloud.com/ + + + securecookie + + + host + ^(.*\.)?enovance\.com$ + name + .+ + + + host + ^(.*\.)?enocloud\.com$ + name + .+ + + + target + + + host + enovance.com + + + host + *.enovance.com + + + host + enocloud.com + + + host + *.enocloud.com + + + + + ePay.bg + + ruleset + + name + ePay.bg + rule + + from + ^http://(www\.)?epay\.bg/ + to + https://www.epay.bg/ + + target + + + host + epay.bg + + + host + www.epay.bg + + + + + ePrize + + ruleset + + name + ePrize + rule + + + from + ^https?://(?:www\.)?eprize\.(?:com|net)/ + to + https://www.eprize.com/ + + + from + ^http://(results|rps01|socialize|winlists?)\.eprize\.com/ + to + https://$1.eprize.com/ + + + securecookie + + host + ^(?:rps01|socialize)\.eprize\.com$ + name + .+ + + target + + + host + eprize.com + + + host + *.eprize.com + + + host + eprize.net + + + host + www.eprize.net + + + + + eQualit.ie + + ruleset + + name + eQualit.ie + rule + + from + ^http://(www\.)?equalit\.ie/ + to + https://$1equalit.ie/ + + target + + + host + equalit.ie + + + host + www.equalit.ie + + + + + eReceptionist.co.uk (partial) + + ruleset + + name + eReceptionist.co.uk (partial) + rule + + from + ^http://(?:www\.)?ereceptionist\.co\.uk/(?=App_Themes/|bundles/|Content/|e[vV]oice[iI]mages/|favicon\.ico|(?:forgot-password|phone-system-choose)(?:$|[?/])|images/|[jJ]s/|(?:Telerik\.Web\.UI\.)?WebResource\.axd) + to + https://www.ereceptionist.co.uk/ + + target + + + host + ereceptionist.co.uk + + + host + www.ereceptionist.co.uk + + + + + eScholarship.org (partial) + + ruleset + + name + eScholarship.org (partial) + rule + + from + ^http://(publish|submit)\.escholarship\.org/ + to + https://$1.escholarship.org/ + + securecookie + + host + ^(?:publish|submit)\.escholarship\.org$ + name + .+ + + target + + host + *.escholarship.org + + + + eSupport.com (partial) + + ruleset + + name + eSupport.com (partial) + rule + + from + ^http://secure\.esupport\.com/ + to + https://secure.esupport.com/ + + target + + host + secure.esupport.com + + + + eToro (partial) + + ruleset + + name + eToro (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?copy\.me/ + to + https://$1copy.me/ + + + from + ^https?://(?:www\.)?etoro\.com/ + to + https://www.etoro.com/ + + + from + ^http://(openbook|s3)\.etoro\.com/ + to + https://$1.etoro.com/ + + + securecookie + + + host + ^\.copy\.me$ + name + .+ + + + host + ^.*\.etoro\.com$ + name + .+ + + + target + + + host + copy.me + + + host + *.copy.me + + + host + etoro.com + + + host + *.etoro.com + + + + + eUKhost (partial) + + ruleset + + name + eUKhost (partial) + rule + + from + ^http://(affiliates|billing)\.eukhost\.com/ + to + https://$1.eukhost.com/ + + securecookie + + host + ^billing\.eukhost\.com$ + name + .+ + + target + + host + *.eukhost.com + + + + eUKhosting + + ruleset + + name + eUKhosting + rule + + from + ^http://(?!www\.)([\w-]+)\.eukhosting\.net/ + to + https://$1.eukhosting.net/ + + securecookie + + host + .+\.eukhosting.net$ + name + .+ + + target + + host + *.eukhosting.net + + + + eVoice.co.uk (partial) + + ruleset + + name + eVoice.co.uk (partial) + rule + + + from + ^http://(?:www\.)?evoice\.co\.uk/ + to + https://www.evoice.co.uk/ + + + from + ^http://go\.evoice\.co\.uk/ + to + https://go.evoice.co.uk/ + + + from + ^http://home\.evoice\.co\.uk/+(?=$|\?) + to + https://go.evoice.co.uk/eV_UK_NS_MyWebHelp/eV_UKHelp_Left.htm + + + from + ^http://home\.evoice\.co\.uk/(?=.+\.gif|favicon\.ico) + to + https://a248.e.akamai.net/f/347/9665/9/home.evoice.co.uk/ + + + securecookie + + host + ^www\.evoice\.co\.uk$ + name + .+ + + target + + + host + evoice.co.uk + + + host + *.evoice.co.uk + + + + + eWellness magazine (partial) + + ruleset + + exclusion + + pattern + ^https?://www\.ewellnessmag\.com/(?:app/shop(?:$|\?|/login_or_register)|cart(?:$|\?)) + + name + eWellness magazine (partial) + rule + + from + ^https?://(?:www\.)?ewellnessmag\.com/ + to + https://www.ewellnessmag.com/ + + target + + + host + ewellnessmag.com + + + host + www.ewellnessmag.com + + + + + eXelate + + ruleset + + name + eXelate + rule + + + from + ^http://ad\.exelate\.com/ + to + https://ad.yieldmanager.com/ + + + from + ^http://texi\.exelate\.com/ + to + https://texi.exelate.com/ + + + from + ^http://(load(?:eu|m|r|us|xl)?|sandbox)\.exelator\.com/ + to + https://$1.exelator.com/ + + + from + ^http://loadan\.exelator\.com/ + to + https://load.exelator.com/ + + + securecookie + + + host + ^texi\.exelate\.com$ + name + .+ + + + host + ^\.exelator\.com$ + name + .+ + + + target + + + host + ad.exelate.com + + + host + *.exelator.com + + + + + eager.io + + ruleset + + name + eager.io + rule + + + from + ^http://((?:bus|embedded|dev|www)\.)?eager\.io/ + to + https://$1eager.io/ + + + from + ^http://status\.eager\.io/ + to + https://eager.statuspage.io/ + + + target + + + host + eager.io + + + host + *.eager.io + + + + + easy2coach.net (partial) + + ruleset + + name + easy2coach.net (partial) + rule + + from + ^http://(www\.)?easy2coach\.net/(\w\w/(?:banquedexercicesdefoot|base-de-datos-ejercicios-futbol|calcio-bancadati-esercizi|ejercicios-de-futbol/entrenamiento-11-11|esercizio-del-mese/ci-segnali|football-exercises(?:-database|/football-training-11-11|/recommend-us)|fussballuebungen/empfehlen-sie-uns|fussball-uebungsdatenbank)\.html|/?facebook/|favicon\.ico|/?templates/) + to + https://$1easy2coach.net/ + + target + + + host + easy2coach.net + + + host + www.easy2coach.net + + + + + easyDNS (partial) + + ruleset + + exclusion + + pattern + ^http://(?:blog2?|helpwiki|mediawiki|parked)\.easydns\.com/ + + name + easyDNS (partial) + rule + + + from + ^http://(?:www\.)?easydns\.net/ + to + https://www.easydns.com/ + + + from + ^http://([\w-]+\.)?easydns\.(com|net)/ + to + https://$1easydns.$2/ + + + securecookie + + host + .*\.easydns\.(?:com|net)$ + name + .+ + + target + + + host + easydns.net + + + host + *.easydns.net + + + host + easydns.com + + + host + *.easydns.com + + + + + easyJet.com (partial) + + ruleset + + exclusion + + pattern + ^http://stafftravel\.easyjet\.com/+(?!asp/en/stafftravel\.asp|common/|favicon\.ico) + + name + easyJet.com (partial) + rule + + + from + ^http://(?:www\.)?easyjet\.com/(?=Content/|ejcms/|favicon\.ico|fonts/) + to + https://www.easyjet.com/ + + + from + ^http://(onboarding|(?:js|media)\.sc|stafftravel)\.easyjet\.com/ + to + https://$1.easyjet.com/ + + + target + + + host + easyjet.com + + + host + *.easyjet.com + + + + + easyMail.ca + + ruleset + + name + easyMail.ca + rule + + from + ^http://((?:messages|webmail|www)\.)?easymail\.ca/ + to + https://$1easymail.ca/ + + securecookie + + host + ^\.easymail\.ca$ + name + .+ + + target + + host + *.easymail.ca + + + + easyPDF Cloud + + ruleset + + name + easyPDF Cloud + rule + + from + ^http://(www\.)?easypdfonline\.com/ + to + https://$1easypdfonline.com/ + + securecookie + + host + ^(?:www)?\.easypdfonline\.com$ + name + .+ + + target + + + host + easypdfonline.com + + + host + *.easypdfonline.com + + + + + easyWhois.com + + ruleset + + name + easyWhois.com + rule + + from + ^http://(www\.)?easywhois\.com/ + to + https://$1easywhois.com/ + + securecookie + + host + ^(?:www\.)?easywhois\.com$ + name + .+ + + target + + + host + easywhois.com + + + host + www.easywhois.com + + + + + easywallet.org + + ruleset + + name + easywallet.org + rule + + from + ^http://(www\.)?easywallet\.org/ + to + https://$1easywallet.org/ + + securecookie + + host + ^(?:www\.)?easywallet\.org$ + name + .+ + + target + + + host + easywallet.org + + + host + www.easywallet.org + + + + + ebuzzing (partial) + + ruleset + + name + ebuzzing (partial) + rule + + + from + ^https?://(?:www\.)?ebuzzing\.com/ + to + https://ebuzzing.com/ + + + from + ^https?://(?:www\.)?ebuzzing\.de/(\?.*)?$ + to + https://social.ebuzzing.de/$1 + + + from + ^http://social\.ebuzzing\.de/ + to + https://social.ebuzzing.de/ + + + securecookie + + host + ^social\.ebuzzing\.de$ + name + .+ + + target + + + host + ebuzzing.com + + + host + www.ebuzzing.com + + + host + ebuzzing.de + + + host + *.ebuzzing.de + + + + + eclipso + + ruleset + + name + eclipso + rule + + + from + ^http://(?:mail\.|www\.)?eclipso\.de/ + to + https://www.eclipso.de/ + + + from + ^https?://m\.eclipso\.de/ + to + https://www.eclipso.de/m/ + + + securecookie + + host + ^(?:www\.|mail\.|m\.)?eclipso\.de$ + name + .+ + + target + + + host + eclipso.de + + + host + m.eclipso.de + + + host + mail.eclipso.de + + + host + www.eclipso.de + + + + + ecm74.com (partial) + + ruleset + + name + ecm74.com (partial) + rule + + from + ^http://(?:www\.)?ecm74\.com/(?!rp/\d+/ContestForm\.clsp) + to + https://ecm74.com/ + + target + + + host + ecm74.com + + + host + www.ecm74.com + + + + + econda-monitor.de + + ruleset + + name + econda-monitor.de + rule + + from + ^http://www\.econda-monitor\.de/ + to + https://www.econda-monitor.de/ + + target + + host + www.econda-monitor.de + + + + edX + + ruleset + + name + edX + rule + + + from + ^https?://(?:www\.)?edx\.org/ + to + https://www.edx.org/ + + + from + ^http://courses\.edx\.org/ + to + https://courses.edx.org/ + + + securecookie + + host + ^(?:courses|www)\.edx\.org$ + name + .+ + + target + + + host + edx.org + + + host + *.edx.org + + + + + edgeboss.net (partial) + + ruleset + + name + edgeboss.net (partial) + rule + + from + ^http://sun\.edgeboss\.net/ + to + https://a248.e.akamai.net/f/147/6387/5/sun.edgeboss.net/ + + target + + host + sun.edgeboss.net + + + + editmysite.com (partial) + + ruleset + + name + editmysite.com (partial) + rule + + from + ^https?://cdn\d\.editmysite\.com/(editor/(?:font|image|librarie)s/|images/(?:404background\.jpg|404_textbox\.png)) + to + https://www.weebly.com/$1 + + target + + + host + cdn1.editmysite.com + + + host + cdn2.editmysite.com + + + + + edrive hosting (partial) + + ruleset + + name + edrive hosting (partial) + rule + + from + ^http://(www\.)?edrive-hosting\.cz/ + to + https://$1edrive-hosting.cz/ + + securecookie + + host + ^www\.edrive-hosting\.cz$ + name + .* + + target + + + host + edrive-hosting.cz + + + host + www.edrive-hosting.cz + + + + + eduroam ES + + ruleset + + name + eduroam ES + rule + + from + ^http://www\.eduroam\.es/ + to + https://www.eduroam.es/ + + target + + host + www.eduroam.es + + + + eduroam.no + + ruleset + + name + eduroam.no + rule + + from + ^http://(www\.)?eduroam\.no/ + to + https://$1eduroam.no/ + + target + + + host + eduroam.no + + + host + www.eduroam.no + + + + + eduroam.org + + ruleset + + name + eduroam.org + rule + + from + ^http://(?:www\.)?eduroam\.org/ + to + https://www.eduroam.org/ + + target + + + host + eduroam.org + + + host + *.eduroam.org + + + + + ef.gy + + ruleset + + name + ef.gy + rule + + from + ^http://(www\.)?ef\.gy/ + to + https://$1ef.gy/ + + target + + + host + ef.gy + + + host + www.ef.gy + + + + + efax.co.uk (partial) + + ruleset + + name + efax.co.uk (partial) + rule + + from + ^http://(?:www\.)?efax\.co\.uk/(?=(?:affiliate|fax-machine-vs-efax|internet_fax_number)(?:$|[?/])|efaxieu-cms-public/) + to + https://www.efax.co.uk/ + + target + + + host + efax.co.uk + + + host + www.efax.co.uk + + + + + efax.com (partial) + + ruleset + + name + efax.com (partial) + rule + + + from + ^http://assetsi\.efax\.com\.edgesuite\.net/ + to + https://a248.e.akamai.net/f/1507/2902/1/assetsi.efax.com.edgesuite.net/ + + + from + ^http://home\.efax\.com/ + to + https://a248.e.akamai.net/f/241/6787/6/home.efax.com/ + + + target + + + host + assetsi.efax.com.edgesuite.net + + + host + home.efax.com + + + + + ehospice + + ruleset + + name + ehospice + rule + + from + ^http://(www\.)?ehospice\.com/ + to + https://$1ehospice.com/ + + securecookie + + host + ^www\.ehospice\.com$ + name + .+ + + target + + + host + ehospice.com + + + host + www.ehospice.com + + + + + ehosting.ca (partial) + + ruleset + + name + ehosting.ca (partial) + rule + + + from + ^http://(?:www\.)?(?:ehosting|mecca)\.ca/ + to + https://ssl.mecca.ca/ + + + from + ^http://cpanel\.ehosting\.ca/+(?:$|\?.*) + to + https://ssl.mecca.ca/service/ + + + from + ^http://renewals\.ehosting\.ca/+(?:$|\?.*) + to + https://ssl.mecca.ca/apps/payment.php + + + from + ^http://webmail\.ehosting\.ca/+(?:$|\?.*) + to + https://ssl.mecca.ca/horde/imp/ + + + securecookie + + host + ^\.?ssl\.mecca\.ca$ + name + .+ + + target + + + host + ehosting.ca + + + host + *.ehosting.ca + + + host + mecca.ca + + + host + *.mecca.ca + + + + + eid.lt (partial) + + ruleset + + name + eid.lt (partial) + rule + + from + ^http://stork\.eid\.lt/ + to + https://stork.eid.lt/ + + target + + host + stork.eid.lt + + + + eigenLab + + ruleset + + name + eigenLab + platform + mixedcontent + rule + + from + ^http://(www\.)?eigenlab\.org/ + to + https://eigenlab.org/ + + securecookie + + host + ^(www\.)?eigenlab\.org$ + name + .* + + target + + + host + eigenlab.org + + + host + www.eigenlab.org + + + + + eimg.com.tw + + ruleset + + name + eimg.com.tw + rule + + + from + ^http://i\.eimg\.com\.tw/ + to + https://i.eimg.com.tw/ + + + from + ^http://s\.eimg\.com\.tw/ + to + https://i.kfs.io/ + + + from + ^http://www\.eimg\.com\.tw/+ + to + https://www.kkbox.com/about/ + + + target + + host + *.eimg.com.tw + + + + elasticTrace.com + + ruleset + + name + elasticTrace.com + rule + + from + ^http://(www\.)?elastictrace\.com/ + to + https://$1elastictrace.com/ + + securecookie + + host + ^\.elastictrace\.com$ + name + .+ + + target + + + host + elastictrace.com + + + host + *.elastictrace.com + + + + + elbadil.com + + ruleset + + name + elbadil.com + rule + + from + ^http://(www\.)?elbadil\.com/ + to + https://$1elbadil.com/ + + securecookie + + host + ^\.elbadil\.com$ + name + .+ + + target + + + host + elbadil.com + + + host + *.elbadil.com + + + + + elkosmas.gr + + ruleset + + name + elkosmas.gr + rule + + from + ^http://(www\.)?elkosmas\.gr/ + to + https://elkosmas.gr/ + + target + + + host + www.elkosmas.gr + + + host + elkosmas.gr + + + + + emailsrvr.com + + ruleset + + name + emailsrvr.com + rule + + from + ^http://(autodiscover\.\w+\.)?emailsrvr\.com/ + to + https://$1emailsrvr.com/ + + target + + + host + emailsrvr.com + + + host + *.emailsrvr.com + + + + + emediate.dk + + ruleset + + name + emediate.dk + rule + + from + ^http://(?:ad|cdn)1\.emediate\.dk/ + to + https://ad1.emediate.dk/ + + securecookie + + host + ^ad1\.emediate\.dk$ + name + .+ + + target + + host + *.emediate.dk + + + + emptywheel.net + + ruleset + + name + emptywheel.net + rule + + from + ^http://(www\.)?emptywheel\.net/ + to + https://$1emptywheel.net/ + + securecookie + + host + ^\.?emptywheel\.net$ + name + .+ + + target + + + host + emptywheel.net + + + host + *.emptywheel.net + + + + + ens-lyon.org + + ruleset + + name + ens-lyon.org + platform + cacert + rule + + from + ^http://((?:blog|cvs|git|svn|toccata|web|wiki|www)\.)?ens-lyon\.org/ + to + https://$1ens-lyon.org/ + + target + + + host + ens-lyon.org + + + host + *.ens-lyon.org + + + + + entertainment.ie + + ruleset + + name + entertainment.ie + rule + + from + ^http://(?:images\.|www\.)?entertainment\.ie/ + to + https://entertainment.ie/ + + securecookie + + host + ^entertainment\.ie$ + name + .+ + + target + + + host + entertainment.ie + + + host + *.entertainment.ie + + + + + eoPortal (partial) + + ruleset + + name + eoPortal (partial) + rule + + from + ^http://directory\.eoportal\.org/ + to + https://directory.eoportal.org/ + + securecookie + + host + ^directory\.eoportal\.org$ + name + .+ + + target + + host + directory.eoportal.org + + + + epartnershub.com (partial) + + ruleset + + name + epartnershub.com (partial) + rule + + from + ^http://(\w+)\.epartnershub\.com/(App_Themes/|Checkout/|CommonCss/|[lL]ogin\.aspx) + to + https://$1.epartnershub.com/$2 + + target + + host + *.epartnershub.com + + + + eprncdn.com + + ruleset + + name + eprncdn.com + rule + + from + ^http://static1?\.ca\.eprncdn\.com/ + to + https://static.ca.eprncdn.com/ + + target + + host + *.ca.eprncdn.com + + + + erdgeist + + ruleset + + name + erdgeist + rule + + from + ^http://(www\.)?erdgeist\.org/ + to + https://$1erdgeist.org/ + + target + + + host + erdgeist.org + + + host + www.erdgeist.org + + + + + es.gy + + ruleset + + name + es.gy + rule + + from + ^http://(bbs\.|www\.)?es\.gy/ + to + https://$1es.gy/ + + securecookie + + host + ^bbs\.es\.gy$ + name + .+ + + target + + + host + es.gy + + + host + *.es.gy + + + + + eseeky.com + + ruleset + + name + eseeky.com + rule + + from + ^http://(www\.)?eseeky\.com/ + to + https://$1eseeky.com/ + + securecookie + + host + ^(?:w*\.)?eseeky\.com$ + name + .+ + + target + + + host + eseeky.com + + + host + *.eseeky.com + + + + + espacejeux + + ruleset + + name + espacejeux + rule + + from + ^http://(www\.)?espacejeux\.com/ + to + https://www.espacejeux.com/ + + securecookie + + host + ^(.*\.)?espacejeux\.com$ + name + .* + + target + + + host + www.espacejeux.com + + + host + espacejeux.com + + + + + estara.com + + ruleset + + name + estara.com + rule + + from + ^http://(as00|webcare)\.estara\.com/ + to + https://$1.estara.com/ + + securecookie + + host + ^\.estara\.com$ + name + .+ + + target + + host + *.estara.com + + + + etapestry.com + + ruleset + + name + etapestry.com + rule + + + from + ^http://(?:www\.)?etapestry\.com/(\?.*)?$ + to + https://www.blackbaud.com/fundraising-crm/etapestry-donor-management.aspx$1 + + + from + ^http://(?:www\.)?etapestry\.com/.+ + to + https://www.blackbaud.com/page.aspx?pid=209 + + + from + ^http://app\.etapestry\.com/ + to + https://app.etapestry.com/ + + + securecookie + + host + ^app\.etapestry\.com$ + name + .+ + + target + + + host + etapestry.com + + + host + *.etapestry.com + + + + + eth0.nl + + ruleset + + name + eth0.nl + rule + + from + ^http://((?:secure|tickets|wiki|www)\.)?eth(-)?0\.nl/ + to + https://$1eth$20.nl/ + + target + + + host + eth0.nl + + + host + *.eth0.nl + + + host + eth-0.nl + + + host + *.eth-0.nl + + + + + etouches + + ruleset + + name + etouches + rule + + from + ^http://(www\.)?e(iseverywhere|touches)\.com/ + to + https://$1e$2.com/ + + securecookie + + host + ^(?:www\.)?e(?:iseverywhere|touches)\.com$ + name + .* + + target + + + host + eiseverywhere.com + + + host + www.eiseverywhere.com + + + host + etouches.com + + + host + www.etouches.com + + + + + etracker + + ruleset + + name + etracker + rule + + + from + ^http://(?:www\.)?etracker\.(com|de)/ + to + https://www.etracker.$1/ + + + from + ^http://(\w+)\.etracker\.(com|de)/ + to + https://$1.etracker.$2/ + + + from + ^http://(?:www\.)?sedotracker\.com/ + to + https://www.etracker.de/ + + + from + ^http://(?:www\.)?visitormotion\.com/ + to + https://www.visitormotion.com/ + + + securecookie + + host + ^(.*\.)?etracker\.(com|de)$ + name + .* + + target + + + host + etracker.com + + + host + *.etracker.com + + + host + etracker.de + + + host + www.etracker.de + + + host + visitormotion.com + + + host + www.visitormotion.com + + + + + evanced.info + + ruleset + + name + evanced.info + rule + + from + ^http://(ca\.|www\.)evanced\.info/ + to + https://$1evanced.info/ + + securecookie + + host + ^(?:ca\.)?evanced\.info$ + name + .+ + + target + + + host + evanced.info + + + host + *.evanced.info + + + + + evbuc.com + + ruleset + + name + evbuc.com + rule + + from + ^http://cdn\.evbuc\.com/ + to + https://cdn.evbuc.com/ + + target + + host + cdn.evbuc.com + + + + evenmere.org (partial) + + ruleset + + name + evenmere.org (partial) + rule + + from + ^http://blog\.evenmere\.org/ + to + https://blog.evenmere.org/ + + target + + host + blog.evenmere.org + + + + eveonline.com (partial) + + ruleset + + exclusion + + pattern + ^http://(fanfest)\.eveonline\.com/ + + name + eveonline.com (partial) + rule + + + from + ^http://(www\.)?eveonline\.com/ + to + https://www.eveonline.com/ + + + from + ^http://(forums|community|truestory|wiki|secure|gate|support)\.eveonline\.com/ + to + https://$1.eveonline.com/ + + + target + + + host + eveonline.com + + + host + *.eveonline.com + + + + + evermeet.cx + + ruleset + + name + evermeet.cx + rule + + from + ^http://(www\.)?evermeet\.cx/ + to + https://$1evermeet.cx/ + + target + + + host + evermeet.cx + + + host + www.evermeet.cx + + + + + everything4bet + + ruleset + + name + everything4bet + rule + + from + ^http://(www\.)?everything4bet\.net/ + to + https://$1everything4bet.net/ + + securecookie + + host + ^(?:w*\.)?everything4bet\.net$ + name + .+ + + target + + + host + everything4bet.net + + + host + *.everything4bet.net + + + + + evo.com (partial) + + ruleset + + name + evo.com (partial) + rule + + from + ^http://(?:www\.)?evo\.com/(?=favicon\.ico|faviconcrown\.ico|img/|img-?p/|promos/upload/|temp/) + to + https://www.evo.com/ + + target + + + host + evo.com + + + host + www.evo.com + + + + + exaccess.ru (partial) + + ruleset + + name + exaccess.ru (partial) + rule + + from + ^http://(dynam|stat)ic\.exaccess\.ru/ + to + https://$1ic.exaccess.ru/ + + target + + host + *.exaccess.ru + + + + examiner.com (partial) + + ruleset + + exclusion + + + pattern + ^http://www\.examiner\.com/tag/ + + + pattern + ^http://www\.examiner\.com/(?![^/]+/|About_Examiner|Advertise|arts-entertainment$|careers|favicon\.ico|interests$|privacy_policy|rss$|[\w-]*sitemap|Terms_of_Use|video-portal$|[^\?]+\?cid=.*) + + + name + examiner.com (partial) + rule + + + from + ^http://((?:beacon|cdn2-b|photos|staging|www)\.)?examiner\.com/ + to + https://$1examiner.com/ + + + from + ^http://www\.examiner\.com/([^\?]+)(?:\?cid=.*)$ + to + https://www.examiner.com/$1 + + + from + ^https?://stats\.examiner\.com/ + to + https://examiner-com.122.2o7.net/ + + + from + ^https?://cdn\.exm\.nr/ + to + https://cdn2-b.examiner.com/ + + + securecookie + + host + ^photos\.examiner\.com$ + name + .+ + + target + + + host + examiner.com + + + host + *.examiner.com + + + host + cdn.exm.nr + + + + + exploreB2B.com + + ruleset + + name + exploreB2B.com + rule + + from + ^http://(www\.)?exploreb2b\.com/ + to + https://$1exploreb2b.com/ + + securecookie + + host + ^\.exploreb2b\.com$ + name + .+ + + target + + + host + exploreb2b.com + + + host + *.exploreb2b.com + + + + + expresscoin.com (partial) + + ruleset + + name + expresscoin.com (partial) + rule + + from + ^http://(accounts\.|www\.)?expresscoin\.com/ + to + https://$1expresscoin.com/ + + securecookie + + host + ^(?:\.|accounts\.|www\.)?expresscoin\.com$ + name + .+ + + target + + + host + expresscoin.com + + + host + *.expresscoin.com + + + + + exsila + + ruleset + + name + exsila + rule + + from + ^http://(?:www\.)?exsila\.ch/ + to + https://www.exsila.ch/ + + target + + + host + exsila.ch + + + host + www.exsila.ch + + + + + extatic.org (partial) + + ruleset + + name + extatic.org (partial) + rule + + from + ^http://(?:secure|www)\.extatic\.org/ + to + https://secure.extatic.org/ + + target + + host + *.extatic.org + + + + eyeReturn Marketing.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?eyereturnmarketing\.com/+(?!wp-content/|wp-includes/) + + name + eyeReturn Marketing.com (partial) + rule + + from + ^http://(?:(?:www\.)?eyereturnmarketing|emi\.wpengine)\.com/ + to + https://emi.wpengine.com/ + + target + + + host + eyereturnmarketing.com + + + host + www.eyereturnmarketing.com + + + host + emi.wpengine.com + + + + + eyeReturn.com (partial) + + ruleset + + name + eyeReturn.com (partial) + rule + + from + ^http://reports\.eyereturn\.com/ + to + https://reports.eyereturn.com/ + + securecookie + + host + ^reports\.eyereturn\.com$ + name + .+ + + target + + host + reports.eyereturn.com + + + + ezAccessory.com + + ruleset + + name + ezAccessory.com + rule + + from + ^http://(www\.)?ezaccessory\.com/ + to + https://$1ezaccessory.com/ + + securecookie + + host + ^(?:www\.)?ezaccessory\.com$ + name + .+ + + target + + + host + ezaccessory.com + + + host + www.ezaccessory.com + + + + + ezDing.com.tw (partial) + + ruleset + + name + ezDing.com.tw (partial) + rule + + from + ^http://(www\.)?ezding\.com\.tw/ + to + https://$1ezding.com.tw/ + + securecookie + + host + ^www\.ezding\.com\.tw$ + name + .+ + + target + + + host + ezding.com.tw + + + host + www.ezding.com.tw + + + + + ezaxess.com (partial) + + ruleset + + exclusion + + pattern + ^http://files\.ezaxess\.com/.+\.css + + name + ezaxess.com (partial) + rule + + from + ^http://files\.ezaxess\.com/ + to + https://s3.amazonaws.com/files.ezaxess.com/ + + target + + host + files.ezaxess.com + + + + f3images.com + + ruleset + + name + f3images.com + rule + + from + ^http://(c\d|www)\.f3images\.com/ + to + https://$1.f3images.com/ + + securecookie + + host + ^\.f3images\.com$ + name + .+ + + target + + host + *.f3images.com + + + + f3mimages.com + + ruleset + + name + f3mimages.com + rule + + from + ^http://(www\.)?f3mimages\.com/ + to + https://$1f3mimages.com/ + + securecookie + + host + ^\.f3mimages\.com$ + name + .+ + + target + + + host + f3mimages.com + + + host + *.f3mimages.com + + + + + facetz.net + + ruleset + + name + facetz.net + rule + + from + ^http://front\.facetz\.net/ + to + https://front.facetz.net/ + + securecookie + + host + ^\.facetz\.net$ + name + .+ + + target + + host + *.facetz.net + + + + factorable.net + + ruleset + + name + factorable.net + rule + + from + ^http://(www\.)?factorable\.net/ + to + https://$1factorable.net/ + + target + + + host + factorable.net + + + host + www.factorable.net + + + + + fagms.net + + ruleset + + name + fagms.net + rule + + from + ^http://(?:www\.)?fagms\.net/ + to + https://www.fagms.net/ + + target + + + host + fagms.net + + + host + www.fagms.net + + + + + fail0verflow + + ruleset + + name + fail0verflow + rule + + from + ^http://(?:www\.)?fail0verflow\.com/ + to + https://fail0verflow.com/ + + target + + + host + fail0verflow.com + + + host + *.fail0verflow.com + + + + + feedly.com (partial) + + ruleset + + name + feedly.com (partial) + rule + + from + ^http://((?:cloud|s3|www)\.)?feedly\.com/ + to + https://$1feedly.com/ + + securecookie + + host + ^(?:www\.)?feedly\.com$ + name + .+ + + target + + + host + feedly.com + + + host + *.feedly.com + + + + + fhserve.com (partial) + + ruleset + + name + fhserve.com (partial) + rule + + from + ^http://(secure\.|www\.)?fhserve\.com/ + to + https://$1fhserve.com/ + + securecookie + + host + ^(?:.+\.)?fhserve\.com$ + name + .+ + + target + + + host + fhserve.com + + + host + *.fhserve.com + + + + + fiddler2.com + + ruleset + + name + fiddler2.com + rule + + from + ^http://(www\.)?fiddler2\.com/ + to + https://$1fiddler2.com/ + + securecookie + + host + ^(?:www\.)?fiddler2\.com + name + .+ + + target + + + host + fiddler2.com + + + host + www.fiddler2.com + + + + + fifthhorseman.net (partial) + + ruleset + + name + fifthhorseman.net (partial) + rule + + from + ^http://dkg\.fifthhorseman\.net/ + to + https://dkg.fifthhorseman.net/ + + target + + host + dkg.fifthhorseman.net + + + + figshare + + ruleset + + name + figshare + rule + + from + ^http://(www\.)?figshare\.com/ + to + https://$1figshare.com/ + + target + + + host + figshare.com + + + host + www.figshare.com + + + + + filecloud.io + + ruleset + + name + filecloud.io + rule + + from + ^https?://(?:(?:cdn|secure|www)\.)?filecloud\.io/ + to + https://secure.filecloud.io/ + + securecookie + + host + ^\.filecloud\.io$ + name + .+ + + target + + + host + filecloud.io + + + host + *.filecloud.io + + + + + filmdates.co.uk (partial) + + ruleset + + name + filmdates.co.uk (partial) + rule + + from + ^http://(?:www\.)?filmdates\.co\.uk/(?=(?:content|reminders|widget(?!/details))(?:$|[?/])|css/|dummy\.html|favicon\.ico|headshots/|images/|js/|posters/|tools/) + to + https://www.filmdates.co.uk/ + + securecookie + + host + ^\.filmdates\.co\.uk$ + name + ^__utm\w$ + + target + + + host + filmdates.co.uk + + + host + *.filmdates.co.uk + + + + + filmlash.com (partial) + + ruleset + + name + filmlash.com (partial) + rule + + from + ^http://(www\.)?filmlush\.com/ + to + https://$1filmlush.com/ + + securecookie + + host + ^(?:w*\.)?filmlush\.com$ + name + .+ + + target + + + host + filmlush.com + + + host + *.filmlush.com + + + + + finalrewind.net + + ruleset + + name + finalrewind.net + platform + cacert + rule + + from + ^http://((?:cgi|feh|git|man|vrrf)\.)?finalrewind\.net/ + to + https://$1finalrewind.net/ + + target + + + host + finalrewind.net + + + host + *.finalrewind.net + + + + + finalsite (partial) + + ruleset + + name + finalsite (partial) + rule + + from + ^http://((?:demo|secure(?:css|data|images|js|private)|www)\.)?finalsite\.com/ + to + https://$1finalsite.com/ + + securecookie + + host + ^(?:www)?\.finalsite\.com$ + name + .+ + + target + + + host + finalsite.com + + + host + *.finalsite.com + + + + + financialtrans.com + + ruleset + + name + financialtrans.com + rule + + from + ^http://www(2|3)?\.financialtrans\.com/ + to + https://www$1.financialtrans.com/ + + target + + host + *.financialtrans.com + + + + finmozg.ru + + ruleset + + name + finmozg.ru + rule + + from + ^http://(?:www\.)?finmozg\.ru/ + to + https://finmozg.ru/ + + target + + + host + finmozg.ru + + + host + www.finmozg.ru + + + + + fiuza.me + + ruleset + + name + fiuza.me + rule + + from + ^http://fiuza\.me/ + to + https://fiuza.me/ + + target + + host + fiuza.me + + + + flinkster + + ruleset + + name + flinkster + rule + + from + ^http://www\.flinkster\.de/ + to + https://www.flinkster.de/ + + target + + host + www.flinkster.de + + + + flix123.com + + ruleset + + name + flix123.com + rule + + from + ^http://(www\.)?flix123\.com/ + to + https://$1flix123.com/ + + securecookie + + host + ^flix123\.com$ + name + .+ + + target + + + host + flix123.com + + + host + www.flix123.com + + + + + fnfismd.com (partial) + + ruleset + + name + fnfismd.com (partial) + rule + + from + ^http://carenet\.fnfismd\.com/ + to + https://carenet.fnfismd.com/ + + target + + host + carenet.fnfismd.com + + + + focaljet.com + + ruleset + + name + focaljet.com + rule + + from + ^http://(www\.)?focaljet\.com/ + to + https://$1focaljet.com/ + + securecookie + + host + ^\.focaljet\.com$ + name + .+ + + target + + + host + focaljet.com + + + host + *.focaljet.com + + + + + footholds.net + + ruleset + + exclusion + + pattern + ^http://www\. + + name + footholds.net + rule + + from + ^http://([\w-]+)\.footholds\.net/ + to + https://$1.footholds.net/ + + target + + host + *.footholds.net + + + + footprint.net (partial) + + ruleset + + name + footprint.net (partial) + rule + + from + ^http://secure\.footprint\.net/ + to + https://secure.footprint.net/ + + target + + host + secure.footprint.net + + + + forgifs.com + + ruleset + + name + forgifs.com + rule + + + from + ^http://(?:www\.)?4gifs\.com/+ + to + https://forgifs.com/ + + + from + ^http://(www\.)?forgifs\.com/ + to + https://$1forgifs.com/ + + + securecookie + + host + ^\.forgifs\.com$ + name + .+ + + target + + + host + 4gifs.com + + + host + www.4gifs.com + + + host + forgifs.com + + + host + *.forgifs.com + + + + + forum-3dcenter + + ruleset + + name + forum-3dcenter + rule + + from + ^http://(www\.)?forum-3dcenter\.org/ + to + https://www.forum-3dcenter.org/ + + target + + + host + forum-3dcenter.org + + + host + www.forum-3dcenter.org + + + + + fotocommunity.de (partial) + + ruleset + + name + fotocommunity.de (partial) + rule + + + from + ^http://(www\.)?fotocommunity\.de/(?=(?:blog|serverstatus)/wp-(?:content|includes)/|blog/\?sccss=|(?:calendar|fotos-kaufen|fotowissen|html-sitemaps|login|mediathek|models|registrieren|sitemap)(?:$|[?/])|css/|css-2/|css-static/|favicon\.ico|fcAssets/|gfx/|(?:Hilfe|pc/pc/channel/\d+/\w+/\w+/display/\d+)(?:$|\?)|market-[\w-]+\.php|model-sedcard/|static/|wikiAssets/) + to + https://$1fotocommunity.de/ + + + from + ^http://(?:origin\.)?images\.fotocommunity\.de/ + to + https://origin.images.fotocommunity.de/ + + + target + + + host + fotocommunity.de + + + host + *.fotocommunity.de + + + + + foxtvmedia.com + + ruleset + + name + foxtvmedia.com + rule + + from + ^http://content\.foxtvmedia\.com/ + to + https://a248.e.akamai.net/m/948/4989/3/ftpcontent.worldnow.com/ + + target + + host + content.foxtvmedia.com + + + + foxydeal.de (false MCB) + + ruleset + + name + foxydeal.de (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?foxydeal\.(?:com|de)/(?!favicon\.ico|files/|wp-content/|wp-includes/) + to + https://$1foxydeal.de/ + + securecookie + + host + ^(?:w*\.)?foxydeal\.de$ + name + .+ + + target + + + host + foxydeal.de + + + host + *.foxydeal.de + + + host + foxydeal.com + + + host + *.foxydeal.com + + + + + foxydeal.de (partial) + + ruleset + + name + foxydeal.de (partial) + rule + + from + ^http://(www\.)?foxydeal\.(?:com|de)/(?=favicon\.ico|files/|wp-content/|wp-includes/) + to + https://$1foxydeal.de/ + + target + + + host + foxydeal.de + + + host + www.foxydeal.de + + + host + foxydeal.com + + + host + www.foxydeal.com + + + + + fr33tux.org + + ruleset + + name + fr33tux.org + platform + cacert mixedcontent + rule + + from + ^http://(git\.|p\.)?fr33tux\.org/ + to + https://$1fr33tux.org/ + + target + + + host + fr33tux.org + + + host + *.fr33tux.org + + + + + freedesktop.org (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?freedesktop\.org/(software|standards)(?:$|[?/]) + + + pattern + ^http://people\.freedesktop\.org/(?!~) + + + pattern + ^http://xcb\.freedesktop\.org/+(?!dist(?:$|[?/])) + + + name + freedesktop.org (partial) + rule + + + from + ^http://freedesktop\.org/wiki(?=$|\?) + to + https://wiki.freedesktop.org/www + + + from + ^http://freedesktop\.org/(?:wiki/)? + to + https://wiki.freedesktop.org/www/ + + + from + ^http://(apoc|dri|gypsy|ldtp|libbsd|libdlo|liboil|libopenraw|nice|nouveau|pm-utils|sitewranglers|swfdec|telepathy|testrepo|www|xorg)\.freedesktop\.org/wiki(?=$|\?) + to + https://wiki.freedesktop.org/$1 + + + from + ^http://(apoc|dri|gypsy|ldtp|libbsd|libdlo|liboil|libopenraw|nice|nouveau|pm-utils|sitewranglers|swfdec|telepathy|testrepo|www|xorg)\.freedesktop\.org/(?:wiki/)? + to + https://wiki.freedesktop.org/$1/ + + + from + ^http://bug(?:s|zilla)\.freedesktop\.org/ + to + https://bugs.freedesktop.org/ + + + from + ^http://(?:peopl|secur)e\.freedesktop\.org/ + to + https://secure.freedesktop.org/ + + + from + ^http://wiki\.freedesktop\.org/ + to + https://wiki.freedesktop.org/ + + + from + ^http://xcb\.freedesktop\.org/ + to + https://wiki.freedesktop.org/xcb/ + + + securecookie + + host + ^bugs\.freedesktop\.org$ + name + .+ + + target + + + host + freedesktop.org + + + host + *.freedesktop.org + + + + + freenet.de (partial) + + ruleset + + name + freenet.de (partial) + rule + + + from + ^http://abakus\.freenet\.de/ + to + https://secure.freenet.de/abakus.freenet.de/ + + + from + ^http://(?:blob|code)\.freene?t\.de/ + to + https://secure.freenet.de/ + + + from + ^http://((?:www\.)?mload|email|power|secure|(?:reg\.)?webmail)\.freenet\.de/ + to + https://$1.freenet.de/ + + + securecookie + + host + ^(?:(?:w*\.)?mload|\.reg)\.webmail\.freenet\.de$ + name + .+ + + target + + + host + *.freenet.de + + + host + *.freent.de + + + + + freenode + + ruleset + + name + freenode + rule + + from + ^http://(\S+\.)?freenode\.net/ + to + https://$1freenode.net/ + + securecookie + + host + ^.+\.freenode\.net$ + name + .+ + + target + + + host + freenode.net + + + host + *.freenode.net + + + + + freewebsitetemplates.com + + ruleset + + name + freewebsitetemplates.com + rule + + from + ^http://(www\.)?freewebsitetemplates\.com/ + to + https://www.freewebsitetemplates.com/ + + target + + + host + www.freewebsitetemplates.com + + + host + freewebsitetemplates.com + + + + + fri-Gate.org (partial) + + ruleset + + name + fri-Gate.org (partial) + rule + + from + ^http://api2\.fri-gate\.org/ + to + https://api2.fri-gate.org/ + + target + + host + api2.fri-gate.org + + + + fromorbit.com + + ruleset + + name + fromorbit.com + rule + + from + ^http://(www\.)?fromorbit\.com/ + to + https://$1fromorbit.com/ + + target + + + host + fromorbit.com + + + host + www.fromorbit.com + + + + + fteproxy.org + + ruleset + + name + fteproxy.org + rule + + from + ^http://(www\.)?fteproxy\.org/ + to + https://$1fteproxy.org/ + + target + + + host + fteproxy.org + + + host + www.fteproxy.org + + + + + fuelcdn.com + + ruleset + + name + fuelcdn.com + rule + + from + ^http://(editor\.|www\.)?fuelcdn\.com/ + to + https://$1fuelcdn.com/ + + securecookie + + host + ^\.fuelcdn\.com$ + name + .+ + + target + + + host + fuelcdn.com + + + host + *.fuelcdn.com + + + + + fuscia.info + + ruleset + + name + fuscia.info + rule + + from + ^http://(?:www\.)?fuscia\.info/ + to + https://fuscia.info/ + + securecookie + + host + ^fuscia\.info$ + name + .+ + + target + + + host + fuscia.info + + + host + www.fuscia.info + + + + + fwdcdn.com + + ruleset + + name + fwdcdn.com + rule + + from + ^http://([\w-]+)\.fwdcdn\.com/ + to + https://$1.fwdcdn.com/ + + target + + host + *.fwdcdn.com + + + + fxguide.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?fxguide\.com/(?!(?:articles|contact|faq|insider|podcasts|quicktakes)(?:$|\?|/)|favicon\.ico|forums/(?:clientscript/||css\.php|images/)|wp-admin/|wp-content/|wp-login\.php) + + name + fxguide.com (partial) + rule + + + from + ^http://(?:www\.)?fxguide\.com/wp-admin/ + to + https://ipa.fxguide.com/wp-admin/ + + + from + ^http://(ipa\.|www\.)?fxguide\.com/ + to + https://$1fxguide.com/ + + + target + + + host + fxguide.com + + + host + *.fxguide.com + + + + + fxphd + + ruleset + + name + fxphd + rule + + from + ^http://(www\.)?fxphd\.com/ + to + https://$1fxphd.com/ + + securecookie + + host + ^(?:w*\.)?fxphd\.com$ + name + .+ + + target + + + host + fxphd.com + + + host + *.fxphd.com + + + + + g33kinfo.com (false MCB) + + ruleset + + name + g33kinfo.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?g33kinfo\.com/ + to + https://$1g33kinfo.com/ + + securecookie + + host + ^\.g33kinfo\.com$ + name + .+ + + target + + + host + g33kinfo.com + + + host + *.g33kinfo.com + + + + + g33kinfo.com (partial) + + ruleset + + exclusion + + pattern + ^http://g33kinfo\.com/+(?!favicon\.ico|info/wp-content/|info/wp-includes/) + + name + g33kinfo.com (partial) + rule + + from + ^http://(www\.)?g33kinfo\.com/ + to + https://$1g33kinfo.com/ + + target + + + host + g33kinfo.com + + + host + www.g33kinfo.com + + + + + gCDN.org + + ruleset + + name + gCDN.org + rule + + from + ^http://(?:www\.)?gcdn\.org/ + to + https://gcdn.org/ + + target + + + host + gcdn.org + + + host + www.gcdn.org + + + + + gCaptain.com (partial) + + ruleset + + name + gCaptain.com (partial) + rule + + + from + ^http://(www\.)?gcaptain\.com/ + to + https://$1gcaptain.com/ + + + from + ^http://c\.gcaptain\.com/ + to + https://d32gw8q6pt8twd.cloudfront.net/ + + + from + ^http://cf\.gcaptain\.com/ + to + https://d38ecmhxsvwui3.cloudfront.net/ + + + from + ^http://cfs1\.gcaptain\.com/ + to + https://d2m8pnbf2v4ae2.cloudfront.net/ + + + securecookie + + host + ^gcaptain\.com$ + name + .+ + + target + + + host + gcaptain.com + + + host + *.gcaptain.com + + + + + gHacks.net (partial) + + ruleset + + name + gHacks.net (partial) + rule + + from + ^http://cdn\.ghacks\.net/ + to + https://ghacks-ghacks.netdna-ssl.com/ + + target + + host + cdn.ghacks.net + + + + gPodder (partial) + + ruleset + + name + gPodder (partial) + rule + + + from + ^https?://(?:www\.)?gpodder\.net/ + to + https://gpodder.net/ + + + from + ^http://bugs\.gpodder\.org/ + to + https://bugs.gpodder.org/ + + + securecookie + + + host + ^gpodder\.org$ + name + .+ + + + host + ^\.bugs\.gpodder\.org$ + name + .+ + + + target + + + host + gpodder.net + + + host + bugs.gpodder.org + + + host + *.bugs.gpodder.org + + + + + gamedesire.net (partial) + + ruleset + + name + gamedesire.net (partial) + rule + + + from + ^http://photos-1\.gamedesire\.net/ + to + https://e3228179915a08bd7e37-5d69d236ea985bd6e2070d8724d53456.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-2\.gamedesire\.net/ + to + https://e3f51024f050759f7996-7353508386eef0cf2e5b88063e9df0e2.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-3\.gamedesire\.net/ + to + https://888908a8a91b641e6a67-7e55c3863a20b7cd1941980d016517fa.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-4\.gamedesire\.net/ + to + https://60b63af08206a373f3af-736369e37fca9c51db6ab510561606c6.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-5\.gamedesire\.net/ + to + https://621677fdefd90f85a52a-b6139ea58ae4d364e7b4bd4667a1c497.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-6\.gamedesire\.net/ + to + https://af8d3a47a81718cefa81-092f7446244ae8acdfdac8010fb979cd.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-7\.gamedesire\.net/ + to + https://614a85fb3d3c967a8ec5-1d529e27d70978c2b79448c725df2738.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-8\.gamedesire\.net/ + to + https://573a22c7efb0251d38f2-87b36d2522973cbc189ecd1c3c4899eb.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-9\.gamedesire\.net/ + to + https://9c355a3ef7902c58f8c3-2968a6ed64c8971ba68b842decd2980d.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-10\.gamedesire\.net/ + to + https://d3673d8f8c3a865506dc-7d83ed208f9667477016ebfe6ac5ce62.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-11\.gamedesire\.net/ + to + https://551442956d1acb2b1ac1-b6b048cb71860b8f89a51e8ff21479aa.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-12\.gamedesire\.net/ + to + https://b6092b1ede836d275575-c3f6d1586b2580acbe6579e8eb935fd7.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-13\.gamedesire\.net/ + to + https://3daaecb033373e0b2101-70b1b2585d1b9a060f1c8b9e7768ed38.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-15\.gamedesire\.net/ + to + https://73a523f744d40ef6e1ea-e266b9b68094d09351772a92303a5498.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-16\.gamedesire\.net/ + to + https://6c0411fb3fc0be77b0de-2e254e45e3a9aa8529b4e5d95b3b5673.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-17\.gamedesire\.net/ + to + https://17ce5d735a99c6d96ee6-947a6139d03941c2771ec84916445494.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-38\.gamedesire\.net/ + to + https://289d643eaa9a1888ba4c-04f12471bcdb95cca3eeca2eb5591ec9.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-42\.gamedesire\.net/ + to + https://c913c7fbe304b76ded85-f041eef37cfea00a1dcae6859e4fae41.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-48\.gamedesire\.net/ + to + https://b223bd47ce46d2ab6b47-12643ce45db55bfccbbdf83d0572b127.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-50\.gamedesire\.net/ + to + https://a3e605ccc7eed766293f-bbc3afff9c06ca2e8d6ce9265e4caf01.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-74\.gamedesire\.net/ + to + https://9f68ec267a18e90d8671-d946aa0389f9fea95272af17b1d5e649.ssl.cf1.rackcdn.com/ + + + from + ^http://photos-76\.gamedesire\.net/ + to + https://04079b3c5fffcb144679-73bdb3f152213b22052a33e18373fccd.ssl.cf1.rackcdn.com/ + + + target + + host + *.gamedesire.net + + + + gameoapp.com + + ruleset + + name + gameoapp.com + rule + + from + ^http://(www\.)?gameoapp\.com/ + to + https://$1gameoapp.com/ + + target + + + host + gameoapp.com + + + host + www.gameoapp.com + + + + + gannett-cdn.com (partial) + + ruleset + + name + gannett-cdn.com (partial) + rule + + from + ^http://www\.gannett-cdn\.com/static/ + to + https://a248.e.akamai.net/f/1467/1/g2/www.gannett-cdn.com/static/ + + target + + host + www.gannett-cdn.com + + + + gavinhungry.com + + ruleset + + name + gavinhungry.com + rule + + from + ^http://(www\.)?gavinhungry\.com/ + to + https://$1gavinhungry.com/ + + target + + + host + gavinhungry.com + + + host + www.gavinhungry.com + + + + + gazellegames.net + + ruleset + + name + gazellegames.net + rule + + + from + ^http://(www\.)?gazellegames\.net/ + to + https://gazellegames.net/ + + + from + ^https://www\.gazellegames\.net/ + to + https://gazellegames.net/ + + + target + + + host + gazellegames.net + + + host + www.gazellegames.net + + + + + geht.net (partial) + + ruleset + + name + geht.net (partial) + rule + + from + ^http://hydra\.geht\.net/ + to + https://hydra.geht.net/ + + securecookie + + host + ^hydra\.geht\.net$ + name + .+ + + target + + host + hydra.geht.net + + + + get Clef.com (partial) + + ruleset + + name + get Clef.com (partial) + rule + + from + ^http://(www\.)?getclef\.com/ + to + https://$1getclef.com/ + + securecookie + + host + ^\.getclef\.com$ + name + .+ + + target + + + host + getclef.com + + + host + *.getclef.com + + + + + get Shine.com + + ruleset + + name + get Shine.com + rule + + from + ^http://(?:www\.)?getshine\.com/ + to + https://www.getshine.com/ + + securecookie + + host + ^\.getshine\.com$ + name + .+ + + target + + + host + getshine.com + + + host + *.getshine.com + + + + + get Syme.com + + ruleset + + name + get Syme.com + rule + + from + ^http://(?:www\.)?getsyme\.com/ + to + https://getsyme.com/ + + target + + + host + getsyme.com + + + host + www.getsyme.com + + + + + getDigital.de (false MCB) + + ruleset + + name + getDigital.de (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?getdigital\.de/ + to + https://www.getdigital.de/ + + + from + ^http://(?:www\.)?getdigital-blog\.de/ + to + https://www.getdigital.de/blog/ + + + target + + + host + getdigital.de + + + host + www.getdigital.de + + + host + getdigital-blog.de + + + host + *.getdigital-blog.de + + + + + getDigital.eu + + ruleset + + name + getDigital.eu + rule + + from + ^http://(www\.)?getdigital\.eu/ + to + https://$1getdigital.eu/ + + securecookie + + host + ^\.getdigital\.eu$ + name + .+ + + target + + + host + getdigital.eu + + + host + *.getdigital.eu + + + + + getHarvest.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?getharvest\.com/(?!images/|javascripts/|signup(?:$|[?/])|stylesheets/) + + name + getHarvest.com (partial) + rule + + from + ^http://(?:asset\d\.|(www\.))?getharvest\.com/ + to + https://$1getharvest.com/ + + securecookie + + host + ^\.getharvest\.com$ + name + ^__utm\w$ + + target + + + host + getharvest.com + + + host + *.getharvest.com + + + + + getgo + + ruleset + + name + getgo + rule + + + from + ^https?://(?:www\.)?getgo\.de/ + to + https://www.getgo.de/ + + + from + ^http://secure\.getgo\.de/ + to + https://secure.getgo.de/ + + + securecookie + + host + ^.*\.getgo\.de$ + name + .+ + + target + + + host + getgo.de + + + host + *.getgo.de + + + + + ghirardelligiftguides.com + + ruleset + + name + ghirardelligiftguides.com + rule + + from + ^http://(www\.)?ghirardelligiftguides\.com/ + to + https://$1ghirardelligiftguides.com/ + + securecookie + + host + ^(?:w*\.)?ghirardelligiftguides\.com$ + name + .+ + + target + + + host + ghirardelligiftguides.com + + + host + *.ghirardelligiftguides.com + + + + + giffgaff + + ruleset + + name + giffgaff + rule + + + from + ^http://giffgaff\.com/ + to + https://giffgaff.com/ + + + from + ^http://([^/:@]+)\.giffgaff\.com/ + to + https://$1.giffgaff.com/ + + + target + + + host + giffgaff.com + + + host + community.giffgaff.com + + + + + gifyo (partial) + + ruleset + + name + gifyo (partial) + rule + + from + ^http://(www\.)?gifyo\.com/ + to + https://$1gifyo.com/ + + securecookie + + host + ^(?:www\.)?gifyo\.com$ + name + .+ + + target + + + host + gifyo.com + + + host + www.gifyo.com + + + + + gistmarks.com + + ruleset + + name + gistmarks.com + rule + + from + ^http://(www\.)?gistmarks\.com/ + to + https://$1gistmarks.com/ + + securecookie + + host + ^(?:www\.)?gistmarks\.com$ + name + .+ + + target + + + host + gistmarks.com + + + host + www.gistmarks.com + + + + + glispa.com + + ruleset + + name + glispa.com + rule + + from + ^http://ads\.glispa\.com/ + to + https://ads.glispa.com/ + + securecookie + + host + ^ads\.glispa\.com$ + name + .+ + + target + + host + ads.glispa.com + + + + globaloneteam.com + + ruleset + + name + globaloneteam.com + rule + + + from + ^http://(?:www\.)?globaloneteam\.com/(?=$|\?) + to + https://me2.ihgmerlin.com/web/merlin/home + + + from + ^http://(?:www\.)?globaloneteam\.com//[^?]* + to + https://www.ihgmerlin.com/portal/server.pt? + + + from + ^http://(?:www\.)?globaloneteam\.com/ + to + https://me2.ihgmerlin.com/me2-vanity-url-portlet/redirect/ + + + from + ^http://(dsso|sso|sso-qa)\.globaloneteam\.com/ + to + https://$1.globaloneteam.com/ + + + securecookie + + host + ^(?:dsso|sso|sso-qa)\.globaloneteam\.com$ + name + .+ + + target + + + host + globaloneteam.com + + + host + *.globaloneteam.com + + + + + glyph.im + + ruleset + + name + glyph.im + rule + + from + ^http://(www\.)?glyph\.im/ + to + https://$1glyph.im/ + + target + + + host + glyph.im + + + host + www.glyph.im + + + + + gmedianetworks.com + + ruleset + + name + gmedianetworks.com + rule + + + from + ^http://static\.gmedianetworks\.com/ + to + https://static.gmedianetworks.com/ + + + from + ^http://staticcdn\.gmedianetworks\.com/ + to + https://dn6540p04s3vz.cloudfront.net/ + + + target + + host + *.gmedianetworks.com + + + + go!Mokulele + + ruleset + + name + go!Mokulele + rule + + from + ^http://(?:www\.)?iflygo\.com/ + to + https://www.iflygo.com/ + + target + + + host + iflygo.com + + + host + www.iflygo.com + + + + + gogoyoko (partial) + + ruleset + + name + gogoyoko (partial) + rule + + from + ^http://(www\.)?gogoyoko\.com/ + to + https://$1gogoyoko.com/ + + securecookie + + host + ^.*\.gogoyoko\.com$ + name + .* + + target + + + host + gogoyoko.com + + + host + *.gogoyoko.com + + + + + goodsearch (partial) + + ruleset + + name + goodsearch (partial) + rule + + from + ^https?://(?:www\.)?goodsearch\.com/(_gfx/|assets/|favicon\.ico|legacy/|register|Registration\.aspx|ResourceHandler\.ashx) + to + https://www.goodsearch.com/$1 + + target + + + host + goodsearch.com + + + host + www.goodsearch.com + + + + + gotraffic.net (partial) + + ruleset + + name + gotraffic.net (partial) + rule + + from + ^http://cdn\.gotraffic\.net/(?=v/\d+_\d+/images/) + to + https://cdn.gotraffic.net/ + + target + + host + cdn.gotraffic.net + + + + gpl-violations.org (partial) + + ruleset + + name + gpl-violations.org (partial) + platform + cacert + rule + + from + ^http://rt\.gpl-violations\.org/ + to + https://rt.gpl-violations.org/ + + securecookie + + host + ^rt\.gpl-violations\.org$ + name + .+ + + target + + host + rt.gpl-violations.org + + + + graasmilk.net + + ruleset + + name + graasmilk.net + rule + + from + ^http://(www\.)?(webmail\.)?graasmilk\.net/ + to + https://$2graasmilk.net/ + + target + + + host + graasmilk.net + + + host + webmail.graasmilk.net + + + host + www.graasmilk.net + + + + + greenman gaming (partial) + + ruleset + + name + greenman gaming (partial) + rule + + + from + ^http://(www\.)?greenmangaming\.com/user/login + to + https://www.greenmangaming.com/user/login + + + from + ^http://(www\.)?greenmangaming\.com/user/account + to + https://www.greenmangaming.com/user/account + + + target + + + host + greenmangaming.com + + + host + www.greenmangaming.com + + + + + greenpeace.org (very partial) + + ruleset + + name + greenpeace.org (very partial) + rule + + + from + ^http://(www\.)?moon\.greenpeace\.org/ + to + https://moon.greenpeace.org/ + + + from + ^http://(secured|secureusa|donate)\.greenpeace\.org/ + to + https://$1.greenpeace.org/ + + + target + + + host + moon.greenpeace.org + + + host + www.moon.greenpeace.org + + + host + secured.greenpeace.org + + + host + secureusa.greenpeace.org + + + host + donate.greenpeace.org + + + + + grit.io + + ruleset + + name + grit.io + rule + + from + ^http://(www\.)?grit\.io/ + to + https://$1grit.io/ + + target + + + host + grit.io + + + host + www.grit.io + + + + + gsfn.us + + ruleset + + name + gsfn.us + rule + + + from + ^http://gsfn\.us/ + to + https://getsatisfaction.com/ + + + from + ^http://loader\.engage\.gsfn\.us/ + to + https://loader.engage.gsfn.us/ + + + target + + + host + gsfn.us + + + host + loader.engage.gsfn.us + + + + + gulli.com (partial) + + ruleset + + name + gulli.com (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?gulli\.com/ + to + https://www.gulli.com/ + + + from + ^http://(apps|login|static)\.gulli\.com/ + to + https://$1.gulli.com/ + + + target + + + host + gulli.com + + + host + *.gulli.com + + + host + gullipics.com + + + host + *.gullipics.com + + + + + guru.de + + ruleset + + name + guru.de + rule + + from + ^http://(?:www\.)?guru\.de/ + to + https://guru.de/ + + securecookie + + host + ^(?:www\.)?guru\.de$ + name + .+ + + target + + + host + guru.de + + + host + www.guru.de + + + + + h-node.org + + ruleset + + name + h-node.org + rule + + from + ^http://(www\.)?h-node\.org/ + to + https://$1h-node.org/ + + securecookie + + host + ^(?:www\.)?h-node\.org$ + name + .+ + + target + + + host + h-node.org + + + host + www.h-node.org + + + + + h5n.us + + ruleset + + name + h5n.us + rule + + from + ^https?://(?:(virtual\.)|www\.)?h5n\.us/ + to + https://$1h5n.us/ + + target + + + host + h5n.us + + + host + *.h5n.us + + + + + habets.se (partial) + + ruleset + + name + habets.se (partial) + platform + cacert + rule + + from + ^http://(blog|cdn)\.habets(\.pp)?\.se/ + to + https://$1.habets$2.se/ + + securecookie + + host + ^blog\.habets(?:\.pp)?\.se$ + name + .* + + target + + + host + *.habets.se + + + host + *.habets.pp.se + + + + + habpl.us + + ruleset + + name + habpl.us + rule + + from + ^http://(www\.)?habpl\.us/ + to + https://$1habpl.us/ + + securecookie + + host + ^\.?habpl\.us$ + name + .+ + + target + + + host + habpl.us + + + host + www.habpl.us + + + + + habrastorage.org + + ruleset + + name + habrastorage.org + rule + + from + ^http://(?:www\.)?habrastorage\.org/ + to + https://habrastorage.org/ + + target + + + host + habrastorage.org + + + host + www.habrastorage.org + + + + + hackable-devices.org + + ruleset + + name + hackable-devices.org + rule + + from + ^http://(www\.)?hackable-devices\.org/ + to + https://$1hackable-devices.org/ + + target + + + host + hackable-devices.org + + + host + www.hackable-devices.org + + + + + hackers.fi + + ruleset + + name + hackers.fi + rule + + from + ^http://(?:(root\.)|www\.)?hackers\.fi/ + to + https://$1hackers.fi/ + + target + + + host + hackers.fi + + + host + *.hackers.fi + + + + + hackerschool.com + + ruleset + + name + hackerschool.com + rule + + + from + ^http://hackerschool\.com/ + to + https://www.hackerschool.com/ + + + from + ^http://(\w+)\.hackerschool\.com/ + to + https://$1.hackerschool.com/ + + + securecookie + + host + ^(.*\.)?hackerschool\.com$ + name + .* + + target + + + host + hackerschool.com + + + host + *.hackerschool.com + + + + + halo123 (partial) + + ruleset + + name + halo123 (partial) + rule + + from + ^http://user\.hao123\.com/ + to + https://user.hao123.com/ + + target + + host + user.hao123.com + + + + handelsbanken.fi (partial) + + ruleset + + name + handelsbanken.fi (partial) + rule + + + from + ^http://(www\.)?handelsbanken\.fi/ + to + https://www.handelsbanken.fi/ + + + from + ^http://(www1|www2|www9)\.handelsbanken\.fi/ + to + https://$1.handelsbanken.fi/ + + + from + ^http://(www\.)?aktiiviraha\.fi/ + to + https://www.aktiiviraha.fi/ + + + from + ^http://netsale\.aktiiviraha\.fi/ + to + https://netsale.aktiiviraha.fi/ + + + from + ^https://aktiiviraha\.fi/ + to + https://www.aktiiviraha.fi/ + + + from + ^https://handelsbanken\.fi/ + to + https://www.handelsbanken.fi/ + + + target + + + host + handelsbanken.fi + + + host + www.handelsbanken.fi + + + host + www1.handelsbanken.fi + + + host + www2.handelsbanken.fi + + + host + www9.handelsbanken.fi + + + host + netsale.aktiiviraha.fi + + + host + www.aktiiviraha.fi + + + host + aktiiviraha.fi + + + + + hands.com + + ruleset + + name + hands.com + platform + cacert + rule + + from + ^http://(free\.|www\.)?hands\.com/ + to + https://$1hands.com/ + + target + + + host + hands.com + + + host + *.hands.com + + + + + handy.de + + ruleset + + name + handy.de + rule + + + from + ^http://(?:www\.)?handy\.de/+[^?]*\?(.*) + to + https://www.etracker.de/lnkcnt.php?et=kbglnx&url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&lnkname=handy&$1 + + + from + ^http://(?:www\.)?handy\.de/.* + to + https://www.etracker.de/lnkcnt.php?et=kbglnx&url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&lnkname=handy + + + from + ^http://img\.handy\.de/ + to + https://i.arvm.de/ + + + target + + + host + handy.de + + + host + *.handy.de + + + + + happyassassin.net + + ruleset + + name + happyassassin.net + rule + + from + ^http://(mail\.|www\.)?happyassassin\.net/ + to + https://$1happyassassin.net/ + + securecookie + + host + ^(mail\.|www\.)?happyassassin\.net$ + name + .+ + + target + + + host + happyassassin.net + + + host + *.happyassassin.net + + + + + harrenmedianetwork.com + + ruleset + + name + harrenmedianetwork.com + rule + + from + ^http://ad\.harrenmedianetwork\.com/ + to + https://ad.yieldmanager.com/ + + target + + host + ad.harrenmedianetwork.com + + + + hastexo.com + + ruleset + + name + hastexo.com + rule + + from + ^http://(www\.)?hastexo\.com/ + to + https://$1hastexo.com/ + + securecookie + + host + ^(?:www)?\.hastexo\.com$ + name + .+ + + target + + + host + hastexo.com + + + host + *.hastexo.com + + + + + hastrk1.com + + ruleset + + name + hastrk1.com + rule + + from + ^http://(www\.)?hastrk1\.com/ + to + https://$1hastrk1.com/ + + securecookie + + host + hastrk1\.com + name + .+ + + target + + + host + hastrk1.com + + + host + www.hastrk1.com + + + + + haveibeenpwned.com + + ruleset + + name + haveibeenpwned.com + rule + + from + ^https?://haveibeenpwned\.com/ + to + https://haveibeenpwned.com/ + + securecookie + + host + ^(.*\.)?haveibeenpwned\.com$ + name + .+ + + target + + host + haveibeenpwned.com + + + + hbz (partial) + + ruleset + + name + hbz (partial) + rule + + from + ^http://dbspixel\.hbz-nrw\.de/ + to + https://dbspixel.hbz-nrw.de/ + + target + + host + dbspixel.hbz-nrw.de + + + + headstrong.de + + ruleset + + name + headstrong.de + rule + + from + ^http://(?:www\.)?headstrong\.de/ + to + https://www.headstrong.de/ + + securecookie + + host + ^www\.headstrong\.de$ + name + .+ + + target + + + host + headstrong.de + + + host + www.headstrong.de + + + + + heckrath.net + + ruleset + + name + heckrath.net + rule + + + from + ^http://(?:www\.)?heckrath\.net/ + to + https://www.heckrath.net/ + + + from + ^https?://login\.heckrath\.net/ + to + https://www.heckrath.net/login/ + + + securecookie + + host + ^www\.heckrath\.net$ + name + .+ + + target + + + host + heckrath.net + + + host + *.heckrath.net + + + + + heidelberg + + ruleset + + name + heidelberg + rule + + from + ^http://www\.heidelberg\.de/ + to + https://www.heidelberg.de/ + + target + + host + www.heidelberg.de + + + + hello.tokyo + + ruleset + + name + hello.tokyo + rule + + from + ^http://(www\.)?hello\.tokyo/ + to + https://$1hello.tokyo/ + + target + + + host + hello.tokyo + + + host + www.hello.tokyo + + + + + helpOcean + + ruleset + + name + helpOcean + rule + + from + ^http://([\w\-]+\.)?helpocean\.com/ + to + https://$1helpocean.com/ + + securecookie + + host + ^\.helpocean\.com$ + name + .+ + + target + + + host + helpocean.com + + + host + *.helpocean.com + + + + + herbal-nutrition2.net + + ruleset + + name + herbal-nutrition2.net + rule + + from + ^http://(www\.)?herbal-nutrition2\.net/ + to + https://$1herbal-nutrition2.net/ + + securecookie + + host + ^\.herbal-nutrition2\.net$ + name + .+ + + target + + + host + herbal-nutrition2.net + + + host + *.herbal-nutrition2.net + + + + + hesecure.com + + ruleset + + name + hesecure.com + rule + + from + ^http://([\w-]+)\.c13\.hesecure\.com/ + to + https://$1.c13.hesecure.com/ + + securecookie + + host + .+\.c13\.hesecure\.com$ + name + .+ + + target + + host + *.c13.hesecure.com + + + + hi5 + + ruleset + + name + hi5 + platform + mixedcontent + rule + + from + ^http://(?:www\.)?hi5\.com/ + to + https://www.hi5.com/ + + target + + + host + hi5.com + + + host + www.hi5.com + + + + + hideme.today + + ruleset + + name + hideme.today + rule + + from + ^http://(?:www\.)?hideme\.today/ + to + https://hideme.today/ + + target + + + host + hideme.today + + + host + www.hideme.today + + + + + highwebmedia.com + + ruleset + + name + highwebmedia.com + rule + + from + ^http://ssl-c(cstatic|dn)\.highwebmedia\.com/ + to + https://ssl-c$1.highwebmedia.com/ + + target + + host + *.highwebmedia.com + + + + himediadx.com + + ruleset + + name + himediadx.com + rule + + from + ^http://ad\.himediadx\.com/ + to + https://ib.adnxs.com/ + + target + + host + ad.himediadx.com + + + + hitbox.tv + + ruleset + + name + hitbox.tv + rule + + from + ^http://(www\.)?hitbox\.tv/ + to + https://$1hitbox.tv/ + + target + + + host + hitbox.tv + + + host + www.hitbox.tv + + + + + hmapps.net + + ruleset + + name + hmapps.net + rule + + from + ^http://(www\.)?hmapps\.net/ + to + https://$1hmapps.net/ + + securecookie + + host + ^(?:www\.)?hmapps\.net$ + name + .+ + + target + + + host + hmapps.net + + + host + www.hmapps.net + + + + + home buzz.co.uk + + ruleset + + name + home buzz.co.uk + rule + + from + ^http://(www\.)?homebuzz\.co\.uk/ + to + https://$1homebuzz.co.uk/ + + securecookie + + host + ^(?:www)?\.homebuzz\.co\.uk$ + name + .+ + + target + + + host + homebuzz.co.uk + + + host + *.homebuzz.co.uk + + + + + home.pl + + ruleset + + name + home.pl + rule + + from + ^http://((?:akcje|hq|m|panel|(?:m\.)?poczta|pomoc|rozwijaj|www)\.)?home\.pl/ + to + https://$1home.pl/ + + securecookie + + host + ^(?:.+\.)?home\.pl$ + name + .+ + + target + + + host + home.pl + + + host + *.home.pl + + + host + *.akcje.home.pl + + + host + *.panel.home.pl + + + host + *.poczta.home.pl + + + host + *.m.poczta.home.pl + + + + + hope.net (false MCB) + + ruleset + + name + hope.net (false MCB) + platform + mixedcontent + rule + + from + ^http://wiki\.hope\.net/ + to + https://wiki.hope.net/ + + target + + host + wiki.hope.net + + + + hope.net (partial) + + ruleset + + name + hope.net (partial) + rule + + + from + ^http://(?:www\.)?hope\.net/ + to + https://hope.net/ + + + from + ^http://wiki\.hope\.net/w/ + to + https://wiki.hope.net/w/ + + + target + + + host + hope.net + + + host + *.hope.net + + + + + host2.bg + + ruleset + + name + host2.bg + rule + + from + ^http://(www\.)?host2\.bg/ + to + https://$1host2.bg/ + + securecookie + + host + ^(?:www\.)?host2\.bg$ + name + .+ + + target + + + host + host2.bg + + + host + www.host2.bg + + + + + hostname.sk (partial) + + ruleset + + name + hostname.sk (partial) + rule + + from + ^http://(blog|sendxmpp|whatsmyip)\.hostname\.sk/ + to + https://$1.hostname.sk/ + + securecookie + + host + ^blog\.hostname\.sk$ + name + .+ + + target + + host + *.hostname.sk + + + + hotel.ch + + ruleset + + name + hotel.ch + rule + + from + ^http://(?:www\.)?hotel\.ch/ + to + https://www.hotel.ch/ + + target + + + host + hotel.ch + + + host + www.hotel.ch + + + + + hstor.org + + ruleset + + name + hstor.org + rule + + from + ^http://(alpha\.|beta\.)?hstor\.org/ + to + https://$1hstor.org/ + + securecookie + + host + ^hstore\.org$ + name + .+ + + target + + + host + hstor.org + + + host + *.hstor.org + + + + + huuto.net + + ruleset + + name + huuto.net + rule + + + from + ^http://(www\.)?huuto\.net/ + to + https://salattu.huuto.net/ + + + from + ^http://salattu\.huuto\.net/ + to + https://salattu.huuto.net/ + + + from + ^http://kuvat2\.huuto\.net/ + to + https://kuvat2.huuto.net/ + + + from + ^http://kuvat\.?huuto\.net/ + to + https://kuvat.huuto.net/ + + + target + + + host + huuto.net + + + host + www.huuto.net + + + host + salattu.huuto.net + + + host + kuvat2.huuto.net + + + host + kuvat.huuto.net + + + + + hvosting.ua + + ruleset + + name + hvosting.ua + rule + + from + ^http://(www\.)?hvosting\.ua/ + to + https://$1hvosting.ua/ + + securecookie + + host + ^(?:.*\.)?hvosting\.ua$ + name + .+ + + target + + + host + hvosting.ua + + + host + *.hvosting.ua + + + + + i love blue sea.com + + ruleset + + name + i love blue sea.com + rule + + from + ^http://(www\.)?ilovebluesea\.com/ + to + https://$1ilovebluesea.com/ + + securecookie + + host + ^\.(?:www\.)?ilovebluesea\.com$ + name + .+ + + target + + + host + ilovebluesea.com + + + host + *.ilovebluesea.com + + + + + i.materialise (partial) + + ruleset + + name + i.materialise (partial) + rule + + from + ^http://i\.materialise\.com/(blog(?:$|[\?/])|img/|Storage/|Styles/) + to + https://i.materialise.com/$1 + + target + + host + i.materialise.com + + + + i0.cz + + ruleset + + name + i0.cz + rule + + from + ^http://(?:www\.)?i0\.cz/ + to + https://i0.cz/ + + target + + + host + i0.cz + + + host + www.i0.cz + + + + + i3wm.org (partial) + + ruleset + + name + i3wm.org (partial) + rule + + from + ^http://faq\.i3wm\.org/ + to + https://faq.i3wm.org/ + + securecookie + + host + ^faq\.i3wm\.org$ + name + .+ + + target + + host + faq.i3wm.org + + + + iATS Payments.com (partial) + + ruleset + + name + iATS Payments.com (partial) + rule + + from + ^http://(?:www\.)?iatspayments\.com/ + to + https://www.iatspayments.com/ + + target + + + host + iatspayments.com + + + host + www.iatspayments.com + + + + + iAmplify (partial) + + ruleset + + name + iAmplify (partial) + rule + + + from + ^http://affiliate(s)?\.iamplify\.com/ + to + https://affiliate$1.iamplify.com/ + + + from + ^http://(\w+\.)?iamplify\.com/(shared_|store/(shared_)?)?(css/|images/|password_forgotten|signin) + to + https://$1iamplify.com/$1 + + + securecookie + + host + ^affiliates?\.iamplify\.com$ + name + .* + + target + + + host + iamplify.com + + + host + *.iamplify.com + + + + + iBario.com + + ruleset + + name + iBario.com + rule + + from + ^http://(?:www\.)?ibario\.com/ + to + https://www.ibario.com/ + + target + + + host + ibario.com + + + host + www.ibario.com + + + + + iCarol + + ruleset + + name + iCarol + rule + + from + ^http://((webapp|www)\.)?icarol\.com/ + to + https://$1icarol.com/ + + securecookie + + host + ^(webapp|www)\.icarol\.com$ + name + .+ + + target + + + host + icarol.com + + + host + webapp.icarol.com + + + host + www.icarol.com + + + + + iCharts (partial) + + ruleset + + name + iCharts (partial) + rule + + from + ^http://accounts\.icharts\.net/ + to + https://accounts.icharts.net/ + + securecookie + + host + ^accounts\.icharts\.net$ + name + .+ + + target + + host + accounts.icharts.net + + + + iClick Interactive (partial) + + ruleset + + name + iClick Interactive (partial) + rule + + from + ^http://e02\.optimix\.asia/ + to + https://e02.optimix.asia/ + + securecookie + + + host + ^\.optimix\.asia$ + name + ^opxPID$ + + + host + ^e02\.optimix\.asia$ + name + .+ + + + target + + host + *.optimix.asia + + + + iCommons (partial) + + ruleset + + name + iCommons (partial) + rule + + from + ^https?://(?:www\.)?icommons\.org/wp-content/ + to + https://s69107.gridserver.com/wp-content/ + + target + + + host + icommons.org + + + host + www.icommons.org + + + + + iCommunity.fr + + ruleset + + name + iCommunity.fr + rule + + from + ^http://www\.icommunity\.fr/ + to + https://www.icommunity.fr/ + + target + + host + www.icommunity.fr + + + + iDownloadBlog (partial) + + ruleset + + name + iDownloadBlog (partial) + rule + + from + ^https?://media\.idownloadblog\.com/ + to + https://idownloadblog.plssl.com/ + + target + + host + media.idownloadblog.com + + + + iEntry (partial) + + ruleset + + name + iEntry (partial) + platform + mixedcontent + rule + + + from + ^http://(www\.)?ientry\.com/ + to + https://$1ientry.com/ + + + from + ^https?://cdn\.ientry\.com/ + to + https://d195lklsc86qb5.cloudfront.net/ + + + securecookie + + host + ^www\.ientry\.com$ + name + .* + + target + + + host + ientry.com + + + host + *.ientry.com + + + + + iFixit (partial) + + ruleset + + name + iFixit (partial) + rule + + + from + ^https?://ifixit-meta\.dozuki\.net/ + to + https://d225i93lhigkl1.cloudfront.net/ + + + from + ^http://(www\.)?ifixit\.com/(cart|Guide)/login(/register)?($|\?) + to + https://$1ifixit.com/$2/login$3$4 + + + from + ^http://edu\.ifixit\.com/ + to + https://edu.ifixit.com/ + + + from + ^http://meta\.ifixit\.com/login(/register)?($|\?) + to + https://meta.ifixit.com/login$1$2 + + + from + ^https?://cart-products\.ifixit\.net/ + to + https://da2lh5cs8ikqj.cloudfront.net/ + + + from + ^https?://guide-images\.ifixit\.net/ + to + https://d3nevzfk7ii3be.cloudfront.net/ + + + securecookie + + host + ^\.edu\.ifixit\.com$ + name + .+ + + target + + + host + ifixit-meta.dozuki.net + + + host + ifixit.com + + + host + *.ifixit.com + + + host + *.edu.ifixit.com + + + host + *.ifixit.net + + + + + iFriends (partial) + + ruleset + + name + iFriends (partial) + rule + + from + ^http://images\.ifriends\.net/ + to + https://images.ifriends.net/ + + securecookie + + host + ^\.ifriends\.net$ + name + .* + + target + + host + *.ifriends.net + + + + iGaming (partial) + + ruleset + + name + iGaming (partial) + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?(bwin|gambling-affiliation)\.com/ + to + https://www.$1.com/ + + + from + ^http://casino\.bwin\.com/ + to + https://casino.bwin.com/ + + + from + ^http://(adserver|mcf)\.itsfogo\.com/ + to + https://$1.itsfogo.com/ + + + securecookie + + host + ^(.*\.)?(bwin|gambling-affiliation|itsfogo)\.com$ + name + .* + + target + + + host + bwin.com + + + host + *.bwin.com + + + host + gambling-affiliation.com + + + host + *.gambling-affiliation.com + + + host + *.itsfogo.com + + + + + iGoDigital.com + + ruleset + + name + iGoDigital.com + rule + + + from + ^http://(?:www\.)?igodigital\.com/.* + to + https://www.exacttarget.com/products/predictive-intelligence/ + + + from + ^http://(\w+)\.collect\.igodigital\.com/ + to + https://$1.collect.igodigital.com/ + + + target + + + host + igodigital.com + + + host + *.igodigital.com + + + + + iGrasp + + ruleset + + name + iGrasp + rule + + from + ^http://([\w-]+)\.i-grasp\.com/ + to + https://$1.i-grasp.com/ + + securecookie + + host + ^.+\.i-grasp\.com$ + name + .+ + + target + + host + *.i-grasp.com + + + + iHeart.com (partial) + + ruleset + + name + iHeart.com (partial) + rule + + + from + ^http://((?:iscale|pylon|www)\.)?iheart\.com/ + to + https://$1iheart.com/ + + + from + ^http://(?:secure)?static\.iheart\.com/ + to + https://securestatic.iheart.com/ + + + securecookie + + host + ^\.iheart\.com$ + name + .+ + + target + + + host + iheart.com + + + host + *.iheart.com + + + + + iKoruna + + ruleset + + name + iKoruna + rule + + from + ^http://(www\.)?i-koruna\.com/ + to + https://$1i-koruna.com/ + + securecookie + + host + ^www\.i-koruna\.com$ + name + .+ + + target + + + host + i-koruna.com + + + host + www.i-koruna.com + + + + + iLivid (partial) + + ruleset + + name + iLivid (partial) + rule + + from + ^http://(www\.)?ilivid\.com/ + to + https://$1ilivid.com/ + + target + + + host + ilivid.com + + + host + *.ilivid.com + + + + + iLogo + + ruleset + + name + iLogo + rule + + from + ^http://(www\.)?ilogo\.in/ + to + https://$1ilogo.in/ + + securecookie + + host + ^(?:.*\.)?ilogo\.in$ + name + .+ + + target + + + host + ilogo.in + + + host + *.ilogo.in + + + + + iMedia Communications + + ruleset + + name + iMedia Communications + rule + + from + ^http://(?:www\.)?imediaconnection\.com/ + to + https://www.imediaconnection.com/ + + securecookie + + host + ^www\.imediaconnection\.com$ + name + .* + + target + + + host + imediaconnection.com + + + host + www.imediaconnection.com + + + + + iModules + + ruleset + + name + iModules + rule + + from + ^http://((?:admin(?:lb)?|clients|culinary|iuaa|niu|securelb|ucsb|www)\.)?imodules\.com/ + to + https://$1imodules.com/ + + securecookie + + host + ^(?:iuaa|securelb)\.imodules\.com$ + name + .+ + + target + + + host + imodules.com + + + host + *.imodules.com + + + + + iNaturalist.org + + ruleset + + name + iNaturalist.org + rule + + + from + ^http://(www\.)?inaturalist\.org/ + to + https://$1inaturalist.org/ + + + from + ^http://static\.inaturalist\.org/ + to + https://s3.amazonaws.com/static.inaturalist.org/ + + + securecookie + + host + ^www\.inaturalist\.org$ + name + .+ + + target + + + host + inaturalist.org + + + host + *.inaturalist.org + + + + + iNet Interactive (partial) + + ruleset + + name + iNet Interactive (partial) + rule + + from + ^http://(www\.)?inetinteractive\.com/ + to + https://$1inetinteractive.com/ + + target + + + host + inetinteractive.com + + + host + www.inetinteractive.com + + + + + iOpus.com (partial) + + ruleset + + name + iOpus.com (partial) + rule + + from + ^http://support\.iopus\.com/ + to + https://support.iopus.com/ + + securecookie + + host + ^support\.iopus\.com$ + name + .+ + + target + + host + support.iopus.com + + + + iPR Software.com (partial) + + ruleset + + name + iPR Software.com (partial) + rule + + from + ^http://(www\.)?cms\.iprsoftware\.com/ + to + https://$1cms.iprsoftware.com/ + + securecookie + + host + ^(?:www\.)?cms\.iprsoftware\.com$ + name + .+ + + target + + host + *.iprsoftware.com + + + + iPXE.org (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?ipxe\.org/(?!.*\?do=(?:login|resendpwd|register)) + + name + iPXE.org (partial) + rule + + from + ^http://((?:boot|git|www)\.)?ipxe\.org/ + to + https://$1ipxe.org/ + + target + + + host + ipxe.org + + + host + *.ipxe.org + + + + + iPage + + ruleset + + name + iPage + rule + + + from + ^http://(?:www\.)?ipage\.com/ + to + https://www.ipage.com/ + + + from + ^http://([\w-]+)\.ipage\.com/ + to + https://$1.ipage.com/ + + + securecookie + + host + .*\.ipage\.com$ + name + .+ + + target + + + host + ipage.com + + + host + *.ipage.com + + + + + iPerceptions (partial) + + ruleset + + name + iPerceptions (partial) + rule + + from + ^http://(aiportal|(4qinvite\.4q)|ipinvite|ips-invite|ips-portal)\.iperceptions\.com/ + to + https://$1.iperceptions.com/ + + securecookie + + host + ^(aiportal|(4qinvite\.4q)|ipinvite|ips-invite|ips-portal)\.iperceptions\.com$ + name + .+ + + target + + + host + aiportal.iperceptions.com + + + host + 4qinvite.4q.iperceptions.com + + + host + ipinvite.iperceptions.com + + + host + ips-invite.iperceptions.com + + + host + ips-portal.iperceptions.com + + + + + iPwnAge.com + + ruleset + + name + iPwnAge.com + rule + + from + ^http://(www\.)?ipwnage\.com/ + to + https://$1ipwnage.com/ + + securecookie + + host + ^(?:www\.)?ipwnage\.com$ + name + .+ + + target + + + host + ipwnage.com + + + host + www.ipwnage.com + + + + + iSEC Partners + + ruleset + + name + iSEC Partners + rule + + from + ^http://(labs\.|www\.)?isecpartners\.com/ + to + https://$1isecpartners.com/ + + securecookie + + host + ^(.*\.)?isecpartners\.com$ + name + .* + + target + + + host + isecpartners.com + + + host + *.isecpartners.com + + + + + iTactic.com + + ruleset + + name + iTactic.com + rule + + from + ^http://(?:www\.)?itactic\.com/ + to + https://www.itactic.com/ + + securecookie + + host + ^\.itactic\.com$ + name + .+ + + target + + + host + itactic.com + + + host + *.itactic.com + + + + + iTechnician.co.uk + + ruleset + + name + iTechnician.co.uk + rule + + from + ^http://(www\.)?itechnician\.co\.uk/ + to + https://$1itechnician.co.uk/ + + securecookie + + host + ^\.itechnician\.co\.uk$ + name + .+ + + target + + + host + itechnician.co.uk + + + host + *.itechnician.co.uk + + + + + iTerm2.org + + ruleset + + name + iTerm2.org + rule + + from + ^http://(www\.)?iterm2\.org/ + to + https://$1iterm2.org/ + + target + + + host + iterm2.org + + + host + www.iterm2.org + + + + + iVoox.com + + ruleset + + name + iVoox.com + rule + + + from + ^http://(www\.)?ivoox\.com/ + to + https://$1ivoox.com/ + + + from + ^http://images1\.ivoox\.com/ + to + https://d24j0spkseaxmc.cloudfront.net/ + + + securecookie + + host + ^www\.ivoox\.com$ + name + .+ + + target + + + host + ivoox.com + + + host + *.ivoox.com + + + + + iWOWCase + + ruleset + + name + iWOWCase + rule + + from + ^http://(www\.)?iwowcase\.com/ + to + https://$1iwowcase.com/ + + securecookie + + host + ^\.iwowcase\.com$ + name + .+ + + target + + + host + iwowcase.com + + + host + *.iwowcase.com + + + + + iWantClips.com + + ruleset + + name + iWantClips.com + rule + + from + ^http://(www\.)?iwantclips\.com/ + to + https://$1iwantclips.com/ + + securecookie + + host + ^iwantclips\.com$ + name + .+ + + target + + + host + iwantclips.com + + + host + www.iwantclips.com + + + + + iWebReader (partial) + + ruleset + + name + iWebReader (partial) + rule + + + from + ^http://secure\.iwebreader\.com/ + to + https://secure.iwebreader.com/ + + + from + ^http://static\.iwebreader\.com/ + to + https://du4ozcxd5zwr5.cloudfront.net/ + + + target + + host + *.iwebreader.com + + + + iXsystems + + ruleset + + name + iXsystems + rule + + + from + ^http://(?:www\.)?ixsystems\.com/ + to + https://www.ixsystems.com/ + + + from + ^http://(mail|support)\.ixsystems\.com/ + to + https://$1.ixsystems.com/ + + + securecookie + + host + ^(?:mail|support)\.ixsystems\.com$ + name + .+ + + target + + + host + ixsystems.com + + + host + *.ixsystems.com + + + + + iamnoone-solutions.net (partial) + + ruleset + + name + iamnoone-solutions.net (partial) + rule + + + from + ^http://analytics\.iamnoone-solutions\.net/ + to + https://analytics.iamnoone-solutions.net/ + + + from + ^http://cdn\.analytics\.iamnoone-solutions\.net/ + to + https://4014-iamnoonesolution.netdna-ssl.com/ + + + target + + host + *.iamnoone-solutions.net + + + + ian.com + + ruleset + + name + ian.com + rule + + from + ^https?://(?:www\.)?ian\.com/ + to + https://www.ian.com/ + + securecookie + + host + ^\.ian\.com$ + name + .+ + + target + + + host + ian.com + + + host + *.ian.com + + + + + ibibo.com (partial) + + ruleset + + name + ibibo.com (partial) + rule + + from + ^http://ads\.ibibo\.com/ + to + https://ads.ibibo.com/ + + target + + host + ads.ibibo.com + + + + ibqonline.com + + ruleset + + name + ibqonline.com + rule + + from + ^http://(?:www\.)?ibqonline\.com/ + to + https://www.ibqonline.com/ + + securecookie + + host + ^www\.ibqonline\.com$ + name + .+ + + target + + + host + ibqonline.com + + + host + www.ibqonline.com + + + + + ic-live.com + + ruleset + + name + ic-live.com + rule + + from + ^http://(c\d+\.|www\.)?ic-live\.com/ + to + https://$1ic-live.com/ + + securecookie + + host + ^\.ic-live\.com$ + name + .+ + + target + + + host + ic-live.com + + + host + *.ic-live.com + + + + + icanhazip.com + + ruleset + + name + icanhazip.com + rule + + from + ^http://(www\.)?icanhazip\.com/ + to + https://$1icanhazip.com/ + + target + + + host + icanhazip.com + + + host + www.icanhazip.com + + + + + icez.net + + ruleset + + name + icez.net + rule + + from + ^http://(www\.)?icez\.net/ + to + https://$1icez.net/ + + target + + + host + icez.net + + + host + www.icez.net + + + + + icsdelivery.com + + ruleset + + name + icsdelivery.com + rule + + + from + ^http://(?:www\.)?icsdelivery\.com/ + to + https://www.icsdelivery.com/ + + + from + ^http://enroll\.icsdelivery\.com/ + to + https://enroll.icsdelivery.com/ + + + securecookie + + host + ^(?:enroll|www)\.icsdelivery\.com$ + name + .+ + + target + + + host + icsdelivery.com + + + host + *.icsdelivery.com + + + + + idefi + + ruleset + + name + idefi + rule + + from + ^http://(www\.)?idefimusic\.com/ + to + https://$1idefimusic.com/ + + securecookie + + host + ^(?:www)?\.idefimusic.com$ + name + .+ + + target + + + host + idefimusic.com + + + host + *.idefimusic.com + + + + + iesnare.com + + ruleset + + name + iesnare.com + rule + + from + ^http://mpsnare\.iesnare\.com/ + to + https://mpsnare.iesnare.com/ + + securecookie + + host + ^\.iesnare\.com$ + name + ^token$ + + target + + host + *.iesnare.com + + + + igHome.com + + ruleset + + name + igHome.com + rule + + + from + ^http://(?:www\.)?ighome\.com/ + to + https://www.ighome.com/ + + + from + ^http://rss\.ighome\.com/ + to + https://rss.ighome.com/ + + + securecookie + + host + ^(?:rss|www)\.ighome\.com$ + name + .+ + + target + + + host + ighome.com + + + host + *.ighome.com + + + + + iiBuy.com.au + + ruleset + + name + iiBuy.com.au + rule + + from + ^http://(www\.)?iibuy\.com\.au/ + to + https://$1iibuy.com.au/ + + securecookie + + host + ^\.?www\.iibuy\.com\.au$ + name + .+ + + target + + + host + iibuy.com.au + + + host + *.iibuy.com.au + + + + + iiNet.net.au (partial) + + ruleset + + name + iiNet.net.au (partial) + rule + + + from + ^http://((?:hostedmail|iihelp|mail|toolbox3?|www)\.)?iinet\.net\.au/ + to + https://$1iinet.net.au/ + + + from + ^http://hostedwebmail\.iinet\.net\.au/$ + to + https://hostedmail.iinet.net.au/ + + + securecookie + + host + ^mail\.iinet\.net\.au$ + name + ^atmail6$ + + target + + + host + iinet.net.au + + + host + *.iinet.net.au + + + + + ikgalekkerslapen.nl + + ruleset + + name + ikgalekkerslapen.nl + rule + + from + ^http://www\.ikgalekkerslapen\.nl/ + to + https://www.ikgalekkerslapen.nl/ + + securecookie + + host + ^www\.ikgalekkerslapen\.nl$ + name + .+ + + target + + host + www.ikgalekkerslapen.nl + + + + ikiwiki.info + + ruleset + + name + ikiwiki.info + rule + + from + ^http://(www\.)?ikiwiki\.info/ + to + https://$1ikiwiki.info/ + + target + + + host + ikiwiki.info + + + host + www.ikiwiki.info + + + + + imagesBN.com + + ruleset + + name + imagesBN.com + rule + + + from + ^http://s?img([12])\.imagesbn\.com/ + to + https://simg$1.imagesbn.com/ + + + from + ^http://img3\.imagesbn\.com/ + to + https://img3.imagesbn.com/ + + + target + + host + *.imagesbn.com + + + + imfimg.com + + ruleset + + name + imfimg.com + rule + + from + ^http://(www\.)?imfimg\.com/ + to + https://$1imfimg.com/ + + securecookie + + host + ^(?:w*\.)?imfimg\.com$ + name + .+ + + target + + + host + imfimg.com + + + host + *.imfimg.com + + + + + imgbox (partial) + + ruleset + + name + imgbox (partial) + rule + + from + ^http://(www\.)?imgbox\.com/(assets/|(?:dmca|help|login|register|tos)(?:$|\?)) + to + https://$1imgbox.com/$2 + + target + + + host + imgbox.com + + + host + www.imgbox.com + + + + + imgfav (partial) + + ruleset + + name + imgfav (partial) + rule + + from + ^https?://pull\.imgfave\.netdna-cdn\.com/ + to + https://d2tq98mqfjyz2l.cloudfront.net/ + + target + + host + pull.imgfave.netdna-cdn.com + + + + imgs Mail.ru (partial) + + ruleset + + name + imgs Mail.ru (partial) + rule + + from + ^http://(auto|cars|go|hi-tech|img\d*|limg|proxy|\w+\.radar)\.imgsmail\.ru/ + to + https://$1.imgsmail.ru/ + + target + + host + *.imgsmail.ru + + + + imiclk.com + + ruleset + + name + imiclk.com + rule + + from + ^http://www\.imiclk\.com/ + to + https://www.imiclk.com/ + + securecookie + + host + ^\.imiclk\.com$ + name + .+ + + target + + host + *.imiclk.com + + + + imine.co + + ruleset + + name + imine.co + rule + + from + ^http://(www\.)?imine\.co/ + to + https://$1imine.co/ + + securecookie + + host + ^\.?imine\.co$ + name + .+ + + target + + + host + imine.co + + + host + *.imine.co + + + + + imo.im + + ruleset + + name + imo.im + rule + + from + ^http://(www\.)?imo\.im/ + to + https://$1imo.im/ + + securecookie + + host + ^(?:www\.)?imo\.im$ + name + .+ + + target + + + host + imo.im + + + host + www.imo.im + + + + + impAct (partial) + + ruleset + + name + impAct (partial) + rule + + + from + ^http://as\.(dc|ief|iy)\.impact-ad\.jp/ + to + https://as.$1.impact-ad.jp/ + + + from + ^http://(img\.ak|[my]\.one)\.impact-ad\.jp/ + to + https://$1.impact-ad.jp/ + + + securecookie + + host + ^(?:\.dc|\.?[my]\.one)?\.impact-ad\.jp$ + name + .+ + + target + + host + *.impact-ad.jp + + + + imwx.com (partial) + + ruleset + + name + imwx.com (partial) + rule + + from + ^http://i\.imwx\.com/ + to + https://a248.e.akamai.net/f/1574/4498/10/i.imwx.com/ + + target + + host + i.imwx.com + + + + in-Disguise.com + + ruleset + + name + in-Disguise.com + rule + + + from + ^http://(my\.|www\.)?in-disguise\.com/ + to + https://$1in-disguise.com/ + + + from + ^http://(www\.)?vpnincome\.com/ + to + https://$1vpnincome.com/ + + + securecookie + + host + ^(?:my)?\.(?:in-disguise|vpn-income)\.com$ + name + .+ + + target + + + host + in-disguise.com + + + host + *.in-disguise.com + + + host + vpnincome.com + + + host + *.vpnincome.com + + + + + inCloak.com + + ruleset + + name + inCloak.com + rule + + from + ^http://(?:www\.)?incloak\.com/ + to + https://incloak.com/ + + securecookie + + host + ^incloak\.com$ + name + .+ + + target + + + host + incloak.com + + + host + www.incloak.com + + + + + inSided (partial) + + ruleset + + name + inSided (partial) + rule + + from + ^http://static\.insided\.nl/ + to + https://static.insided.nl/ + + target + + host + static.insided.nl + + + + incoin.io (partial) + + ruleset + + name + incoin.io (partial) + rule + + from + ^http://(beta\.|www\.)?incoin\.io/ + to + https://$1incoin.io/ + + target + + + host + incoin.io + + + host + *.incoin.io + + + + + informatick.net (partial) + + ruleset + + exclusion + + pattern + ^http://www\.informatick\.net/+(?!images/|lib/) + + name + informatick.net (partial) + rule + + + from + ^http://(www\.)?informatick\.com/ + to + https://$1informatick.com/ + + + from + ^http://(paste\.|www\.)?informatick\.net/ + to + https://$1informatick.net/ + + + securecookie + + host + ^paste\.informatick\.net$ + name + .+ + + target + + + host + informatick.com + + + host + www.informatick.com + + + host + informatick.net + + + host + *.informatick.net + + + + + informationactivism.org + + ruleset + + name + informationactivism.org + rule + + from + ^http://(archive\.|www\.)?informationactivism\.org/ + to + https://$1informationactivism.org/ + + securecookie + + host + ^\.archive\.informationactivism\.org$ + name + .+ + + target + + + host + informationactivism.org + + + host + *.informationactivism.org + + + + + ingentaconnect (partial) + + ruleset + + name + ingentaconnect (partial) + rule + + from + ^http://(www\.)?ingentaconnect\.com/(css|images|(?:journal|provider)-logos|session)/ + to + https://$1ingentaconnect.com/$2/ + + target + + + host + ingentaconnect.com + + + host + www.ingentaconnect.com + + + + + inkFrog.com (partial) + + ruleset + + name + inkFrog.com (partial) + rule + + + from + ^http://(www\.)?inkfrog\.com/ + to + https://$1inkfrog.com/ + + + from + ^https?://thumbnails\.inkfrog\.com/ + to + https://d33oiwhbojapjx.cloudfront.net/ + + + securecookie + + host + ^(?:www\.)?inkfrog\.com$ + name + .+ + + target + + + host + inkfrog.com + + + host + *.inkfrog.com + + + + + insidecelebs.com + + ruleset + + name + insidecelebs.com + rule + + from + ^http://(www\.)?insidecelebs\.com/ + to + https://$1insidecelebs.com/ + + securecookie + + host + ^\.insidecelebs\.com$ + name + .+ + + target + + + host + insidecelebs.com + + + host + *.insidecelebs.com + + + + + insideygs.com + + ruleset + + name + insideygs.com + rule + + from + ^http://(adintegration\.|www\.)?insideygs\.com/ + to + https://$1.insideygs.com/ + + securecookie + + host + ^adintegration\.insideygs\.com$ + name + .+ + + target + + + host + insideygs.com + + + host + *.insideygs.com + + + + + intelli-direct.com + + ruleset + + name + intelli-direct.com + rule + + from + ^http://([\w-]+\.)?intelli-direct\.com/ + to + https://$1intelli-direct.com/ + + securecookie + + host + ^\.intelli-direct\.com$ + name + .+ + + target + + + host + intelli-direct.com + + + host + *.intelli-direct.com + + + + + intelliot.com + + ruleset + + name + intelliot.com + rule + + from + ^http://(www\.)?intelliot\.com/ + to + https://$1intelliot.com/ + + securecookie + + host + ^\.intelliot\.com$ + name + .+ + + target + + + host + intelliot.com + + + host + *.intelliot.com + + + + + intelliserver.net + + ruleset + + name + intelliserver.net + rule + + from + ^http://(?:www\.)?intelliserver\.net/ + to + https://www.intelliserver.net/ + + target + + + host + intelliserver.net + + + host + www.intelliserver.net + + + + + intentmedia.net (partial) + + ruleset + + name + intentmedia.net (partial) + rule + + from + ^http://a\.intentmedia\.net/ + to + https://a.intentmedia.net/ + + target + + host + a.intentmedia.net + + + + intern0t.org (partial) + + ruleset + + name + intern0t.org (partial) + rule + + from + ^http://forum\.intern0t\.org/ + to + https://forum.intern0t.org/ + + target + + host + forum.intern0t.org + + + + internetsuccess.at + + ruleset + + name + internetsuccess.at + rule + + from + ^http://(?:(p42\.|second\.)|www\.)?internetsuccess\.at/ + to + https://$1internetsuccess.at/ + + target + + + host + internetsuccess.at + + + host + *.internetsuccess.at + + + + + iovation + + ruleset + + name + iovation + rule + + from + ^http://(admin\.|www\.)?iovation\.com/ + to + https://$1iovation.com/ + + securecookie + + host + ^(?:.+\.)?iovation\.com$ + name + .+ + + target + + + host + iovation.com + + + host + *.iovation.com + + + + + is.gd + + ruleset + + name + is.gd + rule + + from + ^http://is\.gd/ + to + https://is.gd/ + + securecookie + + host + is\.gd$ + name + .* + + target + + host + is.gd + + + + isoHunt.to (partial) + + ruleset + + name + isoHunt.to (partial) + rule + + from + ^http://(?:www\.)?isohunt\.to/ + to + https://isohunt.to/ + + securecookie + + host + ^isohunt\.to$ + name + .+ + + target + + + host + isohunt.to + + + host + www.isohunt.to + + + + + isocket (partial) + + ruleset + + name + isocket (partial) + rule + + + from + ^http://d\.adsbyisocket\.com/ + to + https://d.adsbyisocket.com/ + + + from + ^http://(www\.)?isocket\.com/ + to + https://$1isocket.com/ + + + securecookie + + host + ^.*\.(adsby)?isocket\.com$ + name + .* + + target + + + host + *.adsbyisocket.com + + + host + isocket.com + + + host + www.isocket.com + + + host + *.www.isocket.com + + + + + ispgateway.de (partial) + + ruleset + + name + ispgateway.de (partial) + rule + + from + ^http://ml01\.ispgateway\.de/ + to + https://ml01.ispgateway.de/ + + target + + host + ml01.ispgateway.de + + + + istanbul hs.org + + ruleset + + name + istanbul hs.org + rule + + from + ^http://(www\.)?istanbulhs\.org/ + to + https://$1istanbulhs.org/ + + target + + + host + istanbulhs.org + + + host + www.istanbulhs.org + + + + + istheinternetonfire.com + + ruleset + + name + istheinternetonfire.com + rule + + + from + ^https?://istheinternetonfire\.com/ + to + https://www.istheinternetonfire.com/ + + + from + ^http://([^/:@]+)?\.istheinternetonfire\.com/ + to + https://$1.istheinternetonfire.com/ + + + securecookie + + host + ^(.*\.)?istheinternetonfire\.com$ + name + .+ + + target + + + host + istheinternetonfire.com + + + host + *.istheinternetonfire.com + + + + + isyVmon (partial) + + ruleset + + name + isyVmon (partial) + rule + + from + ^http://(?:www\.)?isyvmon\.com/(fileadmin/|index\.php\?eID=sr_freecap_captcha|(?:de/)?login\.html|typo3(?:conf|temp)?/) + to + https://www.isyvmon.com/$1 + + target + + + host + isyvmon.com + + + host + www.isyvmon.com + + + + + itbiz.cz + + ruleset + + name + itbiz.cz + rule + + from + ^http://(?:www\.)?itbiz\.cz/ + to + https://www.itbiz.cz/ + + securecookie + + host + ^www\.itbiz\.cz$ + name + .+ + + target + + + host + itbiz.cz + + + host + www.itbiz.cz + + + + + itella.fi + + ruleset + + exclusion + + pattern + ^http://(www\.)?itella\.fi/itemtracking/ + + name + itella.fi + platform + mixedcontent + rule + + from + ^http://(www\.)?itella\.fi/ + to + https://itella.fi/ + + securecookie + + host + ^(www)?\.?itella\.fi + name + .* + + target + + + host + www.itella.fi + + + host + itella.fi + + + + + itrust.org.cn + + ruleset + + name + itrust.org.cn + rule + + from + ^http://(www\.)?itrust\.org\.cn/ + to + https://$1itrust.org.cn/ + + securecookie + + host + ^(?:www\.)?itrust\.org\.cn$ + name + .+ + + target + + + host + itrust.org.cn + + + host + www.itrust.org.cn + + + + + ivarch.com + + ruleset + + name + ivarch.com + rule + + from + ^http://(www\.)?ivarch\.com/ + to + https://$1ivarch.com/ + + target + + + host + ivarch.com + + + host + www.ivarch.com + + + + + ivwbox.de (partial) + + ruleset + + exclusion + + pattern + ^http://(?:pro|www)\. + + name + ivwbox.de (partial) + rule + + from + ^http://([\w-]+)\.ivwbox\.de/ + to + https://$1.ivwbox.de/ + + securecookie + + + host + ^\.ivwbox\.de$ + name + ^i00$ + + + host + .+\.ivwbox\.de$ + name + .+ + + + target + + host + *.ivwbox.de + + + + iway.ch + + ruleset + + exclusion + + + pattern + ^http://netbackup\.iway\.ch + + + pattern + ^http://statistik\.iway\.ch + + + name + iway.ch + rule + + + from + ^https?://iway\.ch/ + to + https://www.iway.ch/ + + + from + ^http://([^/:@]+)?\.iway\.ch/ + to + https://$1.iway.ch/ + + + target + + + host + iway.ch + + + host + *.iway.ch + + + + + j2global.com + + ruleset + + name + j2global.com + rule + + from + ^http://sassets\.j2global\.com/ + to + https://sassets.j2global.com/ + + target + + host + sassets.j2global.com + + + + jQuery (partial) + + ruleset + + name + jQuery (partial) + rule + + from + ^http://((?:api|code|forum|learn|meetups|plugins|www)\.)?jquery\.com/ + to + https://$1jquery.com/ + + securecookie + + host + ^(?:forum|meetups)\.jquery\.com$ + name + .+ + + target + + + host + jquery.com + + + host + *.jquery.com + + + + + jQuery Mobile.com (partial) + + ruleset + + name + jQuery Mobile.com (partial) + rule + + from + ^http://(?:(api\.|themeroller\.)|www\.)?jquerymobile\.com/ + to + https://$1jquerymobile.com/ + + target + + + host + jquerymobile.com + + + host + *.jquerymobile.com + + + + + jQuery UI.com (partial) + + ruleset + + name + jQuery UI.com (partial) + rule + + from + ^http://(api\.|www\.)?jqueryui\.com/ + to + https://$1jqueryui.com/ + + target + + + host + jqueryui.com + + + host + *.jqueryui.com + + + + + jQuery.org (partial) + + ruleset + + name + jQuery.org (partial) + rule + + from + ^http://(?:(contribute\.|irc\.)|www\.)?jquery\.org/ + to + https://$1jquery.org/ + + target + + + host + jquery.org + + + host + *.jquery.org + + + + + jambit + + ruleset + + name + jambit + rule + + from + ^http://(www\.)?jambit\.com/ + to + https://$1jambit.com/ + + securecookie + + host + ^(www\.)?jambit\.com$ + name + .* + + target + + + host + jambit.com + + + host + www.jambit.com + + + + + jamesthebard.net + + ruleset + + name + jamesthebard.net + rule + + from + ^http://(www\.)?jamesthebard\.net/ + to + https://$1jamesthebard.net/ + + securecookie + + host + ^\.?jamesthebard\.net$ + name + .+ + + target + + + host + jamesthebard.net + + + host + *.jamesthebard.net + + + + + jaspan.com + + ruleset + + name + jaspan.com + rule + + from + ^http://jaspan\.com/ + to + https://jaspan.com/ + + target + + host + jaspan.com + + + + jba.io + + ruleset + + name + jba.io + rule + + from + ^http://(?:www\.)?jba\.io/ + to + https://jba.io/ + + target + + + host + jba.io + + + host + www.jba.io + + + + + jdeslip.com + + ruleset + + name + jdeslip.com + rule + + from + ^http://(www\.)?jdeslip\.com/ + to + https://$1jdeslip.com/ + + target + + + host + jdeslip.com + + + host + www.jdeslip.com + + + + + jeena.net + + ruleset + + name + jeena.net + rule + + from + ^http://(?:(m\.)|www\.)?jeena\.net/ + to + https://$1jeena.net/ + + securecookie + + host + ^jeena\.net$ + name + .+ + + target + + + host + jeena.net + + + host + *.jeena.net + + + + + jensge.org + + ruleset + + name + jensge.org + platform + cacert + rule + + from + ^http://(?:www\.)?jensge\.org/ + to + https://jensge.org/ + + target + + + host + jensge.org + + + host + www.jensge.org + + + + + jit.su + + ruleset + + name + jit.su + rule + + from + ^http://(www\.|xmpp-ftw\.)?jit\.su/ + to + https://$1jit.su/ + + target + + + host + jit.su + + + host + *.jit.su + + + + + jms1.net + + ruleset + + name + jms1.net + rule + + from + ^http://(qmail\.|www\.)?jms1\.net/ + to + https://$1jms1.net/ + + target + + + host + jms1.net + + + host + *.jms1.net + + + + + jobScore (partial) + + ruleset + + name + jobScore (partial) + rule + + + from + ^http://(blog\.|www\.)?jobscore\.com/ + to + https://$1jobscore.com/ + + + from + ^http://support\.jobscore\.com/(generated|images|system)/ + to + https://support.jobscore.com/$1/ + + + from + ^http://(\w+)\.jobscore\.com/((account_)?stylesheets/|favicon\.ico$|images/) + to + https://$1.jobscore.com/$2 + + + securecookie + + host + ^(www\.)?jobscore\.com$ + name + .* + + target + + + host + jobscore.com + + + host + *.jobscore.com + + + + + jobs.ch + + ruleset + + name + jobs.ch + rule + + + from + ^http://([^/:@]*)\.jobs\.ch/ + to + https://$1.jobs.ch/ + + + from + ^http://([^/:@]*)\.jobcloud\.ch/ + to + https://$1.jobcloud.ch/ + + + target + + + host + jobs.ch + + + host + *.jobs.ch + + + host + jobcloud.ch + + + host + *.jobcloud.ch + + + + + jobsgopublic.com (partial) + + ruleset + + name + jobsgopublic.com (partial) + rule + + from + ^http://(poweredby\.|www\.)?jobsgopublic\.com/(account(?:$|\?|/)|assets/|icons/|javascripts/|sites/) + to + https://$1jobsgopublic.com/$2 + + target + + + host + jobsgopublic.com + + + host + *.jobsgopublic.com + + + + + johnlewis.ie + + ruleset + + name + johnlewis.ie + rule + + from + ^http://(www\.)?johnlewis\.ie/ + to + https://$1johnlewis.ie/ + + target + + + host + johnlewis.ie + + + host + www.johnlewis.ie + + + + + joppix.com + + ruleset + + name + joppix.com + rule + + from + ^http://(www\.)?joppix\.com/ + to + https://$1joppix.com/ + + securecookie + + host + ^(?:www\.)?joppix\.com$ + name + .+ + + target + + + host + joppix.com + + + host + www.joppix.com + + + + + jsDelivr.net + + ruleset + + name + jsDelivr.net + rule + + from + ^http://(www\.)?cdn\.jsdelivr\.net/ + to + https://$1cdn.jsdelivr.net/ + + securecookie + + host + ^\.jsdelivr\.net$ + name + .+ + + target + + host + *.jsdelivr.net + + + + jtlebi.fr + + ruleset + + name + jtlebi.fr + rule + + from + ^http://(?:blog\.|www\.)?jtlebi\.fr/ + to + https://blog.jtlebi.fr/ + + securecookie + + host + ^(?:blog\.|www\.)?jtlebi\.fr$ + name + .+ + + target + + + host + jtlebi.fr + + + host + *.jtlebi.fr + + + + + justeatuk (partial) + + ruleset + + name + justeatuk (partial) + rule + + from + ^http://(www\.)?just-eat\.co\.uk/ + to + https://$1just-eat.co.uk/ + + securecookie + + host + ^(?:www\.)?just-eat\.co\.uk$ + name + .+ + + target + + + host + just-eat.co.uk + + + host + www.just-eat.co.uk + + + + + jwpsrv.com + + ruleset + + name + jwpsrv.com + rule + + from + ^http://jwpsrv\.com/ + to + https://jwpsrv.com/ + + target + + host + jwpsrv.com + + + + kabelbw + + ruleset + + name + kabelbw + rule + + from + ^http://www\.kabelbw\.de/ + to + https://www.kabelbw.de/ + + target + + host + www.kabelbw.de + + + + kaimi.ru + + ruleset + + name + kaimi.ru + rule + + from + ^http://([\w-]+\.)?(kaimi\.ru)/ + to + https://$1$2/ + + securecookie + + host + ^(?:[\w-]+\.)?kaimi\.ru$ + name + .+ + + target + + + host + kaimi.ru + + + host + *.kaimi.ru + + + + + kaiseki.me + + ruleset + + name + kaiseki.me + rule + + from + ^http://(www\.)?kaiseki\.me/ + to + https://$1kaiseki.me/ + + securecookie + + host + ^(?:www\.)?kaiseki\.me$ + name + .+ + + target + + + host + kaiseki.me + + + host + www.kaiseki.me + + + + + kasperskycontenthub.com + + ruleset + + name + kasperskycontenthub.com + rule + + from + ^http://(?:www\.)?kasperskycontenthub\.com/ + to + https://kasperskycontenthub.com/ + + target + + + host + kasperskycontenthub.com + + + host + www.kasperskycontenthub.com + + + + + kb8ojh.net + + ruleset + + name + kb8ojh.net + rule + + from + ^http://(www\.)?kb8ojh\.net/ + to + https://$1kb8ojh.net/ + + target + + + host + kb8ojh.net + + + host + www.kb8ojh.net + + + + + kernel concepts (partial) + + ruleset + + name + kernel concepts (partial) + platform + cacert + rule + + from + ^http://shop\.kernelconcepts\.de/ + to + https://shop.kernelconcepts.de/ + + securecookie + + host + ^\.shop\.kernelconcepts\.de$ + name + .+ + + target + + host + *.kernelconcepts.de + + + + kfs.io + + ruleset + + name + kfs.io + rule + + from + ^http://i\.kfs\.io/ + to + https://i.kfs.io/ + + target + + host + i.kfs.io + + + + kimpluscraig.com + + ruleset + + name + kimpluscraig.com + rule + + from + ^http://(www\.)?kimpluscraig\.com/ + to + https://$1kimpluscraig.com/ + + securecookie + + host + ^\.kimpluscraig\.com$ + name + .+ + + target + + + host + kimpluscraig.com + + + host + *.kimpluscraig.com + + + + + kirei.se + + ruleset + + name + kirei.se + rule + + from + ^http://(www\.)?kirei\.se/ + to + https://$1kirei.se/ + + securecookie + + host + ^\.www\.kirei\.se$ + name + .+ + + target + + + host + kirei.se + + + host + *.kirei.se + + + + + kitenet.net (partial) + + ruleset + + name + kitenet.net (partial) + rule + + from + ^http://kitenet\.net/ + to + https://kitenet.net/ + + target + + host + kitenet.net + + + + konklone.com + + ruleset + + name + konklone.com + rule + + from + ^http://(www\.)?konklone\.com/ + to + https://$1konklone.com/ + + target + + + host + konklone.com + + + host + www.konklone.com + + + + + kpopstage.co + + ruleset + + name + kpopstage.co + rule + + + from + ^http://(www\.)?attictv\.com/ + to + https://$1attictv.com/ + + + from + ^http://(?:www\.)?kpopstage\.co/ + to + https://www.kpopstage.co/ + + + securecookie + + host + ^\.(?:attictv|kpopstage)\.co$ + name + .+ + + target + + + host + attictv.com + + + host + *.attictv.com + + + host + kpopstage.co + + + host + *.kpopstage.co + + + + + kr36.co + + ruleset + + name + kr36.co + rule + + from + ^http://(www\.)?kr36\.co/ + to + https://$1kr36.co/ + + target + + + host + kr36.co + + + host + www.kr36.co + + + + + kraxel.org + + ruleset + + name + kraxel.org + rule + + from + ^http://(?:www\.)?kraxel\.org/ + to + https://www.kraxel.org/ + + target + + + host + kraxel.org + + + host + www.kraxel.org + + + + + kununu (partial) + + ruleset + + name + kununu (partial) + rule + + + from + ^http://(www\.)?kununu\.com/(?=(?:bewerten|info|login|meinkununu|register|user/(?:login|logout))(?:$|[?/])|css/|favicon\.ico|index/captcha/|sc\.css) + to + https://$1kununu.com/ + + + from + ^http://cf\.kununu\.com/ + to + https://dt75rt3oyihg4.cloudfront.net/ + + + target + + + host + kununu.com + + + host + *.kununu.com + + + + + kuonamaoni.com + + ruleset + + name + kuonamaoni.com + rule + + from + ^http://i\.kuonamaoni\.com/ + to + https://i.kuonamaoni.com/ + + target + + host + i.kuonamaoni.com + + + + kuro5hin.org + + ruleset + + name + kuro5hin.org + rule + + + from + ^http://kuro5hin\.org/ + to + https://www.kuro5hin.org/ + + + from + ^http://www\.kuro5hin\.org/ + to + https://www.kuro5hin.org/ + + + target + + + host + kuro5hin.org + + + host + www.kuro5hin.org + + + + + l0cal.com (CAcert) + + ruleset + + name + l0cal.com (CAcert) + platform + cacert + rule + + from + ^http://(www\.)?l0cal\.com/ + to + https://$1l0cal.com/ + + target + + + host + l0cal.com + + + host + www.l0cal.com + + + + + l0cal.com (partial) + + ruleset + + name + l0cal.com (partial) + rule + + from + ^http://blog\.l0cal\.com/ + to + https://blog.l0cal.com/ + + target + + host + blog.l0cal.com + + + + labaia.ws (partial) + + ruleset + + name + labaia.ws (partial) + rule + + from + ^http://(\w+\.)?labaia\.ws/ + to + https://$1labaia.ws/ + + target + + + host + labaia.ws + + + host + *.labaia.ws + + + + + lanistaads.com (partial) + + ruleset + + name + lanistaads.com (partial) + rule + + + from + ^http://ads\.lanistaads\.com/ + to + https://d2tbmvllb55wxq.cloudfront.net/ + + + from + ^http://api\.lanistaads\.com/ServeAd\?AdSize=(\d+)&SiteID=(\w+)&Zone=(\w+)$ + to + https://ads.lanistaads.com/$2/$2_$1_$3.html + + + target + + host + *.lanistaads.com + + + + lasallehs.net + + ruleset + + name + lasallehs.net + rule + + from + ^http://(moodle|powerschool|dyknow|help)\.lasallehs\.net/ + to + https://$1.lasallehs.net/ + + securecookie + + host + (moodle|powerschool|dyknow|help)\.lasallehs\.net + name + .* + + target + + + host + moodle.lasallehs.net + + + host + powerschool.lasallehs.net + + + host + dyknow.lasallehs.net + + + host + help.lasallehs.net + + + + + legislationsurveys.com + + ruleset + + name + legislationsurveys.com + rule + + from + ^http://(?:www\.)?legislationsurveys\.com/ + to + https://www.legislationsurveys.com/ + + target + + + host + legislationsurveys.com + + + host + www.legislationsurveys.com + + + + + libSDL.org (partial) + + ruleset + + name + libSDL.org (partial) + rule + + from + ^http://((?:bugzilla|forums|slouken|wiki|www)\.)?libsdl\.org/ + to + https://$1libsdl.org/ + + securecookie + + host + ^(?:\.bugzilla|forums)\.libsdl\.org$ + name + .+ + + target + + + host + libsdl.org + + + host + *.libsdl.org + + + + + libav + + ruleset + + name + libav + rule + + from + ^http://((?:bugzilla|fate|git|samples|www)\.)?libav\.org/ + to + https://$1libav.org/ + + securecookie + + host + ^.*\.libav\.org$ + name + .* + + target + + + host + libav.org + + + host + *.libav.org + + + + + libsodium.org (partial) + + ruleset + + name + libsodium.org (partial) + rule + + from + ^http://download\.libsodium\.org/ + to + https://download.libsodium.org/ + + target + + host + download.libsodium.org + + + + libssh.org (partial) + + ruleset + + name + libssh.org (partial) + rule + + from + ^http://(www\.)?libssh\.org/ + to + https://$1libssh.org/ + + securecookie + + host + ^www\.libssh\.org$ + name + .+ + + target + + + host + libssh.org + + + host + www.libssh.org + + + + + libsyn (partial) + + ruleset + + name + libsyn (partial) + rule + + + from + ^http://((?:assets|fusion|html5-player|three|traffic|www)\.)?libsyn\.com/ + to + https://$1libsyn.com/ + + + from + ^http://(?:ssl-)?static\.libsyn\.com/ + to + https://ssl-static.libsyn.com/ + + + securecookie + + host + ^\.libsyn\.com$ + name + .+ + + target + + + host + libsyn.com + + + host + *.libsyn.com + + + + + libtoxcore.so (partial) + + ruleset + + name + libtoxcore.so (partial) + rule + + from + ^http://blog\.libtoxcore\.so/ + to + https://blog.libtoxcore.so/ + + target + + host + blog.libtoxcore.so + + + + libvirt.org (partial) + + ruleset + + name + libvirt.org (partial) + rule + + from + ^http://(www\.)?libvirt\.org/ + to + https://$1libvirt.org/ + + target + + + host + libvirt.org + + + host + www.libvirt.org + + + + + lighttpd.net + + ruleset + + name + lighttpd.net + platform + cacert + rule + + from + ^http://(\w+\.)?lighttpd\.net/ + to + https://$1lighttpd.net/ + + securecookie + + host + ^.*\.lighttpd\.net$ + name + .* + + target + + + host + lighttpd.net + + + host + *.lighttpd.net + + + + + lihm.net + + ruleset + + name + lihm.net + rule + + from + ^http://(www\.)?lihm\.net/ + to + https://$1lihm.net/ + + target + + + host + lihm.net + + + host + www.lihm.net + + + + + likeyed.com + + ruleset + + name + likeyed.com + rule + + from + ^http://(www\.)?likeyed\.com/ + to + https://$1likeyed.com/ + + target + + + host + likeyed.com + + + host + www.likeyed.com + + + + + lilliputti.com + + ruleset + + name + lilliputti.com + platform + mixedcontent + rule + + from + ^http://(?:www\.)?lilliputti\.com/ + to + https://lilliputti.com/ + + target + + + host + lilliputti.com + + + host + www.lilliputti.com + + + + + limango + + ruleset + + name + limango + rule + + + from + ^http://(checkout\.|www\.)?limango\.de/ + to + https://$1limango.de/ + + + from + ^http://img\.limango-media\.de/ + to + https://img.limango-media.de/ + + + securecookie + + host + ^(?:.*\.)?limango\.de$ + name + .+ + + target + + + host + limango.de + + + host + *.limango.de + + + host + img.limango-media.de + + + + + limun.org + + ruleset + + name + limun.org + rule + + from + ^http://(www\.)?limun\.org/ + to + https://$1limun.org/ + + target + + + host + limun.org + + + host + www.limun.org + + + + + linutronix + + ruleset + + name + linutronix + rule + + from + ^http://(www\.)?linutronix\.de/ + to + https://$1linutronix.de/ + + securecookie + + host + ^(.*\.)?linutronix\.de$ + name + .* + + target + + + host + linutronix.de + + + host + www.linutronix.de + + + host + *.www.linutronix.de + + + + + linux-dev.org + + ruleset + + name + linux-dev.org + platform + cacert + rule + + from + ^http://(?:www\.)?linux-dev\.org/ + to + https://www.linux-dev.org/ + + securecookie + + host + ^www\.linux-dev\.org$ + name + .+ + + target + + + host + linux-dev.org + + + host + www.linux-dev.org + + + + + linux-sunxi.org + + ruleset + + name + linux-sunxi.org + rule + + from + ^http://(www\.)?(linux-)?sunxi\.org/ + to + https://$1$2sunxi.org/ + + securecookie + + host + ^(?:linux-)?sunxi\.org$ + name + .+ + + target + + + host + linux-sunxi.org + + + host + www.linux-sunxi.org + + + host + sunxi.org + + + host + www.sunxi.org + + + + + linux.conf.au + + ruleset + + name + linux.conf.au + rule + + from + ^http://(?:(?:www\.)?linux\.conf|lca2014\.linux\.org)\.au/ + to + https://lca2014.linux.org.au/ + + target + + + host + linux.conf.au + + + host + www.linux.conf.au + + + host + lca2014.linux.org.au + + + + + linuxhostsupport.com + + ruleset + + name + linuxhostsupport.com + rule + + from + ^http://(?:www\.)?linuxhostsupport\.com/ + to + https://www.linuxhostsupport.com/ + + target + + + host + linuxhostsupport.com + + + host + www.linuxhostsupport.com + + + + + linuxwall.info (partial) + + ruleset + + name + linuxwall.info (partial) + rule + + from + ^http://(?:(jve\.)|www\.)?linuxwall\.info/ + to + https://$1linuxwall.info/ + + target + + + host + linuxwall.info + + + host + *.linuxwall.info + + + + + lists.mindrot.org + + ruleset + + name + lists.mindrot.org + rule + + from + ^http://lists\.mindrot\.org/ + to + https://lists.mindrot.org/ + + target + + host + lists.mindrot.org + + + + liteaddress.org + + ruleset + + name + liteaddress.org + rule + + from + ^http://(www\.)?liteaddress\.org/ + to + https://$1liteaddress.org/ + + securecookie + + host + ^\.liteaddress\.org$ + name + .+ + + target + + + host + liteaddress.org + + + host + *.liteaddress.org + + + + + little.my + + ruleset + + name + little.my + rule + + from + ^http://(hoof\.|jointheherd\.|www\.)?little\.my/ + to + https://$1little.my/ + + securecookie + + host + ^\.little\.my$ + name + .+ + + target + + + host + little.my + + + host + *.little.my + + + + + livechatserver.com + + ruleset + + name + livechatserver.com + rule + + from + ^http://(?:noc|ssl|staging|w1)\.livechatserver\.com/ + to + https://ssl.livechatserver.com/ + + target + + host + *.livestatserver.com + + + + localbitcoins.com + + ruleset + + name + localbitcoins.com + rule + + from + ^http://(www\.)?localbitcoins\.com/ + to + https://$1localbitcoins.com/ + + securecookie + + host + ^(?:w*\.)?localbitcoins\.com$ + name + .+ + + target + + + host + localbitcoins.com + + + host + *.localbitcoins.com + + + + + loginza.ru + + ruleset + + name + loginza.ru + rule + + from + ^http://(www\.)?loginza\.ru/ + to + https://$1loginza.ru/ + + securecookie + + host + ^(?:www\.)?loginza\.ru$ + name + .+ + + target + + + host + loginza.ru + + + host + www.loginza.ru + + + + + lohud.com (partial) + + ruleset + + name + lohud.com (partial) + platform + mixedcontent + rule + + from + ^http://(?:cmsimg\.|www\.)?lohud\.com/ + to + https://www.lohud.com/ + + securecookie + + host + ^(?:www)?\.lohud\.com$ + name + .+ + + target + + + host + lohud.com + + + host + *.lohud.com + + + host + thejournalnews.com + + + host + *.thejournalnews.com + + + + + lokus.no + + ruleset + + name + lokus.no + rule + + from + ^http://(?:www\.)?lokus\.no/ + to + https://www.lokus.no/ + + securecookie + + host + ^www\.lokus\.no$ + name + .+ + + target + + + host + lokus.no + + + host + www.lokus.no + + + + + lolnet.org + + ruleset + + name + lolnet.org + platform + cacert + rule + + + from + ^http://lolnet\.org/ + to + https://www.lolnet.org/ + + + from + ^http://(files|www)\.lolnet\.org/ + to + https://$1.lolnet.org/ + + + target + + + host + lolnet.org + + + host + *.lolnet.org + + + + + londit.com (partial) + + ruleset + + name + londit.com (partial) + rule + + from + ^http://manager\.londit\.com/ + to + https://manager.londit.com/ + + securecookie + + host + ^manager\.londit\.com$ + name + .+ + + target + + host + manager.londit.com + + + + looloo.com + + ruleset + + name + looloo.com + rule + + from + ^http://(www\.)?looloo\.com/ + to + https://$1looloo.com/ + + securecookie + + host + ^\.?looloo\.com$ + name + .+ + + target + + + host + looloo.com + + + host + *.looloo.com + + + + + lotro.com + + ruleset + + name + lotro.com + rule + + + from + ^http://(www\.)?lotro\.com/ + to + https://www.lotro.com/ + + + from + ^http://(store|signup|transfers)\.lotro\.com/ + to + https://$1.lotro.com/ + + + target + + + host + lotro.com + + + host + *.lotro.com + + + + + lp0 (CAcert) + + ruleset + + name + lp0 (CAcert) + platform + cacert + rule + + from + ^http://(\w+\.)?lp0\.eu/ + to + https://$1lp0.eu/ + + target + + + host + lp0.eu + + + host + *.lp0.eu + + + + + m-pathy (partial) + + ruleset + + name + m-pathy (partial) + rule + + + from + ^http://(?:www\.)?m-pathy\.com/(css/|favicon\.ico|images/|questionnaire/|sf/|user/) + to + https://www.m-pathy.com/$1 + + + from + ^http://cdn\.m-pathy\.com/ + to + https://cdn.m-pathy.com/ + + + target + + + host + m-pathy.com + + + host + *.m-pathy.com + + + + + m-privacy + + ruleset + + name + m-privacy + rule + + from + ^http://((?:git|rsbac|www)\.)?m-privacy\.de/ + to + https://$1m-privacy.de/ + + securecookie + + host + ^(?:rsbac|www)\.m-privacy\.de$ + name + .* + + target + + + host + m-privacy.de + + + host + *.m-privacy.de + + + + + m3connect + + ruleset + + name + m3connect + rule + + + from + ^https?://partner\.m3connect\.de/ + to + https://partner.m3connect.de/ + + + from + ^https?://portal\.m3-connect\.de/ + to + https://portal.m3-connect.de/ + + + target + + + host + partner.m3connect.de + + + host + portal.m3-connect.de + + + + + mBank (partial) + + ruleset + + name + mBank (partial) + rule + + + from + ^http://(form\.)?(cz|sk)\.mbank\.eu/ + to + https://$1$2.mbank.eu/ + + + from + ^http://(form|www)\.mbank\.com\.pl/ + to + https://$1.mbank.com.pl/ + + + securecookie + + host + ^(cz|sk)\.mbank\.eu$ + name + .* + + target + + + host + cz.mbank.eu + + + host + form.cz.mbank.eu + + + host + sk.mbank.eu + + + host + form.sk.mbank.eu + + + host + form.mbank.com.pl + + + host + www.mbank.com.pl + + + + + mIRC (partial) + + ruleset + + name + mIRC (partial) + rule + + from + ^http://(www\.)?mirc\.com/(imag|styl)es/ + to + https://$1mirc.com/$2es/ + + target + + + host + mirc.com + + + host + www.mirc.com + + + + + magazinesdirect.com + + ruleset + + name + magazinesdirect.com + rule + + from + ^http://(www\.)?magazinesdirect\.com/ + to + https://$1magazinesdirect.com/ + + securecookie + + host + ^www\.magazinesdirect\.com$ + name + .+ + + target + + + host + magazinesdirect.com + + + host + www.magazinesdirect.com + + + + + magserv.com + + ruleset + + name + magserv.com + rule + + from + ^http://([\w-]+\.)?magserv\.com/ + to + https://$1magserv.com/ + + target + + + host + magserv.com + + + host + *.magserv.com + + + + + mail-tester.com + + ruleset + + name + mail-tester.com + rule + + from + ^http://(?:www\.)?mail-tester\.com/ + to + https://www.mail-tester.com/ + + securecookie + + host + ^www\.mail-tester\.com$ + name + .+ + + target + + + host + mail-tester.com + + + host + www.mail-tester.com + + + + + mail.de + + ruleset + + name + mail.de + rule + + + from + ^http://(?:www\.)?mail\.de/ + to + https://mail.de/ + + + from + ^http://(adressbuch|free|kalender|my|registrierung)\.mail\.de/ + to + https://$1.mail.de/ + + + target + + + host + mail.de + + + host + *.mail.de + + + + + mail.justice.com + + ruleset + + name + mail.justice.com + rule + + from + ^http://mail\.justice\.com/ + to + https://mail.justice.com/ + + securecookie + + host + ^(.+\.)?justice\.com$ + name + .* + + target + + host + mail.justice.com + + + + mailstation.de + + ruleset + + name + mailstation.de + rule + + from + ^http://(?:galileo\.|www\.)?mailstation\.de/ + to + https://galileo.mailstation.de/ + + target + + + host + mailstation.de + + + host + *.mailstation.de + + + + + main-host.de + + ruleset + + name + main-host.de + rule + + + from + ^http://(?:www\.)?main-host\.de/ + to + https://www.main-host.de/ + + + from + ^http://kunden\.main-host\.de/ + to + https://kunden.main-host.de/ + + + target + + + host + main-host.de + + + host + *.main-host.de + + + + + major.io + + ruleset + + name + major.io + rule + + from + ^http://(www\.)?major\.io/ + to + https://$1major.io/ + + target + + + host + major.io + + + host + www.major.io + + + + + manage.cm + + ruleset + + name + manage.cm + rule + + from + ^http://(www\.)?manage\.cm/ + to + https://$1manage.cm/ + + securecookie + + host + ^\.manage\.cm$ + name + .+ + + target + + + host + manage.cm + + + host + *.manage.cm + + + + + marcan.st + + ruleset + + name + marcan.st + rule + + from + ^http://(www\.)?marcan(\.st|soft\.com)/ + to + https://$1marcan$2/ + + target + + + host + marcan.st + + + host + www.marcan.st + + + host + marcansoft.com + + + host + www.marcansoft.com + + + + + marmotte.net (partial) + + ruleset + + name + marmotte.net (partial) + platform + cacert + rule + + + from + ^http://(?:www\.)?marmotte\.net/ + to + https://www.marmotte.net/ + + + from + ^http://(git|mail|thias)\.marmotte\.net/ + to + https://$1.marmotte.net/ + + + securecookie + + host + ^mail\.marmotte\.net$ + name + .+ + + target + + + host + marmotte.net + + + host + *.marmotte.net + + + + + maurus.net + + ruleset + + name + maurus.net + rule + + from + ^https?://(?:www\.)?maurus\.net/ + to + https://maurus.net/ + + securecookie + + host + ^maurus\.net$ + name + .* + + target + + + host + maurus.net + + + host + www.maurus.net + + + + + mbl.is (partial) + + ruleset + + name + mbl.is (partial) + rule + + + from + ^http://(?:secure\.|www\.)?mbl\.is/ + to + https://secure.mbl.is/ + + + from + ^http://mbl\.teljari\.is/ + to + https://secure.teljari.is/ + + + target + + + host + mbl.is + + + host + *.mbl.is + + + host + mbl.teljari.is + + + + + mcssl.com + + ruleset + + name + mcssl.com + rule + + from + ^https?://(?:www\.)?mcssl\.com/ + to + https://www.mcssl.com/ + + securecookie + + host + ^www\.mcssl\.com$ + name + .+ + + target + + + host + mcssl.com + + + host + www.mcssl.com + + + + + mcxNOW.com + + ruleset + + name + mcxNOW.com + rule + + from + ^http://(www\.)?mcxnow\.com/ + to + https://$1mcxnow.com/ + + target + + + host + mcxnow.com + + + host + www.mcxnow.com + + + + + mdgms.com + + ruleset + + name + mdgms.com + rule + + from + ^http://(\w+)\.mdgms\.com/ + to + https://$1.mdgms.com/ + + securecookie + + host + ^gateway\.mdgms\.com$ + name + .+ + + target + + host + *.mdgms.com + + + + medConfidential.org + + ruleset + + name + medConfidential.org + rule + + from + ^http://(www\.)?medconfidential\.org/ + to + https://$1medconfidential.org/ + + securecookie + + host + ^\.medconfidential\.org$ + name + .+ + + target + + + host + medconfidential.org + + + host + *.medconfidential.org + + + + + media.net (partial) + + ruleset + + name + media.net (partial) + rule + + + from + ^http://cdn\.media\.net/ + to + https://mycdn-a.akamaihd.net/ + + + from + ^http://(?:contextual|qsearch)\.media\.net/ + to + https://qsearch-a.akamaihd.net/ + + + from + ^http://static\.media\.net/ + to + https://log-a.akamaihd.net/ + + + securecookie + + + host + ^\.media\.net$ + name + ^(?:__utm\w|wooTracker)$ + + + host + ^\.www\.media\.net$ + name + ^(?:__ar_v4|_te_)$ + + + target + + host + *.media.net + + + + media6degrees (partial) + + ruleset + + name + media6degrees (partial) + rule + + + from + ^http://(?:www\.)?m(?:6d|edia6degrees)\.com/ + to + https://m6d.wpengine.com/ + + + from + ^http://(?:action|secure)\.media6degrees\.com/ + to + https://secure.media6degrees.com/ + + + securecookie + + host + ^\.media6degrees\.com$ + name + .+ + + target + + + host + m6d.com + + + host + www.m6d.com + + + host + media6degrees.com + + + host + *.media6degrees.com + + + + + media970.com + + ruleset + + name + media970.com + rule + + from + ^http://(?:www\.)?media970\.com/ + to + https://www.media970.com/ + + securecookie + + host + ^\.?www\.media970\.com$ + name + .+ + + target + + + host + media970.com + + + host + *.media970.com + + + + + medleyads.com + + ruleset + + name + medleyads.com + rule + + from + ^https?://(?:secure\.|www\.)?medleyads\.com/ + to + https://secure.medleyads.com/ + + securecookie + + host + ^\.medleyads\.com$ + name + .+ + + target + + + host + medleyads.com + + + host + *.medleyads.com + + + + + medocmall.co.uk + + ruleset + + name + medocmall.co.uk + rule + + from + ^http://(www\.)?medocmall\.co\.uk/ + to + https://$1medocmall.co.uk/ + + target + + + host + medocmall.co.uk + + + host + www.medocmall.co.uk + + + + + mer.io + + ruleset + + name + mer.io + rule + + from + ^http://(www\.)?mer\.io/ + to + https://$1mer.io/ + + securecookie + + host + ^(?:w*\.)?mer\.io$ + name + .+ + + target + + + host + mer.io + + + host + *.mer.io + + + + + merchantquest.net + + ruleset + + exclusion + + pattern + ^http://www\. + + name + merchantquest.net + rule + + from + ^http://([\w-]+)\.merchantquest\.net/ + to + https://$1.merchantquest.net/ + + securecookie + + host + .+\.merchantquest\.net$ + name + .+ + + target + + host + *.merchantquest.net + + + + messagingengine.com + + ruleset + + name + messagingengine.com + rule + + + from + ^http://(?:www\.)?messagingengine\.com/+([^?]*)(?:\?.*)? + to + https://www.fastmail.fm/$1 + + + from + ^http://mail\.messagingengine\.com/ + to + https://mail.messagingengine.com/ + + + target + + + host + messagingengine.com + + + host + *.messagingengine.com + + + + + metacode.cz + + ruleset + + name + metacode.cz + rule + + from + ^http://(?:www\.)?metacode\.cz/ + to + https://metacode.cz/ + + target + + + host + metacode.cz + + + host + www.metacode.cz + + + + + metalab.at + + ruleset + + name + metalab.at + rule + + from + ^http://(?:(lists\.)|www\.)?metalab\.at/ + to + https://$1metalab.at/ + + target + + + host + metalab.at + + + host + *.metalab.at + + + + + metalyzer.com + + ruleset + + name + metalyzer.com + rule + + from + ^http://creative\.metalyzer\.com/ + to + https://creative.metalyzer.com/ + + securecookie + + host + ^\.metalyzer\.com$ + name + .+ + + target + + host + *.metalyzer.com + + + + metrics34.com (partial) + + ruleset + + name + metrics34.com (partial) + rule + + from + ^http://ctrack\.metrics34\.com/ + to + https://ctrack.metrics34.com/ + + target + + host + ctrack.metrics34.com + + + + miaozhen.com + + ruleset + + name + miaozhen.com + rule + + from + ^http://collect\.cn\.miaozhen\.com/ + to + https://collect.cn.miaozhen.com/ + + target + + host + collect.cn.miaozhen.com + + + + microblink.com + + ruleset + + name + microblink.com + rule + + from + ^http://(www\.)?microblink\.com/ + to + https://$1microblink.com/ + + securecookie + + host + ^\.microblink\.com$ + name + .+ + + target + + + host + microblink.com + + + host + *.microblink.com + + + + + milodev.com + + ruleset + + name + milodev.com + rule + + from + ^http://(www\.)?milodev\.com/ + to + https://$1milodev.com/ + + securecookie + + host + ^\.milodev\.com$ + name + .+ + + target + + + host + milodev.com + + + host + *.milodev.com + + + + + miniLock.io + + ruleset + + name + miniLock.io + rule + + from + ^http://(www\.)?minilock\.io/ + to + https://$1minilock.io/ + + securecookie + + host + ^\.minilock\.io$ + name + .+ + + target + + + host + minilock.io + + + host + *.minilock.io + + + + + miretail.com + + ruleset + + name + miretail.com + rule + + from + ^http://images\.miretail\.com/ + to + https://images.miretail.com/ + + target + + host + images.miretail.com + + + + mitre.org + + ruleset + + name + mitre.org + rule + + from + ^http://((?:cce|c[vw]e|measurablesecurity|oval|www)\.)?mitre\.org/ + to + https://$1mitre.org/ + + target + + + host + mitre.org + + + host + *.mitre.org + + + + + mixi (partial) + + ruleset + + exclusion + + pattern + ^http://mixi\.jp/+(?!$|\?|appli_|comm/|favicon\.ico|photo/) + + name + mixi (partial) + rule + + + from + ^http://(?:www\.)?mixi\.(co\.)?jp/ + to + https://mixi.$1jp/ + + + from + ^http://(plugins|static)\.mixi\.jp/ + to + https://$1.mixi.jp/ + + + from + ^http://img\.mixi\.net/ + to + https://img.mixi.net/ + + + target + + + host + mixi.co.jp + + + host + www.mixi.co.jp + + + host + mixi.jp + + + host + *.mixi.jp + + + host + img.mixi.net + + + + + mixx.com + + ruleset + + name + mixx.com + rule + + + from + ^http://mixx\.com/ + to + https://mixx.com/ + + + from + ^http://www\.mixx\.com/ + to + https://www.mixx.com/ + + + target + + + host + mixx.com + + + host + www.mixx.com + + + + + mmixr.com + + ruleset + + name + mmixr.com + rule + + + from + ^http://(?:www\.)?mmixr\.com/ + to + https://www.mmixr.com/ + + + from + ^http://app\.mmixr\.com/ + to + https://app.mmixr.com/ + + + securecookie + + host + ^\.mmixr\.com$ + name + .+ + + target + + + host + mmixr.com + + + host + *.mmixr.com + + + + + mobilepki.org + + ruleset + + name + mobilepki.org + rule + + from + ^http://(www\.)?mobilepki\.org/ + to + https://$1mobilepki.org/ + + target + + + host + mobilepki.org + + + host + www.mobilepki.org + + + + + modern.IE + + ruleset + + name + modern.IE + rule + + from + ^http://((?:devchannel|remote|status|www)\.)?modern\.ie/ + to + https://$1modern.ie/ + + securecookie + + host + ^(?:\.devchannel|\.?remote|\.status|\.www)?\.modern\.ie$ + name + .+ + + target + + + host + modern.ie + + + host + *.modern.ie + + + + + mojeID.cz + + ruleset + + name + mojeID.cz + rule + + from + ^http://(www\.)?mojeid\.cz/ + to + https://$1mojeid.cz/ + + target + + + host + mojeid.cz + + + host + www.mojeid.cz + + + + + mondemp3.com + + ruleset + + name + mondemp3.com + rule + + from + ^http://(www\.)?mondemp3\.com/ + to + https://$1mondemp3.com/ + + securecookie + + host + ^\.mondemp3\.com$ + name + .+ + + target + + + host + mondemp3.com + + + host + *.mondemp3.com + + + + + mongoDB.org (partial) + + ruleset + + name + mongoDB.org (partial) + rule + + from + ^http://((?:jira|try|www)\.)?mongodb\.org/ + to + https://$1mongodb.org/ + + securecookie + + host + ^(?:jira|www)\.mongodb\.org$ + name + .* + + target + + + host + mongodb.org + + + host + *.mongodb.org + + + + + monitis.com (partial) + + ruleset + + name + monitis.com (partial) + rule + + + from + ^http://(?:www\.)?monitis\.com/ + to + https://www.monitis.com/ + + + from + ^http://(dashboard|portal)\.monitis\.com/ + to + https://$1.monitis.com/ + + + securecookie + + host + ^(?:dashboard|portal|www)\.monitis\.com$ + name + .+ + + target + + + host + monitis.com + + + host + *.monitis.com + + + + + moreinterop.com + + ruleset + + name + moreinterop.com + rule + + from + ^http://(?:www\.)?moreinterop\.com/ + to + https://www.moreinterop.com/ + + target + + + host + moreinterop.com + + + host + www.moreinterop.com + + + + + moviease.com + + ruleset + + name + moviease.com + rule + + from + ^http://(www\.)?moviease\.com/ + to + https://$1moviease.com/ + + securecookie + + host + ^(?:w*\.)?moviease\.com$ + name + .+ + + target + + + host + moviease.com + + + host + *.moviease.com + + + + + movienewsletters.net + + ruleset + + name + movienewsletters.net + rule + + from + ^http://(www\.)?movienewsletters\.net/ + to + https://$1movienewsletters.net/ + + target + + + host + movienewsletters.net + + + host + www.movienewsletters.net + + + + + mradx.net + + ruleset + + name + mradx.net + rule + + from + ^http://r\.mradx\.net/ + to + https://r.mradx.net/ + + target + + host + r.mradx.net + + + + msecnd.net (partial) + + ruleset + + exclusion + + pattern + ^http://(?:az(?!83882\.|94986\.|623152\.)\d+|msnchansea|msrvideo)\.vo\.msecnd\.net/ + + name + msecnd.net (partial) + rule + + from + ^http://(\w+)\.vo\.msecnd\.net/ + to + https://$1.vo.msecnd.net/ + + target + + host + *.vo.msecnd.net + + + + mtekk.us + + ruleset + + name + mtekk.us + rule + + from + ^http://(www\.)?mtekk\.us/ + to + https://$1mtekk.us/ + + securecookie + + host + ^(?:www\.)?mtekk\.us$ + name + .+ + + target + + + host + mtekk.us + + + host + www.mtekk.us + + + + + mthode.org + + ruleset + + name + mthode.org + rule + + from + ^http://(?:www\.)?mthode\.org/ + to + https://mthode.org/ + + target + + + host + mthode.org + + + host + www.mthode.org + + + + + mudgum.net + + ruleset + + name + mudgum.net + rule + + from + ^http://(www\.)?mudgum\.net/ + to + https://$1mudgum.net/ + + target + + + host + mudgum.net + + + host + www.mudgum.net + + + + + muspy + + ruleset + + name + muspy + rule + + from + ^http://(www\.)?muspy\.com/ + to + https://$1muspy.com/ + + target + + + host + muspy.com + + + host + www.muspy.com + + + + + my InMon.com + + ruleset + + name + my InMon.com + rule + + from + ^http://(?:www\.)?myinmon\.com/ + to + https://www.myinmon.com/ + + securecookie + + host + ^\.www\.myinmon\.com$ + name + .+ + + target + + + host + myinmon.com + + + host + *.myinmon.com + + + + + myGov + + ruleset + + name + myGov + rule + + from + ^http://(?:www\.)?my\.gov\.au/ + to + https://my.gov.au/ + + target + + + host + my.gov.au + + + host + *.my.gov.au + + + + + myLifetime.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?mylifetime\.com/(?!d6/sites/|movies/(?:profiles|rest|sites)/) + + + pattern + ^http://moms.mylifetime\.com/(?!files/) + + + pattern + ^http://mylt\.ltcdn\.com/d6/sites/mylifetime\.com/files/images/advagg_css/ + + + pattern + ^http://moms\.mylifetime\.com/(?:files/advagg_css/|sites/all/modules/contrib/nice_menus/nice_menus_default\.css|sites/moms.mylifetime.com/themes/ltv_moms/css/(?:fonts/|less/ie\.css)) + + + name + myLifetime.com (partial) + rule + + + from + ^http://(?:movies\.ltcdn|(?:www\.)?mylifetime)\.com/ + to + https://a248.e.akamai.net/f/216/4274/5m/www.mylifetime.com/ + + + from + ^http://moms\.mylifetime\.com/ + to + https://a248.e.akamai.net/f/1073/9929/5m/moms.mylifetime.com/ + + + from + ^http://mylt\.ltcdn\.com/ + to + https://a248.e.akamai.net/f/1854/7725/5h/mylt.ltcdn.com/ + + + from + ^http://tn\.ltcdn\.com/ + to + https://a248.e.akamai.net/f/1621/7552/8f/tn.ltcdn.com/ + + + from + ^http://ssos\.mylifetime\.com/ + to + https://ssos.mylifetime.com/ + + + target + + + host + *.ltcdn.com + + + host + mylifetime.com + + + host + *.mylifetime.com + + + + + myLoc.de + + ruleset + + name + myLoc.de + rule + + from + ^http://(www\.)?myloc\.de/ + to + https://$1myloc.de/ + + securecookie + + host + ^www\.myloc\.de$ + name + .+ + + target + + + host + myloc.de + + + host + www.myloc.de + + + + + myPass.de (partial) + + ruleset + + name + myPass.de (partial) + rule + + from + ^http://secure\.mypass\.de/ + to + https://secure.mypass.de/ + + securecookie + + host + ^secure\.mypass\.de$ + name + .+ + + target + + host + secure.mypass.de + + + + myPortal.im + + ruleset + + name + myPortal.im + rule + + from + ^http://(wiki\.)?myportal\.im/ + to + https://$1myportal.im/ + + target + + + host + myportal.im + + + host + wiki.myportal.im + + + + + myResumeAgent.com (partial) + + ruleset + + name + myResumeAgent.com (partial) + rule + + from + ^http://(?:www\.)?myresumeagent\.com/ + to + https://www.myresumeagent.com/ + + securecookie + + host + ^(?:www)?\.myresumeagent\.com$ + name + .* + + target + + + host + myresumeagent.com + + + host + *.myresumeagent.com + + + + + mySecureConnect + + ruleset + + name + mySecureConnect + rule + + from + ^http://(order\.|www\.)?mysecureconnect\.com/ + to + https://$1mysecureconnect.com/ + + securecookie + + host + ^(?:order\.|www\.)?mysecureconnect\.com$ + name + .+ + + target + + + host + mysecureconnect.com + + + host + *.mysecureconnect.com + + + + + mySkreen.com (partial) + + ruleset + + name + mySkreen.com (partial) + rule + + from + ^http://medias\.myskreen\.com/ + to + https://medias.myskreen.com/ + + target + + host + medias.myskreen.com + + + + mySociety.org + + ruleset + + name + mySociety.org + rule + + from + ^http://(www\.)?mysociety\.org/ + to + https://$1mysociety.org/ + + securecookie + + host + ^www\.mysociety\.org$ + name + .+ + + target + + + host + mysociety.org + + + host + www.mysociety.org + + + + + myStockOptions.com + + ruleset + + name + myStockOptions.com + rule + + from + ^http://(?:www\.)?mystockoptions\.com/ + to + https://www.mystockoptions.com/ + + securecookie + + host + ^(?:www)?\.mystockoptions\.com$ + name + .+ + + target + + + host + mystockoptions.com + + + host + *.mystockoptions.com + + + + + mySweetIQ.com + + ruleset + + name + mySweetIQ.com + rule + + from + ^http://(www\.)?mysweetiq\.com/ + to + https://$1mysweetiq.com/ + + securecookie + + host + ^mysweetiq\.com$ + name + .+ + + target + + + host + mysweetiq.com + + + host + www.mysweetiq.com + + + + + myVPS.jp + + ruleset + + name + myVPS.jp + rule + + from + ^http://cp(-hv)?\.myvps\.jp/ + to + https://cp$1.myvps.jp/ + + securecookie + + host + ^cp(?:-hv)?\.myvps\.jp$ + name + .+ + + target + + host + *.myvps.jp + + + + mycdn.me + + ruleset + + name + mycdn.me + rule + + from + ^http://st\.mycdn\.me/ + to + https://st.mycdn.me/ + + target + + host + st.mycdn.me + + + + myconan.net + + ruleset + + name + myconan.net + rule + + + from + ^http://(?:www\.)?myconan\.net/ + to + https://myconan.net/ + + + from + ^http://blog\.myconan\.net/ + to + https://blog.myconan.net/ + + + target + + + host + myconan.net + + + host + *.myconan.net + + + + + myfolder (partial) + + ruleset + + name + myfolder (partial) + rule + + from + ^http://(www\.)?myfolder\.net/ + to + https://$1myfolder.net/ + + securecookie + + host + ^(www\.)?myfolder\.net$ + name + .* + + target + + + host + myfolder.net + + + host + www.myfolder.net + + + + + myinterfase.com + + ruleset + + name + myinterfase.com + rule + + from + ^http://(www\.)?myinterfase\.com/ + to + https://$1myinterfase.com/ + + securecookie + + host + ^(www\.)?myinterfase\.com$ + name + .+ + + target + + + host + myinterfase.com + + + host + www.myinterfase.com + + + + + myitcv.org.uk (partial) + + ruleset + + name + myitcv.org.uk (partial) + rule + + from + ^http://(?:www\.)?myitcv\.org\.uk/ + to + https://www.myitcv.org.uk/ + + securecookie + + host + ^(?:www\.)?myitcv\.org\.uk$ + name + .+ + + target + + + host + myitcv.org.uk + + + host + www.myitcv.org.uk + + + + + mylevel3.net + + ruleset + + name + mylevel3.net + rule + + from + ^http://mylevel3\.net/ + to + https://mylevel3.net/ + + securecookie + + host + ^mylevel3\.net$ + name + .+ + + target + + host + mylevel3.net + + + + myregisteredsite.com + + ruleset + + name + myregisteredsite.com + rule + + from + ^http://(iscorecard|\d+\.sites)\.myregisteredsite\.com/ + to + https://$1.myregisteredsite.com/ + + securecookie + + host + ^.+\.myregisteredsite\.com$ + name + .+ + + target + + host + *.myregisteredsite.com + + + + n.runs + + ruleset + + name + n.runs + rule + + from + ^http://(www\.)?nruns\.com/ + to + https://$1nruns.com/ + + target + + + host + nruns.com + + + host + www.nruns.com + + + + + n0where.org + + ruleset + + name + n0where.org + rule + + from + ^http://(www\.)?n0where\.org/ + to + https://$1n0where.org/ + + target + + + host + n0where.org + + + host + www.n0where.org + + + + + nLayer Communications (partial) + + ruleset + + name + nLayer Communications (partial) + rule + + from + ^https?://(?:www\.)?nlayer\.net/ + to + https://nlayer.cachefly.net/ + + target + + + host + nlayer.net + + + host + www.nlayer.net + + + + + nPario (partial) + + ruleset + + name + nPario (partial) + rule + + + from + ^http://audiencediscovery\.npario\.com/ + to + https://audiencediscovery.npario.com/ + + + from + ^http://eu\.npario-inc\.net/ + to + https://eu.npario-inc.net/ + + + securecookie + + + host + ^\.?audiencediscovery\.npario\.com$ + name + .+ + + + host + ^\.npario-inc\.net$ + name + ^(?:andata|C\d{3}_seg|npidl?|npst)$ + + + target + + + host + *.npario.com + + + host + *.npario-inc.net + + + + + nVidia (partial) + + ruleset + + exclusion + + + pattern + ^http://blogs\.nvidia\.com/+(?!wp-content/|wp-includes/) + + + pattern + ^http://(?:www\.)?nvidia\.com/+content/.+\.php + + + pattern + ^http://(?:www\.)?nvidia\.com/content/(?!.+/global-nav-home|.+/masthead-oldtemplate|.+/nvidia_nav_us|.+/reset-min|.+/share-2013).+\.css + + + pattern + ^http://store\.nvidia\.com/(?!DRHM/|store\?Action=(?:DisplayEditProfilePage|DisplayHelpPage)(?:$|&)) + + + name + nVidia (partial) + rule + + + from + ^http://(?:www\.)?nvidia\.com/(?=content/|docs/.+\.(?:jp|pn)g$|Download/NvidiaDownload\.css|favicon\.ico|props/) + to + https://a248.e.akamai.net/f/1650/3297/9h/www.nvidia.com/ + + + from + ^http://(account|blogs|developer|devtalk|international\.download|download-cdn\.gfe|nbound|nvdeveloper|nvidianews|es\.pforce|research|store)\.nvidia\.com/ + to + https://$1.nvidia.com/ + + + from + ^http://http\.developer\.nvidia\.com/ + to + https://a248.e.akamai.net/f/1890/806/6/http.developer.nvidia.com/ + + + from + ^http://developer\.download\.nvidia\.com/ + to + https://a248.e.akamai.net/f/862/5658/3/developer.download.nvidia.com/ + + + from + ^http://us\.download\.nvidia\.com/ + to + https://a248.e.akamai.net/f/1437/8432/10/us.download.nvidia.com/ + + + from + ^http://forums\.nvidia\.com/ + to + https://forums.geforce.com/ + + + from + ^http://images\.nvidia\.com/ + to + https://a248.e.akamai.net/f/248/2862/10/images.nvidia.com/ + + + from + ^http://(?:ns)?omniture\.nvidia\.com/ + to + https://nvidia-com.122.2o7.net/ + + + from + ^http://shield\.nvidia\.com/(?=favicon\.ico|images/|javascripts/|stylesheets/normalize\.min\.css) + to + https://a248.e.akamai.net/f/1017/6644/6h/shield.nvidia.com/ + + + securecookie + + + host + ^\.nvidia\.com$ + name + ^(?:incap_ses_\d+_\d+|visid_incap_\d+)$ + + + host + ^\.?(?:developer|devtalk|nbound|nvdeveloper|nvidianews)\.nvidia\.com$ + name + .+ + + + host + ^\.(?:store\.)?nvidia\.com$ + name + ^s_\w+$ + + + target + + + host + nvidia.com + + + host + *.nvidia.com + + + + + nadir.org (partial) + + ruleset + + name + nadir.org (partial) + platform + cacert + rule + + + from + ^http://(?:www\.)?nadir\.org/ + to + https://www.nadir.org/ + + + from + ^http://(23b|code|deb|webschleuder|wiki)\.nadir\.org/ + to + https://$1.nadir.org/ + + + from + ^http://schleuder2?\.nadir\.org/ + to + https://schleuder2.nadir.org/ + + + securecookie + + host + ^(?:23b|wiki)\.nadir\.org$ + name + .+ + + target + + + host + nadir.org + + + host + *.nadir.org + + + + + nationalserviceresources.org + + ruleset + + name + nationalserviceresources.org + rule + + from + ^http://(?:www\.)?(americorpsconnect|nationalserviceresources)\.org/ + to + https://www.$1.org/ + + target + + + host + americorpsconnect.org + + + host + www.americorpsconnect.org + + + host + nationalserviceresources.org + + + host + www.nationalserviceresources.org + + + + + nazwa.pl (partial) + + ruleset + + name + nazwa.pl (partial) + rule + + from + ^http://(www\.)?nazwa\.pl/ + to + https://$1nazwa.pl/ + + target + + + host + nazwa.pl + + + host + www.nazwa.pl + + + + + ncloud.dk + + ruleset + + name + ncloud.dk + rule + + from + ^http://partner\.ncloud\.dk/ + to + https://partner.ncloud.dk/ + + target + + host + partner.ncloud.dk + + + + neobookings + + ruleset + + name + neobookings + rule + + + from + ^http://((?:admin|secure|webservices|www)\.)?neobookings\.com/ + to + https://$1neobookings.com/ + + + from + ^https?://demo\.neobookings\.com/ + to + https://secure.neobookings.com/es/step-1 + + + target + + host + neobookings.com + + + + neomailbox + + ruleset + + name + neomailbox + rule + + from + ^http://(www\.)?neomailbox\.(com|net)/ + to + https://$1neomailbox.$2/ + + securecookie + + host + ^(?:w*\.)?neomailbox\.(?:com|net)$ + name + .+ + + target + + + host + neomailbox.* + + + host + *.neomailbox.com + + + host + www.neomailbox.net + + + + + netFORUMpro.com + + ruleset + + name + netFORUMpro.com + rule + + from + ^http://(prous01\.|www\.)?netforumpro\.com/ + to + https://$1netforumpro.com/ + + securecookie + + host + ^(?:prous01\.|www\.)?netforumpro\.com$ + name + .+ + + target + + + host + netforumpro.com + + + host + *.netforumpro.com + + + + + netPR (partial) + + ruleset + + name + netPR (partial) + rule + + from + ^http://secure\.netpr\.pl/ + to + https://secure.netpr.pl/ + + securecookie + + host + ^secure\.netpr\.pl$ + name + .* + + target + + host + secure.netpr.pl + + + + netbank.de + + ruleset + + name + netbank.de + rule + + from + ^http://(?:www\.)?netbank\.de/ + to + https://www.netbank.de/ + + securecookie + + host + ^www\.netbank\.de$ + name + .+ + + target + + + host + netbank.de + + + host + www.netbank.de + + + + + netflame.cc + + ruleset + + name + netflame.cc + rule + + from + ^http://(ssl-)?hints\.netflame\.cc/ + to + https://$1hints.netflame.cc/ + + target + + host + *.netflame.cc + + + + netline.com (partial) + + ruleset + + name + netline.com (partial) + rule + + + from + ^http://my\.netline\.com/ + to + https://my.netline.com/ + + + from + ^http://ox-d\.netline\.com/w/1\.0/afr\?cc=1&auid=(\d+)&cb= + to + https://u.openx.net/w/1.0/sc?r=https%3A%2F%2Fox-d.netline.com%2Fw%2F1.0%2Fafr%3Fcc%3D1%26auid%3D$1%26cb%3D + + + target + + host + ox-d.netline.com + + + + netsekure.org + + ruleset + + name + netsekure.org + rule + + from + ^http://(tests\.|www\.)?netsekure\.org/ + to + https://$1netsekure.org/ + + target + + + host + netsekure.org + + + host + *.netsekure.org + + + + + network23.org + + ruleset + + name + network23.org + rule + + from + ^http://(www\.)?network23\.org/ + to + https://$1network23.org/ + + target + + + host + network23.org + + + host + www.network23.org + + + + + networkhm.com + + ruleset + + name + networkhm.com + rule + + from + ^http://ads\.networkhm\.com/ + to + https://ib.adnxs.com/ + + target + + host + ads.networkhm.com + + + + netzclub + + ruleset + + name + netzclub + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?netzclub\.net/ + to + https://www.netzclub.net/ + + + from + ^http://profil\.netzclub\.net/ + to + https://profil.netzclub.net/ + + + target + + + host + netzclub.net + + + host + www.netzclub.net + + + host + profil.netzclub.net + + + + + netzguerilla.net + + ruleset + + name + netzguerilla.net + rule + + from + ^http://(?:(lists\.|webmail\.)|www\.)?netzguerilla\.net/ + to + https://$1netzguerilla.net/ + + target + + + host + netzguerilla.net + + + host + *.netzguerilla.net + + + + + newjobs.com + + ruleset + + name + newjobs.com + rule + + + from + ^http://media\.newjobs\.com/ + to + https://a248.e.akamai.net/f/1015/8220/1m/media.newjobs.com/ + + + from + ^http://((css|img|js)-(?:hx|seeker)|track)\.newjobs\.com/ + to + https://$1.newjobs.com/ + + + from + ^http://securemedia\.newjobs\.com/ + to + https://securemedia.newjobs.com/ + + + target + + host + *.newjobs.com + + + + news9daily.org + + ruleset + + name + news9daily.org + rule + + from + ^http://(www\.)?news9daily\.org/ + to + https://$1news9daily.org/ + + securecookie + + host + ^(?:w*\.)?news9daily\.org$ + name + .+ + + target + + + host + news9daily.org + + + host + *.news9daily.org + + + + + newscheckmedia.com + + ruleset + + name + newscheckmedia.com + rule + + from + ^http://(?:assets|secure)\.newscheckmedia\.com/ + to + https://secure.newscheckmedia.com/ + + target + + host + *.newscheckmedia.com + + + + newsnet5.com (partial) + + ruleset + + name + newsnet5.com (partial) + rule + + + from + ^http://contests\.newsnet5\.com/shared/ + to + https://newsnet5.upickem.net/shared/ + + + from + ^http://media2\.newsnet5\.com/ + to + https://a248.e.akamai.net/media2.newsnet5.com/ + + + from + ^http://sharing\.newsnet5\.com/ + to + https://a248.e.akamai.net/f/1840/4749/2f/sharing.newsnet5.com/ + + + target + + host + *.newsnet5.com + + + + newsvine.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.newsvine\.com/_nv/ + + name + newsvine.com (partial) + rule + + + from + ^https?://(?:i\.|www\.(?:cdn\.)?)?newsvine\.com/ + to + https://www.newsvine.com/ + + + from + ^http://(?:(?:cdn\.|www\.)?(bonosrama|lib)|(log))\.newsvine\.com/ + to + https://$1$2.newsvine.com/ + + + from + ^http://onesearch4-2\.newsvine\.com/_vine/ + to + https://onesearch4-2.newsvine.com/_vine/ + + + from + ^http://(?:www\.)?polls\.newsvine\.com/_(static|vine)/ + to + https://www.newsvine.com/_$1/ + + + from + ^http://m\.static\.newsvine\.com/(?=servista/imagesizer\?) + to + https://a248.e.akamai.net/f/248/9206/10/m.static.newsvine.com/ + + + from + ^http://m\.static\.newsvine\.com/ + to + https://m.newsvine.com/ + + + securecookie + + host + ^\.newsvine\.com$ + name + .* + + target + + + host + newsvine.com + + + host + cdn.lib.newsvine.com + + + host + *.newsvine.com + + + host + www.*.newsvine.com + + + + + newtention.net + + ruleset + + name + newtention.net + rule + + from + ^http://(ads|www)\.newtention\.net/ + to + https://$1.newtention.net/ + + securecookie + + host + ^\.newtention\.net$ + name + .+ + + target + + host + *.newtention.net + + + + nex.sx + + ruleset + + name + nex.sx + rule + + from + ^http://(www\.)?nex\.sx/ + to + https://$1nex.sx/ + + target + + + host + nex.sx + + + host + www.nex.sx + + + + + nexac.com (partial) + + ruleset + + name + nexac.com (partial) + rule + + + from + ^http://(?:www\.)?nexac\.com/+(?:alpha(?:/|/index\.html)?|index\.html)?(?:\?.*)?$ + to + https://www.datalogix.com/index.php?id=19 + + + from + ^http://([efhpr])\.nexac\.com/ + to + https://$1.nexac.com/ + + + securecookie + + host + ^\.nexac\.com$ + name + .+ + + target + + + host + nexac.com + + + host + *.nexac.com + + + + + nginx.org (partial) + + ruleset + + name + nginx.org (partial) + rule + + from + ^http://trac\.nginx\.org/ + to + https://trac.nginx.org/ + + securecookie + + host + ^\.?trac\.nginx\.org$ + name + .+ + + target + + host + *.nginx.org + + + + ngrok.com + + ruleset + + name + ngrok.com + rule + + from + ^http://(www\.)?ngrok\.com/ + to + https://$1ngrok.com/ + + target + + + host + ngrok.com + + + host + www.ngrok.com + + + + + nine-2-one + + ruleset + + name + nine-2-one + rule + + from + ^http://(www\.)?nine-2-one\.com/ + to + https://$1nine-2-one.com/ + + securecookie + + host + ^(www\.)?nine-2-one\.com$ + name + .* + + target + + + host + nine-2-one.com + + + host + www.nine-2-one.com + + + + + nisit69.com + + ruleset + + name + nisit69.com + rule + + from + ^http://(www\.)?nisit69\.com/ + to + https://$1nisit69.com/ + + securecookie + + host + ^(?:w*\.)?nisit69\.com$ + name + .+ + + target + + + host + nisit69.com + + + host + www.nisit69.com + + + + + nlgcdn.com + + ruleset + + name + nlgcdn.com + rule + + from + ^http://nlgcdn\.com/ + to + https://nlgcdn.com/ + + target + + host + nlgcdn.com + + + + no added sugar + + ruleset + + name + no added sugar + rule + + from + ^http://(www\.)?noaddedsugar\.com/ + to + https://$1noaddedsugar.com/ + + securecookie + + host + ^\.noaddedsugar\.com$ + name + .+ + + target + + + host + noaddedsugar.com + + + host + *.noaddedsugar.com + + + + + noHold (partial) + + ruleset + + name + noHold (partial) + rule + + from + ^http://sw\.nohold\.net/ + to + https://sw.nohold.net/ + + target + + host + sw.nohold.net + + + + nocdirect.com + + ruleset + + name + nocdirect.com + rule + + from + ^http://(ninja|radium)\.nocdirect\.com/ + to + https://$1.nocdirect.com/ + + securecookie + + host + ^(?:ninja|radium)\.nocdirect\.com$ + name + .+ + + target + + host + *.nocdirect.com + + + + nodejs.org (partial) + + ruleset + + name + nodejs.org (partial) + rule + + from + ^http://(?:(packages\.)|www\.)?nodejs\.org/ + to + https://$1nodejs.org/ + + target + + + host + nodejs.org + + + host + *.nodejs.org + + + + + nonexiste.net (partial) + + ruleset + + name + nonexiste.net (partial) + rule + + from + ^http://(?:www\.)?images\.nonexiste\.net/ + to + https://images.nonexiste.net/ + + target + + host + *.nonexiste.net + + + + noris.net + + ruleset + + name + noris.net + platform + mixedcontent + rule + + from + ^http://(?:((?:mail|monitor|service)\.)|www\.)?noris\.net/ + to + https://$1noris.net/ + + target + + + host + noris.net + + + host + *.noris.net + + + + + normalesup.org (partial) + + ruleset + + name + normalesup.org (partial) + rule + + from + ^http://www\.normalesup\.org/ + to + https://www.normalesup.org/ + + target + + host + www.normalesup.org + + + + norx.io + + ruleset + + name + norx.io + rule + + from + ^http://(www\.)?norx\.io/ + to + https://$1norx.io/ + + target + + + host + norx.io + + + host + www.norx.io + + + + + noxa.de + + ruleset + + name + noxa.de + rule + + + from + ^http://(?:www\.)?noxa\.de/ + to + https://www.noxa.de/ + + + from + ^http://(admin|webmail)\.noxa\.de/ + to + https://$1.noxa.de/ + + + from + ^https?://noxamail\.de/$ + to + https://www.noxa.de/?noxamail + + + securecookie + + host + ^(?:admin\.|webmail\.|www\.)?noxa\.de$ + name + .+ + + target + + + host + noxa.de + + + host + admin.noxa.de + + + host + webmail.noxa.de + + + host + www.noxa.de + + + host + noxamail.de + + + + + np-Edv.at (partial) + + ruleset + + name + np-Edv.at (partial) + rule + + from + ^http://(hosting|it|kawas|mail|stats|wiki)\.np-edv\.at/ + to + https://$1.np-edv.at/ + + target + + host + *.np-edv.at + + + + npm js.org (partial) + + ruleset + + name + npm js.org (partial) + rule + + + from + ^http://(www\.)?npm(\.im|js\.org)/ + to + https://$1npm$2/ + + + from + ^http://preview\.npmjs\.com/ + to + https://preview.npmjs.com/ + + + from + ^http://registry\.npmjs\.org/ + to + https://registry.npmjs.org/ + + + from + ^http://status\.npmjs\.org/ + to + https://npmjs.statuspage.io/ + + + securecookie + + + host + ^preview\.npmjs\.com$ + name + .+ + + + host + ^npmjs\.org$ + name + .+ + + + target + + + host + npm.im + + + host + www.npm.im + + + host + npmjs.org + + + host + *.npmjs.org + + + host + preview.npmjs.com + + + + + npower (partial) + + ruleset + + name + npower (partial) + rule + + + from + ^http://(?:www\.)?npower\.com/(Medium-)?Business/(.+)/(?:index\.htm)? + to + https://www.npower.com/$1Business/$2/ + + + from + ^http://(?:www\.)?npower\.com/([aA]t_[hH]ome/[aA]pplications/|favicon\.ico|idc/groups/wcms_|In_Business/) + to + https://www.npower.com/$1 + + + target + + + host + npower.com + + + host + www.npower.com + + + + + nrelate (partial) + + ruleset + + name + nrelate (partial) + rule + + + from + ^http://(?:www\.)?nrelate\.com/wp-content/uploads/2010/10/favicon\.ico + to + https://partners.nrelate.com/wp-content/themes/partners-main/images/favicon.ico + + + from + ^http://(?:www\.)?nrelate\.com/wp-content/uploads/2012/01/nrelate\.png + to + https://partners.nrelate.com/wp-content/themes/partners-main/images/logo2.png + + + from + ^http://partners\.nrelate\.com/ + to + https://partners.nrelate.com/ + + + securecookie + + host + ^partners\.nrelate\.com$ + name + .* + + target + + + host + nrelate.com + + + host + *.nrelate.com + + + + + nsfwcorp.com (partial) + + ruleset + + name + nsfwcorp.com (partial) + rule + + from + ^http://(?:www\.)?nsfwcorp\.com/ + to + https://www.nsfwcorp.com/ + + securecookie + + host + ^www\.nsfwcorp\.com$ + name + .+ + + target + + + host + nsfwcorp.com + + + host + www.nsfwcorp.com + + + + + ntacdn1.net + + ruleset + + name + ntacdn1.net + rule + + from + ^http://(www\.)?ntacdn1\.net/ + to + https://$1ntacdn1.net/ + + securecookie + + host + ^\.ntacdn1\.net$ + name + .+ + + target + + + host + ntacdn1.net + + + host + *.ntacdn1.net + + + + + ntop.org (false MCB) + + ruleset + + name + ntop.org (false MCB) + platform + mixedcontent + rule + + + from + ^http://(?:svn\.|www\.)?ntop\.org/ + to + https://svn.ntop.org/ + + + from + ^https://www\.ntop\.org/ + to + https://svn.ntop.org/ + + + target + + + host + ntop.org + + + host + *.ntop.org + + + + + ntwk45.com + + ruleset + + name + ntwk45.com + rule + + from + ^http://(\w+)\.ntwk45\.com/ + to + https://$1.ntwk45.com/ + + target + + host + *.ntwk45.com + + + + nugg.ad (partial) + + ruleset + + name + nugg.ad (partial) + rule + + from + ^http://([\w-]+-s|mtm)\.nuggad\.net/ + to + https://$1.nuggad.net/ + + securecookie + + host + ^\.nuggad\.net$ + name + ^d$ + + target + + host + *.nuggad.net + + + + nventio.com + + ruleset + + name + nventio.com + rule + + from + ^http://(www\.)?nventio\.com/ + to + https://$1nventio.com/ + + securecookie + + host + ^\.?nventio\.com$ + name + .+ + + target + + + host + nventio.com + + + host + *.nventio.com + + + + + nxtck.com + + ruleset + + name + nxtck.com + rule + + from + ^http://nxtck\.com/ + to + https://nxtck.com/ + + securecookie + + host + ^nxtck\.com$ + name + .+ + + target + + host + nxtck.com + + + + nyantec + + ruleset + + name + nyantec + rule + + from + ^http://([^/:@]+\.)?nyantec\.com/ + to + https://$1nyantec.com/ + + securecookie + + host + ^(.+\.)?nyantec\.com$ + name + .* + + target + + + host + nyantec.com + + + host + *.nyantec.com + + + + + nzbmatrix + + ruleset + + name + nzbmatrix + rule + + + from + ^http://(www\.)?nzbmatrix\.com/ + to + https://nzbmatrix.com/ + + + from + ^http://(search|static)\.nzbmatrix\.com/ + to + https://$1.nzbmatrix.com/ + + + securecookie + + host + ^(. .)nzbmatrix\.com$ + name + .* + + target + + + host + *.nzbmatrix.com + + + host + nzbmatrix.com + + + + + o0bc.com + + ruleset + + name + o0bc.com + rule + + from + ^http://c\.o0bc\.com/ + to + https://c.o0bc.com/ + + target + + host + c.o0bc.com + + + + o2 online.de (partial) + + ruleset + + name + o2 online.de (partial) + rule + + + from + ^http://(?:www\.)?o2online\.de/ + to + https://www.o2online.de/ + + + from + ^http://(cct2?|dsl|email|hilfe|login|portal|track)\.o2online\.de/ + to + https://$1.o2online.de/ + + + from + ^http://mobilefun\.o2online\.de/ + to + https://o2-liv.mondiamedia.com/ + + + securecookie + + host + ^(?:.*\.)?o2online\.de$ + name + .+ + + target + + + host + o2online.de + + + host + *.o2online.de + + + + + oFono + + ruleset + + name + oFono + rule + + from + ^http://(www\.)?ofono\.org/ + to + https://ofono.org/ + + securecookie + + host + ^(?:w*\.)?ofono\.org$ + name + .+ + + target + + + host + ofono.org + + + host + *.ofono.org + + + + + oVPN.to (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + oVPN.to (partial) + rule + + from + ^http://(\w+)\.ovpn\.to/ + to + https://$1.ovpn.to/ + + securecookie + + host + ^.*\.ovpn\.to$ + name + .* + + target + + host + *.ovpn.to + + + + oblivia.vc + + ruleset + + name + oblivia.vc + rule + + from + ^http://(www\.)?oblivia\.vc/ + to + https://$1oblivia.vc/ + + target + + + host + oblivia.vc + + + host + www.oblivia.vc + + + + + obnox.de (CAcert, partial) + + ruleset + + name + obnox.de (CAcert, partial) + platform + cacert + rule + + from + ^http://blog\.obnox\.de/ + to + https://blog.obnox.de/ + + target + + host + blog.obnox.de + + + + oclaserver.com + + ruleset + + name + oclaserver.com + rule + + + from + ^http://oclaserver\.com/ + to + https://www.onclickads.net/ + + + from + ^http://go\.oclaserver\.com/ + to + https://go.oclaserver.com/ + + + target + + + host + oclaserver.com + + + host + go.oclaserver.com + + + + + odesk.by + + ruleset + + name + odesk.by + rule + + from + ^http://(?:www\.)?odesk\.by/ + to + https://odesk.by/ + + securecookie + + host + ^odesk\.by$ + name + .+ + + target + + + host + odesk.by + + + host + www.odesk.by + + + + + oeticket (partial) + + ruleset + + name + oeticket (partial) + rule + + from + ^https?://(?:www\.)?oeticket\.com/de/(my_account|sign-in)/ + to + https://www.oeticket.com/de/$1/ + + target + + + host + oeticket.com + + + host + www.oeticket.com + + + + + offermatica.com + + ruleset + + name + offermatica.com + rule + + from + ^http://mbox9\.offermatica\.com/ + to + https://mbox9.offermatica.com/ + + target + + host + mbox9.offermatica.com + + + + offlinemode.org + + ruleset + + name + offlinemode.org + rule + + from + ^https?://(?:(mail\.)|www\.)?offlinemode\.org/ + to + https://$1offlinemode.org/ + + target + + + host + offlinemode.org + + + host + *.offlinemode.org + + + + + okTurtles.com (partial) + + ruleset + + name + okTurtles.com (partial) + rule + + from + ^http://(blog|forums|piwik)\.okturtles\.com/ + to + https://$1.okturtles.com/ + + securecookie + + host + ^forums\.okturtles\.com$ + name + .+ + + target + + host + *.okturtles.com + + + + omNovia Technologies + + ruleset + + name + omNovia Technologies + rule + + + from + ^http://omnovia\.com/ + to + https://www.omnovia.com/ + + + from + ^http://([\w\-]+)\.omnovia\.com/ + to + https://$1.omnovia.com/ + + + securecookie + + host + ^(.*\.)omnovia\.com$ + name + .* + + target + + + host + omnovia.com + + + host + *.omnovia.com + + + + + on-web.fr + + ruleset + + name + on-web.fr + rule + + + from + ^http://(?:www\.)?on-web\.fr/ + to + https://www.planet-work.com/ + + + from + ^http://([\w-]+)\.on-web\.fr/ + to + https://$1.on-web.fr/ + + + securecookie + + host + .+\.on-web\.fr$ + name + .+ + + target + + + host + on-web.fr + + + host + *.on-web.fr + + + + + onJive.com + + ruleset + + name + onJive.com + rule + + from + ^http://(www\.)?onjive\.com/ + to + https://$1onjive.com/ + + securecookie + + host + ^www\.onjive\.com$ + name + .+ + + target + + + host + onjive.com + + + host + www.onjive.com + + + + + onclickads.net (partial) + + ruleset + + name + onclickads.net (partial) + rule + + from + ^http://onclickads\.net/ + to + https://onclickads.net/ + + securecookie + + host + ^onclickads\.net$ + name + .+ + + target + + host + onclickads.net + + + + one.com + + ruleset + + name + one.com + rule + + from + ^http://(?:www\.)?one\.com/ + to + https://www.one.com/ + + target + + + host + one.com + + + host + www.one.com + + + + + oneNetworkDirect + + ruleset + + name + oneNetworkDirect + rule + + from + ^http://(aff\.|www\.)?onenetworkdirect\.com/ + to + https://$1onenetworkdirect.com/ + + securecookie + + host + ^(?:aff)?\.onenetworkdirect\.com$ + name + .+ + + target + + + host + onenetworkdirect.com + + + host + *.onenetworkdirect.com + + + + + onebitbug.me + + ruleset + + name + onebitbug.me + rule + + from + ^http://(www\.)?onebitbug\.me/ + to + https://$1onebitbug.me/ + + target + + + host + onebitbug.me + + + host + www.onebitbug.me + + + + + onion.to + + ruleset + + name + onion.to + rule + + from + ^http://(\w+\.)?onion\.to/ + to + https://$1onion.to/ + + target + + host + *.onion.to + + + + online-convert.com (partial) + + ruleset + + exclusion + + + pattern + ^http://(?:www\.)?online-convert\.com/(?!favicon\.ico|login|password-recovery|register) + + + pattern + ^http://(?:archive|audio|document|ebook|hash|image|video)\.online-convert\.com/(?!favicon\.ico) + + + name + online-convert.com (partial) + rule + + from + ^http://((?:archive|audio|document|ebook|hash|image|static|video|www)\.)?online-convert\.com/ + to + https://$1online-convert.com/ + + target + + + host + online-convert.com + + + host + *.online-convert.com + + + + + online-metrix.net + + ruleset + + name + online-metrix.net + rule + + from + ^http://h\.online-metrix\.net/ + to + https://h.online-metrix.net/ + + securecookie + + host + ^h\.online-metrix\.net$ + name + .* + + target + + host + h.online-metrix.net + + + + onlinecreditcenter6.com + + ruleset + + name + onlinecreditcenter6.com + rule + + from + ^http://www(2)?\.onlinecreditcenter6\.com/ + to + https://www$1.onlinecreditcenter6.com/ + + target + + host + *.onlinecreditcenter6.com + + + + ooshirts.com (partial) + + ruleset + + name + ooshirts.com (partial) + rule + + from + ^http://(www\.|i[12]\.)?ooshirts\.com/(css|images)/ + to + https://www.ooshirts.com/$2/ + + target + + + host + ooshirts.com + + + host + i1.ooshirts.com + + + host + i2.ooshirts.com + + + host + www.ooshirts.com + + + + + op-co.de + + ruleset + + name + op-co.de + platform + cacert + rule + + from + ^http://(?:(gallery\.)|www\.)?op-co\.de/ + to + https://$1op-co.de/ + + target + + + host + op-co.de + + + host + *.op-co.de + + + + + openDemocracy.net + + ruleset + + name + openDemocracy.net + rule + + from + ^http://(www\.)?opendemocracy\.net/ + to + https://$1opendemocracy.net/ + + securecookie + + host + ^(?:\.|www\.)?opendemocracy\.net$ + name + .+ + + target + + + host + opendemocracy.net + + + host + *.opendemocracy.net + + + + + openDesktop.org + + ruleset + + name + openDesktop.org + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?opendesktop\.org/ + to + https://opendesktop.org/ + + + from + ^http://(?:static\.|www\.)?(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/ + to + https://opendesktop.org/$1/ + + + from + ^http://(?:static\.|www\.)?(?:(?:gnomefiles|linux42|scribusstuff|opentemplate|vlc-addons)\.org|(?:linuxdaily|open-pc|openskillz)\.com)/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/ + to + https://opendesktop.org/$1/ + + + from + ^http://addons\.videolan\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/ + to + https://opendesktop.org/$1/ + + + target + + + host + arch-stuff.org + + + host + *.arch-stuff.org + + + host + beryl-themes.org + + + host + *.beryl-themes.org + + + host + box-look.org + + + host + *.box-look.org + + + host + cli-apps.org + + + host + *.cli-apps.org + + + host + debian-art.org + + + host + *.debian-art.org + + + host + e17-stuff.org + + + host + *.e17-stuff.org + + + host + ede-look.org + + + host + *.ede-look.org + + + host + eyeos-apps.org + + + host + *.eyeos-apps.org + + + host + frugalware-art.org + + + host + *.frugalware-art.org + + + host + gentoo-art.org + + + host + *.gentoo-art.org + + + host + gnomefiles.org + + + host + *.gnomefiles.org + + + host + gnome-help.org + + + host + *.gnome-help.org + + + host + gnome-look.org + + + host + *.gnome-look.org + + + host + gtk-apps.org + + + host + *.gtk-apps.org + + + host + java-apps.org + + + host + *.java-apps.org + + + host + kde-apps.org + + + host + *.kde-apps.org + + + host + kde-files.org + + + host + *.kde-files.org + + + host + kde-help.org + + + host + *.kde-help.org + + + host + kde-look.org + + + host + *.kde-look.org + + + host + linux42.org + + + host + *.linux42.org + + + host + linuxdaily.com + + + host + *.linuxdaily.com + + + host + linuxmint-art.org + + + host + *.linuxmint-art.org + + + host + maemo-apps.org + + + host + *.maemo-apps.org + + + host + opendesktop.org + + + host + *.opendesktop.org + + + host + open-pc.com + + + host + *.open-pc.com + + + host + openskillz.com + + + host + *.openskillz.com + + + host + opentemplate.org + + + host + *.opentemplate.org + + + host + qt-apps.org + + + host + *.qt-apps.org + + + host + scribusstuff.org + + + host + *.scribusstuff.org + + + host + suse-art.org + + + host + *.suse-art.org + + + host + ubuntu-art.org + + + host + *.ubuntu-art.org + + + host + addons.videolan.org + + + host + vlc-addons.org + + + host + *.vlc-addons.org + + + host + wine-apps.org + + + host + *.wine-apps.org + + + host + xfce-help.org + + + host + *.xfce-help.org + + + host + xfce-look.org + + + host + *.xfce-look.org + + + + + openHPI + + ruleset + + name + openHPI + rule + + from + ^http://(www\.)?openhpi\.de(:8443)?/ + to + https://$1openhpi.de$2/ + + securecookie + + host + ^(?:www\.)?openhpi\.de$ + name + .+ + + target + + + host + openhpi.de + + + host + www.openhpi.de + + + + + openPGP in Russia + + ruleset + + name + openPGP in Russia + rule + + from + ^http://(www\.)?pgpru\.com/ + to + https://www.pgpru.com/ + + securecookie + + host + ^www\.pgpru\.com$ + name + .* + + target + + + host + pgpru.com + + + host + www.pgpru.com + + + + + openSUSE (partial) + + ruleset + + name + openSUSE (partial) + rule + + + from + ^http://(?:www\.)?opensuse\.org/ + to + https://www.opensuse.org/ + + + from + ^http://(\w\w|activedoc|beans|bugs|build|connect|count(?:down|er)|doc|features|forums|lizards|news|shop|software|static|wiki)\.opensuse\.org/ + to + https://$1.opensuse.org/ + + + securecookie + + host + ^\w+\.opensuse\.org$ + name + .+ + + target + + + host + opensuse.org + + + host + *.opensuse.org + + + + + opendatacity + + ruleset + + name + opendatacity + rule + + from + ^http://(?:(apps\.|labs\.)|www\.)?opendatacity\.de/ + to + https://$1opendatacity.de/ + + target + + + host + opendatacity.de + + + host + *.opendatacity.de + + + + + openfiler + + ruleset + + name + openfiler + rule + + from + ^http://(forums2?\.|store\.|www\.)?openfiler\.com/ + to + https://$1openfiler.com/ + + securecookie + + host + ^.*\.openfiler\.com$ + name + .+ + + target + + + host + openfiler.com + + + host + *.openfiler.com + + + + + opensource.com + + ruleset + + name + opensource.com + rule + + from + ^http://(www\.)?opensource\.com/ + to + https://$1opensource.com/ + + securecookie + + host + ^\.opensource\.com$ + name + .+ + + target + + + host + opensource.com + + + host + *.opensource.com + + + + + ophan.co.uk (partial) + + ruleset + + name + ophan.co.uk (partial) + rule + + from + ^http://s\.ophan\.co\.uk/ + to + https://d2n6o0n31iqeta.cloudfront.net/ + + target + + host + s.ophan.co.uk + + + + optimize-it (partial) + + ruleset + + name + optimize-it (partial) + rule + + from + ^http://realperson300\.net/ + to + https://realperson300.net/ + + target + + host + realperson300.net + + + + optorb.com + + ruleset + + name + optorb.com + rule + + from + ^http://u\.optorb\.com/ + to + https://u.optorb.com/ + + securecookie + + host + ^\.optorb\.com$ + name + .+ + + target + + host + *.optorb.com + + + + orWall.org + + ruleset + + name + orWall.org + rule + + from + ^http://(www\.)?orwall\.org/ + to + https://$1orwall.org/ + + target + + + host + orwall.org + + + host + www.orwall.org + + + + + orxrdr.com + + ruleset + + name + orxrdr.com + rule + + from + ^http://www\.orxrdr\.com/ + to + https://www.orxrdr.com/ + + target + + host + www.orxrdr.com + + + + os-cillation (partial) + + ruleset + + name + os-cillation (partial) + rule + + from + ^http://(?:www\.)?schweissgut\.net/ + to + https://schweissgut.net/ + + target + + + host + schweissgut.net + + + host + www.schweissgut.net + + + + + os3sec.org + + ruleset + + name + os3sec.org + rule + + from + ^http://(www\.)?os3sec\.org/ + to + https://$1os3sec.org/ + + target + + + host + os3sec.org + + + host + www.os3sec.org + + + + + oschina (partial) + + ruleset + + name + oschina (partial) + platform + mixedcontent + rule + + from + ^http://(www\.)?oschina\.net/ + to + https://$1oschina.net/ + + securecookie + + host + ^\.oschina\.net$ + name + .+ + + target + + + host + oschina.net + + + host + *.oschina.net + + + + + outflux.net + + ruleset + + name + outflux.net + rule + + from + ^http://(www\.)?outflux\.net/ + to + https://$1outflux.net/ + + target + + + host + outflux.net + + + host + www.outflux.net + + + + + overclock.net (partial) + + ruleset + + name + overclock.net (partial) + rule + + from + ^http://cdn\.overclock\.net/ + to + https://d1rktuf34l9h2g.cloudfront.net/ + + target + + host + cdn.overclock.net + + + + ownCloud.com + + ruleset + + name + ownCloud.com + rule + + + from + ^http://(www\.)?owncloud\.com/ + to + https://$1owncloud.com/ + + + from + ^http://static\.owncloud\.com/ + to + https://opendesktop.org/ + + + securecookie + + host + ^\.(?:www\.)?owncloud\.com$ + name + .+ + + target + + + host + owncloud.com + + + host + *.owncloud.com + + + + + ownCloud.org (partial) + + ruleset + + name + ownCloud.org (partial) + rule + + from + ^http://((?:download|forum|www)\.)?owncloud\.org/ + to + https://$1owncloud.org/ + + securecookie + + host + ^(?:\.forum\.)?owncloud\.org$ + name + .+ + + target + + + host + owncloud.org + + + host + *.owncloud.org + + + + + oyoony + + ruleset + + name + oyoony + rule + + from + ^http://(?:www\.)?oyoony\.(at|de|net)/ + to + https://oyoony.de/ + + securecookie + + host + ^(?:www\.)?oyoony\.(at|de|net)$ + name + .+ + + target + + + host + oyoony.at + + + host + www.oyoony.at + + + host + oyoony.de + + + host + www.oyoony.de + + + host + oyoony.net + + + host + www.oyoony.net + + + + + pages05.net + + ruleset + + name + pages05.net + rule + + from + ^http://www\.sc\.pages05\.net/ + to + https://www.sc.pages05.net/ + + target + + host + www.sc.pages05.net + + + + pair Networks (partial) + + ruleset + + exclusion + + pattern + http://(cpan|whois)\.pairnic\. + + name + pair Networks (partial) + rule + + + from + ^https://(?:www\.)?eliminatejunkemail\.com/ + to + https://www.pairnic.com/ + + + from + ^http://(www\.)?pair\.com/(assets|static)/ + to + https://$1pair.com/$2/ + + + from + ^http://(my|promote|static|(?:(?:[as]m|my|rc|sm)\.)?webmail)\.pair\.com/ + to + https://$1.pair.com/ + + + from + ^http://(www\.)?pairlite\.com/(images/|signup/|styles01\.css) + to + https://$1pairlite.com/$2 + + + from + ^http://(my|webmail)\.pairlite\.com/ + to + https://$1.pairlite.com/ + + + from + ^http://(www\.)?pairnic\.com/ + to + https://$1pairnic.com/ + + + securecookie + + host + ^(.*\.)?pairnic\.com$ + name + .* + + target + + + host + eliminatejunkemail.com + + + host + www.eliminatejunkemail.com + + + host + pair.com + + + host + *.pair.com + + + host + *.webmail.pair.com + + + host + pairlite.com + + + host + *.pairlite.com + + + host + pairnic.com + + + host + *.pairnic.com + + + + + partypoker + + ruleset + + name + partypoker + platform + mixedcontent + rule + + + from + ^http://partypoker\.com/ + to + https://www.partypoker.com/ + + + from + ^http://www\.partypoker\.com/ + to + https://www.partypoker.com/ + + + from + ^http://p\.iivt\.com/ + to + https://p.iivt.com/ + + + target + + + host + partypoker.com + + + host + *.partypoker.com + + + host + p.iivt.com + + + + + paste.sh + + ruleset + + name + paste.sh + rule + + from + ^http://(?:www\.)?paste\.sh/ + to + https://paste.sh/ + + target + + + host + paste.sh + + + host + www.paste.sh + + + + + patrickbateman.biz + + ruleset + + name + patrickbateman.biz + rule + + from + ^http://(www\.)?patrickbateman\.biz/ + to + https://$1patrickbateman.biz/ + + target + + + host + patrickbateman.biz + + + host + www.patrickbateman.biz + + + + + payQuake (partial) + + ruleset + + name + payQuake (partial) + rule + + from + ^http://(?:www\.)?mypayquake\.com/ + to + https://www.mypayquake.com/ + + securecookie + + host + ^www\.mypayquake\.com$ + name + .* + + target + + + host + mypayquake.com + + + host + *.mypayquake.com + + + + + payrollapp.com + + ruleset + + name + payrollapp.com + rule + + from + ^https?://(?:www\.)?payrollapp\.com/ + to + https://payrollapp.com/ + + securecookie + + host + ^payrollapp\.com$ + name + .+ + + target + + + host + payrollapp.com + + + host + www.payrollapp.com + + + + + paysafecard.com + + ruleset + + name + paysafecard.com + rule + + + from + ^http://(?:www\.)?paysafecard\.com/ + to + https://www.paysafecard.com/ + + + from + ^http://(mypins|static)\.paysafecard\.com/ + to + https://$1.paysafecard.com/ + + + securecookie + + host + ^(?:mypins|static|www)?\.paysafecard\.com$ + name + .+ + + target + + + host + paysafecard.com + + + host + *.paysafecard.com + + + + + pdfcrowd.com (partial) + + ruleset + + exclusion + + pattern + ^http://pdfcrowd\.com/+(?!(?:blog|user/sign_in)(?:$|[?/])|favicon\.ico|forums/templates/|static/) + + name + pdfcrowd.com (partial) + rule + + from + ^http://(www\.)?pdfcrowd\.com/ + to + https://$1pdfcrowd.com/ + + target + + + host + pdfcrowd.com + + + host + www.pdfcrowd.com + + + + + peacemakergame.com + + ruleset + + name + peacemakergame.com + platform + mixedcontent + rule + + from + ^http://(www\.)?peacemakergame\.com/ + to + https://peacemakergame.com/ + + securecookie + + host + ^(www)?\.?peacemakergame\.com + name + .* + + target + + + host + www.peacemakergame.com + + + host + peacemakergame.com + + + + + pekwm.org + + ruleset + + name + pekwm.org + platform + cacert + rule + + from + ^http://(?:www\.)?pekwm\.org/ + to + https://www.pekwm.org/ + + securecookie + + host + ^www\.pekwm\.org$ + name + .+ + + target + + + host + pekwm.org + + + host + www.pekwm.org + + + + + pfSense.org (partial) + + ruleset + + name + pfSense.org (partial) + rule + + from + ^http://(blog|devwiki|doc|forum|portal|redmine|www|snapshots|files)\.pfsense\.org/ + to + https://$1.pfsense.org/ + + securecookie + + host + .+\.pfsense\.org$ + name + .+ + + target + + host + *.pfsense.org + + + + pheedcontent.com + + ruleset + + name + pheedcontent.com + rule + + from + ^http://www\.pheedcontent\.com/ + to + https://www.pheedo.com/ + + target + + host + www.pheedcontent.com + + + + phone-analytics.com + + ruleset + + name + phone-analytics.com + rule + + + from + ^https?://(?:ssl\.|www\.)?phone-analytics\.com/ + to + https://ssl.phone-analytics.com/ + + + from + ^http://cdn\.phone-analytics\.com/ + to + https://cdn.phone-analytics.com/ + + + target + + + host + phone-analytics.com + + + host + *.phone-analytics.com + + + + + photoprintit.com + + ruleset + + name + photoprintit.com + rule + + from + ^http://(a|c)s\.photoprintit\.com/ + to + https://$1s.photoprintit.com/ + + securecookie + + + host + ^\.photoprintit\.com$ + name + ^s_\w+$ + + + host + ^as\.photoprintit\.com$ + name + .+ + + + target + + host + *.photoprintit.com + + + + phpBB (partial) + + ruleset + + exclusion + + pattern + ^http://tracker\.phpbb\.com/plugins/servlet/gadgets/dashboard-diagnostics + + name + phpBB (partial) + rule + + from + ^http://((?:area51|bamboo|blog|camo|download|tracker|wiki|www)\.)?phpbb\.com/ + to + https://$1phpbb.com/ + + securecookie + + host + ^(?:bamboo|wiki)?\.phpbb\.com$ + name + .+ + + target + + + host + phpbb.com + + + host + *.phpbb.com + + + + + phpMyAdmin.net (partial) + + ruleset + + name + phpMyAdmin.net (partial) + rule + + from + ^http://wiki\.phpmyadmin\.net/ + to + https://wiki.phpmyadmin.net/ + + securecookie + + host + ^wiki\.phpmyadmin\.net$ + name + .+ + + target + + host + wiki.phpmyadmin.net + + + + php[architect] (partial) + + ruleset + + exclusion + + pattern + ^http://(?:codeworks\.|www\.)?phparch\.com/(?!favicon\.ico|wp-content/) + + name + php[architect] (partial) + rule + + + from + ^http://((?:codeworks|summits|tek13|www)\.)?phparch\.com/ + to + https://$1phparch.com/ + + + from + ^http://tek\.phparch\.com/wp-content/ + to + https://tek13.phparch.com/wp-content/ + + + securecookie + + host + ^tek13\.phparch\.com$ + name + .+ + + target + + + host + phparch.com + + + host + *.phparch.com + + + + + pimg.net + + ruleset + + name + pimg.net + rule + + from + ^http://([\w-]+)\.pimg\.net/ + to + https://$1.pimg.net/ + + target + + host + *.pimg.net + + + + pimg.tw + + ruleset + + name + pimg.tw + rule + + from + ^http://(imageproxy|pic|s\d*)\.pimg\.tw/ + to + https://$1.pimg.tw/ + + target + + host + *.pimg.tw + + + + pinescharter.net (partial) + + ruleset + + name + pinescharter.net (partial) + rule + + from + ^http://(www\.)?pinescharter\.net/(DesktopModules/|favicon\.ico|images/|js/|[pP]ortals/|Resources/|SiteLogin(?:$|\?|/)|(?:Telerik\.Web\.UI\.)?WebResource\.axd) + to + https://$1pinescharter.net/$2 + + target + + + host + pinescharter.net + + + host + www.pinescharter.net + + + + + piwik.org (partial) + + ruleset + + name + piwik.org (partial) + rule + + from + ^http://((?:demo|dev|developer|plugins|www)\.)?piwik\.org/ + to + https://$1piwik.org/ + + securecookie + + host + ^(?:.+\.)?piwik\.org$ + name + .+ + + target + + + host + piwik.org + + + host + *.piwik.org + + + + + pixfs.net + + ruleset + + name + pixfs.net + rule + + from + ^http://(mainpage|panel|s)\.pixfs\.net/ + to + https://$1.pixfs.net/ + + target + + host + *.pixfs.net + + + + pixnet.cc + + ruleset + + name + pixnet.cc + rule + + from + ^http://panel\.pixnet\.cc/ + to + https://panel.pixnet.cc/ + + securecookie + + host + ^\.panel\.pixnet\.cc$ + name + .+ + + target + + host + *.pixnet.cc + + + + pizza.de + + ruleset + + name + pizza.de + rule + + from + ^http://(m\.|www\.)?pizza\.de/ + to + https://$1pizza.de/ + + securecookie + + host + ^\.pizza\.de$ + name + .+ + + target + + + host + pizza.de + + + host + *.pizza.de + + + + + plantappstore.com (false MCB) + + ruleset + + name + plantappstore.com (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?plantappstore\.com/ + to + https://$1plantappstore.com/ + + securecookie + + host + ^(?:\.|www\.)?plantappstore\.com$ + name + .+ + + target + + + host + plantappstore.com + + + host + *.plantappstore.com + + + + + plantappstore.com (partial) + + ruleset + + name + plantappstore.com (partial) + rule + + from + ^http://(www\.)?plantappstore\.com/(?=catalog/|favicon\.ico|images/) + to + https://$1plantappstore.com/ + + target + + + host + plantappstore.com + + + host + www.plantappstore.com + + + + + plista (partial) + + ruleset + + name + plista (partial) + rule + + + from + ^https?://(?:www\.)?plista\.com/((?:\w\w/)?a(?:ccount/(?:login|forgot_pw)|dvertiser/registrations)(?:$|\?)|ccss/|img/) + to + https://www.plista.com/$1 + + + from + ^http://static\.plista\.com/ + to + https://static.plista.com/ + + + target + + + host + plista.com + + + host + *.plista.com + + + + + ploum.net + + ruleset + + name + ploum.net + rule + + from + ^http://(www\.)?ploum\.net/ + to + https://$1ploum.net/ + + target + + + host + ploum.net + + + host + www.ploum.net + + + + + plug.dj (partial) + + ruleset + + name + plug.dj (partial) + rule + + from + ^http://((?:blog|cdn|www)\.)?plug\.dj/ + to + https://$1plug.dj/ + + target + + + host + plug.dj + + + host + *.plug.dj + + + + + plurk (partial) + + ruleset + + name + plurk (partial) + rule + + from + ^http://(statics\.|www\.)?plurk\.com/ + to + https://$1plurk.com/ + + securecookie + + host + ^\.plurk\.com$ + name + .+ + + target + + + host + plurk.com + + + host + *.plurk.com + + + + + plusme.net (false MCB) + + ruleset + + name + plusme.net (false MCB) + platform + mixedcontent + rule + + from + ^http://(www\.)?plusme\.net/ + to + https://$1plusme.net/ + + securecookie + + host + ^(?:w*\.)?plusme\.net$ + name + .+ + + target + + + host + plusme.net + + + host + *.plusme.net + + + + + plusme.net (partial) + + ruleset + + name + plusme.net (partial) + rule + + from + ^http://(www\.)?plusme\.net/(?=catalog/view/(?:javascript|theme)/|favicon\.ico|image/) + to + https://$1plusme.net/ + + target + + + host + plusme.net + + + host + www.plusme.net + + + + + podcast.at (partial) + + ruleset + + name + podcast.at (partial) + rule + + from + ^http://(?:www\.)?(?:feedarea\.de|podcast\.at)/(?=favicon\.ico|images/) + to + https://www.podcast.at/ + + target + + + host + feedarea.de + + + host + www.feedarea.de + + + host + podcast.at + + + host + www.podcast.at + + + + + poets.org + + ruleset + + name + poets.org + rule + + + from + ^https?://poets\.org/ + to + https://www.poets.org/ + + + from + ^http://www\.poets\.org/ + to + https://www.poets.org/ + + + target + + + host + poets.org + + + host + www.poets.org + + + + + politisktinkorrekt.info + + ruleset + + name + politisktinkorrekt.info + rule + + + from + ^http://politisktinkorrekt\.info/ + to + https://politisktinkorrekt.info/ + + + from + ^http://www\.politisktinkorrekt\.info/ + to + https://politisktinkorrekt.info/ + + + target + + host + politisktinkorrekt.info + + + + poopl.org + + ruleset + + name + poopl.org + rule + + from + ^http://(www\.)?poolp\.org/ + to + https://$1poolp.org/ + + securecookie + + host + ^\.poolp\.org$ + name + .+ + + target + + + host + poolp.org + + + host + *.poolp.org + + + + + popIn.cc (partial) + + ruleset + + name + popIn.cc (partial) + rule + + + from + ^http://(api|js|search)\.popin\.cc/ + to + https://$1.popin.cc/ + + + from + ^http://(?:r|sync)\.popin\.cc/ + to + https://sync.popin.cc/ + + + target + + host + *.popin.cc + + + + porvoo.fi + + ruleset + + name + porvoo.fi + rule + + + from + ^http://(www\.)?porvoo\.fi/ + to + https://www.porvoo.fi/ + + + from + ^https://porvoo\.fi/ + to + https://www.porvoo.fi/ + + + securecookie + + host + ^\.?(www)?\.?porvoo\.fi + name + .* + + target + + + host + www.porvoo.fi + + + host + porvoo.fi + + + + + posti.fi + + ruleset + + exclusion + + pattern + ^http://(www\.)?posti\.fi/itemtracking/ + + name + posti.fi + platform + mixedcontent + rule + + from + ^http://(www\.)?posti\.fi/ + to + https://posti.fi/ + + securecookie + + + host + ^\.?(www)?\.?posti\.fi + name + .* + + + host + ^[^@/:\.]\.?posti\.fi + name + .* + + + target + + + host + www.posti.fi + + + host + posti.fi + + + + + postrelease.com (partial) + + ruleset + + name + postrelease.com (partial) + rule + + + from + ^http://a(?:dserve)?\.postrelease\.com/ + to + https://a248.e.akamai.net/f/1123/4688/5/a.postrelease.com/ + + + from + ^http://assets\.postrelease\.com/ + to + https://a248.e.akamai.net/f/248/7300/10/assets.postrelease.com/ + + + target + + host + *.postrelease.com + + + + potager.org + + ruleset + + name + potager.org + rule + + + from + ^http://([^/:@\.]+\.)?pimienta\.org/ + to + https://$1pimienta.org/ + + + from + ^http://([^/:@\.]+\.)?poivron\.org/ + to + https://$1poivron.org/ + + + from + ^http://([^/:@\.]+\.)?potager\.org/ + to + https://$1potager.org/ + + + from + ^http://([^/:@\.]+\.)?sweetpepper\.org/ + to + https://$1sweetpepper.org/ + + + securecookie + + host + ^mail\.potager\.org$ + name + .+ + + target + + + host + pimienta.org + + + host + *.pimienta.org + + + host + poivron.org + + + host + *.poivron.org + + + host + potager.org + + + host + *.potager.org + + + host + sweetpepper.org + + + host + *.sweetpepper.org + + + + + preCharge.com + + ruleset + + name + preCharge.com + rule + + from + ^http://((?:affiliates|support|www)\.)?precharge\.com/ + to + https://$1precharge.com/ + + securecookie + + host + ^(?:affiliates)?\.precharge\.com$ + name + .+ + + target + + + host + precharge.com + + + host + *.precharge.com + + + + + preCharge.net (partial) + + ruleset + + name + preCharge.net (partial) + rule + + + from + ^http://affiliates\.precharge\.net/ + to + https://affiliates.precharge.com/ + + + from + ^http://secure\.precharge\.net/ + to + https://secure.precharge.net/ + + + securecookie + + host + ^secure\.precharge\.net$ + name + .+ + + target + + host + *.precharge.net + + + + printink.si + + ruleset + + name + printink.si + rule + + from + ^http://(www\.)?printink\.si/ + to + https://$1printink.si/ + + securecookie + + host + ^(?:www)?\.printint\.si$ + name + .+ + + target + + + host + printink.si + + + host + *.printink.si + + + + + printrbot (partial) + + ruleset + + name + printrbot (partial) + rule + + + from + ^http://(www\.)?printrbot\.com/ + to + https://$1printrbot.com/ + + + from + ^http://help\.printrbot\.com/favicon\.ico + to + https://printrbot.dozuki.com/favicon.ico + + + securecookie + + host + ^(?:www\.)?printrbot\.com$ + name + .+ + + target + + + host + printrbot.com + + + host + *.printrbot.com + + + + + priv.at (CAcert) + + ruleset + + name + priv.at (CAcert) + platform + cacert + rule + + from + ^http://www\.tahina\.priv\.at/ + to + https://www.tahina.priv.at/ + + target + + host + www.tahina.priv.at + + + + privacy-cd.org + + ruleset + + name + privacy-cd.org + rule + + from + ^http://(www\.)?privacy-cd\.org/ + to + https://$1privacy-cd.org/ + + securecookie + + host + ^www\.privacy-cd\.org$ + name + .+ + + target + + + host + privacy-cd.org + + + host + www.privacy-cd.org + + + + + pro186.com (partial) + + ruleset + + name + pro186.com (partial) + rule + + from + ^http://cdn\.pro186\.com/ + to + https://d31p8cbsm4vlum.cloudfront.net/ + + target + + host + cdn.pro186.com + + + + profesia.sk + + ruleset + + name + profesia.sk + rule + + + from + ^http://profesia\.sk/ + to + https://www.profesia.sk/ + + + from + ^http://www\.profesia\.sk/ + to + https://www.profesia.sk/ + + + target + + + host + profesia.sk + + + host + www.profesia.sk + + + + + prosystemfx.com + + ruleset + + name + prosystemfx.com + rule + + + from + ^http://(?:(stage)?www\.)?prosystemfx\.com/ + to + https://$1www.prosystemfx.com/ + + + from + ^http://cchknowledgecenter\.prosystemfx\.com/ + to + https://cchknowledgecenter.prosystemfx.com/ + + + securecookie + + host + ^(?:.*\.)?prosystemfx\.com$ + name + .+ + + target + + + host + prosystemfx.com + + + host + *.prosystemfx.com + + + + + prq.se + + ruleset + + name + prq.se + rule + + + from + ^http://webmail\.prq\.se/ + to + https://webmail.prq.se/ + + + from + ^http://kundcenter\.prq\.se/ + to + https://kundcenter.prq.se/ + + + target + + + host + webmail.prq.se + + + host + kundcenter.prq.se + + + + + pstatic.net + + ruleset + + name + pstatic.net + rule + + from + ^http://ssl\.pstatic\.net/ + to + https://ssl.pstatic.net/ + + target + + host + ssl.pstatic.net + + + + pthree.org + + ruleset + + name + pthree.org + rule + + from + ^http://(?:www\.)?pthree\.org/ + to + https://pthree.org/ + + securecookie + + host + ^pthree\.org$ + name + .+ + + target + + + host + pthree.org + + + host + www.pthree.org + + + + + publiekeomroep.nl (partial) + + ruleset + + name + publiekeomroep.nl (partial) + rule + + from + ^http://cookiesv2\.publiekeomroep\.nl/ + to + https://cookiesv2.publiekeomroep.nl/ + + securecookie + + + host + ^cookiesv2\.publiekeomroep\.nl$ + name + .+ + + + host + ^\.cookiesv2\.publiekeomroep\.nl$ + name + ^\w+balanceid$ + + + target + + host + *.publiekeomroep.nl + + + + pubservice.com + + ruleset + + name + pubservice.com + rule + + from + ^http://(www\.)?pubservice\.com/ + to + https://$1pubservice.com/ + + securecookie + + host + ^www\.pubservice\.com$ + name + .+ + + target + + + host + pubservice.com + + + host + www.pubservice.com + + + + + pure-privacy.org + + ruleset + + name + pure-privacy.org + rule + + from + ^http://(?:www\.)?pure-privacy\.org/ + to + https://pure-privacy.org/ + + target + + + host + pure-privacy.org + + + host + www.pure-privacy.org + + + + + put.io + + ruleset + + name + put.io + rule + + from + ^http://(www\.)?put\.io/ + to + https://$1put.io/ + + target + + + host + put.io + + + host + www.put.io + + + + + puu.sh + + ruleset + + name + puu.sh + rule + + from + ^http://(www\.)?puu\.sh/ + to + https://$1puu.sh/ + + securecookie + + host + ^\.puu\.sh$ + name + .+ + + target + + + host + puu.sh + + + host + *.puu.sh + + + + + puush.me + + ruleset + + name + puush.me + rule + + from + ^http://(?:www\.)?puush\.me/ + to + https://puush.me/ + + securecookie + + host + ^\.puush\.me$ + name + .+ + + target + + + host + puush.me + + + host + *.puush.me + + + + + pwmt.org + + ruleset + + name + pwmt.org + rule + + from + ^http://((?:bugs|git|lists|www)\.)?pwmt\.org/ + to + https://$1pwmt.org/ + + target + + + host + pwmt.org + + + host + *.pwmt.org + + + + + pyneo.org + + ruleset + + name + pyneo.org + rule + + from + ^http://(www\.)?pyneo\.org/ + to + https://$1pyneo.org/ + + securecookie + + host + ^pyneo\.org$ + name + .+ + + target + + + host + pyneo.org + + + host + www.pyneo.org + + + + + pythonhosted.org + + ruleset + + name + pythonhosted.org + rule + + from + ^http://(www\.)?pythonhosted\.org/ + to + https://$1pythonhosted.org/ + + target + + + host + pythonhosted.org + + + host + www.pythonhosted.org + + + + + q3k.org + + ruleset + + name + q3k.org + rule + + from + ^http://(www\.)?q3k\.org/ + to + https://$1q3k.org/ + + target + + + host + q3k.org + + + host + www.q3k.org + + + + + qnetp.net (partial) + + ruleset + + name + qnetp.net (partial) + rule + + from + ^http://(booster\.|mail\.)?qnetp\.net/ + to + https://$1qnetp.net/ + + securecookie + + host + ^\.mail\.qnetp\.net$ + name + .+ + + target + + + host + qnetp.net + + + host + *.qnetp.net + + + + + quackquackgo.nl + + ruleset + + name + quackquackgo.nl + platform + cacert + rule + + from + ^http://(?:www\.)?quackquackgo\.nl/ + to + https://quackquackgo.nl/ + + target + + + host + quackquackgo.nl + + + host + www.quackquackgo.nl + + + + + quattroplay.com + + ruleset + + name + quattroplay.com + rule + + from + ^http://([\w-]+\.)?quattroplay\.com/ + to + https://$1quattroplay.com/ + + securecookie + + host + ^(?:.*\.)?quattroplay\.com$ + name + .+ + + target + + + host + quattroplay.com + + + host + *.quattroplay.com + + + + + quicktranslate.com + + ruleset + + name + quicktranslate.com + rule + + from + ^http://(www\.)?quicktranslate\.com/ + to + https://$1quicktranslate.com/ + + securecookie + + host + ^(?:w*\.)?quicktranslate\.com$ + name + .+ + + target + + + host + quicktranslate.com + + + host + *.quicktranslate.com + + + + + quizsnack.com (partial) + + ruleset + + name + quizsnack.com (partial) + rule + + from + ^http://files\.quizsnack\.com/ + to + https://s3.amazonaws.com/files.quizsnack.com/ + + target + + host + files.quizsnack.com + + + + quup.com + + ruleset + + name + quup.com + rule + + from + ^http://(?:www\.)?quup\.com/ + to + https://quup.com/ + + securecookie + + host + ^\.?quup\.com$ + name + .+ + + target + + + host + quup.com + + + host + *.quup.com + + + + + r00tz.org (partial) + + ruleset + + name + r00tz.org (partial) + rule + + from + ^http://(?:www\.)?r00tz(?:-org\.theidentityproject\.com|\.org)/wp-content/ + to + https://secure.bluehost.com/~theiden1/r00tz/wp-content/ + + target + + + host + r00tz-org.theidentityproject.com + + + host + www.r00tz-org.theidentityproject.com + + + host + r00tz.org + + + host + www.r00tz.org + + + + + raKditigal (partial) + + ruleset + + name + raKditigal (partial) + rule + + from + ^http://((?:www\.)?clients|managewp)\.rakdigital\.co\.uk/ + to + https://$1.rakdigital.co.uk/ + + securecookie + + host + ^(?:(?:www\.)?clients|managewp)\.rakdigital\.co\.uk$ + name + .+ + + target + + host + *.rakdigital.co.uk + + + + radian.org + + ruleset + + name + radian.org + rule + + from + ^http://(www\.)?radian\.org/ + to + https://radian.org/ + + target + + host + radian.org + + + + rawgithub.com + + ruleset + + name + rawgithub.com + rule + + from + ^http://(?:www\.)?rawgithub\.com/ + to + https://rawgithub.com/ + + target + + + host + rawgithub.com + + + host + www.rawgithub.com + + + + + rbt.asia + + ruleset + + name + rbt.asia + rule + + from + ^http://(www\.)?rbt\.asia/ + to + https://$1rbt.asia/ + + target + + + host + rbt.asia + + + host + www.rbt.asia + + + + + rbu.sh + + ruleset + + name + rbu.sh + platform + cacert + rule + + + from + ^http://goodpoint\.de/ + to + https://goodpoint.de/ + + + from + ^http://(www\.)?rbu\.sh/ + to + https://$1rbu.sh/ + + + securecookie + + + host + ^goodpoint\.de$ + name + .* + + + host + ^(.*\.)?rbu\.sh$ + name + .* + + + target + + + host + goodpoint.de + + + host + rbu.sh + + + host + www.rbu.sh + + + + + rdns.im + + ruleset + + name + rdns.im + rule + + from + ^http://(www\.)?rdns\.im/ + to + https://$1rdns.im/ + + target + + + host + rdns.im + + + host + www.rdns.im + + + + + rec-log (partial) + + ruleset + + name + rec-log (partial) + rule + + + from + ^http://(www\.)reclog\.jp/ + to + https://$1reclog.jp/ + + + from + ^http://rec-log\.jp/ + to + https://rec-log.jp/ + + + from + ^https?://www\.rec-log\.jp/ + to + https://www.reclog.jp/ + + + securecookie + + host + ^rec-log\.jp$ + name + .+ + + target + + + host + reclog.jp + + + host + www.reclog.jp + + + host + rec-log.jp + + + host + www.rec-log.jp + + + + + redditmade.com + + ruleset + + name + redditmade.com + rule + + from + ^http://(www\.)?redditmade\.com/ + to + https://$1redditmade.com/ + + securecookie + + host + ^(?:\.|www\.)?redditmade\.com$ + name + .+ + + target + + + host + redditmade.com + + + host + *.redditmade.com + + + + + rednerd.com + + ruleset + + name + rednerd.com + rule + + from + ^http://(?:www\.)?rednerd\.com/ + to + https://rednerd.com/ + + target + + + host + rednerd.com + + + host + www.rednerd.com + + + + + redports.org + + ruleset + + name + redports.org + rule + + from + ^http://(www\.)?redports\.org/ + to + https://$1redports.org/ + + target + + + host + redports.org + + + host + www.redports.org + + + + + registryrocket.com + + ruleset + + name + registryrocket.com + rule + + from + ^https?://(?:www\.)?registryrocket\.com/ + to + https://www.registryrocket.com/ + + securecookie + + host + ^www\.registryrocket\.com$ + name + .+ + + target + + + host + registryrocket.com + + + host + www.registryrocket.com + + + + + regit.org (partial) + + ruleset + + name + regit.org (partial) + rule + + from + ^http://home\.regit\.org/ + to + https://home.regit.org/ + + target + + host + home.regit.org + + + + reimanpub.com + + ruleset + + name + reimanpub.com + rule + + from + ^http://((?:origin-)?hostedmedia\.|www\.)?reimanpub\.com/ + to + https://$1reimanpub.com/ + + securecookie + + host + ^(?:(?:origin-)?hostedmedia\.|www\.)?reimanpub\.com$ + name + .+ + + target + + + host + reimanpub.com + + + host + *.reimanpub.com + + + + + rentalserver.jp + + ruleset + + name + rentalserver.jp + rule + + from + ^http://(cp|cp-d|cp-vps|sv)\.rentalserver\.jp/ + to + https://$1.rentalserver.jp/ + + securecookie + + host + ^(?:cp|cp-d|cp-vps|sv)\.rentalserver\.jp$ + name + .+ + + target + + host + *.rentalserver.jp + + + + responsive.io (partial) + + ruleset + + name + responsive.io (partial) + rule + + from + ^http://(src\.|www\.)?responsive\.io/ + to + https://$1responsive.io/ + + securecookie + + host + ^(?:w*\.)?responsive\.io$ + name + .+ + + target + + + host + responsive.io + + + host + *.responsive.io + + + + + resultspage.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + resultspage.com (partial) + rule + + from + ^http://([\w-]+)\.resultspage\.com/ + to + https://$1.resultspage.com/ + + securecookie + + host + ^.+\.resultspage\.com$ + name + .+ + + target + + host + *.resultspage.com + + + + reussissonsensemble.fr (partial) + + ruleset + + name + reussissonsensemble.fr (partial) + rule + + from + ^http://(banniere|clic)\.reussissonsensemble\.fr/ + to + https://$1.reussissonsensemble.fr/ + + securecookie + + host + ^clic\.reussissonsensemble\.fr$ + name + .+ + + target + + host + *.reussissonsensemble.fr + + + + rev2pub.com + + ruleset + + name + rev2pub.com + rule + + from + ^http://creative\.rev2pub\.com/ + to + https://d1col0l9yjljr0.cloudfront.net/ + + target + + host + creative.rev2pub.com + + + + reverseheartbleed.com + + ruleset + + name + reverseheartbleed.com + rule + + from + ^http://reverseheartbleed\.com/ + to + https://reverseheartbleed.com/ + + target + + host + reverseheartbleed.com + + + + revosec + + ruleset + + name + revosec + rule + + from + ^http://(?:www\.)?revosec\.ch/ + to + https://www.revosec.ch/ + + securecookie + + host + ^www\.revosec\.ch$ + name + .* + + target + + + host + revosec.ch + + + host + www.revosec.ch + + + + + rfecom.com (partial) + + ruleset + + name + rfecom.com (partial) + rule + + + from + ^http://ch03\.rfecom\.com/ + to + https://ch03.rfecom.com/ + + + from + ^http://www\.rfecom\.com/+(?:$|\?.*) + to + https://www.myoptimizerplus.com/ + + + target + + host + *.rfecom.com + + + + rfihub.com + + ruleset + + name + rfihub.com + rule + + from + ^http://(\w+)\.rfihub\.com/ + to + https://$1.rfihub.com/ + + securecookie + + host + ^\.rfihub\.com$ + name + .+ + + target + + host + *.rfihub.com + + + + ripe.net + + ruleset + + name + ripe.net + platform + mixedcontent + rule + + from + ^http://((?:access|atlas|(?:apps|www)\.db|labs|(?:lir)?portal|meetings|ripe65|www)\.)?ripe\.net/ + to + https://$1ripe.net/ + + securecookie + + host + ^.*\.ripe\.net$ + name + .* + + target + + + host + ripe.net + + + host + *.ripe.net + + + host + apps.db.ripe.net + + + + + ritter.vg + + ruleset + + name + ritter.vg + rule + + from + ^http://(www\.)?ritter\.vg/ + to + https://$1ritter.vg/ + + target + + + host + ritter.vg + + + host + www.ritter.vg + + + + + roadworks.org + + ruleset + + name + roadworks.org + rule + + + from + ^http://(?:www\.)?roadworks\.org/ + to + https://roadworks.org/ + + + from + ^http://portal\.roadworks\.org/ + to + https://portal.roadworks.org/ + + + target + + + host + roadworks.org + + + host + www.roadworks.org + + + host + portal.roadworks.org + + + + + rochesterhomepage.net (partial) + + ruleset + + name + rochesterhomepage.net (partial) + rule + + + from + ^http://(?:www\.)?rochesterhomepage\.biz/(area|banner\.amp|biz/|classifieds(?:$|\?|/)|css/|favicon\.ico|homepage/layout_image\.php|images?/|site\.css|tributes/) + to + https://www.rochesterhomepage.biz/$1 + + + from + ^http://(?:www\.)?rochesterhomepage\.net/(component|image|include|librarie|module|plugin|template)s/ + to + https://rochesterhomepage.net/$1s/ + + + target + + + host + rochesterhomepage.* + + + host + www.rochesterhomepage.* + + + + + roe.ch + + ruleset + + name + roe.ch + rule + + from + ^http://((?:daniel|mirror|www)\.)?roe\.ch/ + to + https://$1roe.ch/ + + securecookie + + host + ^www\.roe\.ch$ + name + .+ + + target + + + host + roe.ch + + + host + *.roe.ch + + + + + rohieb.name + + ruleset + + name + rohieb.name + rule + + from + ^http://(www\.)?rohieb\.name/ + to + https://$1rohieb.name/ + + target + + + host + rohieb.name + + + host + www.rohieb.name + + + + + roia.biz + + ruleset + + name + roia.biz + rule + + from + ^http://(?:www\.)?roia\.biz/ + to + https://roia.biz/ + + securecookie + + host + ^roia\.biz$ + name + .+ + + target + + + host + roia.biz + + + host + www.roia.biz + + + + + romab.com + + ruleset + + name + romab.com + rule + + + from + ^http://www\.romab\.com/ + to + https://www.romab.com/ + + + from + ^http://www\.romab\.se/ + to + https://www.romab.com/ + + + from + ^http://romab\.se/ + to + https://romab.com/ + + + from + ^http://romab\.com/ + to + https://romab.com/ + + + target + + + host + romab.com + + + host + romab.se + + + host + www.romab.com + + + host + www.romab.se + + + + + rows.io + + ruleset + + name + rows.io + rule + + from + ^http://(?:www\.)?rows\.io/ + to + https://rows.io/ + + securecookie + + host + ^rows\.io$ + name + .+ + + target + + + host + rows.io + + + host + www.rows.io + + + + + rsshog + + ruleset + + name + rsshog + rule + + from + ^http://(img\.|static\d\.|www\.)?rsshog\.com/ + to + https://$1rsshog.com/ + + securecookie + + host + ^(?:\.?www)?\.rsshog\.com$ + name + .+ + + target + + + host + rsshog.com + + + host + *.rsshog.com + + + + + rsync.net (partial) + + ruleset + + name + rsync.net (partial) + rule + + from + ^http://(?:www\.)?rsync\.net/(?=css/|images/|resources/) + to + https://www.rsync.net/ + + target + + + host + rsync.net + + + host + www.rsync.net + + + + + rsys.net + + ruleset + + name + rsys.net + rule + + from + ^http://([\w\-])\.rsys\.net/ + to + https://$1.rsys.net/ + + target + + host + *.rsys.net + + + + ruby-lang.org (partial) + + ruleset + + name + ruby-lang.org (partial) + rule + + + from + ^http://(www\.)?ruby-lang\.org/ + to + https://$1ruby-lang.org/ + + + from + ^http://(bugs|redmine)\.ruby-lang\.org/ + to + https://$1.ruby-lang.org/ + + + securecookie + + host + ^bugs\.ruby-lang\.org$ + name + .+ + + target + + + host + ruby-lang.org + + + host + *.ruby-lang.org + + + + + russia.ru (partial) + + ruleset + + name + russia.ru (partial) + rule + + from + ^http://(adv|mail)\.russia\.ru/ + to + https://$1.russia.ru/ + + securecookie + + host + ^adv\.russia\.ru$ + name + .+ + + target + + host + *.russia.ru + + + + rxpharmacyusa.com + + ruleset + + name + rxpharmacyusa.com + rule + + from + ^http://(www\.)?rxpharmacyusa\.com/ + to + https://$1rxpharmacyusa.com/ + + securecookie + + host + ^\.?www\.rxpharmacyusa\.com$ + name + .+ + + target + + + host + rxpharmacyusa.com + + + host + *.rxpharmacyusa.com + + + + + s-msn.com (partial) + + ruleset + + name + s-msn.com (partial) + rule + + + from + ^http://(entcss|entimg|img|media-social|blu\.st[bc]|col\.stb0[01]|kaw\.stb|col\.stc|st[cj]-now|wst)\.s-msn\.com/ + to + https://$1.s-msn.com/ + + + from + ^https?://static-hp\.s-msn\.com/ + to + https://preview.msn.com/ + + + from + ^http://sin\.stb\.s-msn\.com/ + to + https://a248.e.akamai.net/f/1574/354/10m/sin.stb.s-msn.com/ + + + from + ^http://sin\.stb0(0|1)\.s-msn\.com/ + to + https://a248.e.akamai.net/f/1574/5119/5m/sin.stb0$1.s-msn.com/ + + + target + + host + *.s-msn.com + + + + s2Member.com (false MCB) + + ruleset + + name + s2Member.com (false MCB) + platform + mixedcontent + rule + + from + ^http://www\.s2member\.com/(?!affiliates/API/|favicon\.ico|s-badges/|wp-content/|wp-includes/) + to + https://www.s2member.com/ + + securecookie + + host + ^\.s2member\.com$ + name + .+ + + target + + host + *.s2member.com + + + + s2Member.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\.s2member\.com/(?!affiliates/API/|favicon\.ico|s-badges/|wp-content/|wp-includes/) + + name + s2Member.com (partial) + rule + + from + ^http://(?:www\.)?s2member\.com/ + to + https://www.s2member.com/ + + target + + + host + s2member.com + + + host + www.s2member.com + + + + + sMyl.es + + ruleset + + name + sMyl.es + rule + + from + ^http://(plugins\.|www\.)?smyl\.es/ + to + https://$1smyl.es/ + + target + + + host + smyl.es + + + host + *.smyl.es + + + + + safecharge247.com + + ruleset + + name + safecharge247.com + rule + + from + ^http://(www\.)?safecharge247\.com/ + to + https://$1safecharge247.com/ + + target + + + host + safecharge247.com + + + host + www.safecharge247.com + + + + + saurik (partial) + + ruleset + + name + saurik (partial) + rule + + from + ^http://c(ache|ydia)\.saurik\.com/ + to + https://c$1.saurik.com/ + + target + + host + *.saurik.com + + + + sbarmen.no (partial) + + ruleset + + name + sbarmen.no (partial) + rule + + from + ^http://(www\.)?sbarmen\.no/ + to + https://$1sbarmen.no/ + + securecookie + + host + ^(?:www\.)?sbarmen\.no$ + name + .+ + + target + + + host + sbarmen.no + + + host + www.sbarmen.no + + + + + scanscout.com + + ruleset + + name + scanscout.com + rule + + + from + ^http://app\.scanscout\.com/ + to + https://a248.e.akamai.net/f/1682/6631/2d/app.scanscout.com/ + + + from + ^http://dt\.scanscout\.com/ + to + https://dt.scanscout.com/ + + + from + ^http://portal\.scanscout\.com/.* + to + https://portal.videohub.tv/vhn + + + securecookie + + + host + ^\.scanscout\.com$ + name + ^(?:o?bsm|uid) + + + host + ^dt\.scanscout\.com$ + name + .+ + + + target + + host + *.scanscout.com + + + + schetu.net + + ruleset + + name + schetu.net + rule + + from + ^http://schetu\.net/ + to + https://schetu.net/ + + securecookie + + host + ^\.?schetu\.net$ + name + .+ + + target + + + host + schetu.net + + + host + *.schetu.net + + + + + schokokeks.org + + ruleset + + name + schokokeks.org + rule + + from + ^http://(bugs|config|keys|webmail|wiki)\.schokokeks\.org/ + to + https://$1.schokokeks.org/ + + securecookie + + host + ^(bugs|config)\.schokokeks\.org$ + name + .* + + target + + + host + bugs.schokokeks.org + + + host + config.schokokeks.org + + + host + keys.schokokeks.org + + + host + webmail.schokokeks.org + + + host + wiki.schokokeks.org + + + + + schokokeks.org (CAcert) + + ruleset + + name + schokokeks.org (CAcert) + platform + cacert + rule + + from + ^http://(source\.|www\.)?schokokeks\.org/ + to + https://$1schokokeks.org/ + + target + + + host + schokokeks.org + + + host + source.schokokeks.org + + + host + www.schokokeks.org + + + + + scottlinux.com + + ruleset + + name + scottlinux.com + rule + + from + ^http://(?:www\.)?scottlinux\.com/ + to + https://scottlinux.com/ + + securecookie + + host + ^scottlinux\.com$ + name + .+ + + target + + + host + scottlinux.com + + + host + www.scottlinux.com + + + + + scrippsing.com (partial) + + ruleset + + name + scrippsing.com (partial) + rule + + from + ^http://push\.scrippsing\.com/ + to + https://push.scrippsing.com/ + + target + + host + push.scrippsing.com + + + + scriptjunkie.us (partial) + + ruleset + + name + scriptjunkie.us (partial) + rule + + from + ^http://(www\.)?scriptjunkie\.us/ + to + https://$1scriptjunkie.us/ + + target + + + host + scriptjunkie.us + + + host + www.scriptjunkie.us + + + + + scsstatic.ch + + ruleset + + name + scsstatic.ch + rule + + from + ^http://www\.(res[12]\.)?scsstatic\.ch/ + to + https://www.$1scsstatic.ch/ + + target + + host + *.scsstatic.ch + + + + seL4.systems + + ruleset + + name + seL4.systems + rule + + from + ^http://(www\.)?sel4\.systems/ + to + https://$1sel4.systems/ + + target + + + host + sel4.systems + + + host + www.sel4.systems + + + + + searchcode.com + + ruleset + + name + searchcode.com + rule + + from + ^http://(www\.)?searchcode\.com/ + to + https://$1searchcode.com/ + + target + + + host + searchcode.com + + + host + www.searchcode.com + + + + + searchmarketing.com + + ruleset + + name + searchmarketing.com + rule + + from + ^http://tracking\.searchmarketing\.com/ + to + https://tracking.searchmarketing.com/ + + securecookie + + host + ^(?:tracking)?\.searchmarketing\.com$ + name + .+ + + target + + host + *.searchmarketing.com + + + + secunet (partial) + + ruleset + + name + secunet (partial) + rule + + + from + ^http://secunet\.com/ + to + https://www.secunet.com/ + + + from + ^http://www\.secunet\.com/(de/(das-unternehmen|not-in-menu)/|en/the-company/it-security-report-secuview/|fileadmin/|typo3(conf|temp)/|uploads/|urchin\.js) + to + https://www.secunet.com/$1 + + + from + ^http://sinaportal\.secunet\.com/ + to + https://sinaportal.secunet.com/ + + + securecookie + + + host + ^\.secunet\.com$ + name + ^__utm\w$ + + + host + ^www\.secunet\.com$ + name + ^(?:ist|_vm_u)$ + + + host + ^sinaportal\.secunet\.com$ + name + .* + + + target + + + host + secunet.com + + + host + *.secunet.com + + + host + www.secunet.com + + + + + secure-donor.com + + ruleset + + name + secure-donor.com + rule + + from + ^http://([\w-]+\.)?secure-donor\.com/ + to + https://$1secure-donor.com/ + + securecookie + + host + ^(?:[\w-]+\.)?secure-donor\.com$ + name + .+ + + target + + + host + secure-donor.com + + + host + *.secure-donor.com + + + + + secure-mobiles.com + + ruleset + + name + secure-mobiles.com + rule + + from + ^http://(media|www)\.secure-mobiles\.com/ + to + https://$1.secure-mobiles.com/ + + securecookie + + host + ^www\.secure-mobiles\.com$ + name + .+ + + target + + host + *.secure-mobiles.com + + + + secure-resumption.com + + ruleset + + name + secure-resumption.com + rule + + from + ^http://(www\.)?secure-resumption\.com/ + to + https://$1secure-resumption.com/ + + target + + + host + secure-resumption.com + + + host + www.secure-resumption.com + + + + + secure-secure.co.uk + + ruleset + + name + secure-secure.co.uk + rule + + from + ^http://web(\d+)\.secure-secure\.co\.uk/ + to + https://web$1.secure-secure.co.uk/ + + securecookie + + host + ^web\d+\.secure-secure\.co\.uk$ + name + .+ + + target + + host + *.secure-secure.co.uk + + + + secure-u e.V. + + ruleset + + name + secure-u e.V. + platform + cacert + rule + + from + ^http://(www\.)?secure-u\.de/ + to + https://www.secure-u.de/ + + target + + + host + www.secure-u.de + + + host + secure-u.de + + + + + secure-zone.net + + ruleset + + name + secure-zone.net + rule + + from + ^http://asp-(\w\w)\.secure-zone\.net/ + to + https://asp-$1.secure-zone.net/ + + securecookie + + host + ^asp-\w\w\.secure-zone\.net$ + name + .+ + + target + + host + *.secure-zone.net + + + + secure.me + + ruleset + + name + secure.me + rule + + from + ^http://(apps\.|wp\.|www\.)?secure\.me/ + to + https://$1secure.me/ + + securecookie + + host + ^www\.secure\.me$ + name + .+ + + target + + + host + secure.me + + + host + *.secure.me + + + + + securedcontent.net + + ruleset + + name + securedcontent.net + rule + + from + ^http://(www\.)?securedcontent\.net/ + to + https://$1securedcontent.net/ + + target + + + host + securedcontent.net + + + host + www.securedcontent.net + + + + + securelogin.org + + ruleset + + name + securelogin.org + rule + + from + ^http://securelogin\.org/ + to + https://securelogin.org/ + + securecookie + + host + ^securelogin\.org$ + name + .+ + + target + + host + securelogin.org + + + + securepaths.com + + ruleset + + name + securepaths.com + rule + + from + ^http://(www\.)?securepaths\.com/ + to + https://$1securepaths.com/ + + securecookie + + host + ^(www\.)?securepaths\.com$ + name + .* + + target + + + host + securepaths.com + + + host + www.securepaths.com + + + + + securepicssl.com + + ruleset + + name + securepicssl.com + rule + + from + ^http://([\w-]+\.)?securepcissl\.com/ + to + https://$1securepcissl.com/ + + securecookie + + host + ^(?:.*\.)?securepicssl\.com$ + name + .+ + + target + + + host + securepcissl.com + + + host + *.securepcissl.com + + + + + securepurchaseserver.com + + ruleset + + name + securepurchaseserver.com + rule + + from + ^https?://(?:www\.)?securepurchaseserver(2)?\.com/ + to + https://securepurchaseserver$1.com/ + + target + + + host + securepurchaseserver.com + + + host + www.securepurchaseserver.com + + + host + securepurchaseserver2.com + + + host + www.securepurchaseserver2.com + + + + + secureuk.net + + ruleset + + name + secureuk.net + rule + + from + ^http://(www\.)?secureuk\.net/ + to + https://$1secureuk.net/ + + target + + + host + secureuk.net + + + host + www.secureuk.net + + + + + selfhost.de + + ruleset + + name + selfhost.de + rule + + from + ^http://(?:www\.)?selfhost\.de/ + to + https://selfhost.de/ + + target + + + host + selfhost.de + + + host + *.selfhost.de + + + + + semantic-mediawiki.org + + ruleset + + name + semantic-mediawiki.org + rule + + from + ^http://(www\.)?semantic-mediawiki\.org/ + to + https://semantic-mediawiki.org/ + + target + + + host + www.semantic-mediawiki.org + + + host + semantic-mediawiki.org + + + + + seower.com + + ruleset + + name + seower.com + rule + + from + ^http://(www\.)?seower\.com/ + to + https://$1seower.com/ + + securecookie + + host + ^(?:w*\.)?seower.com$ + name + .+ + + target + + + host + seower.com + + + host + www.seower.com + + + + + server314.com + + ruleset + + name + server314.com + rule + + from + ^http://([\w\.-]+\.)?server314\.com/ + to + https://$1server314.com/ + + securecookie + + host + ^.+\.server314\.com$ + name + .+ + + target + + + host + server314.com + + + host + *.server314.com + + + + + serveriai.lt + + ruleset + + name + serveriai.lt + rule + + from + ^http://(whois\.|www\.)?serveriai\.lt/ + to + https://$1serveriai.lt/ + + target + + + host + serveriai.lt + + + host + *.serveriai.lt + + + + + serverloft (partial) + + ruleset + + name + serverloft (partial) + rule + + from + ^http://(my|order)\.serverloft\.com/ + to + https://$1.serverloft.com/ + + securecookie + + host + ^.*\.serverloft\.com$ + name + .* + + target + + host + *.serverloft.com + + + + serving-sys.com (partial) + + ruleset + + name + serving-sys.com (partial) + rule + + + from + ^http://(?:activity|bs)\.serving-sys\.com/ + to + https://bs.serving-sys.com/ + + + from + ^http://ds\.serving-sys\.com/ + to + https://a248.e.akamai.net/f/50/1/5m/ds.serving-sys.com/ + + + from + ^http://secure-ds\.serving-sys\.com/ + to + https://secure-ds.serving-sys.com/ + + + from + ^http://as\.serving-sys-int\.com/ + to + https://a248.e.akamai.net/f/1452/7592/10/as.serving-sys-int.com/ + + + from + ^http://secure-ds\.serving-sys-int\.com/ + to + https://secure-ds.serving-sys-int.com/ + + + securecookie + + host + ^bs\.serving-sys\.com$ + name + .* + + target + + + host + *.serving-sys.com + + + host + *.serving-sys-int.com + + + + + shaaaaaaaaaaaaa.com + + ruleset + + name + shaaaaaaaaaaaaa.com + rule + + from + ^http://(www\.)?shaaaaaaaaaaaaa\.com/ + to + https://$1shaaaaaaaaaaaaa.com/ + + target + + + host + shaaaaaaaaaaaaa.com + + + host + www.shaaaaaaaaaaaaa.com + + + + + shareNice + + ruleset + + name + shareNice + rule + + from + ^http://(www\.)?sharenice\.org/ + to + https://sharenice.org/ + + target + + + host + sharenice.org + + + host + www.sharenice.org + + + + + sharedcount.com API + + ruleset + + name + sharedcount.com API + rule + + from + ^http://api\.sharedcount\.com/ + to + https://sharedcount.appspot.com/ + + target + + host + api.sharedcount.com + + + + sharedvue.net + + ruleset + + name + sharedvue.net + rule + + from + ^http://(intel\.|www\.)?sharedvue\.net/ + to + https://$1sharedvue.net/ + + target + + + host + sharedvue.net + + + host + *.sharedvue.net + + + + + sharetobuy.com + + ruleset + + name + sharetobuy.com + rule + + + from + ^https?://sharetobuy\.com/ + to + https://www.sharetobuy.com/ + + + from + ^http://([^/:@]+)?\.sharetobuy\.com/ + to + https://$1.sharetobuy.com/ + + + securecookie + + host + ^(.*\.)?sharetobuy\.com$ + name + .+ + + target + + + host + sharetobuy.com + + + host + *.sharetobuy.com + + + + + shellfish.io + + ruleset + + name + shellfish.io + rule + + from + ^http://(www\.)?shellfish\.io/ + to + https://$1shellfish.io/ + + securecookie + + host + ^shellfish\.io$ + name + .+ + + target + + + host + shellfish.io + + + host + www.shellfish.io + + + + + shopinfo.net (partial) + + ruleset + + name + shopinfo.net (partial) + rule + + from + ^http://(?:www\.)?shopinfo\.net/(?=favicon\.ico|fileadmin/|typo3temp/|uploads/|zertifizierte-shops/zertifikat/) + to + https://www.shopinfo.net/ + + target + + + host + shopinfo.net + + + host + www.shopinfo.net + + + + + shwyz.ca + + ruleset + + name + shwyz.ca + rule + + from + ^http://(www\.)?shwyz\.ca/ + to + https://$1shwyz.ca/ + + target + + + host + shwyz.ca + + + host + www.shwyz.ca + + + + + sidux e.V. + + ruleset + + name + sidux e.V. + platform + cacert + rule + + from + ^http://(www\.)?sidux-ev\.org/ + to + https://sidux-ev.org/ + + target + + + host + sidux-ev.org + + + host + www.sidux-ev.org + + + + + sigxcpu.org + + ruleset + + name + sigxcpu.org + platform + cacert + rule + + from + ^http://(?:honk\.|www\.)?sigxcpu\.org/ + to + https://honk.sigxcpu.org/ + + target + + + host + sigxcpu.org + + + host + *.sigxcpu.org + + + + + silvertunnel.org + + ruleset + + name + silvertunnel.org + rule + + from + ^http://(?:www\.)?silvertunnel\.org/ + to + https://silvertunnel.org/ + + target + + + host + silvertunnel.org + + + host + www.silvertunnel.org + + + + + simFlight (partial) + + ruleset + + name + simFlight (partial) + rule + + from + ^http://(?:secure\.|www\.)?simmarket\.com/ + to + https://secure.simmarket.com/ + + securecookie + + host + ^(.*\.)?simmarket\.com$ + name + .* + + target + + + host + simmarket.com + + + host + *.simmarket.com + + + + + simplebooklet.com (partial) + + ruleset + + name + simplebooklet.com (partial) + rule + + from + ^http://(edu\.|www\.)?simplebooklet\.com/ + to + https://$1simplebooklet.com/ + + securecookie + + host + ^(?:edu\.)?simplebooklet\.com$ + name + .+ + + target + + + host + simplebooklet.com + + + host + *.simplebooklet.com + + + + + simplekb.com + + ruleset + + name + simplekb.com + rule + + from + ^http://([\w-]+\.)?simplekb\.com/ + to + https://$1simplekb.com/ + + securecookie + + host + ^[\w-]+\.simplekb\.com$ + name + .+ + + target + + + host + simplekb.com + + + host + *.simplekb.com + + + + + sitemeter.com + + ruleset + + name + sitemeter.com + rule + + from + ^https?://\w{3}\.sitemeter\.com/js/ + to + https://www.sitemeter.com/js/ + + target + + host + *.sitemeter.com + + + + smava + + ruleset + + name + smava + rule + + from + ^http://www\.smava\.de/ + to + https://www.smava.de/ + + target + + host + www.smava.de + + + + smutty + + ruleset + + name + smutty + rule + + from + ^http://smutty\.com/ + to + https://smutty.com/ + + target + + host + smutty.com + + + + snafu (partial) + + ruleset + + name + snafu (partial) + rule + + from + ^http://service\.snafu\.de/ + to + https://service.snafu.de/ + + securecookie + + host + ^service\.snafu\.de$ + name + .* + + target + + host + service.snafu.de + + + + snagajob + + ruleset + + exclusion + + + pattern + ^http://www\.snagajob\.com/answers/ + + + pattern + ^http://www\.snagajob\.com/blog/ + + + name + snagajob + platform + mixedcontent + rule + + + from + ^http://(?:www\.)?snagajob\.com/ + to + https://www.snagajob.com/ + + + from + ^http://media\.snagajob\.com/ + to + https://media.snagajob.com/ + + + securecookie + + host + ^(.*\.)?snagajob.com$ + name + .* + + target + + + host + snagajob.com + + + host + www.snagajob.com + + + host + *.snagajob.com + + + + + so36.NET + + ruleset + + name + so36.NET + platform + cacert + rule + + + from + ^http://so36\.net/ + to + https://so36.net/ + + + from + ^http://([^/:@\.]+)\.so36\.net/ + to + https://$1.so36.net/ + + + target + + + host + so36.net + + + host + *.so36.net + + + + + socialbakers.com + + ruleset + + name + socialbakers.com + platform + mixedcontent + rule + + from + ^http://(\w+\.)?socialbakers\.com/ + to + https://$1socialbakers.com/ + + securecookie + + host + ^(.*\.)?socialbakers\.com$ + name + .* + + target + + + host + socialbakers.com + + + host + *.socialbakers.com + + + + + sociomantic labs + + ruleset + + name + sociomantic labs + rule + + + from + ^http://(?:www\.)?sociomantic\.com/ + to + https://www.sociomantic.com/ + + + from + ^http://(blog|us-sonar)\.sociomantic\.com/ + to + https://$1.sociomantic.com/ + + + securecookie + + host + ^\.sociomantic\.com$ + name + ^sonar(?:-expires)$ + + target + + + host + sociomantic.com + + + host + *.sociomantic.com + + + + + soundgasm.net + + ruleset + + name + soundgasm.net + rule + + from + ^http://(www\.)?soundgasm\.net/ + to + https://$1soundgasm.net/ + + securecookie + + host + ^(?:www\.)?soundgasm.net$ + name + .+ + + target + + + host + soundgasm.net + + + host + www.soundgasm.net + + + + + sourced.fm + + ruleset + + name + sourced.fm + rule + + from + ^http://(www\.)?sourced\.fm/ + to + https://$1sourced.fm/ + + securecookie + + host + ^\.sourced\.fm$ + name + .+ + + target + + + host + sourced.fm + + + host + *.sourced.fm + + + + + sourceware.org (partial) + + ruleset + + name + sourceware.org (partial) + rule + + from + ^http://(www\.)?sourceware\.org/ + to + https://$1sourceware.org/ + + target + + + host + sourceware.org + + + host + www.sourceware.org + + + + + spamicity.info + + ruleset + + name + spamicity.info + rule + + from + ^http://(?:www\.)?spamicity\.info/ + to + https://spamicity.info/ + + securecookie + + host + ^spamicity\.info$ + name + .+ + + target + + + host + spamicity.info + + + host + www.spamicity.info + + + + + speech.leseweb.dk + + ruleset + + name + speech.leseweb.dk + rule + + from + ^http://speech\.leseweb\.dk/ + to + https://speech.leseweb.dk/ + + target + + host + speech.leseweb.dk + + + + spicebox + + ruleset + + name + spicebox + rule + + from + ^http://(www\.)?spicebox\.co\.jp/ + to + https://$1spicebox.co.jp/ + + target + + + host + spicebox.co.jp + + + host + www.spicebox.co.jp + + + + + spogo.co.uk + + ruleset + + name + spogo.co.uk + rule + + from + ^http://(www\.)?spogo\.co\.uk/ + to + https://$1spogo.co.uk/ + + securecookie + + host + ^(?:www\.)?spogo\.co\.uk$ + name + .+ + + target + + + host + spogo.co.uk + + + host + www.spogo.co.uk + + + + + spsn.net + + ruleset + + name + spsn.net + rule + + from + ^http://(www\.)?spsn\.net/ + to + https://$1spsn.net/ + + securecookie + + host + ^(?:www\.)?spsn\.net$ + name + .+ + + target + + + host + spsn.net + + + host + www.spsn.net + + + + + sptag1.com + + ruleset + + name + sptag1.com + rule + + from + ^http://(www\.)?sptag1\.com/ + to + https://$1sptag1.com/ + + securecookie + + host + ^(?:www\.)?sptag1\.com$ + name + .+ + + target + + + host + sptag1.com + + + host + www.sptag1.com + + + + + squarefree.com + + ruleset + + name + squarefree.com + rule + + from + ^http://(www\.)?squarefree\.com/ + to + https://$1squarefree.com/ + + target + + + host + squarefree.com + + + host + www.squarefree.com + + + + + sslcert14.com + + ruleset + + name + sslcert14.com + rule + + from + ^http://([\w-]+\.)?sslcert14\.com/ + to + https://$1sslcert14.com/ + + securecookie + + host + ^(?:.+\.)?sslcert14\.com$ + name + .+ + + target + + + host + sslcert14.com + + + host + *.sslcert14.com + + + + + sslcert19.com + + ruleset + + name + sslcert19.com + rule + + from + ^http://([\w-]+\.)?sslcert19\.com/ + to + https://$1sslcert18.com/ + + securecookie + + host + ^(?:[\w-]*\.)?sslcert19\.com$ + name + .+ + + target + + + host + sslcert19.com + + + host + *.sslcert19.com + + + + + sslcert35.com + + ruleset + + name + sslcert35.com + rule + + + from + ^http://(?:www\.)?sslcert35\.com/(?:\?.*)?$ + to + https://webhosting.att.com/ + + + from + ^http://([\w-]+)\.sslcert35\.com/ + to + https://$1.sslcert35.com/ + + + target + + + host + sslcert35.com + + + host + *.sslcert35.com + + + + + ssldomain.com (partial) + + ruleset + + exclusion + + pattern + ^http://www\. + + name + ssldomain.com (partial) + rule + + from + ^http://([\w-]+)\.ssldomain\.com/ + to + https://$1.ssldomain.com/ + + securecookie + + host + .+\.ssldomain\.com$ + name + .+ + + target + + host + *.ssldomain.com + + + + ssltrust.us (partial) + + ruleset + + name + ssltrust.us (partial) + rule + + from + ^http://test\.ssltrust\.us/ + to + https://test.ssltrust.us/ + + target + + host + test.ssltrust.us + + + + staticmy.com + + ruleset + + name + staticmy.com + rule + + from + ^http://img\.staticmy\.com/ + to + https://img.staticmy.com/ + + target + + host + img.staticmy.com + + + + staticskynet.be + + ruleset + + name + staticskynet.be + rule + + from + ^http://common\.staticskynet\.be/ + to + https://common.staticskynet.be/ + + target + + host + common.staticskynet.be + + + + stgbssint.com + + ruleset + + name + stgbssint.com + rule + + from + ^http://storage\.stgbssint\.com/ + to + https://storage.stgbssint.com/ + + target + + host + storage.stgbssint.com + + + + stormiq.com + + ruleset + + name + stormiq.com + rule + + from + ^http://(js|t1)\.stormiq\.com/ + to + https://$1.stormiq.com/ + + target + + host + *.stormiq.com + + + + stpeter.im + + ruleset + + name + stpeter.im + rule + + from + ^http://(?:(garden\.|mailhost\.)|www\.)?stpeter\.im/ + to + https://$1stpeter.im/ + + target + + + host + stpeter.im + + + host + *.stpeter.im + + + + + strongSwan + + ruleset + + name + strongSwan + rule + + from + ^http://(\w+\.)?strongswan\.org/ + to + https://$1strongswan.org/ + + securecookie + + host + ^(?:.*\.)?strongswan\.org$ + name + .+ + + target + + + host + strongswan.org + + + host + *.strongswan.org + + + + + stunnel.org + + ruleset + + name + stunnel.org + rule + + + from + ^http://stunnel\.org/[^?]*(\?.*)? + to + https://www.stunnel.org/$1 + + + from + ^http://www\.stunnel\.org/ + to + https://www.stunnel.org/ + + + securecookie + + host + ^(?:www\.)?stunnel\.org$ + name + .+ + + target + + + host + stunnel.org + + + host + www.stunnel.org + + + + + subimage (partial) + + ruleset + + name + subimage (partial) + rule + + + from + ^http://(?:www\.)?(?:cashboardapp|getcashboard)\.com/ + to + https://www.cashboardapp.com/ + + + from + ^http://([\w\-]+)\.cashboardapp\.com/ + to + https://$1.cashboardapp.com/ + + + securecookie + + host + ^(.*\.)?cashboardapp\.com$ + name + .* + + target + + + host + cashboardapp.com + + + host + *.cashboardapp.com + + + host + getcashboard.com + + + host + www.getcashboard.com + + + + + suitesmart.com + + ruleset + + name + suitesmart.com + rule + + from + ^http://sensor2\.suitesmart\.com/ + to + https://sensor2.suitesmart.com/ + + target + + host + sensor2.suitesmart.com + + + + superkuh.com + + ruleset + + name + superkuh.com + rule + + from + ^http://(?:www\.)?superkuh\.com/ + to + https://www.superkuh.com/ + + target + + + host + superkuh.com + + + host + www.superkuh.com + + + + + sure-assist.com + + ruleset + + name + sure-assist.com + rule + + + from + ^http://(?:www\.)?sure-assist\.com/ + to + https://www.sure-assist.com/ + + + from + ^http://cdn(?:\d|10)\.sure-assist\.com/ + to + https://d16b15zfg5s2bm.cloudfront.net/ + + + securecookie + + host + ^(?:www)?\.sure-assist\.com$ + name + .+ + + target + + + host + sure-assist.com + + + host + *.sure-assist.com + + + + + svtrd.com + + ruleset + + name + svtrd.com + rule + + from + ^http://s\.svtrd\.com/ + to + https://s.svtrd.com/ + + target + + host + s.svtrd.com + + + + swisslinsen.ch + + ruleset + + name + swisslinsen.ch + rule + + from + ^http://(www\.)?swisslinsen\.ch/ + to + https://$1swisslinsen.ch/ + + securecookie + + host + ^\.swisslinsen\.ch$ + name + .+ + + target + + + host + swisslinsen.ch + + + host + *.swisslinsen.ch + + + + + switch.ch + + ruleset + + name + switch.ch + rule + + from + ^http://((?:help|traffic\.lan|nic|portal|security|wayf|www|cms\.www|misc\.www)\.)?switch\.ch/ + to + https://$1switch.ch/ + + securecookie + + host + ^\.switch\.ch$ + name + .+ + + target + + + host + switch.ch + + + host + *.switch.ch + + + + + switchplus.ch + + ruleset + + name + switchplus.ch + rule + + + from + ^http://(?:www\.)?switchplus\.ch/ + to + https://www.switchplus.ch/ + + + from + ^http://app\.switchplus\.ch/ + to + https://app.switchplus.ch/ + + + securecookie + + host + ^www\.switchplus\.ch$ + name + .+ + + target + + + host + switchplus.ch + + + host + *.switchplus.ch + + + + + swordfishdc.com + + ruleset + + name + swordfishdc.com + rule + + + from + ^http://(?:www\.)?swordfishdc\.com/ + to + https://customer.innometrics.com/ + + + from + ^http://media\.swordfishdc\.com/ + to + https://a248.e.akamai.net/f/1985/671/7m/media.swordfishdc.com/ + + + target + + + host + swordfishdc.com + + + host + *.swordfishdc.com + + + + + swtor.com (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?swtor\.com/(?!user) + + name + swtor.com (partial) + rule + + from + ^http://(?:account\.|www\.)?swtor\.com/ + to + https://account.swtor.com/ + + securecookie + + host + ^\.account\.swtor\.com$ + name + .+ + + target + + + host + swtor.com + + + host + *.swtor.com + + + + + symlynX + + ruleset + + name + symlynX + rule + + from + ^http://(extra\.|(?:www\.))?symlynx\.com/ + to + https://$1symlynx.com/ + + target + + + host + symlynx.com + + + host + *.symlynx.com + + + + + synovite-scripts.com + + ruleset + + name + synovite-scripts.com + rule + + from + ^http://ssl\.synovite-scripts\.com/ + to + https://ssl.synovite-scripts.com/ + + target + + host + ssl.synovite-scripts.com + + + + sys4.de + + ruleset + + name + sys4.de + rule + + from + ^http://(blog\.|www\.)?sys4\.de/ + to + https://$1sys4.de/ + + target + + + host + sys4.de + + + host + *.sys4.de + + + + + sysmocom.de (CAcert, partial) + + ruleset + + name + sysmocom.de (CAcert, partial) + platform + cacert + rule + + + from + ^http://sysmocom\.de/ + to + https://www.sysmocom.de/ + + + from + ^http://(piwik|www)\.sysmocom\.de/ + to + https://$1.sysmocom.de/ + + + from + ^http://shop\.sysmocom\.de/(assets|checkout|images|login|stylesheets) + to + https://shop.sysmocom.de/$1 + + + target + + + host + sysmocom.de + + + host + shop.sysmocom.de + + + host + piwik.sysmocom.de + + + host + www.sysmocom.de + + + + + sysprovide (partial) + + ruleset + + name + sysprovide (partial) + platform + mixedcontent + rule + + + from + ^http://(srv|webmail)(\d\d)\.sysproserver\.de/ + to + https://$1$2.sysproserver.de/ + + + from + ^http://(www\.)?sysprovide\.de/ + to + https://$1sysprovide.de/ + + + securecookie + + + host + .*\.sysproserver\.de$ + name + .* + + + host + ^www\.sysprovide\.de$ + name + .* + + + target + + + host + *.sysproserver.de + + + host + sysprovide.de + + + host + www.sysprovide.de + + + + + t3.io + + ruleset + + name + t3.io + rule + + from + ^http://(www\.)?t3\.io/ + to + https://$1t3.io/ + + securecookie + + host + ^\.t3\.io$ + name + .+ + + target + + + host + t3.io + + + host + *.t3.io + + + + + tagesschau.de (partial) + + ruleset + + name + tagesschau.de (partial) + rule + + + from + ^http://(?:www\.)?tagesschau\.de/ + to + https://www.tagesschau.de/ + + + from + ^http://(meta|wahl|wetter)\.tagesschau\.de/ + to + https://$1.tagesschau.de/ + + + target + + + host + tagesschau.de + + + host + *.tagesschau.de + + + + + tal.de + + ruleset + + name + tal.de + rule + + from + ^http://(api|backup|mysql\d\d|service|webmail|winbackup|xvp)\.tal\.de/ + to + https://$1.tal.de/ + + securecookie + + host + ^(api|backup|mysql\d\d|service|webmail|winbackup|xvp)\.tal\.de$ + name + .+ + + target + + + host + tal.de + + + host + *.tal.de + + + + + techstats.net + + ruleset + + name + techstats.net + rule + + from + ^http://affiliate\.techstats\.net/ + to + https://affiliate.techstats.net/ + + target + + host + affiliate.techstats.net + + + + tecnocode.co.uk + + ruleset + + name + tecnocode.co.uk + rule + + from + ^http://(www\.)?tecnocode\.co\.uk/ + to + https://$1tecnocode.co.uk/ + + target + + + host + tecnocode.co.uk + + + host + www.tecnocode.co.uk + + + + + tele-TASK + + ruleset + + name + tele-TASK + rule + + + from + ^http://tele-task\.de/[^\?]*(\?.*)? + to + https://www.tele-task.de/$1 + + + from + ^http://www\.tele-task\.de/ + to + https://www.tele-task.de/ + + + target + + + host + tele-task.de + + + host + www.tele-task.de + + + + + tendatta.com + + ruleset + + name + tendatta.com + rule + + from + ^http://(go\.)?tendatta\.com/ + to + https://$1tendatta.com/ + + target + + + host + tendatta.com + + + host + go.tendatta.com + + + + + terreActive + + ruleset + + name + terreActive + rule + + from + ^http://(www\.)?terreactive\.ch/ + to + https://www.terreactive.ch/ + + target + + + host + www.terreactive.ch + + + host + terreactive.ch + + + + + tersee + + ruleset + + name + tersee + rule + + from + ^http://([^/:@]+\.)?tersee\.com/ + to + https://$1tersee.com/ + + securecookie + + host + ^(.+\.)?tersee\.com$ + name + .* + + target + + + host + tersee.com + + + host + *.tersee.com + + + + + test + + ruleset + + name + test + rule + + from + ^http://www\.test\.de/ + to + https://www.test.de/ + + target + + host + www.test.de + + + + testCloud.io (partial) + + ruleset + + name + testCloud.io (partial) + rule + + + from + ^http://((?:app|cdn\d|staticcdn|tester|www)\.)?testcloud\.de/ + to + https://$1testcloud.de/ + + + from + ^http://((?:app|tester|www)\.)?testcloud\.io/ + to + https://$1testcloud.io/ + + + from + ^http://(app\.|www\.)?thetestcloud\.com/ + to + https://$1thetestcloud.com/ + + + securecookie + + host + ^\.(?:the)?testcloud\.(?:com|de|io)$ + name + .+ + + target + + + host + testcloud.de + + + host + *.testcloud.de + + + host + testcloud.io + + + host + *.testcloud.io + + + host + *.thetestcloud.com + + + + + tgknt.com + + ruleset + + name + tgknt.com + rule + + from + ^http://c\.tgknt\.com/ + to + https://c.tgknt.com/ + + target + + host + c.tgknt.com + + + + tgthr.com + + ruleset + + name + tgthr.com + rule + + + from + ^http://tgthr\.crbuildsite\.com/ + to + https://tgthr.com/ + + + from + ^http://(www\.)?tgthr\.com/ + to + https://$1tgthr.com/ + + + securecookie + + host + ^(?:w*\.)?tgthr\.com$ + name + .+ + + target + + + host + tgthr.crbuildsite.com + + + host + tgthr.com + + + host + *.tgthr.com + + + + + thaipicpost.info + + ruleset + + name + thaipicpost.info + rule + + from + ^http://(sv\d\.|www\.)?thaipicpost\.info/ + to + https://$1thaipicpost.info/ + + securecookie + + host + ^\.thaipicpost\.info$ + name + .+ + + target + + + host + thaipicpost.info + + + host + *.thaipicpost.info + + + + + thankyou4caring.org + + ruleset + + name + thankyou4caring.org + rule + + from + ^http://(\w+)\.thankyou4caring\.org/ + to + https://$1.thankyou4caring.org/ + + securecookie + + host + ^\w+\.thankyou4caring\.org$ + name + .+ + + target + + host + *.thankyou4caring.org + + + + thePlatform (partial) + + ruleset + + exclusion + + pattern + ^http://help\.theplatform\.com/(?!login(?:$|\?|/)) + + name + thePlatform (partial) + rule + + from + ^http://(feed|help|mps|pdk|player|release)\.theplatform\.com/ + to + https://$1.theplatform.com/ + + securecookie + + host + ^(?:mps|release)\.theplatform\.com$ + name + .+ + + target + + host + *.theplatform.com + + + + thehabbos.org + + ruleset + + name + thehabbos.org + rule + + from + ^http://thehabbos\.org/ + to + https://thehabbos.org/ + + target + + host + thehabbos.org + + + + thephone.coop (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?thephone\.coop/(?!css/|favicon\.ico|images/|media/|scripts/) + + name + thephone.coop (partial) + rule + + from + ^http://((?:my|order|plesk2|www)\.)?thephone\.coop/ + to + https://$1thephone.coop/ + + target + + + host + thephone.coop + + + host + *.thephone.coop + + + + + thespringbox.com + + ruleset + + name + thespringbox.com + rule + + from + ^http://downloads\.thespringbox\.com/ + to + https://a248.e.akamai.net/f/902/3660/1d/downloads.thespringbox.com/ + + target + + host + downloads.thespringbox.com + + + + thing.net (false MCB) + + ruleset + + name + thing.net (false MCB) + platform + mixedcontent + rule + + from + ^http://editions\.thing\.net/ + to + https://editions.thing.net/ + + target + + host + editions.thing.net + + + + thing.net (partial) + + ruleset + + name + thing.net (partial) + rule + + from + ^http://((?:editions|isp|mailman|the|thingist|webmail|www)\.)?thing\.net/ + to + https://$1thing.net/ + + target + + + host + thing.net + + + host + *.thing.net + + + + + thp.io + + ruleset + + name + thp.io + rule + + from + ^http://(?:www\.)?thp\.io/ + to + https://thp.io/ + + target + + + host + thp.io + + + host + www.thp.io + + + + + ticketnet.fr (partial) + + ruleset + + name + ticketnet.fr (partial) + rule + + from + ^https?://(?:www\.)?ticketnet\.fr/(assets|static)/ + to + https://www.ticketnet.fr/$1/ + + target + + + host + ticketnet.fr + + + host + www.ticketnet.fr + + + + + tidaltv.com (partial) + + ruleset + + name + tidaltv.com (partial) + rule + + from + ^http://set\.tidaltv\.com/ + to + https://set.tidaltv.com/ + + securecookie + + host + ^\.tidaltv\.com$ + name + .+ + + target + + host + *.tidaltv.com + + + + tinyteenpass.com + + ruleset + + name + tinyteenpass.com + rule + + from + ^http://(www\.)?tinyteenpass\.com/ + to + https://$1tinyteenpass.com/ + + target + + + host + tinyteenpass.com + + + host + www.tinyteenpass.com + + + + + tldrio + + ruleset + + name + tldrio + rule + + from + ^http://tldr\.io/ + to + https://tldr.io/ + + target + + host + tldr.io + + + + tn123.org + + ruleset + + name + tn123.org + rule + + from + ^http://(www\.)?tn123\.org/ + to + https://$1tn123.org/ + + target + + + host + tn123.org + + + host + www.tn123.org + + + + + tns-counter.ru + + ruleset + + name + tns-counter.ru + rule + + from + ^http://(www\.)?tns-counter\.ru/ + to + https://$1tns-counter.ru/ + + securecookie + + host + ^\.tns-counter\.ru$ + name + .* + + target + + + host + tns-counter.ru + + + host + *.tns-counter.ru + + + + + tony.xyz + + ruleset + + name + tony.xyz + rule + + from + ^http://(?:www\.)?tony\.xyz/ + to + https://tony.xyz/ + + target + + + host + tony.xyz + + + host + www.tony.xyz + + + + + toonpool.com (partial) + + ruleset + + name + toonpool.com (partial) + rule + + from + ^http://shop\.toonpool\.com/ + to + https://shop.toonpool.com/ + + target + + host + shop.toonpool.com + + + + top.de + + ruleset + + name + top.de + rule + + + from + ^http://(?:(sec-i\.)|www\.)?top\.de/ + to + https://$1top.de/ + + + from + ^http://i0\.top\.de/ + to + https://a248.e.akamai.net/f/1961/8755/1m/i0.top.de/ + + + from + ^http://i1\.top\.de/ + to + https://a248.e.akamai.net/f/908/5274/9m/i1.top.de/ + + + from + ^http://i2\.top\.de/ + to + https://a248.e.akamai.net/f/229/1272/7m/i2.top.de/ + + + securecookie + + host + ^top\.de$ + name + .+ + + target + + + host + top.de + + + host + *.top.de + + + + + towelroot + + ruleset + + name + towelroot + rule + + from + ^http://(?:www\.)?towelroot\.com/ + to + https://towelroot.com/ + + target + + + host + towelroot.com + + + host + *.towelroot.com + + + + + tradepub.com (partial) + + ruleset + + name + tradepub.com (partial) + rule + + + from + ^http://(?:www\.)?tradepub\.com/(?=body_styles\.css|c/|data/|favicon\.ico) + to + https://www.tradepub.com/ + + + from + ^http://(cts|nl-marketing)\.tradepub\.com/ + to + https://$1.tradepub.com/ + + + from + ^http://img\.tradepub\.com/ + to + https://netline.cachefly.net/ + + + target + + + host + tradepub.com + + + host + *.tradepub.com + + + + + trafficmaxx (partial) + + ruleset + + name + trafficmaxx (partial) + rule + + from + ^http://(s3\.|www\.)?trafficmaxx\.de/ + to + https://$1trafficmaxx.de/ + + securecookie + + host + ^.*\.traffixmaxx\.de$ + name + .* + + target + + + host + trafficmaxx.de + + + host + *.trafficmaxx.de + + + + + trakk247.com + + ruleset + + name + trakk247.com + rule + + from + ^http://(www\.)?trakk247\.com/ + to + https://$1trakk247.com/ + + target + + + host + trakk247.com + + + host + www.trakk247.com + + + + + transformationmadeeasy.com (partial) + + ruleset + + name + transformationmadeeasy.com (partial) + rule + + from + ^http://(?:www\.)?(?:ask-inc|transformationmadeeasy)\.com/ + to + https://www.transformationmadeeasy.com/ + + target + + + host + ask-inc.com + + + host + www.ask-inc.com + + + host + transformationmadeeasy.com + + + host + www.transformationmadeeasy.com + + + + + trappedinsidethecomputer.net (partial) + + ruleset + + name + trappedinsidethecomputer.net (partial) + rule + + from + ^http://vishakeswwwabcde\.trappedinsidethecomputer\.net/ + to + https://vishakeswwwabcde.trappedinsidethecomputer.net/ + + securecookie + + host + ^vishakeswwwabcde\.trappedinsidethecomputer\.net$ + name + .+ + + target + + host + vishakeswwwabcde.trappedinsidethecomputer.net + + + + trash.net (partial) + + ruleset + + name + trash.net (partial) + platform + cacert + rule + + from + ^http://your\.trash\.net/ + to + https://your.trash.net/ + + target + + host + your.trash.net + + + + traxarmstrong.com + + ruleset + + name + traxarmstrong.com + rule + + from + ^http://(?:www\.)?traxarmstrong\.com/ + to + https://traxarmstrong.com/ + + target + + + host + traxarmstrong.com + + + host + www.traxarmstrong.com + + + + + trgt.eu + + ruleset + + name + trgt.eu + rule + + from + ^http://cdn\.trgt\.eu/ + to + https://cdn.trgt.eu/ + + target + + host + cdn.trgt.eu + + + + tribalhosting.net + + ruleset + + name + tribalhosting.net + rule + + from + ^http://(assets\.|www\.)?tribalhosting\.net/ + to + https://$1tribalhosting.net/ + + target + + + host + tribalhosting.net + + + host + *.tribalhosting.net + + + + + tripbod.com (partial) + + ruleset + + name + tripbod.com (partial) + rule + + from + ^http://(www\.)?tripbod\.com/(?=(?:\w\w/)?beatripbod(?:$|[?/])|favicon\.ico|img/|js/|min/) + to + https://$1tripbod.com/ + + target + + + host + tripbod.com + + + host + www.tripbod.com + + + + + trkclk.net + + ruleset + + name + trkclk.net + rule + + + from + ^http://ads\.trkclk\.net/ + to + https://ads.adk2.com/ + + + from + ^http://cdn\.trkclk\.net/ + to + https://d3vg9hiogk70qz.cloudfront.net/ + + + target + + host + *.trkclk.net + + + + troveread.com + + ruleset + + name + troveread.com + rule + + + from + ^http://troveread\.com/.* + to + https://socialreader.com/ + + + from + ^http://s\.troveread\.com/ + to + https://dizqy8916g7hx.cloudfront.net/ + + + target + + + host + troveread.com + + + host + s.troveread.com + + + + + truenudists.com + + ruleset + + name + truenudists.com + rule + + + from + ^http://(www\.)?truenudists\.com/ + to + https://$1truenudists.com/ + + + from + ^https?://cdn\.css\.truenudists\.com/ + to + https://cdncss-socialcomediallc.netdna-ssl.com/ + + + from + ^https?://cdn\.image\.truenudists\.com/ + to + https://cdnimg-socialcomediallc.netdna-ssl.com/ + + + securecookie + + + host + ^cdncss-socialcomediallc\.netdna-ssl\.com$ + name + .* + + + host + ^www\.truenudists\.com$ + name + .* + + + target + + + host + cdncss-socialcomediallc.netdna-ssl.com + + + host + truenudists.com + + + host + cdn.*.truenudists.com + + + host + www.truenudists.com + + + + + trulia-cdn.com + + ruleset + + name + trulia-cdn.com + rule + + from + ^http://(css|static)\.trulia-cdn\.com/ + to + https://a248.e.akamai.net/f/176/831/8m/$1.trulia-cdn.com/ + + target + + host + *.trulia-cdn.com + + + + tvsupport.net + + ruleset + + name + tvsupport.net + rule + + from + ^http://(help\.|www\.)?tvsupport\.net/ + to + https://$1tvsupport.net/ + + securecookie + + host + ^(?:help\.|w*\.)?tvsupport\.net$ + name + .+ + + target + + + host + tvsupport.net + + + host + *.tvsupport.net + + + + + twiant.com + + ruleset + + name + twiant.com + rule + + from + ^http://(www\.)?twiant\.com/ + to + https://$1twiant.com/ + + target + + + host + twiant.com + + + host + www.twiant.com + + + + + twisp.me + + ruleset + + name + twisp.me + rule + + from + ^http://(www\.)?twisp\.me/ + to + https://$1twisp.me/ + + securecookie + + host + ^(?:w*\.)?twisp\.me$ + name + .+ + + target + + + host + twisp.me + + + host + *.twisp.me + + + + + uClinics + + ruleset + + name + uClinics + rule + + from + ^http://(app\.|static\.|www\.)?uclinics\.com/ + to + https://$1uclinics.com/ + + securecookie + + host + ^(?:app)?\.uclinics\.com$ + name + .+ + + target + + + host + uclinics.com + + + host + *.uclinics.com + + + + + uMonitor + + ruleset + + name + uMonitor + rule + + + from + ^http://(?:www\.)?umonitor\.com/ + to + https://www.umonitor.com/ + + + from + ^http://onelink\.umonitor\.com/ + to + https://onelink.umonitor.com/ + + + securecookie + + host + ^.*\.umonitor\.com$ + name + .* + + target + + + host + umonitor.com + + + host + *.umonitor.com + + + + + uPatient + + ruleset + + name + uPatient + rule + + from + ^http://(app\.|www\.)?upatient\.com/ + to + https://$1upatient.com/ + + securecookie + + host + ^(?:app)?\.upatient\.com$ + name + .+ + + target + + + host + upatient.com + + + host + *.upatient.com + + + + + uProxy.org + + ruleset + + name + uProxy.org + rule + + from + ^http://(www\.)?uproxy\.org/ + to + https://$1uproxy.org/ + + securecookie + + host + ^\.uproxy\.org$ + name + .+ + + target + + + host + uproxy.org + + + host + *.uproxy.org + + + + + uVPN + + ruleset + + name + uVPN + rule + + from + ^http://(?:www\.)?uvpn\.de/ + to + https://uvpn.de/ + + securecookie + + host + ^(?:www\.)?uvpn\.de$ + name + .+ + + target + + + host + uvpn.de + + + host + www.uvpn.de + + + + + ucommand.com + + ruleset + + name + ucommand.com + rule + + from + ^http://www\.ucommand\.com/ + to + https://www.ucommand.com/ + + securecookie + + host + ^www\.ucommand\.com$ + name + .+ + + target + + host + www.ucommand.com + + + + uhhospitals.org (partial) + + ruleset + + name + uhhospitals.org (partial) + rule + + from + ^http://(www\.)?uhhospitals\.org/(_cassette/|favicon\.ico|(?:.+/)?~/media/) + to + https://$1uhhospitals.org/$2 + + target + + + host + uhhospitals.org + + + host + www.uhhospitals.org + + + + + uhub + + ruleset + + name + uhub + rule + + from + ^http://(www\.)?uhub\.org/ + to + https://$1uhub.org/ + + securecookie + + host + ^(?:www\.)?uhub\.org$ + name + .+ + + target + + + host + uhub.org + + + host + www.uhub.org + + + + + ukeer.de (partial) + + ruleset + + name + ukeer.de (partial) + rule + + from + ^http://webmail\.ukeer\.de/ + to + https://webmail.ukeer.de/ + + target + + host + webmail.ukeer.de + + + + uksrv.co.uk + + ruleset + + name + uksrv.co.uk + rule + + + from + ^http://ceres\.uksrv\.co\.uk(:2087)?/ + to + https://ceres.uksrv.co.uk$1/ + + + from + ^http://eris\.uksrv\.co\.uk(:2096)?/ + to + https://eris.uksrv.co.uk$1/ + + + from + ^http://pluto\.uksrv\.co\.uk/ + to + https://pluto.uksrv.co.uk/ + + + securecookie + + host + .+\.uksrv\.co\.uk$ + name + .+ + + target + + host + *.uksrv.co.uk + + + + unPAC + + ruleset + + name + unPAC + rule + + from + ^http://(www\.)?unpac\.org/ + to + https://$1unpac.org/ + + securecookie + + host + ^www\.unpac\.org$ + name + .+ + + target + + + host + unpac.org + + + host + www.unpac.org + + + + + universityadmissions.se + + ruleset + + name + universityadmissions.se + rule + + from + ^http://(?:www\.)?universityadmissions\.se/ + to + https://www.universityadmissions.se/ + + securecookie + + host + ^www\.universityadmissions.se$ + name + .+ + + target + + + host + universityadmissions.se + + + host + www.universityadmissions.se + + + + + unrestrict.li + + ruleset + + name + unrestrict.li + rule + + from + ^http://(www\.)?unr(estrict)?\.li/ + to + https://$1unr$2.li/ + + securecookie + + host + ^\.unr(?:estrict)?\.li$ + name + .+ + + target + + + host + unr.li + + + host + *.unr.li + + + host + unrestrict.li + + + host + *.unrestrict.li + + + + + unthem + + ruleset + + name + unthem + rule + + from + ^http://api\.unthem\.com/ + to + https://api.unthem.com/ + + target + + host + api.unthem.com + + + + upSploit.com + + ruleset + + name + upSploit.com + rule + + from + ^http://(www\.)?upsploit\.com/ + to + https://$1upsploit.com/ + + securecookie + + host + ^\.upsploit\.com$ + name + .+ + + target + + + host + upsploit.com + + + host + *.upsploit.com + + + + + upic.me (partial) + + ruleset + + exclusion + + pattern + ^http://upic\.me/+(?!count/|favicon\.ico|i/|images/|js/|jsgzip/|skins/|t/|tw/i/) + + name + upic.me (partial) + rule + + from + ^http://(?:th\.|(www\.))?upic\.me/ + to + https://$1upic.me/ + + securecookie + + host + ^\.upic\.me$ + name + ^__utm\w + + target + + + host + upic.me + + + host + *.upic.me + + + + + uploaded.net (partial) + + ruleset + + name + uploaded.net (partial) + rule + + from + ^http://(www\.)?uploaded\.net/ + to + https://$1uploaded.net/ + + securecookie + + host + ^uploaded\.net$ + name + .+ + + target + + + host + uploaded.net + + + host + www.uploaded.net + + + + + upx69.com + + ruleset + + name + upx69.com + rule + + from + ^http://(www\.)?upx69\.com/ + to + https://$1upx69.com/ + + securecookie + + host + ^(?:w*\.)?upx69\.com$ + name + .+ + + target + + + host + upx69.com + + + host + *.upx69.com + + + + + urlQuery + + ruleset + + name + urlQuery + rule + + from + ^https?://(?:www\.)?urlquery\.net/ + to + https://urlquery.net/ + + securecookie + + host + ^urlquery\.net$ + name + .+ + + target + + + host + urlquery.net + + + host + www.urlquery.net + + + + + urlaubspiraten + + ruleset + + name + urlaubspiraten + rule + + from + ^http://(www\.)?urlaubspiraten\.de/ + to + https://www.urlaubspiraten.de/ + + target + + + host + urlaubspiraten.de + + + host + www.urlaubspiraten.de + + + + + usainteanne + + ruleset + + name + usainteanne + rule + + + from + ^http://(www\.)?usainteanne\.ca/ + to + https://www.usainteanne.ca/ + + + from + ^http://webmail\.usainteanne\.ca/ + to + https://webmail.usainteanne.ca/ + + + from + ^http://smtp\.usainteanne\.ca/ + to + https://smtp.usainteanne.ca/ + + + from + ^http://moodle\.usainteanne\.ca/ + to + https://moodle.usainteanne.ca/ + + + from + ^http://alu\.usainteanne\.ca/ + to + https://alu.usainteanne.ca/ + + + target + + + host + usainteanne.ca + + + host + www.usainteanne.ca + + + host + webmail.usainteanne.ca + + + host + smtp.usainteanne.ca + + + host + moodle.usainteanne.ca + + + host + alu.usainteanne.ca + + + + + userfox + + ruleset + + name + userfox + rule + + + from + ^http://(?:www\.)?userfox\.com/ + to + https://www.userfox.com/ + + + from + ^http://(app|manage)\.userfox\.com/ + to + https://$1.userfox.com/ + + + from + ^http://static\.userfox\.com/ + to + https://d2y71mjhnajxcg.cloudfront.net/ + + + securecookie + + host + ^app\.userfox\.com$ + name + .+ + + target + + + host + userfox.com + + + host + *.userfox.com + + + + + ushmm.org + + ruleset + + name + ushmm.org + rule + + from + ^http://(?:www\.)?ushmm\.org/ + to + https://ushmm.org/ + + securecookie + + host + ^ushmm\.org$ + name + .+ + + target + + + host + ushmm.org + + + host + www.ushmm.org + + + + + utfs.org (partial) + + ruleset + + name + utfs.org (partial) + platform + cacert + rule + + from + ^http://trent\.trent\.org/ + to + https://trent.utfs.org/ + + target + + host + trent.utfs.org + + + + v-identity.com + + ruleset + + name + v-identity.com + rule + + + from + ^http://(?:www\.)?v-identity\.com/ + to + https://www.v-identity.com/ + + + from + ^http://cdn\.v-identity\.com/ + to + https://cdn.v-identity.com/ + + + target + + + host + v-identity.com + + + host + *.v-identity.com + + + + + v.gd + + ruleset + + name + v.gd + rule + + from + ^http://v\.gd/ + to + https://v.gd/ + + securecookie + + host + v\.gd$ + name + .* + + target + + host + v.gd + + + + v2ex (partial) + + ruleset + + name + v2ex (partial) + rule + + from + ^http://((?:cdn|workspace|www)\.)?v2ex\.com/ + to + https://$1v2ex.com/ + + securecookie + + host + ^(?:workspace\.|www\.)?v2ex\.com$ + name + .+ + + target + + + host + v2ex.com + + + host + *.v2ex.com + + + + + vBSEO (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?vbseo\.com/(?!clientscript/|(?:cron|css|image)\.php|images/|(?:imag|styl)es_homepage/|register(?:$|\?|/)) + + name + vBSEO (partial) + rule + + from + ^http://(?:cdn\.|(www\.))?vbseo\.com/ + to + https://$1vbseo.com/ + + target + + + host + vbseo.com + + + host + www.vbseo.com + + + + + vBulletin + + ruleset + + name + vBulletin + rule + + from + ^http://(files\.|members\.|www\.)?vbulletin\.com/ + to + https://$1vbulletin.com/ + + securecookie + + host + ^(?:.*\.)?vbulletin\.com$ + name + .+ + + target + + + host + vbulletin.com + + + host + *.vbulletin.com + + + + + vacenza.com (partial) + + ruleset + + name + vacenza.com (partial) + rule + + + from + ^https?://(?:www\.)?vacenza.com/([cC]ontent/|account/signin) + to + https://www.vacenza.com/$1 + + + from + ^http://tracking\.vacenza\.com/ + to + https://tracking.vacenza.com/ + + + target + + + host + vacenza.com + + + host + *.vacenza.com + + + + + vedphoto.com (partial) + + ruleset + + name + vedphoto.com (partial) + rule + + from + ^http://(?:www\.)?vedphoto\.com/(img|zf/photo)/ + to + https://a248.e.akamai.net/f/1428/3422/3f/www.vedphoto.com/$1/ + + target + + + host + vedphoto.com + + + host + www.vedphoto.com + + + + + vektorbank.com + + ruleset + + name + vektorbank.com + rule + + from + ^http://(www\.)?vektorbank\.com/ + to + https://$1vektorbank.com/ + + securecookie + + host + ^\.vektorbank\.com$ + name + .+ + + target + + + host + vektorbank.com + + + host + *.vektorbank.com + + + + + vexxhost.com (partial) + + ruleset + + name + vexxhost.com (partial) + rule + + from + ^http://secure\.vexxhost\.com/ + to + https://secure.vexxhost.com/ + + securecookie + + host + ^secure\.vexxhost\.com$ + name + .+ + + target + + host + secure.vexxhost.com + + + + vhf (partial) + + ruleset + + name + vhf (partial) + platform + mixedcontent + rule + + from + ^http://shop\.vhf\.de/ + to + https://shop.vhf.de/ + + target + + host + shop.vhf.de + + + + viaForensics.com + + ruleset + + name + viaForensics.com + rule + + from + ^http://(www\.)?viaforensics\.com/ + to + https://$1viaforensics.com/ + + target + + + host + viaforensics.com + + + host + www.viaforensics.com + + + + + virt-manager.org + + ruleset + + name + virt-manager.org + rule + + from + ^http://(www\.)?virt-manager\.org/ + to + https://$1virt-manager.org/ + + target + + + host + virt-manager.org + + + host + www.virt-manager.org + + + + + virtualearth.net + + ruleset + + name + virtualearth.net + rule + + from + ^http://(dev|ecn\.(?:dev|t\d\.tiles)|api\.tiles|venuemaps)\.virtualearth\.net/ + to + https://$1.virtualearth.net/ + + securecookie + + host + ^.*\.virtualearth\.net$ + name + .+ + + target + + host + *.virtualearth.net + + + + vn5socks.com + + ruleset + + name + vn5socks.com + rule + + from + ^http://(www\.)?vn5socks\.com/ + to + https://$1vn5socks.com/ + + securecookie + + host + ^www\.vn5socks\.com$ + name + .+ + + target + + + host + vn5socks.com + + + host + www.vn5socks.com + + + + + voterVOICE + + ruleset + + name + voterVOICE + platform + mixedcontent + rule + + from + ^http://(?:www\.)?votervoice\.net/ + to + https://www.votervoice.net/ + + target + + + host + votervoice.net + + + host + www.votervoice.net + + + + + vpnbook.com + + ruleset + + name + vpnbook.com + rule + + + from + ^http://(?:www\.)?vpnbook\.com/ + to + https://www.vpnbook.com/ + + + from + ^http://webproxy\.vpnbook\.com/ + to + https://webproxy.vpnbook.com/ + + + securecookie + + host + ^(?:webproxy)?\.vpnbook\.com$ + name + .+ + + target + + + host + vpnbook.com + + + host + *.vpnbook.com + + + + + vpsBoard.com + + ruleset + + name + vpsBoard.com + rule + + from + ^http://(www\.)?vpsboard\.com/ + to + https://$1vpsboard.com/ + + securecookie + + host + ^(?:www\.)?vpsboard\.com$ + name + .+ + + target + + + host + vpsboard.com + + + host + www.vpsboard.com + + + + + vsearch2.net + + ruleset + + name + vsearch2.net + rule + + from + ^http://(www\.)?vsearch2\.net/ + to + https://$1vsearch2.net/ + + securecookie + + host + ^vsearch2\.net$ + name + .+ + + target + + + host + vsearch2.net + + + host + www.vsearch2.net + + + + + vsexshop.ru (partial) + + ruleset + + name + vsexshop.ru (partial) + rule + + from + ^http://(?:[lm]\.vimgs|vsexshop)\.ru/images/ + to + https://vsexshop.ru/images/ + + target + + + host + *.vimgs.ru + + + host + vsexshop.ru + + + + + vwd services.com (partial) + + ruleset + + name + vwd services.com (partial) + rule + + from + ^http://charting\.vwdservices\.com/ + to + https://charting.vwdservices.com/ + + target + + host + charting.vwdservices.com + + + + vzaar (partial) + + ruleset + + name + vzaar (partial) + rule + + + from + ^http://(www\.)?vzaar\.com/(blog/|favicon\.ico$|help/|images/|login$|stylesheets/) + to + https://vzaar.com/$2 + + + from + ^http://(assets[12]|framegrabs|mtoza|resources|view)\.vzaar\.com/ + to + https://$1.vzaar.com/ + + + from + ^http://static\.vzaar\.com/ + to + https://s3.amazonaws.com/static.vzaar.com/ + + + securecookie + + host + ^view\.vzaar\.com$ + name + .+ + + target + + + host + vzaar.com + + + host + *.vzaar.com + + + + + w00tads.com + + ruleset + + name + w00tads.com + rule + + from + ^http://(delivery\.|www\.)?w00tads\.com/ + to + https://$1w00tads.com/ + + target + + + host + w00tads.com + + + host + *.w00tads.com + + + + + walkit.com + + ruleset + + name + walkit.com + platform + mixedcontent + rule + + from + ^http://(www\.)?walkit\.com/ + to + https://walkit.com/ + + target + + + host + walkit.com + + + host + www.walkit.com + + + + + warosu.org + + ruleset + + name + warosu.org + rule + + from + ^http://(www\.)?warosu\.org/ + to + https://$1warosu.org/ + + securecookie + + host + ^\.warosu\.org$ + name + .+ + + target + + + host + warosu.org + + + host + *.warosu.org + + + + + wayskinny.com + + ruleset + + name + wayskinny.com + rule + + from + ^http://(www\.)?wayskinny\.com/ + to + https://$1wayskinny.com/ + + securecookie + + host + ^\.?wayskinny\.com$ + name + .+ + + target + + + host + wayskinny.com + + + host + *.wayskinny.com + + + + + web-hosting.com (partial) + + ruleset + + name + web-hosting.com (partial) + rule + + + from + ^http://(support\.|www\.)?web-hosting\.com/ + to + https://$1web-hosting.com/ + + + from + ^http://kb\.web-hosting\.com/ + to + https://web-hosting.simplekb.com/ + + + securecookie + + host + ^support\.web-hosting\.com$ + name + .+ + + target + + + host + web-hosting.com + + + host + *.web-hosting.com + + + + + web-registry.com + + ruleset + + name + web-registry.com + rule + + from + ^http://(www\.)?web-registry\.com/ + to + https://web-registry.com/ + + target + + + host + web-registry.com + + + host + www.web-registry.com + + + + + web-services.com.au + + ruleset + + name + web-services.com.au + rule + + from + ^http://s(\d+)\.web-servers\.com\.au/ + to + https://s$1.web-servers.com.au/ + + securecookie + + host + .*\.web-servers\.com\.au$ + name + .+ + + target + + host + *.web-servers.com.au + + + + web-stat.com + + ruleset + + name + web-stat.com + rule + + from + ^http://(server[234]\.|www\.)?web-stat\.com/ + to + https://$1web-stat.com/ + + target + + + host + web-stat.com + + + host + *.web-stat.com + + + + + webcompat.com + + ruleset + + name + webcompat.com + rule + + from + ^http://(www\.)?webcompat\.com/ + to + https://$1webcompat.com/ + + target + + + host + webcompat.com + + + host + www.webcompat.com + + + + + webcontrolcenter.com + + ruleset + + name + webcontrolcenter.com + rule + + from + ^http://([\w-]+\.)?webcontrolcenter\.com/ + to + https://$1webcontrolcenter.com/ + + securecookie + + host + ^(?:.+\.)?webcontrolcenter\.com$ + name + .+ + + target + + + host + webcontrolcenter.com + + + host + *.webcontrolcenter.com + + + + + webfusion (partial) + + ruleset + + name + webfusion (partial) + rule + + + from + ^http://(www\.)?webfusion(-support)?\.co\.uk/ + to + https://$1webfusion$2.co.uk/ + + + from + ^http://fusion\.webfusion-secure\.co\.uk/ + to + https://fusion.webfusion-secure.co.uk/ + + + securecookie + + host + ^www\.webfusion\.co\.uk$ + name + .* + + target + + + host + webfusion.co.uk + + + host + www.webfusion.co.uk + + + host + fusion.webfusion-secure.co.uk + + + host + webfusion-support.co.uk + + + host + www.webfusion-support.co.uk + + + + + webhostlist.de + + ruleset + + name + webhostlist.de + rule + + from + ^http://(www\.)?webhostlist\.de/ + to + https://$1webhostlist.de/ + + securecookie + + host + ^(?:www)?\.webhostlist\.de$ + name + .+ + + target + + + host + webhostlist.de + + + host + *.webhostlist.de + + + + + webmagazin.de (partial) + + ruleset + + name + webmagazin.de (partial) + rule + + from + ^http://(www\.)?webmagazin\.de/(?=sites/|(?:cart|jobs|user)(?:$|[?/])) + to + https://$1webmagazin.de/ + + target + + + host + webmagazin.de + + + host + www.webmagazin.de + + + + + websitesettings.com + + ruleset + + name + websitesettings.com + rule + + from + ^http://(www\.)?websitesettings\.com/ + to + https://$1websitesettings.com/ + + securecookie + + host + ^www\.websitesettings\.com$ + name + .+ + + target + + + host + websitesettings.com + + + host + www.websitesettings.com + + + + + webstat.com + + ruleset + + name + webstat.com + rule + + from + ^http://(?:hv3|secure)\.webstat\.com/ + to + https://secure.webstat.com/ + + target + + host + *.webstat.com + + + + webstyle.ch (partial) + + ruleset + + name + webstyle.ch (partial) + rule + + from + ^http://webmail\.webstyle\.ch/ + to + https://webmail.webstyle.ch/ + + target + + host + webmail.webstyle.ch + + + + wellbid.com + + ruleset + + name + wellbid.com + rule + + from + ^http://(static\.|www\.)?wellbid\.com/ + to + https://$1wellbid.com/ + + securecookie + + host + ^(?:w*\.)?wellbid\.com$ + name + .+ + + target + + + host + wellbid.com + + + host + *.wellbid.com + + + + + wemakeprice.com (partial) + + ruleset + + name + wemakeprice.com (partial) + rule + + from + ^http://image\.wemakeprice\.com/ + to + https://image.wemakeprice.com/ + + target + + host + image.wemakeprice.com + + + + wemfbox.ch (partial) + + ruleset + + name + wemfbox.ch (partial) + rule + + from + ^http://(\w+)-ssl\.wemfbox\.ch/ + to + https://$1-ssl.wemfbox.ch/ + + securecookie + + + host + ^\.wemfbox\.ch$ + name + ^i00$ + + + host + ^\w+-ssl\.wemfbox\.ch$ + name + .+ + + + target + + host + *.wemfbox.ch + + + + weoInvoice + + ruleset + + name + weoInvoice + platform + mixedcontent + rule + + from + ^http://(www\.)?weoinvoice\.com/ + to + https://www.weoinvoice.com/ + + target + + + host + www.weoinvoice.com + + + host + weoinvoice.com + + + + + whos.amung.us (partial) + + ruleset + + exclusion + + pattern + ^http://whos\.amung\.us/(?!colorgen/|flash/|pro/login/) + + name + whos.amung.us (partial) + rule + + from + ^http://(asset|who|widget)s\.amung\.us/ + to + https://$1s.amung.us/ + + target + + host + *.amung.us + + + + wilhelm-gym.net + + ruleset + + name + wilhelm-gym.net + rule + + from + ^http://(www\.)?wilhelm-gym\.net/ + to + https://$1wilhelm-gym.net/ + + target + + + host + wilhelm-gym.net + + + host + www.wilhelm-gym.net + + + + + wingolog.org + + ruleset + + name + wingolog.org + rule + + from + ^http://(?:www\.)?wingolog\.org/ + to + https://wingolog.org/ + + target + + + host + wingolog.org + + + host + www.wingolog.org + + + + + wk3.org + + ruleset + + name + wk3.org + rule + + from + ^http://wk3\.org/ + to + https://wk3.org/ + + securecookie + + host + ^wk3\.org$ + name + .+ + + target + + host + wk3.org + + + + workaround.org + + ruleset + + name + workaround.org + rule + + from + ^http://(fry\.|www\.)?workaround\.org/ + to + https://$1workaround.org/ + + target + + + host + workaround.org + + + host + *.workaround.org + + + + + wpX.ne.jp + + ruleset + + name + wpX.ne.jp + rule + + from + ^http://www\.wpx\.ne\.jp/ + to + https://www.wpx.ne.jp/ + + target + + host + www.wpx.ne.jp + + + + wpmudev.org + + ruleset + + name + wpmudev.org + rule + + + from + ^http://(?:www\.)?wpmudev\.org/.* + to + https://premium.wpmudev.org/ + + + from + ^http://premium\.wpmudev\.org/ + to + https://premium.wpmudev.org/ + + + securecookie + + host + ^\.?premium\.wpmudev\.org$ + name + .+ + + target + + + host + wpmudev.org + + + host + *.wpmudev.org + + + + + wrapadviser.co.uk + + ruleset + + name + wrapadviser.co.uk + rule + + from + ^http://([\w-]+)\.wrapadviser\.co\.uk/ + to + https://$1.wrapadviser.co.uk/ + + securecookie + + host + .+\.wrapadviser\.co\.uk$ + name + .+ + + target + + host + *.wrapadviser.co.uk + + + + writeLaTeX.com + + ruleset + + name + writeLaTeX.com + rule + + from + ^http://(?:www\.)?writelatex\.com/ + to + https://www.writelatex.com/ + + target + + + host + writelatex.com + + + host + www.writelatex.com + + + + + wservices.ch + + ruleset + + name + wservices.ch + rule + + from + ^http://([\w-]+\.)?wservices\.ch/ + to + https://$1wservices.ch/ + + securecookie + + host + .+\.wservices\.ch$ + name + .+ + + target + + + host + wservices.ch + + + host + *.wservices.ch + + + + + wuala + + ruleset + + name + wuala + rule + + + from + ^http://wuala\.com/ + to + https://wuala.com/ + + + from + ^http://(www|cdn|forum|stats|support|thumb\d+)\.wuala\.com/ + to + https://$1.wuala.com/ + + + securecookie + + host + ^(?:(www|forum|stats|support|thumb\d+)\.)?wuala\.com$ + name + .* + + target + + + host + wuala.com + + + host + *.wuala.com + + + + + www.cable-tv-deals.com + + ruleset + + name + www.cable-tv-deals.com + rule + + from + ^http://(www\.)?cable-tv-deals\.com/ + to + https://$1cable-tv-deals.com/ + + securecookie + + host + ^\.cable-tv-deals\.com$ + name + .+ + + target + + + host + cable-tv-deals.com + + + host + *.cable-tv-deals.com + + + + + wwwmail_urz_uni-heidelberg.de + + ruleset + + name + wwwmail_urz_uni-heidelberg.de + rule + + from + ^http://wwwmail\.urz\.uni-heidelberg\.de/ + to + https://wwwmail.urz.uni-heidelberg.de/ + + target + + host + wwwmail.urz.uni-heidelberg.de + + + + wza.us + + ruleset + + name + wza.us + platform + cacert + rule + + from + ^http://(www\.)?wza\.us/ + to + https://$1wza.us/ + + target + + + host + wza.us + + + host + www.wza.us + + + + + x-info.org + + ruleset + + name + x-info.org + rule + + from + ^http://(www\.)?x-info\.org/ + to + https://$1x-info.org/ + + securecookie + + host + ^\.x-info\.org$ + name + .+ + + target + + + host + x-info.org + + + host + *.x-info.org + + + + + x10Hosting (partial) + + ruleset + + name + x10Hosting (partial) + rule + + from + ^http://(clients\.|static\.|www\.)?x10hosting\.com/ + to + https://$1x10hosting.com/ + + securecookie + + host + ^(?:.*\.)?x10hosting\.com$ + name + .+ + + target + + + host + x10hosting.com + + + host + *.x10hosting.com + + + + + xCAT.nl + + ruleset + + name + xCAT.nl + rule + + from + ^http://(www\.)?xcat\.nl/ + to + https://$1xcat.nl/ + + target + + + host + xcat.nl + + + host + www.xcat.nl + + + + + xREL.to (partial) + + ruleset + + exclusion + + pattern + ^http://(?:www\.)?xrel\.to/+(?!favicon\.ico|uploaded_images/) + + name + xREL.to (partial) + rule + + from + ^http://(static\.|www\.)?xrel\.to/ + to + https://$1xrel.to/ + + target + + + host + xrel.to + + + host + *.xrel.to + + + + + xServers + + ruleset + + name + xServers + rule + + from + ^http://(?:www\.)?xservers\.ro/ + to + https://xservers.ro/ + + target + + + host + xservers.ro + + + host + www.xservers.ro + + + + + xav.com + + ruleset + + name + xav.com + rule + + from + ^http://(www\.)?xav\.com/ + to + https://$1xav.com/ + + target + + + host + xav.com + + + host + www.xav.com + + + + + xg4ken.com + + ruleset + + name + xg4ken.com + rule + + from + ^http://(\d\d)\.xg4ken\.com/ + to + https://$1.xg4ken.com/ + + securecookie + + host + ^\d+\.xg4ken\.com$ + name + .+ + + target + + host + *.xg4ken.com + + + + xine-project.org + + ruleset + + name + xine-project.org + rule + + from + ^http://(www\.)?xine-project\.org/ + to + https://$1xine-project.org/ + + target + + + host + xine-project.org + + + host + www.xine-project.org + + + + + xkcd + + ruleset + + name + xkcd + rule + + + from + ^http://(www\.|m\.)?xkcd\.(?:com|org)/ + to + https://$1xkcd.com/ + + + from + ^http://(3d|c0|dynamic|sslimgs|uni|what-?if)\.xkcd\.com/ + to + https://$1.xkcd.com/ + + + from + ^https?://imgs\.xkcd\.com/ + to + https://sslimgs.xkcd.com/ + + + from + ^http://(?:www\.)?store\.xkcd\.com/ + to + https://store-xkcd-com.myshopify.com/ + + + target + + + host + xkcd.com + + + host + xkcd.org + + + host + *.xkcd.com + + + host + *.xkcd.org + + + + + xplosion interactive + + ruleset + + name + xplosion interactive + rule + + from + ^http://(16042\.pi\.|pimages\.|www\.)?xplosion\.de/ + to + https://$1xplosion.de/ + + securecookie + + host + ^.+\.xplosion\.de$ + name + .+ + + target + + + host + xplosion.de + + + host + *.xplosion.de + + + + + xt:Commerce (partial) + + ruleset + + name + xt:Commerce (partial) + platform + mixedcontent + rule + + from + ^https?://(?:www\.)?xt-commerce\.com/ + to + https://www.xt-commerce.com/ + + securecookie + + host + ^www\.xt-commerce\.com$ + name + .* + + target + + + host + xt-commerce.com + + + host + www.xt-commerce.com + + + host + *.www.xt-commerce.com + + + + + xtendmedia.com + + ruleset + + name + xtendmedia.com + rule + + from + ^https?://ad\.xtendmedia\.com/ + to + https://ad.rmxads.com/ + + target + + host + ad.xtendmedia.com + + + + xxxbunker.com (partial) + + ruleset + + exclusion + + + pattern + ^https?://759425240\.r\.cdn77\.net/(?:css/|images/tbc_|js/) + + + pattern + ^http://(?:www\.)?xxxbunker\.com/(?!\w{8}(?:-\d)?\.jpg|css/|(?:ajaxCommand|download|forgotPassword|iframePlayer|joinUs|video(?:List|Player|Vote))\.php|favicon\.ico|js/) + + + name + xxxbunker.com (partial) + rule + + + from + ^https?://(?:109\.201\.146\.247|759425240\.r\.cdn77\.net)/ + to + https://xxxbunker.com/ + + + from + ^http://(?:www\.)?xxxbunker\.com/js/functions_(\d{4})\.js + to + https://xxxbunker.cachefly.net/js/functions_$1.js + + + from + ^http://((?:cdn\.)?flash\.|www\.)?xxxbunker\.com/ + to + https://$1xxxbunker.com/ + + + downgrade + 1 + from + ^https://(www\.)?xxxbunker\.com/tos\.php + to + http://$1xxxbunker.com/tos.php + + + target + + + host + 109.201.146.247 + + + host + 759425240.r.cdn77.net + + + host + xxxbunker.com + + + host + *.xxxbunker.com + + + + + yed24hr.com + + ruleset + + name + yed24hr.com + rule + + + from + ^http://(?:www\.)?mov(?:24hr|zeed)\.com/ + to + https://www.yed24hr.com/ + + + from + ^http://(www\.)?yed24hr\.com/ + to + https://$1yed24hr.com/ + + + securecookie + + host + ^(?:w*\.)?yed24hr\.com$ + name + .+ + + target + + + host + mov24hr.com + + + host + www.mov24hr.com + + + host + movzeed.com + + + host + www.movzeed.com + + + host + yed24hr.com + + + host + *.yed24hr.com + + + + + yespic69.com + + ruleset + + name + yespic69.com + rule + + from + ^http://(www\.)?yespic69\.com/ + to + https://$1yespic69.com/ + + securecookie + + host + ^(?:w*\.)?yespic69\.com$ + name + .+ + + target + + + host + yespic69.com + + + host + *.yespic69.com + + + + + yfrog + + ruleset + + name + yfrog + rule + + from + ^http://(?:(desmond\.|twitter\.)|www\.)?yfrog\.com/ + to + https://$1yfrog.com/ + + securecookie + + host + ^\.twitter.yfrog.com$ + name + .+ + + target + + + host + yfrog.com + + + host + *.yfrog.com + + + + + younited.com (partial) + + ruleset + + name + younited.com (partial) + rule + + from + ^http://((?:account|app|community|ticket|www)\.)?younited\.com/ + to + https://$1younited.com/ + + securecookie + + host + ^\.younited\.com$ + name + .+ + + target + + + host + younited.com + + + host + *.younited.com + + + + + yourfone.de + + ruleset + + name + yourfone.de + rule + + + from + ^https?://(?:www\.)?yourfone\.de/ + to + https://www.yourfone.de/ + + + from + ^https?://(?:www\.)?(gfx|handyshop|hilfe)\.yourfone\.de/ + to + https://$1.yourfone.de/ + + + securecookie + + host + ^.*\.yourfone\.de$ + name + .+ + + target + + + host + yourfone.de + + + host + *.yourfone.de + + + + + yt-dl.org + + ruleset + + name + yt-dl.org + rule + + from + ^http://(www\.)?yt-dl\.org/ + to + https://$1yt-dl.org/ + + target + + + host + yt-dl.org + + + host + www.yt-dl.org + + + + + ywxi.net + + ruleset + + name + ywxi.net + rule + + from + ^http://cdn\.ywxi\.net/ + to + https://cdn.ywxi.net/ + + securecookie + + host + ^cdn\.ywxi\.net$ + name + .+ + + target + + host + cdn.ywxi.net + + + + zZounds.com + + ruleset + + name + zZounds.com + rule + + + from + ^http://c1\.zzounds\.com/ + to + https://c5.zzounds.com/ + + + from + ^http://c2\.zzounds\.com/ + to + https://c6.zzounds.com/ + + + from + ^http://c3\.zzounds\.com/ + to + https://c7.zzounds.com/ + + + from + ^http://c4\.zzounds\.com/ + to + https://c8.zzounds.com/ + + + from + ^http://cachepe\.zzounds\.com/ + to + https://delivery.zzounds.com/ + + + from + ^http://((?:c\d+|delivery|www)\.)?zzounds\.com/ + to + https://$1zzounds.com/ + + + securecookie + + host + ^(?:delivery)?\.zzounds\.com$ + name + .+ + + target + + + host + zzounds.com + + + host + *.zzounds.com + + + + + zaehlwerk.net + + ruleset + + name + zaehlwerk.net + rule + + from + ^http://(stats\.|www\.)?zaehlwerk\.net/ + to + https://$1zaehlwerk.net/ + + securecookie + + host + ^stats\.zaehlwerk\.net$ + name + .+ + + target + + + host + zaehlwerk.net + + + host + *.zaehlwerk.net + + + + + zapunited (partial) + + ruleset + + name + zapunited (partial) + rule + + + from + ^http://(www\.)?zapunited\.com/(w/) + to + https://$1zapunited.com/$2 + + + from + ^https?://(?:www\.)?media\.zapunited\.com/ + to + https://media.zapunited.com/ + + + target + + + host + zapunited.com + + + host + *.zapunited.com + + + host + www.media.zapunited.com + + + + + zeedpic69.com + + ruleset + + name + zeedpic69.com + rule + + from + ^http://(www\.)?zeedpic69\.com/ + to + https://$1zeedpic69.com/ + + securecookie + + host + ^(?:w*\.)?zeedpic69\.com$ + name + .+ + + target + + + host + zeedpic69.com + + + host + *.zeedpic69.com + + + + + zenspider.com (partial) + + ruleset + + name + zenspider.com (partial) + rule + + from + ^http://envy\.zenspider\.com/ + to + https://envy.zenspider.com/ + + target + + host + envy.zenspider.com + + + + zeromq (partial) + + ruleset + + name + zeromq (partial) + rule + + from + ^https?://(?:www\.)?zeromq\.org/local--theme/ + to + https://zeromq.wdfiles.com/local--theme/ + + target + + + host + zeromq.org + + + host + www.zeromq.org + + + + + zerties.org + + ruleset + + name + zerties.org + rule + + from + ^http://(?:www\.)?zerties\.org/ + to + https://www.zerties.org/ + + target + + + host + zerties.org + + + host + www.zerties.org + + + + + zeuscat.com + + ruleset + + name + zeuscat.com + rule + + from + ^http://(www\.)?zeuscat\.com/ + to + https://$1zeuscat.com/ + + target + + + host + zeuscat.com + + + host + www.zeuscat.com + + + + + zissousecure.com + + ruleset + + name + zissousecure.com + rule + + from + ^http://([\w-]+\.)?zissousecure\.com/ + to + https://$1zissousecure.com/ + + securecookie + + host + ^(?:.+\.)?zissousecure\.com$ + name + .+ + + target + + + host + zissousecure.com + + + host + *.zissousecure.com + + + + + zt03.net (partial) + + ruleset + + name + zt03.net (partial) + rule + + from + ^http://secure\.zt03\.net/ + to + https://secure.zt03.net/ + + target + + host + secure.zt03.net + + + + µTorrent (partial) + + ruleset + + name + µTorrent (partial) + rule + + + from + ^http://(forum|remote)\.utorrent\.com/ + to + https://$1.utorrent.com/ + + + from + ^https?://(?:ll\.)?(download3?|static)\.utorrent\.com/ + to + https://$1.utorrent.com/ + + + target + + + host + *.utorrent.com + + + host + ll.*.utorrent.com + + + + + Árukereső + + ruleset + + name + Árukereső + rule + + from + ^http://([^@:/]*)\.(arukereso\.hu|pazaruvaj\.com|precos\.com\.pt|compari\.ro|ucuzu\.com)/ + to + https://$1.$2/ + + securecookie + + host + ^(www)?\.(arukereso\.hu|pazaruvaj\.com|precos\.com\.pt|compari\.ro|ucuzu\.com)$ + name + .+ + + target + + + host + arukereso.hu + + + host + affiliation.arukereso.hu + + + host + image.arukereso.hu + + + host + static.arukereso.hu + + + host + www.arukereso.hu + + + host + www.pazaruvaj.com + + + host + www.precos.com.pt + + + host + www.compari.ro + + + host + pazaruvaj.com + + + host + affiliation.pazaruvaj.com + + + host + image.pazaruvaj.com + + + host + static.pazaruvaj.com + + + host + compari.ro + + + host + affiliation.compari.ro + + + host + image.compari.ro + + + host + static.compari.ro + + + host + ucuzu.com + + + host + www.ucuzu.com + + + host + image.ucuzu.com + + + host + static.ucuzu.com + + + + + + diff --git a/https-everywhere_targets.plist b/https-everywhere_targets.plist new file mode 100644 index 0000000..f226ab5 --- /dev/null +++ b/https-everywhere_targets.plist @@ -0,0 +1,54678 @@ + + + + + *.00f.net + 00f.net + *.01.org + 01.org + *.0xbadc0de.be + 0xbadc0de.be (partial) + *.10gen.com + 10gen + *.10minutemail.com + 10 Minute Mail.com (false MCB) + *.11footballclub.com + 11footballclub + *.123-reg.co.uk + 123-reg + *.123count.com + 123Count.com + *.123rf.com + 123RF + *.123systems.net + 123systems + *.12wbt.com + Michelle Bridges 12 Week Body Transformation (partial) + *.1688.com + 1688.com (partial) + *.16personalities.com + 16personalities.com + *.1and1.ca + 1&1 Internet + *.1and1.co.uk + 1&1 Internet + *.1and1.com + 1&1 Internet + *.1c-bitrix.ru + 1c-bitrix.ru (partial) + *.1cart.com + 1Cart + *.1lotstp.com + 1LotSTP.com + *.1pipfix.com + 1PipFix + *.1und1.de + 1und1.de (partial) + *.1wt.eu + 1WT.eu (partial) + *.1x.com + 1X + *.1xbet.com + 1xbet.com + *.21centuryrims.com + 21 Century Rims + *.23systems.net + 23Systems + *.247ilabs.com + 24/7 Customer (partial) + *.247realmedia.com + 24/7 Media (partial) + *.24ways.org + 24 ways (partial) + *.2ch.cm + 2ch.cm + *.2ch.hk + 2ch.hk + *.2checkout.com + 2Checkout (partial) + *.2co.com + 2Checkout (partial) + *.2kgames.com + 2K Games (partial) + *.2ksports.com + 2K Sports + *.2o7.net + Adobe Digital Marketing + *.2pipfixed.com + 2PipFixed (false MCB) + *.2roads.com + Two Roads + *.30boxes.com + 30 Boxes.com + *.32red.com + 32Red Online Casino + *.33across.com + 33Across (partial) + *.350.org + 350 (partial) + *.350zevolution.com + 350zEvolution.com + *.360cities.net + 360Cities (partial) + *.360yield.com + 360 Yield + *.365tickets.co.uk + 365 Tickets.co.uk + *.365tickets.com + 365 Tickets.com + *.365ticketscentral.com + 365 Tickets Central.com + *.365ticketsglobal.com + 365 Tickets Global.com + *.365ticketsscotland.com + 365 Tickets Scotland.com + *.38.de + 38.de + *.3cdn.net + 3cdn + *.3ds.com + Dassault Systèmes (partial) + *.3m.com + 3M.com (partial) + *.3news.co.nz + 3 News + *.3questionsgetthegirl.com + Vin DiCarlo (partial) + *.3scale.net + 3scale + *.3taps.com + 3taps + *.4cdn.org + 4chan (partial) + *.4chan-ads.org + 4chan (partial) + *.4chan.org + 4chan (partial) + *.4channel.org + 4chan (partial) + *.4d.com + 4D.com (partial) + *.4dsply.com + AdSupply (partial) + *.4plebs.org + 4plebs.org + *.4runnerforex.com + 4RunnerForex.com + *.4rx.com + 4RX.com + *.4shared.com + 4Shared (experimental) + *.4sqi.net + Foursquare.com (partial) + *.4tulemar.com + 4Tulemar + *.500px.com + 500px.com (partial) + *.512pixels.net + 512 Pixels + *.53.com + Fifth Third Bank + *.5apps.com + Appache (partial) + *.5july.org + 5 July.org + *.5min.com + 5min (partial) + *.77777i.com + 77777i.com + *.7digital.com + 7digital (partial) + *.7eer.net + Impact Radius + *.7static.com + 7digital (partial) + *.80spurple.com + 80s Purple.com + *.888173.net + 888173.net (false MCB) + *.888voip.com + 888VoIP.com + *.8tracks.com + 8tracks + *.8win88win.com + 8win88win.com + *.918autoloans.com + 918autoloans.com + *.9gag.com + 9gag (partial) + *.a-ads.com + a-ads.com + *.a1.net + A1 Telekom Austria + *.a1000words.com + A 1000 Words.com + *.a14electronics.com + A14 Electronics.com + *.a1afastcash.com + A1A Fast Cash + *.a1community.net + A1 Telekom Austria + *.a2hosting.com + A2 Hosting (partial) + *.a2zinc.net + a2z, Inc (partial) + *.aa.com + American Airlines + *.aa.net.uk + AA.net.uk (partial) + *.aacqa.gov.au + Australian Aged Care Quality Agency + *.aan.com + American Academy of Neurology (partial) + *.aans.org + American Association of Neurological Surgeons + *.aaronbrotherscircular.com + Aaron Brothers + *.aas.org + AAS.org (partial) + *.aat-net.de + All American Trains + *.abba.accenture.com + Accenture + *.abccommercial.com + ABC Online (partial) + *.abclinuxu.cz + AbcLinuxu + *.aber.ac.uk + Aberystwyth University (partial) + *.abiggersociety.com + A Bigger Society.com + *.abiliba.net + Abiliba + *.abine.com + Abine + *.abmr.net + Akamai + *.aboutads.info + About Ads (partial) + *.abr.gov.au + Australian Business Register + *.abuse.ch + Abuse.ch + *.abusix.com + abusix.com + *.abysmal.nl + abysmal.nl + *.academia.edu + Academia.edu (partial) + *.academics.de + academics.de + *.academycreditonline.com + Academy Credit online.com + *.acalogadmin.com + Acalog + *.accan.org.au + ACCAN + *.accc.gov.au + Australian Competition and Consumer Commission + *.accelacomm.com + Accela Communications (partial) + *.accellion.com + Accellion + *.accesslabs.net + AccessLabs + *.accessnow.org + AccessNow.org + *.accessofficeproducts.com + Access Office Products + *.accessprivacy.ca + AccessPrivacy.ca + *.accessprivacy.com + Access Privacy.com + *.accesstojustice.gov.au + Access to Justice + *.accordancebible.com + Accordance Bible.com (partial) + *.accountonline.com + Account Online.com + *.accountservergroup.com + accountservergroup.com + *.accountsupport.com + AccountSupport.com + *.accu-weather.com + AccuWeather (partial) + *.accuvant.com + Accuvant.com + *.accuweather.com + AccuWeather (partial) + *.ace-host.net + Acenet (partial) + *.acehotel.com + Ace Hotel.com (partial) + *.acenet-inc.net + Acenet (partial) + *.acessoseguro.net + acessoseguro.net + *.aclj.org + American Center for Law and Justice (partial) + *.aclu.org + ACLU + *.aclum.org + ACLU of Massachusetts + *.acluva.org + ACLU of Virginia + *.acm.org + ACM.org (partial) + *.acpica.org + ACPICA.org + *.acquia.com + Acquia + *.acr.org + American College of Radiology (partial) + *.acronis.com + Acronis.com (partial) + *.acs.org + American Chemical Society (partial) + *.actblue.com + ActBlue (partial) + *.actionallocator.com + actionallocator.com + *.actionkit.com + ActionKit.com (partial) + *.active-srv02.de + active-srv02.de + *.active.com + Active.com (partial) + *.activeevents.com + Active Events (partial) + *.activemelody.com + Active Melody + *.activestate.com + ActiveState Software (partial) + *.activisionblizzard.com + Activision Blizzard.com (partial) + *.actonsoftware.com + Act-On Software (partial) + *.acuityplatform.com + Acuity platform.com + *.ad-juster.com + Ad-Juster (partial) + *.ad-srv.net + Targeting Performance + *.ad.ad-srv.net + Targeting Performance + *.ad.yieldmanager.com + Right Media + *.ad4game.com + Ad4Game (partial) + *.ada.edu.au + Australian Data Archive + *.adacore.com + AdaCore + *.adafruit.com + AdaFruit + *.adage.com + Crain Communications (partial) + *.adap.tv + Adap.TV + *.adblade.com + Adblade (partial) + *.adblockplus.org + AdblockPlus + *.adbooth.net + Adbooth.net + *.adbrite.com + AdBrite (partial) + *.adbutler.com + AdBulter + *.adbuyer.com + adbuyer.com + *.addisonlee.com + Addison Lee + *.addthis.com + AddThis (partial) + *.addtoany.com + AddToAny + *.adelaide.edu.au + Adelaide.edu.au (partial) + *.adextent.com + AdExtent.com (partial) + *.adform.net + Adform + *.adformdsp.net + Adform + *.adindex.de + ADindex + *.adingo.jp + adingo (partial) + *.adisc.org + ADISC.org + *.adition.com + adition.com (partial) + *.adium.im + Adium.im + *.adjug.com + AdJug.com (partial) + *.adjuggler.com + AdJuggler (partial) + *.adjuggler.net + AdJuggler (partial) + *.adjust-net.jp + adjust-net.jp + *.adk2.com + adk2 (partial) + *.adkontekst.pl + Adkontekst.pl (partial) + *.admatic.com.br + Admatic + *.admatrix.jp + AdMatrix.jp + *.admeld.com + Admeld + *.admin.ch + admin.ch (partial) + *.admin.onesite.com + ONEsite (partial) + *.admized.com + Admized + *.admob.com + AdMob (partial) + *.admtl.com + Aéroports de Montréal + *.adnxs.com + AppNexus (partial) + *.adobe.com + Adobe + *.adobeconnect.com + Adobe Connect + *.adobelogin.com + Adobe login.com + *.adp.com + Automatic Data Processing (partial) + *.adpay.com + Adpay.com (partial) + *.adriver.ru + AdRiver + *.adroll.com + AdRoll (partial) + *.ads-creativesyndicator.com + CreativeSyndicator + *.ads.neudesicmediagroup.com + Neudesic Media Group (partial) + *.adsafeprotected.com + AdSafe (partial) + *.adsbyisocket.com + isocket (partial) + *.adscale.de + adscale + *.adseekmedia.com + Adseekmedia.com + *.adserver01.de + adserver01.de + *.adsimilis.com + Adsimilis + *.adsmarket.com + Matomy Market + *.adsonar.com + AOL Advertising + *.adspeed.biz + AdSpeed (partial) + *.adspeed.net + AdSpeed (partial) + *.adspirit.de + AdSpirit (partial) + *.adsrvmedia.com + adsrvmedia.com + *.adsupply.com + AdSupply (partial) + *.adtarget.me + adtarget.me + *.adtech.de + Adtech.de (partial) + *.adtechus.com + Adtechus.com (partial) + *.adtraxx.de + adtraxx.de + *.adultadworld.com + Adult Ad World (partial) + *.adultfriendfinder.com + Adult FriendFinder (partial) + *.adulttoys4u.com.au + Adult Toys 4 U.com + *.adverticum.net + Adverticum + *.advertise.com + Advertise.com (partial) + *.advertising.com + Advertising.com (partial) + *.adverts.ie + Adverts.ie + *.advertserve.com + AdvertServe.com + *.advertstream.com + Advert Stream (partial) + *.advocatesforyouth.org + Advocates for Youth (partial) + *.advolution.de + advolution.de + *.adxpansion.com + AdXpansion.com (partial) + *.adyadvantage.com + Ady Advantage.com (false MCB) + *.adzerk.com + Adzerk (partial) + *.adzerk.net + Adzerk (partial) + *.aedc.gov.au + Australian Early Development Census + *.aegeanair.com + Greek-travel + *.aegee-enschede.nl + AEGEE-Enschede.nl (partial) + *.aei.gov.au + Australian Education International + *.aemi.edu.au + Australian Emergency Management Institute + *.aer.gov.au + Australian Energy Regulator + *.aera.at + Aera.net + *.aereo.com + Aereo.com (partial) + *.aeriastatic.com + Aeriagames + *.aerofs.com + AeroFS (partial) + *.aetherflyff.com + Aether Flyff.com (false MCB) + *.affair-guide.com + Affair-Guide.com (false MCB) + *.affec.tv + Affec.tv (partial) + *.affiliate-b.com + Affiliate-B.com + *.affiliatetracking.com + AffiliateTracking.com + *.affiliatewindow.com + Digital Window (partial) + *.afilias.info + Afilias + *.afnic.fr + AFNIC.fr + *.afp548.com + AFP548.com (false MCB) + *.africangreyparrotcentre.co.uk + African Grey Parrot Centre + *.afrinic.net + African Network Information Center + *.afsa.gov.au + Australian Financial Security Authority + *.aftenposten.no + Aftenposten + *.aftonbladet-cdn.se + Aftonbladet + *.aftonbladet.se + Aftonbladet + *.afx.ms + Hotmail / Live + *.ag.ch + Schweizer Regierung + *.ag.gov.au + Attorney-General's Department + *.agari.com + Agari + *.ageofmine.com + Age of Mine.com + *.aggregateknowledge.com + Aggregate Knowledge + *.agilebits.com + AgileBits (partial) + *.agkn.com + Aggregate Knowledge + *.agmk.net + agmk.net + *.agu.org + AGU.org (partial) + *.ahm.com.au + ahm.com.au (partial) + *.ahorroentinta.com + Todo en Tinta + *.ahpra.gov.au + Australian Health Practitioner Regulation Agency + *.aiasurety.com + AIA Surety + *.aidsmap.com + aidsmap.com + *.aim.com + AOL (partial) + *.aimatch.com + aimatch.com + *.airbnb.ca + Airbnb (partial) + *.airbnb.co.kr + Airbnb (partial) + *.airbnb.co.uk + Airbnb (partial) + *.airbnb.com + Airbnb (partial) + *.airbnb.com.au + Airbnb (partial) + *.airbnb.com.br + Airbnb (partial) + *.airbnb.de + Airbnb (partial) + *.airbnb.es + Airbnb (partial) + *.airbnb.fr + Airbnb (partial) + *.airbnb.it + Airbnb (partial) + *.airbnb.jp + Airbnb (partial) + *.airbnb.ru + Airbnb (partial) + *.airsoftgi.com + AirsoftGI.com + *.airtricity.com + Airtricity + *.ak.yelpcdn.com + Yelp (partial) + *.akademiskahus.se + AkademiskaHus.se (partial) + *.akamai.steamstatic.com + Steam static.com (partial) + *.akamaihd.net + Akamai + *.akb.ch + Schweizer Kantonalbanken + *.akcje.home.pl + home.pl + *.akg.com + Harman International Industries (partial) + *.aktion-deutschland-hilft.de + Aktion-Deutschland-Hilft.de (partial) + *.aktivix.org + Aktivix.org + *.al-akhbar.com + al-akhbar + *.alamy.com + Alamy + *.alaska.edu + University of Alaska (partial) + *.alaska.gov + State of Alaska (partial) + *.alaskaair.com + Alaska Airlines + *.albumarsiv.com + AlbumArsiv.com + *.alcatel-lucent.com + Alcatel-Lucent.com (partial) + *.aldi-mobile.ch + Aldi + *.aldi-nord.de + Aldi + *.aldi-sued.de + Aldi + *.aldi-suisse.ch + Aldi + *.aldi.be + Aldi + *.aldi.co.uk + Aldi + *.aldi.com.au + Aldi + *.aldi.dk + Aldi + *.aldi.es + Aldi + *.aldi.fr + Aldi + *.aldi.hu + Aldi + *.aldi.ie + Aldi + *.aldi.lu + Aldi + *.aldi.nl + Aldi + *.aldi.pl + Aldi + *.aldi.pt + Aldi + *.aldi.us + Aldi + *.aldinord.de + Aldi + *.aldisued.de + Aldi + *.aldisuisse.ch + Aldi + *.alditalk.de + Aldi + *.aleavia.com + Aleavia (partial) + *.alertbot.com + AlertBot + *.alertir.com + Alert Investor Relations + *.alexa.com + Alexa (partial) + *.alexandrasangelgifts.co.uk + Alexandras Angel Gifts.co.uk + *.algolia.com + Algolia.com + *.alianza.tv + Alianza + *.alibaba.com + Alibaba (partial) + *.alicdn.com + AliCDN.com (partial) + *.alice-dsl.de + AliceDSL + *.alice.de + AliceDSL + *.alien.net.au + Alien.net.au + *.alienvault.com + AlienVault (partial) + *.alipay.com + Alipay.com (partial) + *.alipayobjects.com + Alipay.com (partial) + *.alivenotdead.com + alivenotdead.com + *.all-inkl.com + All-inkl.com + *.allclearid.com + AllClear ID.com + *.alldebrid.com + AllDebrid.com (partial) + *.alliedmedia.org + Allied Media.org + *.alliedmods.net + AlliedModders + *.allizom.org + Allizom.org + *.alljoyn.org + AllJoyn.org + *.allmyvideos.net + allmyvideos.net (partial) + *.allplayers.com + AllPlayers.com + *.allpoetry.com + Allpoetry + *.allseenalliance.org + AllSeen Alliance.org + *.allshareplay.com + AllShare Play + *.allstartire.com + All Star Tire + *.allthingsd.com + AllThingsD (partial) + *.alluremedia.com.au + Alluremedia (partial) + *.ally.com + Ally Financial (partial) + *.allyou.net + AllYou.net + *.allyoucanarcade.com + All You Can Arcade.com (partial) + *.alphassl.com + AlphaSSL + *.alpinelinux.org + Alpine Linux.org (partial) + *.alrc.gov.au + Australian Law Reform Commission + *.alta.com + Alta Ski Area + *.alternate-b2b.nl + Alternate + *.alternate.be + Alternate + *.alternate.nl + Alternate + *.alternatifbilisim.org + Alternatif Bilisim.org + *.alternc.org + AlternC (partial) + *.alternet.org + AlterNet (partial) + *.altoonamirror.com + Altoona Mirror (partial) + *.alumniconnections.com + alumniconnections.com + *.alwaysdata.com + alwaysdata.com (partial) + *.alz.org + Alzheimer's Association (partial) + *.alza.cz + Alza.cz + *.alza.sk + Alza.sk + *.alzheimers.org.uk + Alzheimer's Society (partial) + *.amahi.org + Amahi.org (partial) + *.amazon-adsystem.com + Amazon-Adsystem.com (partial) + *.amazonaws.com + Amazon Web Services + *.amazonwebservices.com + Amazon Web Services + *.ambest.com + A.M. Best Company (partial) + *.amctv.com + AMC (partial) + *.amd.co.at + amd.co.at (partial) + *.amd.com + Advanced Micro Devices (partial) + *.ameba.jp + Ameba (partial) + *.american.edu + American University (partial) + *.americanbar.org + American Bar Assocation + *.americanheart.org + American Heart.org (partial) + *.ametsoc.org + AMetSoc.org (partial) + *.amgdgt.com + amgdgt.com + *.amiando.com + amiando (partial) + *.amnesty.no + Amnesty International Norway (partial) + *.amnesty.org + Amnesty International (partial) + *.amnesty.org.uk + Amnesty International (partial) + *.ampush.com + Ampush.com + *.ams-ix.net + Amsterdam Internet Exchange + *.amsa.gov.au + Australian Maritime Safety Authority + *.amung.us + whos.amung.us (partial) + *.ana.net + Association of National Advertisers + *.analytics.edgekey.net + analytics.edgesuite.net + *.analytics.edgesuite.net + analytics.edgesuite.net + *.anb.com.sa + ANB + *.anbg.gov.au + Australian Plants, Botany and Horticulture + *.ancestry.com + Ancestry.com (partial) + *.anchor.com.au + Anchor + *.anchor.net.au + Anchor + *.and.co.uk + dmg media (partial) + *.andor.com + Andor.com + *.android.com + Android (partial) + *.andyet.com + andyet.com (partial) + *.andywalsh.com + Andy Walsh.com + *.anglomedia.net + anglomedia.net + *.anibis.ch + anibis.ch + *.animoto.com + Animoto.com (partial) + *.anirena.com + AniRena + *.anl.gov + Argonne National Laboratory (partial) + *.annihil.us + annihil.us + *.annsummers.com + Ann Summers (partial) + *.annualcreditreport.com + AnnualCreditReport.com + *.anomos.info + Anomos (CAcert) + *.anonfiles.com + AnonFiles.com + *.anonops.com + AnonOps.com + *.anonym-surfen.de + JonDos + *.anonymizer.com + Anonymizer + *.anonymous-proxy-servers.net + JonDos + *.anonymox.net + anonymoX + *.anpost.ie + An Post (partial) + *.ansible.com + Ansible.com (partial) + *.ansibleworks.com + Ansible works.com (partial) + *.antenna.gr + Greek-media + *.anunciou.com + Anunciou.com (false MCB) + *.anxbtc.com + ANXBTC.com + *.anybots.com + Anybots.com + *.anyoption.com + anyoption.com (partial) + *.anz.com + ANZ + *.anzen.org.uk + Anzen.org.uk + *.aoe.com + AOE.com (partial) + *.aol.co.uk + AOL (partial) + *.aol.com + AOL (partial) + *.aolcdn.com + AOL (partial) + *.apache.org + Apache (partial) + *.apc.org + Association for Progressive Communications + *.api.del.icio.us + Delicious + *.api.sh + api.sh + *.apicasystem.com + Apica + *.apigee.com + Apigee (partial) + *.apis.google.com + Google APIs + *.aplus-flint-river-ranch.com + A+ Flint River Ranch + *.apm.com + APM.com + *.apmebf.com + ValueClick (partial) + *.apnaindia.com + Apna India + *.apnic.net + Asia-Pacific Network Information Centre (partial) + *.apobox.com + APO Box.com + *.app.com + Asbury Park Press (partial) + *.app.net + App.net + *.appkb.ch + Schweizer Kantonalbanken + *.apple.com + Apple.com (partial) + *.applebees.com + Applebee's + *.applepartsstore.com + Apple Parts Store (partial) + *.applianceshop.eu + Applianceshop.eu + *.appsecute.com + Appsecute + *.appspot.com + Google App Engine + *.appthemes.com + AppThemes.com + *.april.org + April.org + *.aps.org + American Physical Society (partial) + *.apsjobs.gov.au + APS Jobs + *.apwg.org + Anti-Phishing Working Group (partial) + *.aquent.com + Aquent (partial) + *.aquiss.net + Aquiss (partial) + *.arachnys.com + Arachnys + *.arbor.net + Arbor Networks (partial) + *.arcgis.com + ArcGIS (partial) + *.arch-stuff.org + openDesktop.org + *.arch.ethz.ch + ETH Zürich (partial) + *.archive.moe + archive.moe + *.archive.org + Internet Archive + *.archlinux.org + Arch Linux + *.ardour.org + Ardour (partial) + *.argos.co.uk + Argos (partial) + *.argos.ie + Argos (partial) + *.argusleader.com + The Argus Leader + *.ariejan.net + Ariejan.net + *.arin.net + ARIN.net (partial) + *.arizona.edu + University of Arizona (partial) + *.arkos.io + arkOS.io + *.arm.com + ARM (partial) + *.armytimes.com + Army Times (partial) + *.arpnetworks.com + ARPNetworks.com (partial) + *.arsenalnews.net + KickNews + *.arstechnica.com + Ars Technica (partial) + *.arstechnica.net + Ars Technica (partial) + *.art2po.com + Art2pO.com + *.artday.co.kr + Artday + *.artedolar.com.br + Arte do Lar.com.br + *.artemis.net + Artemis.net + *.artemisinternet.com + Artemis.net + *.artfiles.de + Artfiles New Media (partial) + *.articles.sape.ru + Sape (partial) + *.articulate.com + Articulate.com (partial) + *.artinstitutes.edu + The Art Institutes (partial) + *.artizone.com + Artizone (partial) + *.artskills.com + ArtSkills + *.arvixe.com + Arvixe + *.asada.gov.au + Australian Sports Anti-Doping Authority + *.asahi.com + Asahi Shimbun (partial) + *.asana.com + Asana (partial) + *.asbestossafety.gov.au + Asbestos Safety and Eradication Agency + *.asciinema.org + Asciinema.org (partial) + *.asda.com + ASDA (partial) + *.asia.qualtrics.com + Qualtrics (surveys) + *.asianfanfics.com + Asianfanfics + *.asic.gov.au + ASIC + *.asirobots.com + ASI robots.com + *.askadmissions.net + Hobsons EMT (partial) + *.askives.com + Askives.com + *.askmonty.org + AskMonty (partial) + *.askubuntu.com + Ask Ubuntu.com + *.asl19.org + ASL19.org + *.asmallorange.com + A Small Orange (partial) + *.asmp.org + American Society of Media Photographers + *.asnbank.nl + ASN Bank.nl (partial) + *.aspen.com + Aspen.com (partial) + *.aspi.org.au + Australian Strategic Policy Institute + *.assembla.com + Assembla (partial) + *.assemble.me + Assemble.me + *.assemblys.net + Wildcard Corp.com + *.assetinsightinc.com + Asset Insight + *.assetspost.com + ChallengePost (partial) + *.assistly.com + Desk.com + *.assoc-amazon.co.uk + Amazon Associates + *.assoc-amazon.com + Amazon Associates + *.astaro.com + Sophos (partial) + *.asterisk.org + Asterisk (partial) + *.asu.edu + Arizona State University (partial) + *.asus.com + ASUS (partial) + *.at.ai + Alexander Interactive (partial) + *.atariage.com + AtariAge + *.atdmt.com + Microsoft Atlas + *.atechmedia.com + aTech Media (partial) + *.atemda.com + Admeta Aktiebolag (partial) + *.atgsvcs.com + atgsvcs.com + *.atheists.org + Atheists.org (partial) + *.atipso.com + atipso.com + *.atlantic.net + Atlantic.net + *.atlanticmetro.net + Atlantic Metro Communications (partial) + *.atlantis.sk + Atlantis.sk + *.atlassian.com + Atlassian (partial) + *.atlassian.net + Atlassian.net + *.atmail.com + Atmail + *.ato.gov.au + Australian Taxation Office + *.atom.io + Atom.io (partial) + *.atomic-clock.org.uk + Uhrzeit.org (partial) + *.atomz.com + Atomz + *.atos.net + Atos.net + *.atrativa.com.br + Atrativa.com.br (partial) + *.atsb.gov.au + Australian Transport Safety Bureau + *.atstuff.com + @stuff + *.att.com + AT&T (partial) + *.attachmate.com + Attachmate (partial) + *.attachmategroup.com + The Attachmate Group (partial) + *.attictv.com + kpopstage.co + *.attracta.com + Attracta + *.atwola.com + AOL Advertising + *.atypon.com + Atypon + *.auctionbunker.com + Auctionbunker + *.audemarspiguet.com + Audemars Piguet.com + *.audible.de + Audible.de + *.audience-discovery.com + Audience-Discovery.com + *.audienceiq.com + Audience IQ.com + *.audiko.net + Audiko + *.audiogo.com + AudioGO + *.aufeminin.com + Axel Springer (partial) + *.ausgovboards.gov.au + Australian Government Boards + *.ausinfotech.net + AusinfoTech + *.austiners.com + Austiners.com (false MCB) + *.austinfitmagazine.com + Austin Fit Magazine.com + *.austrade.gov.au + Austrade + *.australia-unsc.gov.au + Australia: UNSC + *.australianclinicaltrials.gov.au + Australian Clinical Trials + *.authorize.net + Authorize.Net + *.authy.com + Authy.com (partial) + *.autoadmanager.com + Auto Ad Manager.com (partial) + *.automx.org + automx.org (partial) + *.autorimsandaccessories.com + Auto Rims & Accessories + *.autotrack.nl + AutoTrack.nl + *.autotrader.com + AutoTrader.com (partial) + *.autotraderstatic.com + AutoTrader.com (partial) + *.autovps.net + Auto VPS.net + *.av18mov.com + av18mov.com + *.avaaz.org + Avaaz + *.avangate.com + Avangate (partial) + *.avast.com + Avast (partial) + *.avaya.com + Avaya (partial) + *.avectra.com + Avectra.com (partial) + *.avg.com + AVG.com (partial) + *.avinc.com + Avinc.com + *.avira.com + Avira + *.avis.com + Avis.com + *.avisservices.com + Avisservices.com + *.avo.gov.au + Australian Valuation Office + *.avonmaquiagem.com.br + avonmaquiagem.com.br + *.awcloud.net + AWcloud.net + *.aweber-static.com + AWeber (partial) + *.aweber.com + AWeber (partial) + *.awin1.com + Digital Window (partial) + *.awm.gov.au + Australian War Memorial + *.axa-winterthur.ch + AXA Winterthur + *.axisbank.com + Axis Bank (partial) + *.axosoft.com + Axosoft.com (partial) + *.azcentral.com + azcentral.com (partial) + *.azchampion.com + Factory Expo Home Centers + *.azhca.org + AZHCA.org + *.b-europe.com + SNCB + *.babylon.com + Babylon (partial) + *.backcountry.com + Backcountry.com (partial) + *.backlift.com + Backlift.com + *.backup.com + Norton Online Backup + *.badongo.com + Badongo (partial) + *.badwarebusters.org + Badwarebusters.org + *.bahn.de + Bahn.de + *.baidu.com + Baidu (partial) + *.baifendian.com + Beijing Qianfendian (partial) + *.balabit.com + BalaBit.com (partial) + *.ballou.se + Ballou (partial) + *.balpa.org + British Airline Pilots Association + *.bancastato.ch + Schweizer Kantonalbanken + *.bandcamp.com + Bandcamp + *.bangor.ac.uk + Bangor University (partial) + *.bangordailynews.com + Bangor Daily News (partial) + *.bankofscotland.de + Bankofscotland.de + *.bankoftaipei.com.tw + Bank of Taipei.com.tw + *.banners.victor.com + Victor Chandler International + *.bannersnack.com + BannerSnack.com + *.banu.com + Banu.com + *.barclaycard.co.uk + Barclays + *.baremetal.com + BareMetal + *.baremetrics.io + Baremetrics.io + *.bargains4business.com.au + Bargains 4 Business + *.barnesandnoble.com + Barnes and Noble (partial) + *.barracuda.com + Barracuda.com + *.barracudanetworks.com + Barracuda.com + *.base-valid.com + Base INC! + *.base.de + BASE (partial) + *.battle.net + Battle.net (partial) + *.battlecreekenquirer.com + Battle Creek Enquirer + *.battleforthenet.com + Battle for the Net.com + *.baxterbulletin.com + The Baxter Bulletin + *.bay.livefilestore.com + Hotmail / Live + *.baylor.edu + Baylor.edu (partial) + *.bazaarvoice.com + Bazaarvoice + *.baztab.net + baztab.net + *.bbb.org + Better Business Bureau (partial) + *.bbc.com + BBC.com (partial) + *.bbcomcdn.com + BodyBuilding.com (partial) + *.bbelements.com + bbelements.com + *.bcbits.com + Bandcamp + *.bcf.ch + Schweizer Kantonalbanken + *.bcge.ch + Schweizer Kantonalbanken + *.bcj.ch + Schweizer Kantonalbanken + *.bcn.ch + Schweizer Kantonalbanken + *.bcobandits.com + bcobandits.com + *.bcv.ch + Schweizer Kantonalbanken + *.bcvs.ch + Schweizer Kantonalbanken + *.bcy.ca + Grand Lodge of British Columbia + *.bdimg.com + Baidu (partial) + *.beaconinitiative.com + Beacon Initiative + *.beaker-project.org + Beaker-Project.org + *.beamyourscreen.de + BeamYourScreen + *.beastnode.com + BeastNode (partial) + *.beautifuldecay.com + BeautifulDecay.com (false MCB) + *.beautybar.com + BeautyBar.com (partial) + *.beaverbrooks.co.uk + Beaverbrooks.co.uk (partial) + *.becu.org + Boeing Employees Credit Union (partial) + *.becuonlinebanking.org + Boeing Employees Credit Union (partial) + *.bediff.com.br + Be Diff.com.br + *.bedis.eu + Bedis.eu + *.beender.co + beender.co + *.beenverified.com + BeenVerified (partial) + *.beetailer.com + Beetailer.com + *.begun.ru + Begun + *.behance.net + Behance (partial) + *.behr.com + Behr + *.bekb.ch + Schweizer Kantonalbanken + *.belezanaweb.net.br + Beleza na Web (partial) + *.bellareed.com + MarinellaRose.com + *.bellinghamschools.org + Bellingham School District (partial) + *.bellsouth.com + BellSouth (partial) + *.belnet.be + Belnet.be (partial) + *.benaughty.com + BeNaughty.com (partial) + *.bendigobank.com.au + Bendigo Bank + *.benefitsweb.com + benefitsweb.com + *.bennetts.co.uk + Bennetts (partial) + *.bentley.edu + Bentley Univerity (partial) + *.bepress.com + bepress + *.berkeley.edu + University of California, Berkeley (partial) + *.berlin-airport.de + Berlin Airport + *.berlin.de + Berlin.de + *.bernalbucks.org + Bernal Bucks + *.berryreview.com + BerryReview.com (false MCB) + *.beryl-themes.org + openDesktop.org + *.besmith.com + B. E. Smith + *.bestbuy.com + Best Buy (partial) + *.bestcovery.com + Bestcovery.com (partial) + *.bestofferbuy.com + BestOfferBuy.com + *.bestoliveoils.com + Best Olive Oils (partial) + *.bestpractical.com + Best Practical.com (partial) + *.bet555.eu + Bet555 + *.betabeat.com + Betabeat.com + *.bethere.co.uk + Telefónica (partial) + *.bethsoft.com + Bethsoft.com (partial) + *.betrad.com + Evidon Inc (partial) + *.betteradvertising.com + Evidon Inc (partial) + *.beyondsecurity.com + Beyond Security + *.bgpmon.com + BGPmon.net + *.bgpmon.net + BGPmon.net + *.bgr.com + BGR.com + *.bho.pl + bluehosting.pl (partial) + *.bhosted.nl + bHosted.nl (partial) + *.bhw.de + BHW.de + *.biapy.fr + Biapy.fr + *.bibbitec.com + bibbitec + *.bible.com + YouVersion + *.biblesociety.co.za + YouVersion + *.bidbubble.com + BidBubble.com (false MCB) + *.bidcactus.com + BidCactus.com + *.biditbob.com + BidItBob.com + *.bidsystem.com + Adknowledge (partial) + *.bidz.com + Bidz.com (partial) + *.bigboxsave.com + Bigboxsave.com + *.bigbrother.se + Big Brother.se (partial) + *.bigbrotherwatch.org.uk + Big Brother Watch + *.bigcartel.com + Big Cartel (partial) + *.bigchangeuk.co.uk + Big Change + *.bigcommerce.com + BigCommerce + *.bigdinosaur.org + Bigdinosaur.org + *.biggestloserclub.com + Biggest Loser Club.com + *.bighugelabs.com + BigHugeLabs + *.biglive.com + Big Live.com + *.bigstockimages.com + Bigstock (partial) + *.bigstockphoto.com + Bigstock (partial) + *.bild.de + Bild.de (partial) + *.billiger.de + billiger.de (partial) + *.bin-store.com + Bin-Store.com + *.binefreund.de + Floek.net + *.bing.com + Bing + *.biofitt.com + biofitt.com + *.bioinfo.pl + BioInfo.pl + *.biomedcentral.com + BioMed Central (false MCB) + *.biotrimlabs.com + Biotrim Labs.com + *.biowarestore.com + BioWare (partial) + *.bircko.com + Bircko.com + *.bis.doc.gov + U.S. Department of Commerce (partial) + *.bishopi.com + Bishop Interactive + *.bishopinteractive.com + Bishop Interactive + *.bit.ly + bit.ly + *.bit9.com + Bit9 (partial) + *.bitbucket.org + BitBucket (partial) + *.bitcasa.com + BitCasa (partial) + *.bitchmagazine.org + Bitch Magazine.org (partial) + *.bitcoin.com + Bitcoin.com + *.bitcoin.cz + Mining.Bitcoin.cz + *.bitcoin.de + Bitcoin.de + *.bitcoin.it + Bitcoin Wiki + *.bitcoin.org + Bitcoin + *.bitcoinapi.de + bitcoinapi.de + *.bitcoinarmory.com + Bitcoin Armory.com + *.bitcoincharts.com + Bitcoin Charts + *.bitcoinfoundation.org + Bitcoin Foundation.org + *.bitcoinity.org + Bitcoinity.org + *.bitcoinshop.us + BitcoinShop.US + *.bitcoinsil.co.il + Bitcoins il.co.il (false MCB) + *.bitcoinstore.com + BitcoinStore.com + *.bitcurex.com + Bitcurex.com + *.bitinstant.com + BitInstant (partial) + *.bitlove.org + Bitlove + *.bitmask.net + Bitmask.net (partial) + *.bitme.com + Bitme.com + *.bitminter.com + BitMinter.com + *.bitmit.net + Bitmit + *.bitnami.com + Bitnami.com + *.bitnamihosting.com + BitRock (partial) + *.bitnik.org + Bitnik.org + *.bitpay.com + BitPay + *.bitre.gov.au + Bureau of Infrastructure, Transport and Regional Economics + *.bitsontherun.com + bitsontherun.com (partial) + *.bitstamp.net + Bitstamp.net + *.bittiraha.fi + Bittiraha.fi + *.bittorrent.com + BitTorrent (partial) + *.bittrex.com + Bittrex.com + *.bizjournals.com + The Business Journals (partial) + *.bizographics.com + Bizo + *.bizrate-images.com + Bizrate.com (partial) + *.bizrate.com + Bizrate.com (partial) + *.bizshark.com + Bizshark + *.bkrtx.com + BlueKai (partial) + *.blackbaud.com + Blackbaud (partial) + *.blackberry.com + Blackberry (partial) + *.blackboard.com + Blackboard (partial) + *.blackducksoftware.com + Black Duck Software.com (partial) + *.blackhat.com + BlackHat + *.blackmesh.com + BlackMesh.com + *.blacknight.com + Blacknight Internet Solutions (partial) + *.blackphone.ch + Black Phone.ch + *.blacksuitit.com + BlackSuit IT.com + *.blackvpn.com + blackVPN + *.blau.de + Blau.de + *.blaze.com + blaze.com (partial) + *.blazonco.com + Blazonco.com + *.blender.org + Blender.org (partial) + *.bleutrade.com + Bleutrade.com + *.blinddesign.nl + Blinddesign.nl + *.bling4cars.com + Bling4cars + *.blkb.ch + Schweizer Kantonalbanken + *.blob.core.windows.net + Windows.net + *.blockchain.info + Blockchain.info + *.blockexplorer.com + BlockExplorer.com + *.blockstream.com + Blockstream.com (false MCB) + *.blog.bitcoin.de + Bitcoin.de + *.blog.flirble.org + The Flirble Organisation (partial) + *.blog.hipmunk.com + Hipmunk.com (false MCB) + *.blog.upc.edu + Polytechnic University of Catalonia (partial) + *.blogads.com + Pressflex (partial) + *.blogautomobile.fr + Blog Automobile + *.blogblog.com + Blogger (partial) + *.blogcatalog.com + BlogCatalog + *.blogger.co.uk + Blogger (partial) + *.blogger.com + Blogger (partial) + *.blogmark.me + Blogmark.me + *.blogo.it + blogo (partial) + *.blogspot.be + Blogger (partial) + *.blogspot.ca + Blogger (partial) + *.blogspot.co.uk + Blogger (partial) + *.blogspot.com + Blogger (partial) + *.blogspot.de + Blogger (partial) + *.blogspot.fi + Blogger (partial) + *.blogspot.fr + Blogger (partial) + *.blogspot.nl + Blogger (partial) + *.blogspot.no + Blogger (partial) + *.blogspot.se + Blogger (partial) + *.blogtalkradio.com + BlogTalkRadio + *.blogtopsites.com + Blog Top Sites.com + *.bloodhoundgang.com + Bloodhound Gang.com + *.bloomberg.com + Bloomberg (partial) + *.bloomberg.net + Bloomberg.net (partial) + *.bloombergsports.com + Bloomberg Sports.com + *.bloxcms.com + BLOX (partial) + *.bluecats.com + BlueCats.com (partial) + *.bluecava.com + BlueCava (partial) + *.bluefly.com + Bluefly (partial) + *.bluegenio.com + BlueGenio.com + *.bluehost-cdn.com + Bluehost-CDN.com + *.bluehost.com + BlueHost + *.bluekai.com + BlueKai (partial) + *.bluemountain.com + Blue Mountain + *.bluesnap.com + BlueSnap.com (partial) + *.bluessl.com + blueSSL + *.bluestatedigital.com + Blue State Digital (partial) + *.bluetooth.org + Bluetooth.org (partial) + *.bluewin.ch + Bluewin.ch (partial) + *.bm23.com + Bronto Software (partial) + *.bmc.com + BMC.com (partial) + *.bmmetrix.com + Bmmetrix.com (partial) + *.bmpharmacy.com + BM Pharmacy + *.bn-mclp.org + bn-MCLP.org (partial) + *.boalt.com + BOALT + *.board.carnegiescience.edu + Carnegie Institution for Science + *.boathousecrewshop.com + Boathouse Crew Shop + *.bobafamily.com + Boba Family + *.bobcares.com + Bobcares.com + *.bodybuilding.com + BodyBuilding.com (partial) + *.boe.es + Boe.es + *.bof.nl + Bits of Freedom + *.bofh.it + bofh.it + *.bohoomil.com + bohoomil.com + *.boingboing.net + Boing Boing Shop + *.boingo.com + Boingo + *.boingohotspot.net + Boingo + *.boldchat.com + BoldChat.com (partial) + *.boneblast.com + BoneBlast.com (false MCB) + *.book.invasion.com + Invasion.com (partial) + *.bookdepository.co.uk + The Book Depository + *.bookdepository.com + The Book Depository + *.booking.com + Booking.com + *.booklooker.de + booklooker.de + *.boomerang.com + Boomerang (partial) + *.boost.org + boost (partial) + *.boots.com + Boots.com (partial) + *.boots.no + Boots.no + *.bootstrapcdn.com + BootstrapCDN (partial) + *.boounce.com + Boounce + *.boozallen.com + Booz Allen.com (partial) + *.boredtodeath.me + Bored to Death + *.bornthiswayfoundation.org + Born This Way Foundation (partial) + *.boston.com + Boston.com (partial) + *.bostonglobe.com + The Boston Globe (partial) + *.bostonreview.net + Boston Review.com + *.boum.org + boum.org + *.bounce.io + Bounce.io + *.bouncyballs.org + Bouncy Balls.org + *.bourgeois.me + Bourgeois.me + *.box-look.org + openDesktop.org + *.box.com + Box (partial) + *.boxcdn.net + Box (partial) + *.boxee.tv + Boxee.tv (partial) + *.boxpn.com + Boxpn.com + *.boxwoodtech.com + Boxwood Technology + *.bpa.gov + Bonneville Power Administration (partial) + *.bps.org.uk + BPS (partial) + *.bpt.bz + Brown Paper Tickets (partial) + *.bpt.me + Brown Paper Tickets (partial) + *.br.inter.net + Inter.net (partial) + *.braincert.org + braincert.org + *.brainsonic.com + Brainsonic (partial) + *.braintreepayments.com + Braintreepayments.com + *.brainyquote.com + BrainyQuote.com + *.branch.com + Branch + *.branchable.com + Branchable.com + *.brandembassy.com + Brand Embassy (partial) + *.brandnewbooty.com + Brand New Booty + *.bransonzipline.com + Branson Zipline (partial) + *.brasil247.com + Brasil 24/7 + *.brassring.com + Kenexa (partial) + *.bravelyonward.com + Bravely Onward.com + *.brenet.de + BreNet (partial) + *.brevado.com + brevado + *.briansmith.org + Brian Smith.org + *.bridgeways.com + Bridgeways.com + *.briggs-riley.com + Briggs and Riley + *.brightcontext.com + BrightContext.com (partial) + *.brightcove.com + Brightcove (partial) + *.brighthub.com + Bright Hub.com (partial) + *.brightidea.com + Brightidea (partial) + *.brightkidsnyc.com + Bright Kids NYC + *.brightoncollectibles.com + Brighton (partial) + *.brilig.com + Brilig (partial) + *.bringthegig.com + Bring the Gig + *.brinkster.com + Brinkster.com + *.bris.ac.uk + University of Bristol (partial) + *.britannica.com + Britannica.com (partial) + *.bro.org + Bro.org (partial) + *.broadcasthe.net + BroadcasTheNet + *.broadcom.com + Broadcom + *.broadinstitute.org + Broad Institute + *.bromley.gov.uk + Bromley.gov.uk + *.bronto.com + Bronto Software (partial) + *.brooklinecollege.edu + Brookline College.edu + *.brooksidefund.com + Brookside Capital + *.brown.edu + Brown University (partial) + *.brownpapertickets.com + Brown Paper Tickets (partial) + *.brreisen.de + Bayrischer Rundfunk + *.bstatic.com + Booking.com + *.bt.com + BT (partial) + *.btc-e.com + BTC-E + *.btc-trade.ru + BTC-Trade.ru + *.btcgear.com + BTC Gear.com + *.btcstore.eu + BTC Store.eu + *.btdigg.org + BTDigg + *.bter.com + Bter.com + *.btguard.com + BTGuard.com + *.btrll.com + BrightRoll (partial) + *.btsport.com + BT Sport + *.btstatic.com + BrightTag (partial) + *.btwholesale.com + BT Wholesale.com + *.btwifi.com + BT Wi-fi + *.bu.edu + Boston University (partial) + *.bucketexplorer.com + Bucket Explorer.com (partial) + *.bucyrustelegraphforum.com + Bucyrus Telegraph Forum + *.buddypress.org + BuddyPress.org + *.budgetinsurance.com + Budget Insurance + *.budsgunshop.com + Buds Gun Shop + *.buerger-cert.de + Bürger-CERT + *.buffalo.edu + University at Buffalo (partial) + *.buffalostate.edu + Buffalo State College (partial) + *.bufferapp.com + Buffer (partial) + *.bufferbloat.net + Bufferbloat + *.bugmenot.com + BugMeNot.com + *.bugs.gpodder.org + gPodder (partial) + *.bugzilla.org + Bugzilla (partial) + *.bulletin.net + Bulletin.net + *.bulletinmessenger.net + Bulletin Messenger.net + *.bundanon.com.au + Bundanon Trust + *.bundeskanzlerin.de + Bundeskanzlerin + *.bundespolizei.de + Bundespolizei + *.bundestag.de + Deutscher Bundestag (partial) + *.bunkus.org + Bunkus.org + *.burlingtonfreepress.com + Burlington Free Press + *.burst.net + BurstNET (partial) + *.burstmedia.com + Burst Media + *.burstnet.com + Burstnet + *.burstnet.eu + BurstNET (partial) + *.burthub.com + Burt hub.com + *.business.gov.au + BusinessAU + *.business2community.com + Business 2 Community (partial) + *.businessinsider.com + BusinessInsider (partial) + *.businesslink.gov.uk + GOV.UK + *.businesswire.com + Berkshire-Hathaway (partial) + *.butterflylabs.com + Butterfly Labs.com (partial) + *.buyboard.com + BuyBoard (partial) + *.buycraft.net + Buycraft.net + *.buysellads.com + BuySellAds (partial) + *.buzzbytes.net + Buzzbytes.net + *.buzzdock.com + Buzzdock (partial) + *.buzzillions.com + Buzillions.com (partial) + *.buzzurl.jp + Buzzurl + *.bviphotovideo.com + BVI Photo Video.com + *.bwin.com + iGaming (partial) + *.bycupon.com + By Cupón + *.bydavidwittig.com + by David Wittig.com + *.byteark.com + Byteark.com (partial) + *.bytemark.co.uk + Bytemark.co.uk (partial) + *.byu.edu + Brigham Young University (partial) + *.c-and-a.com + c-and-a.com + *.c-col.com + Compete (partial) + *.c-spanvideo.org + C-SPAN Video.org (partial) + *.c.dk + c.dk + *.c13.hesecure.com + hesecure.com + *.c3s.cc + C3S.cc + *.ca.eprncdn.com + eprncdn.com + *.cabinetoffice.gov.uk + Cabinet Office + *.cable-tv-deals.com + www.cable-tv-deals.com + *.cables.com + Cables.com + *.cacert.org + CACert.org (CAcert) + *.cachefly.net + CacheFly (partial) + *.cad-comic.com + Ctrl+Alt+Del + *.cadetnet.gov.au + Cadetnet + *.cafegate.com + cafegate.com + *.cafepress.co.uk + CafePress (partial) + *.cafepress.com + CafePress (partial) + *.cagw.org + CAGW.org (partial) + *.caintvnetwork.com + CainTV (partial) + *.cair.com + CAIR.com (partial) + *.calgunsfoundation.org + Calguns Foundation.org + *.californiaunitedbank.com + California United Bank + *.californiawalkintubcompany.com + California Walk In Tub Company.com + *.caller.com + Caller.com (partial) + *.calpoly.edu + California Polytechnic State University (partial) + *.caltech.edu + Caltech + *.calyxinstitute.org + Calyx Institute + *.cam.ac.uk + University of Cambridge (partial) + *.cambridge.org + Cambridge University Press (partial) + *.campaigneq.com + CampaignEQ.com + *.campaigner.com + Campaigner (partial) + *.campaignercrm.com + CampaignerCRM.com + *.campbx.com + CampBX.com + *.campstaffusa.com + Camp Staff USA + *.campuspack.eu + Campus Pack (partial) + *.campuspack.net + Campus Pack (partial) + *.cams.com + Cams.com (partial) + *.canadapost.ca + Canada Post + *.canadianwebhosting.com + Canadian Web Hosting (partial) + *.canaltech.com.br + canaltech.com.br + *.canlialem.com + Canlı Alem + *.canonical.com + Canonical (partial) + *.cansecwest.com + CanSecWest + *.canv.as + Canvas + *.canvasndecor.com + Canvas n decor.com + *.capwiz.com + capwiz.com (partail) + *.caradvice.com.au + CarAdvice + *.cardcash.com + CardCash.com + *.cardealerstudy.com + BMW China Custom Login + *.cardiff.ac.uk + Cardiff University (partial) + *.care2.com + Care2.com + *.careerbuilder.co.uk + CareerBuilder (partial) + *.careerperfect.com + CareerPerfect + *.careers.talemetry.com + Talemetry.com (partial) + *.carekris.com + Carekris.com + *.carepackage.org + CAREpackage (partial) + *.carestream.com + Carestream.com + *.cargocollective.com + Cargo (partial) + *.cari.net + CARI.net (partial) + *.carleton.ca + Carleton.ca (partial) + *.carleton.edu + Carleton College + *.carnegiescience.edu + Carnegie Institution for Science + *.carpromods.com + CarProMods.com + *.cartercenter.org + CarterCenter.org + *.cas.org + Chemical Abstracts Service (partial) + *.casaar.com + Casaar.com (false MCB) + *.casalemedia.com + Casale Media (partial) + *.caseking.de + Caseking.de + *.cashback.co.uk + Cashback.co.uk (partial) + *.cashboardapp.com + subimage (partial) + *.casinoestrella.com + CasinoEstrella.com + *.casperogfrank.dk + Casper og Frank.de (false MCB) + *.cassinoestrela.com + CassinoEstrela + *.castel-bayart.com + Castel-Bayart + *.castle-technology.co.uk + Castle-Technology.co.uk + *.catalysthost.com + Catalyst Host.com + *.catalysttg.com + Catalyst Technology Group + *.catlinseaviewsurvey.com + Catlin Sea Survey + *.catn.com + CatN.com + *.causes.com + Causes (partial) + *.cbc.ca + Canadian Broadcasting Corporation (partial) + *.cbs.com + CBS (partial) + *.cbsistatic.com + CBSIstatic.com (partial) + *.cbsnews.com + CBS (partial) + *.cbsstatic.com + CBS (partial) + *.cbsstore.com + CBS Store + *.cc.umanitoba.ca + University of Manitoba (partial) + *.ccavenue.com + CCAvenue + *.ccc.co.il + CCC.co.il + *.ccc.de + ccc.de (CAcert) + *.ccccloud.com + CCC cloud.com + *.cch.com + CCH + *.cchcatalog.com + CCH Information Solutions + *.cchgroup.com + CCH + *.ccrjustice.org + Center for Constitutional Rights + *.ccs.com + CCS (partial) + *.cdig.me + cdig.me + *.cdn-apple.com + Apple.com (partial) + *.cdn-hotels.com + Hotels.com (partial) + *.cdn-seekingalpha.com + CDN-Seeking Alpha.com + *.cdn.kixeye.com + KIXEYE (partial) + *.cdninstagram.com + CDN Instagram.com + *.cdnwp.com + Whitepages.com (partial) + *.cdt.org + Center for Democracy & Technology + *.cduniverse.com + CD Universe (partial) + *.cduniverse.ws + CD Universe (partial) + *.cecpdonline.org + Center for Early Childhood Professional Development + *.ceejay.net + CeeJay.net (partial) + *.cengagebrain.co.uk + Cengage (partial) + *.cengagebrain.com + Cengage (partial) + *.centos.org + CentOS.org (partial) + *.centrum.cz + Centrum.sk_cz (partial) + *.centrum.sk + Centrum.sk_cz (partial) + *.centzy.com + Centzy + *.cerit-sc.cz + CERIT-SC.cz + *.cerit.cz + CERIT.cz + *.cern.ch + CERN (partial) + *.cert-bund.de + CERT-Bund + *.cert-verbund.de + CERT-Verbund + *.cert.at + CERT.at + *.cert.gov.uk + CERT-UK + *.cert.org + CERT + *.cert.pl + CERT Polska + *.certifiedsecure.com + Certified Secure.com + *.certigna.fr + Certigna.fr (partial) + *.cesnet.cz + CESNET (partial) + *.cex.io + CEX.IO (partial) + *.cf-example.com + cf-example.com + *.cf.ac.uk + Cardiff University (partial) + *.cfda.gov + Catalog of Domestic Federal Assistance + *.cfif.org + Center for Individual Freedom (partial) + *.cfr.org + Council on Foreign Relations (partial) + *.cftc.gov + Commodity Futures Trading Commission (partial) + *.cgc.gov.au + Commonwealth Grants Commission + *.ch.ch + ch.ch + *.ch9.ms + ch9.ms (partial) + *.chainlove.com + Chainlove.com + *.challengepost.com + ChallengePost (partial) + *.chalmers.se + Chalmers + *.chambal.com + Chambal (partial) + *.championcasino.net + ChampionCasino.net (partial) + *.champssports.com + Champs Sports (partial) + *.change.org + Change.org + *.chango.com + Chango + *.channel4.com + Channel 4 (partial) + *.channelintelligence.com + ChannelIntelligence.com (partial) + *.channelme.tv + channelme.tv + *.chapman.edu + Chapman.edu + *.charitynavigator.org + Charity Navigator (false MCB) + *.charitywater.org + charity water.org + *.charityweb.net + CharityWeb (partial) + *.chartbeat.com + Chartbeat (partial) + *.chartbeat.net + Chartbeat (partial) + *.chase.com + Chase + *.chatango.com + Chatango.com + *.chatme.im + ChatMe.im (partial) + *.chaton.com + ChatON + *.chatoncdn.com + ChatON + *.chatter.com + Chatter + *.chaturbate.com + Chaturbate.com (partial) + *.chdir.org + chdir.org (partial) + *.cheapairportparkingbirmingham.com + Cheap Airport Parking + *.cheapssl.com + CheapSSL.com + *.check24.de + Check24.de + *.checkm8.com + CheckM8 (partial) + *.checkpoint.com + Check Point (partial) + *.cheetahmail.com + CheetahMail + *.cheezburger.com + Cheezburger + *.chemspider.com + Royal Society of Chemistry (partial) + *.cherry.de + Cherry.de + *.chicagotribune.com + Chicago Tribune (partial) + *.chickensoup.com + Chicken Soup for the Soul + *.chillicothegazette.com + Chillicothe Gazette + *.chillingeffects.org + ChillingEffects + *.chime.in + Chime.in + *.chinadialogue.net + chinadialogue.net + *.chinapaymentservices.com + China Payment Services + *.chip-kiosk.de + CHIP-Kiosk.de + *.chipworks.com + Chipworks + *.chistescortosbuenos.com + Chistes Cortos Buenos.com (partial) + *.chitika.com + Chitika (partial) + *.chitika.net + Chitika.net (partial) + *.choopa.com + Choopa.com + *.chrisanthemums.com + Chrisanthemums + *.christiangale.com + ChristianGale.com + *.chromeadblock.com + AdBlock + *.chromedata.com + Chrome Data + *.chromespinners.com + Chrome Spinners + *.chromium.org + Chromium.org + *.chron.com + Houston Chronicle (partial) + *.chroniclebooks.com + McEvoy Group (partial) + *.chroniclesofgeorge.com + The Chronicles of George + *.chronixradio.com + ChroniX Radio.com + *.chzbgr.com + Cheezburger + *.ci.uchicago.edu + University of Chicago (partial) + *.cia.com + CIA Cybersurf + *.ciao.com + Ciao (partial) + *.cibc.com + CIBC + *.cic.ch + Banque CIC (Suisse) + *.cic.fr + Banque CIC + *.cihar.com + Cihar.com (partial) + *.cinapalace.com + cinapalace.com + *.cincinnati.com + Cincinnati.com (partial) + *.cineble.com + cineble.com + *.cinemanow.com + CinemaNow (partial) + *.cinemovies.fr + CineMovies + *.cinfu.com + Cinfu.com (partial) + *.cio.com + CIO.com (partial) + *.ciphershed.org + CipherShed.org + *.cir.ca + Cir.ca + *.circleofmoms.com + Circle of Moms + *.circuitspro.name + Circuitspro.name + *.circularhub.com + Circular Hub + *.circules.com + Hearst Magazines + *.cironline.org + CIR Online.org (partial) + *.cirrusmedia.com.au + Cirrus Media.com.au (partial) + *.cirw.in + cirw.in + *.citadium.com + Citadium.com (partial) + *.citi.com + Citi.com + *.citizen-times.com + Asheville Citizen-Times + *.citizen.org + Public Citizen + *.citizensforethics.org + CREW (partial) + *.citrix.com + Citrix (partial) + *.citrixonline.com + Citrix (partial) + *.city.ac.uk + City University London + *.city.com.ua + City.com.ua + *.cityofchicago.org + City of Chicago + *.citywerkz.com + Citywerkz.com + *.ciuvo.com + Ciuvo.com + *.civicrm.org + CiviCRM + *.civicscience.com + CivicScience (partial) + *.ciw.edu + Carnegie Institution for Science + *.cj.com + Commission Junction + *.cjs-cdkeys.com + CJS-CDKeys.com + *.cl.ly + Cl.ly (partial) + *.claimformsplus.com + Claim Forms Plus + *.clara.net + Claranet (partial) + *.claranet.nl + Claranet (partial) + *.clarionledger.com + Clarion-Ledger + *.clasconsultants.net + CLAS Consultants + *.cld.me + Cl.ly (partial) + *.cleanenergyexperts.com + Clean Energy Experts + *.cleanenergyfinancecorp.com.au + Clean Energy Finance Corporation + *.cleanenergyregulator.gov.au + Clean Energy Regulator + *.cleanprint.net + CleanPrint.net + *.clear-link.com + Clear-link.com + *.cleverbridge.com + cleverbridge (partial) + *.cleverbridge.org + cleverbridge (partial) + *.cli-apps.org + openDesktop.org + *.cli.linksynergy.com + Rakuten LinkShare (partial) + *.click-sec.com + Click-Sec.com + *.clickability.com + Dynamic Site Platform + *.clickandpledge.com + Click and Pledge.com + *.clickbank.com + ClickBank + *.clickbank.net + ClickBank + *.clickdelivery.gr + Clickdelivery.gr + *.clickequations.net + ClickEquations.net + *.clickfun.com + Clickfun Casino + *.clickfuncasino.com + Clickfun Casino + *.clicklivechat.com + Clicklivechat.com + *.clickmotive.com + ClickMotive (partial) + *.clickon.com.ar + ClickOn + *.clicksor.com + Clicksor.com (partial) + *.clicktale.com + ClickTale + *.clicktale.net + ClickTale + *.clicktools.com + Clicktools + *.clicktracks.com + Lyris (partial) + *.clients.google.com + Google APIs + *.clothingattesco.com + Clothing at Tesco.com + *.cloudaccess.net + Cloud Access.net (partial) + *.cloudcontrol.com + cloudControl.com (partial) + *.cloudera.com + Cloudera.com + *.cloudflare.com + CloudFlare + *.cloudflareapp1.info + Respawn Security + *.cloudforce.com + Cloudforce.com + *.cloudforge.com + CloudForge (partial) + *.cloudfoundry.com + Cloud Foundry (partial) + *.cloudfront.net + Cloudfront + *.cloudhexa.com + Cloudhexa Network + *.cloudinary.com + Cloudinary (partial) + *.cloudns.com.au + CloudNS.com.au + *.cloudproven.net + Cloud Proven.net + *.cloudscaling.com + Cloudscaling.com + *.cloudsecurityalliance.org + Cloudsecurityalliance.org + *.cloudset.net + cloudset.net + *.cloudsigma.com + CloudSigma + *.cloudsponge.com + CloudSponge (partial) + *.cloudswitch.com + CloudSwitch + *.cloudtrax.com + CloudTrax.com + *.cloudup.com + Cloudup.com + *.cloudwear.com + Cloudwear.com + *.clssl.org + clssl.org + *.cltglobal.com + CLTglobal.com + *.clusters.de + Clusters.de + *.cmbi.ru.nl + Radboud University Nijmegen + *.cmcdn.net + Carbonmade (partial) + *.cmpnet.com + CMP + *.cmpxchg8b.com + CMPXCHG8B + *.cms.gov + US government (partial) + *.cmu.edu + Carnegie Mellon University (partial) + *.cnbc.com + CNBC (partial) + *.cnchost.com + XO Communications (partial) + *.cnn.com + CNN.com (partial) + *.cntraveler.com + Condé Nast Traveler (partial) + *.co-operativebank.co.uk + co-operative bank + *.co3sys.com + Co3 Sys.com + *.coag.gov.au + Council of Australian Governments + *.cobaltmania.com + Cobalt Mania.com + *.code.org + Code.org + *.codeaurora.org + CodeAurora + *.codecoop.org + Codecoop (CAcert) + *.codecov.io + Codecov + *.codefuel.com + Codefuel.com (partial) + *.codefund.io + codefund.io (partial) + *.codepen.io + CodePen.io (partial) + *.codeplex.com + Codeplex + *.coderwall.com + Coderwall + *.coe.int + Council of Europe (partial) + *.cognesia.net + Cognesia.net + *.coinaxis.com + CoinAxis.com + *.coinbase.com + Coinbase (partial) + *.cola-hotel.net + ColaHotel + *.collab.net + CollabNet + *.collabora.co.uk + Collabora (partial) + *.collateralmurder.com + Collateral Murder + *.collective-media.net + Collective Media (partial) + *.collegeboundfund.com + CollegeBoundfund (partial) + *.collegeclublife.com + COLLEGEclubLIFE.com + *.collegiatelink.net + CollegiateLink (partial) + *.colocationamerica.com + Colocation America.com + *.colorado.edu + University of Colorado at Boulder (partial) + *.coloradoan.com + The Coloradoan + *.coloradocaptures.com + Colorado Captures + *.colors-il.com + colors-il.com + *.colossal.com + ThisisColossal.com (false MCB) + *.columbia.edu + Columbia University (partial) + *.comcast.com + Comcast (partial) + *.comcast.net + Comcast.net (partial) + *.comcav.com + ComCav.com + *.comcourts.gov.au + Commonwealth Courts Portal + *.comenity.net + Comenity.net (partial) + *.comicvine.com + Whiskey Media (partial) + *.comixology.com + comiXology.com (partial) + *.comm100.cn + com100.cn + *.commando.io + Commando.io (partial) + *.commoncriteriaportal.org + Common Criteria Portal + *.commotionwireless.net + Commotionwireless.net + *.communigate.com + CommuniGate + *.communigator.co.uk + CommuniGator.co.uk + *.community-journalism.net + Texas Center for Community Journalism + *.comodo.com + Comodo + *.companieshouse.gov.uk + CompaniesHouse + *.comparethemarket.com + Compare The Market + *.comparis.ch + Comparis.ch + *.compendium.com + Compendium.com + *.compendiumblog.com + Compendium + *.compete.com + Compete (partial) + *.compliancesigns.com + ComplianceSigns.com + *.compranoexterior.com.br + CompraNoExterior.com.br (partial) + *.compteur.fr + Compteur.fr + *.computer.ly + Computer Libya + *.computerandvideogames.com + Future Publishing (partial) + *.computerbase.de + Computerbase.de (partial) + *.computersnyou.com + ComputersnYou.com (partial) + *.computeruniverse.net + computeruniverse + *.computerworld.com + ComputerWorld (partial) + *.computerworld.com.au + IDG.com.au + *.comscore.com + comScore.com (partial) + *.comsigntrust.com + ComSignTrust.com + *.comsuper.gov.au + ComSuper + *.concur.com + Concur.com + *.condenast.co.uk + Condé Nast (partial) + *.condenast.com + Condé Nast (partial) + *.condosforeveryone.com + Condominiums for Everyone + *.conduit-data.com + conduit-data.com + *.conduit.com + Conduit (partial) + *.conetrix.com + CoNetrix + *.confianzaonline.es + Confianza Online + *.confirmit.com + Confirmit + *.conformal.com + Conformal Systems + *.confused.com + Confused.com (partial) + *.congstar.de + congstar + *.connect4fitness.com + Connect4Fitness + *.connexity.net + Connexity.net + *.connextra.com + connextra.com (partial) + *.connman.net + ConnMan + *.conoha.jp + ConoHa.jp + *.conscallhome.com + ConsCallHome.com + *.constantcontact.com + Constant Contact (partial) + *.consumerreports.org + Consumer Reports.com (false MCB) + *.consumerreportscdn.org + Consumer Reports (partial) + *.content.ad + Content.ad (partial) + *.content.compendiumblog.com + Compendium + *.contentabc.com + contentabc.com + *.contextly.com + Contextly.com (partial) + *.contextweb.com + PulsePoint (partial) + *.controllermax.com + ControllerMAX.com (false MCB) + *.controlscan.com + ControlScan.com + *.convar.com + CONVAR (partial) + *.convar.de + CONVAR (partial) + *.conversionruler.com + MarkRuler (partial) + *.convio.net + Convio + *.conviva.com + Conviva (partial) + *.coochey.net + Coochey.net (false MCB) + *.cooliris.com + Cooliris + *.coolminiornot.com + CoolMiniOrNot.com + *.copernic.com + Copernic.com (partial) + *.copiny.com + Copiny (partial) + *.copy.com + Copy.com (partial) + *.copy.me + eToro (partial) + *.copyright-watch.org + Copyright-Watch.org + *.copyright.com + Copyright Clearance Center + *.coreboot.org + coreboot (partial) + *.corecommerce.com + CoreCommerce + *.coreix.net + Coreix (partial) + *.corelan.be + Corlan Team + *.coremetrics.com + CoreMetrics (partial) + *.coremotives.com + CoreMotives.com + *.coreos.com + CoreOS.com + *.coresecurity.com + Core Security.com (partial) + *.cornell.edu + Cornell University (partial) + *.corporate-ir.net + corporate-ir.net (partial) + *.corsair.com + Corsair.com (partial) + *.cortera.com + Cotera (partial) + *.cosmosmagazine.com + COSMOS magazine (partial) + *.costco.com + Costco + *.cottages4you.co.uk + Wyndham (partial) + *.couchbase.com + Couchbase (partial) + *.countermail.com + CounterMail.com + *.coupons.com + Coupons, Inc (partial) + *.courant.com + Tribune (partial) + *.courierpostonline.com + Courier-Post (partial) + *.coursera.org + Coursera + *.coveralls.io + Coveralls.io + *.coverforyou.com + Coverforyou.com + *.coveritlive.com + CoveritLive.com (partial) + *.coverity.com + Coverity.com (partial) + *.coverstand.com + CoverStand.com + *.covisint.com + Covisint + *.cox.com + Cox Communications (partial) + *.cox.net + Cox Communications (partial) + *.coxbusiness.com + Cox Communications (partial) + *.coxds.com + Cox Digital Solutions (partial) + *.cpanel.net + cPanel (partial) + *.cpcache.com + CafePress (partial) + *.cpmstar.com + CPMStar + *.cpni.gov.uk + Centre for the Protection of National Infrastructure (CPNI) + *.cpsc.gov + CPSC.gov + *.cpunks.org + Cpunks.org + *.cr0.org + cr0.org (partial) + *.crackedconsole.com + crackedconsole.com + *.craftbanter.com + CraftBanter + *.craftstats.com + CraftStats.com + *.craigslist.org + Craigslist.org (partial) + *.crainsnewyork.com + Crain Communications (partial) + *.crashplan.com + CrashPlan (partial) + *.crashspace.org + Crash Space + *.crate.io + Crate.io + *.crazyegg.com + Crazy Egg (partial) + *.crazzed.com + Crazzed.com + *.create.msdn.com + MSDN (partial) + *.createsend1.com + createsend1.com + *.creation.co.uk + Creation + *.creativecommons.org + Creative Commons (partial) + *.creativelittlereaders.com + Creative Little Readers.com (false MCB) + *.creativepartnershipsaustralia.org.au + Creative Partnerships Australia + *.creativeskills.be + Creativeskills.be (false MCB) + *.creditdisputeprogram.com + CreditDisputeProgram.com + *.creditrepairtrust.com + Credit Repair Trust.com + *.creditreportnation.com + Credit Report Nation + *.crikey.com.au + Crikey (partial) + *.crimecommission.gov.au + Australian Crime Commission + *.criteo.com + Criteo (partial) + *.crittercism.com + Crittercism.com (partial) + *.crn.com + CRN + *.crocko.com + Crockotec (partial) + *.crocs.com + Crocs + *.cronius.nl + Cronius.nl + *.crossmediaservices.com + ShopLocal + *.crossref.org + CrossRef.org (partial) + *.crossrider.com + Crossrider (partial) + *.crowdculture.se + CrowdCulture.se + *.crowdfactory.com + Crowd Factory + *.crowdscience.com + Crowd Science (partial) + *.crowdtangle.com + CrowdTangle (partial) + *.crsspxl.com + Cross Pixel Media (partial) + *.cru.fr + cru.fr + *.cru.org + Cru.org + *.crucial.com + Crucial.com (partial) + *.cruisersforum.com + CruisersForum.com + *.crwdcntrl.net + Lotame (partial) + *.cryptabyte.com + CryptAByte.com + *.cryptad.com + CryptAd.com + *.crypteianetworks.com + Crypteia Networks.com (partial) + *.cryptip.com + CryptIP.com + *.crypto.cat + Crypto.cat + *.cryptocloud.com + Cryptocloud (partial) + *.cryptocloud.org + Cryptocloud (partial) + *.cryptocoinsnews.com + CryptoCoinsNews.com + *.cryptohaze.com + Cryptohaze + *.cryptomilk.org + cryptomilk.org (partial) + *.cryptonit.net + cryptonit + *.cryptoseal.com + CryptoSeal.com + *.cryptothrift.com + CryptoThrift.com + *.cryptovpn.com + CryptoVPN.com + *.cs-cart.com + CS-Cart + *.cs.cf.ac.uk + Cardiff University (partial) + *.cs.oberlin.edu + Oberlin College (partial) + *.cs.stonybrook.edu + Stony Brook University (partial) + *.csc.com + CSC (partial) + *.csc.gov.au + Commonwealth Superannuation Corporation + *.cscglobal.com + Corporation Service Company + *.csiro.au + CSIRO (partial) + *.csis-scrs.gc.ca + Canadian Security Intelligence Service + *.csis.dk + CSIS.dk + *.csis.gc.ca + Canadian Security Intelligence Service + *.csis.org + CSIS.org + *.csmres.co.uk + Intuitiv (partial) + *.cspforum.eu + CSP Forum.eu + *.cspinet.org + CSPInet.org + *.css.gov.au + Commonwealth Superannuation Scheme + *.csulb.edu + California State University (partial) + *.csupomona.edu + California Polytechnic State University, Ponoma (partial) + *.ctpsnet.com + Crimtan (partial) + *.ctswholesalesunglasses.com + CTS Wholesale Sunglasses + *.cubics.com + Cubics + *.culturesforhealth.com + Cultures for Health.com + *.cumulusnetworks.com + Cumulus Networks (partial) + *.cunb.com + California United Bank + *.cuny.edu + City University of New York (partial) + *.cupcake.io + Cupcake + *.cupcake.is + Cupcake + *.cupid.com + Cupid (partial) + *.cupidplc.com + Cupid plc.com (partial) + *.curate.us + Curate.Us (partial) + *.curbed.com + Curbed.com (partial) + *.curlingworld.com + Curling World.com + *.custhelp.com + RightNow Technologies (partial) + *.custodianvaults.com.au + Custodian Vaults.com.au + *.customer.io + Customer.io (partial) + *.customerhub.net + Infusionsoft (partial) + *.customerlobby.com + Customer Lobby (partial) + *.customersaas.com + customersaas.com + *.customersvc.com + customersvc.com + *.cutedigi.com + CuteDigi + *.cuusoo.com + Cuusoo (partial) + *.cv.uma.es + Uma.es + *.cvent.com + Cvent.com (partial) + *.cvut.cz + Czech Technical University in Prague + *.cwi.nl + Centrum Wiskunde & Informatica + *.cwru.edu + Case Western Reserve University (partial) + *.cwspodmusic.com + CWSPOD Music (partial) + *.cxense.com + cXense + *.cxt.ms + Cxt.ms + *.cyanogenmod.org + CyanogenMod.org (partial) + *.cybercon.com + Cybercon (partial) + *.cyberduck.io + Cyberduck.io + *.cyberghostvpn.com + CyberGhost + *.cyberguerrilla.org + CyberGuerrilla.org + *.cyberphoto.fi + CyberPhoto AB + *.cyberphoto.se + CyberPhoto AB + *.cyberstreetwise.com + Cyberstreetwise + *.cybertip.ca + Cybertip.ca + *.cyberwar.nl + Cyberwar.nl + *.cypherpunks.ca + Cypherpunks.ca + *.cyphertite.com + Conformal Systems + *.cypouz.com + cypouz.com + *.d4designstudios.com + D4design Studios.com (false MCB) + *.daad.de + German Academic Exchange Service + *.dab-bank.de + DAB Bank + *.dabs.com + dabs (partial) + *.dagbladet.no + Dagbladet.no (partial) + *.dailydot.com + DailyDot (partial) + *.dailyherald.com + Daily Herald + *.dailyhiit.com + DailyHiit.com + *.dailymail.co.uk + Daily Mail (partial) + *.dailypix.me + DailyPix + *.danblah.com + dan blah.com (false MCB) + *.dancingastronaut.com + Dancing Astronaut (partial) + *.danhlode.com + danhlode.com + *.daniweb.com + DaniWeb.com + *.dante.net + DANTE.net (partial) + *.danzappone.com + The World According to Nouns + *.dar.fm + DAR.fm + *.daringfireball.net + Daring Fireball + *.darkmoney.cc + DarkMoney.cc + *.dartlang.org + Dart Lang.org + *.dartmouth.edu + Dartmouth College (partial) + *.das-elena-verfahren.de + ELENA + *.dashlane.com + Dashlane.com + *.dassaultfalcon.com + Dassault Falcon + *.data.aad.gov.au + Australian Antarctic Data Centre + *.data.com + Data.com + *.data.fm + data.fm + *.data.gov.au + data.gov.au + *.database.com + Database.com (partial) + *.datacamp.com + DataCamp.com + *.datacard.com + Datacard.com + *.datacell.com + DataCell + *.datacenterknowledge.com + DataCenterKnowledge.com (partial) + *.datacentrumgids.nl + DatacentrumGids.nl + *.datahc.com + dataHC.com + *.datamappi.fi + Datamappi.fi + *.dataminelab.com + DataMineLab.com (partial) + *.datamonitor.com + Datamonitor.com (partial) + *.datatables.net + DataTables.net + *.dataxu.com + DataXu + *.datenretter.de + CONVAR (partial) + *.datenschutz-ist-buergerrecht.de + Datenschutz ist Bürgerrecht + *.datstathost.com + DatStat + *.daumcdn.net + Daum Communications (partial) + *.davidsontutoring.com + Davidson Tutoring (false MCB) + *.davincivaporizer.com + Davinci Vaporizor + *.davis.com + Davis Instruments (partial) + *.davissystem.net + DavisSystem + *.dawanda.com + DaWanda (partial) + *.dawandastatic.com + DaWanda (partial) + *.dbackpolice.com + DbackPolice.com + *.dbapp.netdna-cdn.com + Dagens Bedste.de (partial) + *.dbforums.com + dBforums + *.dcpower.eu + DC Power.eu (false MCB) + *.dd-wrt.com + DD-WRT + *.de-cix.net + DE-CIX + *.de17a.com + De17a.com + *.dealextreme.com + Deal Extreme + *.debian-art.org + openDesktop.org + *.debian-fr.org + Debian-fr + *.debian-ports.org + Debian (partial) + *.debian.net + Debian (partial) + *.debian.org + Debian (partial) + *.debuggify.net + Debuggify.net + *.deciduouspress.com.au + Deciduous Press.com.au + *.decipherinc.com + Decipher Inc.com + *.decisionbriefs.com + DecisionBriefs + *.decorrespondent.nl + De Correspondent.nl + *.dedicatedgaming.com.au + Dedicated Gaming + *.deezer.com + Deezer + *.defcon.org + Defcon + *.defenseone.com + Defense One.com (partial) + *.defsounds.com + Defsounds + *.degica.com + Cogen Media (partial) + *.deimos.fr + Deimos.fr + *.delawareonline.com + Delaware Online (partial) + *.deliciousgreencoffee.com + Delicious Green Coffee.com + *.dell.com + Dell (partial) + *.demandbase.com + Demandbase + *.demandmedia.com + Demand Media (partial) + *.demandprogress.org + Demand Progress + *.demandstudios.com + Demand Media (partial) + *.demandware.com + Demandware (partial) + *.demandware.net + Demandware (partial) + *.demdex.com + Adobe Digital Marketing + *.demdex.net + Adobe Digital Marketing + *.democracyinaction.org + DemocracyInAction + *.democratandchronicle.com + Democrat and Chronicle (partial) + *.demworks.org + DemWorks.org + *.denh.am + Denh.am + *.dentalxchange.com + EDI Health Group + *.depositfiles.com + Deposit Files (partial) + *.deprexis.com + deprexis (partial) + *.derby.ac.uk + University of Derby (partial) + *.dersverilir.net + DersVerilir.net + *.derwesten.de + Derwesten.de + *.desertnews.com + Desert News (partial) + *.designaddict.com + DesignAddict + *.desire2learn.com + Desire2learn.com + *.desk.com + Desk.com + *.desura.com + Desura (partial) + *.details.com + Details (partial) + *.detectify.com + Detectify + *.deusm.com + DeusM (partial) + *.developerforce.com + Salesforce.com (partial) + *.devzing.com + devZing.com + *.dezertdepot.com + Dezert Depot + *.dfat.gov.au + Department of Foreign Affairs and Trade + *.dfiles.eu + DFiles.eu + *.dfn.de + Deutsches Forschungsnetz + *.dfrdb.gov.au + Defence Force Retirement and Death Benefits Scheme + *.dftba.com + DFTBA Records + *.dha.gov.au + Defence Housing Australia + *.dhgate.com + DHgate.com (partial) + *.dhl.de + DHL.de + *.di.dk + Confederation of Danish Industry (partial) + *.dianomi.com + dianomi (partial) + *.diasporafoundation.org + Diaspora + *.dice.com + Dice (partial) + *.digg.com + Digg (partial) + *.digi.insightmgr.com + Digitaria (partial) + *.digia.com + Digia (partial) + *.digibib.net + DigiBib.net + *.digicert.com + DigiCert + *.digikam.org + digiKam.org + *.digikey.com + Digi-Key (partial) + *.digitalcourage.de + Digitalcourage.de + *.digitaldollhouse.com + Digital Dollhouse.com (false MCB) + *.digitale-diathek.net + Digitale Diathek (partial) + *.digitalnewsagency.com + Digital News Agency.com + *.digitalocean.com + Digital Ocean.com + *.digitalpacific.com.au + Digital Pacific.com.au + *.digitalpoint.com + Digital Point Solutions (partial) + *.digitalriver.com + Digital River (partial) + *.digitaltrends.com + Digital Trends.com (partial) + *.digium.com + Digium (partial) + *.diigo.com + Diigo + *.directline.com + Direct Line.com + *.directorystore.com + SuperMedia (partial) + *.directrev.com + directrev.com + *.dirxion.com + Dirxion + *.discojuice.org + discojuice.org (partial) + *.disconnect.me + Disconnect.me + *.discountclick.com + Advantage + *.discourse.org + Discourse.org (partial) + *.discover.com + Discover.com + *.discovercard.com + Discover Card.com + *.discovermagazine.com + Discover Magazine (partial) + *.discovermerchants.com + Discover Merchants.com + *.discovernetwork.com + Discover Network.com (partial) + *.discoversignage.com + Discover Signage.com + *.discovery.com + Discovery Communications (partial) + *.discshop.se + discshop.se + *.disneyinternational.com + Disney International.com (partial) + *.displaymarketplace.com + displaymarketplace.com (partial) + *.distil.it + Distil (partial) + *.divide.com + Divide (partial) + *.divshare.com + divShare + *.divshot.com + Divshot + *.diybanter.com + DIYbanter + *.dizzcloud.com + Dizzcloud.com + *.djangoproject.com + Django + *.djkit.com + DJKit + *.djoser.nl + Holidaybreak (partial) + *.dkb.de + Deutsche Kreditbank + *.dlnws.com + dlnws.com + *.dlvr.it + dlvr.it + *.dm.id.lv + DM.id.lv (partial) + *.dma.org.uk + Direct Marketing Association + *.dmca.com + DMCA Services (partial) + *.dmlimg.com + Daft Media (partial) + *.dmri-library.com + dmri-library.com + *.dmslocal.com + Gannett Company (partial) + *.dmstatic.com + Daft Media (partial) + *.dmtracker.com + DM tracker.com + *.dmtry.com + Adometry (partial) + *.dnaserum.com + DNA Serum + *.dns-oarc.net + DNS-OARC.net + *.dnsstuff.com + DNSstuff.com + *.dntly.com + Dntly.com + *.dntrck.com + DNTrck.com + *.dnuk.com + Digital Networks UK (partial) + *.docker.com + Docker.com (partial) + *.docker.io + Docker.com (partial) + *.doclix.com + DOCLIX (partial) + *.docstoc.com + Docstoc (partial) + *.docstoccdn.com + Docstoc (partial) + *.docstorepro.com + docstorepro.com + *.documentcloud.org + DocumentCloud (partial) + *.documentfoundation.org + The Document Foundation + *.doe.gov + United States Department of Energy (partial) + *.dogwheelchairscenter.com + Dog Wheelchairs Center.com + *.dogzonline.com.au + Dogz Online + *.dokuwiki.org + DokuWiki (partial) + *.dolimg.com + Dolimg.com + *.dolphin-emu.org + dolphin-emu.org + *.domain.com + Domain.com + *.domainrendelo.hu + Domaintank + *.domainsponsor.com + DomainSponsor (partial) + *.domaintank.hu + Domaintank + *.domaintools.com + DomainTools (partial) + *.domdex.com + domdex.com + *.domena.pl + Domena.pl (partial) + *.don.ac.uk + Doncaster College (partial) + *.donotcall.gov.au + Do Not Call Register + *.dot429.com + dot429 (partial) + *.dot5hosting.com + Dot5Hosting + *.dota2.com + Dota 2.com (partial) + *.dotcloud.com + dotCloud.com (partial) + *.dotcomhost.com + dotCOM host + *.dotmailer.com + dotMailer (partial) + *.dotomi.com + Dotomi (partial) + *.dotplex.de + dotplex.de + *.dotster.com + Dotster + *.dotultima.com + dotultima.com + *.doublepimp.com + Doublepimp (partial) + *.doublerobotics.com + Double Robotics.com (partial) + *.doubleverify.com + DoubleVerify (partial) + *.downloadster.net + Downloadster + *.downloadverse.com + DownloadVerse.com + *.downthemall.net + DownThemAll (partial) + *.downtownhost.com + Downtown Host (partial) + *.dozuki.com + Dozuki (partial) + *.dozuki.net + Dozuki (partial) + *.dp.yieldmanager.net + Right Media + *.dpmc.gov.au + Department of the Prime Minister and Cabinet + *.dpreview.com + Digital Photography Review (partial) + *.dr.dk + DR.dk + *.dragonflybsd.org + DragonFly BSD (partial) + *.drawingbynumbers.org + Drawing by Numbers.org + *.drawquestugc.com + DrawQuest + *.dreamhost.com + DreamHost (partial) + *.dreampass.jp + dreampass.jp + *.dreamstime.com + Dreamstime (partial) + *.drexel.edu + Drexel University (partial) + *.drinkaware.co.uk + Drinkaware + *.drivee.ne.jp + drivee + *.drm.info + DRM.info + *.drollette.com + Matt Drollette + *.dropbox.com + Dropbox + *.dropboxusercontent.com + Dropbox + *.drugstore.com + drugstore.com (partial) + *.drupal.org + Drupal (partial) + *.drweb.com + Dr.Web + *.dryicons.com + DryIcons.com + *.ds-static.com + drugstore.com (partial) + *.dshop.se + dshop.se + *.dslr.net + Broadband Reports + *.dslreports.com + Broadband Reports + *.dsply.com + Vast Interactive (partial) + *.dt00.net + MGID.com (partial) + *.dt07.net + MGID.com (partial) + *.duckduckgo.com + DuckDuckGo + *.dug.net.pl + DUG.net.pl + *.duke-energycenter.com + Duke Energy Convention Center (partial) + *.duke.edu + Duke University (partial) + *.duosecurity.com + Duo Security (partial) + *.duracellcloud.com + Duracell Cloud.com (partial) + *.duraspace.org + DuraSpace.org (partial) + *.dustri.org + dustri.org + *.dvidshub.net + DVIDS Hub.net + *.dx.com + Deal Extreme + *.dydx.io + dydx.io + *.dynamic-net.ch + dynamic-net.ch (partial) + *.dynamic-support.ch + dynamic-net.ch (partial) + *.dynamicyield.com + Dynamic Yeild.com (partial) + *.dynamitedata.com + Dynamite Data (partial) + *.dynatrace.com + dynaTrace (partial) + *.dyne.org + Dyne.org (partial) + *.e-boks.dk + E-boks.dk (partial) + *.e-fibank.bg + Fibank + *.e-junkie.com + E-junkie (partial) + *.e-plus.de + E-Plus (partial) + *.e-prawnik.pl + e-prawnik.pl (partial) + *.e.akamai.net + Akamai + *.e.ccs.com + CCS (partial) + *.e.champssports.com + Champs Sports (partial) + *.e.final-score.com + Final-Score + *.e17-stuff.org + openDesktop.org + *.ea.com + Electronic Arts (partial) + *.eager.io + eager.io + *.earcu.com + eArcu + *.earwolf.com + Earwolf Podcast Network + *.easily.co.uk + Easily.co.uk (partial) + *.easports.com + EA Sports.com (false MCB) + *.eastbay.com + Eastbay (partial) + *.easy-hebergement.fr + Easy Hébergement + *.easydns.com + easyDNS (partial) + *.easydns.net + easyDNS (partial) + *.easyjet.com + easyJet.com (partial) + *.easymail.ca + easyMail.ca + *.easypdfonline.com + easyPDF Cloud + *.easypost.com + EasyPost.com + *.easyspace.com + Easyspace (partial) + *.ebankingabersicher.ch + eBanking - aber sicher! + *.ebas.ch + eBanking - aber sicher! + *.ebid.net + eBid.net + *.eblastengine.com + Second Street Media + *.ebscohost.com + EBSCOhost (partial) + *.ebuyer.com + Ebuyer.com (partial) + *.ebuzzing.de + ebuzzing (partial) + *.ec-images.myspacecdn.com + Myspace (mixed content) + *.ecash.io + eCash.io + *.ecigpros.com + eCigPros + *.eclipse.org + Eclipse (partial) + *.ecoff.org + Ecoff.org + *.ecom.attccc.com + AT&T (partial) + *.econda-monitor.de + Econda + *.econda.de + Econda + *.economist.com + Economist (partial) + *.ecoscentric.com + eCosCentric.com + *.ecwid.com + Ecwid (partial) + *.ed.ac.uk + Ed.ac.uk (partial) + *.ed2go.com + Cengage (partial) + *.edarabia.com + Edarabia.com + *.ede-look.org + openDesktop.org + *.edenhost.com + EdenHost.com + *.ederdrom.de + PNP4Nagios.org + *.edeveloperz.com + eDeveloperz (partial) + *.edfenergy.com + EDF Energy + *.edgar-online.com + EDGAR Online + *.edgesnapbacks.com + Edge Snapbacks.com + *.editmysite.com + Weebly (mixed content) + *.editola.com + Editola + *.edu.ifixit.com + iFixit (partial) + *.edublogs.org + Edublogs + *.edubuntu.org + Edubuntu + *.educacursos.com + EducaCursos + *.education.gov.au + Department of Education + *.educause.edu + Educause (partial) + *.eduroam.gr + Greek-various + *.eduroam.org + eduroam.org + *.eduscho.at + Tchibo + *.edweek.org + EdWeek.org (partial) + *.edx.org + edX + *.ee.co.uk + Everything Everywhere (partial) + *.eease.com + Employease (partial) + *.eerdmans.com + Eerdmans.com + *.eet.eu + EET Group + *.eetgroup.com + EET Group + *.eetimes.com + EE Times (partial) + *.eetnordic.com + EET Group + *.eex.com + European Energy Exchange (partial) + *.efa.org.au + Electronic Frontiers Australia + *.eff.org + EFF + *.effectivemeasure.net + Effective Measure + *.efficios.com + EfficiOS + *.efinancialcareers.com + eFinancialCareers + *.efinancialnews.com + News Corporation (partial) + *.eforsa.pl + eForsa.pl + *.eftplus.asia + EFTPlus.asia + *.efurnitureny.com + eFurnitureNY + *.egenix.com + eGenix.com + *.egg.com + Egg + *.egnyte.com + Egnyte + *.eharmony.com + eHarmony (partial) + *.ehawaii.gov + Hawaii.gov (partial) + *.ehosting.ca + ehosting.ca (partial) + *.ehow.com + eHow (partial) + *.ehowcdn.com + eHow (partial) + *.eimg.com.tw + eimg.com.tw + *.eis.de + Eis.de + *.eiu.com + Economist Intelligence Unit (partial) + *.ekomi.co.uk + eKomi + *.ekomi.de + eKomi + *.elafnettv.com + Elaf Net TV + *.elastictrace.com + elasticTrace.com + *.elatinos.com + eLatinos.com + *.elbadil.com + elbadil.com + *.elderscrollsonline.com + Elder Scrolls Online.com + *.elearnsecurity.com + eLearnSecurity.com + *.electricembers.net + Electric Embers (partial) + *.elegantthemes.com + Elegant Themes.com + *.elementaryos.org + Elementary OS.org (false MCB) + *.elevenpaths.com + ElevenPaths + *.elitecastingnetwork.com + Elite Casting Network.com (partial) + *.elitepartner.de + Elitepartner.de + *.elle.com + Elle.com (partial) + *.eloedge.com + ELO edge.com (false MCB) + *.eloqua.com + Eloqua + *.elpueblo.com + El pueblo + *.els-cdn.com + Elsevier (partial) + *.elsevier.com + Elsevier (partial) + *.elsevierhealth.com + Elsevier (partial) + *.eltatar.com + Eltartar War + *.elte.hu + ELTE.hu (partial) + *.em.gov.au + Australian Emergency Management + *.email-motorola.com + Motorola (partial) + *.emailsrvr.com + emailsrvr.com + *.emailvision.com + Emailvision (partial) + *.embed.ly + Embed.ly (partial) + *.embeddedanalytics.com + Embedded Analytics.com + *.emc.com + EMC (partial) + *.emcraft.com + Emcraft.com + *.emediate.dk + emediate.dk + *.emknowledge.gov.au + Australian Emergency Management + *.employment.gov.au + Department of Employment + *.emporioalberghiero.com + Emporio Alberghiero.com + *.emptywheel.net + emptywheel.net + *.emsisoft.com + Emsisoft (partial) + *.emulex.com + Emulex + *.emv3.com + Emailvision (partial) + *.encoding.com + Encoding.com + *.encyclopediadramatica.se + Encyclopedia Dramatica + *.endace.com + Endace + *.endora.cz + Endora.cz (partial) + *.enecto.com + Enecto.com (partial) + *.energy.gov + Energy.gov (partial) + *.energymadeeasy.gov.au + Energy Made Easy + *.engagesciences.com + EngageSciences (partial) + *.engineering.com + Engineering.com (partial) + *.english-country-cottages.co.uk + Wyndham (partial) + *.englishdefenceleague.net + English Defence League.net (false MCB) + *.eniro.com + Eniro (partial) + *.eniro.se + Eniro (partial) + *.enjin.com + Enjin + *.enlightenment.org + Enlightenment + *.enocloud.com + eNovance + *.enovance.com + eNovance + *.enphaseenergy.com + Enphase Energy (partial) + *.ens-lyon.org + ens-lyon.org + *.ensighten.com + Ensighten + *.ensigniamail.com + Ensignia mail.com (false MCB) + *.enta.net + Entanet (partial) + *.entertainment.ie + entertainment.ie + *.enthought.com + Enthought.com (partial) + *.entrust.com + Entrust.com (partial) + *.entrust.net + Entrust (partial) + *.envato-static.com + Envato-static.com (partial) + *.eon-uk.com + E.ON UK (partial) + *.ep.elitem.net + Elitepartner.de + *.epartnershub.com + epartnershub.com (partial) + *.epb.net + EPB + *.epbfi.com + EPB + *.epetitions.direct.gov.uk + Directgov (partial) + *.epfl.ch + EPFL (partial) + *.epi.org + Economic Policy Institute (partial) + *.epic.com + Epic Systems (partial) + *.epicgames.com + Epic Games (partial) + *.epoch.com + Epoch.com + *.epochstats.com + EpochStats.com + *.eprize.com + ePrize + *.epson.com + Epson.com (partial) + *.epson.jp + Epson.com (partial) + *.equalitytrust.org.uk + Equality Trust.org.uk + *.equinix.com + Equinix.com (partial) + *.equip.org + Equip.org (partial) + *.ergon.ch + Eregon.ch + *.err.ee + Estonian Public Broadcasting (partial) + *.es.gy + es.gy + *.escapistexpo.com + The Escapist Expo + *.escholarship.org + eScholarship.org (partial) + *.eseeky.com + eseeky.com + *.esellerate.net + MyCommerce + *.eset.com + ESET (partial) + *.esetnod32.ru + ESET NOD32 + *.esetstatic.com + ESET (partial) + *.esi-group.com + ESI-Group.com + *.esi.dz + ESI + *.esomar.org + ESOMAR.org + *.espncdn.com + GO.com (partial) + *.esri.com + Esri (partial) + *.estara.com + estara.com + *.estat.com + Médiamétrie-eStat (partial) + *.esupport.acenet-inc.net + Acenet (partial) + *.etapestry.com + etapestry.com + *.eth-0.nl + eth0.nl + *.eth0.nl + eth0.nl + *.ethereum.org + Ethereum.org (partial) + *.ethicalhacker.net + Ethical Hacker.Net (false MCB) + *.ethicspoint.com + EthicsPoint.com + *.ethn.io + Ethn.io + *.ethoscustombrands.com + Ethos Custom Brands + *.ethz.ch + ETH Zürich (partial) + *.etoro.com + eToro (partial) + *.etracker.com + etracker + *.etrade.com + Etrade.com + *.ets.org + ETS + *.etsy.com + Etsy (partial) + *.etsystatic.com + Etsy (partial) + *.eu.dp.yieldmanager.net + Right Media + *.eucalyptus.com + Eucalyptus.com + *.eukhost.com + eUKhost (partial) + *.eukhosting.net + eUKhosting + *.eurodns.com + EuroDNS.com (partial) + *.euroflorist.no + EuroFlorist.no (partial) + *.euroforum.de + Euroforum (partial) + *.euroland.com + Euroland.com + *.europa.eu + Europa.eu + *.europeanssl.eu + EuropeanSSL + *.europython.eu + EuroPython + *.eusecwest.com + EUSecWest + *.euserv.de + EUserv.de (partial) + *.evanced.info + evanced.info + *.evaske.com + Evaske.com + *.eventbrite.co.uk + Eventbrite (partial) + *.eventbrite.com + Eventbrite (partial) + *.eventim.co.il + Eventim (partial) + *.eventim.co.uk + Eventim (partial) + *.eventim.se + Eventim (partial) + *.eventoverload.com + EventOverload + *.eveonline.com + eveonline.com (partial) + *.everesttech.net + Everest Technology + *.evergage.com + Evergage.com (partial) + *.evernote.com + Evernote (partial) + *.everplans.com + Everplans.com + *.everydayhealth.com + Everyday Health (partial) + *.everydayhero.com + Everyday Hero + *.everydayhero.com.au + Everyday Hero + *.everything4bet.net + everything4bet + *.evga.com + EVGA (partial) + *.evidon.com + Evidon Inc (partial) + *.evisa-vietnam.com + Evisa-Vietnam.Com + *.evoice.co.uk + eVoice.co.uk (partial) + *.evolvesocially.org + Evolve Socially.org (false MCB) + *.evotronix.com + EvoTronix (partial) + *.ex.ac.uk + University of Exeter (partial) + *.exaccess.ru + exaccess.ru (partial) + *.exactag.com + Exactag (partial) + *.exacttarget.com + ExactTarget (partial) + *.examiner.com + examiner.com (partial) + *.excitations.com + Excitations.com + *.exclusivex.com + Exclusive X + *.exelator.com + eXelate + *.exeter.ac.uk + University of Exeter (partial) + *.exinda.com + Exinda (partial) + *.exoclick.com + Exoclick (partial) + *.expedia.co.uk + Expedia + *.expedia.com + Expedia + *.experian.experiandirect.com + Experian + *.exploreb2b.com + exploreB2B.com + *.explorechicago.org + City of Chicago + *.explosm.net + Explosm.net (partial) + *.expohomes.com + Factory Expo Home Centers + *.expomobilehomes.com + Factory Expo Home Centers + *.export.gov + US government (partial) + *.exportawards.gov.au + Australian Export Awards + *.express.co.uk + Daily Express (partial) + *.expresscoin.com + expresscoin.com (partial) + *.exratione.com + Ex Ratione.com + *.extatic.org + extatic.org (partial) + *.extensiondefender.com + Extension Defender.com + *.extralunchmoney.com + Extra Lunch Money + *.extreme-dm.com + Extreme-Dm.com (partial) + *.extremetech.com + Extreme Tech.com (partial) + *.ey.com + Ernst & Young (partial) + *.eyefilm.nl + EYE film.nl (partial) + *.eyeos-apps.org + openDesktop.org + *.ez-download.com + EZ-Download + *.ez-web-hosting.com + EZ Web Hosting + *.ezimg.it + EZTV + *.ezinearticles.com + EzineArticles (partial) + *.ezoshosting.com + EZOSHosting (false MCB) + *.eztv.it + EZTV + *.f-cdn.com + F-CDN.com + *.f-secure.com + F-Secure (partial) + *.f.ix.de + Heise.de (partial) + *.f3images.com + f3images.com + *.f3mimages.com + f3mimages.com + *.f5.com + F5 + *.fabricatorz.com + Fabricatorz + *.facdn.net + Furaffinity (partial) + *.facebook-studio.com + Facebook Studio + *.facebook.com + Facebook + *.facebook.de + Facebook + *.facebook.dk + Facebook + *.facebook.es + Facebook + *.facebook.fr + Facebook + *.facebook.jp + Facebook + *.facebook.mx + Facebook + *.facebook.no + Facebook + *.facebook.se + Facebook + *.facepunch.com + Facepunch.com + *.facetz.net + facetz.net + *.facilities.udel.edu + University of Delaware (partial) + *.factiva.com + News Corporation (partial) + *.factorydirectcabins.com + Factory Expo Home Centers + *.factoryexpo.net + Factory Expo Home Centers + *.factoryexpodirect.com + Factory Expo Home Centers + *.factoryexpohomes.com + Factory Expo Home Centers + *.factoryselecthomes.com + Factory Expo Home Centers + *.fail0verflow.com + fail0verflow + *.fairwork.gov.au + Fair Work Ombudsman + *.fakturownia.pl + Fakturownia (partial) + *.falconjet.com + Dassault Falcon + *.falkvinge.net + Falkvinge on Infopolicy + *.familychristian.com + Family Christian Stores + *.fanatics.com + Fanatics (partial) + *.fanboy.co.nz + Fanboy + *.fandango.com + Fandango (partial) + *.fanhattan.com + Fanhatten (partial) + *.fark.com + Fark (partial) + *.faround.net + Faround.net (false MCB) + *.fas.org + Federation of American Scientists + *.fashionara.com + Fashionara.com (false MCB) + *.fashiondip.com + Fashion Dip + *.fastclick.net + ValueClick (partial) + *.fastcompany.com + Fast Company (partial) + *.fastcompany.net + Fast Company (partial) + *.fastdomain.com + FastDomain + *.fasthosts.co.uk + Fasthosts (partial) + *.fastly.com + Fastly + *.fastly.net + Fastly + *.fastmail.fm + Fastmail (partial) + *.fastserv.com + Fast Serv.com + *.fastshare.cz + FastShare.cz + *.fastshoppingcart.com + Quick Shopping Cart + *.fastspring.com + FastSpring + *.fastssl.net + Fastly + *.fatcow.com + FatCow Web Hosting + *.fau.de + University of Erlangen-Nuremberg (partial) + *.faxcritics.com + FaxCritics + *.faz-institute.de + FAZ (broken) + *.faz.de + FAZ (broken) + *.faz.net + FAZ (broken) + *.fazschule.net + FAZ (broken) + *.fb.com + Facebook + *.fb.me + Fb.me + *.fbcdn.net + Facebook + *.fbhexpo.com + Factory Expo Home Centers + *.fbi.gov + Federal Bureau of Investigation (partial) + *.fbo.gov + Federal Business Opportunities + *.fc2.com + FC2.com (partial) + *.fcac.org + Fairfax Public Access + *.fcc.gov + Federal Communications Commission (partial) + *.fcla.edu + Florida Center for Library Automation (partial) + *.fcns.eu + Frontier Network and Computing Systems + *.fdic.gov + Federal Deposit Insurance Corporation + *.federalreserve.gov + Federal Reserve + *.fedex.com + FedEx.com (partial) + *.fedorahosted.org + Fedora Hosted.org (partial) + *.fedorapeople.org + Fedora Project + *.fedoraproject.org + Fedora Project + *.feedbackify.com + Feedbackify.com + *.feedblitz.com + FeedBlitz + *.feedly.com + feedly.com (partial) + *.feide.no + Feide + *.feistyduck.com + Feisty Duck.com + *.fema.gov + Federal Emergency Management Agency (FEMA) + *.fender.com + Fender.com (partial) + *.fernuni-hagen.de + FernUni-Hagen.de + *.ferris.edu + Ferris State University (partial) + *.festeirice.com.br + Arte do Lar.com.br + *.fetchback.com + FetchBack + *.fetlife.com + FetLife + *.fetshop.co.uk + FetShop.co.uk + *.ffmpeg.org + FFMPEG.org + *.ffrf.org + Freedom from Religion Foundation (partial) + *.fh-kiel.de + University of Applied Sciences Kiel + *.fhserve.com + fhserve.com (partial) + *.fidelity.com + Fidelity.com (partial) + *.fidoalliance.org + FIDO Alliance.org + *.fiercemarkets.com + FierceMarkets (partial) + *.fightforthefuture.org + Fight for the Future (partial) + *.figue.com + FIGUE.com (partial) + *.filecloud.io + filecloud.io + *.filemobile.com + Filemobile (partial) + *.filepost.com + FilePost.com + *.filerio.in + FileRio.in (false MCB) + *.filezilla-project.org + FileZilla (partial) + *.filippo.io + Filippo.io + *.filmbreak.com + FilmBreak + *.filmdates.co.uk + filmdates.co.uk (partial) + *.filmlinc.com + Film Linc.com (false MCB) + *.filmlush.com + filmlash.com (partial) + *.filmon.com + Filmon.com + *.filmthreat.com + Film Threat + *.filmtrackonline.com + FilmTrack + *.fime.me + FIME.me + *.final-score.com + Final-Score + *.finalrewind.net + finalrewind.net + *.finalsite.com + finalsite (partial) + *.financialcontent.com + Financial Content (partial) + *.financialpost.com + Financial Post.com (partial) + *.financialtrans.com + financialtrans.com + *.findagrave.com + Find a Grave (partial) + *.findnsave.com + Find n Save (partial) + *.findretros.com + FindRetros.com + *.findthebest.com + FindTheBest (partial) + *.fineartamerica.com + Fine Art America + *.fineproxy.org + Fineproxy.org (partial) + *.finma.ch + Swiss Financial Market Supervisory Authority (FINMA) + *.fins.com + News Corporation (partial) + *.firebase.com + Firebase (partial) + *.firedrive.com + Firedrive.com (partial) + *.fireeye.com + FireEye (partial) + *.firefox.com + Firefox.com + *.firehost.com + FireHost (partial) + *.firelady.com + Firelady.com + *.firstamendmentcenter.org + First Amendment Center.org (partial) + *.firstcentralsb.com + First Central State Bank + *.firstclassmagazine.se + First Class Magazine.se (false MCB) + *.firstdirect.com + HSBC + *.firstlook.org + First Look.org + *.fishwrapper.com + Fishwrapper.com (partial) + *.fitbit.com + FitBit + *.fitstudio.com + FitStudio.com (partial) + *.five.tv + FiveTV + *.flagrate.org + Flagrate.org + *.flameeyes.eu + Flameeyes + *.flamingspork.com + FlamingSpork.com (partial) + *.flashtalking.com + Flashtalking (partial) + *.flashtalking.net + Flashtalking (partial) + *.flaska.net + Flaska.net (partial) + *.flatlinesecurity.com + Flatline Security.com + *.flattr.com + Flattr + *.flexinvestments.net + Flex Investments + *.flic.kr + Flickr + *.flickr.com + Flickr + *.flickr.net + Flickr + *.flightaware.com + Flightaware + *.flightglobal.com + Flightglobal (partial) + *.flinto.com + Flinto.com (partial) + *.flipboard.com + Flipboard (partial) + *.flirble.org + The Flirble Organisation (partial) + *.flite.com + Flite (partial) + *.flixcart.com + Flixcart.com (partial) + *.flixster.com + Flixster (partial) + *.floridatoday.com + Florida Today (partial) + *.flowingdata.com + FlowingData.com (false MCB) + *.flowtab.com + Flowtab.com + *.fluctishosting.com + Fluctis Hosting.com (partial) + *.fluidhosting.com + Fluid Hosting.com (partial) + *.flurry.com + Flurry + *.flyasite.com + Flyasite.com (partial) + *.flyersrights.com + FlyersRights.org + *.flyingcameras.ca + Flying Cameras + *.flyingmeat.com + Flying Meat (partial) + *.fmaba.com + Family Medicine Association + *.fmh.de + Finanzberatung Max Herbst (partial) + *.fmpub.net + Federated Media Publishing (partial) + *.fmworld.net + Fujitsu (partial) + *.fmylife.com + FMyLife.com + *.fnal.gov + Fermi National Accelerator Laboratory (partial) + *.fncash.com + FN Cash.com + *.fnmag.co + FN Mag.co (false MCB) + *.focaljet.com + focaljet.com + *.focus.de + Focus.de (partial) + *.focuscamera.com + Focus Camera.com + *.fod4.com + FoD4.com + *.foebud.org + FoeBuD e.V. + *.fogbugz.com + FogBugz.com + *.fogcreek.com + Fog Creek + *.fonts.com + Monotype Imaging (partial) + *.fontspring.com + Fontspring (partial) + *.foodandwaterwatch.org + Food & Water Watch (partial) + *.foodl.org + Foodl.org + *.fool.co.uk + The Motley Fool (partial) + *.fool.com + The Motley Fool (partial) + *.fool.com.au + The Motley Fool (partial) + *.foolcdn.com + The Motley Fool (partial) + *.foolz.us + Foolz.us + *.footaction.com + Footaction USA + *.footballfanatics.com + Football Fanatics (partial) + *.footholds.net + footholds.net + *.footlocker.ca + Foot Locker Canada + *.footlocker.com + Foot Locker (partial) + *.forbes.com + Forbes Magazine + *.forbesmagazine.com + Forbes Magazine + *.force.com + Salesforce.com (partial) + *.ford.com + Ford (partial) + *.fordela.com + Fordela.com + *.foreseeresults.com + ForeSee Results.com + *.foresight.org + Foresight.org + *.foresters.com + Foresters + *.foreverinfamous.com + Infamous + *.forex.com + Forex.com (partial) + *.forexct.com + ForexCT (partial) + *.forgefields.com + ForgeFields.com (partial) + *.forgesoftware.com + Forge Software + *.forgifs.com + forgifs.com + *.forgottenlands.eu + ForgottenLands.eu + *.formatdynamics.com + FormatDynamics.com + *.forms.aweber.com + AWeber (partial) + *.formsanity.com + FormSanity.com (partial) + *.formstack.com + Formstack (partial) + *.forum.openvz.org + OpenVZ.org (false MCB) + *.forum.pirati.cz + Pirate Party + *.forum.suprbay.org + The Pirate Bay (partial) + *.forum.techidiots.net + Techidiots.net + *.forumatic.com + Forumatic (partial) + *.forumblog.org + ForumBlog.org + *.forums.grsecurity.net + GRSecurity.net + *.forums.sabnzbd.org + SABnzbd Forums + *.fosdem.org + FOSDEM.org + *.fossbazaar.org + FOSSBazaar.org (partial) + *.fotki.com + Fotki (partial) + *.fotocommunity.de + fotocommunity.de (partial) + *.foundationbeyondbelief.org + Foundation Beyond Belief.org + *.foundationsource.com + Foundation Source + *.foursquare.com + Foursquare.com (partial) + *.fout.jp + Fout.jp (partial) + *.fox-it.com + Fox-IT.com + *.foxbusiness.com + Fox News (partial) + *.foxitsoftware.com + Foxitsoftware + *.foxnews.com + Fox News (partial) + *.foxycart.com + FoxyCart.com (partial) + *.foxydeal.com + foxydeal.de (false MCB) + *.foxydeal.de + foxydeal.de (false MCB) + *.fr.tchibo.ch + Tchibo + *.fr33tux.org + fr33tux.org + *.fraglive.cl + Fraglive + *.franken.de + Franken.de + *.franktimis.com + Frank Timis + *.frcanalytics.com + Digital River (partial) + *.fredandpickles.co.uk + Fred and Pickles + *.free-tv-video-online.me + Free-TV-Video-Online.me + *.freebarrettbrown.org + Free Barrett Brown.org + *.freebase.com + Freebase (partial) + *.freebeacon.com + Washington Free Beacon (partial) + *.freebiblesoftware.com + Free Bible Software.com + *.freebsd.org + FreeBSD (partial) + *.freebsoft.org + FreeBSoft.org (partial) + *.freecause.com + Freecause + *.freecultr.com + FREECULTR + *.freecycle.org + Freecycle (partial) + *.freedesktop.org + freedesktop.org (partial) + *.freedompop.com + FreedomPop.com (partial) + *.freefind.com + FreeFind + *.freelancer.co.uk + Freelancer + *.freelancer.com + Freelancer + *.freenet.de + freenet.de (partial) + *.freenetproject.org + Freenet + *.freenode.net + freenode + *.freent.de + freenet.de (partial) + *.freeporngif.com + Free Porn Gif.com (false MCB) + *.freepress.net + Free Press + *.freescale.com + Freescale.com (partial) + *.freescorenation.com + FreeScoreNation.com + *.freeunlocks.com + FreeUnlocks.com + *.french-country-cottages.co.uk + Wyndham (partial) + *.frequentis.com + Frequentis.com (partial) + *.fresh-hotel.org + Fresh-hotel.org + *.freshbooks.com + FreshBooks (partial) + *.freshbsd.org + FreshBSD.org + *.freshdesk.com + Freshdesk (partial) + *.freshmilk.tv + Freshmilk.tv (partial) + *.freshports.org + Freshports.org + *.frictionalgames.com + Frictional Games (partial) + *.friendfeed.com + Friendfeed + *.friendfinder.com + FriendFinder + *.frieslandbank.nl + Friesland Bank.nl (partial) + *.frontier.co.uk + Frontier.co.uk (partial) + *.frontlinedefenders.org + Frontline Defenders + *.frooition.com + Frooition Software (partial) + *.frozen-yogurt-franchise.org + Frozen Yoghurt Franchise + *.frozencpu.com + FrozenCPU.com + *.frugalware-art.org + openDesktop.org + *.frype.com + Draugiem.lv (partial) + *.frys.com + Frys (partial) + *.fsb.org.uk + Federation of Small Businesses (partial) + *.fsdata.se + FS Data + *.fsdn.com + FSDN.com + *.fsf.org + Free Software Foundation + *.fsfe.org + FSFE.org (partial) + *.fsfeurope.org + FSFE.org (partial) + *.fshare.vn + Fshare.vn + *.fsisac.com + FS ISAC.com + *.fsu.edu + FSU.edu (partial) + *.ft-static.com + Financial Times (partial) + *.ft.com + Financial Times (partial) + *.ftc.gov + Federal Trade Commission (partial) + *.ftlgame.com + FTL Game.com (false MCB) + *.fuelcdn.com + fuelcdn.com + *.fullerton.edu + Fullerton.edu (partial) + *.fulltraffic.net + FullTraffic (partial) + *.fundaciontelevisa.org + Fundacion Televisa.org (false MCB) + *.fundageek.com + FundaGeek (partial) + *.fundrazr.com + FundRazr.com (partial) + *.furaffinity.net + Furaffinity (partial) + *.further.co.uk + Further + *.fused.com + Fused + *.fusionforge.org + FusionForge + *.fusionio.com + FusionIO + *.fuskator.com + Fuskator.com + *.fust.ch + Coop + *.futurelearn.com + FutureLearn.com + *.futurequest.net + FutureQuest (partial) + *.fvn.no + Forsiden (partial) + *.fwc.gov.au + Fair Work Commission + *.fwdcdn.com + fwdcdn.com + *.fwmapps.co.uk + Fast Web Media (partial) + *.fwmrm.net + FreeWheel (partial) + *.fxguide.com + fxguide.com (partial) + *.fxphd.com + fxphd + *.fxprime.com + FX Prime.com + *.fxsystems.com + FX Systems + *.fyleio.com + Bronto Software (partial) + *.fyre.co + Livefyre (partial) + *.g33kinfo.com + g33kinfo.com (false MCB) + *.gadget-o.com + Gadget-o + *.gaiahost.coop + GAIA Host Collective + *.gajim.org + Gajim + *.galaxis.at + Galaxis.at + *.gallup.com + Gallup (partial) + *.gambleid.com + GambleID + *.gambling-affiliation.com + iGaming (partial) + *.gamcare.org.uk + GamCare (partial) + *.gamedesire.net + gamedesire.net (partial) + *.gamedev.net + GameDev.net (partial) + *.gamefactory.jp + Gamefactory.jp + *.gameflycdn.com + GameFly + *.gamehouse.com + GameHouse + *.gameinformer.com + GameInformer (partial) + *.gameladen.com + Gameladen + *.gamelink.com + Game Link (partial) + *.gameological.com + The Gameological Society (partial) + *.gamesports.net + GameSports.net (partial) + *.gamespot.com + GameSpot (partial) + *.gamestar.de + Gamestar.de + *.gamestarmechanic.com + Gamestar Mechanic + *.gamestop.com + GameStop + *.gameswelt.de + Gameswelt.de + *.gameswelt.net + Gameswelt.de + *.gametreelinux.com + GameTree + *.gamezebo.com + Gamezebo + *.gammae.com + GammaE.com + *.gamona.de + Gamona.de + *.gandi.net + Gandi + *.ganglandnews.com + Gang Land News + *.gannett.com + Gannett Company (partial) + *.gannettlocal.com + GannettLocal (partial) + *.ganzestore.com + Ganz eStore.com (partial) + *.garagegames.com + GarageGames + *.garciniacambogiavitalmend.com + Garcinia Cambogia VitalMend.com (partial) + *.garmin.com + Garmin + *.gartner.com + Gartner.com (partial) + *.garyjohnson2012.com + Gary Johnson 2012 + *.gatag.it + Sabre Hospitality Solutions (partial) + *.gatewaysb.com + Gateway State Bank + *.gatwickairport.com + Gatwick Airport + *.gaug.es + Guag.es (partial) + *.gavelbuddylive.com + Gavel Buddy Live.com + *.gay180.com + Gay180 + *.gbot.me + Gogobot (partial) + *.gcaptain.com + gCaptain.com (partial) + *.gchat.com + GChat.com + *.gcmasia.com + GCM Asia.com (partial) + *.gcmcomputers.com + GCM Computers.com + *.gdata.pl + G Data Software (partial) + *.gdatasoftware.com + G Data Software (partial) + *.ge.ch + Schweizer Regierung + *.geant.net + GEANT.net (partial) + *.gearsourceeurope.com + GearSourceEurope (partial) + *.gearworkstire.com + Gearworks Manufacturing + *.geek.net + Geek.net + *.geekevents.org + Geekevents.org + *.geeksphone.com + Geeksphone.com + *.geektechlabs.com + Geek Tech Labs.com + *.geizhals.at + Geizhals.at + *.geizhals.de + Geizhals.de + *.gemalto.com + Gemalto.com (partial) + *.gemius.pl + Gemius + *.gencat.cat + Generalitat of Catalonia (partial) + *.generationawake.eu + DesignAddict + *.geneseephoto + Genesee Photo Systems + *.genges.com + GenGes.com + *.genivi.org + GENEVI.org (partial) + *.gentlelabs.com + Gentle labs.com + *.gentoo-art.org + openDesktop.org + *.gentoo.org + Gentoo (partial) + *.georgetown.edu + Georgetown University (partial) + *.geotrust.com + GeoTrust + *.geotrust.net + GeoTrust.net + *.gephi.org + Gephi + *.german-design-council.de + German Design Council + *.germantv.net + GermanTV + *.get.it + Get.It + *.getadblock.com + AdBlock + *.getawaygrey.com + GetAwayGrey + *.getchef.com + Get Chef.com (partial) + *.getchute.com + GetChute (partial) + *.getclef.com + get Clef.com (partial) + *.getclicky.com + GetClicky + *.getcloudapp.com + Linerunner (partial) + *.getclouder.com + GetClouder.com + *.getdigital-blog.de + getDigital.de (false MCB) + *.getdigital.de + Getdigital.de (partial) + *.getdigital.eu + getDigital.eu + *.getfirebug.com + GetFirebug (false MCB) + *.getglue.com + GetGlue + *.getgo.de + getgo + *.getharvest.com + getHarvest.com (partial) + *.getmein.com + Live Nation Entertainment (partial) + *.getoutofdebt.org + Get Out of Debt Guy + *.getpebble.com + Pebble (partial) + *.getpocket.com + GetPocket.com (partial) + *.getpocketbook.com + Pocketbook + *.getresponse.com + GetResponse.com (partial) + *.getsafeonline.org + Get Safe Online + *.getsatisfaction.com + Getsatisfaction.com + *.getshine.com + get Shine.com + *.gettraffic.com + GetTraffic.com + *.getty.edu + Getty.edu + *.gettyimages.com + Getty Images (partial) + *.gettyimages.com.au + Getty Images (partial) + *.gfi.com + GFI Software Development (partial) + *.gfmtrader.com + GFM Trader.com + *.gfx.ms + Hotmail / Live + *.gfycat.com + Gfycat.com + *.gg.gov.au + Governor-General of the Commonwealth of Australia + *.ggpht.com + Google Services + *.ghash.io + GHash.IO + *.ghirardelligiftguides.com + ghirardelligiftguides.com + *.ghost.org + Ghost.org (partial) + *.ghostery.com + Ghostery + *.ghosteryenterprise.com + Ghostery Enterprise.com + *.giantbomb.com + Giant Bomb.com (partial) + *.gigantic.com + Gigantic Tickets (partial) + *.gigaom.com + GigaOM (partial) + *.gigaserver.cz + Gigaserver (partial) + *.gigasize.com + GigaSize (partial) + *.gigenet.com + GigeNET.com + *.gigya.com + Gigya (partial) + *.gimmickwear.com + Gimmickwear + *.giphy.com + Giphy.com + *.gitbook.io + GitBook.io (partial) + *.gitc.finance.gov.au + Commonwealth GITC + *.github.com + GitHub + *.github.io + GitHub Pages + *.githubusercontent.com + GitHub + *.gitlab.com + GitLab.com (partial) + *.gitorious.org + Gitorious + *.givex.com + Givex (partial) + *.giving.buffalostate.edu + Buffalo State College (partial) + *.givingprograms.com + GivingPrograms.com + *.gizmag.com + Gizmag (partial) + *.gkb.ch + Schweizer Kantonalbanken + *.glad.org + GLAD (Gay & Lesbian Advocates & Defenders) + *.glam.com + Glam (partial) + *.glamorousuk.com + Glamorous UK + *.glassdoor.co.in + Glassdoor (partial) + *.glassdoor.co.uk + Glassdoor (partial) + *.glassdoor.com + Glassdoor (partial) + *.glassdoor.com.au + Glassdoor (partial) + *.glasses.com + Glasses.com (partial) + *.glimg.net + GolfLink.com (partial) + *.glkb.ch + Schweizer Kantonalbanken + *.glo.com + MSN (partial) + *.globalbersih.org + Global Bersih + *.globaloneteam.com + globaloneteam.com + *.globalperspectivescanada.com + Global Perspectives Canada + *.globalscaletechnologies.com + Global Scale Technologies + *.globalsign.co.uk + GlobalSign + *.globalsign.com + GlobalSign + *.globalsign.eu + GlobalSign + *.globalsources.com + Global Sources (partial) + *.globaltap.com + Globaltap.com + *.globalvoicesonline.org + Global Voices Online.org (partial) + *.globalwitness.org + Global Witness + *.globat.com + Globat + *.globusonline.org + Globus Online + *.gluster.org + Gluster.org + *.gmedianetworks.com + gmedianetworks.com + *.gmo.jp + GMO Internet (partial) + *.gmobb.jp + GMO BB.jp (partial) + *.gmocloud.com + GMO Cloud.com (partial) + *.gmu.edu + George Mason University (partial) + *.gmx.com + GMX + *.gmx.net + GMX + *.gnome-help.org + openDesktop.org + *.gnome-look.org + openDesktop.org + *.gnome.org + GNOME (partial) + *.gnomefiles.org + openDesktop.org + *.gnu.org + GNU.org (partial) + *.gnunet.org + GNUnet + *.gnutls.org + GnuTLS.org (partial) + *.go.com + GO.com (partial) + *.go2arena.com + Go2Arena.com + *.goaldet.com + Goaldet.com + *.goalworthy.com + GoalWorthy.com + *.gocoin.com + GoCoin.com + *.godaddy.com + GoDaddy (partial) + *.godaddymobile.com + GoDaddy (partial) + *.godl.co + Pagoda Box + *.goemerchant.com + GoEmerchant + *.goenergetix.com + Energetix (partial) + *.goeshow.com + Go eShow.com + *.gofundme.com + GoFundMe + *.gog.com + GOG.com + *.gogetssl.com + GoGetSSL.com + *.gogobot.com + Gogobot (partial) + *.gogoyoko.com + gogoyoko (partial) + *.goingup.com + GoingUp (partial) + *.goke.me + Goke.me + *.golang.org + Go Lang.org + *.goldenadventures.com + Golden Adventures + *.goldenarium.com + Goldenarium + *.goldencharter.co.uk + Golden Charter (partial) + *.goldkeys.net + Goldkeys.net (partial) + *.goldsborowebdevelopment.com + Goldsboro Web Development + *.goldstar.com + Goldstar (partial) + *.golem.de + Golem.de + *.golfdigest.com + Golf Digest (partial) + *.golflink.com + GolfLink.com (partial) + *.gomohu.com + Go Mohu.com (partial) + *.gomoxie.com + Moxie Soft.com + *.gondor.co + Gondor + *.good.net + Good.net + *.goodnet.com + Good.net + *.goodreads.com + Goodreads + *.google-analytics.com + Google APIs + *.google.ca + Google Services + *.google.com + Google Videos + *.googleapis.com + Google APIs + *.googlecode.com + Google Services + *.googlesource.com + Google Services + *.googlesyndication.com + Google Services + *.googleusercontent.com + Google Services + *.googlevideo.com + YouTube + *.googlewatchblog.de + GoogleWatchBlog + *.gosoapbox.com + GoSoapBox + *.gosquared.com + GoSquared.com + *.gostats.com + GoStats (partial) + *.gostorego.com + Magento Go images + *.gosuslugi.ru + Gosuslugi.ru + *.gotlandring.com + Gotland Ring.com + *.gotomeeting.com + Citrix (partial) + *.gototraining.com + Citrix (partial) + *.gotowebinar.com + Citrix (partial) + *.gotpantheon.com + Pantheon (partial) + *.gotransit.com + GO Transit (partial) + *.gotskinswholesales.com + GotSkinsWholesales.com + *.gotvape.com + Got Vape.net + *.gotvape.net + Got Vape.net + *.gourmetgiftbaskets.com + GourmetGiftBaskets.com (partial) + *.gov.uk + GOV.UK + *.govdelivery.com + GovDelivery (partial) + *.govdex.gov.au + GovDex + *.govexec.com + Atlantic Media (partial) + *.govspace.gov.au + Govspace + *.govwaste.co.uk + Gov Waste.co.uk + *.gp.se + GP.se (partial) + *.gpgtools.org + GPGTools (partial) + *.gpshopper.com + GPShopper.com (partial) + *.gq.com + GQ (partial) + *.gr-assets.com + Gr-assets.com + *.gr.ch + Schweizer Regierung + *.gramps-project + Gramps-project.org + *.graphene-lda.com + Graphene-lda.com + *.grassroots.org + Grassroots.org (partial) + *.gratipay.com + Gratipay.com (partial) + *.gravatar.com + Gravatar + *.gravity.com + Gravity (partial) + *.grc.com + Gibson Research + *.grcmc.org + Grand Rapids Community Media Center + *.grdc.com.au + Grains Research and Development Corporation + *.greatnonprofits.org + Greatnonprofits.org (partial) + *.greatteachersgreatschools.org + Stand for Children (partial) + *.greencar.com + Demand Media (partial) + *.greenhouse.io + Greenhouse.io + *.greenpolkadotbox.com + Green PolkaDot Box + *.greenqloud.com + GreenQloud.com + *.greensky.com + GreenSky Credit.com (partial) + *.greensmoke.com + Green Smoke (partial) + *.greenvehicleguide.gov.au + Green Vehicle Guide + *.greenvilleonline.com + GreenvilleOnline.com + *.grepular.com + Grepular + *.gridserver.com + Media Temple (partial) + *.gridzdirect.com + Gridz Direct.com (false MCB) + *.griffith.edu.au + Griffith University + *.grillingishappiness.com + Grilling is Happiness.com + *.grinnell.edu + Grinnell College (partial) + *.grml.org + GRML.org + *.groceryserver.com + Grocery Server.com (partial) + *.groupersocialclub.com + Grouper Social Club.com + *.groupersocialclub.com.au + Grouper Social Club.com + *.groupon.co.uk + Groupon DE/UK + *.groupon.com + Groupon.com (partial) + *.groupon.de + Groupon DE/UK + *.groupon.gr + Groupon.gr + *.groups.et.byu.net + Brigham Young University (partial) + *.growhq.com + Grow HQ.com + *.grsecurity.net + GRSecurity.net + *.grvcdn.com + Gravity (partial) + *.gs-media.de + GS-media.de + *.gsa.gov + GSA.gov (partial) + *.gsis.gr + Greek-gov + *.gsn.com + Game Show Network (partial) + *.gstatic.com + Google APIs + *.gsu.edu + GSU.edu (partial) + *.gta.arch.ethz.ch + ETH Zürich (partial) + *.gtcsonline.mycashflow.fi + GTC's Online + *.gtk-apps.org + openDesktop.org + *.gu.se + GU.se + *.guardian.co.tt + Guardian.co.tt (false MCB) + *.guardian.co.uk + The Guardian (partial) + *.guardianoffers.co.uk + The Guardian (partial) + *.guardianproject.info + Guardian Project + *.guidebook.com + Guidebook.com + *.guidestar.org + GuideStar (partial) + *.guifi.net + Guifi.net (partial) + *.guildwars2.com + Guild Wars 2 (partial) + *.guim.co.uk + The Guardian (partial) + *.guitarcenter.com + Guitar Center.com (partial) + *.guldencoin.com + Guldencoin.com + *.gulli.com + gulli.com (partial) + *.gullipics.com + gulli.com (partial) + *.gum.co + Gumroad.com + *.gumgum.com + GumGum (partial) + *.gumroad.com + Gumroad.com + *.gumstix.com + Gumstix + *.gunadiframework.com + Accessible Information Management (gunadiframework.com) + *.gutenberg.org + Gutenburg.org + *.guttmacher.org + Guttmacher Institute + *.gwallet.com + RadiumOne (partial) + *.gwu.edu + George Washington University (partial) + *.gyft.com + Gyft.com + *.gymglish.com + GymGlish (partial) + *.h-da.de + Darmstadt University of Applied Sciences (partial) + *.h5n.us + h5n.us + *.habets.pp.se + habets.se (partial) + *.habets.se + habets.se (partial) + *.habrahabr.ru + Habrahabr.ru (partial) + *.hackerexperience.com + Hacker Experience.com + *.hackerone-user-content.com + HackerOne.com + *.hackerone.com + HackerOne.com + *.hackers.fi + hackers.fi + *.hackerschool.com + hackerschool.com + *.hackerspace.gr + Greek-various + *.hackerspace.pl + Hackerspace.pl + *.hackpad.com + Hackpad + *.haiku-os.org + Haiku Project + *.hailguardian.com + Hail Storm Products + *.hailstormproducts.com + Hail Storm Products + *.hairsmize.com + Hairsmize.com + *.hak5.org + Hak5.org (partial) + *.halifax-online.co.uk + Halifax + *.halifax.co.uk + Halifax + *.halowaypoint.com + Halo + *.hammacher.com + Hammacher Schlemmer (partial) + *.handelsblatt.com + Handelsblatt (partial) + *.hands.com + hands.com + *.handy.de + handy.de + *.happyassassin.net + happyassassin.net + *.happyherbivore.com + Happy Herbivore (partial) + *.happyknowledge.com + HappyKnowledge.com + *.harakah.net.my + Harakahdaily (partial) + *.harakahdaily.net + Harakahdaily (partial) + *.hark.com + Hark + *.harriscomputer.com + Harris Computer.com (partial) + *.hartware.de + Hartware.de + *.harvard.edu + Harvard University (partial) + *.hashicorp.com + HashiCorp.com + *.haskell.org + Haskell.org (partial) + *.hastexo.com + hastexo.com + *.hatena.ne.jp + Hatena (partial) + *.hawaii.gov + Hawaii.gov (partial) + *.hawaiianair.com + Hawaiian Airlines + *.hawkhost.com + Hawk Host.com (partial) + *.haymarketmedia.com + Haymarket (partial) + *.hazen.gl.ciw.edu + Carnegie Institution for Science + *.hbanet.org + HBAnet.org + *.hbo.com + HBO + *.hboeck.de + HBoeck.de + *.hbr.org + HBR.org (partial) + *.hbrstatic.com + Cengage (partial) + *.hcl.com + HCL Technologies (partial) + *.hcl.in + HCL Technologies (partial) + *.hd.se + HD.se + *.hddn.com + NetDNA (partial) + *.hds.com + Hitachi Data Systems (partial) + *.he.net + Hurricane Electric + *.heacademy.ac.uk + Higher Education Academy (partial) + *.headphone.com + Headphone.com + *.healthcare.gov + Healthcare.gov + *.healthcarestaffbenefits.org + Healthcare Staff Benefits + *.healthdirect.gov.au + Healthdirect Australia + *.healthfuze.com + Healthfuze.com + *.healthunlocked.com + NHS (partial) + *.hearstmags.com + Hearst Magazines + *.heart.org + Heart.org (partial) + *.hearthvod.com + HearthVoD.com + *.heckrath.net + heckrath.net + *.hegerys.com + Hegerys.com (partial) + *.heifer.org + Heifer.org + *.heimdalsecurity.com + Heimdal Security.com + *.heinlein-support.de + Heinlein-Support.de + *.heise.de + Heise.de (partial) + *.heiseshop.de + Heise shop.de + *.hellobar.com + Hello Bar (partial) + *.helmet.fi + Helmet.fi + *.help.sape.ru + Sape (partial) + *.helpjuice.com + Helpjuice (partial) + *.helpocean.com + helpOcean + *.helponclick.com + HelpOnClick + *.helpscout.net + Help Scout.net (partial) + *.helpspot.com + HelpSpot + *.helsinki.fi + University of Helsinki (partial) + *.herbal-nutrition2.net + herbal-nutrition2.net + *.herdict.org + Herdict + *.here.com + Here.com (partial) + *.heroku.com + Heroku + *.herokuapp.com + Heroku + *.heroup.com + Hero Up.com + *.herts.ac.uk + University of Hertfordshire (partial) + *.hesaplabakalim.com + Hesapla Bakalim.com + *.heteml.jp + Heteml.jp + *.hetnet.nl + KPN + *.hetzner.de + Hetzner Online + *.hexonet.net + Hexonet + *.hhmi.org + Howard Hughes Medical Institute + *.hi.nl + Hi + *.hiconversion.com + HiConversion.com (partial) + *.hideman.net + Hideman.net + *.hidemyass.com + Hide My Ass (partial) + *.hidepay.net + Hidepay.net + *.hifxonline.co.uk + HiFX + *.highbeam.com + Cengage (partial) + *.highseer.com + High Seer.com + *.highwebmedia.com + highwebmedia.com + *.hipmunk.com + Hipmunk.com + *.his.com + Heller Information Services (partial) + *.history.com + History.com (partial) + *.hitb.org + HITBSecConf + *.hitbox.com + Hitbox.com + *.hitleap.com + HitLeap.com + *.hitslink.com + HitsLink + *.hivelocity.net + Hivelocity Hosting + *.hivos.org + Hivos.org + *.hizlisaat.com + Hızlı Saat + *.hjcms.de + HJCMS (CAcert) + *.hlat.us + HabboLatino + *.hmv.co.jp + HMV Japan (partial) + *.hofer.at + Aldi + *.hofer.si + Aldi + *.hohndel.org + Community Matters (partial) + *.hola.org + Hola + *.hollywoodoutlaws.com + Hollywood Outlaws.com (false MCB) + *.hollywoodreporter.com + Hollywood Reporter (partial) + *.holoscripter.org + Holoscripter.org + *.home.pl + home.pl + *.homebuzz.co.uk + home buzz.co.uk + *.homedepot.com + Home Depot.com (partial) + *.homeinsurance.com + HomeInsurance.com + *.homelessworldcup.org + Homeless World Cup + *.hometheaterreview.com + Home Theater Review.com (partial) + *.honestpolicy.com + Honest Policy + *.honeybeeloans.com + HoneyBeeLoans.com + *.hootsuite.com + HootSuite + *.hope.net + hope.net (partial) + *.horde.hauke-m.de + Hauke + *.horizon.tv + Horizon.TV + *.hoseasons.co.uk + Wyndham (partial) + *.hospitalityleaders.com + Hospitality Leaders + *.host-tracker.com + Host-Tracker.com (partial) + *.host.co.id + Host.co.id + *.host.ie + Digiweb (partial) + *.host1plus.com + Host1Plus + *.hostanalytics.com + Host Analytics (partial) + *.hostasaurus.com + Hostasaurus + *.hostcentric.com + HostCentric + *.hostdime.com + HostDime (partial) + *.hosted.exlibrisgroup.com + Ex Libris + *.hostelworld.com + Web Reservations International (partial) + *.hosteurope.de + Host Europe.de + *.hostgator.com + HostGator (partial) + *.hosthorde.com + HostHorde.com + *.hosting-advantage.com + NetFronts (partial) + *.hosting.ru.nl + Radboud University Nijmegen + *.hosting90.cz + Hosting90.cz + *.hosting9000.com + Hosting9000.com + *.hostingcon.com + HostingCon + *.hostmonster-cdn.com + Hostmonster + *.hostmonster.com + Hostmonster + *.hostname.sk + hostname.sk (partial) + *.hostpoint.ch + Hostpoint + *.hotels.com + Hotels.com (partial) + *.hotelwifi.com + Hotel Wifi.com (partial) + *.hotmail.com + Hotmail / Live + *.hotwire.com + Hotwire + *.hounddogcentral.com + Hounddog Central + *.housingwire.com + HousingWire.com + *.hover.com + Hover.com (partial) + *.how-to-box.com + How to Box + *.howtogeek.com + How To Geek.com (partial) + *.hpcloud.com + HP Cloud.com (partial) + *.hr.carnegiescience.edu + Carnegie Institution for Science + *.hrcdn.net + HackerRank.com + *.hrep.nhmrc.gov.au + Human Research Ethics Portal + *.hrusecky.net + Michal Hrušecký + *.hrw.org + Human Rights Watch + *.hs.llnwd.net + Limelight Networks (partial) + *.hsbc.co.uk + HSBC + *.hsbctrinkaus.de + HSBC + *.hsr.ch + University of Applied Sciences Rapperswil + *.hsselite.com + Hotspot Shield (partial) + *.hsto.org + Hsto.org + *.hstor.org + hstor.org + *.htbridge.com + HT Bridge.com + *.htrnews.com + Herald Times Reporter + *.http.cdn.softlayer.net + SoftLayer + *.https.cdn.softlayer.net + SoftLayer + *.httpwatch.com + HTTPwatch.com + *.huawei.com + Huawei.com (partial) + *.hubspot.com + HubSpot + *.hubspot.net + HubSpot + *.hubspotqa.com + HubSpot + *.hud.gov + US Department of Housing and Urban Development (partial) + *.huffingtonpost.com + Huffington Post + *.huffpost.com + Huffington Post + *.hugedomains.com + HugeDomains.com (partial) + *.huggies.com.au + Huggies Australia (partial) + *.humanaction.com + Human Action + *.humanbrainproject.eu + Human Brain Project.eu + *.humanevents.com + Human Events (partial) + *.humanrights.gov.au + Australian Human Rights Commission + *.humblebundle.com + Humble Bundle (partial) + *.hunch.com + Hunch (partial) + *.hush-hush.com + Hush-Hush (partial) + *.hvosting.ua + hvosting.ua + *.hwbot.org + Hwbot.org (partial) + *.hwstatic.com + Web Reservations International (partial) + *.hwsw.hu + HWSW.hu + *.hypanova.com + Hypanova.com + *.i-grasp.com + iGrasp + *.i-kiz.de + I-kiz.de + *.i.lithium.com + Lithium + *.i2p2.de + I2P (partial) + *.iaapa.org + International Association of Amusement Parks and Attractions + *.iab.net + Interactive Advertising Bureau + *.iacr.org + International Association for Cryptologic Research + *.iamnoone-solutions.net + iamnoone-solutions.net (partial) + *.iamplify.com + iAmplify (partial) + *.ian.com + ian.com + *.iana.org + IANA + *.iapc.nl + Stichting IAPC + *.iapc.utwente.nl + Stichting IAPC + *.iapplicants.com + JobMatch (partial) + *.ias.edu + IAS.edu (partial) + *.ibb.ubs.com + UBS (partial) + *.iberdrola.es + Iberdrola (partial) + *.iberia.com + Iberia + *.iberiabank.com + Iberiabank + *.ibillboard.com + IBillBoard.com (partial) + *.ibone.ch + dynamic-net.ch (partial) + *.ibsrv.net + Internet Brands + *.ibtimes.com + International Business Times (partial) + *.ic-live.com + ic-live.com + *.icann.org + ICANN (partial) + *.icbdr.com + CareerBuilder (partial) + *.icbit.se + ICBIT + *.icculus.org + Icculus.org + *.icecat.biz + Icecat (partial) + *.icedivx.com + IceDivX.com + *.icefilms.info + IceFilms.info (partial) + *.iceimg.com + IceImg.com + *.icij.org + International Consortium of Investigative Journalists + *.icims.com + ICIMS.com + *.icinga.org + Icinga + *.icio.us + Delicious + *.icln.org + ICLN.org + *.iconfinder.com + Iconfinder (partial) + *.icq.com + ICQ.com + *.icsdelivery.com + icsdelivery.com + *.icu-project.org + International Components for Unicode (partial) + *.idc.com + IDC + *.ideafit.com + Idea Fit.com (partial) + *.idefimusic.com + idefi + *.identi.ca + Identica + *.identrust.com + IdenTrust.com + *.idg.com.au + IDG.com.au + *.idg.de + Idg.de + *.ieee.org + IEEE (partial) + *.ielts.org + IELTS + *.ientry.com + iEntry (partial) + *.iesnare.com + iesnare.com + *.ietf.org + IETF (partial) + *.ifixit.com + iFixit (partial) + *.ifixit.net + iFixit (partial) + *.ifriends.net + iFriends (partial) + *.ige.ch + Swiss Federal Institute of Intellectual Property + *.iggcdn.com + Indiegogo (partial) + *.ighome.com + igHome.com + *.igl.net + Case's Ladder + *.igloo.nsidc.org + National Snow and Ice Data Center + *.ignimgs.com + IGN (partial) + *.igniterealtime.org + Ignite Realtime.org + *.igodigital.com + iGoDigital.com + *.iheart.com + iHeart.com (partial) + *.ihg.com + InterContinental Hotels Group + *.ihgmerlin.com + IHG Merlin.com (partial) + *.iibuy.com.au + iiBuy.com.au + *.iii.com + Innovative Interfaces (partial) + *.iinet.net.au + iiNet.net.au (partial) + *.iis.se + IIS.se + *.ijreview.com + IJReview.com (false MCB) + *.ikea.com + Ikea.com (partial) + *.ilivid.com + iLivid (partial) + *.iljmp.com + Iljmp.com + *.illinois.edu + University of Illinois at Urban-Champaign (partial) + *.illumina.com + Illumina.com (partial) + *.illuminated-pots.com + Illuminated Pots + *.ilogo.in + iLogo + *.ilovebluesea.com + i love blue sea.com + *.image-gmkt.com + Qoo10.com (partial) + *.image-qoo10.cn + Qoo10.cn (partial) + *.image-repository.com + Victor Chandler International + *.images-amazon.com + Amazon Web Services + *.images.shrinktheweb.com + ShrinkTheWeb + *.imagesbn.com + imagesBN.com + *.imageshack.us + ImageShack (partial) + *.imakethingswork.com + I Make Things Work + *.imation.com + Imation.com (partial) + *.imdb.com + IMDB (partial) + *.imfimg.com + imfimg.com + *.img-dpreview.com + Digital Photography Review (partial) + *.img.digitalrivercontent.net + Digital River (partial) + *.imgflip.com + Imgflip.com + *.imgix.net + Fastly + *.imgrind.com + IMGrind.com + *.imgsmail.ru + imgs Mail.ru (partial) + *.imgur.com + Imgur + *.imiclk.com + imiclk.com + *.imimg.com + IndiaMART (partial) + *.imine.co + imine.co + *.immerda.ch + Immerda.ch + *.imodules.com + iModules + *.impact-ad.jp + impAct (partial) + *.impactradius.com + Impact Radius + *.imperial.ac.uk + Imperial College London (partial) + *.imperialviolet.org + ImperialViolet.org + *.impulse.net + Impulse.net + *.imrworldwide.com + Imrworldwide.com + *.in-disguise.com + in-Disguise.com + *.inapub.co.uk + Inapub.co.uk + *.inaturalist.org + iNaturalist.org + *.inc.com + Inc.com (partial) + *.incapsula.com + Incapsula + *.incisivemedia.com + Incisive Media + *.incoin.io + incoin.io (partial) + *.incommonfederation.org + InCommon + *.ind.ie + Ind.ie + *.indabamusic.com + Indaba Music.com (false MCB) + *.independentmail.com + Independent Mail.com (partial) + *.indiana.edu + Indianna University (partial) + *.indiegogo.com + Indiegogo (partial) + *.indiemerch.com + IndieMerch (partial) + *.indstate.edu + Indiana State University (partial) + *.inductionsolutions.com + Induction Solutions.com (false MCB) + *.industrybrains.com + Marchex (partial) + *.indymedia.org + Indymedia.org + *.indymedia.org.uk + Indymedia.org + *.infinet.com.au + Infinet.com.au (false MCB) + *.infinity-tracking.net + Infinity Tracking (partial) + *.infinitysystems.com + Harman International Industries (partial) + *.influads.com + InfluAds (partial) + *.influencersconference.com + Influencers Conference + *.infnx.com + InfNX + *.infolinks.com + Infolinks (partial) + *.infomaniak.ch + Infomaniak Network + *.infomaniak.com + Infomaniak Network + *.infopaginas.com + Infopáginas + *.informaction.com + Informaction.com (partial) + *.informahealthcarestore.com + Informa Healthcare (partial) + *.informatick.net + informatick.net (partial) + *.informationactivism.org + informationactivism.org + *.informit.com + InformIT (partial) + *.infotech-team.com + WebXakep.Net + *.infousa.com + Infogroup (partial) + *.infowar.com + InfoWar.com + *.infowars.com + Infowars.com (partial) + *.infoworld.com + InfoWorld.com + *.infrastructure.gov.au + Department of Infrastructure and Regional Development + *.ingdirect.com + ING Direct + *.ingenuity.net.au + Ingenuity Hosting + *.inkfrog.com + inkFrog.com (partial) + *.inlinkz.com + InLinkz.com (partial) + *.inmotionhosting.com + InMotion Hosting + *.innovateuk.org + Innovate UK.org (partial) + *.inq.com + TouchCommerce (partial) + *.inria.fr + Inria.fr (partial) + *.inside.pratt.duke.edu + Duke University (partial) + *.insidecelebs.com + insidecelebs.com + *.insidehighered.com + Inside Higher Ed (partial) + *.insideygs.com + insideygs.com + *.insight.com + Insight + *.insightexpressai.com + InsightExpressai.com + *.insightmgr.com + Digitaria (partial) + *.inspectlet.com + Inspectlet.com + *.instacominc.com + Instacom Inc.com + *.instagram.com + Instagram (partial) + *.instantbird.org + Instantbird.org (partial) + *.instantpage.me + GoDaddy (partial) + *.instantservice.com + ATG Web Commerce + *.instantssl.com + InstantSSL + *.instartlogic.com + Instart Logic.com (partial) + *.instellaplatform.com + Instella Platform (partial) + *.intand.com + Tandem Calendar + *.intego.com + Intego (partial) + *.integrity.pt + Integrity.pt + *.intel.com + Intel (partial) + *.intelli-direct.com + intelli-direct.com + *.intellichat.com + Just Develop It (partial) + *.intelliot.com + intelliot.com + *.intelliworkschat.com + Intelliworks Chat.com + *.intelrad.com + Intelrad.com + *.interactivedata.com + Interactive Data Corporation (partial) + *.interclick.com + Interclick + *.intercom.io + Intercom.io + *.intercomcdn.com + Intercom CDN.com + *.intergi.com + Intergi (partial) + *.interkassa.com + Interkassa + *.interlan.se + Interlan.se + *.intermundomedia.com + Intermundo Media.com + *.internap.com + Internap Network Services (partial) + *.internationalman.com + InternationalMan + *.internationalsos.com + International SOS + *.internet.bs + Internet.bs + *.internet.org.nz + Internet.org.nz + *.internet2.edu + Internet2 (partial) + *.internetbs.net + Internet.bs + *.internetdefenseleague.org + Internet Defense League + *.internetretailer.com + Vertical Web Media + *.internetsociety.org + Internet Society (partial) + *.internetsuccess.at + internetsuccess.at + *.intersango.com + Intersango.com + *.interworx.com + InterWorx (partial) + *.introweb.hu + Introweb Kft. + *.intuit.com + Intuit (partial) + *.intuitcdn.net + Intuit (partial) + *.intuitivepassword.com + Intuitive Password.com (partial) + *.intuitlabs.com + Intuit Labs.com + *.intuitstatic.com + Intuit (partial) + *.invasion.com + Invasion.com (false MCB) + *.investingchannel.com + Investing Channel (partial) + *.invincea.com + Invincea.com (partial) + *.invisionpower.com + Invision Power Services (partial) + *.invitemedia.com + Invite Media (partial) + *.invoca.net + Invoca.net + *.invodo.com + Invodo (partial) + *.invoiceocean.com + Invoice Ocean + *.involver.com + Involver + *.inwx.at + InterNetworX + *.inwx.ch + InterNetworX + *.inwx.com + InterNetworX + *.inwx.de + InterNetworX + *.inwx.es + InterNetworX + *.inwx.net + InterNetworX + *.ioam.de + IOam.de + *.iomtt.com + IoMTT.com (partial) + *.iop.org + Institute of Physics (partial) + *.iospp.org + IOSPP + *.iovation.com + iovation + *.ip-projects.de + IP-Projects.de + *.ip-search.ch + Swiss Federal Institute of Intellectual Property + *.ipaddresslabs.com + IPAddressLabs.com (partial) + *.ipage.com + iPage + *.ipfire.org + IPFire.org (false MCB) + *.iplay.com + Iplay.com (partial) + *.ipower.com + IPOWER + *.ipredator.se + IPredator + *.iproduction.com + IProduction + *.iprsoftware.com + iPR Software.com (partial) + *.iptorrents.com + IPTorrents.com + *.ipxe.org + iPXE.org (partial) + *.iraaa.org + IRAAA.org (false MCB) + *.ireeco.com + Ireeco.com + *.irisa.fr + IRISA.net + *.irish-country-cottages.co.uk + Wyndham (partial) + *.irishbroadband.ie + Irish Broadband + *.ironsearch.com + IRON Search + *.ironwhale.com + Ironwhale.com + *.isc.org + ISC + *.isc2.org + ISC2.org (partial) + *.isdewinkelopen.nl + Stichting IAPC + *.isecpartners.com + iSEC Partners + *.isle.jp + Isle.jp + *.isoc.org + Internet Society (partial) + *.isohunt.com + IsoHunt + *.issh.ac.jp + International School of the Sacred Heart + *.isshub.io + IssHub.com + *.issuu.com + Issuu Aps (partial) + *.istheinternetonfire.com + istheinternetonfire.com + *.itactic.com + iTactic.com + *.italian-country-cottages.co.uk + Wyndham (partial) + *.itdashboard.gov + IT Dashboard.gov + *.itechnician.co.uk + iTechnician.co.uk + *.iter.org + ITER.org + *.itex.com + Itex + *.itmb.nl + ITMB.nl + *.itsanhonour.gov.au + It's an Honour + *.itsfogo.com + iGaming (partial) + *.ittoolbox.com + IT Toolbox.com (partial) + *.itu.dk + IT University of Copenhagen + *.itu.int + ITU (partial) + *.itv.com + ITV.com (partial) + *.iu.edu + Indianna University (partial) + *.iupui.edu + IUPUI.edu (partial) + *.iv.lt + Iv.lt (partial) + *.ivacy.com + Ivacy (partial) + *.ivegotkids.com + Ive Got Kids.com (false MCB) + *.ivn.us + Independent Voter Network + *.ivoox.com + iVoox.com + *.ivwbox.de + ivwbox.de (partial) + *.iwantmytvmagazine.com + NTVB Media (partial) + *.iway.ch + iway.ch + *.iwebreader.com + iWebReader (partial) + *.iwowcase.com + iWOWCase + *.ixquick-proxy.com + Ixquick + *.ixquick.com + Ixquick + *.ixsystems.com + iXsystems + *.ixwebhosting.com + Ecommerce (partial) + *.jabber.ru + Jabber.ru (partial) + *.jabberd.org + Jabberd.org + *.jabbr.net + JabbR.net + *.jackimaging.com + Jack Imaging.com + *.jacksfetishtube.com + Jacks Fetish Tube + *.jacksonsun.com + The Jackson Sun (partial) + *.jacksonville.com + Jacksonville.com (partial) + *.jacoblangvad.com + Jacob Langvad Nilsson + *.jamanetwork.com + JAMA Network (partial) + *.jamesthebard.net + jamesthebard.net + *.jamfsoftware.com + JAMF Software.com (partial) + *.janalta.com + Janalta.com + *.janestreet.com + Jane Street.com (partial) + *.janrain.com + JanRain (partial) + *.janraincapture.com + JanRain (partial) + *.japantimes.co.jp + The Japan Times (partial) + *.jappix.com + Jappix (partial) + *.jariangibson.com + Jarian Gibson.com (false MCB) + *.jasig.org + Jasig.org + *.java-apps.org + openDesktop.org + *.java.net + Java.net (partial) + *.javascriptmvc.com + JavaScriptMVC (partial) + *.javelinsecurity.com + Javelin Security.com + *.javelinstrategy.com + Javelin Strategy.com + *.jawbone.com + Jawbone.com (partial) + *.jboss.com + JBoss + *.jboss.org + JBoss + *.jci.org + Journal of Clinical Investigation (partial) + *.jcp.org + JCP.org + *.jeena.net + jeena.net + *.jeeptopsdirect.com + Jeep Tops Direct.com + *.jeffnabers.com + Jeff Nabers.com (false MCB) + *.jenkins-ci.org + Jenkins-CI.org + *.jet2.com + Jet2.com + *.jetbrains.com + JetBrains (partial) + *.jetico.com + Jetico.com + *.jhalderm.com + J Halderm.com + *.jhu.edu + The Johns Hopkins University (partial) + *.jiffyfreescore.com + Jiffy Free Score.com + *.jigsaw.com + Jigsaw (partial) + *.jimdo.com + Jimdo (partial) + *.jimg.dk + Jimg.dk + *.jimstatic.com + Jim static.com + *.jit.su + jit.su + *.jitscale.com + Jitscale.com (false MCB) + *.jiwire.com + JiWire (partial) + *.jlist.com + JList.com (partial) + *.jmldirect.com + JML Direct.com + *.jms1.net + jms1.net + *.jobamatic.com + Simply Hired + *.jobcloud.ch + jobs.ch + *.jobs.ch + jobs.ch + *.jobs2web.com + Jobs2Web + *.jobscore.com + jobScore (partial) + *.jobsgopublic.com + jobsgopublic.com (partial) + *.jobthread.com + JobThread + *.jobvite.com + Jobvite (partial) + *.jobware.de + Jobware.de + *.jodohost.com + JodoHost (partial) + *.johnshopkins.edu + The Johns Hopkins University (partial) + *.join.me + LogMeIn.com (partial) + *.join.tv + Join.TV + *.joinos.com + Joinos.com + *.joker.com + Joker + *.jolla.com + Jolla.com + *.joomag.com + Joomag.com (partial) + *.joomla.org + Joomla (partial) + *.joomlart.com + JoomlArt.com (partial) + *.jorsika.com + Camp Staff USA + *.josefsson.org + Josefsson.org + *.jotform.com + JotForm + *.jotformpro.com + JotForm + *.jottit.com + Jottit + *.joyent.com + Joyent (partial) + *.joyentcloud.com + Joyent (partial) + *.jquery.com + jQuery (partial) + *.jquery.org + jQuery.org (partial) + *.jquerymobile.com + jQuery Mobile.com (partial) + *.jqueryui.com + jQuery UI.com (partial) + *.jrnl.ie + TheJournal.ie + *.jsdelivr.net + jsDelivr.net + *.jstor.org + JSTOR (partial) + *.jtlebi.fr + jtlebi.fr + *.jubii.dk + Jubii.dk (partial) + *.judicialwatch.org + Judicial Watch + *.judiciary.gov.uk + Judiciary of England and Wales (partial) + *.jugendschutzprogramm.de + Jugendschutzprogramm.de + *.juicycanvas.com + JuicyCanvas + *.jumio.com + Jumio + *.jumpingjack.com + JumpingJack + *.jumptap.com + Jumptap + *.jumptime.com + JumpTime.com (partial) + *.junge-piraten.de + Pirate Party + *.juniper.net + Juniper Networks + *.juno.co.uk + JunoRecords + *.junostatic.com + JunoRecords + *.jura.ch + Schweizer Regierung + *.justapple.com + Just Apple.com (false MCB) + *.justcloud.com + Just Develop It (partial) + *.justgetflux.com + F.lux + *.justgive.org + JustGive + *.justgiving.com + JustGiving (partial) + *.justhost.com + Just Develop It (partial) + *.justia.com + Justia (partial) + *.jwpcdn.com + LongTail (partial) + *.jwpltx.com + LongTail (partial) + *.kabelmail.de + Kabel Deutschland + *.kaimi.ru + kaimi.ru + *.kaizencrossfit.com + DDS2DDS.com + *.kali.org + Kali.org (partial) + *.kaltura.com + Kaltura (partial) + *.kameleoon.com + Kameleoon.com + *.kantarainitiative.org + Kantara Initiative.org + *.kantarlatam.com + Kantar Latam Portal + *.kapiton.se + Kapiton.se + *.kariera.gr + Kariera.gr + *.kartfighter.com + Kart Fighter.com (partial) + *.karwansaraypublishers.com + Karwansaray Publishers.com (false MCB) + *.kaspersky.com + Kaspersky.com (partial) + *.kat-de-paris.fr + Kat de Paris + *.kat.ph + KickassTorrents + *.kattare.com + Kattare.com + *.katylee.com + Katylee.com + *.kau.se + KAU.se + *.kayako.com + Kayako (partial) + *.kbb.com + Kelley Blue Book Co. + *.kbpublisher.com + KBPublisher.com (partial) + *.kcl.ac.uk + King's College London (partial) + *.kcvids.com + KCVids + *.kde-apps.org + openDesktop.org + *.kde-files.org + openDesktop.org + *.kde-help.org + openDesktop.org + *.kde-look.org + openDesktop.org + *.kde.org + KDE (partial) + *.kenai.com + Kenai.com + *.kensington.com + Kensington + *.kent.ac.uk + University of Kent (partial) + *.kentico.com + Kentico + *.kernel.org + Kernel.org + *.kernelconcepts.de + kernel concepts (partial) + *.ketchum.com + Ketchum.com (partial) + *.keybase.io + Keybase.io + *.keymile.com + Keymile.com (partial) + *.kgnb.am + KGNB.am + *.khn.nl + KHN.nl + *.khoc.co + KHOC.co + *.khronos.org + Khronos Group (partial) + *.kickapps.com + KickApps (partial) + *.kickassapp.com + Kick Ass + *.kickassvps.com + KickAssVPS.com + *.kicknews.com + KickNews + *.kicknews.net + KickNews + *.kickstarter.com + Kickstarter (partial) + *.kidsfootlocker.com + Kids Foot Locker + *.kikatek.com + Kikatek + *.kimpluscraig.com + kimpluscraig.com + *.kinfolk.com + Kinfolk.com (false MCB) + *.king.com + King.com (partial) + *.kinghost.com.br + KingHost (partial) + *.kinghost.net + KingHost (partial) + *.kingsroadmerch.com + Kings Road Merch + *.kingston.com + Kingston.com (partial) + *.kinko.me + Kinko.me + *.kintera.org + Kintera Network + *.kirei.se + kirei.se + *.kirjoitusalusta.fi + Kirjoitusalusta + *.kissinsights.com + KISSinsights + *.kissmetrics.com + KISSmetrics + *.kit.edu + Karlsruhe Institute of Technology (partial) + *.kitchenriddles.com + Kitchen Riddles.com + *.kitd.com + KIT digital + *.kiva.org + Kiva.org (partial) + *.kiwiirc.com + KiwiIRC.com + *.kixeye.com + KIXEYE (partial) + *.klm.com + KLM + *.kmart.com + Kmart.com (partial) + *.knab.nl + Knab.nl + *.kncminer.com + KnCMiner.com + *.knightswarm.com + KnightSwarm + *.kobo.com + Kobo (partial) + *.kobobooks.com + Kobo (partial) + *.kobobooks.de + Kobo (partial) + *.kobobooks.es + Kobo (partial) + *.kobobooks.fr + Kobo (partial) + *.kobobooks.it + Kobo (partial) + *.kobobooks.nl + Kobo (partial) + *.kobobooks.pt + Kobo (partial) + *.koding.com + Koding + *.kolab.org + Kolab.org + *.kolabsys.com + KolabSys.com + *.komoona.com + Komoona.com (partial) + *.kontera.com + Kontera (partial) + *.kontoapi.de + Konto API + *.kopiosto.fi + Kopiosto + *.koreatimes.co.kr + Koreatimes + *.korelogic.com + KoreLogic Security + *.kororaproject.org + Korora Project.org + *.kpn.com + KPN + *.kpn.nl + KPN + *.kpnmail.nl + KPN + *.kpopstage.co + kpopstage.co + *.kproxy.com + KProxy.com + *.kqed.org + KQED.org (partial) + *.kralenstart.nl + KralenStart.nl + *.kriso.ee + Krisostomus + *.kriso.lt + Krisostomus + *.kriso.lv + Krisostomus + *.krxd.net + Krux Digital + *.kryptos.sh + Kryptos.sh (false MCB) + *.kryptronic.com + Kryptronic (partial) + *.krystal.co.uk + Krystal Hosting + *.ksaglass.com + KSA Glass + *.ksl.com + KSL + *.ksplice.com + Ksplice (partial) + *.ku.edu + University of Kansas (partial) + *.kubuntuforums.net + Kubuntu Forums.net + *.kudelskisecurity.com + Kudelski Security + *.kuleuven.be + Katholieke Universiteit Leuven (partial) + *.kundenserver42.de + die netztaucher (partial) + *.kungfunation.com + Kung Fu Store (partial) + *.kungfustore.com + Kung Fu Store (partial) + *.kunk.org + NPR.org (partial) + *.kununu.com + kununu (partial) + *.kurly.fr + Kurly.fr + *.kyani.net + Kyani.net + *.l-auto-entrepreneur.org + L-auto-entrepreneur.org + *.la-hora.org + Uhrzeit.org (partial) + *.labaia.ws + labaia.ws (partial) + *.labelsig.com + Labels IG.com + *.lacaixa.es + La Caixa + *.lacrossetechnology.com + La Crosse Technology.com + *.ladesk.com + LiveAgent + *.ladyfootlocker.com + Lady Foot Locker + *.lakome.com + Lakome.com + *.landsend.com + Lands End.com + *.landslide.com + Landslide.com + *.lanistaads.com + lanistaads.com (partial) + *.lankylife.com + LankyLife + *.lapatilla.com + LaPatilla.com + *.laprox.com + Laprox Sites + *.laquadrature.net + La Quadrature du Net + *.latimes.com + Los Angeles Times (partial) + *.launchpad.net + Launchpad + *.launchpadlibrarian.net + Launchpad + *.launchrock.com + LaunchRock (partial) + *.laup.nu + Laup + *.laverna.cc + Laverna + *.law.yale.edu + Yale University (partial) + *.layerbnc.org + LayerBNC.org + *.lazykush.com + Lazy Kush + *.lboro.ac.uk + LboroAcUk + *.lchost.co.uk + LCHost + *.le-vpn.com + Le-VPN.com (false MCB) + *.le.ac.uk + University of Leicester (partial) + *.leadforensics.com + Lead Forensics (partial) + *.leadformix.com + LeadFormix + *.leadlander.com + LeadLander (partial) + *.leadpages.net + LeadPages.net + *.leagueoflegends.com + League of Legends.com (partial) + *.leahscape.com + LeahScape.com + *.leanpub.com + Leanpub.com (partial) + *.learning.ausport.gov.au + Australian Sports Commission Learning Portal + *.learningbizpackage.com + Learning Biz Package.com + *.learnshare.com + LearnShare.com + *.leaseweb.com + LeaseWeb.com (partial) + *.leeds.ac.uk + University of Leeds (partial) + *.leetmedia.com + Leet Media.com + *.leetway.com + Leetway.com (false MCB) + *.legacy.com + Legacy.com (partial) + *.legacy.net + Legacy.net (partial) + *.legacyconnect.ning.com + Legacy.com (partial) + *.lego.com + LEGO (partial) + *.legolas-media.com + Legolas Media (partial) + *.legtux.org + Legtux (cacert) + *.leidenuniv.nl + Leiden Univ.nl (partial) + *.lelo.com + Lelo.com + *.lemde.fr + Le Monde.fr (partial) + *.lemonde.fr + Le Monde.fr (partial) + *.lenovo.com + Lenovo (partial) + *.leo.org + Leo.org (partial) + *.lettre-de-motivation-facile.com + Lettre-de-motivation-facile.com + *.lever.co + Lever.co + *.levexis.com + Levexis (partial) + *.leviathansecurity.com + Leviathan Security.com (false MCB) + *.lewrockwell.com + LewRockwell.com + *.lexity.com + Lexity.com + *.lexpress.fr + LExpress.fr (partial) + *.lfchosting.com + LFC Hosting + *.lfhair.com + LF Hair.com (partial) + *.lg.com + LG.com (partial) + *.lgscout.com + Lookingglass + *.li.ru + LiveInternet (false MCB) + *.lib.ncsu.edu + North Carolina State University (partial) + *.libav.org + libav + *.libdems.org.uk + Libdems.org.uk (partial) + *.liberalamerica.org + Liberal America.org (false MCB) + *.libguides.com + LibGuides + *.libraries.psu.edu + Pennsylvania State University (partial) + *.library.duke.edu + Duke University (partial) + *.library.wisc.edu + University of Wisconsin-Madison + *.librarything.com + LibraryThing + *.libravatar.org + Libravatar.org + *.libreoffice.org + LibreOffice (partial) + *.libreplanet.org + LibrePlanet.org + *.libreswan.org + Libreswan.org + *.libri.de + Libri.de + *.librivox.org + LibriVox (partial) + *.libsdl.org + libSDL.org (partial) + *.libsyn.com + libsyn (partial) + *.lifesaving.com + Lifesaving Resources + *.liftdna.com + Liftdna.com (partial) + *.liftsecurity.io + Lift Security.io + *.ligatus.com + Ligatus (partial) + *.light-paint.com + Light-Paint.com + *.lighthouseapp.com + ENTP (partial) + *.lightreading.com + TechWeb (partial) + *.lighttpd.net + lighttpd.net + *.lijit.com + Lijit.com + *.likes-media.com + Likes + *.likes.com + Likes + *.lilux.lu + LiLux.lu + *.limango.de + limango + *.linbit.com + LINBIT (false MCB) + *.linearcollider.org + Linear Collider Collaboration + *.lingospot.com + Lingospot (partial) + *.linkbucks.com + Linkbucks + *.linkedin.com + LinkedIn (partial) + *.links.mkt41.net + Silverpop (partial) + *.linksalpha.com + LinksAlpha.com (partial) + *.linksynergy.com + Rakuten LinkShare (partial) + *.linksys.com + Linksys (partial) + *.linode.com + Linode + *.linux-foundation.org + Linux Foundation (partial) + *.linux-magazin.de + Linux-Magazin Online (partial) + *.linux-mips.org + LinuxMIPS (partial) + *.linux.com + Linux.com + *.linux.lu + Linux.lu (partial) + *.linux.org.au + Linux.org.au + *.linux42.org + openDesktop.org + *.linuxaria.com + Linuxaria.com + *.linuxcontainers.org + Linux Containers.org + *.linuxcontrolpanel.co.uk + Storm Internet (partial) + *.linuxdaily.com + openDesktop.org + *.linuxdistrocommunity.com + Linux Distro Community.com + *.linuxforums.org + Linux Forums (partial) + *.linuxfoundation.org + Linux Foundation (partial) + *.linuxfr.org + DaLinuxFrenchPage + *.linuxlovers.at + Linuxlovers.at (partial) + *.linuxmint-art.org + openDesktop.org + *.linuxnewmedia.com + Linux New Media (partial) + *.linuxnewmedia.de + Linux New Media (partial) + *.linuxpl.com + Linuxpl.com (partial) + *.linuxquestions.org + LinuxQuestions.org (partial) + *.linuxwall.info + linuxwall.info (partial) + *.lippu.fi + Lippupiste Oy + *.liquidmatrix.org + Liquidmatrix.org + *.liquidweb.com + Liquid Web + *.listbox.com + Listbox + *.listenerapproved.com + Listener Approved + *.listonic.com + Listonic (partial) + *.listrakbi.com + ListrakBI.com + *.liteaddress.org + liteaddress.org + *.litebit.eu + LiteBit.eu + *.litecoin.info + Litecoin.info + *.litecoin.org + Litecoin.org + *.litecoin24.nl + Litecoin24.nl + *.litecointalk.org + LitecoinTalk.org + *.litetree.com + LiteTree.com + *.lithium.com + Lithium + *.litmus.com + Litmus.com + *.litmuscdn.com + LitmusCDN.com + *.little.my + little.my + *.liu.se + LIU.se + *.live.com + Hotmail / Live + *.live.net + Hotmail / Live + *.live1.mintedcdn.net + Minted (partial) + *.livechatinc.com + LiveChat (partial) + *.livecorp.com.au + LiveCorp + *.livefyre.com + Livefyre (partial) + *.livejournal.com + LiveJournal (partial) + *.livenation.be + Live Nation Entertainment (partial) + *.livenation.com.au + Live Nation Entertainment (partial) + *.liveperson.com + LivePerson (partial) + *.liveperson.net + LivePerson (partial) + *.liverail.com + LiveRail (partial) + *.liveramp.com + LiveRamp + *.livestatserver.com + livechatserver.com + *.livestream.com + Livestream + *.livestrong.com + Live Strong.com (partial) + *.livestrong.org + Livestrong (partial) + *.livingroutes.org + Living Routes.org (false MCB) + *.livingsocial.com + LivingSocial (partial) + *.llnl.gov + Lawrence Livermore National Laboratory + *.lls.org + LLS.org (partial) + *.loanscience.com + Loan Science + *.local.ch + Local.ch + *.localbitcoins.com + localbitcoins.com + *.localedge.com + LocalEdge (partial) + *.localsearchassociation.org + Yellow Pages IMA (partial) + *.locaweb.com.br + Locaweb (partial) + *.lockbox.com + Lockbox.com + *.lockerdome.com + LockerDome.com + *.lockerz.com + Lockerz (partial) + *.loggly.com + Loggly.com + *.logicboxsoftware.com + LogicBox Software + *.logilab.fr + Logilab (partial) + *.login.microsoftonline.com + Microsoft Online Services (partial) + *.logitech.com + Logitech.com (partial) + *.logmein.com + LogMeIn.com (partial) + *.logmeinrescue.com + LogMeIn.com (partial) + *.lohud.com + lohud.com (partial) + *.lokus.se + Lokus.se (partial) + *.lolnet.org + lolnet.org + *.lolzparade.com + DailyPix + *.lonap.net + LONAP + *.london.hackspace.org.uk + London Hackspace + *.london2012.com + London 2012 + *.londoncityairport.com + London City Airport + *.londonist.com + Londonist.com (partial) + *.longaccess.com + Long Access.com (partial) + *.longform.org + Longform.org + *.longtailvideo.com + LongTail (partial) + *.longurl.it + MyLikes + *.look.co.uk + Look.co.uk (partial) + *.lookout.com + Lookout.com + *.looloo.com + looloo.com + *.loomio.org + Loomio.org (partial) + *.loopfuse.com + LoopFuse (partial) + *.loopfuse.net + LoopFuse (partial) + *.loopia.se + Loopia + *.lotame.com + Lotame (partial) + *.lotro.com + lotro.com + *.louhi.net + Louhi.net (partial) + *.louiseharrisoncouture.com + Louise Harrison Couture.com + *.louismilan.com + Louis Milan + *.louisville.edu + University of Louisville (partial) + *.love2d.org + Love 2D.org + *.lovefilm.com + LoveFilm + *.lovemoney.com + Lovemoney.com (partial) + *.lovettpublishinghouse.com + Lovett Publishing House.com + *.lowes.com + Lowes.com (partial) + *.lowyat.net + Lowyat.NET (partial) + *.loyalforex.com + Loyal Forex + *.lp0.eu + lp0 (CAcert) + *.lpi.org + LPI.org + *.lpice.eu + LPICE.eu + *.lrb.co.uk + London Review of Books (partial) + *.lrz.de + Leibniz Supercomputing Centre + *.lsac.org + Law School Admission Council (partial) + *.lscdn.net + LivingSocial (partial) + *.lsu.edu + Louisiana State University (partial) + *.ltcdn.com + myLifetime.com (partial) + *.lternet.edu + LTER + *.lttng.org + LTTng Project + *.ltu.se + Luleå University of Technology (partial) + *.ltvimg.com + LongTail (partial) + *.lu.se + LU.se (partial) + *.lucent.com + Alcatel-Lucent.com (partial) + *.lucidsolutions.co.nz + Lucid Solutions.co.nz + *.luciosgold.ca + Lucio's Gold + *.luckyshare.net + LuckyShare + *.lufthansa.com + Lufthansa + *.lugons.org + LUGoNS.org + *.lukb.ch + Schweizer Kantonalbanken + *.lulu.com + Lulu (partial) + *.lulzbot.com + LulzBot (partial) + *.lumension.com + Lumension.com (partial) + *.lumosity.com + Lumosity (partial) + *.lunarpages.com + Add2Net (partial) + *.lurkmo.re + Lurkmore.to + *.lurkmore.so + Lurkmore.to + *.lurkmore.to + Lurkmore.to + *.luxomo.com + Luxomo.com + *.luxsci.com + LuxSci + *.luxurycustomwheels.com + Luxury Custom Wheels + *.luxuryreplica.net + Luxury Replica + *.lww.com + Lippincott Williams & Wilkins (partial) + *.lyris.com + Lyris (partial) + *.lyrk.de + Lyrk.de + *.m-pathy.com + m-pathy (partial) + *.m-privacy.de + m-privacy + *.m.poczta.home.pl + home.pl + *.m01.eu + M01.eu + *.m2pub.com + M2pub.com + *.maas360.com + MaaS360.com (partial) + *.macainfo.org + MacaInfo.org + *.macfarlanepackaging.com + Macfarlane Packaging.com + *.macfound.org + MacArthur Foundation (partial) + *.machinegunsvegas.com + Machine Guns Vegas.com + *.macosforge.org + MacOSForge.org + *.macpaper.com + MAC Paper.com (partial) + *.macromedia.com + Adobe + *.madeinafreeworld.com + Made In a Free World.com (false MCB) + *.madisonlogic.com + Madison Logic (partial) + *.madmimi.com + Mad Mimi.com (partial) + *.maemo-apps.org + openDesktop.org + *.maemo.org + Maemo (partial) + *.mageia.org + Mageia + *.magellanmodels.com + Magellan Models.com (false MCB) + *.magicaffiliateplugin.com + Magic Affiliate plugin.com + *.magicmembers.com + Magic Members.com + *.magix.com + MAGIX (partial) + *.magnatune.com + Magnatune (partial) + *.magserv.com + magserv.com + *.mahoneshomedecor.com + Mahones Home Decor + *.mail.com + Mail.com + *.mail.de + mail.de + *.mail.ru + Mail.ru (partial) + *.mail2web.com + SoftCom (partial) + *.mailchimp.com + MailChimp (partial) + *.mailgun.com + Mailgun.com (partial) + *.mailigen.com + Mailigen (partial) + *.mailpoet.com + MailPoet.com + *.mailstation.de + mailstation.de + *.main-host.de + main-host.de + *.maine.edu + University of Maine System (partial) + *.makeagif.com + Make a Gif.com (false MCB) + *.makemytrip.com + Make My Trip + *.makeprojects.org + Make: Projects (partial) + *.makerble.com + Makerble + *.makerbot.com + Makerbot + *.maliit.org + Maliit.org (partial) + *.malina.hu + Domaintank + *.malwarebytes.org + Malwarebytes (partial) + *.malwaretracker.com + Malware Tracker.com (partial) + *.mamba.ru + Mamba + *.man.com + Man Group + *.manage.cm + manage.cm + *.manageengine.com + ManageEngine + *.manchester.ac.uk + University of Manchester (partial) + *.mandiant.com + Mendiant.com (partial) + *.mandiant.net + Mediant + *.mandriva.com + Mandriva.com + *.mango.com + Mango (partial) + *.maninthemirror.org + Man in the Mirror.org + *.manjaro.org + Manjaro.org (partial) + *.manta-r1.com + Manta (partial) + *.manta.com + Manta (partial) + *.manticoretechnology.com + Manticore (partial) + *.manufrog.com + ManuFrog Webbhotell (partial) + *.mapbox.com + MapBox + *.mapraider.com + Mapraider.com (partial) + *.mara.gov.au + Office of the Migration Agents Registration Authority + *.marathonbet.com + Marathon Bet.com (partial) + *.marchex.com + Marchex (partial) + *.marchforbabies.org + March for Babies.org (partial) + *.marconisida.com + Curso de Italiano + *.marhab.com + Marhab (partial) + *.marhababrighton.co.uk + Marhaba Brighton + *.mariadb.org + MariaDB + *.maricopa.edu + Maricopa Community Colleges (partial) + *.marijuanamajority.com + Marijauana Majority + *.marinedepot.com + Marine Depot.com (partial) + *.marinellarose.com + MarinellaRose.com + *.marinsm.com + Marin Software (partial) + *.marinsoftware.com + Marin Software (partial) + *.marionstar.com + The Marion Star + *.mark.reevoo.com + Reevoo (partial) + *.marketdojo.com + Market Dojo + *.marketo.com + Marketo + *.marketo.net + Marketo + *.marketplace.org + Marketplace.org (partial) + *.marketpress.com + MarketPress.com + *.marketwatch.com + Marketwatch.com + *.markit.com + Markit (partial) + *.markmonitor.com + Mark Monitor + *.markng.co.uk + Mark NG.co.uk + *.marksandspencer.com + Marks & Spencer + *.marmotte.net + marmotte.net (partial) + *.marthastewart.com + Martha Stewart (partial) + *.marthastewartweddings.com + Martha Stewart (partial) + *.marvel.com + Marvel.com (partial) + *.marvelheroes.com + Marvel Heroes.com (partial) + *.marvell.com + Marvell + *.marvelstore.com + Marvel Store.com + *.mashery.com + Mashery (partial) + *.masslive.com + MassLive.com (partial) + *.massrelevance.com + Mass Relevance + *.mastercard.com + MasterCard + *.mastermindpro.com + Mastermind + *.masternet.org + MasterNet + *.masterspaswi.com + Master Spas WI.com + *.mastozytose-schweiz.org + Mastozytose-Schweiz.org + *.masty.nl + Masty.nl + *.match.com + Match.com (partial) + *.matelife.net + MateLife + *.materiel.net + Materiel.net + *.mathjax.org + MathJax (partial) + *.mathoverflow.net + MathOverflow.net + *.mathtag.com + MediaMath + *.matrixgroup.net + Matrix Group + *.matsuev.com + Denis Matsuev + *.maxcdn.com + MaxCDN.com (partial) + *.maxkitap.com + Max Kitap.com + *.maxmind.com + MaxMind (partial) + *.maxroam.com + MAXROAM (partial) + *.maxspeedcdn.com + MaxSpeed CDN.com + *.maxymiser.com + Maxymiser (partial) + *.mayday.us + Mayday.us + *.mayfirst.org + May First/People Link (partial) + *.mayoclinic.com + Mayo Clinic (partial) + *.mayoclinic.org + Mayo Clinic (partial) + *.mbl.is + mbl.is (partial) + *.mbnet.fi + MBnet + *.mbsportsweb.com + MBSportsWeb (partial) + *.mbsvr.net + Moneybookers + *.mbusa.com + MBusa.com + *.mcafeesecure.com + McAfee SECURE + *.mcb.net + Manx Computer Bureau + *.mdgms.com + mdgms.com + *.meanstinks.com + Mean Stinks + *.mecca.ca + ehosting.ca (partial) + *.medconfidential.org + medConfidential.org + *.medgadget.com + Medgadget + *.media.ipcdigital.co.uk + IPCdigital.co.uk (partial) + *.media.mobyhub.com + Mobypicture + *.media.net + media.net (partial) + *.media.smithsonianmag.com + Smithsonianmag.com (partial) + *.media6degrees.com + media6degrees (partial) + *.media970.com + media970.com + *.mediabistro.com + Mediabistro + *.mediacru.sh + Mediacru.sh + *.mediafactory.fm + Media Factory + *.mediahub.com + MediaHub (partial) + *.medialoot.com + Medialoot.com + *.mediamind.com + MediaMind (partial) + *.mediaplex.com + ValueClick (partial) + *.mediapost.com + MediaPost (partial) + *.mediaquestcorp.com + Mediaquest Corp.com + *.mediaspanonline.com + MediaSpan (partial) + *.mediastorehouse.com + Media Storehouse (partial) + *.mediatemple.net + Media Temple (partial) + *.mediaworks.co.nz + MediaWorks (partial) + *.mediaxus.com + Mediaxus.com + *.medibankhealth.com.au + Medibank Health Solutions + *.medical-treatments-management.com + Medical Treatments Management + *.medicaljane.com + Medical Jane + *.medicare.gov + US government (partial) + *.mediciglobal.com + MediciGlobal.com (partial) + *.medicinenet.com + MedicineNet.com (partial) + *.medistack.com + MediStack.com + *.medleyads.com + medleyads.com + *.medscape.com + Medscape (partial) + *.meebo.com + Meebo + *.meego.com + Meego + *.meet.fm + Meet.fm + *.meetey.com + Meetey.com + *.meeting.afrinic.net + African Network Information Center + *.meetings.io + Meetings.io (partial) + *.meetme.com + MeetMe + *.meetrics.com + Meetrics + *.meetrics.de + Meetrics + *.meetrics.net + Meetrics + *.meetup.com + Meetup (partial) + *.meetupstatic.com + Meetup static.com (partial) + *.mega.co.nz + Mega + *.megafon.ru + MegaFon (partial) + *.megaglest.org + MegaGlest.org (partial) + *.megashare.im + MegaShare.im + *.megworld.co.uk + MegWorld + *.meilenrechner.de + Miles-and-more.com + *.mellanox.com + Mellanox (partial) + *.meltwaternews.com + Meltwater News + *.memberclicks.com + MemberClicks.com (partial) + *.memberclicks.net + MemberClicks.net + *.members.fas.org + Federation of American Scientists + *.members.nearlyfreespeech.net + NearlyFreeSpeech.NET + *.memecdn.com + Meme Center (partial) + *.memecenter.com + Meme Center (partial) + *.memorydealers.com + Memorydealers + *.memrise.com + Memrise (partial) + *.memset.com + Memset + *.mendeley.com + Mendeley (partial) + *.mentor.com + Mentor Graphics (partial) + *.mentoringcentral.net + Mentoring Central + *.mephi.ru + MEPhI.ru (partial) + *.mer.io + mer.io + *.meraki.com + Meraki + *.merchantquest.net + merchantquest.net + *.mercurynews.com + Mercury News.com (partial) + *.mercyships.org + Mercy Ships (partial) + *.meritrustcu.org + Meritrust CU.org + *.merproject.org + Mer Project.org (partial) + *.mesh-internet.co.uk + Mesh Internet (partial) + *.messagingengine.com + messagingengine.com + *.messerfinancial.com + Messer Financial + *.metacpan.org + MetaCPAN + *.metal-detector-town.com + Metal-Detector-Town.com + *.metalab.at + metalab.at + *.metallica.com + Metallica (partial) + *.metalyzer.com + metalyzer.com + *.metapress.com + Metapress (partial) + *.metasploit.com + Metasploit + *.meteonews.net + MeteoNews (partial) + *.methodactingstrasberg.com + Method Acting Strasberg.com + *.metin2.co.nz + Metin2.co.nz + *.metroethernetforum.com + Metro Ethernet Forum.com (partial) + *.metropolia.fi + Metropolia University of Applied Sciences + *.mg2mobile.com + Mg2 mobile.com + *.mgid.com + MGID.com (partial) + *.mhsa.aihw.gov.au + Mental health services in Australia + *.mibbit.com + Mibbit + *.micgadget.com + M.I.C. Gadget (partial) + *.microad.jp + MicroAd.jp + *.microblink.com + microblink.com + *.microsec.hu + Microsec + *.microsoft.com + Microsoft (partial) + *.microsoftonline.com + Microsoft Online Services (partial) + *.microsoftstore.com + Microsoft Store (partial) + *.microsoftstoreassets.com + Microsoft Store (partial) + *.midasgreentech.com + Midas Green Tech.com (false MCB) + *.midasplayer.com + King.com (partial) + *.middleeastmonitor.com + Middle East Monitor.com + *.mikemasin.com + Mike Masin + *.mikrotik.com + MikroTik.com (partial) + *.miles-and-more-kreditkarte.com + Miles-and-more.com + *.militarysuper.gov.au + Military Super + *.milodev.com + milodev.com + *.min.us + Minus.com (partial) + *.minavardkontakter.se + My Healthcare Contacts + *.mindhealthconnect.org.au + Mindhealthconnect + *.minecraft.org + Minecraft.org + *.minecraftserverlijst.nl + Minecraft Server Lijst.NL + *.miniand.com + Miniand Tech (partial) + *.miniclipcdn.com + Miniclip CDN.com + *.minijuegosgratis.com + MiniJuegos gratis.com (partial) + *.minilock.io + miniLock.io + *.minted.com + Minted (partial) + *.minus.com + Minus.com (partial) + *.mips.com + MIPS Technologies + *.miranda-im.org + Miranda IM (partial) + *.mirantis.com + Mirantis.com + *.misco.co.uk + Misco.co.uk (partial) + *.mises.org + Mises.org + *.mit.edu + Massachusetts Institute of Technology (partial) + *.mitre.org + mitre.org + *.mixbit.com + MixBit.com + *.mixcloud.com + Mixcloud.com (partial) + *.mixi.jp + mixi (partial) + *.mixpanel.com + Mixpanel (partial) + *.mixtapeleak.com + MixtapeLeak + *.mixxx.org + Mixxx.org + *.mkateb.com + Mkateb.com + *.mktoresp.com + Mktoresp.com + *.mla.com.au + Meat and Livestock Australia + *.mlive.com + MLive.com (partial) + *.mlpchan.net + MLPchan.net + *.mlpforums.com + MLP Forums + *.mlsecproject.org + MLSec Project.org + *.mm.bing.net + Bing + *.mmahq.com + MMAHQ + *.mmedia.me + Mercury News + *.mmixr.com + mmixr.com + *.mmoculture.com + MMO Culture + *.mmoga.com + MMOGA + *.mmoga.de + MMOGA + *.mnaonline.org + Michigan Nonprofit Association (partial) + *.mndcdn.com + MND CDN.com + *.mnginteractive.com + MNGinteractive.com + *.moat.com + Moat (partial) + *.moava.org + Moava + *.mobify.com + Mobify + *.mobify.me + Mobify + *.mobigum.com + MobiGum.com + *.mobilbonus.ch + Swiss Federal Railways (SBB/CFF/FFS) + *.mobilenations.com + Mobile Nations (partial) + *.mobioinsider.com + Mobio INsider + *.mobstac.com + MobStac (partial) + *.mobygames.com + Mobygames.com + *.mobypicture.com + Mobypicture + *.mochimedia.com + Mochimedia (partial) + *.modcloth.com + ModCloth.com (partial) + *.modcloth.net + ModCloth.com (partial) + *.moddb.com + Mod DB.com (partial) + *.modelmayhem.com + Model Mayhem (partial) + *.modelviewculture.com + Model View Culture.com (partial) + *.modern.ie + modern.IE + *.moderngiver.com + Modern Giver + *.modlife.com + Modlife + *.modmyi.com + ModMyi + *.modmypi.com + ModMyPi + *.modulus.io + Modulus.io (partial) + *.modx.com + MODX (partial) + *.moikrug.ru + Yandex + *.moka5.com + MokaFive (partial) + *.mokafive.com + MokaFive (partial) + *.mollom.com + Mollom + *.mondemp3.com + mondemp3.com + *.monetate.net + Monetate (partial) + *.money.pl + Money.pl (partial) + *.moneyadviceservice.org.uk + Money Advice Service (UK) + *.moneyandmarkets.com + Weiss Research + *.moneybookers.com + Moneybookers + *.moneysavingexpert.com + Money Saving Expert.com (partial) + *.mongabay.com + Mongabay.com (partial) + *.mongodb.com + MongoDB.com (partial) + *.mongodb.org + mongoDB.org (partial) + *.moniker.com + KeyDrive (partial) + *.monitis.com + monitis.com (partial) + *.monoprice.com + Monoprice + *.monsoon.co.uk + Monsoon (partial) + *.monster-wow.com + Monster WoW + *.monster.com + Monster (partial) + *.montyprogram.com + Monty Program + *.mooc-list.com + MOOC-List.com (false MCB) + *.moodle.org + Moodle.org (partial) + *.moodsmith.com + MoodSmith.com + *.mookie1.com + Mookie1.com + *.moonfruit.com + Moonfruit.com (partial) + *.moot.it + Moot.it + *.moovweb.com + Moovweb (partial) + *.moovweb.net + Moovweb (partial) + *.mopidy.com + Mopidy.com (partial) + *.moreal.co + Moreal.co + *.morello.se + Morello.se + *.moreover.com + Moreover Technologies (partial) + *.morningstar.com + Morningstar (partial) + *.morningstaronline.co.uk + Morning Star Online.co.uk + *.moroccanbazaar.co.uk + Moroccan Bazaar + *.morrisons.co.uk + Morrisons + *.morrisons.com + Morrisons + *.morrisonscellar.com + Morrisons Cellar.com + *.mos.org + Museum of Science (partial) + *.moses.com + Sitemason (partial) + *.motherboard.tv + Vice (partial) + *.motherjones.com + MotherJones.com (partial) + *.motorola.com + Motorola (partial) + *.motorolasolutions.com + Motorola (partial) + *.mototradeup.com + Motorola Trade Up + *.mountsinai.org + Mount Sinai.org + *.mouseblocker.com + Mouse Blocker.com + *.mouseflow.com + Mouseflow (partial) + *.moveon.org + MoveOn + *.moviease.com + moviease.com + *.movieth.com + MovieTH.com + *.movietickets.com + MovieTickets.com + *.moxiesoft.com + Moxie Soft.com + *.mozdevgroup.com + Mozdev Group.com (partial) + *.mozilla-russia.org + Mozilla-Russia.org (partial) + *.mozilla.com + Mozilla + *.mozilla.jp + Mozilla.jp (partial) + *.mozilla.net + Mozilla + *.mozilla.org + Mozilla + *.mozillaignite.com + Mozilla + *.mozillalabs.com + Mozilla Labs.com + *.mozillamessaging.com + Mozilla + *.mozo.co + Mozo.com.au (partial) + *.mozo.com.au + Mozo.com.au (partial) + *.mpg.de + MPG.de + *.mpiweb.org + MPI web.org (partial) + *.mplayerhq.hu + MPlayer + *.mplxtms.com + ValueClick (partial) + *.mpnrs.com + MPNewMedia + *.mrporter.com + MR PORTER + *.mrsmcnastys.com + Mrs. McNasty's + *.msdn.com + MSDN (partial) + *.mshcdn.com + Mashable.com (partial) + *.msi-shop.de + MSI-Shop.de + *.msi.com + MSI.com (partial) + *.msicomputer.com + MSI Computer.com (partial) + *.msn.co.jp + MSN (partial) + *.msn.com + MSN (partial) + *.msnbc.com + MSNBC.com (partial) + *.mt-cdn.net + Media Temple (partial) + *.mtac.org + Music Teachers' Association of California + *.mtb.com + M&T Bank (partial) + *.mtgox.com + Mt.Gox + *.mtgsy.net + Microtech (partial) + *.mtvnn.com + Viacom + *.mua.hrdepartment.com + HRsmart + *.muenchen.de + Muenchen.de + *.mugenmonkey.com + MugenMonkey.com + *.multi-vpn.biz + MultiVPN + *.multicastmedia.com + Multicast Media + *.multiply.com + Multiply (partial) + *.multiseek.net + MultiSeek + *.mumzworld.com + Mumzworld.com + *.muni.cz + Muni.cz (partial) + *.muscache.com + Airbnb (partial) + *.musiciansfriend.com + Musician's Friend (partial) + *.musicmetric.com + Musicmetric + *.musicnotes.com + Musicnotes.com (partial) + *.muttscomics.com + Muttscomics.com + *.mutualofamerica.com + Mutual of America + *.mville.edu + Manhattanville College (partial) + *.mwrinfosecurity.com + MWR InfoSecurity.com + *.mxcdn.net + Meetrics + *.mxlogic.com + McAfee MX Logic + *.my.com + My.com (partial) + *.my.gov.au + myGov + *.myaloecleanse.com + My Aloe Cleanse.com + *.mybalsamiq.com + Balsamiq (partial) + *.mybbcentral.com + MyBB Central + *.mybcvs.ch + Banque Cantonale du Valais + *.mybetter.com + MyBetter.com + *.mybigcommerce.com + BigCommerce + *.mybuys.com + MyBuys (partial) + *.mycanvas.com + MyCanvas.com (partial) + *.mycdsglobal.com + CDS Global (partial) + *.myconan.net + myconan.net + *.mycontactual.com + Contactual (partial) + *.myfonts.com + MyFonts.com (partial) + *.myfonts.net + MyFonts.com (partial) + *.mygirlfund.com + MyGurlFund + *.mygreenbeanextract.com + Green Coffee Bean Extract + *.myhailprotector.com + Hail Protector + *.myhosting.com + SoftCom (partial) + *.myinmon.com + my InMon.com + *.myinteriordecorator.com + MyInteriorDecorator.com + *.myitworks.com + IT Works! + *.myitworksevents.com + IT Works! + *.mykolab.com + MyKolab.com + *.myleague.com + MyLeague + *.mylifetime.com + myLifetime.com (partial) + *.mylikes.com + MyLikes + *.mylivechat.com + My LiveChat + *.mylookout.com + Lookout.com + *.mynaweb.com + Mynaweb.com (partial) + *.mynewflag.com + New Flag + *.mynewsdesk.com + Mynewsdesk.com (partial) + *.myopenid.com + JanRain (partial) + *.mypayquake.com + payQuake (partial) + *.mypcbackup.com + Just Develop It (partial) + *.myplatinumpak.com + Platinum Performance.com + *.myportableworld.com + My Portable World.com + *.mypressplus.com + Press+ (partial) + *.myradiocreative.com + My Radio Creative + *.myregisteredsite.com + myregisteredsite.com + *.myresumeagent.com + myResumeAgent.com (partial) + *.mysciencework.com + MyScienceWork.com + *.myscore180.com + MyScore180.com + *.mysecureconnect.com + mySecureConnect + *.myshaklee.com + Shaklee (partial) + *.myshannonconnection.org + Shannon Health + *.myshopify.com + Shopify (partial) + *.mysliderule.com + My SlideRule.com + *.myspace.com + Myspace (mixed content) + *.myspacecdn.com + Myspace (mixed content) + *.mysql.com + MySQL + *.mystockoptions.com + myStockOptions.com + *.mytextgraphics.com + MyTextGraphics.com (partial) + *.mythic-beasts.com + Mythic Beasts (partial) + *.myus.com + MyUS.com (partial) + *.myvarian.com + MyVarian.com + *.myvps.jp + myVPS.jp + *.mywot.com + MyWOT (partial) + *.mywot.net + MyWOT (partial) + *.myyearbook.com + My Year Book (partial) + *.mzstatic.com + Apple.com (partial) + *.naacp.org + NAACP + *.nab.com.au + NAB + *.nabers.com + Nabers.com + *.nabtrade.com.au + NAB + *.nadaguides.com + NADAguides + *.nadir.org + nadir.org (partial) + *.nagra.com + Nagra.com + *.nakanohito.jp + User Local (partial) + *.name.com + Name.com (partial) + *.namecentr.al + NameCentr.al + *.namecentral.com + NameCentr.al + *.namecoin.info + Namecoin.info (partial) + *.nancysgonegreen.com + Nancys Gone Green.com + *.nanigans.com + Nanigans (partial) + *.nanog.org + North American Network Operators' Group + *.nap.edu + The National Academies Press (partial) + *.naplesnews.com + Naples News.com (partial) + *.napoleonmakeupacademy.com + Napoleon Makeup Academy.com + *.napoleonmakeupacademy.com.au + Napoleon Makeup Academy.com + *.nardikt.ru + Herdict + *.naromax.com + Naromax + *.nasa.gov + NASA + *.nasdaqomx.com + NASDAQ (partial) + *.nathnac.org + National Travel Health Network and Centre (NaTHNaC) + *.nationalacademies.org + The National Academies (partial) + *.nationalarchives.gov.uk + NationalArchivesGovUK (partial) + *.nationalcapital.gov.au + National Capital Authority + *.nationalexpress.com + National Express (partial) + *.nationalgeographic.com + National Geographic (partial) + *.nationalgrid.com + National Grid + *.nationalrail.co.uk + National Rail Enquiries (partial) + *.nationbuilder.com + NationBuilder (partial) + *.nationstates.net + NationStates.net + *.nationwide.co.uk + Nationwide Building Society (partial) + *.nativo.net + Nativo.net (partial) + *.naturalskinshop.com + Natural Skin Shop + *.nature.com + Nature (partial) + *.nature.org + The Nature Conservancy (partial) + *.naturfotografen-forum.de + Forums für Naturfotografen + *.naughtydog.com + Naughty Dog + *.nautil.us + Nautil.us (partial) + *.naver.com + Naver.com (partial) + *.naver.net + Naver.net (partial) + *.navteq.com + NAVTEQ (partial) + *.navy.gov.au + Royal Australian Navy + *.nbcudigitaladops.com + NBCUniversal Media (partial) + *.nber.org + National Bureau of Economic Research + *.nbnco.com.au + NBN Co.com.au + *.nc.me + NameCheap + *.ncbar.org + NC Bar.org + *.nccgroup.com + NCC Group.com + *.ncjrs.gov + NCJS.gov + *.ncpw.gov + National Consumer Protection Week + *.ncsoft.com + NCsoft.com + *.nd.edu + University of Notre Dame (partial) + *.ndchost.com + NDCHost.com + *.ndi.org + NDI.org + *.neaf.gov.au + National Ethics Application Form + *.nearlyfreespeech.net + NearlyFreeSpeech.NET + *.neatoshop.com + NeatoShop.com + *.neave.tv + Neave.tv + *.nebula.com + Nebula + *.necdisplay.com + NEC Display.com (partial) + *.necessaryandproportionate.net + Necessary and Proportionate.org + *.necessaryandproportionate.org + Necessary and Proportionate.org + *.necuhb.org + Northeast Credit Union + *.negotiatingsalary.com + NegotiatingSalary.com + *.nehta.gov.au + National E-Health Transition Authority + *.neimanmarcus.com + TPG Capital (partial) + *.nejm.org + New England Journal of Medicine (partial) + *.nekvapor.com + NEK Vapor.com + *.nelonen.fi + Nelonen.fi (partial) + *.nelonenmedia.fi + Nelonmedia.fi (partial) + *.nemid.nu + NemID + *.neo-interactive.hu + Neo-interactive.hu + *.neobux.com + NeoBux.com (partial) + *.neomailbox.com + neomailbox + *.neonmob.com + NeonMob.com + *.neooffice.org + NeoOffice.org (partial) + *.neoseeker.com + Neoseeker + *.neosmart.net + NeoSmart.net + *.nero.com + Nero (partial) + *.nestle.com + Nestlé (partial) + *.net-a-porter.com + Net-A-Porter.com + *.net-results.com + Net-Results (partial) + *.net-safe.info + Net-Safe + *.netapp.com + NetApp (partial) + *.netapplications.com + Net Applications + *.netbeans.org + NetBeans (partial) + *.netbsd.org + NetBSD (partial) + *.netclean.com + NetClean.com (partial) + *.netdna-ssl.com + NetDNA (partial) + *.netdna.com + NetDNA (partial) + *.neteller.com + Optimal Payments (partial) + *.netfilter.org + Netfilter.org (partial) + *.netfirms.com + Netfirms + *.netflame.cc + netflame.cc + *.netforumpro.com + netFORUMpro.com + *.netgear.com + Netgear (partial) + *.netiq.com + NetIQ (partial) + *.netload.in + Netload + *.netmarble.com + Netmarble (partial) + *.netmng.com + Innovation Interactive (partial) + *.netnod.se + Netnod.se + *.netpivotal.com + NetPivotal + *.netscape.com + AOL (partial) + *.netseer.com + NetSeer + *.netsekure.org + netsekure.org + *.netsemi.com + Net Semi + *.netshelter.net + NetShelter (partial) + *.netsuite.com + NetSuite.com (partial) + *.netswipe.com + Jumio + *.netverify.com + Netverify + *.networkadvertising.org + Network Advertising Initiative + *.networkdepot.com + Network Depot (partial) + *.networkedblogs.com + NetworkedBlogs + *.networkforgood.org + Network for Good + *.networksolutions.com + Network Solutions (false MCB) + *.networktimefoundation.org + Network Time Foundation.org (partial) + *.networkworld.com + NetworkWorld (partial) + *.netzguerilla.net + netzguerilla.net + *.neustar.com + NeuStar + *.neverddos.com + NeverDDoS.com + *.nevillholtopera.net + Nevill Holt Opera + *.new.livejasmincdn.com + LiveJasmin (partial) + *.newdream.net + New Dream Network + *.newegg.com + Newegg (partial) + *.newjobs.com + newjobs.com + *.newportmotorsports.com + Newport Motorsports + *.newrelic.com + New Relic.com + *.news-gazette.com + The News-Gazette (partial) + *.news.com.au + News Limited (partial) + *.news9daily.org + news9daily.org + *.newsandevents.buffalostate.edu + Buffalo State College (partial) + *.newsblur.com + NewsBlur + *.newscheckmedia.com + newscheckmedia.com + *.newscientist.com + NewScientist.com (partial) + *.newscred.com + NewsCred.com (partial) + *.newsdaily.com + NewsDaily.com + *.newsday.com + Newsday.com (partial) + *.newsinc.com + News Distribution Network (partial) + *.newslook.com + NewsLook (partial) + *.newsmax.com + Newsmax.com (partial) + *.newsnet5.com + newsnet5.com (partial) + *.newsvine.com + newsvine.com (partial) + *.newtention.net + newtention.net + *.newyorker.com + The New Yorker (partial) + *.newzbin.com + Newzbin + *.newzbin2.es + Newzbin + *.nexac.com + nexac.com (partial) + *.nexcess.net + Nexcess (partial) + *.nextag.ca + Nextag (partial) + *.nextag.com + Nextag (partial) + *.nextag.de + Nextag (partial) + *.nextag.fr + Nextag (partial) + *.nextag.it + Nextag (partial) + *.nexternal.com + Nexternal + *.nextgenautoparts.com + Next Gen Auto Parts.com (partial) + *.nextinpact.com + NEXTINpact (partial) + *.nextiva.com + Nextiva + *.nextstudioapps.com + Laffster + *.nexuspays.com + Nexus Pay + *.nexway.com + Nexaway (partial) + *.nginx.org + nginx.org (partial) + *.ngpvanhost.com + NGP VAN + *.nhmrc.gov.au + National Health and Medical Research Council + *.nhs.uk + NHS (partial) + *.nhsdirect.nhs.uk + NHS Direct (partial) + *.nibcdirect.nl + NIBC Direct.nl + *.nic.br + NIC.br (partial) + *.nic.cz + CZ.NIC + *.nicehash.com + NiceHash.com + *.nicekicks.com + NiceKicks.com (partial) + *.nicotine-anonymous.org + Nicotine Anonymous + *.nicta.com.au + NICTA (partial) + *.nightlove.me + NightLove + *.nih.gov + National Institutes of Health (partial) + *.nike.com + Nike.com (partial) + *.nimbushosting.co.uk + Nimbus Hosting (partial) + *.nine.ch + Nine + *.ning.com + Ning (partial) + *.nintendo.com + Nintendo.com (partial) + *.nismonline.org + National Institute for Social Media + *.nist.gov + National Institute of Standards and Technology (partial) + *.nitetimetoys.com + NiteTimeToys.com + *.nitrocloud.com + Nitro Cloud.com + *.nitrosell.com + NitroSell.com (partial) + *.nj.com + NJ.com (partial) + *.njedge.net + NJ Edge.Net (partial) + *.njit.edu + NJIT.edu (partial) + *.nkb.ch + Schweizer Kantonalbanken + *.nknews.org + NK News.org (partial) + *.nla.gov.au + National Library of Australia + *.nlnetlabs.nl + NLnet Labs CACert + *.nmugroup.com + NMU + *.nnm-club.me + NNM-Club + *.no-ip.com + Vitalwerks (partial) + *.noaddedsugar.com + no added sugar + *.noblehour.com + NobleHour.com + *.noc.ac.uk + University of Southampton (partial) + *.noc.grnet.gr + Greek-gov + *.nocdirect.com + nocdirect.com + *.nodejitsu.com + Nodejitsu.com (partial) + *.nodejs.org + nodejs.org (partial) + *.nodeserv.com + NodeServ.com + *.noembed.com + Noembed.com + *.noip.com + No IP.com + *.nokia.com + Nokia (partial) + *.nokiasiemensnetworks.com + Nokia Siemens Networks (partial) + *.nomadesk.com + Nomadesk (partial) + *.nonexiste.net + nonexiste.net (partial) + *.nongnu.org + Free Software Foundation + *.noris.net + noris.net + *.norrgruppen.se + Norrgruppen.se (partial) + *.northclicks.com + NorthClicks + *.northern-indymedia.org + Indymedia.org + *.northerntool.com + Northern Tool.com (partial) + *.northwestern.edu + Northwestern University (partial) + *.norton.com + Norton (partial) + *.nortoncdn.com + Norton (partial) + *.nostarch.com + No Starch Press (partial) + *.notebooksbilliger.de + Notebooksbilliger.de + *.notex.ch + NoTex + *.nothing.ch + Nothing.ch + *.nottingham.ac.uk + NottinghamAC + *.novainfosec.com + NoVA Infosec + *.novell.com + Novell (partial) + *.np-edv.at + np-Edv.at (partial) + *.npario-inc.net + nPario (partial) + *.npario.com + nPario (partial) + *.npd.com + NPD Group + *.npmjs.org + npm js.org (partial) + *.npr.org + NPR.org (partial) + *.nps.gov + National Park Service (partial) + *.nrao.edu + NRAO.edu (partial) + *.nrelate.com + nrelate (partial) + *.nro.net + Number Resource Organization + *.nsf.gov + National Science Foundation (partial) + *.nsidc.org + National Snow and Ice Data Center + *.nsm.stat.no + Nasjonal Sikkerhetsmyndighet (NSM) + *.nsm.uh.edu + University of Houston (partial) + *.nsrc.org + NSRC + *.nss.udel.edu + University of Delaware (partial) + *.nsslabs.com + NSS Labs.com + *.ntacdn1.net + ntacdn1.net + *.ntnu.no + NTNU.no + *.ntop.org + ntop.org (false MCB) + *.ntp.org + NTP.org (partial) + *.ntpandp.com + NTpandp.com + *.ntt.com + NTT.com + *.ntu.edu.sg + Nanyang Technological University (partial) + *.ntwk45.com + ntwk45.com + *.nublue.co.uk + NuBlue + *.nuget.org + NuGet (partial) + *.nuggad.net + nugg.ad (partial) + *.nulab-inc.com + Nulab-Inc.com + *.numbersusa.com + NumbersUSA + *.nursing.duke.edu + Duke University (partial) + *.nustarz.com + NuStarz.com (false MCB) + *.nuug.no + NUUG.no (partial) + *.nuwear.com + Nuwear + *.nventio.com + nventio.com + *.nvidia.com + nVidia (partial) + *.nwf.org + National Wildlife Foundation (partial) + *.nwtime.org + Network Time Foundation.org (partial) + *.nyantec.com + nyantec + *.nyc.gov + New York City (partial) + *.nydailynews.com + NYDailyNews (partial) + *.nykeurope.com + NYK Europe.com (false MCB) + *.nytexaminer.com + NYT eXaminer.com + *.nyu.edu + New York University (partial) + *.nyx.com + NYSE Euronext + *.nzbmatrix.com + nzbmatrix + *.nzherald.co.nz + New Zealand Herald (partial) + *.o2.cz + Telefónica (partial) + *.o2.de + Telefónica (partial) + *.o2online.de + o2 online.de (partial) + *.oag.com + OAG (partial) + *.oaklandish.com + Oaklandish + *.oas.org + Organization of American States + *.oasis-open.org + OASIS Open.org + *.oberlin.edu + Oberlin College (partial) + *.occupycorporatism.com + Occupy Corporatism.com + *.oculu.com + Oculu.com (partial) + *.oculusvr.com + Oculus VR (partial) + *.odir.org + Open Directory + *.odmp.org + Officer Down Memorial Page (partial) + *.odmwheels.com + ODMWheels + *.odn.io + Torbit (partial) + *.ofb.net + OFB (partial) + *.offensive-security.com + Offensive-Security.com + *.offeredby.net + Paradysz + *.offerscdn.net + Offers CDN.net + *.officedepot.com + Office Depot (partial) + *.offlinemode.org + offlinemode.org + *.ofono.org + oFono + *.ogt.jp + Infocube (partial) + *.ohio-state.edu + Ohio State University (partial) + *.ohiolink.edu + OhioLINK.edu (partial) + *.ohloh.net + Ohloh + *.oit.duke.edu + Duke University (partial) + *.oit.umass.edu + University of Massachusetts Amherst (partial) + *.ojrq.net + Impact Radius + *.okcoin.com + OKCoin.com + *.okfn.org + OKFn.org (false MCB) + *.okpartypix.com + Genesee Photo Systems + *.okpay.com + OKPAY.com + *.okturtles.com + okTurtles.com (partial) + *.olark.com + Olark + *.omaze.info + Omaze.info + *.omeda.com + Omeda (partial) + *.omha.net + Ontario Minor Hockey Association + *.omnitec.com + Omnitec + *.omniture.com + Adobe Digital Marketing + *.omniupdate.com + OmniUpdate.com + *.omnovia.com + omNovia Technologies + *.omtrdc.net + Adobe Digital Marketing + *.on-disk.com + On-Disk.com + *.on-web.fr + on-web.fr + *.on24.com + ON24.com (partial) + *.ona.gov.au + Office of National Assessments + *.onamae-server.com + Onamae-server.com (partial) + *.onamae.com + Onamae.com (partial) + *.onbeing.org + OnBeing.org + *.ondarossa.info + OndaRossa.info + *.one-tab.com + One-Tab.com + *.one.org + ONE.org + *.onebit.cz + ONEbit + *.onecloudsecurity.com + OneCloudSecurity.com + *.onedrive.com + OneDrive.com + *.onegreenplanet.org + One Green Planet.org + *.onelogin.com + OneLogin.com + *.onemancan.org + One Man Can + *.onenetworkdirect.com + oneNetworkDirect + *.onesite.com + ONEsite (partial) + *.onion.to + onion.to + *.onlandscape.co.uk + On Landscape.co.uk + *.online-convert.com + online-convert.com (partial) + *.online-emr.com + Online EMR + *.online.nl + Online.nl + *.onlinecreditcenter6.com + onlinecreditcenter6.com + *.onlineshoes.com + OnlineShoes.com + *.onlinewellnessassociation.com + Online Wellness Association + *.onlive.com + OnLive.com (partial) + *.onorobot.org + ONOrobot.org + *.onsalesit.com + Onsalesit.com + *.onsecure.gov.au + OnSecure + *.onstreamsecure.com + Onstream secure.com + *.onsugar.com + OnSugar + *.onswipe.com + Onswipe + *.ontology.co + Ontology.co + *.ookla.com + Ookla (partial) + *.ooyala.com + Ooyala (partial) + *.op-co.de + op-co.de + *.opc.gov.au + Office of Parliamentary Counsel + *.open-mesh.com + Open-Mesh + *.open-pc.com + openDesktop.org + *.openafs.org + OpenAFS.org + *.openbadges.org + Open Badges + *.openbsdstore.com + OpenBSD Store.com + *.opencalais.org + OpenCalais (partial) + *.openclipart.org + Open Clipart Library + *.opencryptoaudit.org + Open Crypto Audit.org + *.opencsw.org + OpenCSW.org (partial) + *.openculture.com + Open Culture.com (partial) + *.opendatacity.de + opendatacity + *.opendemocracy.net + openDemocracy.net + *.opendesktop.org + openDesktop.org + *.opendnssec.org + NLnet Labs + *.openf2.com + OpenF2.org (partial) + *.openf2.org + OpenF2.org (partial) + *.openfiler.com + openfiler + *.opengroup.org + The Open Group (partial) + *.openhatch.org + OpenHatch.org (partial) + *.openhost.co.nz + Openhost + *.openhost.net.nz + Openhost + *.openhub.net + Open Hub.net (partial) + *.openinfosecfoundation.org + Open InfoSec Foundation.org + *.openitp.org + OpenITP.org + *.openmandriva.org + OpenMandriva + *.openmw.org + OpenMW + *.opennet.net + OpenNet.net (partial) + *.openoffice.org + Apache OpenOffice (partial) + *.openreach.co.uk + BT Group (partial) + *.openrightsgroup.org + Open Rights Group + *.opensecrets.org + Center for Responsive Politics (partial) + *.openshift.com + OpenShift + *.openskillz.com + openDesktop.org + *.opensource.com + opensource.com + *.opensrs.com + OpenSRS.com (partial) + *.opensrs.net + OpenSRS.com (partial) + *.openssl.org + OpenSSL (partial) + *.openstack.org + OpenStack (partial) + *.openstat.net + OpenStat.net + *.openstat.ru + OpenStat.ru (partial) + *.openstreetmap.org + OpenStreetMap + *.opensuse.org + openSUSE (partial) + *.opensvc.com + OpenSVC (partial) + *.openswan.org + Openswan + *.opentechfund.org + OpenTechFund + *.opentemplate.org + openDesktop.org + *.opentext.com + OpenText (partial) + *.opentransfer.com + Ecommerce (partial) + *.openttd.org + OpenTTD (partial) + *.openvpn.net + OpenVPN + *.openvz.org + OpenVZ.org (partial) + *.openwireless.org + Open Wireless Movement + *.openwrt.org + OpenWRT (partial) + *.openx.com + OpenX (partial) + *.openx.net + OpenX (partial) + *.openx.org + OpenX (partial) + *.openxenterprise.com + OpenX (partial) + *.operatingsystems.io + Operating Systems.io + *.opinionlab.com + OpinionLab (partial) + *.oppelt.com + Oppelt.com + *.oppictures.com + United Stationers (partial) + *.oppo.com + Oppo.com (partial) + *.opscode.com + Opscode.com (partial) + *.opt.fimserve.com + Rubicon Project + *.optify.net + Optify + *.optimix.asia + iClick Interactive (partial) + *.optimizely.com + Optimizely + *.optimost.com + Optimost (partial) + *.optionbit.com + OptionBit + *.optionsanimal.com + OptionsAnimal.com + *.optorb.com + optorb.com + *.oracle.com + Oracle (partial) + *.oracleoutsourcing.com + Oracle (partial) + *.orafarm.com + ORA + *.orange.ch + Orange + *.orange.co.uk + Orange + *.orange.jobs + Orange.Jobs (partial) + *.orangeandwhite.com + OrangeandWhite.com + *.orangegeek.com + Orange Geek + *.orangewebsite.com + OrangeWebsite.com (partial) + *.orchiddiva.com + Orchid Diva + *.ordnancesurvey.co.uk + Ordnance Survey + *.oregon.gov + State of Oregon + *.oregonlive.com + Oregon Live.com (partial) + *.oregonstate.edu + Oregon State University (partial) + *.oreilly.com + O’Reilly Media (partial) + *.origin.com + Electronic Arts (partial) + *.orioninc.com + Orion Systems Integrators + *.orkut.com + Orkut (partial) + *.ornl.gov + Oak Ridge National Laboratory (partial) + *.ortolo.eu + Ortolo.eu (false MCB) + *.osa.org + Optical Society of America (partial) + *.osadl.org + OSADL.org + *.oschina.net + oschina (partial) + *.osdir.com + OSDir.com + *.osdv.org + OSDV.org (partial) + *.osec.pl + Open Source Education Center + *.osgeo.org + OSGeo.org (partial) + *.osmocom.org + Osmocom.org (partial) + *.ostkcdn.com + Overstock.com (partial) + *.osu.edu + Ohio State University (partial) + *.osuosl.org + Oregon State University (partial) + *.osvdb.org + OSVDB.org (partial) + *.otr.im + OTR.im + *.otsuka-shokai.co.jp + Otsuka-shokai.co.jp + *.otummstore.se + Otumm Store.se + *.ou.edu + OU.edu (partial) + *.our-hometown.com + Our Hometown + *.ourcommonplace.com + OurCommonPlace + *.outbrain.com + Outbrain (partial) + *.outernet.is + Outernet + *.outlook.com + Outlook Live + *.outspark.com + Outspark (partial) + *.outwit.com + OutWit.com (partial) + *.ouya.tv + OUYA (partial) + *.overcast.fm + Overcast + *.overclockers.co.uk + OverClockers.co.uk + *.overlakehospital.org + Overlake Hospital Medical Center + *.oversee.net + Oversee.net (partial) + *.overstock.com + Overstock.com (partial) + *.ovh.net + OVH + *.ovi.com + Ovi.com (partial) + *.ovid.com + Ovid (partial) + *.ovpn.to + oVPN.to (partial) + *.owenservices.com + Owen Services.com + *.owkb.ch + Schweizer Kantonalbanken + *.owncloud.com + ownCloud.com + *.owncloud.org + ownCloud.org (partial) + *.owncube.com + OwnCube + *.owneriq.net + OwnerIQ (partial) + *.ox.ac.uk + University of Oxford (partial) + *.ox.cx + Hynek.me + *.oxfordjournals.org + Oxford Journals (partial) + *.ozb.me + OzBargain + *.ozlabs.org + OzLabs (CAcert) + *.packagelab.com + Package Lab.com + *.packtpub.com + Packt Publishing (partial) + *.paddle.com + Paddle.com + *.paddleapi.com + Paddle.com + *.padlet.com + Padlet.com (partial) + *.paginazero.com.br + Página Zero + *.pagodabox.com + Pagoda Box + *.pagpop.com.br + PagPop + *.pair.com + pair Networks (partial) + *.pairlite.com + pair Networks (partial) + *.pairnic.com + pair Networks (partial) + *.pajustice.org + Pennsylvania Association for Justice + *.palbin.com + Palbin.com + *.palmcoastd.com + Palm Coast Data (partial) + *.palms.com + Palms Casino Resort (partial) + *.paloaltonetworks.com + Palo Alto Networks.com + *.panasonic.com + Panasonic.com (partial) + *.panax.net + Panax + *.pandawhale.com + PandaWhale + *.panel.home.pl + home.pl + *.pantherssl.com + CDNetworks (partial) + *.paodelicia.com + PãoDelícia.com + *.parabola.nu + Parabola.nu + *.parabolagnulinux.org + Parabola GNULinux.org + *.parallels.com + Parallels (partial) + *.parametersecurity.com + Parameter Security.com + *.parapoupar.com + ParaPoupar.com + *.parc.com + Palo Alto Research Center + *.pardot.com + Pardot + *.parkersoft.co.uk + Parker Soft.co.uk + *.parkingeye.co.uk + ParkingEye.co.uk + *.parkmodelsdirect.com + Park Models Direct + *.parse.com + Parse.com (partial) + *.parsely.com + Parse.ly (partial) + *.parti-pirate.ch + PPS + *.partipirate.ch + PPS + *.partito-pirata.ch + PPS + *.partitopirata.ch + PPS + *.partypoker.com + partypoker + *.pas.org.my + Pan-Islamic Malaysian Party + *.passed.cc + Passed.cc + *.passion-radio.com + Passion-Radio.com (partial) + *.passionfruitads.com + Passionfruit Ads.com (partial) + *.passmark.com + PassMark.com (false MCB) + *.passports.gov.au + Australian Passport Office + *.passthepopcorn.me + PassThePopcorn + *.passwordbox.com + PasswordBox.com + *.passwordscon.org + PasswordsCon (partial) + *.pasteur.fr + Pasteur.fr (partial) + *.pathofexile.com + Path of Exile.com + *.patriotpost.us + The Patriot Post + *.pay.gov + Pay.gov + *.paydirtgold.com + Pay Dirt Gold.com + *.paymentech.com + Paymentech.com (partial) + *.paymo.biz + Paymo + *.paypal.com + PayPal + *.paysafecard.com + paysafecard.com + *.payson.se + Payson + *.payza.com + Payza + *.pbase.com + PBase (partial) + *.pbgrd.com + PbGrd.com + *.pbsrc.com + Photobucket (partial) + *.pbwiki.com + PBwiki (partial) + *.pbworks.com + PBworks (partial) + *.pcboc.com + California United Bank + *.pcbooster.com + PC Booster + *.pcel.com + PCEL + *.pcicomplianceguide.org + PCI Compliance Guide.org + *.pcicomplianthosting.com + PenguinWebHosting (partial) + *.pcisecuritystandards.org + PCI Security Standards Council + *.pcmd.ac.uk + Peninsula College of Medicine & Dentistry (partial) + *.pcwelt.de + Pcwelt.de + *.pdcnet.org + Philosophy Documentation Center (partial) + *.pdu.edu + Portland State University (partial) + *.pearson.com + Pearson (partial) + *.pearsonvue.com + Pearson (partial) + *.peer1.com + Peer1.ca (partial) + *.peerius.com + Peerius.com (partial) + *.pega.com + Pega (partial) + *.penango.com + Penango (partial) + *.penfoldgolf.com + Penfold Golf + *.pengpod.com + PengPod.com + *.penguinwebhosting.com + PenguinWebHosting (partial) + *.pentontech.com + Penton Media (partial) + *.peopleclick.com + Peopleclick.com (partial) + *.peoplefluent.com + PeopleFluent.com (partial) + *.peopleschoice.com + People's Choice Awards + *.pepperjamnetwork.com + PepperJam Exchange (partial) + *.percona.com + Percona (partial) + *.perens.com + Bruce Perens + *.perfectaudience.com + Perfect Audience + *.perfectmarket.com + Perfect Market.com (partial) + *.performancealley.com + Performance Alley Racing (partial) + *.performgroup.com + Perform (partial) + *.perl.org + Perl.org (partial) + *.persona.org + Mozilla Persona + *.personaldemocracy.com + Personal Democracy Forum + *.personalitypage.com + Personality Page + *.personforce.com + Personforce (partial) + *.petstore.com + Petstore.com + *.petteriraty.eu + Petteri Räty (partial) + *.pewdiepie.net + PewDiePie.net + *.pfizer.com + Pfizer (partial) + *.pfizerhelpfulanswers.com + Pfizer (partial) + *.pfizerpro.com + Pfizer (partial) + *.pflag.org + PFLAG-Parents, Families, & Friends of Lesbians and Gays (partial) + *.pfsense.org + pfSense.org (partial) + *.pg.com + Procter & Gamble (partial) + *.pgeveryday.ca + Procter & Gamble (partial) + *.pgeverydaysolutions.com + Procter & Gamble (partial) + *.pgp.com + PGP + *.phabricator.com + Phabricator.com (partial) + *.phcheats.com + PH Cheats + *.pheedo.com + Pheedo.com (partial) + *.phoenix.edu + Phoenix.edu (partial) + *.phone-analytics.com + phone-analytics.com + *.photobucket.com + Photobucket (partial) + *.photographer.io + Photographer.io (partial) + *.photographytalk.com + PhotographyTalk.com + *.photomath.net + PhotoMath.net + *.photopay.net + PhotoPay.net + *.photoprintit.com + photoprintit.com + *.photoshelter.com + PhotoShelter (partial) + *.photosugar.com + PhotoSugar.com + *.photosynth.net + Photosynth + *.php.net + PHP (partial) + *.phparch.com + php[architect] (partial) + *.phpbb.com + phpBB (partial) + *.phpnet.org + PHPNET (partial) + *.phusionpassenger.com + Phusion Passenger.com + *.picatcha.com + Picatcha (partial) + *.picdn.net + Shutterstock (partial) + *.pickaweb.co.uk + Pickaweb (partial) + *.picomoney.com + PicoMoney + *.picoville.com + Picoville.com + *.picsity.com + Picsity.com (partial) + *.pictos.cc + Pictos (partial) + *.pidgin.im + Pidgin + *.pimg.net + pimg.net + *.pimg.tw + pimg.tw + *.pimienta.org + potager.org + *.pinboard.in + Pinboard.in + *.pingdom.com + Pingdom (partial) + *.pingdom.net + Pingdom (partial) + *.pingidentity.com + Ping Identity + *.pingone.com + PingOne.com + *.pinimg.com + Pinterest (partial) + *.pinkbike.com + Pinkbike (partial) + *.pinkpaislee.com + Pink Paislee + *.pinme.ru + Pinme.ru (partial) + *.pinterest.com + Pinterest (partial) + *.pipl.com + Pipl (partial) + *.pirate-party.ch + PPS + *.pirateirc.net + Pirate Party + *.pirateleaks.cz + PirateLeaks + *.piraten-partei.ch + PPS + *.piratenpartei-bayern.de + Pirate Party + *.piratenpartei.at + Pirate Party + *.piratenpartei.ch + PPS + *.piratenpartei.de + Pirate Party + *.piratenpartij.nl + Pirate Party + *.piratepad.ca + Pirate Party + *.pirateparty.ch + PPS + *.pirateparty.gr + Greek-various + *.pirateparty.org.au + Pirate Party + *.pirateparty.org.uk + Pirate Party + *.pirati.cz + Pirate Party + *.piriform.com + Piriform (partial) + *.pitt.edu + University of Pittsburgh (partial) + *.pittsburghmassageandwellness.com + Pittsburgh Massage and Wellness.com + *.pivotallabs.com + Pivotal Labs (partial) + *.piware.de + Martin Pitt + *.piwik.org + piwik.org (partial) + *.pixfs.net + pixfs.net + *.pixfuture.net + PixFuture (partial) + *.pixinsight.com.tw + PIXinsight.com.tw (partial) + *.pixiq.com + Pixiq (partial) + *.pixlr.com + Pixlr (partial) + *.pixnet.cc + pixnet.cc + *.pixnet.net + Pixnet.net (partial) + *.pizza.de + pizza.de + *.pizza.fr + Pizza.fr + *.pjm.com + PJM.com (partial) + *.pjmedia.com + PJ Media + *.pjtv.com + PJTV.com + *.pkware.com + PKWARE.com (partial) + *.planboardapp.com + Planboard app.com + *.planet-lab.org + PlanetLab (partial) + *.planet-work.com + Planet-Work + *.planet3dnow.de + Planet3dnow. + *.planetdiscover.com + Planet Discover + *.plantappstore.com + plantappstore.com (false MCB) + *.plantsolution.de + PlantSolution.de (false MCB) + *.plastc.com + Plastc.com + *.plastic-bin.com + Plastic-Bin.com + *.plastidipuruguay.com + Plasti Dip Uruguay.com + *.platinumperformance.com + Platinum Performance.com + *.plausible.coop + Plausible.coop + *.player.fm + Player.FM (partial) + *.playerauctions.com + PlayerAuctions.com + *.playstation.com + PlayStation (partial) + *.playstation.net + PlayStation (partial) + *.playwarz.com + The War Z + *.playwire.com + Playwire (partial) + *.pld-linux.org + PLD-Linux.org (partial) + *.pleaseignore.com + Please Ignore.com + *.plex.tv + Plex.tv + *.plexapp.com + Plexapp.com + *.plimus.com + Plimus.com + *.plista.com + plista (partial) + *.plone.org + Plone.org (partial) + *.plos.org + Public Library of Science (partial) + *.plssl.com + PressLabs SSL + *.plug.dj + plug.dj (partial) + *.plurk.com + plurk (partial) + *.plus.net + Plus.net + *.pluscontrollers.com + Controller Plus + *.plusme.net + plusme.net (false MCB) + *.plymouth.ac.uk + Plymouth University + *.pnc.com + PNC + *.pnp4nagios.org + PNP4Nagios.org + *.po.st + Po.st (partial) + *.pobox.com + Pobox + *.poczta.home.pl + home.pl + *.podbean.com + Podbean.com (partial) + *.poderpda.com + PoderPDA + *.pogo.com + Pogo + *.pogoplug.com + Pogoplug.com (partial) + *.pointroll.com + Pointroll + *.pointshound.com + PointsHound (partial) + *.poivron.org + potager.org + *.pokemon-world-online.net + Pokémon World Online + *.pokemon.com + Pokemon.com (partial) + *.pokylinux.org + Poky + *.policemutual.co.uk + Police Mutual (partial) + *.policymic.com + PolicyMic + *.politifact.com + PolitiFact (partial) + *.politiken.dk + Politiken.dk (partial) + *.polldaddy.com + Polldaddy + *.pony.fm + Pony.fm + *.pool.datamind.ru + datamind.ru + *.poolp.org + poopl.org + *.poormanmotorsports.com + Poor Man Motorsports + *.pop6.com + FriendFinder + *.popads.net + PopAds + *.popcrunch.com + PopCrunch.com (partial) + *.popin.cc + popIn.cc (partial) + *.popphoto.com + Popular Photography + *.poppysports.com + Poppy Sports + *.popsci.com + PopSci.com (false MCB) + *.popularmechanics.com + Popular Mechanics (partial) + *.populisengage.com + Populis Engage.com + *.popvote.hk + PopVote.hk + *.portalhelp.hosting.ru.nl + Radboud University Nijmegen + *.portalmasq.com + PORTAL Masq.com + *.porteus.org + Porteus Linux (partial) + *.portforward.com + PortForward.com (partial) + *.portlandmercury.com + Portland Mercury.com (partial) + *.portrait.gov.au + National Portrait Gallery + *.poshliving.com + PoshLiving + *.posportal.com + POS Portal.com (partial) + *.postalheritage.org.uk + Postal Heritage.org.uk (partial) + *.postbank.de + Postbank + *.posterous.com + Posterous + *.posterstoreuk.com + Poster Store UK + *.postgresql.org + PostgreSQL + *.postgresql.us + PostgreSQL + *.postini.com + Postini + *.postrelease.com + postrelease.com (partial) + *.postscapes.com + Postscapes + *.postto.me + Post to.Me + *.potager.org + potager.org + *.powells.com + Powells.com + *.powerdns.com + PowerDNS.com + *.poweredbypaquin.com + Powered by Paquin + *.powerhosting.dk + Powerhosting.dk (partial) + *.powerhousemuseum.com + Powerhouse Museum.com (partial) + *.powerlineman.com + Powerlineman.com + *.powerpay.biz + PowerPay.biz (partial) + *.powerreviews.com + PowerReviews (partial) + *.powerspeaking.com + Power Speaking.com + *.powertothepooch.com + Power to the Pooch + *.powweb.com + PowWeb + *.ppjol.com + Press+ (partial) + *.pr.sape.ru + Sape (partial) + *.pragmaticmarketing.com + Pragmatic Marketing.com (partial) + *.pragprog.com + PragProg.com (partial) + *.pratt.duke.edu + Duke University (partial) + *.prbrds.com + ProBoards (partial) + *.precharge.com + preCharge.com + *.precharge.net + preCharge.net (partial) + *.precisionmarinetools.com + Precision Marine Tools + *.premiumize.me + Premiumize.me + *.pressfreedomfoundation.org + Freedom of the Press Foundation + *.presslabs.com + PressLabs (partial) + *.presspage.com + PressPage.com (partial) + *.prettylittlething.com + PrettyLittleThing.com + *.preyproject.com + Prey (partial) + *.prezi.com + Prezi.com + *.prf.hn + Performance Horizon Group + *.pricegrabber.com + PriceGrabber + *.pricerunner.co.uk + PriceRunner (partial) + *.pricerunner.com + PriceRunner (partial) + *.primary001.net + Interactive Online + *.primesecoenergie.com + Primes Eco Energie.com + *.primus.com + Primus.com + *.princeton.edu + Princeton.edu (partial) + *.printchomp.com + Printchomp.com + *.printfection.com + Printfection.com (partial) + *.printink.si + printink.si + *.printrbot.com + printrbot (partial) + *.priorygroup.com + Priory Group.com (partial) + *.prisms.deewr.gov.au + DEEWR + *.privacyfix.com + Privacyfix + *.privacysolutions.no + Privacy Solutions.no + *.privatbanka.sk + Privatbanka.sk + *.privatecore.com + PrivateCore.com + *.privatelee.com + Privatelee.com + *.privatepaste.com + PrivatePaste + *.privatewifi.com + PrivateWifi + *.pro-linux.de + Pro-Linux.de (partial) + *.proboards.com + ProBoards (partial) + *.process-one.net + Process-One.net (partial) + *.processing.org + Processing.org (partial) + *.processnet.hu + Domaintank + *.producthunt.com + Product Hunt + *.productvisio.com + Productvisio + *.profitunion.org + ProfitUnion.org + *.programmableweb.com + ProgrammableWeb + *.progreso.pl + Progreso Webhosting (partial) + *.projectmeshnet.org + Project Meshnet (partial) + *.projectplace.com + Projectplace.com (partial) + *.projet-plume.org + Projet-PLUME.org + *.prolexic.com + Prolexic + *.proofpoint.com + Proofpoint (partial) + *.propellerads.com + PropellerAds (partial) + *.properpet.com + ProperPet.com + *.propublica.net + ProPublica.org + *.propublica.org + ProPublica.org + *.proquest.com + ProQuest (partial) + *.prositehosting.co.uk + Fasthosts (partial) + *.prosody.im + Prosidy.im + *.prosystemfx.com + prosystemfx.com + *.protectnetwork.org + Protect Network + *.protu.fi + Prometheus-leirin tuki ry + *.proultratrim.com + Pro Ultra Trim + *.provantage.com + Provantage + *.provenue.net + ProVenue.net + *.providesupport.com + Provide Support (partial) + *.proxmox.com + Proxmox.com + *.proxy.org + Proxy.org + *.prweb.com + PRWeb (partial) + *.prx.org + PRX (partial) + *.psc.edu + PSC.edu + *.psmprogram.gov.au + Public Sector Management Program + *.psoft.net + Parallels (partial) + *.pss.gov.au + Public Sector Superannuation Scheme + *.pssap.gov.au + Public Sector Superannuation Accumulation Plan + *.pssl.com + PSSL.com + *.psswrdbx.com + PasswordBox.com + *.psu.edu + Pennsylvania State University (partial) + *.psychologicalscience.org + Association for Psychological Science + *.psychologytoday.com + Psychology Today (partial) + *.pszaf.hu + PSZÁF + *.ptpimg.me + Ptpimg.me + *.ptt.br + PTT.br + *.pubdirecte.com + Pubdirecte.com + *.publicradio.org + Minnesota Public Radio (partial) + *.publicwhip.org.uk + The Public Whip + *.publiekeomroep.nl + publiekeomroep.nl (partial) + *.pubmatic.com + PubMatic (partial) + *.pubmed.gov + National Institutes of Health (partial) + *.pubnub.com + PubNub (partial) + *.pulpcentral.com + PULP + *.pumo.com.tw + Pumo.com.tw (false MCB) + *.puppetlabs.com + Puppet Labs + *.purdue.edu + Purdue University (partial) + *.purecambogia.com + Pure Cambogia.com + *.purecine.fr + CineMovies + *.pureinfo.com + PureInfo + *.pureloto.com + Pureloto.com + *.pureultracleanse.com + Pure Ultra Cleanse + *.purevpn.com + PureVPN (partial) + *.push.io + Push.IO (partial) + *.pusher.com + Pusher.com (partial) + *.pusherapp.com + Pusher (partial) + *.pushpopcorn.com + Push Popcorn + *.putlocker.com + PutLocker (partial) + *.puu.sh + puu.sh + *.puush.me + puush.me + *.pwmt.org + pwmt.org + *.python.org + Python.org (partial) + *.q1media.com + Q1Media.com (partial) + *.q8car.com + Q8Car (partial) + *.qbrick.com + Qbrick.com (partial) + *.qfxsoftware.com + QFX Software.com + *.qip.ru + QIP + *.qnetp.net + qnetp.net (partial) + *.qnsr.com + Qnsr.com + *.qoo10.cn + Qoo10.cn (partial) + *.qoo10.com + Qoo10.com (partial) + *.qq.com + QQ (partial) + *.qrobe.it + Qrobe.it + *.qrsolutions.com + QR Solutions + *.qsli.com + QS LI.com + *.qt-apps.org + openDesktop.org + *.qt-project.org + Qt + *.qtcloudservices.com + Qt Cloud Services.com + *.quadpoint.org + QuadPoint.org + *.quakenet.org + QuakeNet.org + *.qualaris.com + Qualaris.com (false MCB) + *.quality-channel.de + Spiegel QC (partial) + *.qualityagent.com + QualityAgent (partial) + *.qualtrics.com + Qualtrics (surveys) + *.qualys.com + Qualys + *.quantcast.com + Quantcast + *.quantserve.com + Quantserve.com + *.quantummansite.com + QuantumMAN + *.quattroplay.com + quattroplay.com + *.qub.ac.uk + Queen's University Belfast (partial) + *.qubes-os.org + Qubes-OS.org (partial) + *.qubitproducts.com + Qubit products.com + *.quch.io + Quch.io + *.queervids.com + QueerVids + *.questacon.edu.au + Questacon + *.questadmin.net + FutureQuest (partial) + *.questionmarket.com + Questionmarket.com + *.quickbase.com + Intuit (partial) + *.quicktranslate.com + quicktranslate.com + *.quidco.com + Quidco.com (partial) + *.quinstreet.com + QuinStreet + *.quizaction.de + QuizAction.de (partial) + *.quora.com + Quora + *.quoracdn.net + Quora + *.quotemedia.com + QuoteMedia + *.quotes.bennetts.co.uk + Bennetts (partial) + *.quup.com + quup.com + *.qwknetllc.com + QWKnet LLC.com (partial) + *.qwobl.net + Audience Ad Network (partial) + *.qx11grab.hjcms.de + HJCMS (CAcert) + *.r.axf8.net + Compuware Gomez + *.r.worldssl.net + CDN77.com (partial) + *.r01.ru + R01 (partial) + *.r26.net + Taringa (partial) + *.r7ls.net + Impact Radius + *.raasnet.com + Red Aril (partial) + *.rabbitmq.com + RabbitMQ + *.rabobank.nl + Rabobank + *.raceforward.org + Race Forward.org (partial) + *.rack911.com + Rack911 + *.rackcdn.com + RackCDN.com + *.rackerhacker.com + Rackerhacker + *.rackspace.co.uk + Rackspace (partial) + *.rackspace.co.za + Rackspace (partial) + *.rackspace.com + Rackspace (partial) + *.rackspace.dk + Rackspace (partial) + *.rackspace.hk + Rackspace (partial) + *.rackspace.nl + Rackspace (partial) + *.rackspace.no + Rackspace (partial) + *.rackspace.se + Rackspace (partial) + *.rackspacecloud.com + Rackspace Cloud.com + *.radboudnet.nl + Radboud University Nijmegen + *.radikal.com.tr + Radikal.com.tr (partial) + *.radioleaks.se + Radioleaks + *.radioshack.com + RadioShack (partial) + *.radiowoodstock.com + Radio Woodstock.com (partial) + *.raeng.org.uk + Royal Academy of Engineering + *.rainforestqa.com + Rainforest QA.com + *.rainn.org + RAINN.org (partial) + *.rakdigital.co.uk + raKditigal (partial) + *.rambler.ru + Rambler (partial) + *.ramnode.com + RamNode.com (partial) + *.rand.org + RAND (partial) + *.random.org + Random.org + *.randomhouse.com + Random House (partial) + *.rangenetworks.com + Range Networks.com + *.rapid7.com + Rapid7 (partial) + *.rapidbuyr.com + RapidBuyr (partial) + *.rapidleaf.com + RapidLeaf + *.rapidshare.com + RapidShare (partial) + *.rapidssl.com + RapidSSL + *.rapleaf.com + Rapleaf + *.rareaviation.com + RareAviation.com + *.rasset.ie + RTÉ + *.ratfishoil.com + RatfishOil.com (false MCB) + *.rating-widget.com + Rating-Widget.com + *.raumzeitlabor.de + RaumZeitLabor.de (partial) + *.rawstudio.org + Rawstudio.org (partial) + *.razerzone.com + Razer + *.razoo.com + Razoo (partial) + *.razorservers.com + Razor Servers (partial) + *.rbi.com.au + Reed Business Information Australia + *.rbl.ms + Rbl.Ms (partial) + *.rcfp.org + RCFP.org + *.rcking.eu + RCKing + *.rd.com + Readers Digest.com (partial) + *.rdsecure.org + Radical Designs + *.re-pear.com + Apple Parts Store (partial) + *.re.is + RE.is (partial) + *.reachmode.com + Adblade (partial) + *.reactos.org + ReactOS.org (partial) + *.readersdigest.com + Readers Digest.com (partial) + *.readme.io + ReadMe.io + *.readthedocs.org + Read the Docs.org + *.readyflowers.com + Ready Flowers + *.readyhosting.com + ReadyHosting.com + *.real-debrid.com + Real-Debrid.com + *.real.com + Real Networks (partial) + *.realmatch.com + RealMatch.com (partial) + *.realmedia.com + 24/7 Media (partial) + *.realrobothigh.com + Real Robot High + *.realtidbits.com + Realtidbits (partial) + *.realtime.co + Realtime.co + *.reason.com + Reason.com + *.rebelmouse.com + RebelMouse.com + *.rec-registry.gov.au + REC Registry + *.recalls.gov.au + Product Safety Recalls Australia + *.recaptcha.net + Google APIs + *.recombu.com + Recombu.com (partial) + *.reconingspeakers.com + Speaker Exchange + *.redbubble.com + RedBubble (partial) + *.redbubble.net + RedBubble (partial) + *.redbull.co.uk + Red Bull (partial) + *.redbull.com + Red Bull (partial) + *.redbull.de + Red Bull (partial) + *.redbull.tv + Red Bull TV (partial) + *.redbullcontentpool.com + Red Bull Content Pool + *.redbullmediahouse.com + Red Bull Media House (partial) + *.redbullmobile.at + Red Bull Mobile (false MCB) + *.redbullmobile.com + Red Bull Mobile (partial) + *.redbullmobile.com.au + Red Bull Mobile (partial) + *.redbulls.com + Red Bull (partial) + *.redbullusa.com + Red Bull (partial) + *.redcatsecom.com + Redcats (partial) + *.redcross.org.uk + British Red Cross (partial) + *.reddit.com + Reddit + *.redditmade.com + redditmade.com + *.redditmedia.com + Reddit + *.reddpics.com + Redd Pics.com (false MCB) + *.redferret.net + The Red Ferret + *.redhat.com + Red Hat + *.rediris.es + RedIRIS.es + *.redplum.com + RedPlum.com + *.redweb.com + Redweb + *.reefbuilders.com + Reef Builders + *.reelhd.com + ReelHD.com + *.reelseo.com + ReelSEO.com + *.reelstatic.com + ReelSEO.com + *.reethibeach.com + Reethi Beach.com + *.reevoo.com + Reevoo (partial) + *.refinedads.com + Refined Labs + *.reformal.ru + Reformal (partial) + *.reg.ru + Reg.ru + *.rega.ch + Rega + *.regiobank.nl + RegioBank.nl + *.register.com + Register.com + *.registro.br + Registro.br (partial) + *.reimanpub.com + reimanpub.com + *.reiner-sct.com + Reiner-SCT.com + *.reinvigorate.net + Webtrends (partial) + *.reklamport.com + Reklamport.com + *.religionnews.com + Religion News.com (partial) + *.rememberthemilk.com + Remember the Milk + *.remotelyanywhere.com + LogMeIn.com (partial) + *.remusexhauststore.com + Remue Exhaust Store.com + *.renater.fr + Renater.fr (partial) + *.rentalserver.jp + rentalserver.jp + *.rentler.com + Rentler.com + *.renttherunway.com + Rent the Runway (partial) + *.replicant.us + Replicant.us + *.replicaperfection.com + Replica Perfection + *.reporo.com + Reporo (partial) + *.repost.us + Repost.Us + *.represent.us + Represent.Us + *.reputation.com + Reputation.com (partial) + *.research.de.com + Meetrics + *.researchresults.com + Research Results.com + *.resellerratings.com + ResellerRatings (partial) + *.reservation-desk.com + Reservation-Desk.com (partial) + *.reservationcounter.com + Reservation Counter (partial) + *.resetthenet.org + Reset the Net.org + *.resource.org + Public.Resource.Org + *.responsive.io + responsive.io (partial) + *.responsys.net + Responsys (partial) + *.restorethefourth.net + Restore the Fourth + *.resultspage.com + resultspage.com (partial) + *.retargeter.com + ReTargeter (partial) + *.retrofestive.ca + RetroFestive.ca + *.retronaut.com + Retronaut.com + *.retrousb.com + RetroUSB.com + *.reussissonsensemble.fr + reussissonsensemble.fr (partial) + *.reviewingcomics.com + Reviewing Comics + *.reviewjournal.com + Las Vegas Review-Journal (partial) + *.revision3.com + Revision3 (partial) + *.revolet.com + Revolet + *.revoltgames.com + Revolt Games (partial) + *.revsci.net + AudienceScience + *.rfecom.com + rfecom.com (partial) + *.rfihub.com + rfihub.com + *.rfparts.com + RF Parts.com + *.rgj.com + Reno Gazette-Journal (partial) + *.rgstatic.net + RG static.net + *.rhcloud.com + RH Cloud.com + *.rhinosupport.com + Global Marketing Strategies (partial) + *.rhul.ac.uk + RHUL.ac.uk (partial) + *.richmond.edu + Richmond.edu (partial) + *.richmondteaparty.com + Richmond Tea Party + *.richrelevance.com + RichRelevance (partial) + *.riga.lv + Riga + *.righthaven.com + Righthaven + *.rigzone.com + Rigzone (partial) + *.ringcentral.com + RingCentral + *.ringrevenue.com + RingRevenue.com + *.ripe.net + ripe.net + *.ripoffreport.com + Ripoff Report + *.riseup.net + Riseup + *.risk.io + Risk.io (partial) + *.riverbed.com + Riverbed (partial) + *.riverisland.com + River Island (partial) + *.riverisland.fr + River Island (partial) + *.rizon.net + Rizon.net + *.rl0.ru + Rl0.ru (partial) + *.rlcdn.com + Rapleaf + *.rlrose.co.uk + RL Rose + *.rmcybernetics.com + Research Media & Cybernetics + *.rmxads.com + Right Media + *.rnrwheels.com + RNR Wheels & Tires (partial) + *.rnw.nl + RNW.nl (partial) + *.roammobility.com + Roam Mobility + *.robertsspaceindustries.com + Roberts Space Industries.com + *.robohash.org + RoboHash + *.robotshop.com + RobotShop (partial) + *.robtex.com + RobTex + *.rocketnet.jp + Rocketnet.jp + *.rockpaperphoto.com + Rock Paper Photo.com + *.rockstargames.com + Rockstar Games (partial) + *.rockzi.com + ROCKZi.com + *.roddis.net + Roddis + *.roe.ch + roe.ch + *.roi.ru + ROI.ru + *.roketfiyat.com + RoketFiyat.com + *.roku.com + Roku.com (partial) + *.roleplaychat.org + RolePlayChat.org + *.rollbar.com + Rollbar + *.rollcall.com + Roll Call.com (partial) + *.rollingstone.com + Rolling Stone.com (partial) + *.rollingstonesubscriptions.com + Rolling Stone Subscriptions.com + *.roloil.com + Roloil + *.romdashboard.com + ROMDashboard + *.rondavu.com + Rondavu + *.rooof.com + Rooof + *.rootbsd.net + RootBSD.net + *.rosehosting.com + RoseHosting.com + *.rosettacode.org + Rosetta Code.org (false MCB) + *.rossulbricht.org + Ross Ulbricht.org + *.rotesource.com + Rotesource.com + *.rottentomatoes.com + Rottentomatoes + *.roughtradegear.com + Rough Trade Gear + *.routledgeweb.com + Informa (partial) + *.royalmail.com + Royal Mail (partial) + *.royalmailgroup.com + Royal Mail Group (partial) + *.rp-api.com + Repost.Us + *.rpi.edu + Rensselaer Polytechnic Institute + *.rpmfusion.org + RPM Fusion.org (partial) + *.rpxnow.com + RPXNow.com (partial) + *.rrts.com + RRTS.com + *.rsa.com + RSA + *.rsaconference.com + RSA Conference (partial) + *.rsf.org + Reporters Without Borders + *.rsmsecure.com + RSM secure.com + *.rsna.org + Radiological Society of North America (partial) + *.rspb.org.uk + RSPB + *.rspca.org.uk + RSPCA (partial) + *.rspcashop.co.uk + RSPCA shop.co.uk + *.rsshog.com + rsshog + *.rssinclude.com + RSSinclude + *.rsvp.com.au + RSVP + *.rsys.net + rsys.net + *.rt.com + RT.com (partial) + *.rtbf.be + Rtbf.be Belgian Television + *.rtl.de + RTL.de (partial) + *.rtmcdn.net + Remember the Milk + *.rtp.vc + RTP.vc + *.rtrcdn.com + Rent the Runway (partial) + *.ru.nl + Radboud University Nijmegen + *.rubicondev.com + Rubicon Development + *.rubiconproject.com + Rubicon Project + *.ruby-lang.org + ruby-lang.org (partial) + *.rubyforge.org + RubyForge (partial) + *.rubygems.org + RubyGems.org (partial) + *.rudi.net + RUDI.net + *.rug.nl + University of Groningen (partial) + *.rugshd.com + RugsHD.com + *.rugstudio.com + RugStudio (partial) + *.ruhr-uni-bochum.de + Ruhr-Uni-Bochum.de (partial) + *.run.pivotal.io + Pivotal + *.runabove.com + RunAbove + *.rushbucks.com + RushBucks.com + *.russia.ru + russia.ru (partial) + *.russia2all.com + Russia2all.com + *.russianamericancompany.com + Russian American Company + *.rutgers.edu + Rutgers University (partial) + *.rxpharmacyusa.com + rxpharmacyusa.com + *.ryanair.com + Ryanair.com + *.rylwarfare.net + RYL Warfare + *.s-msft.com + Microsoft (partial) + *.s-msn.com + s-msn.com (partial) + *.s.kqed.net + KQED.org (partial) + *.s2member.com + s2Member.com (false MCB) + *.s3.envato.com + Envato.com (partial) + *.sabayon.org + Sabayon.org (partial) + *.sabb.com + HSBC + *.sacredcrystalsingingbowls.com + Crystal Singing Bowls + *.safe-mail.net + Safe-mail.net + *.safello.com + Safello.com + *.safenet-inc.com + SafeNet (partial) + *.safeshepherd.com + Safeshepherd.com + *.saga.co.uk + Saga Group + *.sagepay.com + Sage (partial) + *.sail-horizon.com + Sailthru Horizon + *.sailfishos.org + SailfishOS.org + *.sailthru.com + Sailthru + *.salecycle.com + SaleCycle (partial) + *.salesforce.com + Salesforce.com (partial) + *.salesforceliveagent.com + Salesforce Live Agent.com + *.salesmanago.pl + SALESmango.pl + *.salford.ac.uk + University of Salford (partial) + *.salsalabs.com + Salsa Labs + *.samba.com + SAMBA + *.samba.org + Samba.org + *.samssoftware.com.au + Sam's Software & Consulting (partial) + *.samsung.cn + Samsung (partial) + *.samsung.com + Samsung (partial) + *.samsung.net + Samsung mySingle + *.samsungapps.com + Samsung Apps (partial) + *.samsungchaton.com + ChatON + *.samsungknox.com + Samsung Knox.com (partial) + *.samwhited.com + Sam Whited.com + *.sanalika.com + Sanalika (partial) + *.sandeen.net + Sandeen.net + *.sandia.gov + Sandia National Laboratories (partial) + *.sandsmedia.com + S and S Media.com (false MCB) + *.sandstorm.io + Sandstorm.io + *.sankaty.com + Sankaty Advisors + *.sanoma.fi + Sanoma.fi + *.sans.edu + SANS.edu + *.sans.org + SANS.org (partial) + *.santander.co.uk + Santander.co.uk (partial) + *.sanwork.com + Sanworks + *.sap.com + SAP (partial) + *.sapato.ru + Sapato (partial) + *.sape.ru + Sape (partial) + *.sapo.pt + Sapo.pt + *.sarava.org + Sarava.org (partial) + *.sarenza.net + Sarenza (partial) + *.sas.com + SAS Institute + *.saurik.com + saurik (partial) + *.savethechildren.org.uk + Save the Children.org.uk (partial) + *.sbaglobal.com + Service by Air + *.sbnation.com + SB Nation (partial) + *.sbucciami.com + Sbucciami + *.sc.edu + SC.edu (partial) + *.sc.egov.usda.gov + United States Department of Agriculture (partial) + *.sc.hodesdigital.com + Bernard Hodes Group (partial) + *.scanadu.com + Scanadu.com (partial) + *.scania.com + Scania (partial) + *.scanmarker.com + Scanmarker + *.scanningpens.co.uk + Scanning Pens.co.uk + *.scanscout.com + scanscout.com + *.scene7.com + Scene7 + *.scenetap.com + SceneTap + *.schd.ws + Sched.org (partial) + *.sched.org + Sched.org (partial) + *.schetu.net + schetu.net + *.schibsted.se + Schibsted (partial) + *.schneider-electric.com + Schneider-Electric.com (partial) + *.schnellno.de + SchnellNo.de (partial) + *.schoolloop.com + SchoolLoop (Partial) + *.schulte.org + Schulte.org + *.schwab.com + Schwab.com + *.schwabcdn.com + Schwab CDN.com + *.sciencedirect.com + SciVerse (partial) + *.sciencemag.org + Sciencemag.org (partial) + *.scientificamerican.com + Scientific American (partial) + *.sciverse.com + SciVerse (partial) + *.scoop.it + Scoop.it (partial) + *.scooter-attack.com + Scooter-Attack (partial) + *.scopus.com + Scopus + *.scorecardresearch.com + ScorecardResearch.com + *.scorerestore.com + Score Restore.com + *.scottishwindfest.com + Scottish Windfest + *.scraporchard.com + Scrap Orchard + *.scribd.com + Scribd.com (partial) + *.scribdassets.com + Scribd.com (partial) + *.scribol.com + Scribol (partial) + *.scribusstuff.org + openDesktop.org + *.scriptlogic.com + Scriptlogic + *.scriptlogiccorp.d2.sc.omtrdc.net + Scriptlogic + *.scrs.gc.ca + Canadian Security Intelligence Service + *.scsstatic.ch + scsstatic.ch + *.sct.gov.au + Superannuation Complaints Tribunal + *.scu.edu + Santa Clara University (partial) + *.sculpteo.com + Sculpteo.com (partial) + *.sdlcdn.com + Sdlcdn.com + *.sdsc.edu + SDSC.edu + *.sdss3.org + Sloan Digital Sky Survey (partial) + *.sdsu.edu + SDSU.edu (partial) + *.seafile-server.de + Seafile-Server.de + *.seagate.com + Seagate.com (partial) + *.seagm.com + SEAGM.com (false MCB) + *.sealswithclubs.eu + Seals with Clubs + *.search.etargetnet.com + Etarget (partial) + *.searchcommander.com + Search Commander + *.searchmarketing.com + searchmarketing.com + *.searchmobius.org + MOBIUS Catalog + *.sears.com + Sears.com (partial) + *.searscommerceservices.com + Sears Commerce Services.com + *.seasonal.ly + Seasonal.ly + *.seattle.gov + City of Seattle (partial) + *.sec.gov + U.S. Securities and Exchange Commission (partial) + *.secondlife.com + Second Life.com (partial) + *.seconfig.sytes.net + Seconfig.sytes.net + *.secretsha.re + Secretshare + *.secularstudents.org + Secular Student Alliance + *.secunet.com + secunet (partial) + *.secunia.com + Secunia + *.secure-donor.com + secure-donor.com + *.secure-mobiles.com + secure-mobiles.com + *.secure-secure.co.uk + secure-secure.co.uk + *.secure-zone.net + secure-zone.net + *.secure.barclaycard.co.uk + Barclays + *.secure.epi.org + Economic Policy Institute (partial) + *.secure.filmlinc.com + Film Linc.com (partial) + *.secure.griffith.edu.au + Griffith University + *.secure.me + secure.me + *.secure.nonprofitsoapbox.com + Non Profit Soapbox.com (partial) + *.secure.xtenit.com + Xtenit (partial) + *.securelime.com + Securelime + *.securenet.com + SecureNet.com + *.securepaynet.net + Securepaynet.net + *.securepcissl.com + securepicssl.com + *.secureprosoftware.com + SecurePro Software + *.secureserver.net + Secureserver.net (partial) + *.securestudies.com + SecureStudies.com (partial) + *.securi.net + Securi (partial) + *.security.nl + Security.NL + *.securityexperten.com + Security Experten.com (false MCB) + *.securityinabox.org + Security in a Box.org + *.securitymetrics.com + SecurityMetrics + *.securityweek.com + SecurityWeek.com + *.securosis.com + Securosis + *.securycast.com + SecuryCast Oy + *.sedo.co.uk + Sedo.com + *.sedo.com + Sedo.com + *.sedo.de + Sedo.com + *.sedoholding.com + Sedo Holding.com (partial) + *.seeedstudio.com + Seeed Studio.com + *.seekingarrangement.com + SeekingArrangement.com + *.segurosuniversales.net + Seguros Universales + *.selangorku.com + Selangorku + *.selfhost.de + selfhost.de + *.selfridges.com + Selfridges.com (partial) + *.sellaband.com + Sellaband.com (partial) + *.semiaccurate.com + SemiAccurate + *.senate.gov + Senate.gov + *.sencha.com + Sencha (partial) + *.sendgrid.com + SendGrid.com (partial) + *.seotrainingtoronto.com + SEO Training Toronto + *.serato.com + Serato.com (partial) + *.serialist.net + Serialist + *.servage.net + Servage.net + *.servedbyopenx.com + OpenX (partial) + *.server314.com + server314.com + *.servercraft.co + Servercraft + *.servercrate.com + ServerCrate.com (partial) + *.serverfault.com + Server Fault.com + *.serverfruit.com + Serverfruit.com + *.serveriai.lt + serveriai.lt + *.serverloft.com + serverloft (partial) + *.serverpilot.io + ServerPilot.io + *.serversaurus.com.au + Serversaurus.com.au (partial) + *.servertastic.com + ServerTastic + *.service-now.com + ServiceNow (partial) + *.service.mirror-image.net + Mirror Image Internet (partial) + *.service.xs4all.nl + XS4ALL (partial) + *.services-prefecture.com + Services-prefecture.com + *.servicetick.com + ServiceTick.com + *.serving-sys-int.com + serving-sys.com (partial) + *.serving-sys.com + serving-sys.com (partial) + *.sescoops.com + SEScoops + *.sestatic.fi + SEstatic.fi (partial) + *.set.io + Set.io + *.sexslurp.com + SexSlurp + *.sexysitehosting.com + Sexy Site Hosting.com + *.sf.net + SourceForge (partial) + *.sfdcstatic.com + Salesforce.com (partial) + *.sfm-offshore.com + SFM Group (partial) + *.sfr.solution.weborama.fr + Weborama (partial) + *.sgizmo.com + SurveyGizmo.com + *.sgkb.ch + Schweizer Kantonalbanken + *.sh.ch + Schweizer Regierung + *.shacknews.com + Shacknews + *.shaklee.com + Shaklee (partial) + *.shamansgarden.com + Shaman's Garden + *.shannonhealth.com + Shannon Health + *.shareasale.com + ShareASale.com (partial) + *.sharedvue.net + sharedvue.net + *.shareholder.com + Shareholder.com (partial) + *.shareit.com + MyCommerce + *.sharethis.com + ShareThis + *.sharethrough.com + Sharethrough (partial) + *.sharetobuy.com + sharetobuy.com + *.sharideangelo.com + Shari DeAngel.com (false MCB) + *.sharpmen.com + Sharpmen + *.sharpspring.com + SharpSpring (partial) + *.shazam.com + Shazam (partial) + *.sheetmusicplus.com + Sheet Music Plus (partial) + *.shef.ac.uk + University of Sheffield (partial) + *.sheffield.ac.uk + University of Sheffield (partial) + *.ship-ment.com + Shipment + *.shkb.ch + Schweizer Kantonalbanken + *.shld.net + SHld.net (partial) + *.shmoop.com + Shmoop.com (partial) + *.shockmedia.nl + Shock Media.nl + *.shodan.io + Shodan.io + *.shoebuy.com + Shoebuy.com (partial) + *.shop.boingboing.net + Boing Boing Shop + *.shop.ccs.com + CCS (partial) + *.shop.haymarket.com + Haymarket (partial) + *.shop.linuxnewmedia.com + Linux New Media (partial) + *.shop.linuxnewmedia.de + Linux New Media (partial) + *.shop.royalmail.com + Royal Mail (partial) + *.shop.sandsmedia.com + S and S Media.com (partial) + *.shopatron.com + Shopatron (partial) + *.shopbootsusa.com + Boots.com (partial) + *.shopco.com + ShopCo.com (partial) + *.shopify.com + Shopify (partial) + *.shoplocal.com + ShopLocal + *.shopmania.com + ShopMania (partial) + *.shopmania.es + ShopMania (partial) + *.shopmania.org + ShopMania (partial) + *.shopperapproved.com + Shopper Approved.com + *.shopping.com + Shopping.com (partial) + *.shopping.rspb.org.uk + RSPB + *.shopping.tetu.com + Tetu + *.shoppingcartelite.com + Shopping Cart Elite + *.shopstyle.co.jp + ShopStyle (partial) + *.shopstyle.co.uk + ShopStyle (partial) + *.shopstyle.com + ShopStyle (partial) + *.shopstyle.com.au + ShopStyle (partial) + *.shopstyle.de + ShopStyle (partial) + *.shopstyle.fr + ShopStyle (partial) + *.shoptiques.com + Shoptiques.com (partial) + *.shopwiki.com + ShopWiki (partial) + *.shopzilla.com + Shopzilla (partial) + *.shortlist.com + ShortList + *.shortyawards.com + Shorty Awards.com (partial) + *.shotgunclub.com + Shotgun Club + *.shovehost.com + ShoveHost.com + *.showcase.ca + Showcase.ca (partial) + *.showingcloud.com + Showing Cloud.com + *.showmecon.com + ShowMeCon.com (partial) + *.shpock.com + Shpock + *.shrinktheweb.com + ShrinkTheWeb + *.shuddle.us + Shuddle.us + *.shurgardpayment.eu + Shurgard + *.shutterfly.com + Shutterfly (partial) + *.shutterstock.com + Shutterstock (partial) + *.shutthebackdoor.net + Shut the Backdoor.net + *.sickdaysurfshop.com + SickDay surf shop.com + *.sicontact.at + ESET (partial) + *.sidereel.com + SideReel (partial) + *.sidibouras.com + SidiЪouras + *.siemens.com + Siemens.com (partial) + *.sierraclubgreenhome.com + Sierra Club Green Home (partial) + *.sifterapp.com + Next Update (partial) + *.sigfig.com + SigFig + *.signals.com + Signals + *.signon.org + MoveOn.org (false MCB) + *.signon.trb.com + Tribune (partial) + *.sigxcpu.org + sigxcpu.org + *.sikker-adgang.dk + Digitaliseringsstyrelsen + *.silentcircle.com + Silent Circle + *.silentcircle.org + Silentcircle.org + *.silkn.com + Silkn.com + *.silkroad.com + SilkRoad (partial) + *.silkroad.ws + Silkroad WS (partial) + *.silktide.com + Silktide (partial) + *.silobreaker.com + Silobreaker (partial) + *.silvawoodflooring.co.uk + Silva Wood Flooring + *.silverrushstyle.com + SilverRush Style (partial) + *.simmarket.com + simFlight (partial) + *.simosnap.com + Simosnap.com (partial) + *.simplebooklet.com + simplebooklet.com (partial) + *.simplekb.com + simplekb.com + *.simplepickup.com + Simple Pickup (partial) + *.simplereach.com + SimpleReach.com + *.simpli.fi + Simpli.fi (partial) + *.simplyhired.com + Simply Hired + *.simplytechnology.net + Simply Technology.net + *.simyo.de + Simyo (partial) + *.sina.com.cn + Sina (partial) + *.sinaapp.com + Sina App (partial) + *.sinaimg.cn + Sina Weibo (partial) + *.sinefa.com + Sinefa.com (partial) + *.singlefeed.com + Singlefeed + *.singlehop.com + SingleHop (partial) + *.singularityhub.com + Singularity Hub (partial) + *.sinica.edu.tw + Sinica.edu.tw (partial) + *.siosm.fr + Siosm.fr + *.sipgate.at + Sipgate + *.sipgate.co.uk + Sipgate + *.sipgate.de + Sipgate + *.sipr.ucl.ac.be + Université catholique de Louvain + *.sis.maricopa.edu + Maricopa Community Colleges (partial) + *.site.biz.id + Host.co.id + *.site24x7.com + Site24x7 + *.site5.com + Site5 (partial) + *.siteblindado.com + Site Blindado + *.siteblindado.com.br + Site Blindado + *.siteground.com + SiteGround (partial) + *.siteheart.com + SiteHeart + *.siteimprove.com + Siteimprove (partial) + *.sitelock.com + SiteLock (partial) + *.sitemason.com + Sitemason (partial) + *.sitemasonmail.com + Sitemason (partial) + *.sitemeter.com + sitemeter.com + *.siteor.com + Siteor (partial) + *.siteor.pl + Siteor (partial) + *.sitepen.com + SitePen.com + *.sitepoint.com + SitePoint (partial) + *.sitescout.com + SiteScout (partial) + *.sitesense-oo.com + NameMedia (partial) + *.sitestat.com + Sitestat + *.sitetagger.co.uk + SiteTagger.co.uk (partial) + *.sitizens.com + Sitizens + *.sixxs.net + Sixxs.net + *.sizzlesitesinc.com + Sizzle Sites + *.sjd.net + Josefsson.org + *.skepticink.com + Skeptic Ink.com + *.skilldrum.com + AppVault (partial) + *.skimlinks.com + SkimLinks (partial) + *.skimresources.com + SkimLinks (partial) + *.skitch.com + Skitch + *.sknvibes.com + SKNVibes (partial) + *.skrill.com + Skrill.com + *.skroutz.gr + Skroutz.gr + *.skroutzstore.gr + Skroutz.gr + *.sky.com + Sky.com (partial) + *.skydsl.eu + Skydsl.eu + *.skynet.ie + The Skynet Project + *.skype.com + Skype (partial) + *.skypeassets.com + Skype (partial) + *.skyriderplay.com + Skyrider GraalOnline + *.slashbits.com + Slashbits.com + *.slashdot.org + Slashdot (partial) + *.slashdotmedia.com + Slashdot Media + *.slaveryfootprint.org + Slavery Footprint.org + *.slax.org + Slax Linux + *.slenderkitchen.com + The Slender Kitchen + *.slhost.com + SoftCom (partial) + *.sli-systems.com + SLI Systems (partial) + *.slickdeals.net + Slickdeals + *.slickedit.com + SlickEdit.com + *.slideshare.net + SlideShare.net (partial) + *.slidesharecdn.com + SlideShare.net (partial) + *.slooh.com + SLOOH (partial) + *.slotsgaminator.com + Gaminator + *.slsp.sk + Slovenska_Sporitelna + *.smart-invests.biz + Smart-Invests.biz + *.smart.ly + Smart.ly + *.smartadserver.com + Smart AdServer (partial) + *.smartbrief.com + SmartBrief + *.smartertools.com + SmarterTools (partial) + *.smartling.com + Smartling (partial) + *.smartmoney.com + News Corporation (partial) + *.smartmoney.net + News Corporation (partial) + *.smartphoneexperts.com + Smartphone Experts (partial) + *.smartrecruiters.com + SmartRecruiters + *.smfboards.com + SMF for Free (partial) + *.smjg.org + SMJG + *.smowtion.com + Smowtion (partial) + *.smugmug.com + SmugMug.com (partial) + *.smyl.es + sMyl.es + *.snacktv.de + SnackTV + *.snagajob.com + snagajob + *.snapengage.com + SnapEngage (partial) + *.snapnames.com + KeyDrive (partial) + *.snapwidget.com + SnapWidget.com (partial) + *.snatchly.com + Snatchly (partial) + *.sndcdn.com + Soundcloud (partial) + *.snelis.com + Snel Internet Services + *.snolab.ca + Sudbury Neutrino Observatory Institute + *.snoobi.com + Snoobi (partial) + *.snort.org + Snort (partial) + *.snstatic.fi + SNstatic.fi + *.snugnote.com + SnugNote (partial) + *.so36.net + so36.NET + *.soap.com + Soap.com (partial) + *.soapboxcms.com + Soapbox CMS + *.socallinuxexpo.org + SoCal Linux Expo.org + *.socialbakers.com + socialbakers.com + *.socialreader.com + Social Reader.com (partial) + *.socialsecurity.gov + US Social Security Administration + *.socialshows.net + SocialShows + *.socialtwist.com + SocialTwist + *.sociomantic.com + sociomantic labs + *.sodahead.com + SodaHead.com + *.sodiumshop.com + Sodiumshop.com + *.soekris.com + Soekris.com + *.soeren-hentzschel.at + Soeren Hentzschel. + *.softcreatr.de + SoftCreatR.de + *.softlayer.com + SoftLayer + *.solarbotics.com + Solarbotics.com + *.solarcity.com + SolarCity + *.solarflare.com + Solarflare.com (partial) + *.solarlist.com + SolarList.com + *.solicitor-concierge.com + Solicitor-Concierge.com + *.solid-run.com + Solid-Run.com + *.solidcactus.com + Solid Cactus (partial) + *.solidcactushosting.com + Solid Cactus (partial) + *.solidlogic.com + Solid Logic Technology + *.solmusica.com + Sol Musica + *.solution.weborama.fr + Weborama (partial) + *.solutionshealthcare.com + Solutions Healthcare Management + *.sonic.net + Sonic.net (partial) + *.sonicwall.com + SonicWALL (partial) + *.sonnettech.com + Sonnet Tech.com (partial) + *.sonos.com + Sonos.com (partial) + *.sony-europe.com + Sony-Europe.com + *.sony.co.uk + Sony (partial) + *.sony.com + Sony (partial) + *.sonyentertainmentnetwork.com + Sony Entertainment Network (partial) + *.sonystyle.com.mx + Sony Latin America (partial) + *.sophos.com + Sophos (partial) + *.soton.ac.uk + University of Southampton (partial) + *.soundcloud.com + Soundcloud (partial) + *.soundstrue.com + Sounds True + *.soup.io + Soup.io (partial) + *.sourced.fm + sourced.fm + *.sourcefabric.com + Sourcefabric.com (partial) + *.sourcefabric.org + Sourcefabric.com (partial) + *.sourceforge.jp + SourceForge (partial) + *.sourceforge.net + SourceForge (partial) + *.southbankcentre.co.uk + Southbank Centre.co.uk (partial) + *.spanair.com + Spanair + *.sparkfun.com + Sparkfun + *.sparklit.com + Sparklit + *.spartafx.com + Spartafx.com + *.sparxtrading.com + Sparx Trading.com (false MCB) + *.spatialbuzz.com + SpatialBuzz.com (partial) + *.spd.de + Sozialdemokratische Partei Deutschlands + *.spdx.org + SPDX.org (partial) + *.speakeasy.net + MegaPath (partial) + *.speakychat.com + SpeakyChat.com + *.speakyoursilence.org + Speak Your Silence + *.speakyweb.com + SpeakyChat.com + *.specialforces.com + SpecialForces + *.specificclick.net + Specificclick + *.specificmedia.com + Specific Media (partial) + *.spectraflow.com + Spectraflow.com + *.speedppc.com + SpeedPPC (partial) + *.speedtest.net + Speedtest.net (partial) + *.speedtree.com + SpeedTree.com (partial) + *.spendbitcoins.com + Spendbitcoins + *.spiceworks.com + Spiceworks (partial) + *.spideroak.com + SpiderOak + *.spiegel.de + Spiegel (partial) + *.spire.umass.edu + University of Massachusetts Amherst (partial) + *.spoki.lv + Spoki + *.spoonful.com + Spoonful.com + *.sportifik.com + Sportifik + *.spot.im + Spot.IM + *.spotify.com + Spotify (partial) + *.spotplanet.org + Spotplanet + *.spotxchange.com + SpotXchange.com (partial) + *.spreadshirt.at + Spreadshirt + *.spreadshirt.be + Spreadshirt + *.spreadshirt.co.uk + Spreadshirt + *.spreadshirt.com + Spreadshirt + *.spreadshirt.de + Spreadshirt + *.spreadshirt.dk + Spreadshirt + *.spreadshirt.es + Spreadshirt + *.spreadshirt.fi + Spreadshirt + *.spreadshirt.fr + Spreadshirt + *.spreadshirt.ie + Spreadshirt + *.spreadshirt.it + Spreadshirt + *.spreadshirt.net + Spreadshirt + *.spreadshirt.nl + Spreadshirt + *.spreadshirt.no + Spreadshirt + *.spreadshirt.pl + Spreadshirt + *.spreadshirt.se + Spreadshirt + *.spring-tns.net + Spring-TNS.net (partial) + *.springer.com + Springer (partial) + *.sprint.com + Sprint.com (partial) + *.spriza.com + Spriza.com + *.spylog.com + Spylog.com (partial) + *.sqlconverter.com + SQL Converter + *.sqlite.org + SQLite + *.sqsp.com + Squarespace (partial) + *.squarefree.com + Jesse Ruderma + *.squarepenguin.co.uk + Square Penguin + *.squarespace.com + Squarespace (partial) + *.srb2.org + SRB2.org + *.srlabs.de + Security Research Labs + *.ssa.gov + US Social Security Administration + *.sseeventsgroup.com + SSE Events Group.com + *.ssl-images-amazon.com + Amazon Web Services + *.ssl7.net + Secure Socket Layer Billing Services + *.sslcert14.com + sslcert14.com + *.sslcert19.com + sslcert19.com + *.sslcert35.com + sslcert35.com + *.sslcs.cdngc.net + CDNetworks (partial) + *.ssldomain.com + ssldomain.com (partial) + *.ssls.com + SSLs.com + *.ssrn.com + SSRN (partial) + *.sssup.it + SSSup.it (partial) + *.sstatic.net + Stack Exchange (partial) + *.st-andrews.ac.uk + St-Andrews.ac.uk (partial) + *.st-hatena.com + Hatena (partial) + *.sta.sh + Sta.sh + *.stack.nl + Stack.nl + *.stackcommerce.com + StackCommerce.com (partial) + *.stackexchange.com + Stack Exchange (partial) + *.stacklet.com + Stacklet.com (partial) + *.stackoverflow.com + Stack Exchange (partial) + *.stacksocial.com + StackSocial (partial) + *.stadt-bremerhaven.de + Caschys Blog + *.stage-mobioinsider.com + Mobio INsider + *.stagingspeak.com + Tunespeak.com + *.standaard.be + Standaard.be (partial) + *.standishmanagement.com + Standish Management + *.standup2cancer.ca + Stand Up to Cancer (partial) + *.standup2cancer.org + Stand Up to Cancer (partial) + *.stanford.edu + Stanford University (partial) + *.staples.com + Staples.com + *.staradvertiser.com + Honolulu Star Advertiser + *.starbucks.com + Starbucks.com (partial) + *.stardock.com + Stardock (partial) + *.stardock.net + Stardock (partial) + *.starfieldtech.com + Starfield Technologies, Inc. + *.starmoney.de + StarMoney.de + *.starnet.com + StarNet.com (partial) + *.starrez.com + StarRez + *.starsearchcasting.com + Star Search Casting.com (partial) + *.startcom.org + StartCom + *.startingpage.com + Ixquick + *.startjesucces.nl + Stichting IAPC + *.startlogic.com + StartLogic + *.startmail.com + StartMail + *.startpage.com + Ixquick + *.startssl.com + StartCom + *.startssl.eu + StartCom + *.startssl.net + StartCom + *.startssl.org + StartCom + *.startssl.us + StartCom + *.statcounter.com + Statcounter (partial) + *.statesmanjournal.com + Statesman Journal (partial) + *.static-nextag.com + Nextag (partial) + *.static.img-dpreview.com + Digital Photography Review (partial) + *.staticflickr.com + Flickr + *.staticsfly.com + Shutterfly (partial) + *.staticsitegenerators.net + Static Site Generators.net + *.staticstuff.net + GetClicky + *.staticwars.com + StaticWars.com + *.status.net + StatusNet (partial) + *.statuspage.io + StatusPage.io + *.stayclassy.org + StayClassy + *.stayfriends.at + StayFriends + *.stayfriends.ch + StayFriends + *.stayfriends.de + StayFriends + *.staysmartonline.gov.au + Stay Smart Online + *.stcllctrs.com + MDNX (partial) + *.steadfast.net + Steadfast.net + *.stealthnews.com + Stealthnews.com + *.steamcommunity.com + Steam Community.com (partial) + *.steelhousemedia.com + SteelHousemedia.com (partial) + *.steganos.com + Steganos.com + *.stelladot.com + Stella & Dot + *.stemulitefitnessformula.com + Stemulite Fitness Formula + *.stevenroddis.com + Steven Roddis + *.stevens.edu + Stevens + *.stevesie.com + Stevesie + *.stgraber.org + St Graber.org + *.stickhet.com + Stickhet + *.stitcher.com + Stitcher (partial) + *.stkittszipline.com + St. Kitts Zipline (partial) + *.stlinux.com + STLinux.com (partial) + *.stockton.edu + Stockton College (partial) + *.stocktwits.com + StockTwits (partial) + *.stocktwits.net + StockTwits (partial) + *.stop-snoring-mouthpiece.org + Stop-Snoring-Mouthpiece.org (partial) + *.stopbadware.org + Stopbadware.org + *.stopwatching.us + Stop Watching Us + *.storage-bin.com + Storage-Bin.com + *.store.bobafamily.com + Boba Family + *.store.cox.com + Cox Communications (partial) + *.store.linux.com + Linux.com + *.store.micgadget.com + M.I.C. Gadget (partial) + *.store.pgp.com + PGP + *.store.thesims3.com + Electronic Arts (partial) + *.store.winzip.com + WinZip.com (partial) + *.store1.mentor.com + Mentor Graphics (partial) + *.storenvy.com + Storenvy (partial) + *.storesecured.com + StoreSecured.com (partial) + *.storify.com + Storify + *.stormiq.com + stormiq.com + *.stowesports.com + AJ's Ski & Sports + *.stpete.usf.edu + University of South Florida (partial) + *.stpeter.im + stpeter.im + *.straply.com + Straply + *.strategicmanagement.net + Strategic Management Society + *.strategyanalytics.com + Strategy Analytics + *.stratum0.org + Stratum 0 + *.stratusexpress.com + ServerExpress.co.il + *.streamray.com + Streamray.com (partial) + *.streetartutopia.com + Street Art Utopia + *.stripe.com + Stripe.com + *.stroeerdigitalmedia.de + StroeerDigitalMedia + *.strongswan.org + strongSwan + *.stubhub.com + Stubhub + *.studentaidcalculator.com + Student Aid Calculator.com + *.studentbenefits.ca + Student Benefits.ca + *.studiopress.com + StudioPress.com + *.studyinaustralia.gov.au + Study in Australia + *.stunnish.com + Stunnish.com (false MCB) + *.stylist.co.uk + Stylist.co.uk + *.suas.ie + Suas.ie + *.sublimevideo.net + SublimeVideo (partial) + *.submissiontechnology.co.uk + Submission Technology + *.subscribenww.com + NetworkWorld (partial) + *.subscribeonline.co.uk + Dovetail Services (partial) + *.subscriberconcierge.com + Marketing G2 + *.subterraneangames.com + Subterranean Games.com + *.subtome.com + SubToMe.com + *.successchef.com + Success Chef + *.successfactors.com + SuccessFactors + *.sugester.pl + Sugester (partial) + *.suggester.pl + Sugester (partial) + *.suitey.com + Suitey.com + *.sundancechannel.com + Sundance Channel + *.sundayworld.com + Sunday World.com + *.sunglasswarehouse.com + Sunglass Warehouse + *.sunlightfoundation.com + Sunlight Foundation (partial) + *.sunrise.ch + Sunrise + *.sunroofwinddeflectors.com + Sunroof Wind Deflectors.com + *.sunsetprohosting.net + Sunset ProHosting + *.suntimes.com + SunTimes.com (partial) + *.suntrust.com + SunTrust + *.suomi.fi + Suomi.fi + *.supadupa.me + SupaDupa (partial) + *.superbreak.com + Holidaybreak (partial) + *.superbreak.net + Holidaybreak (partial) + *.superdesk.pro + Sourcefabric.com (partial) + *.superguarantee.com + SuperMedia (partial) + *.superherostuff.com + Superherostuff.com (partial) + *.supermedia.com + SuperMedia (partial) + *.superpages.com + SuperMedia (partial) + *.supersec.com + Supersec + *.superstats.com + SuperStats.com (partial) + *.superstrands.com + SuperStrands + *.superuser.com + Stack Exchange (partial) + *.suppliesfordreams.org + Supplies for Dreams.org (false MCB) + *.support.domaintools.com + DomainTools (partial) + *.supporters.eff.org + EFF + *.suprbay.org + The Pirate Bay (partial) + *.suprizkizlar.com + Suprizkizlar.com + *.sure-assist.com + sure-assist.com + *.suresupport.com + SureSupport + *.surfaid.ihost.com + CoreMetrics (partial) + *.surpasshosting.com + SurpassHosting.com (partial) + *.surveydaddy.com + Surveydaddy + *.suse-art.org + openDesktop.org + *.suse.com + SUSE (partial) + *.susestudio.com + SUSE (partial) + *.svbtle.com + Svbtle.com + *.svn.sf.net + SourceForge (partial) + *.svn.sourceforge.net + SourceForge (partial) + *.sway.com + Sway + *.swca.org + SWCA.org + *.sweb.ru + SpaceWeb + *.sweetpepper.org + potager.org + *.swetswise.com + SwetsWise + *.swin.edu.au + Swin.edu.au (partial) + *.swissabroad.ch + Swissabroad.ch + *.swisscom.ch + Swisscom.ch + *.swisscom.com + Swisscom.ch + *.swisslinsen.ch + swisslinsen.ch + *.swisspower.ch + Swiss Power + *.swissreg.ch + Swiss Federal Institute of Intellectual Property + *.switch.ch + switch.ch + *.switch.co + Switch.co + *.switchadhub.com + Switch Adserver + *.switchnet.io + Switchnet.io + *.switchplus.ch + switchplus.ch + *.swmed.edu + University of Texas Southwestern Medical Center (partial) + *.swordfishdc.com + swordfishdc.com + *.swreg.com + SWREG + *.swtor.com + swtor.com (partial) + *.sylvancompany.com + Sylvan Company.com + *.symantec.com + Symantec (partial) + *.symanteccloud.com + Symantec (partial) + *.symanteccontent.com + Symantec (partial) + *.symlynx.com + symlynX + *.symplicity.com + Symplicity + *.synacor.com + Synacor (partial) + *.syncboss.com + SyncBoss (partial) + *.synergistscada.com + Synergist SCADA + *.synology.com + Synology (partial) + *.synopsys.com + Synopsys (partial) + *.sys4.de + sys4.de + *.sysproserver.de + sysprovide (partial) + *.systemcenteradviser.com + System Center Advisor.com + *.systemcenteradviser.net + System Center Advisor.com + *.systemcenteradvisor.com + System Center Advisor.com + *.systemcenteradvisor.net + System Center Advisor.com + *.systemintegra.ru + SystemIntegra.ru + *.sysward.com + SysWard.com + *.sywcdn.net + SYW CDN.net + *.szkb.ch + Schweizer Kantonalbanken + *.t-mobile.co.uk + T-Mobile + *.t-mobile.com + T-Mobile + *.t-mobile.nl + T-Mobile + *.t-online.de + T-Online (partial) + *.t.co + Twitter + *.t3.io + t3.io + *.t4ft.de + FirstTag.de + *.taboola.com + Taboola (partial) + *.tacoma.uw.edu + University of Washington (partial) + *.tacticaltech.org + Tactical Tech.org (partial) + *.tagasauris.com + Tagasauris.com + *.tagesschau.de + tagesschau.de (partial) + *.tageswoche.ch + TagesWoche + *.tagonline.com + TAG Online.com + *.taifex.com.tw + TAIFEX.com.tw + *.taiga.io + Taiga.io + *.tailgatersparking.com + Tailgaters Parking.com + *.takecontrolbooks.com + Take Control Ebooks + *.tal.de + tal.de + *.taleo.com + Taleo (partial) + *.taleo.net + Taleo (partial) + *.talkactive.net + Talk Active (partial) + *.talkhealthpartnership.com + NHS (partial) + *.talkingphonebook.com + LocalEdge (partial) + *.talktalk.co.uk + TalkTalk (partial) + *.talktalkbusiness.co.uk + TalkTalk (partial) + *.tamu.edu + Texas A&M University (partial) + *.tango.me + Tango.me (false MCB) + *.tankafetast.com + TankaFetast.com + *.taobao.com + Taobao (partial) + *.tapad.com + Tapad (partial) + *.tape.tv + Tape.tv + *.tapiture.com + Tapiture.com (partial) + *.target.com + Target (partial) + *.targetimg1.com + Target (partial) + *.targetimg2.com + Target (partial) + *.targetimg3.com + Target (partial) + *.tasb.org + Texas Association of Schoolboards + *.taskforce.is + Taskforce.is + *.tau.ac.il + TAU.ac.il (partial) + *.taxpayersalliance.com + TaxPayers' Alliance + *.taz.de + TAZ + *.tbcdn.cn + TbCDN.cn + *.tbray.org + TBray.org + *.tchibo.ch + Tchibo + *.tchibo.com.tr + Tchibo + *.tchibo.cz + Tchibo + *.tchibo.de + Tchibo + *.tchibo.hu + Tchibo + *.tchibo.pl + Tchibo + *.tchibo.sk + Tchibo + *.tchmachines.com + Total Choice Hosting (partial) + *.tcpalm.com + TCPalm.com (partial) + *.tdc.dk + TDC.dk (partial) + *.tdconline.se + TDC online.se + *.tds.net + TDS.net (partial) + *.teachersassurance.co.uk + Teachers Assurance + *.teacupsandtrinkets.co.uk + Teacups and Trinkets.co.uk + *.teamsales.eastbay.com + Eastbay (partial) + *.teamviewer.com + Teamviewer + *.techdirt.com + Techdirt + *.techendo.com + Techendo.com + *.techidiots.net + Techidiots.net + *.technocrat.net + Technocrat.net + *.technologyreview.com + TechnologyReview (partial) + *.technoratimedia.com + Technorati Media (partial) + *.techopedia.com + Techopedia.com + *.techrepublic.com + TechRepublic (partial) + *.techtarget.com + TechTarget (partial) + *.techwebonlineevents.com + TechWeb (partial) + *.tehconnection.eu + Tehconnection + *.tek.no + Tek.no (partial) + *.tekgoblin.com + TekGoblin + *.tekgoblinmedia.com + TekGoblin + *.telegr.am + Telegr.am + *.telegram.com + Telegram.com (partial) + *.telegraph.co.uk + Telegraph Media Group (partial) + *.telekom.com + Deutsche Telekom + *.telemetryverification.net + Telemetry (partial) + *.telerik.com + Telerik.com (partial) + *.telethon.it + Telethon.it (partial) + *.telework.gov.au + Telework.gov.au + *.telex.cc + Telex + *.telfort.nl + Telfort (partial) + *.telia.se + Telia.se + *.temando.com + Temando.com + *.templatemonster.com + Template Monster.com (partial) + *.tenable.com + Tenable.com (partial) + *.tennessee.edu + University of Tennessee System (partial) + *.tent.is + Tent.is + *.tepamine.com + DNA Serum + *.terena.org + Terena.org (partial) + *.terragalleria.com + Terra Galleria + *.terrapass.com + TerraPass (partial) + *.terresoubliees.com + Terres Oubliees.com + *.tersee.com + tersee + *.tesco.com + Tesco (partial) + *.tescoassets.com + Tesco (partial) + *.tescoshareandearn.com + Tesco Share and Earn.com + *.test-ipv6.cz + Test-IPv6.cz (partial) + *.testcloud.de + testCloud.io (partial) + *.testcloud.io + testCloud.io (partial) + *.teststackoverflow.com + Stack Exchange (partial) + *.tetu.com + Tetu + *.texastribune.org + Texas Tribune.org + *.textbooks.com + Textbooks.com + *.tfag.de + Focus.de (partial) + *.tfl.gov.uk + Transport for London (partial) + *.tfsprays.com + TF Sprays.com + *.tgthr.com + tgthr.com + *.thaipicpost.info + thaipicpost.info + *.thankyou.com + ThankYou.com + *.thankyou4caring.org + thankyou4caring.org + *.thcdn.com + TheHut.com (partial) + *.the-dma.org + The-DMA.org (partial) + *.the-group.net + The Group + *.the109.org + The 109 + *.theadex.com + Theadex + *.theappendix.net + The Appendix.net (partial) + *.theatlantic.com + The Atlantic.com (partial) + *.theatlanticcities.com + Atlantic Media (partial) + *.theaustralianalps.wordpress.com + Australian Alps National Parks + *.thebodyshop.co.uk + The Body Shop.co.uk (partial) + *.thebrighttag.com + BrightTag (partial) + *.thechive.com + The Chive.com + *.thecoastnews.com + The Coast News.com + *.thecutestsiteontheblock.com + The Cutest Site on the Block + *.thedailybeast.com + The Daily Beast (partial) + *.thedaywefightback.org + The Day We Fight Back.org + *.thedilbertstore.com + The Dilbert Store.com (false MCB) + *.thedrum.com + The Drum.com (partial) + *.theeca.com + Entertainment Consumer's Association (partial) + *.thefederalistpapers.org + The Federalist Papers.org (false MCB) + *.thefind.com + TheFind + *.thefnf.org + The FNF.org + *.thegazette.co.uk + The Gazette + *.thegcloud.com + The G Cloud.com (partial) + *.thegrommet.com + The Grommet.com + *.theguardian.com + The Guardian (partial) + *.thehackernews.com + Thehackernews.com + *.thehill.com + The Hill.com + *.theiconic.com.au + The Iconic.com (partial) + *.theiet.org + IET (partial) + *.thejournal.ie + TheJournal.ie + *.thejournalnews.com + lohud.com (partial) + *.thenation.com + The Nation + *.thenewsmarket.com + The Newsmarket (partial) + *.thenextweb.com + The Next Web (partial) + *.theoutnet.com + The Outnet + *.thepermitstore.com + ThePermitStore.com + *.thephone.coop + thephone.coop (partial) + *.thepiratebay.org + The Pirate Bay (partial) + *.thepiratebay.se + The Pirate Bay (partial) + *.thepiratebay.sx + Thepiratebay.sx + *.theplatform.com + thePlatform (partial) + *.thepokerchips.net + ThePokerChips.net + *.theresumator.com + TheResumator.com (partial) + *.theserverexpress.com + Server Express (partial) + *.thesexyhouse.com + The Sexy House + *.thesfmarathon.com + The San Francisco Marathon (partial) + *.thesims3.com + Electronic Arts (partial) + *.thespartaninstitute.com + The Spartan Institute (partial) + *.thestar.com + Toronto Star (partial) + *.thestorefront.com + The Storefront.com (partial) + *.thestranger.com + The Stranger.com (partial) + *.thetestcloud.com + testCloud.io (partial) + *.thethemefoundry.com + The Theme Foundry.com (partial) + *.thetimes.co.uk + The Times + *.thewatershed.com + The Watershed + *.thewire.com + The Wire.com (partial) + *.thewordpro.com + The Word Pro + *.thewrap.com + The Wrap (partial) + *.thezaplab.com + The Zap Lab + *.thijsalkema.de + Thijs Alkema.de + *.thing.net + thing.net (partial) + *.thingiverse.com + Thingiverse (partial) + *.thinglink.com + ThingLink (partial) + *.thinkgeek.com + ThinkGeek + *.thinkingchristian.net + Thinking Christian + *.thinksteroids.com + MESO-Rx + *.thinkwithgoogle.com + Think With Google + *.thirdage.com + ThirdAge (partial) + *.this-download-would-be-faster-with-a-premium-account-at-good.net + Good.net + *.thomson.com + Thomson.com (partial) + *.thomsonreuters.com + Thomson Reuters (partial) + *.threadingbuildingblocks.org + Threading Building Blocks + *.threatmetrix.com + ThreatMetrix.com (false MCB) + *.threatpost.com + ThreatPost + *.threema.ch + Threema + *.thumbshots.com + Thumbshots (partial) + *.thumbshots.net + Thumbshots (partial) + *.thumbshots.org + Thumbshots (partial) + *.thunderkick.com + Thunderkick + *.ti.com + Texas Instruments (partial) + *.tibco.com + TIBCO.com (partial) + *.tickertech.com + TickerTech.com + *.ticketcorner.ch + Ticketcorner + *.ticketdriver.com + Ticket Driver + *.ticketmaster.co.uk + Ticketmaster (partial) + *.ticketmaster.com + Ticketmaster (partial) + *.ticketone.it + TicketOne + *.ticketonline.de + Ticket Online + *.tickets.com + Tickets.com (partial) + *.ticketsage.com + TICKETsage + *.ticketsnow.com + TicketsNow (partial) + *.ticketweb.com + Ticketmaster (partial) + *.tictail.com + Tictail.com (partial) + *.tidaltv.com + tidaltv.com (partial) + *.tierra.net + TierraNet (partial) + *.tieto.com + Tieto.com (partial) + *.tiki.org + Tiki.org (partial) + *.tilburguniversity.edu + Tilburg University (partial) + *.time.com + TIME.com (partial) + *.timeclockdeals.com + Time Clock Deals.com + *.timeinc.com + Time Inc (partial) + *.timeinc.net + Time Inc (partial) + *.timesrecordnews.com + Times Record News (partial) + *.timetrade.com + TimeTrade.com + *.timeweb.ru + TimeWeb + *.tineye.com + TinEye (partial) + *.tinfoilsecurity.com + Tinfoil Security.com + *.ting.com + Ting.com + *.tintup.com + Tintup.com + *.tiny.cc + Tiny.cc + *.tinybytes.me + TinyBites + *.tinyletter.com + TinyLetter.com + *.tinypass.com + Tinypass.com (false MCB) + *.tinypng.com + TinyPNG + *.tinyurl.com + TinyURL + *.tipico.de + Tipico.de + *.tiremetroonline.com + Tire Metro + *.tiresnwheels.ca + Tires N' Wheels + *.tiscali.co.uk + TalkTalk (partial) + *.tiscali.it + Tiscali.it (partial) + *.titanpad.com + TitanPad.com + *.titanshare.to + Titanshare.to + *.tizen.org + Tizen.org + *.tjoos.com + Tjoos (partial) + *.tkb.ch + Schweizer Kantonalbanken + *.tldrlegal.com + TLDRLegal.com (partial) + *.tmcdn.org + TMcdn.org + *.tmimgcdn.com + Template Monster.com (partial) + *.tmobile.com + T-Mobile + *.tmocache.com + T-Mobile + *.tmp.com + TMP.com + *.tmpwebeng.com + TMPwebeng.com + *.tms.hrdepartment.com + HRsmart + *.tmt.org + Thirty Meter Telescope (partial) + *.tmz.com + TMZ.com + *.tnnet.fi + TNNet + *.tns-counter.ru + tns-counter.ru + *.tnsinfo.com + TNS Info + *.today.com + Today.com (partial) + *.tog.ie + TOG + *.togevi.com + Ive Got Kids.com (false MCB) + *.tokbox.com + TokBox + *.toolserver.org + Toolserver + *.top.de + top.de + *.topbuy.com.au + TopBuy.com.au + *.topcoder.com + TopCoder + *.topoption.com + TopOption.com (partial) + *.tor2web.com + Tor2Web + *.tor2web.org + Tor2Web + *.torbit.com + Torbit (partial) + *.torlock.com + TorLock.com + *.torproject.org + Tor Project + *.torrentfreak.com + TorrentFreak.com + *.torrentfunk.com + TorrentFunk.com (false MCB) + *.torreycommerce.net + TorreyCommerce.net + *.torservers.net + Torservers + *.totalboox.com + Total Boox + *.totalchoicehosting.com + Total Choice Hosting (partial) + *.totalfanshop.net + Total Fan Shop.net + *.totalhostingplus.com + Total Web Solutions (partial) + *.totalicare.com + Total Eyecare + *.totalinvestor.co.uk + Total Investor + *.totaltravel.com + Yahoo! (partial) + *.totalwebsecure.com + Total Web Solutions (partial) + *.totemapp.com + Totem + *.towelroot.com + towelroot + *.townnews.com + TownNews.com + *.tox.im + Tox.im + *.toyfoundry.net + ToyFoundry (partial) + *.trachtenshop24.de + Trachtenshop24.de + *.trackalyzer.com + Trackalyzer + *.traction-digital.com + Traction-Digital.com (partial) + *.tradedoubler.com + Tradedoubler (partial) + *.tradeking.com + TradeKing.com (partial) + *.trademoremargin.com + TradeMore Margin.com + *.tradenetworks.com + TradeNetworks (partial) + *.tradepub.com + tradepub.com (partial) + *.traffichaus.com + Traffic Haus (partial) + *.trafficholder.com + Traffic Holder (partial) + *.trafficjunky.net + TrafficJunky + *.trafficmaxx.de + trafficmaxx (partial) + *.transifex.com + Transifex (partial) + *.translink.co.uk + Translink + *.transloadit.com + Debuggable (partial) + *.transmarine.org + Trans Marine + *.transmissionbt.com + Transmission (partial) + *.transmode.se + Transmode.se + *.trashmail.net + Trashmail + *.traveldoctor.com.au + Travel Doctor + *.travelingnuker.com + Travelingnuker.com + *.travelnow.com + TravelNow (partial) + *.travelrepublic.co.uk + Travel Republic (partial) + *.travelzoo.com + Travelzoo.com (partial) + *.travis-ci.org + Travis CI + *.travisf.net + Travis F.net + *.treas.gov + U.S. Department of the Treasury (partial) + *.treehousei.com + TreeHouse I.com + *.treehugger.com + TreeHugger.com (partial) + *.trefis.com + Trefis + *.trekaroo.com + Trekaroo (partial) + *.tremendesk.com + Add2Net (partial) + *.tremormedia.com + Tremor Media.com (partial) + *.trendin.com + Trendin.com + *.trendmicro.com + Trend Micro (partial) + *.trendmicro.eu + Trend Micro (partial) + *.trendweight.com + TrendWeight + *.trialpay.com + TrialPay (partial) + *.tribalfusion.com + Tribal Fusion.com (partial) + *.tribalhosting.net + tribalhosting.net + *.tribot.org + TRiBot.org (partial) + *.tricolumbia.org + Tricolumbia.org + *.triggit.com + Triggit.com (partial) + *.triodos.com + Triodos.com + *.triodos.nl + Triodos.nl (partial) + *.tripadvisor.com + TripAdvisor (partial) + *.triphip.com + TripHip + *.tripit.com + TripIt.com + *.tripwire.com + Tripwire.com (false MCB) + *.trisquel.info + Trisquel + *.trkclk.net + trkclk.net + *.tron-delta.org + TRON-DELTA.ORG + *.trove.com + Trove.com (partial) + *.trstatic.com + TechRepublic (partial) + *.truecrypt.ch + TrueCrypt.ch + *.truecrypt.org + Truecrypt (partial) + *.truevault.com + TrueVault.com + *.trulia-cdn.com + trulia-cdn.com + *.trust-guard.com + Trust-Guard.com (partial) + *.trust-it.gr + Trust-IT.gr + *.truste.com + TRUSTe (partial) + *.trustedcomputinggroup.org + Trusted Computing Group + *.trustedmessenger.com + TrustedMessenger.com + *.trustedreviews.com + Trusted Reviews (partial) + *.trusteer.com + Trusteer.com (partial) + *.trustkeeper.net + TrustKeeper + *.trustthevote.org + TrustTheVote.org (partial) + *.trustwave.com + Trustwave (partial) + *.trustycon.org + TrustyCon.org + *.tryprocleanse.com + My Aloe Cleanse.com + *.trysuperbgreencoffee.com + Try Superb Green Coffee.com + *.tsbmag.com + TSB Mag.com + *.tsdd.org + TSDD.org + *.tshaonline.org + TSHA online.org + *.tsl.state.tx.us + Texas State Library and Archives Commission + *.tsmc.com + TSMC.com (partial) + *.tso.co.uk + TSO.co.uk + *.ttxm.co.uk + TalkTalk (partial) + *.tu-berlin.de + Technische Universität Berlin (partial) + *.tu-chemnitz.de + TU-Chemnitz.de (partial) + *.tu-darmstadt.de + TU-Darmstadt.de (partial) + *.tu-dresden.de + TU-Dresden.de (partial) + *.tu-harburg.de + TUHH.de (partial) + *.tu-muenchen.de + Technical University Munich (partial) + *.tube4.me + Tube4.me + *.tubemogul.com + TubeMogul.com (partial) + *.tudelft.nl + Delft University of Technology (partial) + *.tufts.edu + Tufts.edu (partial) + *.tugg.com + Tugg.com (partial) + *.tugraz.at + TUGRaz.at (partial) + *.tuhh.de + TUHH.de (partial) + *.tum.de + Technical University Munich (partial) + *.tumblr.com + Tumblr (partial) + *.tumri.net + Tumri.net + *.tune.pk + Tune.pk + *.tunespeak.com + Tunespeak.com + *.tunisia-sat.com + Tunisia-Sat + *.tunisia-sat.com.tn + Tunisia-Sat + *.tunnelbroker.com + HE Tunnel Broker + *.tunnelbroker.net + HE Tunnel Broker + *.turbosquid.com + TurboSquid (partial) + *.turbotax.com + Intuit (partial) + *.turn.com + Turn.com + *.turner.com + Turner.com (partial) + *.turngs.com + Turn Game Studios + *.turnonsocial.com + Turn On Social + *.turtlebeach.com + Turtlebeach + *.tut.fi + TUT.fi (partial) + *.tutor.com + Tutor.com (partial) + *.tuts4you.com + Tuts 4 You.com + *.tutsplus.com + TutsPlus.com (partial) + *.tuwien.ac.at + Vienna University of Technology (partial) + *.tvlim.com + TVLinks (partial) + *.tvnewscheck.com + TVNewsCheck.com (partial) + *.tvnz.co.nz + TVNZ + *.tvsupport.net + tvsupport.net + *.tvtome.com + TVtome.com (partial) + *.tvtorrents.com + TvTorrents + *.tweakers.net + Tweakers.net + *.tweakimg.net + Tweakers.net + *.tweetriver.com + Mass Relevance + *.twenga.com + Twenga.com (partial) + *.twilio.com + Twilio + *.twimg.com + Twitter + *.twimler.com + Twimler.com + *.twisp.me + twisp.me + *.twistedmatrix.com + TwistedMatrix + *.twitcasting.tv + TwitCasting (partial) + *.twitpic.com + TwitPic + *.twitter.com + Twitter + *.twoseventy.net + Twoseventy.net + *.tyj.fi + Työttömyyskassojen Yhteisjärjestö + *.tyndall.ie + Tyndall.ie + *.tynt.com + Tynt (partial) + *.typecast.com + Typecast.com (partial) + *.typekit.net + Typekit + *.typo3.org + TYPO3 (partial) + *.typography.com + Typography.com (partial) + *.typotheque.com + Typotheque (partial) + *.tzoo-img.com + Travelzoo.com (partial) + *.u-blox.com + U-blox.com + *.u-strasbg.fr + University of Strasbourg (partial) + *.u-tokyo.ac.jp + U-Tokyo.ac.jp (partial) + *.ua.edu + UA.edu (partial) + *.uakron.edu + University of Akron (partial) + *.uber.com + Uber Technologies (partial) + *.uberspace.de + Uberspace + *.ubi.com + Ubisoft Entertainment (partial) + *.ubisoftgroup.com + Ubisoft Group + *.ubm.com + UBM (partial) + *.ubs.com + UBS (partial) + *.ubuntu-art.org + openDesktop.org + *.ubuntu.com + Ubuntu (partial) + *.ubuntuforums.org + Ubuntu Forums.org (false MCB) + *.uc.edu + University of Cincinatti (partial) + *.ucalgary.ca + UCalgary.ca (partial) + *.ucar.edu + UCAR.edu + *.ucc.ie + UCC.ie (partial) + *.ucf.edu + University of Central Florida (partial) + *.uchastings.edu + UC Hastings.edu (partial) + *.uchicago.edu + University of Chicago (partial) + *.uci.edu + University of California (partial) + *.ucla.edu + UCLA.edu (partial) + *.uclan.ac.uk + University of Central Lancashire + *.uclinics.com + uClinics + *.uclouvain.be + Université catholique de Louvain + *.ucm.es + UCM.es (partial) + *.ucsb.edu + University of California (partial) + *.ucsc.edu + University of California, Santa Cruz (partial) + *.ucsd.edu + UCSD + *.ucsf.edu + University of California, San Francisco (partial) + *.uct.ac.za + University of Cape Town (partial) + *.udel.edu + University of Delaware (partial) + *.udmedia.de + UD Media.de + *.ufcfit.com + UFC Fit + *.ufies.org + UFies.org + *.ufl.edu + University of Florida (partial) + *.ugotposted.com + You Got Posted + *.ugr.es + University of Grenada (partial) + *.uh.edu + University of Houston (partial) + *.uhrzeit.org + Uhrzeit.org (partial) + *.ui-portal.de + UI Portal (partial) + *.uicdn.com + UI CDN.com + *.uicdn.net + UI CDN.net + *.uidaho.edu + University of Idaho (partial) + *.uimserv.net + UImserv.net + *.uio.no + University of Oslo + *.uiuc.edu + University of Illinois at Urban-Champaign (partial) + *.uk2.net + UK-2 (partial) + *.ukashcardsatis.com + UkashCardSATIS + *.ukfast.co.uk + UKFast.co.uk (partial) + *.ukfsn.org + UK Free Software Network (partial) + *.uknof.org.uk + UKNOF.org.uk (partial) + *.ukr.net + Ukr.net + *.uksrv.co.uk + uksrv.co.uk + *.ul.ie + UL.ie (partial) + *.ultimatepoker.com + Ultimate Poker + *.ultrafacil.com.br + Ultra Facil.com.br + *.ultranaturelean.com + UltraNature Lean + *.ulule.com + Ulule + *.umaine.edu + University of Maine (partial) + *.umanitoba.ca + University of Manitoba (partial) + *.umass.edu + University of Massachusetts Amherst (partial) + *.umbc.edu + UMBC.edu (partial) + *.umbel.com + Umbel.com + *.umd.edu + University of Maryland (partial) + *.umext.maine.edu + University of Maine (partial) + *.umich.edu + University of Michigan (partial) + *.umii.umass.edu + University of Massachusetts Amherst (partial) + *.umn.edu + University of Minnesota (partial) + *.umonitor.com + uMonitor + *.umu.se + Umeå University (partial) + *.umw.edu + University of Mary Washington (partial) + *.unanimis.co.uk + Unanimis (partial) + *.unbit.it + Unbit.it (partial) + *.unblock-us.com + Unblock-Us.com (partial) + *.unbounce.com + Unbounce (partial) + *.unc.edu + UNC.edu (partial) + *.uncg.edu + University of North Carolina at Greensboro (partial) + *.unhosted.org + Unhosted + *.uni-erlangen.de + University of Erlangen-Nuremberg (partial) + *.uni-goettingen.de + Uni-Goettingen.de (partial) + *.uni-greifswald.de + University of Greifswald (partial) + *.uni-hannover.de + Uni-Hannover.de (partial) + *.uni-karlsruhe.de + Karlsruhe Institute of Technology (partial) + *.uni-kl.de + Uni-Kl.de (partial) + *.uni-mainz.de + University of Mainz (partial) + *.uni-muenchen.de + LM Uni Muenchen + *.uni-passau.de + University of Passau (partial) + *.uni-potsdam.de + University of Potsdam (partial) + *.uni-rostock.de + University of Rostock (partial) + *.uni-saarland.de + Uni-Saarland.de (partial) + *.uni-stuttgart.de + University of Stuttgart (partial) + *.uni-tuebingen.de + University of Tübingen (partial) + *.uni-weimar.de + Bauhaus-University Weimar (partial) + *.uni-wuerzburg.de + Uni-Wuerzburg.de (partial) + *.unibe.ch + University of Bern (partial) + *.unibet.com.au + Unibet Australia + *.unica.com + Unica (partial) + *.unicaondemand.com + Unica (partial) + *.unigine.com + Unigine + *.unileoben.ac.at + Uni Leoben.ac.at (partial) + *.unimi.it + Unimi.it (partial) + *.uninett.no + Uninett (partial) + *.unique-vintage.com + Unique Vintage + *.unister-adservices.com + Unister + *.unistra.fr + University of Strasbourg (partial) + *.unisys.com + Unisys.com (partial) + *.unitednuclear.com + United Nuclear Scientific + *.unitedsafcu.org + United San Antonio Federal Credit Union + *.unity3d.com + Unity (partial) + *.univention.de + Univention.de + *.universalsubtitles.org + Universal Subtitles + *.univie.ac.at + Univie.ac.at (partial) + *.unknowncheats.me + Unknowncheats.me + *.unlimited401k.com + Nabers.com + *.unmultimedia.org + UN Multimedia.org + *.uno.im + Uno.im + *.unoeuro.com + UnoEuro.com (partial) + *.unr.li + unrestrict.li + *.unrealengine.com + Unreal Engine + *.unrestrict.li + unrestrict.li + *.unsw.edu.au + UNSW + *.unt.edu + University of North Texas (partial) + *.unvienna.org + United Nations Office at Vienna (partial) + *.uoregon.edu + UOregon (Partial!) + *.uow.edu.au + University of Wollongong + *.uowplatform.edu.au + University of Wollongong + *.up0.net + Lyris (partial) + *.upatient.com + uPatient + *.upc.edu + Polytechnic University of Catalonia (partial) + *.upc.es + Polytechnic University of Catalonia (partial) + *.upc.nl + UPC + *.upenn.edu + University of Pennsylvania (partial) + *.upforitnetworks.com + Alcuda (partial) + *.upic.me + upic.me (partial) + *.upickem.net + Second Street Media + *.uploading.com + Uploading.com (partial) + *.upr.edu + University of Puerto Rico (partial) + *.uproxy.org + uProxy.org + *.upsploit.com + upSploit.com + *.upstart.com + Upstart + *.uptilo.com + Uptilo + *.upx69.com + upx69.com + *.urbanterror.info + UrbanTerror.info (partial) + *.urbanvilla.nl + Urban Villa.nl + *.urkb.ch + Schweizer Kantonalbanken + *.urx.com + URX.com (partial) + *.us-cert.gov + US-Cert.gov + *.us.hsbc.com + HSBC + *.us2.qualtrics.com + Qualtrics (surveys) + *.usa.gov + USA.gov (partial) + *.usajobs.gov + US government (partial) + *.usalliance.org + USAlliance + *.usatoday.com + USA Today (partial) + *.usbank.com + USBank + *.usbclientadvocacy.com + U.S. Bank Client Advocacy + *.usc.edu + University of Southern California (partial) + *.uscis.gov + U.S. Citizenship and Immigration Services (partial) + *.use-enco.com + Use-Enco.com + *.usenet.nl + Usenet.nl (partial) + *.usenetserver.com + UsenetServer + *.userecho.com + UserEcho (partial) + *.useresponse.com + UseResponse.com (false MCB) + *.userfox.com + userfox + *.userscape.com + UserScape + *.uservoice.com + Uservoice (partial) + *.usf.edu + University of South Florida (partial) + *.usfca.edu + USF CA.edu (partial) + *.usfsp.edu + University of South Florida (partial) + *.usgs.gov + U.S. Geological Survey + *.usmagazine.com + Us Magazine.com (partial) + *.usnautic.com + US Nautic (partial) + *.usni.org + USNI.org (partial) + *.uspirates.org + Pirate Party + *.usplusu.com + UsplusU.com + *.usps.com + USPS + *.uspto.gov + U.S. Patent and Trademark Office (partial) + *.ussco.com + United Stationers (partial) + *.usvisa-info.com + CSC Visa Information Service + *.ut.edu + University of Tampa + *.utdallas.edu + University of Texas at Dallas (partial) + *.utexas.edu + University of Texas at Austin (partial) + *.utk.edu + University of Tennessee, Knoxville + *.utopia.ai + Utopia + *.utoronto.ca + University of Toronto (partial) + *.utorrent.com + µTorrent (partial) + *.utsandiego.com + UTSanDiego.com (partial) + *.utsouthwestern.edu + University of Texas Southwestern Medical Center (partial) + *.utsystem.edu + University of Texas System + *.utwente.nl + UTwente.nl (partial) + *.uu.nl + UU.nl (partial) + *.uu.se + UU.se + *.uvic.ca + UVic.ca (partial) + *.uvm.edu + UVM.edu (partial) + *.uvt.nl + Tilburg University (partial) + *.uw.edu + University of Washington (partial) + *.uwaterloo.ca + University of Waterloo (partial) + *.uwinnipeg.ca + UWinnipeg.ca (partial) + *.v-identity.com + v-identity.com + *.v2cigs.com + V2 Cigs (partial) + *.v2ex.com + v2ex (partial) + *.vacenza.com + vacenza.com (partial) + *.vaforvets.va.gov + US Department of Veterans Affairs + *.vagrantup.com + Vagrantup.com (partial) + *.valleyfirstcu.org + Valley First CU.org + *.valoancaptain.com + VA Loan Captain + *.valtiolle.fi + Valtiolle.fi + *.valueclickmedia.com + ValueClick (partial) + *.valuecommerce.com + ValueCommerce (partial) + *.valuedopinions.co.uk + Valued Opinions + *.valuehost.ru + ValueHost.ru + *.valvesoftware.com + Valve Software.com (partial) + *.vanilladev.com + Vanilla Forums (partial) + *.vanillaforums.com + Vanilla Forums (partial) + *.vanillamastercard.com + VanillaMastercard + *.vanityfair.com + Vanity Fair (partial) + *.vara.nl + Vara.nl (partial) + *.variety.com + Variety.com (partial) + *.varnish-cache.org + Varnish-Cache.org + *.vast.com + Vast (partial) + *.vba.va.gov + US Department of Veterans Affairs + *.vbulletin.com + vBulletin + *.vcint.com + Victor Chandler International + *.vcommerce.com + Vcommerce (partial) + *.vdio.com + Vdio + *.vdopia.com + Vdopia + *.vdoth.com + Vdoth.com + *.vdownloader.com + VDownloader + *.vdqbulbs.com.au + VDQ Bulbs.com + *.veber.co.uk + Veber.co.uk + *.vegasdealhunter.com + Vegas Deal Hunter + *.vegaspartnerlounge.com + Vegas Partner Lounge + *.veinteractive.com + Ve Interactive.com (partial) + *.vektorbank.com + vektorbank.com + *.vendercom.com + Vendercom (partial) + *.vendetta-online.com + Vendetta Online (partial) + *.ventrachicago.com + Ventra Chicago.com + *.veracode.com + Veracode.com + *.verigames.com + Verigames.com + *.verio.com + Verio (partial) + *.verisign.com + VeriSign (partial) + *.verisignlabs.com + Verisign Labs.com (partial) + *.verizon.com + Verizon (partial) + *.verizon.net + Verizon (partial) + *.verizonwireless.com + Verizon Wireless + *.verkkomaksut.fi + Verkkomaksut.fi (partial) + *.versacart.com + VersaCart Systems + *.vertriebsassistent.de + Vertriebsassistent.de (partial) + *.veruta.com + Veruta.com + *.vervehosting.com + Verve Hosting (partial) + *.verzekeringssite.nl + Verzekeringssite.nl (partial) + *.vespermarine.co.nz + Vesper Marine + *.vespermarine.co.uk + Vesper Marine + *.vespermarine.com.au + Vesper Marine + *.vesselbags.com + Vessel + *.vevo.com + VEVO + *.vfemail.net + VFEmail.net + *.vgwort.de + VG WORT (partial) + *.viamichelin.com + ViaMichelin.com (partial) + *.viber.com + Viber (partial) + *.vice.com + Vice (partial) + *.victoriassecret.com + Victoria's Secret (partial) + *.victorinox.com + Victorinox + *.victorops.com + VictorOps.com + *.vid.ly + Vid.ly (partial) + *.vid.me + Vid.me + *.vidahost.com + Vidahost (partial) + *.viddler.com + Viddler.com (partial) + *.video-dean.com + Video Dean + *.videohub.tv + VideoHub.tv (partial) + *.videolan.org + VideoLAN (partial) + *.videotron.com + Videotron.com (partial) + *.vidup.me + Vidup.me (fales MCB) + *.vidyard.com + Vidyard (partial) + *.viedemerde.fr + Beta & Cie (partial) + *.viepratique.fr + Vie Pratique.fr (partial) + *.viewablemedia.net + Visible Measures (partial) + *.viewcentral.com + View Central.com (partial) + *.viewmychart.com + MyChart + *.viglink.com + VigLink + *.vimgs.ru + vsexshop.ru (partial) + *.vindicosuite.com + Vindico suite.com + *.vine.co + Vine.co + *.violetdarkling.com + Violet Darkling.com + *.violetindigo.com.au + Violet Indigo + *.vippy.co + Vippy.co + *.virginaustralia.com + Virgin Australia + *.virginia.edu + University of Virginia (partial) + *.virginmedia.com + Virgin Media.com (partial) + *.virginmobileusa.com + Virgin Mobile + *.virtkick.io + VirtKick.io + *.virtualbox.org + VirtualBox + *.virtualearth.net + virtualearth.net + *.virtualnewscenter.com + Virtual News Center + *.virtualtourist.com + VirtualTourist (partial) + *.visa.com + Visa (partial) + *.visabuxx.com + Visa Buxx.com (partial) + *.visaliatimesdelta.com + Visalia Times-Delta + *.visatovietnam.org + Visa to Vietnam + *.visiblegains.com + VisibleGains.com (partial) + *.visiblemeasures.com + Visible Measures (partial) + *.visibletechnologies.com + Visible Technologies + *.visistat.com + VisiStat.com (partial) + *.visitorboost.com + Awio Web Services (partial) + *.vistech.net + Vistech Communications + *.vistumbler.net + Random Intervals (partial) + *.visualrevenue.com + Visual Revenue (partial) + *.visualwebsiteoptimizer.com + Visual Website Optimizer (partial) + *.vitalcred.com.br + PagPop + *.vitaminshoppe.com + Vitamin Shoppe.com (partial) + *.vk.com + VK (experimental new rule) + *.vk.me + VK (experimental new rule) + *.vk.se + VK.se (partial) + *.vlc-addons.org + openDesktop.org + *.vmware.com + VMware (partial) + *.vo.msecnd.net + msecnd.net (partial) + *.vodafone.de + Vodafone + *.vogel.de + Vogel.de + *.voicedailydeals.com + VOICE Daily Deals + *.voicefive.com + VoiceFive + *.void.gr + Greek-various + *.voipdistributor.net + VoIPDistributor.net + *.volkswagenbank.de + Volkswagen Bank + *.volotea.com + Volotea.com + *.volunteer2.com + Volunteer² (partial) + *.volusion.co.uk + Volusion (partial) + *.volusion.com + Volusion (partial) + *.voo.st + Voost! + *.voodoo.com + Voodoo.com (partial) + *.voodooping.com + Voodoo Ping.com + *.vorpal.io + Vorpal.io + *.vorratsdatenspeicherung.de + AK-Vorrat + *.voscast.com + VosCast.com + *.vox-cdn.com + Vox-CDN.com + *.voxer.com + Voxer (partial) + *.vpn.alaska.edu + University of Alaska (partial) + *.vpnbook.com + vpnbook.com + *.vpnglobe.com + VPNGlobe.com + *.vpnincome.com + in-Disguise.com + *.vpnreactor.com + VPNReactor.com + *.vpnsearch.net + VPNSearch.net + *.vpnservice.ru + VPNService.ru + *.vps.net + VPS.net (partial) + *.vs.ch + Schweizer Regierung + *.vsco.co + VSCo.co + *.vstech.net + Versus Technologies + *.vt.edu + VT.edu (partial) + *.vtcsec.ru + VTCSec.ru + *.vtecdirect.com + VTEC Direct + *.vtiger.com + Vtiger.com + *.vtluug.org + VTLUUG.org + *.vtourist.com + VirtualTourist (partial) + *.vtracy.de + Vtracy + *.vtrenz.net + Silverpop (partial) + *.vtunnel.com + VTunnel + *.vu.nl + VU.nl (partial) + *.vueling.com + Vueling + *.vulture.com + Vulture.com (partial) + *.vumanity.net + Vumanity.net (partial) + *.vungle.com + Vungle.com (false MCB) + *.vuze.com + Vuze + *.vxcdn.com + Verivox (partial) + *.vzaar.com + vzaar (partial) + *.vzw.com + Verizon Wireless + *.w00t.com + Woot (partial) + *.w00tads.com + w00tads.com + *.w3counter.com + W3Counter.com + *.w3roi.com + Awio Web Services (partial) + *.w55c.net + DataXu + *.wachovia.com + Wachovia + *.waeckerlin.org + Waeckerlin.org + *.waffle.io + Waffle.io + *.waikato.ac.nz + University of Waikato (partial) + *.waitrosedirect.com + Waitrose Direct.com (partial) + *.walgreens.com + Walgreens (partial) + *.walkingmen.com + Walking Men + *.wallpapers-today.com + Wallpaperstoday + *.wallst.com + Markit On Demand + *.walmart.com + Walmart.com (partial) + *.walmartimages.com + Walmart images.com + *.wandisco.com + WANdisco.com (partial) + *.wantful.com + Wantful + *.wargaming.net + Wargaming.net + *.warmlyyours.com + WarmlyYours + *.warosu.org + warosu.org + *.warwick.ac.uk + University of Warwick (partial) + *.washington.edu + University of Washington (partial) + *.washingtontimes.com + The Washington Times (partial) + *.washpost.com + Wash Post.com + *.wasilczyk.pl + Wasilczyk.pl + *.water.org + Water.org (partial) + *.watermarquee.com + Water Marquee + *.watershed.co.uk + Watershed + *.wattpad.com + Wattpad.com (partial) + *.wavpin.com + Wavpin + *.wayskinny.com + wayskinny.com + *.wcl.american.edu + American University (partial) + *.wdfiles.com + Wikidot (partial) + *.wdm.org.uk + World Development Movement + *.wdtinc.com + Weather Decision Technologies + *.weatherzone.com.au + Weatherzone (partial) + *.web-hosting.com + web-hosting.com (partial) + *.web-servers.com.au + web-services.com.au + *.web-stat.com + web-stat.com + *.web-stat.net + Web-Stat.net + *.web.com + Web.com (partial) + *.web4u.cz + Web4U + *.webalert.jp + WebAlert.jp + *.webassets.scea.com + Sony (partial) + *.webcamboys.us + WebcamBoys (partial) + *.webcitz.com + WebCitz + *.webcontrolcenter.com + webcontrolcenter.com + *.webdesignmarketing.eu + Web Design Marketing + *.webento.com + Webento + *.webex.com + WebEx Communications + *.webfaction.com + Web Faction + *.webgo24.de + WebGo24.de + *.webhost.biz + Ecommerce (partial) + *.webhost4life.com + WebHost4Life + *.webhostinggeeks.com + Web Hosting Geeks.com + *.webhostingpad.com + Web Hosting Pad (partial) + *.webhostingtalk.com + Web Hosting Talk (partial) + *.webhostlist.de + webhostlist.de + *.webink.com + WebINK.com (partial) + *.webkit.org + Webkit.org + *.webkite.com + WebKite.com (partial) + *.weblogawards.org + Weblog Awards + *.webmail.brenet.de + BreNet (partial) + *.webmail.dotcomhost.com + dotCOM host + *.webmail.nine.ch + Nine + *.webmail.opentransfer.com + Ecommerce (partial) + *.webmail.pair.com + pair Networks (partial) + *.webmail.sk + Swan.sk + *.webmail.uni-weimar.de + Bauhaus-University Weimar (partial) + *.webmail.your-server.de + Hetzner Online + *.webmaker.org + Mozilla Webmaker + *.webmasterplan.com + Webmasterplan.com + *.webmd.com + WebMD (partial) + *.webmdhealth.com + WebMD Health + *.webmdhealthservices.com + WebMD Health Services + *.webmoney.ru + WebMoney (partial) + *.webnium.co.jp + Webnium.co.jp + *.webo.solution.weborama.fr + Weborama (partial) + *.webofknowledge.com + Web of Knowledge + *.weboolu.com + Weboolu (partial) + *.webooluinc.com + Weboolu (partial) + *.weborama.fr + Weborama (partial) + *.webprospector.de + WebProspector (partial) + *.webresint.com + Web Reservations International (partial) + *.webroot.com + Webroot.com (partial) + *.webs.com + Webs (partial) + *.websanity.com + WebSanity + *.websecurify.com + Websecurify.com + *.websense.com + Websense (partial) + *.webshopapp.com + Webshopapp.com + *.webshoprevolution.com + WebShop Revolution + *.websitealive.com + WebsiteAlive (partial) + *.websitegrowers.com + WebsiteGrowers.com + *.websocially.com + WebSocial.ly (partial) + *.webspace4clans.de + Webspace4Clans.de (partial) + *.webspectator.com + WebSpectator.com + *.webstarts.com + WebStarts + *.webstat.com + webstat.com + *.webtimeclock.com + Webtimeclock.com + *.webtracker.jp + Webtracker.jp + *.webtraffic.se + Webtraffic.se (partial) + *.webtraffiq.com + WebtraffIQ.com (partial) + *.webtrekk.net + Webtrekk + *.webtrends.com + Webtrends (partial) + *.webtrendslive.com + Webtrendslive.com + *.webtrust.org + WebTrust (partial) + *.webtype.com + WebType (partial) + *.webxakep.net + WebXakep.Net + *.webxmedia.co.uk + WEBxMedia + *.wechat.com + WeChat (partial) + *.wed.is + Wed.is + *.weebly.com + Weebly (partial) + *.weekplan.net + Week Plan + *.wegohealth.com + Wego Health.com (partial) + *.wegotwax.com + WeGotWax.com + *.weheartit.com + We Heart It + *.weibo.cn + Sina Weibo (partial) + *.weibo.com + Sina Weibo (partial) + *.weissinc.com + Weiss Research + *.well.com + Whole Earth 'Lectronic Link (partial) + *.wellbid.com + wellbid.com + *.wello.com + Wello.com + *.wellsfargo.com + Wells Fargo + *.wemfbox.ch + wemfbox.ch (partial) + *.weneedtoknow.info + We Need to Know.info + *.wennect.info + Wennect.info + *.wepay.com + WePay (partial) + *.wesnoth.org + Battle for Wesnoth (partial) + *.westconsincu.org + Westconsin Credit Union + *.westernunion.com + Western Union (partial) + *.westjet.com + West Jet + *.westlaw.com + Westlaw.com (partial) + *.westlotto.com + Westlotto.com + *.westpac.com.au + Westpac + *.weusecoins.com + WeUseCoins + *.wgcdn.net + Wg cdn.net + *.wgea.gov.au + Workplace Gender Equality Agency + *.what.cd + WhatCD + *.whatbox.ca + Whatbox.ca + *.whatismyip.com + WhatIsMyIP + *.whatsapp.com + WhatsApp.com + *.wheel.sk + Wheel.sk + *.where.com + Where.com + *.where2getit.com + Where 2 Get It (partial) + *.whicdn.com + We Heart It + *.which.co.uk + Which? (partial) + *.which.net + Which? (partial) + *.whirlpool.net.au + Whirlpool + *.whispersystems.org + WhisperSystems (partial) + *.whistleout.com + WhistleOut (partial) + *.whitecatpublications.com + White Cat Publications + *.whitefence.com + WhiteFence.com (partial) + *.whitehatsec.com + WhiteHat Security + *.whitelabel.net + Whitelabel.net + *.whiteout.io + Whiteout.io + *.whitepages.com + Whitepages.com (partial) + *.whmcs.com + WHMCS (partial) + *.wholefoodsmarket.com + Whole Foods Market.com + *.wholeliving.com + Martha Stewart (partial) + *.whoson.com + WhosOn.com (partial) + *.whsmith.co.uk + WHSmith (partial) + *.whyy.org + WHYY.org + *.wi-fi.org + Wi-Fi Alliance + *.widgetbox.com + Widgetbox.com (partial) + *.widgetserver.com + Widgetbox.com (partial) + *.wifidb.net + Random Intervals (partial) + *.wiggle.co.uk + Wiggle (partial) + *.wigle.net + WiGLE + *.wiiings.com + Wiiings.com + *.wikibooks.org + Wikimedia + *.wikicdn.com + Tangient (partial) + *.wikidata.org + Wikimedia + *.wikidot.com + Wikidot (partial) + *.wikifur.com + WikiFur + *.wikileaks.org + WikiLeaks + *.wikimedia.org + Wikimedia + *.wikinews.org + Wikimedia + *.wikinvest.com + Wikinvest + *.wikipedia.org + Wikimedia + *.wikiquote.org + Wikimedia + *.wikisource.org + Wikimedia + *.wikispaces.com + Tangient (partial) + *.wikispooks.com + WikiSpooks + *.wikiversity.org + Wikimedia + *.wikivoyage.org + Wikimedia + *.wiktionary.org + Wikimedia + *.wildapricot.org + Wild Apricot.org + *.wildarchives.com + WildArchives.com + *.wildcardcorp.com + Wildcard Corp.com + *.wildstar-online.com + WildStar online.com + *.wildwestdomains.com + Wild West Domains + *.wiley.com + Wiley (partial) + *.williamhill.com + William Hill (partial) + *.williams.edu + Williams College (partial) + *.willleathergoods.com + Will Leather Goods + *.willowgarage.com + Willow Garage (partial) + *.wimdu.co.uk + Wimdu.co.uk + *.wimm.com + WIMM.com (partial) + *.win-rar.com + WinRAR + *.win-rd.jp + Win-rd.jp + *.windows.com + Windows.com (partial) + *.windowsazure.com + Windows Azure + *.windowsphone.com + Windows Phone (partial) + *.windstream.com + Windstream Communications (partial) + *.wine-apps.org + openDesktop.org + *.wineaustralia.com + Wine Australia Corporation + *.winehq.org + WineHQ (partial) + *.winner.com + Winner.com (partial) + *.wintiewin.com + WinTieWin + *.winzip.com + WinZip.com (false MCB) + *.wired.com + Wired (false MCB, partial) + *.wiredforchange.com + Salsa Labs + *.wiredminds.de + WiredMinds (partial) + *.wireshark.org + Wireshark (partial) + *.wisc.edu + University of Wisconsin-Madison + *.wishabi.ca + Wishabi + *.wishpot.com + Wishpot.com + *.wistia.com + Wistia (partial) + *.withgoogle.com + With Google.com + *.witopia.net + WiTopia.net + *.wix.com + Wix (partial) + *.wizard.ca + Wizard Internet Services (partial) + *.wizbangblog.com + Wizbang + *.wizbangpop.com + Wizbang Pop + *.wlxrs.com + Hotmail / Live + *.wmtransfer.com + WebMoney (partial) + *.wnyc.org + WNYC + *.woahh.com + Woahh + *.wolfram.com + Wolfram.com (partial) + *.wolframalpha.com + Wolfram Alpha (experimental) + *.woltlab.com + WoltLab.com + *.wonderlandmovies.de + Wonderlandmovies + *.wonderwall.com + MSN (partial) + *.woobox.com + Woobox.com (partial) + *.woodgreenshop.org.uk + Wood Green Shop.org.uk + *.woodtreeswing.com + Wood Tree Swings + *.wooga.com + Wooga (partial) + *.woopra.com + Woopra (partial) + *.woot.com + Woot (partial) + *.wordnik.com + Wordnik + *.wordpress.com + WordPress (partial) + *.wordpress.org + WordPress (partial) + *.work4labs.com + Work4 Labs + *.workaround.org + workaround.org + *.world-television.com + World Television + *.worldcat.org + WorldCat + *.worldcitycard.com + World City Card + *.worldcommunitygrid.org + World Community Grid + *.worldfootballextra.com + World Football Extra + *.worldlandscapearchitect.com + World Landscape Architecture + *.worldmate.com + WorldMate.com + *.worldnow.com + WorldNow.com (partial) + *.worldofwarplanes.com + World of Warplanes (partial) + *.worldofwarplanes.eu + World of Warplanes (partial) + *.worldofwarplanes.ru + World of Warplanes (partial) + *.worldpanelinfo.com + Wordpanelinfo + *.worldremit.com + WorldRemit.com + *.worldsecuresystems.com + Adobe Digital Marketing + *.worldwinner.com + Game Show Network (partial) + *.wowanalytics.co.uk + WOW Analytics.co.uk (partial) + *.wowhead.com + Wowhead (partial) + *.wp.com + WordPress (partial) + *.wp.pl + WP.pl (partial) + *.wpdigital.net + WP digital.net (partial) + *.wpengine.com + WP Engine + *.wpimg.pl + WP.pl (partial) + *.wpmudev.org + wpmudev.org + *.wpp.com + WPP + *.wral.com + WRAL.com + *.wrapadviser.co.uk + wrapadviser.co.uk + *.wrzru.com + WRZRU + *.wrzuta.pl + Wrzuta.pl (partial) + *.wservices.ch + wservices.ch + *.wsimg.com + Securepaynet.net + *.wsj.com + News Corporation (partial) + *.wsj.net + News Corporation (partial) + *.wsjeuropesubs.com + News Corporation (partial) + *.wsjsafehouse.com + News Corporation (partial) + *.wsod.com + Markit On Demand + *.wsodcdn.com + Markit On Demand + *.wsws.org + World Socialist Web Site + *.wto.org + WTO.org (partial) + *.wuala.com + wuala + *.wufoo.com + Wufoo + *.wunderkraut.fi + Wunderkraut.fi + *.wunderloop.net + AudienceScience + *.wush.net + Wush.Net + *.wustl.edu + Washington University in St. Louis (partial) + *.wvu.edu + West Virginia University (partial) + *.wwte1.com + WWTE (partial) + *.wwte10.com + WWTE (partial) + *.wwte7.com + WWTE (partial) + *.www.aa.com + American Airlines + *.www.bluestatedigital.com + Blue State Digital (partial) + *.www.budgetinsurance.com + Budget Insurance + *.www.cadsoft.de + CadSoft + *.www.cert.pl + CERT Polska + *.www.cfda.gov + Catalog of Domestic Federal Assistance + *.www.champssports.com + Champs Sports (partial) + *.www.chatwithourteam.com + InMotion Hosting + *.www.checkdomain.de + Checkdomain + *.www.city.ac.uk + City University London + *.www.cloudhexa.com + Cloudhexa Network + *.www.coindl.com + CoinDL + *.www.cta-observatory.org + Cherenkov Telescope Array + *.www.delicious.com + Delicious + *.www.dialdirect.co.uk + Dial Direct + *.www.eastbay.com + Eastbay (partial) + *.www.elsevier.com + Elsevier (mixedcontent) + *.www.enjin.com + Enjin + *.www.erowid.org + Erowid + *.www.familychristian.com + Family Christian Stores + *.www.fbo.gov + Federal Business Opportunities + *.www.filmthreat.com + Film Threat + *.www.final-score.com + Final-Score + *.www.fishwrapper.com + Fishwrapper.com (false MCB) + *.www.footaction.com + Footaction USA + *.www.footlocker.com + Foot Locker (partial) + *.www.forbesmagazine.com + Forbes Magazine + *.www.freelancer.co.uk + Freelancer + *.www.freelancer.com + Freelancer + *.www.fujitsu-webmart.com + Fujitsu (partial) + *.www.gigaserver.cz + Gigaserver (partial) + *.www.globalmarinenet.com + Global Marine Networks (partial) + *.www.grassroots.org + Grassroots.org (partial) + *.www.greenpolkadotbox.com + Green PolkaDot Box + *.www.insightmgr.com + Digitaria (partial) + *.www.ionaudio.com + ION Audio + *.www.isocket.com + isocket (partial) + *.www.justice.gov.uk + Ministry of Justice + *.www.kidsfootlocker.com + Kids Foot Locker + *.www.ladyfootlocker.com + Lady Foot Locker + *.www.laynepublications.com + Layne Publications + *.www.linutronix.de + linutronix + *.www.loopia.se + Loopia + *.www.lumiblade-shop.com + Lumiblade + *.www.maxymiser.com + Maxymiser (partial) + *.www.money.pl + Money.pl (false MCB) + *.www.mozdev.org + Mozdev (partial) + *.www.namecheap.com + NameCheap + *.www.nicennaughty.co.uk + Nice 'n' Naughty + *.www.o2.cz + Telefónica (partial) + *.www.odcdn.com + Office Depot (partial) + *.www.poppysports.com + Poppy Sports + *.www.rmcybernetics.com + Research Media & Cybernetics + *.www.rnengage.com + RightNow Technologies (partial) + *.www.salford.ac.uk + University of Salford (partial) + *.www.shopmanhattanite.com + Manhattanite + *.www.sigfig.com + SigFig + *.www.spoki.lv + Spoki + *.www.starwoodhotels.com + Starwood Hotels & Resorts + *.www.streetmoda.com + Street Moda (partial) + *.www.sunglasswarehouse.com + Sunglass Warehouse + *.www.superdrug.com + Superdrug (partial) + *.www.terragalleria.com + Terra Galleria + *.www.testequipmentdepot.com + Test Equipment Depot + *.www.textbooks.com + Textbooks.com + *.www.ubs.com + UBS (partial) + *.www.vispashop.com + Vispa (partial) + *.www.wickedlasers.com + Wicked Lasers + *.www.wikinvest.com + Wikinvest + *.www.winhistory-forum.net + Winhistory Forum + *.www.xt-commerce.com + xt:Commerce (partial) + *.www.zdtronic.com + ZDTronic + *.wyndham.com + Wyndham (partial) + *.wyndhamvrap.com + Wyndham (partial) + *.wz2100.net + Warzone2100 (CAcert) + *.x-info.org + x-info.org + *.x10hosting.com + x10Hosting (partial) + *.xamarin.com + Xamarin.com (partial) + *.xbetsport.com + 1xbet.com + *.xbox.com + Xbox (partial) + *.xda-developers.com + XDA Developers (partial) + *.xe.com + XE (partial) + *.xelerance.com + Xelerence.com + *.xenogamers.org + Xeno Gamers.org + *.xeu.com + XEU.com (partial) + *.xfce-help.org + openDesktop.org + *.xfce-look.org + openDesktop.org + *.xfce.org + XFCE (partial) + *.xfire.com + Xfire (partial) + *.xg4ken.com + xg4ken.com + *.xignite.com + Xignite (partial) + *.xilo.net + XILO Communications (partial) + *.xing.com + Xing + *.xiph.org + Xiph.org + *.xiti.com + XiTi.com (partial) + *.xkcd.com + xkcd + *.xkcd.org + xkcd + *.xm.com + XM.com + *.xmarks.com + Xmarks + *.xmission.com + XMission (partial) + *.xmms2.org + XMMS2.org + *.xmpp.net + XMPP.net + *.xmpp.org + XMPP.org (partial) + *.xo.com + XO Communications (partial) + *.xparkmedia.com + Xparkmedia.com + *.xpiconly.com + XPic only + *.xplosion.de + xplosion interactive + *.xplr.com + Xplr + *.xramp.com + Trustwave (partial) + *.xrel.to + xREL.to (partial) + *.xs4all.nl + XS4ALL (partial) + *.xsolla.com + Xsolla (partial) + *.xtgem.com + XtGem.com (partial) + *.xtwo.ne.jp + Xtwo.ne.jp (partial) + *.xxxbunker.com + xxxbunker.com (partial) + *.xyratex.com + Xyratex.com (partial) + *.ya.ru + Yandex + *.yabumi.cc + Yabumi.cc + *.yadro.ru + Yadro.ru (partial) + *.yagina.com + Yagina.com + *.yahoo.co.jp + Yahoo! Japan (partial) + *.yahoo.com + Yahoo! (partial) + *.yahoo.net + Yahoo.net (partial) + *.yahooapis.com + Yahoo APIs (partial) + *.yahoofs.com + Yahoo! (partial) + *.yammer.com + Yammer + *.yandex.net + Yandex + *.yandex.ru + Yandex + *.yannick.net + Yannick.net + *.ycombinator.com + HackerNews + *.yed24hr.com + yed24hr.com + *.yellowbot.com + YellowBot.com (partial) + *.yellowpagesoptout.com + Yellow Pages IMA (partial) + *.yelp.com + Yelp (partial) + *.yemeksepeti.com + Yemeksepeti + *.yespic69.com + yespic69.com + *.yfrog.com + yfrog + *.ygnition.com + Ygnition (partial) + *.yieldlab.net + Yieldlab.net + *.yieldmanager.com + Right Media + *.yieldmanager.net + Right Media + *.yify-torrents.com + YIFY Torrents + *.yify-torrents.im + YIFY Torrents + *.yimg.com + Yimg.com (partial) + *.yimg.jp + Yahoo! Japan (partial) + *.ymcastlouis.org + YMCA of Greater St. Louis + *.yoctoproject.org + Yocto Project.org (partial) + *.yoox.biz + Yoox.biz + *.yopto.com + Yopto.com (partial) + *.yottaa.com + Yottaa (partial) + *.yottaa.net + Yottaa.net (partial) + *.youm7.com + Youm7.com (false MCB) + *.younited.com + younited.com (partial) + *.your-server.de + Hetzner Online + *.yourbittorrent.com + YourBittorrent + *.yourdatelink.com + Your Date Link + *.yourfone.de + yourfone.de + *.yourhosting.nl + Yourhosting + *.yourlocaledge.com + Your Local Edge.com + *.yourmoney.ch + Schweizer Kantonalbanken + *.youtube.com + YouTube + *.youversion.com + YouVersion + *.ypbot.net + YP bot.net (partial) + *.ytimg.com + YouTube + *.yuku.com + Yuku (partial) + *.zacks.com + Zacks Investment Research (partial) + *.zadarastorage.com + Zadara Storage (partial) + *.zaehlwerk.net + zaehlwerk.net + *.zamimg.com + Wowhead (partial) + *.zamzar.com + Zamzar.com (partial) + *.zanesvilletimesrecorder.com + Zanesville Times Recorder + *.zanox.com + Zanox (partial) + *.zapato.ru + Sapato (partial) + *.zappos.com + Zappos (partial) + *.zaption.com + Zaption + *.zapunited.com + zapunited (partial) + *.zareason.com + Zareason.com + *.zarkzork.com + Zark Zork.com + *.zassets.com + Zappos (partial) + *.zataz.com + Zataz (partial) + *.zcache.com + Zazzle (partial) + *.zcomm.org + ZComm.org + *.zdassets.com + Zendesk (partial) + *.zdbb.net + Ziff Davis (partial) + *.zdnet.com.au + ZDNet (partial) + *.zedo.com + Zedo (partial) + *.zeedpic69.com + zeedpic69.com + *.zeiss.com + Carl Zeiss (partial) + *.zeit.de + Zeit.de (partial) + *.zemanta.com + Zemanta (partial) + *.zen.co.uk + Zen Internet (partial) + *.zencdn.net + Zencoder (partial) + *.zencoder.com + Zencoder (partial) + *.zend.com + Zend (partial) + *.zendesk.com + Zendesk (partial) + *.zendition.net + Zendition.net + *.zendylabs.com + Zendy Labs + *.zenfolio.com + Zenfolio (partial) + *.zenfs.com + Yahoo! (partial) + *.zentyal.org + Zentyal.org (partial) + *.zeringo.com + Zeringo + *.zerista.com + Zerista (partial) + *.zeroblock.com + ZeroBlock.com + *.zerorobotics.org + Zero Robotics + *.zeroxx.nl + ZeroXX + *.zerve.com + Zerve + *.zerzar.com + Zerzar + *.zetetic.net + Zetetic.net + *.zh.ch + Schweizer Regierung + *.ziggo.com + Ziggo + *.ziggo.nl + Ziggo + *.zillow.com + Zillow (partial) + *.zimbra.com + Zimbra (false MCB) + *.zipcar.com + Zipcar + *.zipcloud.com + Just Develop It (partial) + *.zissousecure.com + zissousecure.com + *.zkb.ch + Schweizer Kantonalbanken + *.zmanda.com + Zmanda (partial) + *.znaturalfoods.com + Z Natural Foods.com + *.zoho.com + Zoho (partial) + *.zoho.jp + Zoho.jp (partial) + *.zohostatic.com + Zoho (partial) + *.zomato.com + Zomato.com + *.zone-h.org + Zone-H.org + *.zoner.fi + Zoner.fi + *.zonza.tv + ZONZA + *.zooku.ro + Zooku + *.zoomerang.com + Zoomerang + *.zopim.com + Zopim + *.zorpia.com + Zorpia (false MCB) + *.zorrovpn.com + ZorroVPN.com + *.zotero.org + Zotero + *.zpcdn.com + Zorpia (false MCB) + *.zpchips.com + ZPChips.com + *.zsl.org + Zoological Society of London (partial) + *.ztunnel.com + ZTunnel + *.zugaina.org + Zugaina (partial) + *.zugerkb.ch + Schweizer Kantonalbanken + *.zuhah.com + Zuhah.com + *.zumzi.md + Zumzi (partial) + *.zumzi.ro + Zumzi (partial) + *.zuse-crew.de + Zuse-Crew.de + *.zylom.com + Zylom.com (partial) + *.zynga.com + Zynga (partial) + *.zzounds.com + zZounds.com + 00f.net + 00f.net + 01.org + 01.org + 0xbadc0de.be + 0xbadc0de.be (partial) + 1.*.wdfiles.com + Wikidot (partial) + 1.usa.gov + bit.ly vanity domains + 100-gute-gruende.de + 100-gute-gruende.de + 101.taobao.com + Taobao.com (false MCB) + 109.201.146.247 + xxxbunker.com (partial) + 10gen.com + 10gen + 10minutemail.com + 10 Minute Mail.com (false MCB) + 1177.se + 1177.se + 11888.ote.gr + OTE + 11footballclub.com + 11footballclub + 12.191.21.228 + Collegiate Peaks Bank + 123-reg.co.uk + 123-reg + 123count.com + 123Count.com + 123ehost.com + 123eHost.com + 123rf.com + 123RF + 123systems.net + 123systems + 12mars.rsf.org + RSF.org (false MCB) + 12wbt.com + Michelle Bridges 12 Week Body Transformation (partial) + 131002.net + 131002.net + 16personalities.com + 16personalities.com + 17track.net + 17track.net + 1984.is + 1984.is + 1984hosting.com + 1984.is + 1and1.ca + 1&1 Internet + 1and1.co.uk + 1&1 Internet + 1and1.com + 1&1 Internet + 1c-bitrix.ru + 1c-bitrix.ru (partial) + 1cart.co.nz + 1Cart + 1cart.com + 1Cart + 1deg.org + 1 Deg.org + 1f0.de + 1f0.de (partial) + 1in3campaign.org + One in 3 Campaign + 1lotstp.com + 1LotSTP.com + 1nightstandstory.com + 1NightStandStory + 1phads.com + 1phads.com + 1pipfix.com + 1PipFix + 1sand0s.nl + 1s and 0s.nl + 1stwarning.com + Net Applications + 1tw.org + bit.ly vanity domains + 1ty.me + 1ty.me + 1und1.de + 1und1.de (partial) + 1wt.eu + 1WT.eu (partial) + 1x.com + 1X + 1xbet.com + 1xbet.com + 2.*.wdfiles.com + Wikidot (partial) + 2.standaardcdn.be + Standaard.be (partial) + 2012.guadec.org + GPUL.org (partial) + 2020mobile.es + 2020mobile + 208.68.106.8 + LFC Hosting + 21centuryrims.com + 21 Century Rims + 23andme.com + 23andMe.com + 23systems.net + 23Systems + 247filmz.com + 247filmz + 256.com + 256.com + 2912a.v.fwmrm.net + FreeWheel (partial) + 2ch.cm + 2ch.cm + 2ch.hk + 2ch.hk + 2checkout.com + 2Checkout (partial) + 2dialog.com + 2Dialog.com (partial) + 2kgames.com + 2K Games (partial) + 2ksports.com + 2K Sports + 2ndvote.com + 2nd Vote.com + 2pay.ru + Xsolla (partial) + 2pipfixed.com + 2PipFixed (false MCB) + 2roads.com + Two Roads + 3.*.wdfiles.com + Wikidot (partial) + 30boxes.com + 30 Boxes.com + 316space.com + BlueHost clients + 316space.harralmedia.com + BlueHost clients + 32red.com + 32Red Online Casino + 33across.com + 33Across (partial) + 350zevolution.com + 350zEvolution.com + 360cities.net + 360Cities (partial) + 360yield.com + 360 Yield + 365tickets.co.uk + 365 Tickets.co.uk + 365tickets.com + 365 Tickets.com + 365ticketscentral.com + 365 Tickets Central.com + 365ticketsscotland.com + 365 Tickets Scotland.com + 37signals.com + 37Signals + 38.de + 38.de + 39dollarglasses.com + 39dollarglasses.com + 3bbwifi.com + 3bbwifi.com + 3d88duefqgf2d7l2p18hja4194m.wpengine.netdna-cdn.com + Livefyre (partial) + 3dcenter.org + 3dcenter + 3ds.com + Dassault Systèmes (partial) + 3dstats.com + 3DStats + 3fm.nl + 3FM + 3m.com + 3M.com (partial) + 3news.co.nz + 3 News + 3questionsgetthegirl.com + Vin DiCarlo (partial) + 3scale.net + 3scale + 3taps.com + 3taps + 4.*.wdfiles.com + Wikidot (partial) + 451research.com + 451 Group + 46.255.160.240 + Kat de Paris + 4cdn.org + 4chan (partial) + 4chan-ads.org + 4chan (partial) + 4chan.org + 4chan (partial) + 4channel.org + 4chan (partial) + 4gamer.net + 4gamer.net (partial) + 4gifs.com + forgifs.com + 4mn.ca + bit.ly vanity domains + 4plebs.org + 4plebs.org + 4qinvite.4q.iperceptions.com + iPerceptions (partial) + 4runnerforex.com + 4RunnerForex.com + 4rx.com + 4RX.com + 4sevens.com + 4sevens + 4shared.com + 4Shared (experimental) + 4tulemar.com + 4Tulemar + 5.*.wdfiles.com + Wikidot (partial) + 500px.com + 500px.com (partial) + 512pixels.net + 512 Pixels + 53.com + Fifth Third Bank + 5apps.com + Appache (partial) + 5july.org + 5 July.org + 5min.com + 5min (partial) + 5vpn.net + 5vpn.net + 6.*.wdfiles.com + Wikidot (partial) + 65.181.183.157 + Dorian Color + 65.98.18.218 + The Nation + 6xq.net + 6xq.net (CAcert) + 7.*.wdfiles.com + Wikidot (partial) + 74.86.17.250 + Lithium + 759425240.r.cdn77.net + xxxbunker.com (partial) + 76.9.16.34 + Traffic Holder (partial) + 77777i.com + 77777i.com + 7chan.org + 7chan + 7digital.com + 7digital (partial) + 7eer.net + Impact Radius + 7springs.com + 7 Springs.com + 8.*.wdfiles.com + Wikidot (partial) + 80spurple.com + 80s Purple.com + 88.208.232.88 + British Gas (partial) + 888173.net + 888173.net (partial) + 888voip.com + 888VoIP.com + 8tracks.com + 8tracks + 8win88win.com + 8win88win.com + 9.*.wdfiles.com + Wikidot (partial) + 918autoloans.com + 918autoloans.com + 972mag.com + 972 Mag.com (partial) + 99.se + 99.se + 9gag.com + 9gag (partial) + 9seeds.com + 9seeds (partial) + Avanza.se + Avanza.se + a-ads.com + a-ads.com + a.abcnews.com + ABC News (partial) + a.abcnews.go.com + ABC News (partial) + a.adrolays.de + adrolays (partial) + a.dilcdn.com + Dilcdn.com + a.dyndns.com + Dyn (partial) + a.ichiba.jp.rakuten-static.com + Rakuten.co.jp (partial) + a.intentmedia.net + intentmedia.net (partial) + a.orkut.gmodules.com + Orkut (partial) + a.pgtb.me + MediaMind (partial) + a.tcimg.net + TC img.net + a.ucsd.edu + UCSD + a0.webproxy.nic.tel + Telnic + a1.net + A1 Telekom Austria + a1000words.com + A 1000 Words.com + a14electronics.com + A14 Electronics.com + a15.ysicdo002.com + YouSendIt + a1608.g.akamai.net + MovieTickets.com + a16z.com + A16z.com + a1afastcash.com + A1A Fast Cash + a1community.net + A1 Telekom Austria + a1webstats.com + A1WebStats.com (partial) + a21.tv + bit.ly vanity domains + a248.e.akamai.net + GO.com (partial) + a248.g.akamai.net + Dotomi (partial) + a2e.de + a2e.de + a2hosting.com + A2 Hosting (partial) + a3li.li + a3li + a4.ucsd.edu + UCSD + a772.g.akamai.net + Apple.com (partial) + a9.g.akamai.net + Radio Free Asia (partial) + aa.com + American Airlines + aaai.org + Aaai.org + aacqa.gov.au + Australian Aged Care Quality Agency + aaenhunze.nl + NL Overheid + aai-logon.fhnw.ch + FHNW.ch (partial) + aamc.org + AAMC.org + aan.com + American Academy of Neurology (partial) + aans.org + American Association of Neurological Surgeons + aaronbrotherscircular.com + Aaron Brothers + aaronparecki.com + Aaronparecki.com + aartdevos.dk + Aart de Vos (partial) + aas.org + AAS.org (partial) + aaspring.com + aaspring.com + aat-net.de + All American Trains + ab9il.net + AB9IL.net + abacus.com + Abacus.com (partial) + abbo-shop.ch + Abbo-shop.ch + abbott.com + Abbott Laboratories + abccommercial.com + ABC Online (partial) + abclinuxu.cz + AbcLinuxu + abcm.ch + Bolo's Computer Museum + abcnews.go.com + ABC News (partial) + abdn.ac.uk + Abdn.ac.uk (partial) + abebooks.co.uk + AbeBooks + abebooks.com + AbeBooks + aber.ac.uk + Aberystwyth University (partial) + aberdeencity.gov.uk + UK Local Government + aberdeenshire.gov.uk + UK Local Government + abestweb.com + ABestWeb.com + abiggersociety.com + A Bigger Society.com + abiliba.net + Abiliba + abine.com + Abine + abiresearch.com + ABI Research + ablegamers.com + AbleGamers + abnamro.nl + ABN AMRO Bank + abosgratis.de + Abosgratis.de + about.me + AboutMe + aboutads.info + About Ads (partial) + aboutairportparking.com + Oversee.net (partial) + aboutthedata.com + About the Data.com + above.com + Above.com (partial) + abovealloffers.com + All Above Offers + abr.gov.au + Australian Business Register + abusix.com + abusix.com + abysmal.nl + abysmal.nl + academics.de + academics.de + academy.frieslandcampina.com + Campina (partial) + academycreditonline.com + Academy Credit online.com + accan.org.au + ACCAN + accc.gov.au + Australian Competition and Consumer Commission + accelacomm.com + Accela Communications (partial) + accelaworks.com + Accela Communications (partial) + accellion.com + Accellion + access-kaiseki-tools.com + access-kaiseki-tools.com + accessguardian.com + AccessGuardian.com + accessibility.nl + Accessibility.nl + accesslabs.net + AccessLabs + accesslabs.org + AccessLabs + accesslink.ucsd.edu + UCSD + accessnow.org + AccessNow.org + accessofficeproducts.com + Access Office Products + accessprivacy.ca + AccessPrivacy.ca + accessprivacy.com + Access Privacy.com + accesstojustice.gov.au + Access to Justice + accordancebible.com + Accordance Bible.com (partial) + account.3playmedia.com + 3Play Media (partial) + account.dyn.com + Dyn (partial) + account.jamplay.com + JamPlay + account.level3.com + Level 3.com (partial) + account.mypostoffice.co.uk + Post Office (partial) + account.nasuni.com + Nasuni.com (partial) + account.netflix.com + Netflix (partial) + account.radiusnetworks.com + Radius Networks.com (partial) + account3000.com + account3000.com + accountchooser.com + Account Chooser + accountonline.com + Account Online.com + accounts.bizo.com + Bizo + accounts.google.* + Google Services + accounts.google.co.* + Google Services + accounts.google.com.* + Google Services + accounts.icharts.net + iCharts (partial) + accountservices.microsoftonline-p.net + Microsoft Online Services (partial) + accountsupport.com + AccountSupport.com + accuvant.com + Accuvant.com + acdn.stsdb.com + STSDB.com (partial) + ace-analyzer.com + ace-analyzer.com + ace-host.net + Acenet (partial) + acehotel.com + Ace Hotel.com (partial) + acenet-inc.net + Acenet (partial) + acikakademi.com + Acik Akademi.com + aclj.org + American Center for Law and Justice (partial) + acls.org + ACLS.org + aclu-nj.org + ACLU of New Jersey (partial) + aclu-sc.org + ACLU of Southern California + aclu-wa.org + ACLU of Washington + aclu.org + ACLU + aclum.org + ACLU of Massachusetts + aclunc.org + ACLU of Northern California + acluofnc.org + ACLU of North Carolina + acluofnorthcarolina.org + ACLU of North Carolina + aclutx.org + ACLU of Texas + acluva.org + ACLU of Virginia + acm.org + ACM.org (partial) + acms.ucsd.edu + UCSD + acorns.com + Acorns.com (partial) + acoustics.org + Acoustics.org + acoustid.org + AcoustID + acpa.ca + Air Canada Pilot's Association (partial) + acpica.org + ACPICA.org + acquia.com + Acquia + acr.org + American College of Radiology (partial) + acromediainc.com + Acro Media (partial) + acronis.com + Acronis.com (partial) + acs-webmail.ucsd.edu + UCSD + acs.org + American Chemical Society (partial) + acs.ucsd.edu + UCSD + act.demandprogress.org + Act.demandprogress.org + act.ucsd.edu + UCSD + actblue.com + ActBlue (partial) + actel.com + Actel.com + action-intell.com + Action Intell + actionallocator.com + actionallocator.com + actionsalvage.com + Action Auto Wreckers + active-srv02.de + active-srv02.de + active.com + Active.com (partial) + activemelody.com + Active Melody + activemq.apache.org + Apache.org (false MCB) + activestate.com + ActiveState Software (partial) + activestatic.net + Active.com (partial) + actonsoftware.com + Act-On Software (partial) + acuityplatform.com + Acuity platform.com + acunetix.com + Acunetix.com + ad-juster.com + Ad-Juster (partial) + ad.adorika.com + Right Media + ad.afy11.net + Adify + ad.aim4media.com + Aim4Media.com (partial) + ad.exelate.com + eXelate + ad.ghfusion.com + GameHouse + ad.harrenmedianetwork.com + harrenmedianetwork.com + ad.himediadx.com + himediadx.com + ad.netcommunities.com + Net Communities (partial) + ad.reachlocal.com + ReachLocal.com (partial) + ad.targetingmarketplace.com + AudienceScience + ad.xtendmedia.com + xtendmedia.com + ad.z5x.net + DSNR Media Group (partial) + ada.edu.au + Australian Data Archive + ada.lt + ada.lt (partial) + adacore.com + AdaCore + adadvisor.net + TARGUSinfo + adafruit.com + AdaFruit + adage.com + Crain Communications (partial) + adamboalt.wpengine.netdna-cdn.com + BOALT + adap.tv + Adap.TV + adaptec.com + Adaptec.com (partial) + adaptivecomputing.com + Adaptive Computing + adblade.com + Adblade (partial) + adblockplus.org + AdblockPlus + adbrite.com + AdBrite (partial) + adbusters.org + Adbusters.org + adbutler.com + AdBulter + adbuyer.com + adbuyer.com + adcash.com + Adcash + adda-sr.org + Attention Deficit Disorders Association - Southern Region + addbooks.se + AddBooks.se + addictech.com + Addictech + addictionhelpchat.com + Addiction Help + addison.com.hk + Addison.com.hk (partial) + addisonlee.com + Addison Lee + addons.videolan.org + openDesktop.org + addthis.com + AddThis (partial) + addtoany.com + AddToAny + adeccowaytowork.com + Adecco Way to Work + adelaide.edu.au + Adelaide.edu.au (partial) + adentifi.com + adentifi.com + adform.com + Adform + adfs.sandvine.com + Sandvine (partial) + adigital.org + adigital (partial) + adindex.de + ADindex + adingo.jp + adingo (partial) + adisc.org + ADISC.org + adium.im + Adium.im + adjug.com + AdJug.com (partial) + adk2.com + adk2 (partial) + adk2cdn.cpmrocket.com + CPM Rocket.com (partial) + adlibris.com + Adlibris/Capris + adman.otenet.gr + OTE + admatic.com.br + Admatic + admatrix.jp + AdMatrix.jp + admeld.com + Admeld + admin.clarahost.co.uk + Claranet (partial) + admin.closerware.net + Closerware (partial) + admin.exmasters.com + Exmasters.com (partial) + admin.groupcommerce.com + Group Commerce (partial) + admin.hosts.co.uk + Hosts + admin.kapsi.fi + Kapsi.fi (very partial) + admin.lautre.net + Lautre.net admin and webmail area + admin.names.co.uk + Names + admin.noxa.de + noxa.de + admin.omgpm.com + Post.ch + admin.starproductreviews.com + Star Product Reviews (partial) + admin.tagman.com + TagMan (partial) + admin.theatlanticwire.com + Atlantic Media (partial) + adminmedia.spontex.org + Spontex.org + admission.com + Ticketmaster (partial) + admob.com + AdMob (partial) + admtl.com + Aéroports de Montréal + adnxs.com + AppNexus (partial) + adobe.com + Adobe + adobeconnect.com + Adobe Connect + adobelogin.com + Adobe login.com + adoyacademy.se + Adoyacademy.se + adp.com + Automatic Data Processing (partial) + adpe.csod.com + Automatic Data Processing (partial) + adpeepshosted.com + Ad Peeps hosted.com + adperfect.com + AdPerfect (partial) + adperio.com + Adperio.com + adpselect.com + ADP Screening and Selection Services + adriver.ru + AdRiver + adroll.com + AdRoll (partial) + ads-creativesyndicator.com + CreativeSyndicator + ads.ad-center.com + Ad-Center.com (partial) + ads.afraccess.com + Fairfax Digital (partial) + ads.audienceamplify.com + Audience Amplify.com (partial) + ads.bluelithium.com + Right Media + ads.chango.ca + Chango + ads.creative-serving.com + creative-serving.com (partial) + ads.flatdy.com + Florida Today (partial) + ads.glispa.com + glispa.com + ads.horyzon-media.com + Horyzon Media (partial) + ads.ibibo.com + ibibo.com (partial) + ads.ign.com + IGN (partial) + ads.integral-marketing.com + Integral-Marketing.com (partial) + ads.networkhm.com + networkhm.com + ads.neudesicmediagroup.com + Neudesic Media Group (partial) + ads.okcimg.com + OkCupid (partial) + ads.shareth.ru + Sharethrough (partial) + ads.undertone.com + Undertone (partial) + ads.vidstore.com + VidStore (partial) + ads2.zeusclicks.com + ZeusClicks.com (partial) + adsafecontrol.com + AdSafe (partial) + adscale.de + adscale + adscendmedia.com + Adscend Media + adserver.adreactor.com + AdReactor (partial) + adserver.iminent.com + Iminent.com (partial) + adsimilis.com + Adsimilis + adsonar.com + AOL Advertising + adspeed.biz + AdSpeed (partial) + adspeed.com + AdSpeed (partial) + adspeed.net + AdSpeed (partial) + adultcineporn.com + adultcineporn.com + adultfriendfinder.com + Adult FriendFinder (partial) + adultswim.com + Adult Swim + adulttoys4u.com.au + Adult Toys 4 U.com + advantagemedia.com + Advantage Business Media + advantageseoservices.com + Advantage + advertiser.adknowledge.com + Adknowledge (partial) + adverts.adgenie.co.uk + Adgenie.co.uk (partial) + adverts.ie + Adverts.ie + advertserve.com + AdvertServe.com + adviceguide.org.uk + Adviceguide (partial) + adwords.google.* + Google Services + adwords.google.co.* + Google Services + adwords.google.com.* + Google Services + adxpansion.com + AdXpansion.com (partial) + adyadvantage.com + Ady Advantage.com (partial) + aea.se + Aea.se + aedc.gov.au + Australian Early Development Census + aegee-enschede.nl + AEGEE-Enschede.nl (partial) + aei.gov.au + Australian Education International + aemi.edu.au + Australian Emergency Management Institute + aeolusproject.org + Aeolus + aer.gov.au + Australian Energy Regulator + aera.at + Aera.net + aereo.com + Aereo.com (partial) + aeriagames.com + Aeriagames + aerofs.com + AeroFS (partial) + aeryon.com + Aeryon Labs + aesload.de + Aesload.de + aesnet.org + American Epilepsy Society (partial) + aetherflyff.com + Aether Flyff.com (partial) + afcea.org + AFCEA + afcom.com + AFCOM.com + affair-guide.com + Affair-Guide.com (partial) + affili.net + affili.net (partial) + affiliate-b.com + Affiliate-B.com + affiliate-program.amazon.com + Amazon Associates + affiliate.techstats.net + techstats.net + affiliatetracking.com + AffiliateTracking.com + affiliatewindow.com + Digital Window (partial) + affiliation.arukereso.hu + Árukereső + affiliation.compari.ro + Árukereső + affiliation.pazaruvaj.com + Árukereső + afford.com + Afford.com + affutd.com + AffUtd.com + afilias.info + Afilias + afnic.fr + AFNIC.fr + afp548.com + AFP548.com (partial) + afra-berlin.de + AFRA-Berlin.de + africangreyparrotcentre.co.uk + African Grey Parrot Centre + afrinic.net + African Network Information Center + afsa.gov.au + Australian Financial Security Authority + afsp.org + American Foundation for Suicide Prevention + aftenposten.no + Aftenposten + aftership.com + AfterShip.com + aftonbladet.se + Aftonbladet + aftontrailrun.com + Afton Trial Run + ag.ch + Schweizer Regierung + ag.gov.au + Attorney-General's Department + agari.com + Agari + agendaless.com + Agendaless.com + ageofmine.com + Age of Mine.com + aggregateknowledge.com + Aggregate Knowledge + agilebits.com + AgileBits (partial) + agilewebsolutions.com + AgileBits (partial) + agmk.net + agmk.net + agnitum.com + Agnitum + agrisupply.com + Agri Supply.com (partial) + agwa.name + Agwa.name + ahm.com.au + ahm.com.au (partial) + ahmia.fi + ahmia.fi + ahorroentinta.com + Todo en Tinta + ahpra.gov.au + Australian Health Practitioner Regulation Agency + ai-online.com + Automotive Industries + ai.ai + Automotive Industries + aiasurety.com + AIA Surety + aidsmap.com + aidsmap.com + aim.com + AOL (partial) + aimatch.com + aimatch.com + aiportal.iperceptions.com + iPerceptions (partial) + airbnb.* + Airbnb (partial) + airbnb.co.* + Airbnb (partial) + airshipventures.com + AirshipVentures + airsoftgi.com + AirsoftGI.com + airtricity.com + Airtricity + airvpn.org + Air VPN + ajax.aspnetcdn.com + ASPNETcdn.com + ajax.vacationroost.com + VacationRoost + ak1.abmr.net + Lowes.com (partial) + aka-img-1.h-img.com + Hunch (partial) + akademikerforsakring.se + AkademikerFörsäkring.se + akademikerförsäkring.se + AkademikerFörsäkring.se + akb.ch + Schweizer Kantonalbanken + akcdn.okccdn.com + OkCupid (partial) + akincludes.okccdn.com + OkCupid (partial) + akira.org + Akira.org + akismet.com + Akismet + aklamio.com + aklamio.com + aktiiviraha.fi + handelsbanken.fi (partial) + aktion-deutschland-hilft.de + Aktion-Deutschland-Hilft.de (partial) + aktivix.org + Aktivix.org + al-akhbar.com + al-akhbar + alamy.com + Alamy + alaska.edu + University of Alaska (partial) + alaskaair.com + Alaska Airlines + alastairs-place.net + Alastair’s Place + albinoloverats.net + albinoloverats + albumarsiv.com + AlbumArsiv.com + alcatel-lucent.com + Alcatel-Lucent.com (partial) + aldi-mobile.ch + Aldi + aldi-nord.de + Aldi + aldi-sued.de + Aldi + aldi-suisse.ch + Aldi + aldi.be + Aldi + aldi.co.uk + Aldi + aldi.com.au + Aldi + aldi.dk + Aldi + aldi.es + Aldi + aldi.fr + Aldi + aldi.hu + Aldi + aldi.ie + Aldi + aldi.lu + Aldi + aldi.nl + Aldi + aldi.pl + Aldi + aldi.pt + Aldi + aldi.us + Aldi + aldinord.de + Aldi + aldisued.de + Aldi + aldisuisse.ch + Aldi + alditalk.de + Aldi + alecomm.com + Alecomm.com + alertaenlinea.gov + OnGuard Online + alertbot.com + AlertBot + alertir.com + Alert Investor Relations + alertsite.com + SmartBear (partial) + alex.se + Alex.se + alexa.com + Alexa (partial) + alexandrasangelgifts.co.uk + Alexandras Angel Gifts.co.uk + alexcabal.com + Alex Cabal.com + alexishair.com + Alexis Hair (partial) + algolia.com + Algolia.com + alianza.tv + Alianza + alias.io + alias.io + alice-dsl.de + AliceDSL + alice.de + AliceDSL + alien.net.au + Alien.net.au + alienvault.com + AlienVault (partial) + alipay.com + Alipay.com (partial) + alivenotdead.com + alivenotdead.com + all-inkl.* + All-inkl.com + all4xs.net + all4xs.net + allafrica.com + allAfrica (partial) + allclearid.com + AllClear ID.com + alldaycalm.com + All Day Calm + alldebrid.com + AllDebrid.com (partial) + alldebrid.fr + AllDebrid.com (partial) + allerderm.com + SmartPractice + alliancebernstein.com + AllianceBernstein (partial) + allianz-fuer-cybersicherheit.de + Allianz für Cyber-Sicherheit + allianz-fuer-cybersicherheit.org + Allianz für Cyber-Sicherheit + allianzfuercybersicherheit.de + Allianz für Cyber-Sicherheit + alliedmedia.org + Allied Media.org + alliedmods.net + AlliedModders + allingsas.se + Allingsas.se + allistene.fr + Allistene.fr + allizom.org + Allizom.org + alljoyn.org + AllJoyn.org + allmyvideos.net + allmyvideos.net (partial) + allplayers.com + AllPlayers.com + allpoetry.com + Allpoetry + allseenalliance.org + AllSeen Alliance.org + allshareplay.com + AllShare Play + allstartire.com + All Star Tire + alltel.web.mcore.com + Motricity (partial) + allthingsd.com + AllThingsD (partial) + allunmanaged.com + AllUnmanaged.com + ally.com + Ally Financial (partial) + allybank.com + Ally Financial (partial) + allyou.net + AllYou.net + allyoucanarcade.com + All You Can Arcade.com (partial) + alpha.irccloud.com + Irccloud.com + alphassl.com + AlphaSSL + alpinelinux.org + Alpine Linux.org (partial) + alrc.gov.au + Australian Law Reform Commission + alsoactebis.com + ALSO Actebis + alt.ac.uk + Association for Learning Technology (partial) + alt.coxnewsweb.com + coxnewsweb.net + alta.com + Alta Ski Area + altera.com + Altera.com (partial) + alternalabs.com + AlternaLabs (partial) + alternate-b2b.nl + Alternate + alternate.be + Alternate + alternate.nl + Alternate + alternatifbilisim.org + Alternatif Bilisim.org + alternatives.ca + Alternatives.ca + alternc.org + AlternC (partial) + alternet.org + AlterNet (partial) + altimatewellness.com + Altimate Wellness (partial) + altng.ucsd.edu + UCSD + altoonamirror.com + Altoona Mirror (partial) + alu.usainteanne.ca + usainteanne + alumfx.com + AlumFX.com + alumne.dtu.dk + Technical University of Denmark (partial) + alumni.fit.edu + Florida Institute of Technology (partial) + alumni.utah.edu + University of Utah (partial) + alumniconnections.com + alumniconnections.com + alwaysdata.com + alwaysdata.com (partial) + alz.org + Alzheimer's Association (partial) + alza.cz + Alza.cz + alza.sk + Alza.sk + alzforum.org + Alzforum.org (partial) + alzheimers.org.uk + Alzheimer's Society (partial) + amahi.org + Amahi.org (partial) + amara.org + Amara (false MCB) + amazingweb.co + amazingweb + amazon.co.jp + Amazon Japan (partial) + amazonwebservices.com + Amazon Web Services + amberswann.com + Amber Swann Publishing (partial) + ambest.com + A.M. Best Company (partial) + amblin.io + amblin.io (partial) + ambx.com + Ambx.com + amctheatres.com + AMCTheatres + amctv.com + AMC (partial) + amd.co.at + amd.co.at (partial) + ameba.jp + Ameba (partial) + ameliaandersdotter.eu + Amelia Andersdotter.eu + american.edu + American University (partial) + americanaexchange.com + Americana Exchange + americanancestors.org + American Ancestors.org (partial) + americanbar.org + American Bar Assocation + americanexpress.com + AmericanExpress + americanflyertrains.com + American Flyer Trains.com + americanfreedom.com + American Freedom.com + americanfuturefund.com + American Future Fund + americanheart.org + American Heart.org (partial) + americanscientist.org + American Scientist.org + americaslongestwar.com + America's Longest War + americorpsconnect.org + nationalserviceresources.org + amersfoort.nl + NL Overheid + ametsoc.org + AMetSoc.org (partial) + ami.com + AMI.com + amiando.com + amiando (partial) + amnesty.no + Amnesty International Norway (partial) + amnesty.org + Amnesty International (partial) + amnesty.org.uk + Amnesty International (partial) + amnestyusa.org + Amnesty USA.org (partial) + amp.collective.com + Collective Media (partial) + ampush.com + Ampush.com + ams-ix.net + Amsterdam Internet Exchange + ams.org + AMS.org (partial) + amsa.gov.au + Australian Maritime Safety Authority + amsciadmin.eresources.com + American Scientist.org + amsl.com + AMSl.com + amstelveen.nl + NL Overheid + amsterdam.nl + NL Overheid + amway.com + Alticore (partial) + ana.net + Association of National Advertisers + analytics.performable.com + Performable.com + analytics.pubnxt.net + PubNXT.net (partial) + analytics.wdpromedia.com + WDpromedia.com + analyticssl.clickpathmedia.com + ClickPath (partial) + ananda.org + Ananda Sangha + anb.com.sa + ANB + anbg.gov.au + Australian Plants, Botany and Horticulture + anchor.com.au + Anchor + anchor.net.au + Anchor + andersonvalleypost.com + E. W. Scripps Company (partial) + andor.com + Andor.com + androidfilehost.com + Androidfilehost.com + androidguiden.idg.se + IDG.se (partial) + androidpolice.com + Androidpolice + andyet.com + andyet.com (partial) + andywalsh.com + Andy Walsh.com + angel.co + AngelList (partial) + anglomedia.net + anglomedia.net + angus.gov.uk + UK Local Government + anibis.ch + anibis.ch + animenfo.com + Animenfo.com + animoto.com + Animoto.com (partial) + anirena.com + AniRena + anker.to + Anker + annevankesteren.nl + Anne van Kesteren.nl + annsummers.com + Ann Summers (partial) + annualcreditreport.com + AnnualCreditReport.com + anomos.info + Anomos (CAcert) + anonbox.net + anonbox.net + anonfiles.com + AnonFiles.com + anonine.com + Anonine.com + anonops.com + AnonOps.com + anonym-surfen.de + JonDos + anonymizer.com + Anonymizer + anonymous-proxy-servers.net + JonDos + anonymousads.com + Anonymousads.com + anonymousspeech.com + AnonymousSpeech.com + anonymox.net + anonymoX + anonyproz.com + Anyproz + anpost.ie + An Post (partial) + anquanbao.com + Anquanbao.com + anrtx.tacoda.net + AOL Advertising + ansa.it + Ansa.it + ansible.com + Ansible.com (partial) + ansibleworks.com + Ansible works.com (partial) + antenna.gr + Greek-media + anthrocon.org + Anthrocon + antiphishing.org + Anti-Phishing Working Group (partial) + antipolygraph.org + AntiPolygraph.org + antispam-ev.de + AntiSpam e.V. + anubis.iseclab.org + Iseclab.org + anunciou.com + Anunciou.com (partial) + anxbtc.com + ANXBTC.com + anybeat.com + Anybeat + anybots.com + Anybots.com + anyfi.net + Anyfi.net + anyoption.com + anyoption.com (partial) + anz.com + ANZ + anzen.org.uk + Anzen.org.uk + aoe.com + AOE.com (partial) + aok.de + AOK + aol.co.uk + AOL (partial) + aol.com + AOL (partial) + ap.mnocdn.no + Aftenposten + apac.haymarket.com + Haymarket (partial) + apache.org + Apache (partial) + apc.org + Association for Progressive Communications + apcmag.com + APC Magazine + apertureinsight.com + PulsePoint (partial) + api.del.icio.us + Delicious + api.echoenabled.com + Echo Enabled + api.kinja.com + Kinja (partial) + api.pachube.com + Pachube.com + api.plixi.com + Lockerz (partial) + api.qrserver.com + QR Server.com (partial) + api.qunitjs.com + QUnit JS.com + api.recurly.com + Recurly.com + api.sh + api.sh + api.sharedcount.com + sharedcount.com API + api.sso.biglobe.ne.jp + Biglobe (partial) + api.twingly.com + Twingly (partial) + api.unthem.com + unthem + api.v2.badgeville.com + Badgeville.com (partial) + api.wp.6scan.com + 6Scan.com (partial) + api.yamli.com + Yamli API + api.yubico.com + Yubico + api2.fri-gate.org + fri-Gate.org (partial) + apicasystem.com + Apica + apigee.com + Apigee (partial) + apigility.org + Apigility.org + apis.google.com + Google APIs + aplus-flint-river-ranch.com + A+ Flint River Ranch + apm.com + APM.com + apnaindia.com + Apna India + apne.ws + bit.ly vanity domains + apnic.net + Asia-Pacific Network Information Centre (partial) + apobox.com + APO Box.com + apollo.unlimitedhost.asia + UnlimitedHost (partial) + apomedifot.de + Apomedifot.de (partial) + apoteket.se + Apoteket.se + apotheke.de + Apotheke.de + app.applyyourself.com + ApplyYourself + app.beanstalkdata.com + Beanstalk Data + app.cactuscompletecommerce.com + Cactus Complete Commerce (partial) + app.codesion.com + Codesion (partial) + app.com + Asbury Park Press (partial) + app.curdbee.com + Vesess (partial) + app.dialshield.com + Awio Web Services (partial) + app.mbuy.com + MBuy.com (partial) + app.net + App.net + app.readspeaker.com + ReadSpeaker + app.recurly.com + Recurly.com + app.stacktack.com + Stack Exchange (partial) + app.sunosunao.com + SunoSanuo.com (partial) + app.ubertags.com + UberTags (partial) + app.webinspector.com + Web Inspector App (partial) + app.xaraonline.com + MAGIX (partial) + app.zingcheckout.com + Zing Checkout.com (partial) + app3.checksconnect.com + Harland Clarke + appcelerator.com + Appcelerator + appdynamics.com + AppDynamics + apperdeck.com + Holtwick IT (partial) + appetize.io + Appetize.io + appgratis.com + AppGratis + appharbor.com + AppHarbor.com + appiehein.com + Appie Hein.com + appkb.ch + Schweizer Kantonalbanken + apple.com + Apple.com (partial) + applebees.com + Applebee's + applepartsstore.com + Apple Parts Store (partial) + applianceshop.eu + Applianceshop.eu + applications.contactatonce.com + Contact At Once.com (partial) + apply.berklee.edu + Berklee College of Music + applyweb.com + ApplyWeb.com + appnew.outreach.psu.edu + Pennsylvania State University (partial) + apps.clicks.lv + clicks.lv (partial) + apps.db.ripe.net + ripe.net + apps.southend.gov.uk + UK Local Government + appseccalifornia.org + Appseccalifornia.org + appsecute.com + Appsecute + appsites.com + Appsites.com + appspot.com + Google App Engine + appthemes.com + AppThemes.com + appvault.com + AppVault (partial) + apress.com + Apress.com + apricorn.com + Apricorn.com + april.org + April.org + aps.org + American Physical Society (partial) + apsjobs.gov.au + APS Jobs + apwg.org + Anti-Phishing Working Group (partial) + apwu.org + American Postal Workers Union + apwustore.org + American Postal Workers Union + aquent.com + Aquent (partial) + aquent.us + Aquent (partial) + aqueousvapor.com + Aqueous Vapor.com (partial) + ar.ch + Schweizer Regierung + arachnys.com + Arachnys + arbeitsagentur.de + Arbeitsagentur.de + arbor.net + Arbor Networks (partial) + arbornetworks.com + Arbor Networks (partial) + arcgis.com + ArcGIS (partial) + arch-stuff.org + openDesktop.org + archi-strasbourg.org + Archi-Strasbourg + architectsjournal.co.uk + Architect's Journal + archive.installgentoo.net + Yotsuba Archiver (partial) + archive.is + archive.today (partial) + archive.moe + archive.moe + archive.org + Internet Archive + archive.stsci.edu + Space Telescope Science Institute (partial) + archive.today + archive.today (partial) + archiveofourown.org + ArchiveOfOurOwn + archlinux.org + Arch Linux + archos.com + Archos.com + arcor.de + ArcorCentralLogin + ardour.org + Ardour (partial) + argeweb.nl + Argeweb.nl + argos-spain.co.uk + Argos (partial) + argos.co.uk + Argos (partial) + argos.ie + Argos (partial) + argoscareers.com + Argos (partial) + argosemails.co.uk + Argos (partial) + argosonline.es + Argos (partial) + argusleader.com + The Argus Leader + ariejan.net + Ariejan.net + aries.apache.org + Apache.org (false MCB) + arin.net + ARIN.net (partial) + arisebitcoin.com + Arisebitcoin.com + arivo.com.br + Com.br + arkos.io + arkOS.io + arlanda.se + Arlanda.se + armorybids.com + ArmoryBids.com + armyoutlet.de + Armyoutlet.de + arpnetworks.com + ARPNetworks.com (partial) + array.is + Array.is (partial) + arrivabus.co.uk + Arriva + arrl.org + ARRL (partial) + ars.to + Ars Technica (partial) + ars.usda.gov + USDA-ARS + arsenalnews.net + KickNews + arstechnica.com + Ars Technica (partial) + art2po.com + Art2pO.com + artday.co.kr + Artday + artedolar.com.br + Arte do Lar.com.br + artemis.net + Artemis.net + artemisinternet.com + Artemis.net + artfiles.de + Artfiles New Media (partial) + articulate.com + Articulate.com (partial) + artinstitutes.edu + The Art Institutes (partial) + artizone.com + Artizone (partial) + artpractical.com + Art Practical + artskills.com + ArtSkills + arukereso.hu + Árukereső + arvixe.com + Arvixe + as.au.edu + UA.edu (false MCB) + as112.net + AS112.net + asada.gov.au + Australian Sports Anti-Doping Authority + asana.com + Asana (partial) + asbestossafety.gov.au + Asbestos Safety and Eradication Agency + ascenderfonts.com + Monotype Imaging (partial) + asciinema.org + Asciinema.org (partial) + ashford.com + Ashford.com (partial) + ashlandfiber.net + Ashland Fiber.net (partial) + asianfanfics.com + Asianfanfics + asic.gov.au + ASIC + asiointi.hel.fi + Helsinki (partial) + asirobots.com + ASI robots.com + ask-inc.com + transformationmadeeasy.com (partial) + ask.barclays.co.uk + Barclays + askapatient.com + Ask a Patient + askives.com + Askives.com + askmonty.org + AskMonty (partial) + askubuntu.com + Ask Ubuntu.com + asl19.org + ASL19.org + asmallorange.com + A Small Orange (partial) + asmc.de + Asmc.de + asmp.org + American Society of Media Photographers + asnbank.nl + ASN Bank.nl (partial) + asp.readspeaker.net + ReadSpeaker + aspectsecurity.com + Aspect Security + aspen.com + Aspen.com (partial) + aspi.org.au + Australian Strategic Policy Institute + aspplayground.net + ASPPlayground.NET + assayassured.co.uk + Assay Assured.co.uk (partial) + asseenonresponsetv.com + asseenonresponsetv.com + assembla.com + Assembla (partial) + assemble.me + Assemble.me + assembly.com + Assembly.com (partial) + assemblys.net + Wildcard Corp.com + asset-0.tenderapp.com + ENTP (partial) + asset-1.tenderapp.com + ENTP (partial) + asset-2.tenderapp.com + ENTP (partial) + assetinsightinc.com + Asset Insight + assets-9gag-lol.9cache.com + 9gag (partial) + assets.cookieconsent.silktide.com + Silktide (partial) + assets.devsbuild.it + DevsBuild.It (partial) + assets.digital.cabinet-office.gov.uk + GOV.UK + assets.drupal.ku.edu + University of Kansas (partial) + assets.fiercemarkets.net + FierceMarkets (partial) + assets.fit.edu + Florida Institute of Technology (partial) + assets.huggies-cdn.net + Huggies Australia (partial) + assets.insnw.net + Insnw.net + assets.kachingle.com + Kachingle + assets.levoleague.com + Levo League.com (partial) + assets.musicwindow.com + Addictech + assets.noisey.* + Vice (partial) + assets.patriotpost.com + The Patriot Post + assets.puma.com + Puma.com + assets.realclearpolitics.com + RealClearPolitics.com (partial) + assets.sidearmsports.com + Sidearm Sports (partial) + assets.slisystems.com + SLI Systems (partial) + assets.soundowl.net + Soundowl.net + assets.taobaocdn.com + Taobao (partial) + assets.thecreatorsproject.com + Vice (partial) + assets.www.npo.nl + NPO.nl (partial) + assets0.frndcdn.net + Friendster (partial) + assetscdn.students.uophx.edu + Phoenix.edu (partial) + assetsi.efax.com.edgesuite.net + efax.com (partial) + assetspost.com + ChallengePost (partial) + assistance-multimedia.fr + Assistance-Multimedia.fr + assistly.com + Desk.com + assoc-amazon.* + Amazon Associates + assoc-amazon.co.uk + Amazon Associates + associatedcontent.com + associatedcontent.com + astaro.com + Sophos (partial) + asterisk.org + Asterisk (partial) + asteriskexchange.com + Asterisk Exchange (partial) + astore.amazon.com + Amazon Associates + astra.io + Astra.io + astronomicaltours.net + AstronomicalTours + asu.edu + Arizona State University (partial) + asus.com + ASUS (partial) + aswirlgirl.com + aswirlgirl.com (partial) + atagar.com + atagar.com + atariage.com + AtariAge + atbank.nl + ATBank + atdw.tq.com.au + Tourism and Events Queensland (partial) + atech.io + aTech Media (partial) + atechmedia.com + aTech Media (partial) + atemda.com + Admeta Aktiebolag (partial) + atheists.org + Atheists.org (partial) + atinternet-solutions.com + AT Internet Solutions + atipso.com + atipso.com + ativismo.org.br + Ativismo.org.br (partial) + atlantic.net + Atlantic.net + atlanticmetro.net + Atlantic Metro Communications (partial) + atlantis.sk + Atlantis.sk + atlassian.com + Atlassian (partial) + atlassian.wpengine.netdna-cdn.com + Atlassian (partial) + atmail.com + Atmail + ato.gov.au + Australian Taxation Office + atom.io + Atom.io (partial) + atomic-clock.org.uk + Uhrzeit.org (partial) + atomiccowlick.com + Atomic Cowlick + atomicorp.com + Atomicorp + atomz.com + Atomz + atos.net + Atos.net + atrativa.com.br + Atrativa.com.br (partial) + atsb.gov.au + Australian Transport Safety Bureau + atsec.com + atsec.com + atstuff.com + @stuff + att.com + AT&T (partial) + attic-backup.org + Attic-backup.org + attic.apache.org + Apache.org (false MCB) + attictv.com + kpopstage.co + attracta.com + Attracta + attribute.adometry.com + Adometry (partial) + atypon.com + Atypon + au.gwn7.yahoo.com + Yahoo.com (false MCB) + au.org + Americans United (partial) + au.prime7.yahoo.com + Yahoo.com (false MCB) + au.rss.news.yahoo.com + Yahoo.com (false MCB) + auctionbunker.com + Auctionbunker + auctionthing.net + auctionthing.net + audemarspiguet.com + Audemars Piguet.com + audentio.com + Audentio.com + audible.de + Audible.de + audience-discovery.com + Audience-Discovery.com + audiko.net + Audiko + audioboo.fm + Audioboo.fm (partial) + audiogo.com + AudioGO + audit.median.hu + Median + aufeminin.com + Axel Springer (partial) + augmentedracing.redbull.es + Red Bull (partial) + aulani.jobs + Aulani.jobs + aulis.plaza.fi + Otavamedia (partial) + aus.wwte8.com + WWTE (partial) + auscert.org.au + AusCERT.org + ausgovboards.gov.au + Australian Government Boards + ausinfotech.net + AusinfoTech + auslieferung.commindo-media-ressourcen.de + commindo media (partial) + ausregistry.com.au + AusRegistry (partial) + austiners.com + Austiners.com (false MCB) + austinfitmagazine.com + Austin Fit Magazine.com + austrade.gov.au + Austrade + australia-unsc.gov.au + Australia: UNSC + australianclinicaltrials.gov.au + Australian Clinical Trials + austrian.com + Austrian Airlines + auth.athensams.net + OpenAthens (partial) + auth.dtu.dk + Technical University of Denmark (partial) + auth.univ-paris-diderot.fr + Paris Diderot University (partial) + auth.whiskeymedia.com + Whiskey Media (partial) + authorize.net + Authorize.Net + authorizenet.com + Authorize.Net + authy.com + Authy.com (partial) + autisticadvocacy.org + Autistic Self-Advocacy Network + auto.bigmir.net + Bigmirnet (partial) + autoadmanager.com + Auto Ad Manager.com (partial) + autodiscover.hcl-axon.com + HCL Technologies (partial) + autogielda.money.pl + Money.pl (false MCB) + automatak.net + Automatak.net + autorimsandaccessories.com + Auto Rims & Accessories + autotools.io + Autotools.io + autotrack.nl + AutoTrack.nl + autotrader.com + AutoTrader.com (partial) + autotraderstatic.com + AutoTrader.com (partial) + autovps.net + Auto VPS.net + av18mov.com + av18mov.com + avaaz.org + Avaaz + avangate.com + Avangate (partial) + avaxhome.ws + Avaxhome.ws (partial) + avaya.com + Avaya (partial) + aventeur.ucsd.edu + UCSD + avinc.com + Avinc.com + avira.com + Avira + aviris.fi + Aviris näönvälineet + aviris.nkl.fi + Aviris näönvälineet + avis.com + Avis.com + avm.de + Avm.de + avo.gov.au + Australian Valuation Office + avoiceformen.com + A Voice for Men.com + avoinministerio.fi + Avoin ministeriö + avoinyliopisto.fi + avoinyliopisto.fi + avonmaquiagem.com.br + avonmaquiagem.com.br + avropa.se + Avropa.se + avuecentral.com + Avue Central + avuedigitalservices.com + Avue Digital Services + awaps.yandex.* + Yandex + aweber.com + AWeber (partial) + awesomejar.com + AwesomeJar.com + awin1.com + Digital Window (partial) + awm.gov.au + Australian War Memorial + aws-portal.amazon.com + Amazon Web Services + aws.amazon.com + Amazon Web Services + aws.tracker.squidanalytics.com + Squid Solutions (partial) + ax.phobos.apple.com.edgesuite.net + Apple.com (partial) + axa-winterthur.ch + AXA Winterthur + axantum.com + Axantum.com (partial) + axisbank.com + Axis Bank (partial) + axosoft.com + Axosoft.com (partial) + ayyildiz.de + Ay Yildiz + az.turbobytes.net + Turbobytes.net + azcentral.com + azcentral.com (partial) + azchampion.com + Factory Expo Home Centers + azhca.org + AZHCA.org + azingsport.se + Azingsport.se + b-europe.com + SNCB + b-i.forbesimg.com + Forbes Magazine + b.gzhls.at + Preisvergleich Internet Services (partial) + b.kentbackman.com + Kent Backman.com (partial) + b2bmediaportal.com + b2bmediaportal.com + b3n.org + b3n.org + babymed.com + BabyMed.com (partial) + backbonesecurity.com + Backbone Security + backcountry.com + Backcountry.com (partial) + backend.alumnenet.dtu.dk + Technical University of Denmark (partial) + backlift.com + Backlift.com + backpackerslucerne.ch + Backpackers Lucerne + backstreet-merch.com + Backstreet International Merchandise + backstreetmerch.com + Backstreet International Merchandise + backup.com + Norton Online Backup + backupify.com + Backupify + bad-dragon.com + Bad Dragon + badongo.com + Badongo (partial) + badoo.com + Badoo.com + badwarebusters.org + Badwarebusters.org + baekdal.com + Baekdal (partial) + bagatoo.se + Bagatoo.se + bahn-bkk.de + Bahn-BKK + bahn.de + Bahn.de + baifendian.com + Beijing Qianfendian (partial) + balabit.com + BalaBit.com (partial) + balatarin.com + Balatarin + baldershage.se + Baldershage.se + balkanleaks.eu + Balkan Leaks + balkongshoppen.se + Balkongshoppen.se + ballicom.co.uk + Ballicom + ballotmeasuredomains.com + Ballot Measure Domains + ballou.se + Ballou (partial) + balpa.org + British Airline Pilots Association + bamsecure.com + BAM Agency (partial) + bamshop.co.uk + BAM Agency (partial) + bancastato.ch + Schweizer Kantonalbanken + bandcamp.com + Bandcamp + bandcamp.mu + Bandcamp + bandpass.me + BandPass.me + bangor.ac.uk + Bangor University (partial) + bangordailynews.com + Bangor Daily News (partial) + bank.simple.com + Simple.com + bankid.no + BankID.no + bankofscotland.de + Bankofscotland.de + bankrate.com + bankrate.com + banner.euroads.se + EuroAds.se (partial) + banners.victor.com + Victor Chandler International + bannersnack.com + BannerSnack.com + banu.com + Banu.com + baratikor.com + Draugiem.lv (partial) + barbican.org.uk + Barbican + barclaycard.co.uk + Barclays + barclays.co.uk + Barclays + barclayscorporate.com + Barclays + bardwilhome.com + Bardwil Home (partial) + baremetal.com + BareMetal + baremetrics.io + Baremetrics.io + bareos.org + Bareos + bargains4business.com.au + Bargains 4 Business + barikat.gr + Greek-various + barmer-gek.de + Barmer-GEK + barna.org + Barna.org + barnard.edu + Barnard College + barnesandnoble.com + Barnes and Noble (partial) + barnesjewish.org + Barnes-Jewish Hospital (partial) + barnskospecialisten.se + Barnskospecialisten.se + barra.r7.com + R7.com (partial) + barracuda.com + Barracuda.com + barracudanetworks.com + Barracuda.com + base-valid.com + Base INC! + base.de + BASE (partial) + baselland.ch + Schweizer Regierung + basilisk.aetherflyff.com + Aether Flyff.com (partial) + bassetlaw.gov.uk + UK Local Government + bassh.net + Bassh.net + bath.ac.uk + University of Bath (partial) + bathnes.gov.uk + UK Local Government + batmanarkhamorigins.com + Batmanarkhamorigins.com + batstrading.com + BATS Exchange + battelle.org + Battelle (partial) + battle.net + Battle.net (partial) + battlecreekenquirer.com + Battle Creek Enquirer + battleforthenet.com + Battle for the Net.com + bawsi.org + BAWSI.org + baxterbulletin.com + The Baxter Bulletin + bayan.ir + Bayan.ir (partial) + bayareaamusements.com + Bay Area Amusements + baycitizen.org + Bay Citizen.org + bayfiles.com + BayFiles + bayfiles.net + BayFiles + baylor.edu + Baylor.edu (partial) + bazaarvoice.com + Bazaarvoice + baztab.net + baztab.net + bazzapp.com + BazzApp + bb24.csob.sk + Csob.sk + bbb.org + Better Business Bureau (partial) + bbbonline.org + Better Business Bureau (partial) + bbbsilicon.org + Better Business Bureau (partial) + bbc.com + BBC.com (false MCB) + bbc.in + bit.ly vanity domains + bbcchildreninneed.co.uk + BBC Children In Need + bbsey.es + bbsey.es (partial) + bbseyes.com + bbsey.es (partial) + bccla.org + BCCLA.org + bccx.com + Bccx.com + bcf.ch + Schweizer Kantonalbanken + bcge.ch + Schweizer Kantonalbanken + bcgolf.com + BCGolf.com + bcj.ch + Schweizer Kantonalbanken + bcn.ch + Schweizer Kantonalbanken + bcobandits.com + bcobandits.com + bcove.me + Bcove.me + bcpd.x7y24z365.com + BlueCava (partial) + bcrook.com + Bcrook.com + bcv.ch + Schweizer Kantonalbanken + bcvs.ch + Schweizer Kantonalbanken + bcy.ca + Grand Lodge of British Columbia + bdnpull.bangorpublishing.netdna-cdn.com + Bangor Daily News (partial) + bdone.hu + Bdone.hu + be.ch + Schweizer Regierung + beaconinitiative.com + Beacon Initiative + beaconreader.com + Beacon Reader.com + beaker-project.org + Beaker-Project.org + beamyourscreen.de + BeamYourScreen + bear.im + bear.im + beastnode.com + BeastNode (partial) + beatsmedia.com + Beatsmedia + beautifuldecay.com + BeautifulDecay.com (partial) + beautybar.com + BeautyBar.com (partial) + beaverbrooks.co.uk + Beaverbrooks.co.uk (partial) + becoquin.com + BeCoquin.com (partial) + becu.org + Boeing Employees Credit Union (partial) + becuonlinebanking.org + Boeing Employees Credit Union (partial) + bediff.com.br + Be Diff.com.br + bedis.eu + Bedis.eu + beefree.io + BeeFree.io + beeldengeluid.nl + Beeld en Geluid.nl (partial) + beender.co + beender.co + beenverified.com + BeenVerified (partial) + beetailer.com + Beetailer.com + beginlinux.com + BeginLinux.com + beginnertriathlete.com + Beginner Triathlete (partial) + begun.ru + Begun + behance.net + Behance (partial) + behr.com + Behr + bekb.ch + Schweizer Kantonalbanken + belezanaweb.net.br + Beleza na Web (partial) + belkin.com + Belkin (partial) + bell-labs.com + Bell-Labs.com + bellareed.com + MarinellaRose.com + bellinghamschools.org + Bellingham School District (partial) + bellsouth.com + BellSouth (partial) + belnet.be + Belnet.be (partial) + belpino.se + Belpino.se + benaughty.com + BeNaughty.com (partial) + benchmarking.greenit-bb.de + GreenIT-BB (partial) + bendigobank.com.au + Bendigo Bank + benefitsweb.com + benefitsweb.com + benetech.org + Benetech + bennetts.co.uk + Bennetts (partial) + bentley.edu + Bentley Univerity (partial) + beonespark.com + BE One Spark.com (partial) + bepress.com + bepress + bequiet.com + be quiet.com (false MCB) + bergdorfgoodman.com + TPG Capital (partial) + bergenopzoom.nl + NL Overheid + berkeleychessschool.org + Berkeley Chess School (partial) + berkeleylug.com + Berkeley LUG.com + berlin-airport.de + Berlin Airport + berlinonline.de + Berlinonline.de + bernalbucks.org + Bernal Bucks + bernstein.com + AllianceBernstein (partial) + berrange.com + Daniel P. Berrangé + berryreview.com + BerryReview.com (false MCB) + beryl-themes.org + openDesktop.org + besmith.com + B. E. Smith + bespied-ons-niet.nl + Bespied-ons-niet.nl + bestbuy.ugc.bazaarvoice.com + Best Buy (partial) + bestcovery.com + Bestcovery.com (partial) + bestlawyers.com + Best Lawyers + bestofferbuy.com + BestOfferBuy.com + bestpractical.com + Best Practical.com (partial) + bet365.com + bet365 Group (partial) + bet365affiliates.com + bet365 Group (partial) + bet555.eu + Bet555 + beta.kneon.com + Kneon.com (partial) + beta.musicbrainz.org + MusicBrainz + betabeat.com + Betabeat.com + bethere.co.uk + Telefónica (partial) + bethsoft.com + Bethsoft.com (partial) + betnet.fr + Betnet.fr + bettercrypto.org + BetterCrypto.org + betvictor.com + Victor Chandler International + beyondsecurity.com + Beyond Security + bezosexpeditions.com + Bezos Expeditions + bgamed.de + bGamed.de (partial) + bgpmon.com + BGPmon.net + bgpmon.net + BGPmon.net + bgr.com + BGR.com + bh.pulsepoint.com + PulsePoint (partial) + bhiab.se + Bhiab.se + bho.pl + bluehosting.pl (partial) + bhosted.nl + bHosted.nl (partial) + bhw.de + BHW.de + biapy.fr + Biapy.fr + bibbitec.com + bibbitec + bibl.sh.se + SH.se + bible.com + YouVersion + bibliometrics.ki.se + KI.se + bidbubble.com + BidBubble.com (false MCB) + bidcactus.com + BidCactus.com + biditbob.com + BidItBob.com + bidsystem.com + Adknowledge (partial) + bidz.com + Bidz.com (partial) + bigboxsave.com + Bigboxsave.com + bigbrother.se + Big Brother.se (partial) + bigbrotherawards.de + German BigBrotherAwards + bigbrotherwatch.org.uk + Big Brother Watch + bigchangeuk.co.uk + Big Change + bigcommerce.com + BigCommerce + bigconcerts.co.za + Big Concerts (partial) + bigdinosaur.org + Bigdinosaur.org + biggestloserclub.com + Biggest Loser Club.com + bighugelabs.com + BigHugeLabs + bigjocker.com + bigjocker.com + biglive.com + Big Live.com + bignerdranch.com + Big Nerd Ranch + bigshinylock.minazo.net + Minazo.net + bigstockimages.com + Bigstock (partial) + bigstockphoto.com + Bigstock (partial) + bigv.io + BigV.io (partial) + bihira.com + Bihira.com + bike24.de + Bike24.de + bikebiz.com + Intent Media (partial) + billetnet.dk + Ticketmaster (partial) + billettservice.no + Ticketmaster (partial) + billiger.de + billiger.de (partial) + billing.camelhost.net + CamelHost.net (partial) + billing.eoreality.net + EOReality.net (partial) + billing.hudsonvalleyhost.com + Hudson Valley Host (partial) + billmaher.com + Bill Maher.com + billscenter.paytrust.com + Intuit (partial) + billycreative.com + Billy Creative + bin-store.com + Bin-Store.com + binaryapi.ap.org + Associated Press (partial) + binarybiz.com + Binary Biz + binaryturf.com + BinaryTurf + binbox.io + Binbox.io (partial) + binefreund.de + Floek.net + binero.se + Binero.se + bing.com + Bing + binsearch.info + BinSearch + binsearch.net + BinSearch + biofitt.com + biofitt.com + bioinfo.pl + BioInfo.pl + bioinfobank.com + BioInfoBank.com (partial) + biomedcentral.com + BioMed Central (false MCB) + bioshockinfinite.com + BioShock Infinite + biotech.inbre.alaska.edu + University of Alaska (partial) + biotrimlabs.com + Biotrim Labs.com + biowarestore.com + BioWare (partial) + bip.io + Bip.IO + bircko.com + Bircko.com + birthdayinabox.com + Birthday in a Box (partial) + birthprint.com + Birthprint + bishopi.com + Bishop Interactive + bishopinteractive.com + Bishop Interactive + bistudio.com + Bohemia Interactive (partial) + bit.ly + bit.ly + bit.ly.pro + bit.ly + bit9.com + Bit9 (partial) + bitaddress.org + bitaddress.org + bitballoon.com + BitBalloon.com + bitbucket.org + BitBucket (partial) + bitcard.org + BitCard + bitcasa.com + BitCasa (partial) + bitchmagazine.org + Bitch Magazine.org (partial) + bitcoin-central.net + Bitcoin-Central + bitcoin.at + Bitcoin Wiki + bitcoin.co.th + Bitcoin.Co.th + bitcoin.com + Bitcoin.com + bitcoin.de + Bitcoin.de + bitcoin.in + Bitcoin Wiki + bitcoin.it + Bitcoin Wiki + bitcoin.org + Bitcoin + bitcoinapi.de + bitcoinapi.de + bitcoinarmory.com + Bitcoin Armory.com + bitcoincharts.com + Bitcoin Charts + bitcoinforum.com + Bitcoin Forum.com + bitcoinfoundation.org + Bitcoin Foundation.org + bitcoinfunding.com + BitcoinFunding.com + bitcoinity.org + Bitcoinity.org + bitcoinmagazine.com + Bitcoin Magazine.com (partial) + bitcoinmarket24.com + Bitcoin Market 24 + bitcoinshop.us + BitcoinShop.US + bitcoinsil.co.il + Bitcoins il.co.il (false MCB) + bitcoinstore.com + BitcoinStore.com + bitcointalk.org + Bitcoin Forum + bitcoinwisdom.com + BitcoinWisdom.com + bitcurex.com + Bitcurex.com + bitfetch.com + bitfetch + bitgamer.com + bitGamer + bitgamer.su + bitGamer + bitinstant.com + BitInstant (partial) + bitlove.org + Bitlove + bitly.com + bit.ly + bitly.pro + bit.ly + bitmask.net + Bitmask.net (partial) + bitme.com + Bitme.com + bitmessage.org + Bitmessage + bitminter.com + BitMinter.com + bitmissile.com + BitMissile (partial) + bitmit.net + Bitmit + bitnami.com + Bitnami.com + bitnamihosting.com + BitRock (partial) + bitnik.org + Bitnik.org + bitpay.com + BitPay + bitre.gov.au + Bureau of Infrastructure, Transport and Regional Economics + bitrig.org + Bitrig + bitservicex.com + eCash.io + bitstamp.net + Bitstamp.net + bitstampede.com + Bit Stampede.com + bittiraha.fi + Bittiraha.fi + bittit.info + Bittit.info + bittrex.com + Bittrex.com + bitvisor.org + BitVisor.org + bitwig.com + Bitwig.com + bivol.bg + Bivol + bizjournals.com + The Business Journals (partial) + bizshark.com + Bizshark + bkk-advita.de + BKK-Advita + bkw-fmb.ch + BKW-FMB.ch + blackbaud.com + Blackbaud (partial) + blackberry.com + Blackberry (partial) + blackboard.com + Blackboard (partial) + blackbox.co.uk + Black Box.co.uk + blackducksoftware.com + Black Duck Software.com (partial) + blackfoot.co.uk + Blackfoot.co.uk + blackhat.com + BlackHat + blacklotus.net + Black Lotus + blackmesh.com + BlackMesh.com + blacknight.com + Blacknight Internet Solutions (partial) + blackphone.ch + Black Phone.ch + blackpool.gov.uk + UK Local Government + blacksuitit.com + BlackSuit IT.com + blacktonic.com + BlackTonic.com (partial) + blackvpn.com + blackVPN + blake2.net + BLAKE2 + blamestella.com + BlameStella + blau.de + Blau.de + blazingthyme.com + Blazing Thyme + blazonco.com + Blazonco.com + bleep.com + Bleep.com + blekko.com + Blekko + bleutrade.com + Bleutrade.com + blinddesign.nl + Blinddesign.nl + bling4cars.com + Bling4cars + blink-182.com + blink-182 (partial) + blipp.com + Blipp.com + blkb.ch + Schweizer Kantonalbanken + blockbuster.co.uk + BlockBuster UK + blockchain.info + Blockchain.info + blocked.org.uk + Blocked.org.uk + blocket.se + Blocket.se + blockexplorer.com + BlockExplorer.com + blockitpocket.com + BlockitPocket.com + blockmetrics.com + Block Metrics + blockscript.com + BlockScript + blockstream.com + Blockstream.com (partial) + blog.advance.net + Advance Digital (partial) + blog.codesion.com + Codesion (partial) + blog.crypto.is + Crypto.is + blog.cyveillance.com + Cyveillance.com + blog.ebuyer.com + Ebuyer.com (false MCB) + blog.evenmere.org + evenmere.org (partial) + blog.fefe.de + Fefe + blog.hartwork.org + Hartwork Project (partial) + blog.hipmunk.com + Hipmunk.com (false MCB) + blog.kapsi.fi + Kapsi.fi (very partial) + blog.l0cal.com + l0cal.com (partial) + blog.libtoxcore.so + libtoxcore.so (partial) + blog.litespeedtech.com + LiteSpeed Technologies (partial) + blog.lizardwrangler.com + Lizard Wrangler.com (partial) + blog.mandriva.com + Mandriva.com (false MCB) + blog.obnox.de + obnox.de (CAcert, partial) + blog.openhub.net + Open Hub.net (false MCB) + blog.openttdcoop.org + OpenTTD (partial) + blog.outbrain.com + Outbrain.com (false MCB) + blog.p2pfoundation.net + P2P Foundation.net (partial) + blog.pressdisplay.com + BlueHost clients + blog.qt.digia.com + Digia (partial) + blog.recurly.com + Recurly (partial) + blog.stackoverflow.com + Stack Exchange (mixed content) + blog.thestorefront.com + The Storefront.com (false MCB) + blog.trendmicro.com + Trend Micro (false MCB) + blog.twenga.com + Twenga.com (false MCB) + blog.usni.org + USNI.org (false MCB) + blog.vungle.com + Vungle (partial) + blog.webplatform.org + WebPlatform + blog.xenproject.org + Xen Project.org (partial) + blogads.com + Pressflex (partial) + blogautomobile.fr + Blog Automobile + blogblog.com + Blogger (partial) + blogcatalog.com + BlogCatalog + blogger.co.uk + Blogger (partial) + blogger.com + Blogger (partial) + blogmark.me + Blogmark.me + blognone.com + Blognone.com + blogoverflow.com + Stack Exchange (partial) + blogs.akamai.com + Akamai.com (partial) + blogs.forbes.com + Forbes Magazine (mixed content) + blogs.gnome.org + GNOME (false MCB) + blogs.lshtm.ac.uk + London School of Hygiene & Tropical Medicine + blogs.msdn.com + Microsoft (mixed content) + blogs.savethechildren.org.uk + Save the Children.org.uk (false MCB) + blogsmithmedia.com + Moviefone + blogspot.* + Blogger (partial) + blogspot.co.uk + Blogger (partial) + blogtalkradio.com + BlogTalkRadio + blogtopsites.com + Blog Top Sites.com + bloodhoundgang.com + Bloodhound Gang.com + bloomberg.com + Bloomberg (partial) + bloombergsports.com + Bloomberg Sports.com + blot.im + Blot.im + bluecava.com + BlueCava (partial) + bluegenio.com + BlueGenio.com + bluegiga.com + Bluegiga.com + bluehost-cdn.com + Bluehost-CDN.com + bluehost.com + BlueHost + bluejeanscable.com + Blue Jeans Cable.com + bluekrypt.be + BlueKrypt.com + bluekrypt.com + BlueKrypt.com + bluemanticketing.com + Blue Man Ticketing (partial) + bluemountain.com + Blue Mountain + bluemovie.eu + Blue Movie (partial) + bluemovie.net + Blue Movie (partial) + blueseed.co + Blueseed.co + bluessl.com + blueSSL + bluestatedigital.com + Blue State Digital (partial) + bluetoad.com + BlueToad.com + bluetooth.org + Bluetooth.org (partial) + bluewin.ch + Bluewin.ch (partial) + bluewin.wemfbox.ch + Bluewin.ch (partial) + blumenthals.com + Blumenthals + bmc.com + BMC.com (partial) + bmclogostore.com + BMC Logo Store.com + bmi.bund.de + Bundesministerium des Innern + bmmetrix.com + Bmmetrix.com (partial) + bmpharmacy.com + BM Pharmacy + bn.com + Barnes and Noble (partial) + bnd.bund.de + Bundesnachrichtendienst + bnf.org + British National Formulary (partial) + bnw.im + bnw + bnz.co.nz + BankOfNewZeland + boalt.com + BOALT + boardgamegeek.com + BoardGameGeek + boards.ylilauta.org + Ylilauta + boardzoo.com + BoardZoo.com + boarnsterhim.nl + NL Overheid + boathousecrewshop.com + Boathouse Crew Shop + bobafamily.com + Boba Family + bobcares.com + Bobcares.com + bodum.com + Bodum + boe.ca.gov + California State Board of Equalization + boe.es + Boe.es + boerse-frankfurt.de + Börse Frankfurt + bof.nl + Bits of Freedom + bohoomil.com + bohoomil.com + boingo.com + Boingo + boingohotspot.net + Boingo + bokborgen.se + Bokborgen.se + bokelskere.no + Bokelskere + bolagsverket.se + Bolagsverket.se + boldchat.com + BoldChat.com (partial) + boltbus.com + Boltbus.com + boneblast.com + BoneBlast.com (partial) + book.invasion.com + Invasion.com (partial) + bookacourse.com + Bookacourse (partial) + bookdepository.co.uk + The Book Depository + bookdepository.com + The Book Depository + booking.com + Booking.com + booking.swiss.com + Swiss.com + bookings.ibizarocks.com + Ibiza Rocks (partial) + bookit.nl + Holidaybreak (partial) + booklog.jp + Booklog.jp + booklooker.de + booklooker.de + bookmyname.com + BookMyName + bookonline.saudiairlines.com + Saudia Airlines (partial) + bookshare.org + Bookshare + bookstore.ucsd.edu + UCSD + bookworm.oreilly.com + Bookworm + boomerang.com + Boomerang (partial) + boostbybenz.com + Boost by Benz.com + boots.com + Boots.com (partial) + boots.ie + Boots.ie + boots.no + Boots.no + bootstrapcdn.com + BootstrapCDN (partial) + boounce.com + Boounce + boozallen.com + Booz Allen.com (partial) + boredtodeath.me + Bored to Death + borne.nl + NL Overheid + bornthiswayfoundation.org + Born This Way Foundation (partial) + borrowsmart.afford.com + Afford.com + bortarsasag.hu + Bortársaság + bose.co.uk + Bose + boss.berlinonline.de + Berlinonline.de + boston.com + Boston.com (partial) + bostonglobe.com + The Boston Globe (partial) + bostonreview.net + Boston Review.com + botbot.me + BotBot.me + botfrei.de + Botfrei.de (partial) + bothar.ie + Bothar + boum.org + boum.org + bounce.io + Bounce.io + bouncebidder.com + bouncebidder.com + bouncerstation.com + Bouncer Station.com + bouncyballs.org + Bouncy Balls.org + bouncycastle.org + Bouncy Castle.org (partial) + bountyoss.com + BountyOSS.com + bountysource.com + Bountysource.com (partial) + bourgeois.me + Bourgeois.me + bournemouth.gov.uk + UK Local Government + box-look.org + openDesktop.org + box.com + Box (partial) + box.qweery.nl + Qweery (partial) + boxee.tv + Boxee.tv (partial) + boxoffice.com + BoxOffice (partial) + boxopus.com + boxopus.com + boxpn.com + Boxpn.com + boxuk.com + BoxUK + boxwoodtech.com + Boxwood Technology + bpa.gov + Bonneville Power Administration (partial) + bprbzk.nl + NL Overheid + bps.org.uk + BPS (partial) + bpsshop.org.uk + BPS (partial) + bpt.bz + Brown Paper Tickets (partial) + bpt.me + Brown Paper Tickets (partial) + br.inter.net + Inter.net (partial) + brabant.nl + NL Overheid + brabysads.com + Brabysads.com (partial) + bradford.gov.uk + UK Local Government + brainbench.com + Brainbench + braincert.org + braincert.org + brainshark.com + Brainshark + brainsonic.com + Brainsonic (partial) + brainstorage.me + Brainstorage.me (partial) + braintree.gov.uk + UK Local Government + braintreegateway.com + Braintreegateway.com + braintreepayments.com + Braintreepayments.com + braintreepaymentsolutions.com + Braintreepayments.com + brainyquote.com + BrainyQuote.com + branch.com + Branch + branchable.com + Branchable.com + branchprod.harland.net + Harland Clarke + brandnewbooty.com + Brand New Booty + brandsaver.ca + Procter & Gamble (partial) + bransonzipline.com + Branson Zipline (partial) + brashear.me + Brashear.me + brasil247.com + Brasil 24/7 + brassring.com + Kenexa (partial) + braunschweig.de + Braunschweig + bravelyonward.com + Bravely Onward.com + breakoutband.com + BreakoutBand.com + bremer.com + Bremer Bank + brendaneich.com + Brendan Eich + brenet.de + BreNet (partial) + brennancenter.org + Brennan Center.org + brent.gov.uk + UK Local Government + breuninger.com + Breuninger (partial) + brevado.com + brevado + briandunning.com + briandunning.com + briansmith.org + Brian Smith.org + bricklink.com + BrickLink + bridgeways.com + Bridgeways.com + briggs-riley.com + Briggs and Riley + bright-things.com + Bright-Things.com + brightcontext.com + BrightContext.com (partial) + brightfort.com + BrightFort.com (partial) + brighthub.com + Bright Hub.com (partial) + brightidea.com + Brightidea (partial) + brightkidsnyc.com + Bright Kids NYC + brighton.com + Brighton (partial) + brightoncollectibles.com + Brighton (partial) + brilig.com + Brilig (partial) + bringthegig.com + Bring the Gig + brinkster.com + Brinkster.com + britannica.com + Britannica.com (partial) + britcoin.co.uk + Britcoin.co.uk + britishairways.com + BritishAirways + britishgas.co.uk + British Gas (partial) + brixwork.com + Brixwork.com (partial) + brmlab.cz + brmlab + bro.org + Bro.org (partial) + broadbandconvergent.com + Broadband Convergent + broadbandreports.com + Broadband Reports + broadcaster.email-tickets.com + Tickets.com (partial) + broadcasthe.net + BroadcasTheNet + broadcasting.gamesports.net + GameSports.net (false MCB) + broadcom.com + Broadcom + broadcomfoundation.org + Broadcom Foundation.org + broadinstitute.org + Broad Institute + broadland.gov.uk + UK Local Government + brockman.com + Brockman + brokenman.co + Brokenman + bromley.gov.uk + Bromley.gov.uk + bronto.com + Bronto Software (partial) + brooklinecollege.edu + Brookline College.edu + brooksidefund.com + Brookside Capital + brown.edu + Brown University (partial) + brownpapertickets.com + Brown Paper Tickets (partial) + browsealoud.com + BrowseAloud.com + browserid.org + BrowserID + browserleaks.com + BrowserLeaks + browsershots.org + BrowserShots + brueckenbauer.ch + Migros + bruteforce.gr + Bruteforce.gr (Partial) + bsdcan.org + BSD Can.org + bsi-fuer-buerger.de + Federal Office for Information Security + bsi.bund.de + Federal Office for Information Security + bt.com + BT (partial) + btc-e.com + BTC-E + btc-trade.ru + BTC-Trade.ru + btc.to + btc.to + btcbuy.info + BTC Buy + btcgear.com + BTC Gear.com + btcguild.com + BTCGuild.com + btcsportsbet.com + BTCSportsBet + btcstore.eu + BTC Store.eu + btczone.com + BTCZone + btdigg.org + BTDigg + bter.com + Bter.com + btg.mtvnservices.com + Viacom + btguard.com + BTGuard.com + bth.se + BTH.se + btjunkie.org + btjunkie + btsport.com + BT Sport + btsportbusiness.com + BT Sport for Business + btunnel.com + BTunnel + btwholesale.com + BT Wholesale.com + btwifi.co.uk + BT Wi-fi + btwifi.com + BT Wi-fi + bu.edu + Boston University (partial) + buch.ch + buch.ch + bucketexplorer.com + Bucket Explorer.com (partial) + bucketlistly.com + BucketListly.com (partial) + bucknell.edu + Bucknell University (partial) + bucyrustelegraphforum.com + Bucyrus Telegraph Forum + buddycube.com + BuddyCube.com + buddypress.org + BuddyPress.org + budgetgolf.se + Budgetgolf.se + budgetinsurance.com + Budget Insurance + budgetkredit.ch + budgetkredit.ch (partial) + budsgunshop.com + Buds Gun Shop + buerger-cert.de + Bürger-CERT + buff.ly + bit.ly vanity domains + buffalo.edu + University at Buffalo (partial) + buffalostate.edu + Buffalo State College (partial) + bufferapp.com + Buffer (partial) + bufferbloat.net + Bufferbloat + bugmenot.com + BugMeNot.com + bugs.exherbo.org + Exherbo Linux (CAcert, partial) + bugs.funtoo.org + Funtoo.org (partial) + bugs.gnewsense.org + Free Software Foundation + bugs.gpodder.org + gPodder (partial) + bugs.merproject.org + Mer Project (partial) + bugs.python.org + Python.org (cacert) + bugs.schokokeks.org + schokokeks.org + bugzil.la + bugzil.la + bugzilla.clamav.net + ClamAV.net (partial) + bugzilla.ipfire.org + IPFire.org (partial) + bugzilla.mozdev.org + Mozdev (partial) + bugzilla.quagga.net + Quagga + bulbman.com + BulbMan + bulksms.co.uk + BulkSMS + bulletin.net + Bulletin.net + bulletinmessenger.net + Bulletin Messenger.net + bulletproofexec.com + Bulletproof Exec.com (partial) + bullguard.com + Bullguard + bullockinc.com + Bullock Inc.com + bunchball.net + Bunchball (partial) + bund.de + Verwaltung Online + bundanon.com.au + Bundanon Trust + bundeskanzlerin.de + Bundeskanzlerin + bundesnetzagentur.de + Bundesnetzagentur + bundespolizei.de + Bundespolizei + bundestag.de + Deutscher Bundestag (partial) + bundesverfassungsgericht.de + Bundesverfassungsgericht + bungie.net + Bungie + bunkus.org + Bunkus.org + bunsen.wapolabs.com + WaPo Labs.com (partial) + bupa.com + Bupa + burlingtonfreepress.com + Burlington Free Press + burningshed.co.uk + Burning Shed + burningshed.com + Burning Shed + burnley.gov.uk + UK Local Government + burst.net + BurstNET (partial) + burstmedia.co.uk + Burst Media + burstmedia.com + Burst Media + burstnet.eu + BurstNET (partial) + burthub.com + Burt hub.com + business.gov.au + BusinessAU + business.idg.se + IDG.se (partial) + business.medbank.com.mt + Com.mt + business.tomtom.com + TomTom International (partial) + businessinsider.com + BusinessInsider (partial) + businesswire.com + Berkshire-Hathaway (partial) + bussgods.se + Bussgods.se + buy.yahoo.com.tw + Yahoo.com.tw (partial) + buyboard.com + BuyBoard (partial) + buycraft.net + Buycraft.net + buyfacefx.com + Silkn.com + buysellads.com + BuySellAds (partial) + buyveteran.com + Buy Veteran (partial) + buzzbytes.net + Buzzbytes.net + buzzdock.com + Buzzdock (partial) + buzzdoes.com + buzzdoes.com + buzzhosting.org + Buzzhosting.org + buzzurl.jp + Buzzurl + buzzurl.jp.eimg.jp + Buzzurl + buzzvpn.com + Buzz VPN + bva.bund.de + Federal Office of Administration + bverfg.de + Bundesverfassungsgericht + bviphotovideo.com + BVI Photo Video.com + bwin.com + iGaming (partial) + bww.com + Alticore (partial) + bx.businessweek.com + BusinessWeek.com (partial) + bycupon.com + By Cupón + bydavidwittig.com + by David Wittig.com + byo.com + Brew Your Own + byte.com + InformationWeek + bytemark.co.uk + Bytemark.co.uk (partial) + byu.edu + Brigham Young University (partial) + c-and-a.com + c-and-a.com + c-base.org + C-Base + c-spanvideo.org + C-SPAN Video.org (partial) + c.1tw.org + 1TW.org + c.enhance.com + Marchex (partial) + c.fixunix.com + FixUnix (partial) + c.mfcreative.com + Ancestry.com (partial) + c.o0bc.com + o0bc.com + c.tgknt.com + tgknt.com + c.velaro.com + Velaro (partial) + c.ymcdn.com + YMcdn.com + c1.neweggimages.com + Newegg (partial) + c3.reifman.org + Reifman.org (partial) + c3s.cc + C3S.cc + c3tag.com + C3tag.com + c4tw.net + c4tw.net (partial) + c64.assets-yammer.com + Yammer + c9.io + Cloud9 + ca-pca.fr + CA-PCR.fr + caa.co.uk + Civil Aviation Authority + cabal.ws + Cabal WS (partial) + cabforum.org + CA/Browser Forum + cabinetoffice.gov.uk + Cabinet Office + cable-tv-deals.com + www.cable-tv-deals.com + cables.com + Cables.com + cacert.org + CACert.org (CAcert) + cacetech.com + CaceTech + cache.addthiscdn.com + AddThis (partial) + cache.smithmonitoring.com + Smith Monitoring.com (partial) + cache.thumbs.sbstatic.com + Silobreaker (partial) + cache1.neodevlda.netdna-cdn.com + NeoBux.com (partial) + cadence.com + Cadence Design Systems (partial) + cadetnet.gov.au + Cadetnet + cadsoft.de + CadSoft + cadw.wales.gov.uk + Cadw (partial) + cafegate.com + cafegate.com + cafemakers.com + Cafemakers + cafepress.co.uk + CafePress (partial) + cafepress.com + CafePress (partial) + cair.com + CAIR.com (partial) + cairopost.youm7.com + Youm7.com (partial) + caisse-epargne.com + Caisse d'Epargne + cal.net + Cal.net + calderdale.gov.uk + UK Local Government + calendario.cc + Calendario.cc + calendars.com + Calendars.com (partial) + calgunsfoundation.org + Calguns Foundation.org + californiaunitedbank.com + California United Bank + californiawalkintubcompany.com + California Walk In Tub Company.com + calispora.org + Calispora + caller.com + Caller.com (partial) + calligra-suite.org + Calligra.org + calligra.org + Calligra.org + calomel.org + Calomel.org + caltech.edu + Caltech + calyx.net + calyx.net + calyxinstitute.org + Calyx Institute + camaya.net + camaya.net + cambeywest.com + Cambey & West (partial) + cambridge.org + Cambridge University Press (partial) + camden.gov.uk + UK Local Government + campact.de + Campact.de + campaign.odw.sony-europe.com + Sony-Europe.com + campaigneq.com + CampaignEQ.com + campaigner.com + Campaigner (partial) + campaignercrm.com + CampaignerCRM.com + campbx.com + CampBX.com + campinaopschool.nl + Campina (partial) + campstaffusa.com + Camp Staff USA + campuspack.eu + Campus Pack (partial) + canadahelps.org + CanadaHelps (partial) + canadapost.ca + Canada Post + canadianwebhosting.com + Canadian Web Hosting (partial) + canaldigital.dk + CanalDigital + canaldigital.se + CanalDigital + cancer-fi.directo.fi + Syöpäjärjestöt + cancer.fi + Syöpäjärjestöt + candhlures.com + CandH Lures.com (partial) + canlialem.com + Canlı Alem + canlii.org + CanLII + cannex.com + CANNEX + cansecwest.com + CanSecWest + canterbury.gov.uk + UK Local Government + canv.as + Canvas + canvasholidays.co.uk + Wyndham (partial) + canvasndecor.com + Canvas n decor.com + capdesign.idg.se + IDG.se (partial) + capify.org + Capistrano + capitaloneconnect.* + Capital One Connect + caprioli.se + Peter Caprioli + capris.no + Adlibris/Capris + caradvice.com.au + CarAdvice + carbonfund.org + Carbonfund.org + carbonmade.com + Carbonmade (partial) + carbonwind.net + Carbonwind.net + cardcash.com + CardCash.com + cardealerstudy.com + BMW China Custom Login + care-net.org + Care Net + care2.com + Care2.com + careerbuilder.com + CareerBuilder (partial) + careerperfect.com + CareerPerfect + careers.bremer.com + Bremer Bank + careers.dyson.com + Dyson (partial) + careers.fi + Careers.fi + careers.peopleclick.com + Peopleclick.com (false MCB) + careers.talemetry.com + Talemetry.com (partial) + carekris.com + Carekris.com + carenet.fnfismd.com + fnfismd.com (partial) + carepackage.org + CAREpackage (partial) + carestream.com + Carestream.com + carezone.com + Carezone.com + cargocollective.com + Cargo (partial) + cari.net + CARI.net (partial) + carleton.ca + Carleton.ca (partial) + carleton.edu + Carleton College + carlolly.co.uk + Co.uk + carnegiescience.edu + Carnegie Institution for Science + carousel.rsc.org + Royal Society of Chemistry (partial) + carpromods.com + CarProMods.com + carrier-lost.org + carrier-lost.org + cart.sxsw.com + South by Southwest (partial) + cartercenter.org + CarterCenter.org + cas.fit.edu + Florida Institute of Technology (partial) + cas.ki.se + KI.se + cas.org + Chemical Abstracts Service (partial) + casaar.com + Casaar.com (partial) + casascius.com + Casascius + casecurity.org + CA Security Council + caseking.biz + Caseking.biz + caseking.de + Caseking.de + cashback.co.uk + Cashback.co.uk (partial) + cashback4you.de + cashback4you + cashboardapp.com + subimage (partial) + cashier.95bet.com + 95Bet.com (partial) + casinoaffiliateprograms.com + CasinoAffiliatePrograms.com + casinoestrella.com + CasinoEstrella.com + casperogfrank.dk + Casper og Frank.de (false MCB) + casro.org + Casro (partial) + cassinoestrela.com + CassinoEstrela + castel-bayart.com + Castel-Bayart + castle-technology.co.uk + Castle-Technology.co.uk + catalog.plsinfo.org + Peninsula Library System (partial) + catalysthost.com + Catalyst Host.com + catalysttg.com + Catalyst Technology Group + catersnews.com + Caters News Agency (partial) + catincan.com + CatinCan + catlinseaviewsurvey.com + Catlin Sea Survey + catn.com + CatN.com + catooh.com + MAGIX (partial) + causes.com + Causes (partial) + causes.presscdn.com + Causes (partial) + cavium.org + Cavium.org + cbb.dk + Cbb.dk + cbcblueprint.com + CBC Blueprint + cbfisap.ed.gov + ED.gov (partial) + cbo.gov + US Congressional Budget Office + cbp.net.br + CBP.net.br + cbpweb.nl + Dutch Data Protection Authority + cbs.com + CBS (partial) + cbsstore.com + CBS Store + ccavenue.com + CCAvenue + ccc.co.il + CCC.co.il + ccc.de + ccc.de (CAcert) + ccccloud.com + CCC cloud.com + cccure.com + CCCure.com + cccure.org + CCCure.org + cccure.training + CCCure.training (partial) + ccdcoe.org + CCDCoE + cch.com + CCH + cchcatalog.com + CCH Information Solutions + cchgroup.com + CCH + ccianet.org + CCIA + ccodearchive.net + Comprehensive C Archive Network + ccrjustice.org + Center for Constitutional Rights + ccs.com + CCS (partial) + cda.nl + NL Politiek + cdig.me + cdig.me + cdn-net.com + cdn-net.com + cdn-sec.optmd.com + OptMD.com (partial) + cdn.*.truenudists.com + truenudists.com + cdn.adexcite.com + AdExcite (partial) + cdn.adnet-media.net + Adnet (partial) + cdn.asset.geek.net + Geek.net + cdn.assets-phoenix.net + Phoenix.edu (partial) + cdn.assets.craveonline.com + CraveOnline.com (partial) + cdn.axonify.com + Axonify (partial) + cdn.b5media.com + Alloy Digital (partial) + cdn.betacie.com + Beta & Cie (partial) + cdn.betacie.net + Beta & Cie (partial) + cdn.blisstree.com + Alloy Digital (partial) + cdn.blog-sap.com + SAP (partial) + cdn.blog.hubspot.com + HubSpot + cdn.bunadformenn.info + bunadformenn.info (partial) + cdn.ca9.uscourts.gov + US Courts.gov (partial) + cdn.cakecentral.com + Cake Central.com (partial) + cdn.casualcollective.com + KIXEYE (partial) + cdn.cdncomputer.com + cdncomputer.com + cdn.cdtoimge.com + Cupid plc CDN + cdn.cloudfiles.mosso.com + Rackspace (partial) + cdn.cpnscdn.com + Coupons, Inc (partial) + cdn.crushable.com + Alloy Digital (partial) + cdn.cstatic.net + Cstatic.net + cdn.dataopedia.com + Dataopedia.com (partial) + cdn.dealer.com + Dealer.com (partial) + cdn.dealerfire.com + DealerFire (partial) + cdn.derkeiler.com + Der Keiler.com (partial) + cdn.dersver.net + DersVerilir.net + cdn.duelinganalogs.com + Dueling Analogs.com (partial) + cdn.echoenabled.com + Echo Enabled + cdn.etrade.net + Etrade.com + cdn.evbuc.com + evbuc.com + cdn.exm.nr + examiner.com (partial) + cdn.flowtab.mobi + Flowtab.com + cdn.fnmag.co + FN Mag.co (partial) + cdn.geekwire.com + GeekWire (partial) + cdn.ghacks.net + gHacks.net (partial) + cdn.gnd-tech.com + GND-Tech.com (partial) + cdn.gotraffic.net + gotraffic.net (partial) + cdn.gsstatic.com + GoStats (partial) + cdn.gstreamer.com + GStreamer (partial) + cdn.head-fi.org + Head-Fi.org (partial) + cdn.images.dailystar-uk.co.uk + Daily Star (partial) + cdn.images.reevoo.com + Reevoo (partial) + cdn.imgjam.com + Jamendo (partial) + cdn.imgstat.com + Cupid plc CDN + cdn.instaemail.net + Instaemail.net + cdn.itproportal.com + Net Communities (partial) + cdn.jariangibson.com + Jarian Gibson.com (partial) + cdn.keepstat.com + I Want U (partial) + cdn.leafletjs.com + Leaflet JS.com (partial) + cdn.lesfurets.com + LesFurets.com (partial) + cdn.lib.newsvine.com + newsvine.com (partial) + cdn.lsistatic.com + LetsSingIt (partial) + cdn.makeagif.com + Make a Gif.com (partial) + cdn.mars-one.com + Mars One (partial) + cdn.media.discovermagazine.com + Discover Magazine (partial) + cdn.mommyish.com + Alloy Digital (partial) + cdn.motorola-2.com + Motorola (partial) + cdn.mxpnl.com + Mixpanel (partial) + cdn.mypypeline.com + Digital Shelf Space (partial) + cdn.okcimg.com + OkCupid (partial) + cdn.ology.com + Ology.com (partial) + cdn.onscroll.com + OnScroll.com (partial) + cdn.oreillystatic.com + O’Reilly Media (partial) + cdn.overclock.net + overclock.net (partial) + cdn.pastemagazine.com + Paste Magazine.com (partial) + cdn.picstat2.com + Alcuda (partial) + cdn.pictimgs.com + Cupid plc CDN + cdn.printfriendly.com + PrintFriendly (partial) + cdn.printfriendly.org + PrintFriendly (partial) + cdn.pro186.com + pro186.com (partial) + cdn.psddev.com + Perfect Sense Digital (partial) + cdn.punterlink.co.uk + Punterlink (partial) + cdn.rawnet.com + Rawnet.com (partial) + cdn.reedbusiness.com + Reed Business Information (partial) + cdn.scriptfodder.net + ScriptFodder + cdn.sencha.io + Sencha (partial) + cdn.shptrn.com + Shopatron (partial) + cdn.smack.co.uk + Smack.co.uk (partial) + cdn.sourcefednews.com + SourceFed (partial) + cdn.splatf.com + SplatF (partial) + cdn.sploder.com + Sploder.com (partial) + cdn.ssbkyh.com + SsbKyh.com (partial) + cdn.static-economist.com + Economist (partial) + cdn.static2img.com + Cupid plc CDN + cdn.staticneo.com + Neoseeker + cdn.statimgs2.com + Cupid plc CDN + cdn.su.edu + Shenandoah University (partial) + cdn.taboolasyndication.com + Taboolasyndication.com (partial) + cdn.thegloss.com + Alloy Digital (partial) + cdn.thegrindstone.com + Alloy Digital (partial) + cdn.thinglink.me + ThingLink (partial) + cdn.tinybuddha.com + Tiny Buddha.com (partial) + cdn.tinypass.com + Tinypass.com (partial) + cdn.toolbox.com + Toolbox.com (partial) + cdn.traceregister.com + Trace Register (partial) + cdn.tradelab.fr + Tradelab (partial) + cdn.trgt.eu + trgt.eu + cdn.ultrahdtv.net + Ultra HDTV (partial) + cdn.underwearexpert.com + Underwear Expert (partial) + cdn.vni.la + Vanilla Forums (partial) + cdn.washingtonexaminer.biz + The Washington Examiner (partial) + cdn.wl.easydategroup.com + Alcuda (partial) + cdn.yb0t.com + YieldBot (partial) + cdn.ywxi.net + ywxi.net + cdn.zenfolio.net + Zenfolio (partial) + cdn1.editmysite.com + editmysite.com (partial) + cdn1.talkingpointsmemo.com + Talking Points Memo.com (partial) + cdn1.therepublic.com + The Republic (partial) + cdn1.timminchin.com + Tim Minchin.com (partial) + cdn1.vendocdn.com + Vendo Services (partial) + cdn2.editmysite.com + editmysite.com (partial) + cdn2.shoptiques.net + Shoptiques.com (partial) + cdn3.jitscale.com + Jitscale.com (partial) + cdn5.fnmag.co + FN Mag.co (partial) + cdna.tid.al + Tid.al (partial) + cdncss-socialcomediallc.netdna-ssl.com + truenudists.com + cdnetworks.co.jp + CDNetworks (partial) + cdni.wired.co.uk + Wired (false MCB, partial) + cdnjs.com + cdnjs + cdnma.com + Net-Results (partial) + cdns.usablenet.com + Usablenet.com + cdon.dk + CDON.COM + cdon.eu + CDON.COM + cdon.fi + CDON.COM + cdon.no + CDON.COM + cdon.se + CDON.COM + cds1.yospace.com + Yospace.com (partial) + cdt.org + Center for Democracy & Technology + cduniverse.com + CD Universe (partial) + cdw.com + CDW and CDW-G + cdwg.com + CDW and CDW-G + ce1.com + Creative Endeavors + cebit.de + CeBIT.de (partial) + cecpdonline.org + Center for Early Childhood Professional Development + ced.sascdn.com + Smart AdServer (partial) + cede.ch + cede + celiac.org + Celiac Disease Foundation + cengagebrain.co.uk + Cengage (partial) + cengagebrain.com + Cengage (partial) + cenowarka.pl + Cenowarka.pl + censorship.govt.nz + Censorship.govt.nz + census.gov + US government (partial) + centerforrights.org + Center for Rights + centerlinebeta.net + Centerline Digital (partial) + centos.org + CentOS.org (partial) + centralcomputers.com + Central Computers.com + centralcontent-stage.fco.gov.uk + GOV.UK + centrance.com + CEntrance (partial) + centzy.com + Centzy + ceredigion.gov.uk + UK Local Government + cerit-sc.cz + CERIT-SC.cz + cerit.cz + CERIT.cz + cern.ch + CERN (partial) + cert-bund.de + CERT-Bund + cert-verbund.de + CERT-Verbund + cert.at + CERT.at + cert.fi + CERT.fi + cert.gov.uk + CERT-UK + cert.org + CERT + cert.pl + CERT Polska + cert.se + CERT.se + certible.com + Certible + certifiedsecure.com + Certified Secure.com + certify.gpwa.org + Gambling Portal Webmasters Association (partial) + certigna.fr + Certigna.fr (partial) + cesg.gov.uk + CESG + cex.io + CEX.IO (partial) + cf-example.com + cf-example.com + cf.komo.com + KOMO News (partial) + cf.scdn.co + Spotify (partial) + cf.sonymusic.com + SonyMusic (partial) + cf2.imgobject.com + Fanhatten (partial) + cfda.gov + Catalog of Domestic Federal Assistance + cfengine.com + CFEngine + cff.ch + Swiss Federal Railways (SBB/CFF/FFS) + cfif.org + Center for Individual Freedom (partial) + cfr.org + Council on Foreign Relations (partial) + cftc.gov + Commodity Futures Trading Commission (partial) + cgc.gov.au + Commonwealth Grants Commission + ch.ch + ch.ch + ch9.ms + ch9.ms (partial) + chainlove.com + Chainlove.com + chakasmmm.com + Chakas Mmm.com (partial) + challenge25.go.jp + Japanese government (partial) + challengepost.com + ChallengePost (partial) + chalmers.se + Chalmers + championsofregnum.com + Champions of Regnum.com + champssports.com + Champs Sports (partial) + change.org + Change.org + changemakers.com + Changemakers + changetip.com + ChangeTip.com + chango.com + Chango + channel4.com + Channel 4 (partial) + channel5.com + Channel 5 + chaox.net + chaox.net + chapman.edu + Chapman.edu + charities.org + America's Charities + charitynavigator.org + Charity Navigator (false MCB) + charitywater.org + charity water.org + charlottenaturemuseum.org + Charlotte Nature Museum + charnwood.gov.uk + UK Local Government + chartbeat.com + Chartbeat (partial) + chartbigchart.gtm.idmanagedsolutions.com + Interactive Data Corporation (partial) + charting.vwdservices.com + vwd services.com (partial) + chartio.com + Chartio.com + chartsinfrance.net + Charts in France + chase.com + Chase + chasepaymentech.com + Chase Paymentech.com + chat.hostican.com + Hostican Web Hosting + chat.livechatinc.net + LiveChat (partial) + chatango.com + Chatango.com + chatme.im + ChatMe.im (partial) + chaton.com + ChatON + chatsecure.org + ChatSecure + chatserver.comm100.com + comm100.com + chatter.com + Chatter + chaturbate.com + Chaturbate.com (partial) + chatwithourteam.com + InMotion Hosting + chcidoo2.cz + Telefónica (partial) + chdir.org + chdir.org (partial) + cheapairportparkingbirmingham.com + Cheap Airport Parking + cheapassfiction.com + Cheapass Fiction.com + cheapssl.com + CheapSSL.com + cheapssls.com + CheapSSLs + check24.de + Check24.de + checkdomain.de + Checkdomain + checkin.continental.com + Continental + checkmarx.com + Checkmarx.com (partial) + checkout.subscriptiongenius.com + SubscriptionGenius.com (partial) + checkpoint.com + Check Point (partial) + checksconnect.com + Harland Clarke + checktls.com + Checktls.com + cheetahmail.com + CheetahMail + cheezburger.com + Cheezburger + chemspider.com + Royal Society of Chemistry (partial) + cherry.de + Cherry.de + cherwell.gov.uk + UK Local Government + cheshireeast.gov.uk + UK Local Government + chessbase-shop.com + ChessBase-shop.com (partial) + cheznous.com + Wyndham (partial) + chickensoup.com + Chicken Soup for the Soul + chiclet.ymlp.com + Your Mailing List Provider + child3.ki.se + KI.se + chiliproject.org + ChiliProject.org (partial) + chillicothegazette.com + Chillicothe Gazette + chillingeffects.org + ChillingEffects + chime.in + Chime.in + chinadialogue.net + chinadialogue.net + chinalaborwatch.org + China Labor Watch + chinapaymentservices.com + China Payment Services + chip-app.de + CHIP-Kiosk.de + chip-digital.de + CHIP-Digital.de + chip-kiosk.de + CHIP-Kiosk.de + chipin.com + ChipIn (partial) + chipworks.com + Chipworks + chitika.com + Chitika (partial) + chitika.net + Chitika.net (partial) + chl.it + CHL.it + chlomo.org + Chlomo.org (partial) + chocolatey.org + Chocolatey.org + choopa.com + Choopa.com + chooseyourhallroom.dmu.ac.uk + DMU + chris-lamb.co.uk + Chris-Lamb.co.uk + chris.lu + Chris.lu + chrisanthemums.com + Chrisanthemums + chriscoyne.com + Chris Coyne.com + chrisnewland.com + Chris Newland.com + christ-swiss.ch + Coop + christiangale.com + ChristianGale.com + christianprayercenter.com + Christian Prayer Center + chromeadblock.com + AdBlock + chromedata.com + Chrome Data + chromerooms.com + Chrome Rooms.com + chromespinners.com + Chrome Spinners + chromestatus.com + Chrome Status.com + chromium.org + Chromium.org + chronicle.com + Chronicle + chroniclebooks.com + McEvoy Group (partial) + chroniclesofgeorge.com + The Chronicles of George + chronixradio.com + ChroniX Radio.com + chroot-me.in + chroot-me.in + chs.us + chs.us + chtah.com + CheetahMail + chzb.gr + Cheezburger + cia.com + CIA Cybersurf + cia.gov + Central Intelligence Agency + ciao.de + Ciao (partial) + cibc.com + CIBC + cic.ch + Banque CIC (Suisse) + cic.fr + Banque CIC + cilkplus.org + Cilk Plus.org + cimacorp.net + Factory Expo Home Centers + cinapalace.com + cinapalace.com + cincinnati.com + Cincinnati.com (partial) + cineble.com + cineble.com + cinemanow.com + CinemaNow (partial) + cinemovies.fr + CineMovies + cinestar.de + CineStar + cinfo.ucsd.edu + UCSD + cinfu.com + Cinfu.com (partial) + cio.com.au + CIO.com.au + cipherlawgroup.com + CipherLaw + cipherli.st + Cipherli.st + ciphershed.org + CipherShed.org + cir.ca + Cir.ca + circleofmoms.com + Circle of Moms + circuitspro.name + Circuitspro.name + circularhub.com + Circular Hub + circulationportal.sacbee.com + The Sacramento Bee (partial) + cironline.org + CIR Online.org (partial) + cirt.net + CIRT.net + cirtexhosting.com + Cirtex Hosting.com + cirw.in + cirw.in + cisofy.com + CISOfy.com (partial) + citadium.com + Citadium.com (partial) + citeseerx.ist.psu.edu + Pennsylvania State University (partial) + citeulike.org + CiteULike + citi.com + Citi.com + citialumninetwork.com + Citi Alumni Network + citizen-times.com + Asheville Citizen-Times + citizen.org + Public Citizen + citizenfourfilm.com + Citizenfour Film.com + citizenlab.org + The Citizen Lab + citizensinformation.ie + CitizensInformation + citmedialaw.org + DMLP.org (partial) + citrix.com + Citrix (partial) + citrusbyte.com + Citrusbyte.com + city-link.co.uk + City Link + city.ac.uk + City University London + city.com.ua + City.com.ua + cityemail.com + City Mail + cityofchicago.org + City of Chicago + cityoflondon.gov.uk + UK Local Government + citywerkz.com + Citywerkz.com + ciuvo.com + Ciuvo.com + civicrm.org + CiviCRM + civicscience.com + CivicScience (partial) + ciw.edu + Carnegie Institution for Science + cj.com + Commission Junction + cjib.nl + NL Overheid + cjs-cdkeys.com + CJS-CDKeys.com + cl.ly + Cl.ly (partial) + claimconnect.net + EDI Health Group + claimformsplus.com + Claim Forms Plus + clarionledger.com + Clarion-Ledger + clarityray.com + ClarityRay (partial) + clasconsultants.net + CLAS Consultants + class-central.com + Class-Central.com + classifieds.nncogannett.com + Gannett Company (partial) + classzone.com + ClassZone.com + cleanenergyexperts.com + Clean Energy Experts + cleanenergyfinancecorp.com.au + Clean Energy Finance Corporation + cleanenergyregulator.gov.au + Clean Energy Regulator + cleanprint.net + CleanPrint.net + clear-code.com + Clear-Code.org + clear-link.com + Clear-link.com + clearchain.com + ClearChain + clearlink.com + Clearlink.com + cleverbridge.com + cleverbridge (partial) + cleverbridge.org + cleverbridge (partial) + cli-apps.org + openDesktop.org + click-finder.jp + Showcase-TV + click-sec.com + Click-Sec.com + click.lavabit.com + Lavabit + click.showcase-tv.jp + Showcase-TV + clickandpledge.com + Click and Pledge.com + clickbank.com + ClickBank + clickbank.net + ClickBank + clickdelivery.gr + Clickdelivery.gr + clickequations.net + ClickEquations.net + clickfun.com + Clickfun Casino + clickfuncasino.com + Clickfun Casino + clicklivechat.com + Clicklivechat.com + clickon.com.ar + ClickOn + clickssl.com + ClickSSL.com + clicktale.com + ClickTale + clicktools.com + Clicktools + clicktracks.com + Lyris (partial) + clicky.com + GetClicky + client.bitvps.com + Bitcoin VPS (partial) + client.cdn77.com + CDN77.com (partial) + client.lock-box.net + Lockbox.com + client.museter.com + Museter.com (partial) + clientarea.ewebscapes.com + WebDevStudios (partial) + clientchat.minacs.com + Minacs.com + clients.comcate.com + Comcate (partial) + clients.electricstudio.co.uk + Electric Studio (partial) + clients.medialayer.com + MediaLayer.com (partial) + clients.microtronix-tech.com + Microtronix (partial) + clients1.google.* + Google Search + clients1.google.co.* + Google Search + clients1.google.com.* + Google Search + clients2.google.* + Google Search + clients2.google.co.* + Google Search + clients2.google.com.* + Google Search + clients3.google.* + Google Search + clients3.google.co.* + Google Search + clients3.google.com.* + Google Search + clients4.google.* + Google Search + clients4.google.co.* + Google Search + clients4.google.com.* + Google Search + clients5.google.* + Google Search + clients5.google.co.* + Google Search + clients5.google.com.* + Google Search + clients6.google.* + Google Search + clients6.google.co.* + Google Search + clients6.google.com.* + Google Search + clientservices.automatedqa.com + SmartBear (partial) + climatecentral.org + Climate Central + clinicaltrials.gov + ClinicalTrials.gov + clinkle.com + Clinkle.com + clipperz.is + Clipperz.is + clkads.com + clkads.com + clkmon.com + clkads.com + clkrev.com + clkads.com + cln.cisco.mobi + Cisco.mobi (partial) + clnk.me + MyLikes + clockworkmod.com + Clockworkmod.com + clothingattesco.com + Clothing at Tesco.com + cloud.aculab.com + Aculab.com (partial) + cloud.idg.se + IDG.se (partial) + cloud.ihme.washington.edu + University of Washington (partial) + cloud.jeffreifman.com + Jeff Reifman.com (partial) + cloud.jivesoftware.com + Jive Software.com (partial) + cloud.sagemath.org + Sagemath.org + cloud.seafile.com + Seafile (partial) + cloud.staticzacks.net + Zacks Investment Research (partial) + cloudaccess.net + Cloud Access.net (partial) + cloudafrica.net + CloudAfrica.net + cloudcontrol.com + cloudControl.com (partial) + cloudcracker.com + CloudCracker + cloudera.com + Cloudera.com + cloudflare.com + CloudFlare + cloudflareapp1.info + Respawn Security + cloudflarechallenge.com + CloudFlare Challenge.com + cloudforce.com + Cloudforce.com + cloudforge.com + CloudForge (partial) + cloudfoundry.com + Cloud Foundry (partial) + cloudfront.ingenico.com + Ingenico Group (partial) + cloudfront.mediamatters.org + MediaMatters.org (partial) + cloudfront.omgubuntu.co.uk + OMG! Ubuntu! (partial) + cloudinary.com + Cloudinary (partial) + cloudmark.com + Cloudmark + cloudmonitor.nimsoft.com + CA Technologies + cloudns.com.au + CloudNS.com.au + cloudproven.net + Cloud Proven.net + cloudscaling.com + Cloudscaling.com + cloudsecurityalliance.org + Cloudsecurityalliance.org + cloudsigma.com + CloudSigma + cloudsleuth.net + CloudSleuth + cloudsponge.com + CloudSponge (partial) + cloudswitch.com + CloudSwitch + cloudtrax.com + CloudTrax.com + cloudup.com + Cloudup.com + cloudwear.com + Cloudwear.com + clp.ly + Curate.Us (partial) + clssl.org + clssl.org + cltglobal.com + CLTglobal.com + clubcompy.com + ClubCompy + clubs.union.rpi.edu + Rensselaer Polytechnic Institute + cluster1.easy-hebergement.net + Easy Hébergement + clusterconnection.com + Cluster Connection.com (partial) + clusters.de + Clusters.de + cm.commerce5.com + Digital River (partial) + cm1.criticalmass.com + Critical Mass (partial) + cmdev.com + CM Dev.com + cmpadministration.com + CMP + cmpxchg8b.com + CMPXCHG8B + cms.dynamo-dresden.de + Dynamo Dresden + cms.elderscrolls.com + ZeniMax Media (partial) + cms.gov + US government (partial) + cms.hhs.gov + US government (partial) + cms.winoptions.com + Winoptions.com (partial) + cmscdn.staticcache.org + William Hill (partial) + cmswire.com + CMSWire + cmu.edu + Carnegie Mellon University (partial) + cname.createsend.com + Createsend.com (partial) + cnb.cx + bit.ly vanity domains + cnbc.com + CNBC (partial) + cno.org + College of Nurses of Ontario (partial) + co-operativebank.co.uk + co-operative bank + co3sys.com + Co3 Sys.com + coag.gov.au + Council of Australian Governments + coastalmicrosupply.com + Coastal Micro Supply (partial) + coastdigital.co.uk + Coast Digital + cobaltmania.com + Cobalt Mania.com + cod.ed.gov + ED.gov (partial) + code.breakfastquay.com + Breakfast Quay (partial) + code.ionicframework.com + Ionic Framework.com (partial) + code.org + Code.org + code.tinypass.com + Tinypass.com (partial) + code.webplatform.org + WebPlatform + code42.com + Code42.com + codeascraft.com + Code as Craft.com + codeaurora.org + CodeAurora + codebasehq.com + Codebase HQ.com (partial) + codecoop.org + Codecoop (CAcert) + codecov.io + Codecov + codefund.io + codefund.io (partial) + codehs.com + CodeHS.com + codeofhonor.com + Code of Honor + codepen.io + CodePen.io (partial) + codeplex.com + Codeplex + codersclan.net + CodersClan.net + coderwall.com + Coderwall + codeschool.com + Code School.com (partial) + codesourcery.com + Mentor Graphics (partial) + codespeak.net + codespeak + codeweavers.* + CodeWeavers (partial) + coe.int + Council of Europe (partial) + coevorden.nl + NL Overheid + cohnreznick.com + CohnReznick.com + coinaxis.com + CoinAxis.com + coinbase.com + Coinbase (partial) + coindl.com + CoinDL + coinurl.com + CoinURL.com + cokecce.com + Coke CCE.com + cola-hotel.net + ColaHotel + colbertnation.com + Colbert Nation (partial) + colino.net + Colin Leroy + collab.net + CollabNet + collabora.co.uk + Collabora (partial) + collabora.com + Collabora (partial) + collada.org + COLLADA + collateralmurder.com + Collateral Murder + collect.cn.miaozhen.com + miaozhen.com + collectd.org + collectd.org + collector.githubapp.com + GitHub + collector.statowl.com + StatOwl.com (partial) + collegeboundfund.com + CollegeBoundfund (partial) + collegeclublife.com + COLLEGEclubLIFE.com + collegiatepeaksbank.com + Collegiate Peaks Bank + colocationamerica.com + Colocation America.com + coloman.nl + Coloman.nl + colorado.edu + University of Colorado at Boulder (partial) + coloradoan.com + The Coloradoan + coloradoattorneygeneral.gov + Colorado State Attorney General + coloradocaptures.com + Colorado Captures + coloradonocall.com + Official Colorado No-Call List + colors-il.com + colors-il.com + colossal.com + ThisisColossal.com (false MCB) + colossal.jp + Colossal.jp (partial) + comcast.com + Comcast (partial) + comcav.com + ComCav.com + comcourts.gov.au + Commonwealth Courts Portal + comdirect.de + comdirect bank + cometdocs.com + Cometdocs.com (partial) + comic-con.net + Comic-Con International + comic-con.org + Comic-Con International + comic-rocket.com + Comic-Rocket.com + comixology.com + comiXology.com (partial) + commandfive.com + Command Five + commando.io + Commando.io (partial) + comments.richarddawkins.net + Richard Dawkins Foundation (partial) + commercialappeal.com + E. W. Scripps Company (partial) + commlink.org + CommLink.org (partial) + common.restaurantfurnitureresource.com + Innovative Food Concepts (partial) + common.staticskynet.be + staticskynet.be + commonapp.org + Common App + commoncrawl.org + CommonCrawl + commoncriteriaportal.org + Common Criteria Portal + commondreams.org + CommonDreams + commotionwireless.net + Commotionwireless.net + commscope.com + CommScope.com (partial) + communicatelive.co.uk + Communicate Live + communicatoremail.com + Communicator Corporation (partial) + communigate.com + CommuniGate + communigator.co.uk + CommuniGator.co.uk + community-journalism.net + Texas Center for Community Journalism + community.artemis-ia.eu + Artemis-IA.eu (partial) + community.bistudio.com + Bohemia Interactive (partial) + community.elgg.org + Community.elgg.org + community.giffgaff.com + giffgaff + community.mega.com + Mega.com (partial) + community.nasdaq.com + NASDAQ (partial) + community.remedygames.com + Remedy Entertainment (partial) + community.sciencecareers.org + Sciencemag.org (partial) + community.ubuntu.com + Ubuntu.com (false MCB) + community.ussf2010.org + US Social Forum (partial) + community.wbgames.com + Community.wbgames.com + community.wwe.com + WWE.com (partial) + comnap.aq + COMNAP.aq + comodo.com + Comodo + comodo.net + Comodo + comodogroup.com + Comodo + companiesintheuk.co.uk + CompaniesInTheUK + compaq.com + Compaq.com + comparethemarket.com + Compare The Market + compari.ro + Árukereső + comparis.ch + Comparis.ch + compendium.com + Compendium.com + compendiumblog.com + Compendium + compete.com + Compete (partial) + competitionsbywyndham.com.au + Wyndham (partial) + complaint.ic3.gov + US Internet Crime Complaint Center + complang.org + CompLang.org + completelyprivatefiles.com + CompletelyPrivateFiles.com + completion.amazon.co.uk + Amazon Associates + complex-systems.com + Complex-systems.com + compliancesigns.com + ComplianceSigns.com + compteur.fr + Compteur.fr + compulab.co.il + CompuLab.co.il + computer.ly + Computer Libya + computerandvideogames.com + Future Publishing (partial) + computerbasedmath.org + Computerbasedmath.org + computerfulfillment.com + Computer Fulfillment + computersnyou.com + ComputersnYou.com (partial) + computersweden.idg.se + IDG.se (partial) + computeruniverse.net + computeruniverse + computerworld.com + ComputerWorld (partial) + computerworld.com.au + IDG.com.au + computerworld.com.edgesuite.net + ComputerWorld (partial) + compuware.com + Compuware (partial) + comscore.com + comScore.com (partial) + comscoredatamine.com + comScore Data Mine.com + comsigntrust.com + ComSignTrust.com + comsuper.gov.au + ComSuper + comviq.se + Comviq.se + concerts.livenation.com + Live Nation Entertainment (partial) + concrete5.org + concrete5 (partial) + concur.com + Concur.com + condenast.com + Condé Nast (partial) + condenaststore.com + Condé Nast (partial) + condosforeveryone.com + Condominiums for Everyone + conduit.com + Conduit (partial) + conetrix.com + CoNetrix + conference.inc.com + Inc.com (mixed content) + confianzaonline.es + Confianza Online + config.schmidtcom.de + Schmidtcom.de (partial) + config.schokokeks.org + schokokeks.org + confirmit.com + Confirmit + conformal.com + Conformal Systems + confused.com + Confused.com (partial) + confuzzled.org.uk + Confuzzled + congstar.de + congstar + connect.facebook.net + Facebook + connect.iso.org + ISO.org (partial) + connect.me + Connect.me + connect.megapathwholesale.com + MegaPath (partial) + connect.paradoxplaza.com + Paradox Interactive (partial) + connect.withsix.com + WithSIX (Partial) + connect4fitness.com + Connect4Fitness + connecthr.nl + Campina (partial) + connexity.net + Connexity.net + connman.net + ConnMan + conoha.jp + ConoHa.jp + conscallhome.com + ConsCallHome.com + consecur.de + ConSecur + console.appnexus.com + AppNexus (partial) + console.twistage.com + Twistage (partial) + console.ubertags.com + UberTags (partial) + consortiumlibrary.org + Consortium Library + constantcontact.com + Constant Contact (partial) + consumer.gov + Consumer.gov + consumeraffairs.com + ConsumerAffairs.com (partial) + consumerdirect.gov.uk + Adviceguide (partial) + consumerreports.org + Consumer Reports.com (false MCB) + consumersniper.com + ConsumerSniper.com + consumerswin.com + Cosumers Win.com + consumidor.gov + Consumer.gov + contact-privacy.com + Tucows (partial) + contact.bad-dragon.com + Bad Dragon + contactprivacy.com + Contact Privacy + contactus.com + ContactUs.com (partial) + contactus.netflix.com + Netflix (partial) + content.ad + Content.ad (partial) + content.azorus.com + Azorus (partial) + content.developer.mashery.com + Mashery (partial) + content.dl-rms.com + DL-rms.com + content.dyson.co.uk + Dyson (partial) + content.etilize.com + GfK Etilize (partial) + content.eventim.com + Eventim (partial) + content.foxtvmedia.com + foxtvmedia.com + content.internetvideoarchive.com + Internet Video Archive.com (partial) + content.mkt51.net + Silverpop (partial) + content.mkt941.com + Silverpop (partial) + content.mobileasiaexpo.com + Mobile Asia Expo (partial) + content.prnewswire.com + PR Newswire (partial) + content.rolex.com + Rolex.com (partial) + contenta.mkt1710.com + Silverpop (partial) + contentcafe2.btol.com + Baker & Taylor (minimal) + contentdn.net + contentdn.net + contentwatch.com + Content Watch + contextly.com + Contextly.com (partial) + contextweb.com + PulsePoint (partial) + continental.com + Continental + control.preyproject.com + PreyProject + controlcenter.gigahost.dk + Gigahost.dk + controllermax.com + ControllerMAX.com (partial) + controlpanel.vgocom.com + VGO Com.com (partial) + controlscan.com + ControlScan.com + convar.com + CONVAR (partial) + convar.de + CONVAR (partial) + conversionruler.com + MarkRuler (partial) + cookie.fdih.dk + Foreningen for Dansk Internethandel (partial) + coolcart.net + CoolCart.Net + cooliris.com + Cooliris + coolkeywest.com + Cool Key West + coolminiornot.com + CoolMiniOrNot.com + coop.no + Coop.no + coopathome.ch + Coop + cooperation-online.ch + Coop + cooperazione.ch + Coop + coophotellkupp.no + Coop.no + coopzeitung.ch + Coop + copernic.com + Copernic.com (partial) + copiny.com + Copiny (partial) + copy.com + Copy.com (partial) + copy.me + eToro (partial) + copyright-watch.org + Copyright-Watch.org + copyright.com + Copyright Clearance Center + corbinfisher.com + Corbin Fisher + core.telegram.org + Telegram.org + coreboot.org + coreboot (partial) + corecommerce.com + CoreCommerce + coreix.net + Coreix (partial) + corelan.be + Corlan Team + coremotives.com + CoreMotives.com + coreos.com + CoreOS.com + corkuniversitypress.com + Cork University Press.com + cornell.edu + Cornell University (partial) + corningcu.org + Corning Credit Union + corp.riyadonline.com + Riyadonline.com + corpimages.de + corpimages.de + corpmail.otenet.gr + OTE + corporatedomains.com + Corporation Service Company + corsair.com + Corsair.com (partial) + cortera.com + Cotera (partial) + cosmo.org + Cosmo.org + costco.com + Costco + cotse.net + Cotse.net + cottages4you.co.uk + Wyndham (partial) + cottagesdirect.co.uk + Wyndham (partial) + cottageselection.co.uk + Wyndham (partial) + couchbase.com + Couchbase (partial) + couchpota.to + CouchPota.to + couchsurfing.org + Couchsurfing + counter.li.org + Linux Counter + countermail.com + CounterMail.com + county-star.com + The County Star (partial) + coupons.com + Coupons, Inc (partial) + couragefound.org + Courage Found.org + courant.com + Tribune (partial) + courierpostonline.com + Courier-Post (partial) + courrielweb.videotron.ca + Videotron.com (partial) + coursera.org + Coursera + courthousenews.com + Courthouse News Service + courtlistener.com + CourtListener.com + courtneyluv.com + BlueHost clients + courtsofnz.govt.nz + Courts of New Zealand + covacations.com + Continental + coverageforall.org + Foundation for Health Coverage Education + coveralls.io + Coveralls.io + coverartarchive.org + MusicBrainz + coveredca.com + Covered California (partial) + coveredca.org + Covered California (partial) + coveredcacertifiedpartners.com + Covered California (partial) + coverfire.com + Coverfire.com + coverforyou.com + Coverforyou.com + coveritlive.com + CoveritLive.com (partial) + coverstand.com + CoverStand.com + covisint.com + Covisint + cox.com + Cox Communications (partial) + coxbusiness.com + Cox Communications (partial) + coxdigitalsolutions.com + Cox Digital Solutions (partial) + coxds.com + Cox Digital Solutions (partial) + coxnewsweb.com + coxnewsweb.net + cozmedics.com.au + COZmedics.com.au + cp.element5.com + Digital River (partial) + cp.gohsphere.com + JodoHost (partial) + cp.win-is.com + Win-is.com + cp.win-sv.jp + Win-sv.jp + cpanel.guru + cPanel.guru + cpanel.net + cPanel (partial) + cpaptalk.com + cpaptalk.com (partial) + cpaste.org + cpaste + cpbonlinebanking.com + Collegiate Peaks Bank + cpj.org + CPJ + cpmstar.com + CPMStar + cpni.gov.uk + Centre for the Protection of National Infrastructure (CPNI) + cps-static.rovicorp.com + Rovi (partial) + cpsc.gov + CPSC.gov + cpubenchmark.net + CPU Benchmark.net + cpunks.org + Cpunks.org + cr0.org + cr0.org (partial) + crackedconsole.com + crackedconsole.com + crackstation.net + CrackStation.net + craftbanter.com + CraftBanter + craftstats.com + CraftStats.com + craigslist.org + Craigslist.org (partial) + crainsnewyork.com + Crain Communications (partial) + craphound.com + Craphound + crashplan.com + CrashPlan (partial) + crashspace.org + Crash Space + crate.io + Crate.io + crazyegg.com + Crazy Egg (partial) + crazzed.com + Crazzed.com + crbug.com + Chromium.org + crcpress.com + Informa (partial) + create.msdn.com + MSDN (partial) + createspace.com + CreateSpace + creation.co.uk + Creation + creative.rev2pub.com + rev2pub.com + creativecommons.net + Creative Commons (partial) + creativecommons.org + Creative Commons (partial) + creativegallery.axa.com + AXA (partial) + creativelittlereaders.com + Creative Little Readers.com (partial) + creativepartnershipsaustralia.org.au + Creative Partnerships Australia + creativeskills.be + Creativeskills.be (partial) + creativity-online.com + Crain Communications (partial) + creators.ning.com + Ning (false MCB) + credit-suisse.com + Credit Suisse + creditdisputeprogram.com + CreditDisputeProgram.com + creditrepairtrust.com + Credit Repair Trust.com + creditreportnation.com + Credit Report Nation + creocommunico.com + Host Creo + cri.ucsd.edu + UCSD + cricket.redbull.in + Red Bull (partial) + crikey.com.au + Crikey (partial) + crimecommission.gov.au + Australian Crime Commission + crm-metrix.com + CRM Metrix + crm.onlime.ch + Onlime.ch + crn.com + CRN + crn.verticalsearchworks.com + CRN + crocko.com + Crockotec (partial) + crocs.com + Crocs + cronius.nl + Cronius.nl + croscill.com + Croscill.com (partial) + crossrider.com + Crossrider (partial) + crowdculture.se + CrowdCulture.se + crowdcurity.com + Crowdcurity.com + crowdfactory.com + Crowd Factory + crowdsupply.com + Crowd Supply.com (partial) + crowdtangle.com + CrowdTangle (partial) + crp.gov.sk + SlovakGoverment + crrev.com + Chromium.org + cru.org + Cru.org + crucial.com + Crucial.com (partial) + cruisersforum.com + CruisersForum.com + crunchboard.com + AOL (partial) + cryptabyte.com + CryptAByte.com + cryptad.com + CryptAd.com + cryptanalysis.eu + Cryptanalysis + cryptedmemo.com + CryptedMemo.com + crypteianetworks.com + Crypteia Networks.com (partial) + cryptip.com + CryptIP.com + crypto.cat + Crypto.cat + crypto.is + Crypto.is + cryptocloud.ca + Cryptocloud.ca + cryptocloud.com + Cryptocloud (partial) + cryptocloud.org + Cryptocloud (partial) + cryptocoding.net + CryptoCoding + cryptocoincharts.info + Cryptocoin Charts.info + cryptocoinsnews.com + CryptoCoinsNews.com + cryptohaze.com + Cryptohaze + cryptolux.org + CryptoLUX.org + cryptonetwork.com + CryptoNetwork.com + cryptonit.net + cryptonit + cryptoparty.in + Cryptoparty + cryptoparty.org + Cryptoparty + cryptoseal.com + CryptoSeal.com + cryptosms.org + CryptoSMS (CAcert) + cryptothrift.com + CryptoThrift.com + cryptotweet.com + CryptoTweet.com + cryptovpn.com + CryptoVPN.com + crystaldelights.com + Crystal Delights.com + crz.gov.sk + SlovakGoverment + cs-cart.com + CS-Cart + cs.fit.edu + Florida Institute of Technology (partial) + cs.idg.se + IDG.se (partial) + cs.is + bit.ly vanity domains + cs.joensuu.fi + University of Eastern Finland (partial) + cs.ucsd.edu + UCSD + cs.utah.edu + University of Utah (partial) + csawctf.poly.edu + Poly.edu + csbaacademy.com + CSBA Academy.com (partial) + csbs.utah.edu + University of Utah (partial) + csc.com + CSC (partial) + csc.gov.au + Commonwealth Superannuation Corporation + cscglobal.com + Corporation Service Company + cscprotectsbrands.com + Corporation Service Company + csctrustedsecure.com + CSCtrustedsecure.com + cse.ucsd.edu + UCSD + csiro.au + CSIRO (partial) + csirt.cz + CSIRT.CZ + csis-scrs.gc.ca + Canadian Security Intelligence Service + csis.dk + CSIS.dk + csis.gc.ca + Canadian Security Intelligence Service + csis.org + CSIS.org + csjobb.idg.se + IDG.se (partial) + csob.sk + Csob.sk + cspforum.eu + CSP Forum.eu + cspinet.org + CSPInet.org + csquad.org + csquad.org + csrsupport.com + CSRSupport.com + css.cdn.audiko.net + Audiko + css.csnstatic.com + csn static.com (partial) + css.gov.au + Commonwealth Superannuation Scheme + css.mapreporter.navteq.com + NAVTEQ (partial) + css.pantheos.com + Pantheos (partial) + csul.iii.com + Link+ Catalog + csulb.edu + California State University (partial) + csync.org + csync.org + ct-cds.con-tech.de + con-tech.de (partial) + ctera.com + CTERA Networks + ctf.thechildrensmutual.co.uk + The Children's Mutual (partial) + ctftime.org + CTFtime.org + ctrack.metrics34.com + metrics34.com (partial) + cts-strasbourg.eu + Cts-strasbourg.eu + cts.vresp.com + VerticalResponse + ctswholesalesunglasses.com + CTS Wholesale Sunglasses + ctt.org + ctt.org + ctt.pt + Ctt + ctunnel.com + CTunnel + cubics.com + Cubics + cubplat.bidsystem.com + Cubics + cuidadodesalud.gov + CuidadoDeSalud.gov + cultura.no + Cultura Sparebank + culturesforhealth.com + Cultures for Health.com + cumulusnetworks.com + Cumulus Networks (partial) + cunb.com + California United Bank + cuny.edu + City University of New York (partial) + cup.msgfocus.com + Adestra (partial) + cupcake.io + Cupcake + cupcake.is + Cupcake + cupid.com + Cupid (partial) + cups.org + CUPS.org + curate.us + Curate.Us (partial) + curbed.cc + bit.ly vanity domains + cure53.de + Cure53.de + curiosity-driven.org + curiosity-driven.org + curlingworld.com + Curling World.com + current.com + Current TV (partial) + curvehost.com + Curvehost + cusp.com + TPG Capital (partial) + custhelp.com + RightNow Technologies (partial) + custodianvaults.com.au + Custodian Vaults.com.au + customer.innometrics.com + Innometrics.com (partial) + customercare.kansas.com + Kansas.com (partial) + customerhub.net + Infusionsoft (partial) + customerlobby.com + Customer Lobby (partial) + customers.qwk.net + QWK.net (partial) + customtiburon.com + Custom Tiburon + customwheelconnection.com + CustomWheelConnection.com (partial) + customz.nustarz.com + NuStarz.com (partial) + cutedigi.com + CuteDigi + cuusoo.net + Cuusoo (partial) + cvent.com + Cvent.com (partial) + cvimellesgriot.com + CVI Melles Griot + cvut.cz + Czech Technical University in Prague + cwaa.ki.se + KI.se + cwi.nl + Centrum Wiskunde & Informatica + cwspodmusic.com + CWSPOD Music (partial) + cxcloud.com + Cxcloud.com + cxsecurity.com + cxsecurity.com + cyanogenmod.org + CyanogenMod.org (partial) + cyberaces.org + CyberAces (partial) + cyberagent.co.jp + CyberAgent + cyberaide.ca + Cybertip.ca + cybercon.com + Cybercon (partial) + cyberduck.io + Cyberduck.io + cyberfret.com + Cyberfret.com + cyberghostvpn.com + CyberGhost + cyberguerrilla.org + CyberGuerrilla.org + cyberpatrol.com + CyberPatrol (partial) + cyberphoto.fi + CyberPhoto AB + cyberphoto.se + CyberPhoto AB + cybersecuritychallenge.org.uk + Cyber Security Challenge + cybershambles.com + CyberShambles.com + cybersicherheits-allianz.de + Allianz für Cyber-Sicherheit + cybersitter.com + CYBERsitter + cyberstreetwise.com + Cyberstreetwise + cybertip.ca + Cybertip.ca + cyberwar.nl + Cyberwar.nl + cybozu.com + Cybozu.com + cygwin.com + Cygwin.com (partial) + cykloteket.se + Cykloteket.se + cyngn.com + Cyngn.com + cypherpunks.ca + Cypherpunks.ca + cyphertite.com + Conformal Systems + cypouz.com + cypouz.com + cz.mbank.eu + mBank (partial) + cz.o2.com + Telefónica (partial) + czshare.com + CZshare.com (partial) + d-static.com + Delicious + d.254a.com + 254a.com + d.me + Delicious + d.p-td.com + Accuen (partial) + d.thelocal.com + The Local (partial) + d0wn.biz + d0wn.biz (partial) + d3.advertisers-openx.com + advertisers-OpenX.com + d4designstudios.com + D4design Studios.com (false MCB) + d66.nl + NL Politiek + daad.de + German Academic Exchange Service + dabs.com + dabs (partial) + dafdirect.org + dafdirect.org + dagbladet.no + Dagbladet.no (false MCB) + dagensbedste-dbapp.netdna-ssl.com + Dagens Bedste.de (partial) + daha.net + SoftCom (partial) + daily.co.uk + Daily + dailydot.com + DailyDot (partial) + dailyfantasyradio.com + Daily Fantasy Radio + dailyherald.com + Daily Herald + dailyhiit.com + DailyHiit.com + dailynk.com + Daily NK.com (partial) + dailypix.me + DailyPix + dailystar.co.uk + Daily Star (partial) + dailyutahchronicle.com + University of Utah (partial) + dakko.us + dakko.us (partial) + dal.net + DALnet + dalemacartney.com + Dale Macartney.com + dan.langille.org + Langille.org (partial) + dan.me.uk + Dan.me.uk + danblah.com + dan blah.com (partial) + danhlode.com + danhlode.com + daniweb.com + DaniWeb.com + dante-analytics.net + DANTE-analytics.net + danzappone.com + The World According to Nouns + dar.fm + DAR.fm + darch.ch + ETH Zürich (partial) + dare.kotex.com + Kotex + daringfireball.net + Daring Fireball + darkmail.info + Darkmail.info + darkmoney.cc + DarkMoney.cc + dartlang.org + Dart Lang.org + dartmouth.edu + Dartmouth College (partial) + das-elena-verfahren.de + ELENA + das-labor.org + Das-labor.org + dashboard.bitgravity.com + BitGravity (partial) + dashboard.covad.com + MegaPath (partial) + dashboard.jwplatform.com + JW Platform.com (partial) + dashboard.stelter.com + Stelter (partial) + dashboard.tinypass.com + Tinypass.com (partial) + dashlane.com + Dashlane.com + dassaultfalcon.com + Dassault Falcon + data.aad.gov.au + Australian Antarctic Data Centre + data.cmcore.com + CoreMetrics (partial) + data.cnbc.com + CNBC (mixed content) + data.com + Data.com + data.fm + data.fm + data.gov.au + data.gov.au + data.phishtank.com + PhishTank + databits.net + databits.net + datacamp.com + DataCamp.com + datacard.com + Datacard.com + datacell.com + DataCell + datacell.is + DataCell + datacenterknowledge.com + DataCenterKnowledge.com (partial) + datacenterworld.com + Data Center World.com (partial) + datacentrumgids.nl + DatacentrumGids.nl + dataconsole.kruxdigital.com + Krux Digital + datacoup.com + DataCoup.com (partial) + datalink2.labcorp.com + LabCorp + datalogix.com + Datalogix.com (partial) + datamappi.fi + Datamappi.fi + dataminelab.com + DataMineLab.com (partial) + datamonitor.com + Datamonitor.com (partial) + datapipe.co.uk + Datapipe.com (partial) + datapipe.com + Datapipe.com (partial) + datapipe.net + Datapipe.com (partial) + dataprotection.ie + Data Protection Commissioner + datatables.net + DataTables.net + datatilsynet.no + Datatilsynet + datavantage.com + DataVantage + datenretter.de + CONVAR (partial) + datenschutz-ist-buergerrecht.de + Datenschutz ist Bürgerrecht + datenschutz.de + Virtual Privacy Office + datenschutzzentrum.de + Independent Centre for Privacy Protection Schleswig-Holstein + datstat.com + DatStat + dav.dropdav.com + DropDav + davidadrian.org + David Adrian.org + davidlyness.com + Davidlyness.com + davidsontutoring.com + Davidson Tutoring (partial) + davincivaporizer.com + Davinci Vaporizor + davis.com + Davis Instruments (partial) + davissystem.net + DavisSystem + davpack.co.uk + Davpack.co.uk + dawsonera.com + Dawsonera (partial) + daydeal.ch + daydeal + db.riskwaters.com + Incisive Media + db.tt + Dropbox + dbackpolice.com + DbackPolice.com + dbforums.com + dBforums + dbnnor.no + DnB Nor + dbspixel.hbz-nrw.de + hbz (partial) + dcboee.org + DCBoEE.org + dcerpc.org + DCERPC + dcpower.eu + DC Power.eu (false MCB) + dd-wrt.com + DD-WRT + ddg.gg + DuckDuckGo + ddosbreak.com + DDoSBreak.com + dds2dds.com + DDS2DDS.com + de-cix.net + DE-CIX + de.canon.ch + Canon + de17a.com + De17a.com + dea.com + DEA.com + deaconess.com + Deaconess Health System + deaddrops.com + Dead Drops.com + deakin.edu.au + Deakin University (partial) + dealcent.com + DealCent + dealchicken.com + Phoenix Media Group (partial) + dealerrater.com + DealerRater.com (partial) + dealextreme.com + Deal Extreme + dealfish.co.th + Dealfish.co.th + dealnews.com + dealnews.com (partial) + deals.montomeryadvertiser.com + Gannett Company (partial) + dealspwn.com + HotUKDeals (partial) + dearfcc.org + Dear FCC.org + debekijkerie.nl + De Bekijkerie.nl + debian-administration.org + Debian-Administration.org (partial) + debian-art.org + openDesktop.org + debian-fr.org + Debian-fr + debian.org + Debian (partial) + debuggify.net + Debuggify.net + deciduouspress.com.au + Deciduous Press.com.au + decipherinc.com + Decipher Inc.com + decisionbriefs.com + DecisionBriefs + deco.proteste.pt + Deco.proteste.pt + decorrespondent.nl + De Correspondent.nl + decryptcryptolocker.com + Decrypt CryptoLocker.com + dedicatedgaming.com.au + Dedicated Gaming + dedigitaletopschool.nl + De Digitale Topschool.nl + deepbit.net + Deepbit.net + deepdyve.com + DeepDyve + deeppoliticsforum.com + Deep Politics Forum.com + deepsec.net + DeepSec.net (partial) + deezer.com + Deezer + defcon.org + Defcon + defectivebydesign.org + Defective By Design.org + defenceandsecurity.ca + CADSI + defenceimagery.mod.uk + UK Ministry of Defence + defendinnovation.org + EFF + defenseindustrydaily.com + Defense Industry Daily (partial) + defenseone.com + Defense One.com (false MCB) + defsounds.com + Defsounds + degica.com + Cogen Media (partial) + deimos.fr + Deimos.fr + delaware.gov + State of Delaware (partial) + delawareonline.com + Delaware Online (partial) + delawaretoday.com + Delaware Today.com (partial) + delecorp.delaware.gov + State of Delaware (partial) + delfogo.com + Delfogo Rx + delicious.com + Delicious + deliciousgreencoffee.com + Delicious Green Coffee.com + delico.se + Delico.se + deliveras.gr + Deliveras + delivery.ad.newsnow.net + NewsNow (partial) + delivery.pizzahut.co.uk + Pizzahut UK + dell.com + Dell (partial) + delta.no + Delta.no + demandbase.com + Demandbase + demandprogress.org + Demand Progress + demandstudios.com + Demand Media (partial) + demandware.com + Demandware (partial) + demandware.edgesuite.net + Demandware.edgesuite.net (partial) + demandware.net + Demandware (partial) + demo.webassign.net + WebAssign + democracyinaction.org + DemocracyInAction + democracynow.org + DemocracyNow (partial) + democratandchronicle.com + Democrat and Chronicle (partial) + demonoid.ph + Demonoid.ph + demworks.org + DemWorks.org + denh.am + Denh.am + denso-wave.com + DENSO WAVE + dentalxchange.com + EDI Health Group + dephormation.org.uk + Dephormation.org.uk + depolitiezoekt.nl + NL Overheid + depositfiles.com + Deposit Files (partial) + depositprotection.com + DepositProtection + deprexis.com + deprexis (partial) + der-preis-jaeger.de + der-preis-jaeger.de + derby.gov.uk + UK Local Government + deri.ie + National University of Ireland (partial) + derpiboo.ru + Derpiboo.ru + derpy.me + derpy.me + dersverilir.net + DersVerilir.net + derwesten.de + Derwesten.de + desertnews.com + Desert News (partial) + design.canonical.com + Canonical (false MCB) + designaddict.com + DesignAddict + desire2learn.com + Desire2learn.com + desk.com + Desk.com + desktop.ucsd.edu + UCSD + desktop.vovici.com + Vovici.com (partial) + despora.de + Despora.de + details.com + Details (partial) + detectify.com + Detectify + deusm.com + DeusM (partial) + deutsche-boerse.com + Deutsche Börse Group + deutschebkk.de + Deutsche BKK + dev-www3 + A.M. Best Company (partial) + dev.horde.org + Horde (partial) + dev.laptop.org + OLPC (partial) + dev.mobileread.com + MobileRead (partial) + dev.openttdcoop.org + OpenTTD (partial) + dev.pipl.com + Mashery clients + dev.withsix.com + WithSIX (Partial) + develop-online.net + Intent Media (partial) + developer.chrome.com + Chrome.com (partial) + developer.here.net + Here.com (partial) + developer.mydigipass.com + Mydigipass.com + developer.netflix.com + Mashery clients + developer.palm.com + Palm.com (partial) + developer.similarweb.com + SimilarWeb (partial) + developer.snapengage.com + SnapEngage.com (false MCB) + developer.symbian.org + Symbian Foundation + developerforce.com + Salesforce.com (partial) + devolo.com + Devolo.com + devon.gov.uk + UK Local Government + devstructure.com + Devstructure + devzing.com + devZing.com + dezertdepot.com + Dezert Depot + df.eu + DF.eu + dfat.gov.au + Department of Foreign Affairs and Trade + dfiles.eu + DFiles.eu + dfn.de + Deutsches Forschungsnetz + dfranke.us + D Franke.us + dfrdb.gov.au + Defence Force Retirement and Death Benefits Scheme + dfri.se + Dfri.se + dftba.com + DFTBA Records + dgl.cx + dgl.cx + dha.gov.au + Defence Housing Australia + dhgate.com + DHgate.com (partial) + dhl.de + DHL.de + di.dk + Confederation of Danish Industry (partial) + dia-grid.org + DiaGrid + diagonalperiodico.net + Diagonalperiodico.net + diagrid.org + DiaGrid + dialdirect.co.uk + Dial Direct + dialogue.openboard.info + NASDAQ (partial) + dianomi.com + dianomi (partial) + diasp.de + Diasp.de + diasp.eu + Diasp.eu + diasp.org + Diasp.org + diasporabr.com.br + DiasporaBR.com.br + diasporafoundation.org + Diaspora + diasporaproject.org + Diaspora + dice.com + Dice (partial) + dico.im + bit.ly vanity domains + die-linke.de + Die-Linke.de + die.net + Die.net + diffuse.ca + Diffuse.ca + digg.com + Digg (partial) + digi.hu + Digi.hu + digi77.com + Digi77.com + digia.com + Digia (partial) + digibond.wpengine.netdna-cdn.com + Digital Bond + digicert.com + DigiCert + digid.nl + NL Overheid + digiday.com + Digiday.com (false MCB) + digikam.org + digiKam.org + digikey.com + Digi-Key (partial) + digipaper.fi + Mederra Group (partial) + digitabportals.com + Digitab Portals + digital-content.axelspringer.com + Axel Springer.com (partial) + digital-future.it + Digital-Future.it + digitalbond.com + Digital Bond + digitalcourage.de + Digitalcourage.de + digitaldefenders.org + Digital Defenders.org + digitaldollhouse.com + Digital Dollhouse.com (false MCB) + digitalegesellschaft.de + Digitalegesellschaft + digitalforensicsmagazine.com + DigitalForensicsMagazine + digitalnewsagency.com + Digital News Agency.com + digitalocean.com + Digital Ocean.com + digitalpacific.com.au + Digital Pacific.com.au + digitalpoint.com + Digital Point Solutions (partial) + digitaltrends.com + Digital Trends.com (partial) + digitec.ch + Digitec.ch + digium.com + Digium (partial) + digiumenterprise.com + DigiumEnterprise.com + dignityindying.org.uk + Dignity in Dying.org.uk (partial) + diigo.com + Diigo + dikkenberg.net + Dikkenberg.net + dinclinx.com + Madison Logic (partial) + dionyziz.com + Greek-various + diplomaframe.com + Church Hill Classics (partial) + direct123.fi + Direct123.fi + directbox.* + Directbox + directline.com + Direct Line.com + directline.metafaq.com + Direct Line.com + directories.piers.com + PIERS (partial) + directory.eoportal.org + eoPortal (partial) + directorystore.com + SuperMedia (partial) + directspace.net + DirectSpace + dirxion.com + Dirxion + dis.us.criteo.com + Criteo (partial) + disability.gov + Disability.gov + disc-soft.com + disc-soft.com (partial) + disc.scastnet.com + Sociocast Networks (partial) + discogs.com + Discogs (partial) + disconnect.me + Disconnect.me + discountclick.com + Advantage + discounttheatre.com + DiscountTheatre.com + discourse.syncthing.net + Syncthing.net (partial) + discover.com + Discover.com + discovercard.com + Discover Card.com + discovermerchants.com + Discover Merchants.com + discovernetwork.com + Discover Network.com (partial) + discoversignage.com + Discover Signage.com + discovery.org + Discovery.org + discoveryplace.org + Discovery Place + discoveryplacekids.org + Discovery Place + discshop.se + discshop.se + discussions.nessus.org + Nessus.org (partial) + diskusjon.no + Diskusjon + disman.tl + disman.tl + distil.it + Distil (partial) + distraction.gov + Distraction.gov + dittdistrikt.no + Ditt Distrikt + divitup.com + DivItUp.com + divshare.com + divShare + divshot.com + Divshot + dixcart.com + Dixcart + diybanter.com + DIYbanter + dizzcloud.com + Dizzcloud.com + djangoproject.com + Django + djkit.com + DJKit + djoser.nl + Holidaybreak (partial) + djoserjunior.nl + Holidaybreak (partial) + djoserwandelenfiets.nl + Holidaybreak (partial) + djrc.portal.dowjones.com + News Corporation (partial) + djurrattsalliansen.se + DjurRattsAlliansen.se + dkb.de + Deutsche Kreditbank + dkg.fifthhorseman.net + fifthhorseman.net (partial) + dl.btjunkie.org + btjunkie + dl.ed.gov + ED.gov (partial) + dlitz.net + DLitz.net + dlvr.it + dlvr.it + dly.do + bit.ly vanity domains + dma.org.uk + Direct Marketing Association + dmachoice.org + DMAchoice.org + dmca.com + DMCA Services (partial) + dmesg.gr + dmesg.gr + dmlp.org + DMLP.org (partial) + dmoz.org + Dmoz.org + dmp.redaril.com + Red Aril (partial) + dms-sweden.com + DMS-Sweden.com + dmu.ac.uk + DMU + dmv.ca.gov + California Department of Motor Vehicles + dna-bucket-dna.cf.rawcdn.com + Digital News Agency.com + dnaserum.com + DNA Serum + dnb.com + D&B (partial) + dnevnik.bigmir.net + Bigmirnet (partial) + dns-oarc.net + DNS-OARC.net + dns.d0wn.biz + d0wn.biz (partial) + dns.lc.wix.com + Wix (partial) + dnscrypt.eu + DNSCrypt.eu + dnsdynamic.org + DNSdynamic + dnsexit.com + Dnsexit + dnsleaktest.com + DNS leak test.com + dnssec-tools.org + DNSSEC-Tools + dnssec-validator.cz + DNSSEC-Validator.cz + dnsstuff.com + DNSstuff.com + dntly.com + Dntly.com + dntx.com + DNTX.com + dnuk.com + Digital Networks UK (partial) + do.co + bit.ly vanity domains + do.de + Domain-Offensive + dobrochan.com + Dobrochan + dobrochan.org + Dobrochan + dobrochan.ru + Dobrochan + docelu.pl + docelu.pl (partial) + docker.com + Docker.com (partial) + docker.io + Docker.com (partial) + docreader.readspeaker.com + ReadSpeaker + docs.aws.amazon.com + Amazon Web Services + docs.codehaus.org + Codehaus.org (partial) + docs.webplatform.org + WebPlatform + docstoc.com + Docstoc (partial) + docstorepro.com + docstorepro.com + doctorswithoutborders.org + DoctorsWithoutBorders.org + document.no + Document.no + documentcloud.org + DocumentCloud (partial) + documentfoundation.org + The Document Foundation + documentfreedom.net + Document Freedom Day + documentfreedom.org + Document Freedom Day + docusign.com + Docusign.com + docusign.net + Docusign.net + doesburg.nl + NL Overheid + dogwheelchairscenter.com + Dog Wheelchairs Center.com + dogzonline.com.au + Dogz Online + doi.org + DOI.org (partial) + doku.spline.inf.fu-berlin.de + Freie Universität Berlin (partial) + dokuwiki.org + DokuWiki (partial) + dolimg.com + Dolimg.com + dollaraday.co + Dollar a Day.co + dolphin-emu.org + dolphin-emu.org + dom.money.pl + Money.pl (false MCB) + domain-dns.com + Domain-DNS.com + domain.com + Domain.com + domainbox.com + Domainbox.com (partial) + domaincamp.de + domainCAMP + domaincoin.net + DomainCoin.net + domainfest.com + Oversee.net (partial) + domainmanager.otenet.gr + OTE + domainmarket.com + DomainMarket.com (partial) + domainrendelo.hu + Domaintank + domainsbyproxy.com + Domains By Proxy + domaintank.hu + Domaintank + domaintools.com + DomainTools (partial) + domdex.com + domdex.com + domeinenrz.nl + NL Overheid + domena.cz + IGNUM (partial) + domenovyprohlizec.cz + Domenovy prohlizec.cz + dominustemporis.com + Dominus Temporis.com + domreg.lt + Domreg.lt + donate.greenpeace.org + greenpeace.org (very partial) + donate.perlfoundation.org + Pearl Foundation (partial) + donate.richarddawkins.net + Richard Dawkins Foundation (partial) + donate.salvationarmyusa.org + Salvation Army USA.org (partial) + donationcoder.com + DonationCoder.com + doncaster.gov.uk + UK Local Government + donorregister.nl + NL Overheid + donotcall.gov.au + Do Not Call Register + dontspyonus.org.uk + Dont Spy On Us.org.uk + doodle.com + Doodle (partial) + door.sudoroom.org + Sudo Room + dopplr.com + Dopplr.com + doriancolor.com + Dorian Color + dosomething.org + Dosomething.org + dot429.com + dot429 (partial) + dot5hosting.com + Dot5Hosting + dota2.com + Dota 2.com (partial) + dotcloud.com + dotCloud.com (partial) + dotcomhost.com + dotCOM host + dotmailer.co.uk + dotMailer (partial) + dotmailer.com + dotMailer (partial) + dotplex.de + dotplex.de + dotster.com + Dotster + dotultima.com + dotultima.com + doublefine.com + Double Fine + doublerobotics.com + Double Robotics.com (partial) + dover.gov.uk + UK Local Government + download.gigabyte.eu + Gigabyte.eu (partial) + download.gigabyte.us + Gigabyte.us (partial) + download.jitsi.org + Jitsi.org + download.libsodium.org + libsodium.org (partial) + download.nos.nl + NOS (partial) + download.winzip.com + WinZip.com (partial) + downloads.kachingle.com + Kachingle + downloads.thespringbox.com + thespringbox.com + downloadster.net + Downloadster + downloadverse.com + DownloadVerse.com + downstreamtoday.com + DownstreamToday.com + downtownhost.com + Downtown Host (partial) + dozuki.com + Dozuki (partial) + dpmc.gov.au + Department of the Prime Minister and Cabinet + dpreview.com + Digital Photography Review (partial) + dr.com.tr + DR.com.tr + dr.dk + DR.dk + dragndropbuilder.com + DrAgnDroPbuilder.com + dragonflybsd.org + DragonFly BSD (partial) + draugiem.lv + Draugiem.lv (partial) + drawingbynumbers.org + Drawing by Numbers.org + drawquest.com + DrawQuest + drawquestugc.com + DrawQuest + dreamhost.com + DreamHost (partial) + dreamnews.jp + Dream News.jp + dreampass.jp + dreampass.jp + dreamsolution.nl + Dreamsolution.nl + dreamspark.com + DreamSpark.com + dreamstime.com + Dreamstime (partial) + dribbble.com + Dribble.com (partial) + drinkaware.co.uk + Drinkaware + drive29.mywwwserver.com + 123eHost.com + drive7000.station030.com + 123eHost.com + drivee.jp + drivee + drivee.ne.jp + drivee + driverseddirect.com + DriversEdDirect.com + drivestyle.co.uk + DriveStyle Insure + drm.info + DRM.info + drollette.com + Matt Drollette + dropbox.com + Dropbox + dropboxatwork.com + Dropbox + dropboxmail.com + Dropbox + dropboxteam.com + Dropbox + dropcam.com + Dropcam.com + dropdav.com + DropDav + droplr.com + Droplr.com + drownedinsound.com + Drowned In Sound.com (partial) + drugpolicy.org + drugpolicy.org + drugs-forum.com + Drug Forum + drugstore.com + drugstore.com (partial) + drumbeat.org + Mozilla + drupal.org + Drupal (partial) + drupalgardens.com + Drupal Gardens.com (partial) + drweb.com + Dr.Web + dryicons.com + DryIcons.com + dsa.csdata1.com + CSdata1.com + dshield.org + DShield.org + dshop.se + dshop.se + dshs.state.tx.us + Texas Department of State Health Services + dslreports.com + Broadband Reports + dsply.com + Vast Interactive (partial) + dtc.*.gplhost.com + GPLHost (partial) + dtc.gplhost.co.uk + GPLHost (partial) + dtc.gplhost.com + GPLHost (partial) + dtcc.edu + Delaware Technical Community College (partial) + dtic.dtu.dk + Technical University of Denmark (partial) + dtu.dk + Technical University of Denmark (partial) + dtunnel.com + DTunnel + dubfire.net + dubfire.net + duck.co + DuckDuckGo + duckdns.org + Duck DNS.org + duckduckgo.com + DuckDuckGo + dudley.gov.uk + UK Local Government + dug.net.pl + DUG.net.pl + duiven.nl + NL Overheid + duke-energycenter.com + Duke Energy Convention Center (partial) + dukgo.com + DuckDuckGo + dundeecity.gov.uk + UK Local Government + duodecim.fi + Duodecim.fi + duolingo.com + Duolingo.com + duosecurity.com + Duo Security (partial) + duracellcloud.com + Duracell Cloud.com (partial) + dustri.org + dustri.org + dutchdpa.nl + Dutch Data Protection Authority + dvidshub.net + DVIDS Hub.net + dw.cbsi.com + CBSI.com (partial) + dw.com.com + CBS (partial) + dwarffortresswiki.org + Dwarf Fortress Wiki.org (partial) + dwin1.com + DWin1.com + dwolla.com + Dwolla (partial) + dx.com + Deal Extreme + dx.doi.org + DOI.org (partial) + dyankov.eu + Dyankov.eu + dydx.io + dydx.io + dyknow.lasallehs.net + lasallehs.net + dynadot.com + DynaDot + dynamic-net.ch + dynamic-net.ch (partial) + dynamic-support.ch + dynamic-net.ch (partial) + dynamitedata.com + Dynamite Data (partial) + dynatrace.com + dynaTrace (partial) + dyne.org + Dyne.org (partial) + dyson.co.uk + Dyson (partial) + dyson.ie + Dyson (partial) + dzne.de + German Center for Neurodegenerative Diseases + e-boks.dk + E-boks.dk (partial) + e-cegjegyzek.hu + E-cegjegyzek.hu + e-fibank.bg + Fibank + e-food.gr + e-food.gr + e-gold.com + e-gold (partial) + e-grants.ed.gov + ED.gov (partial) + e-junkie.com + E-junkie (partial) + e-mail-made-in-germany.de + E-Mail made in Germany + e-mielenterveys.fi + E-mielenterveys + e-nls.com + Nijyuyon-Bimuunzu + e-onlinedata.com + e-onlinedata.com + e-plus.de + E-Plus (partial) + e-prawnik.pl + e-prawnik.pl (partial) + e14n.com + E14N + e17-stuff.org + openDesktop.org + e4ward.com + E4ward.com + e621.net + e621.net + ea.com + Electronic Arts (partial) + each.bremer.com + Bremer Bank + eager.io + eager.io + eai.org + Electronic Arts Intermix (partial) + earcu.com + eArcu + earl.io + Earl + earwolf.com + Earwolf Podcast Network + eas.blocket.se + Blocket.se + eas4.emediate.eu + Emediate.eu + easily.co.uk + Easily.co.uk (partial) + easports.com + EA Sports.com (false MCB) + east-northamptonshire.gov.uk + UK Local Government + eastbay.com + Eastbay (partial) + eastbayteamservices.com + Eastbay Team Services + easthants.gov.uk + UK Local Government + eastlothian.gov.uk + UK Local Government + eastriding.gov.uk + UK Local Government + easy-hebergement.fr + Easy Hébergement + easy-share.com + Crockotec (partial) + easy2coach.net + easy2coach.net (partial) + easycottages.com + Wyndham (partial) + easydns.com + easyDNS (partial) + easydns.net + easyDNS (partial) + easyedi.tietoenator.com + Tietoenator.com (partial) + easyjet.com + easyJet.com (partial) + easynews.com + EasyNews + easypdfonline.com + easyPDF Cloud + easypost.com + EasyPost.com + easywallet.org + easywallet.org + easywhois.com + easyWhois.com + eater.com + Eater + ebank.bremer.com + Bremer Bank + ebanking.indovinabank.com.vn + Indovina Bank + ebankingabersicher.ch + eBanking - aber sicher! + ebas.ch + eBanking - aber sicher! + ebid.net + eBid.net + ebscohost.com + EBSCOhost (partial) + ebuyer.com + Ebuyer.com (partial) + ebuzzing.com + ebuzzing (partial) + ebuzzing.de + ebuzzing (partial) + ec.consumerreports.org + Consumer Reports (partial) + ecash.io + eCash.io + ecdn.liveclicker.net + Liveclicker.net + ecdrappeals.ed.gov + ED.gov (partial) + ece.ucsd.edu + UCSD + ece.unm.edu + UNM + ecess1.cdn.continent8.com + Continent 8 Technologies (partial) + echoditto.com + EchoDitto.com + ecigpros.com + eCigPros + eclipse.org + Eclipse (partial) + eclipso.ch + Eclipso.ch + eclipso.de + eclipso + ecm74.com + ecm74.com (partial) + ecoff.org + Ecoff.org + ecommerce.com + Ecommerce (partial) + economist.com + Economist (partial) + ecoscentric.com + eCosCentric.com + ecsi.com + ECSI + ecustomeropinions.com + eDigitalResearch (partial) + ed.gov + ED.gov (partial) + ed2go.com + Cengage (partial) + edarabia.com + Edarabia.com + edas.info + Edas.info + eddieizzard.com + Eddie Izzard (partial) + ede-look.org + openDesktop.org + edenhost.com + EdenHost.com + ederdrom.de + PNP4Nagios.org + edeveloperz.com + eDeveloperz (partial) + edfenergy.com + EDF Energy + edfil.es + Edfil.es + edgar-online.com + EDGAR Online + edge.avangate.net + Avangate (partial) + edge.ldscdn.org + The Church of Jesus Christ of Latter-day Saints + edgesnapbacks.com + Edge Snapbacks.com + edihealth.com + EDI Health Group + edihealth.net + EDI Health Group + edinburgh.gov.uk + UK Local Government + edirectdebit.com + eDirectDebit (partial) + editions.thing.net + thing.net (false MCB) + editola.com + Editola + edixml.melkweb.com + Campina (partial) + edixml.mycampina.com + Campina (partial) + edonorcentral.com + eDonorCentral.com + edp.pt + EDP.pt + edri.org + EDRi.org + edrive-hosting.cz + edrive hosting (partial) + edublogs.org + Edublogs + edubuntu.org + Edubuntu + educacursos.com + EducaCursos + education.gov.au + Department of Education + educause.edu + Educause (partial) + edukacja.money.pl + Money.pl (false MCB) + eduroam.no + eduroam.no + eduroam.org + eduroam.org + eduscho.at + Tchibo + edwardtufte.com + Edward Tufte + edweek.org + EdWeek.org (partial) + edx.org + edX + ee.co.uk + Everything Everywhere (partial) + eeqj.com + EEQJ + eerdmans.com + Eerdmans.com + eet.eu + EET Group + eetimes.com + EE Times (partial) + eex.com + European Energy Exchange (partial) + ef.gy + ef.gy + efa.org.au + Electronic Frontiers Australia + efax.co.uk + efax.co.uk (partial) + eff.org + EFF + effi.org + Effi.org + efficios.com + EfficiOS + efile.boe.ca.gov + California State Board of Equalization + efinancialnews.com + News Corporation (partial) + eforensicsmag.com + eForensics Mag.com (partial) + eforsa.pl + eForsa.pl + eftplus.asia + EFTPlus.asia + efukt.com + eFukt.com + efurnitureny.com + eFurnitureNY + egenix.com + eGenix.com + egg.com + Egg + egnyte.com + Egnyte + eharmony.com + eHarmony (partial) + ehawaii.gov + Hawaii.gov (partial) + ehoiva-fi.directo.fi + eHoiva + ehoiva.fi + eHoiva + ehospice.com + ehospice + ehosting.ca + ehosting.ca (partial) + ehostpros.com + FastWebHost.com (partial) + ehow.com + eHow (partial) + eide-itc.no + Eide-ITC.no + eidq.org + EIDQ + eigenlab.org + eigenLab + einstein.phys.uwm.edu + University of Wisconsin–Milwaukee (partial) + eiseverywhere.com + etouches + eiu.com + Economist Intelligence Unit (partial) + ekiga.net + Ekiga (partial) + ekiga.org + Ekiga (partial) + ekomi-us.com + eKomi + ekomi.* + eKomi + ekomi.co.* + eKomi + el-tramo.be + El-Tramo.be + elafnettv.com + Elaf Net TV + elanex.biz + Elanex.biz + elastictrace.com + elasticTrace.com + elatinos.com + eLatinos.com + elbadil.com + elbadil.com + elburg.nl + NL Overheid + elderscrollsonline.com + Elder Scrolls Online.com + electronicinsanity.com + Techidiots.net + elegantthemes.com + Elegant Themes.com + elektra.ksh.hu + Központi Statisztikai Hivatal + elementaryos.org + Elementary OS.org (partial) + elevenpaths.com + ElevenPaths + elgiganten.se + Elgiganten.se + elie.im + Elie Bursztein + eliminatejunkemail.com + pair Networks (partial) + elionfacadv.oas.psu.edu + Pennsylvania State University (partial) + elitecastingnetwork.com + Elite Casting Network.com (partial) + elitekeyboards.com + EliteKeyboards.com + elizabethsmartfoundation.org + Elizabeth Smart Foundation (partial) + elkosmas.gr + elkosmas.gr + ellak.gr + Greek-various + elle.com + Elle.com (partial) + elliptictech.com + Elliptic Technologies + ello.co + Ello.co + elmbridge.gov.uk + UK Local Government + eloconcursos.com.br + Elo Concursos.com.br + eloedge.com + ELO edge.com (false MCB) + eloquentjavascript.net + Eloquent JavaScript.net + elotouchexpress.com + Elo Global e-services + elpueblo.com + El pueblo + elq.to + Eloqua + elsevier.ca + Elsevier (partial) + elsevier.com + Elsevier (mixedcontent) + elsevierhealth.co.uk + Elsevier (partial) + elsevierhealth.com + Elsevier (partial) + elsevierhealth.com.au + Elsevier (partial) + eltatar.com + Eltartar War + em.gov.au + Australian Emergency Management + email-comparethemarket.com + Compare The Market + email.bild.de + Bild.de (valid MCB) + email.seznam.cz + Seznam.cz + emaileri.com + Emaileri.fi + emaileri.fi + Emaileri.fi + emaileri.net + Emaileri.fi + emailnew.azet.sk + Azet.sk + emailprivacytester.com + Emailprivacytester.com + emailsrvr.com + emailsrvr.com + emailvision.com + Emailvision (partial) + emapawards.com + Emap Awards + embed.cs.utah.edu + University of Utah (partial) + embeddedanalytics.com + Embedded Analytics.com + emc.com + EMC (partial) + emc.force.com + EMC (partial) + emcraft.com + Emcraft.com + emember.heraldcorp.com + Herald Media (partial) + emeraldinsight.com + Emerald + emi.wpengine.com + eyeReturn Marketing.com (partial) + emknowledge.gov.au + Australian Emergency Management + emory.edu + Emory University (partial) + employeeexpress.gov + Employeeexpress.gov + employment.gov.au + Department of Employment + emporioalberghiero.com + Emporio Alberghiero.com + emptywheel.net + emptywheel.net + emsisoft.com + Emsisoft (partial) + emulex.com + Emulex + emv3.com + Emailvision (partial) + en.flossmanuals.net + FLOSSManuals.net + en.greatfire.org + GreatFire.org + en.mtmei18n.com + MeetMe + en.spontex.org + Spontex.org + encoding.com + Encoding.com + encosia.com + Encosia + encrypt.to + Encrypt.to + encryptallthethings.net + Encrypt All the Things.net + encrypted.redteam.net + Red Team.net (partial) + encrypteverything.ca + Encrypt Everything.ca + encryptingdata.info + EncryptingData.info + encyclopediadramatica.se + Encyclopedia Dramatica + endace.com + Endace + endora.cz + Endora.cz (partial) + energymadeeasy.gov.au + Energy Made Easy + energystar.gov + EnergyStar + enfield.gov.uk + UK Local Government + engagemedia.org + Engage Media.org + engagesciences.com + EngageSciences (partial) + engees.unistra.fr + UniStra.fr (false MCB) + engine.trklnks.com + AdSupply (partial) + engineering.com + Engineering.com (partial) + english-country-cottages.co.uk + Wyndham (partial) + englishdefenceleague.net + English Defence League.net (partial) + enigmail.net + Enigmail.net + eniro.se + Eniro (partial) + enjin.com + Enjin + enlightenment.org + Enlightenment + enocloud.com + eNovance + enom.com + eNom (partial) + enomcentral.com + eNomCentral (partial) + enovance.com + eNovance + enphase.com + Enphase Energy (partial) + enphaseenergy.com + Enphase Energy (partial) + ens-lyon.org + ens-lyon.org + ensighten.com + Ensighten + ensigniamail.com + Ensignia mail.com (partial) + ensijaturvakotienliitto-fi.directo.fi + Ensi- ja turvakotien liitto + ensijaturvakotienliitto.fi + Ensi- ja turvakotien liitto + enta.net + Entanet (partial) + enterprise.com + Enterprise.com + enterprise.podomatic.com + PodOmatic.com + enterprisersproject.com + Enterprisers Project.com + entertainment.ie + entertainment.ie + enthought.com + Enthought.com (partial) + entropay.com + EntroPay + entropia.de + Entropia.de + entropywave.com + Entropy Wave (partial) + entrust.com + Entrust.com (partial) + entrust.net + Entrust (partial) + envirotrend.com.au + Envirotrend (partial) + envy.zenspider.com + zenspider.com (partial) + enwp.org + Wikimedia + eoft.eu + EOFT + eon-uk.com + E.ON UK (partial) + epa.ie + EPA (.ie) + epay.bg + ePay.bg + epb.net + EPB + epbfi.com + EPB + epfl.ch + EPFL (partial) + epic.com + Epic Systems (partial) + epic.org + EPIC + epicgames.com + Epic Games (partial) + epilepsyfoundation.org + Epilepsy Foundation of America + epilepsyontario.org + Epilepsy Ontario + epls.gov + Epls.gov + eplus-gruppe.de + E-Plus Gruppe + epo-rtal.org + ACLU of North Carolina + epoch.com + Epoch.com + epochstats.com + EpochStats.com + epoxate.com + Epoxate.com + eprize.com + ePrize + eprize.net + ePrize + epson.ca + Epson.com (partial) + epson.com + Epson.com (partial) + epson.com.mx + Epson.com (partial) + equalit.ie + eQualit.ie + equalitytrust.org.uk + Equality Trust.org.uk + equinix.com + Equinix.com (partial) + equip.org + Equip.org (partial) + equity.org.uk + Equity + era.int + ERA.int + erdgeist.org + erdgeist + ereceptionist.co.uk + eReceptionist.co.uk (partial) + ergon.ch + Eregon.ch + erhverv.canaldigital.dk + CanalDigital + ericw.us + Eric W.us + eriga.lv + Riga + ernaehrung-per-klick.de + Medikamente-Per-Klick + ernw.de + ERNW.de + eroakirkosta.fi + Eroakirkosta.fi + erowid.com + Erowid + erowid.org + Erowid + err.ee + Estonian Public Broadcasting (partial) + es.gy + es.gy + esa.int + European Space Agency (partial) + esb.ie + ESB.ie + esbie.ie + ESB.ie + esc.edu + Empire State College + escan.com + Virusec.com + escapistexpo.com + The Escapist Expo + escrowlive.net + Escrow Live.net + eseeky.com + eseeky.com + esellerate.net + MyCommerce + eset.* + ESET (partial) + eset.com + ESET (partial) + esetnod32.ru + ESET NOD32 + eshopbrokers.co.uk + e-ShopBrokers + esi-group.com + ESI-Group.com + esiss.ac.uk + ESISS + eso.org + European Southern Observatory (partial) + esomar.org + ESOMAR.org + espacejeux.com + espacejeux + espionageapp.com + Espionage app.com + espra.com + Espra.com + esr.org + Earth & Space Research + esrb.org + ESRB + ess.erp.johnshopkins.edu + The Johns Hopkins University (partial) + essex.gov.uk + UK Local Government + estavisas.org + ESTA Visas.org + estoniaevoting.org + Estonia Evoting.org + esue.ohio-state.edu + Ohio State University (partial) + esv.de + ESV.de + etapestry.com + etapestry.com + etarget.* + Etarget (partial) + eth-0.nl + eth0.nl + eth0.nl + eth0.nl + ethack.org + EthACK.org + ethereum.org + Ethereum.org (partial) + ethicalhacker.net + Ethical Hacker.Net (false MCB) + ethicspoint.com + EthicsPoint.com + ethn.io + Ethn.io + ethoscustombrands.com + Ethos Custom Brands + ethz.ch + ETH Zürich (partial) + eticketing.co.uk + Ticketmaster (partial) + etipos.sk + Etipos.sk + etoro.com + eToro (partial) + etouches.com + etouches + etracker.com + etracker + etracker.de + etracker + etrade.com + Etrade.com + etravelway.com + Etravelway.com + etreshop.com + Etre Shop.com (partial) + ets.org + ETS + etsy.com + Etsy (partial) + ettus.com + Ettus.com (partial) + eu.link.decdna.net + Decdna.net + eucalyptus.com + Eucalyptus.com + euim.mstar.com + Mstar.com (partial) + eulerian.sarenza.com + Sarenza (partial) + euro-ix.net + Euro-ix.net + eurodiet.co.uk + Eurodiet (partial) + eurodns.com + EuroDNS.com (partial) + euroflorist.no + EuroFlorist.no (partial) + euroforum.com + Euroforum (partial) + euroland.com + Euroland.com + euronuclear.org + European Nuclear Society + european-privacy-seal.eu + EuroPriSe + europeancensorship.eu + EuropeanCensorship.eu (partial) + europeanpirates.eu + Pirate Party + europeanssl.eu + EuropeanSSL + europython.eu + EuroPython + eusecwest.com + EUSecWest + euserv.de + EUserv.de (partial) + evanced.info + evanced.info + evaske.com + Evaske.com + eveger.de + Eveger + eventbrite.co.uk + Eventbrite (partial) + eventbrite.com + Eventbrite (partial) + eventim.* + Eventim (partial) + eventim.co.* + Eventim (partial) + eventim.fi + Lippupiste Oy + eventoverload.com + EventOverload + events.fit.edu + Florida Institute of Technology (partial) + eveonline.com + eveonline.com (partial) + evermap.com + EverMap.com + evermeet.cx + evermeet.cx + evernote.com + Evernote (partial) + everplans.com + Everplans.com + everyanglemedia.com + Every Angle Media + everydayhealth.com + Everyday Health (partial) + everydayhero.com + Everyday Hero + everydayhero.com.au + Everyday Hero + everything4bet.net + everything4bet + evga.com + EVGA (partial) + evga.com.au + EVGA (partial) + evga.com.tw + EVGA (partial) + evisa-vietnam.com + Evisa-Vietnam.Com + evo.com + evo.com (partial) + evoice.co.uk + eVoice.co.uk (partial) + evoluted.net + Evoluted.net + evolvesocially.org + Evolve Socially.org (partial) + evotronix.com + EvoTronix (partial) + evotronix.evotronix.netdna-cdn.com + EvoTronix (partial) + ewellnessmag.com + eWellness magazine (partial) + ex.ac.uk + University of Exeter (partial) + exacom.sk + Exacom.sk + exactag.com + Exactag (partial) + exacttarget.com + ExactTarget (partial) + examiner.com + examiner.com (partial) + exante.eu + EXANTE + excelsior-usa.com + Excelsior-USA.com (partial) + exchange.dnv.com + DNV.com (partial) + excitations.com + Excitations.com + exclusivex.com + Exclusive X + exeter.ac.uk + University of Exeter (partial) + exeterfamily.co.uk + Exeter Friendly Society + exeterfriendly.co.uk + Exeter Friendly Society + exgf.teenbff.com + Pretty in Cash (partial) + exhaleprovoice.org + Exhale + exjobb.meb.ki.se + KI.se + exoclick.com + Exoclick (partial) + exootlab.com + ExootLab + expandedsupport.com + SUSE (partial) + expedia.co.uk + Expedia + expedia.com + Expedia + expeditedssl.com + ExpeditedSSL.com + experian.com + Experian + experian.experiandirect.com + Experian + experiencedays.co.uk + Experience Days + expertbail.com + AIA Surety + exploithub.com + ExploitHub.com + explore.co.uk + Holidaybreak (partial) + exploreb2b.com + exploreB2B.com + explorechicago.org + City of Chicago + explosm.net + Explosm.net (partial) + expohomes.com + Factory Expo Home Centers + expomobilehomes.com + Factory Expo Home Centers + export.gov + US government (partial) + exportawards.gov.au + Australian Export Awards + exposingtheinvisible.org + Exposing the Invisible.org + express-vpn.com + Express-VPN.com + express.co.uk + Daily Express (partial) + expresscoin.com + expresscoin.com (partial) + exratione.com + Ex Ratione.com + exsila.ch + exsila + extensiondefender.com + Extension Defender.com + extensis.com + Extensis.com (partial) + external.microsoftstoreservices.com + Microsoft Store (partial) + extralunchmoney.com + Extra Lunch Money + extranet.fkl.fi + Finanssialan Keskusliitto + extranet.websitepipeline.com + Website Pipeline (partial) + extranets.pinsentmasons.com + Pinsent Masons (partial) + extreme-light-infrastructure.eu + Extreme Light Infrastructure + extreme.idg.se + IDG.se (partial) + extremetech.com + Extreme Tech.com (partial) + extremetracking.com + Extreme Tracking + ey.com + Ernst & Young (partial) + eyefilm.nl + EYE film.nl (partial) + eyeos-apps.org + openDesktop.org + eyereturnmarketing.com + eyeReturn Marketing.com (partial) + eyetechds.com + EyeTech + ez-download.com + EZ-Download + ez-web-hosting.com + EZ Web Hosting + ezaccessory.com + ezAccessory.com + ezcrypt.it + EZCrypt + ezding.com.tw + ezDing.com.tw (partial) + ezimages.eu + EZTV + ezimg.it + EZTV + ezinearticles.com + EzineArticles (partial) + ezoshosting.com + EZOSHosting (false MCB) + ezproxy.plsinfo.org + Peninsula Library System (partial) + ezrss.it + EZTV + eztv.it + EZTV + f-droid.org + F-Droid + f.chtah.com + CheetahMail + f.curbed.cc + Curbed.cc + f.fontdeck.com + Fontdeck (partial) + f35.com + F35.com + f3mimages.com + f3mimages.com + f5.com + F5 + f5networks.co.jp + F5 + f9.fi + F9 Distribution + faaaccess.ed.gov + ED.gov (partial) + fablabtacoma.com + FabLab Tacoma + fablabtruck.nl + Fab Lab Truck.nl + fabricatorz.com + Fabricatorz + facebook-studio.com + Facebook Studio + facebook.* + Facebook + facebook.foxnewsinsider.com + Fox News (partial) + facebookcorewwwi.onion + Facebook Hidden Service + facepunch.com + Facepunch.com + facilities.ucsd.edu + UCSD + factiva.com + News Corporation (partial) + factor.cc + Factor.cc + factorable.net + factorable.net + factorydirectcabins.com + Factory Expo Home Centers + factoryexpo.net + Factory Expo Home Centers + factoryexpodirect.com + Factory Expo Home Centers + factoryexpohomes.com + Factory Expo Home Centers + factoryhomesale.com + Factory Expo Home Centers + factoryselecthomes.com + Factory Expo Home Centers + faculty.ischool.syr.edu + Syracuse University (partial) + fafsa.ed.gov + ED.gov (partial) + fafsa.gov + ED.gov (partial) + fafsademo.test.ed.gov + ED.gov (partial) + fafsalivehelp01.ed.gov + ED.gov (partial) + fagms.net + fagms.net + fail0verflow.com + fail0verflow + fairwork.gov.au + Fair Work Ombudsman + faithinmotion.com.au + Faith in Motion.com.au (partial) + faiusa.org + Food Allergy Initiative + fakturownia.pl + Fakturownia (partial) + falconjet.com + Dassault Falcon + falkirk.gov.uk + UK Local Government + falkvinge.net + Falkvinge on Infopolicy + familychristian.com + Family Christian Stores + fanatics.com + Fanatics (partial) + fanboy.co.nz + Fanboy + fandago.com + Fandago + fandango.com + Fandango (partial) + fangamer.net + Fangamer (partial) + fanhattan.com + Fanhatten (partial) + fanpagegeneratorpro.com + Global Marketing Strategies (partial) + faq.i3wm.org + i3wm.org (partial) + faradaysec.com + Faraday sec.com + fareham.gov.uk + UK Local Government + fark.com + Fark (partial) + farmaciforbundet.se + Farmaciforbundet.se + faround.net + Faround.net (false MCB) + fas.org + Federation of American Scientists + fashionara.com + Fashionara.com (partial) + fashiondip.com + Fashion Dip + fass.se + Fass.se + fast.wistia.net + Wistia (partial) + fastclick.com + ValueClick (partial) + fastcodesign.com + Fast Co Design.com + fastcompany.com + Fast Company (partial) + fastdomain.com + FastDomain + fasthosts.co.uk + Fasthosts (partial) + fastly.com + Fastly + fastmail.fm + Fastmail (partial) + fastserv.com + Fast Serv.com + fastshare.cz + FastShare.cz + fastshoppingcart.com + Quick Shopping Cart + fastspring.com + FastSpring + fasttrack.va.gov + US Department of Veterans Affairs + fastwebhost.com + FastWebHost.com (partial) + fastwebmedia.com + Fast Web Media (partial) + fatcow.com + FatCow Web Hosting + fau.de + University of Erlangen-Nuremberg (partial) + fau.org + Freie Arbeiterinnen- und Arbeiter-Union (FAU) (CAcert) + fax.org + Public.Resource.Org + faxcritics.com + FaxCritics + faz-institute.de + FAZ (broken) + faz.de + FAZ (broken) + faz.net + FAZ (broken) + fazekas.hu + Fazekas + fazschule.net + FAZ (broken) + fb-assets.com + FreshBooks (partial) + fb-cdn.ghsrv.com + Real Networks (partial) + fb.com + Facebook + fb.finam.ru + Finam (partial) + fb.hsicloud.com + HsI cloud.com (partial) + fb.izvestia.ru + Izvestia.ru (partial) + fb.lagardere-pub.com + Lagardère Publicité (partial) + fb.me + Fb.me + fb18.de + FB18_Forum + fbcdn23dssr3jqnq.onion + Facebook Hidden Service + fbdatesecure.com + JDI Dating (partial) + fbhexpo.com + Factory Expo Home Centers + fbi.gov + Federal Bureau of Investigation (partial) + fbo.gov + Federal Business Opportunities + fbs.admin.utah.edu + University of Utah (partial) + fbsbx2q4mvcl63pw.onion + Facebook Hidden Service + fcac.org + Fairfax Public Access + fcc.gov + Federal Communications Commission (partial) + fcitx-im.org + Fcitx-im.org + fcns.eu + Frontier Network and Computing Systems + fcpablog.com + FCPA Blog (partial) + fdic.gov + Federal Deposit Insurance Corporation + fe03.rresults.com + Research Results.com + febas.de + Febas.de + fedbizopps.gov + Federal Business Opportunities + federalregister.gov + Federal Register + federalreserve.gov + Federal Reserve + federatedinvestors.com + Federated Investors (partial) + federatedmedia.net + Federated Media Publishing (partial) + fedex.com + FedEx.com (partial) + fedorahosted.org + Fedora Hosted.org (partial) + fedoramagazine.org + Fedora Magazine.org (false MCB) + fedorapeople.org + Fedora Project + fedoraproject.org + Fedora Project + feed2js.org + Feed2JS.org + feedarea.de + podcast.at (partial) + feedbackify.com + Feedbackify.com + feedblitz.com + FeedBlitz + feedburner.com + FeedBurner (partial) + feedjit.com + Feedjit (partial) + feedly.com + feedly.com (partial) + feedmyinbox.com + FeedMyInbox + feefighters.com + FeeFighters + feefo.com + Feefo + feide.no + Feide + feistyduck.com + Feisty Duck.com + feitbulbs.com + Feit Electric Company (partial) + fema.gov + Federal Emergency Management Agency (FEMA) + femtoduino.com + Femtoduino.com + fencecenter.com + Fence Center.com + fender.com + Fender.com (partial) + fenland.gov.uk + UK Local Government + feralhosting.com + Feral Hosting.com + feralinteractive.com + Feralinteractive.com + fernuni-hagen.de + FernUni-Hagen.de + festeirice.com.br + Arte do Lar.com.br + fetchback.com + FetchBack + fetlife.com + FetLife + fetshop.co.uk + FetShop.co.uk + ffcdn2012.fictionpressllc.netdna-cdn.com + FanFiction (partial) + ffmpeg.org + FFMPEG.org + ffrf.org + Freedom from Religion Foundation (partial) + ffs.ch + Swiss Federal Railways (SBB/CFF/FFS) + fh-kiel.de + University of Applied Sciences Kiel + fhi.se + FHI.se + fhs.se + FHS.se + fhserve.com + fhserve.com (partial) + fiannafail.ie + Fianna Fail + fibank.bg + Fibank + fiddler2.com + fiddler2.com + fidoalliance.org + FIDO Alliance.org + fiercefinance.com + FierceFinance (partial) + fiercewireless.com + FierceWireless (partial) + fifedirect.org.uk + UK Local Government + fightforthefuture.org + Fight for the Future (partial) + figshare.com + figshare + figue.com + FIGUE.com (partial) + file.kelleybluebookimages.com + Kelley Blue Book Co. + filebox.tv + FileBox + filecache.drivetheweb.com + PR Newswire (partial) + filecloud.io + filecloud.io + filemobile.com + Filemobile (partial) + filepost.com + FilePost.com + filerio.in + FileRio.in (false MCB) + files.*.geblogs.com + General Electric (partial) + files.adspdbl.com + adspdbl.com (partial) + files.cloudprivacy.net + Cloud Privacy (partial) + files.ezaxess.com + ezaxess.com (partial) + files.messe.de + Deutsche Messe (partial) + files.namecheap.com + NameCheap + files.quizsnack.com + quizsnack.com (partial) + files.slidemypics.com + SlideMyPics (partial) + files.status.net + Identica + files.tested.com + Whiskey Media (partial) + files.thirdpresence.com + ThirdPresence.com (partial) + filezilla-project.org + FileZilla (partial) + filialen.migros.ch + Migros + filippo.io + Filippo.io + filmbreak.com + FilmBreak + filmdates.co.uk + filmdates.co.uk (partial) + filmlair.com + Filmlair + filmlinc.com + Film Linc.com (partial) + filmlush.com + filmlash.com (partial) + filmon.com + Filmon.com + filmthreat.com + Film Threat + filterdigital.com + Filter (partial) + fimc.net + MediaSpan (partial) + fime.me + FIME.me + final-score.com + Final-Score + finalrewind.net + finalrewind.net + finalsite.com + finalsite (partial) + finance.google.* + Google Services + finance.google.co.* + Google Services + finance.gov.sk + SlovakGoverment + financialcryptography.com + Financial Cryptography + financiallink.ucsd.edu + UCSD + financnahitparada.sk + Financnahitparada.sk + finavia.fi + Finavia.fi + findababysitter.com.au + Find a Babysitter (partial) + findagrave.com + Find a Grave (partial) + findlegalforms.com + FindLegalForms.com (partial) + findmyorder.com + Digital River (partial) + findnsave.com + Find n Save (partial) + findretros.com + FindRetros.com + fineartamerica.com + Fine Art America + fineproxy.org + Fineproxy.org (partial) + finka.pl + Finka.pl (partial) + finkmanufacturing.com + BioShock Infinite + finlex.fi + Finlex + finma.ch + Swiss Financial Market Supervisory Authority (FINMA) + finmozg.ru + finmozg.ru + finn.no + Finn + finnchamber.com + SmartPractice + finra.org + Financial Industry Regulatory Authority + fins.com + News Corporation (partial) + firebase.com + Firebase (partial) + firedrive.com + Firedrive.com (partial) + fireeye.com + FireEye (partial) + firefox.com + Firefox.com + firefox.net.cn + Firefox.net.cn + firehost.com + FireHost (partial) + firelady.com + Firelady.com + firemail.de + Firemail.de + firm24.com + Firm24.com + firmas.lv + Firmas.lv + firstamendmentcoalition.org + First Amendment Coalition + firstcentralsb.com + First Central State Bank + firstclassmagazine.se + First Class Magazine.se (partial) + firstdirect.com + HSBC + firstgiving.com + FirstGiving + firstlook.org + First Look.org + firstlook.pnas.org + PNAS First Look (partial) + fishwrapper.com + Fishwrapper.com (partial) + fiskeriverket.se + Fiskeriverket.se + fisync.dwolla.com + Dwolla (partial) + fit.edu + Florida Institute of Technology (partial) + fitbit.com + FitBit + fitnessmarket.com.au + Fitness Market (partial) + fitstudio.com + FitStudio.com (partial) + fiuza.me + fiuza.me + five.tv + FiveTV + fixubuntu.com + Fix Ubuntu.com + fkl.fi + Finanssialan Keskusliitto + flagrate.org + Flagrate.org + flameeyes.eu + Flameeyes + flamingspork.com + FlamingSpork.com (partial) + flashback.org + Flashback.org + flashtalking.com + Flashtalking (partial) + flashtalking.net + Flashtalking (partial) + flatlinesecurity.com + Flatline Security.com + flattr.com + Flattr + flavors.me + Flavors.me + flexinvestments.net + Flex Investments + flic.kr + Flickr + flickr.com + Flickr + flightaware.com + Flightaware + flightglobal.com + Flightglobal (partial) + flightglobalshop.com + Flightglobal (partial) + flinto.com + Flinto.com (partial) + flipboard.com + Flipboard (partial) + flippa.com + Flippa + flirble.org + The Flirble Organisation (partial) + flitto.com + Flitto.com + flix123.com + flix123.com + flixcart.com + Flixcart.com (partial) + flixden.com + FlixDen + flixster.com + Flixster (partial) + flo.cno.org + College of Nurses of Ontario (partial) + floatinghospital.org + Floating Hospital.org + floek.net + Floek.net + floridatoday.com + Florida Today (partial) + flossmanuals.net + FLOSSManuals.net + flow.typo3.org + TYPO3.org (false MCB) + flowingdata.com + FlowingData.com (partial) + flowtab.com + Flowtab.com + fls-eu.amazon.co.uk + Amazon Web Services + fls-eu.amazon.com + Amazon Web Services + fls-na.amazon.com + Amazon Web Services + fluctishosting.com + Fluctis Hosting.com (partial) + fluendo.com + Fluendo (partial) + fluidhosting.com + Fluid Hosting.com (partial) + fluttertoday.com + FlutterToday.com (partial) + fluxbb.org + FluxBB.org (partial) + flyersrights.com + FlyersRights.org + flyersrights.org + FlyersRights.org + flyertown.ca + Flyertown + flyingcameras.ca + Flying Cameras + flyingmeat.com + Flying Meat (partial) + fmaba.com + Family Medicine Association + fmv.se + FMV.se + fmworld.net + Fujitsu (partial) + fmylife.com + FMyLife.com + fnacspectacles.com + Fnac (partial) + fnal.gov + Fermi National Accelerator Laboratory (partial) + fncash.com + FN Cash.com + fnmag.co + FN Mag.co (false MCB) + focaljet.com + focaljet.com + focus.de + Focus.de (partial) + focuscamera.com + Focus Camera.com + focusonlearningcenter.com + Focus on Learning Center.com + foebud.org + FoeBuD e.V. + foecvliab.com + FoECV LiaB.com + fogbugz.com + FogBugz.com + fogcreek.com + Fog Creek + fokus.no + Fokus Bank + folksam.se + Folksam.se + fonder.ki.se + KI.se + fontdeck.com + Fontdeck (partial) + fontmarketplace.com + Monotype Imaging (partial) + fonts.com + Monotype Imaging (partial) + fontspring.com + Fontspring (partial) + foodallergy.org + Food Allergy & Anaphylaxis Network + foodandwaterwatch.org + Food & Water Watch (partial) + foodhub.co.nz + Food Hub + foodl.org + Foodl.org + foodprotectiontaskforce.com + Food Protection Task Force.com (partial) + foofighters.com + FooFighters + fool.co.uk + The Motley Fool (partial) + fool.com + The Motley Fool (partial) + fool.com.au + The Motley Fool (partial) + foolz.us + Foolz.us + footaction.com + Footaction USA + footballfanatics.com + Football Fanatics (partial) + footlocker-inc.com + Foot Locker, Inc. + footlocker.ca + Foot Locker Canada + footlocker.com + Foot Locker (partial) + footlocker.eu + Foot Locker Europe (partial) + fora.tv + FORA.tv (partial) + forage.redbull.ru + Red Bull (partial) + forbesmagazine.com + Forbes Magazine + forbrukerportalen.no + Forbrukerraadet + force.com + Salesforce.com (partial) + fordela.com + Fordela.com + foreninger.canaldigital.dk + CanalDigital + forensic.to + Zeno's Forensic Site + forensischinstituut.nl + NL Overheid + foreseeresults.com + ForeSee Results.com + foresight.org + Foresight.org + foresters.* + Foresters + foreverinfamous.com + Infamous + forex-metal.com + Forex-Metal + forex.com + Forex.com (partial) + forexct.com + ForexCT (partial) + forexctlogin.tradenetworks.com + ForexCT (partial) + forge.indepnet.net + Indepnet.net (partial) + forge.ocamlcore.org + OCaml (partial) + forge.projet-coclico.org + Coclico Project (partial) + forgefields.com + ForgeFields.com (partial) + forgesoftware.com + Forge Software + forgifs.com + forgifs.com + forgottenlands.eu + ForgottenLands.eu + foriswine.com + Foris Wine + form.cz.mbank.eu + mBank (partial) + form.mbank.com.pl + mBank (partial) + form.sk.mbank.eu + mBank (partial) + formalyzer.com + Trackalyzer + formatdynamics.com + FormatDynamics.com + forms.aweber.com + AWeber Communications (partial) + forms.nrc.gov + United States Nuclear Regulatory Commission + formsanity.com + FormSanity.com (partial) + formstack.com + Formstack (partial) + fornex.com + Fornex.com (partial) + forrester.com + Forester (partial) + forsakringskassan.se + Forsakringskassan.se + forsvarsforbundet.se + Forsvarsforbundet.se + fortum.com + Fortum + fortunetango.com + FortuneTango + forum-3dcenter.org + forum-3dcenter + forum.419eater.com + 419 Eater.com (partial) + forum.e-hentai.org + E-Hentai Forums + forum.eurofurence.org + Eurofurence + forum.feathercoin.com + FeatherCoin (partial) + forum.hackinthebox.org + Hackinthebox.org + forum.hostican.com + Hostican Web Hosting + forum.intern0t.org + intern0t.org (partial) + forum.kapsi.fi + Kapsi.fi (very partial) + forum.libcinder.org + Cinder (partial) + forum.mandriva.com + Mandriva.com (false MCB) + forum.nasaspaceflight.com + NASASpaceFlight.com (partial) + forum.openvz.org + OpenVZ.org (false MCB) + forum.palemoon.org + Pale Moon.org (partial) + forum.quantifiedself.com + Quantifiedself.com + forum.spring.io + Spring.io (false MCB) + forum.susliving.org + Susliving (partial) + forum.ukfur.org + UKFur + forum.worldofwarships.* + World of Warships (partial) + forumatic.com + Forumatic (partial) + forumblog.org + ForumBlog.org + forums.adobe.com + Adobe.com (false MCB) + forums.aws.amazon.com + Amazon Web Services + forums.bad-dragon.com + Bad Dragon + forums.binaryturf.com + BinaryTurf + forums.e-hentai.org + E-Hentai Forums + forums.geforce.com + GeForce.com (partial) + forums.getfoxyproxy.org + Get Foxy Proxy.org (partial) + forums.lshtm.ac.uk + London School of Hygiene & Tropical Medicine + forums.playfire.com + Playfire (partial) + forums.sabnzbd.org + SABnzbd Forums + forums.satellitecyprus.com + Cyprus Satellite (partial) + forums.uberent.com + UberEnt.com (partial) + forums.webnms.com + Zoho (partial) + fosdem.org + FOSDEM.org + fossbazaar.org + FOSSBazaar.org (partial) + fossil-scm.org + Fossil-SCM.org + fotoalbumy.azet.sk + Azet.sk + fotoblur.com + Fotoblur + fotocommunity.de + fotocommunity.de (partial) + fotopigeon.com + FotoPigeon + foundationbeyondbelief.org + Foundation Beyond Belief.org + foundationsource.com + Foundation Source + fourmilab.ch + Fourmilab (partial) + foursquare.com + Foursquare.com (partial) + fox-it.com + Fox-IT.com + foxnews.ramp.com + Fox News (partial) + foxycart.com + FoxyCart.com (partial) + foxydeal.com + foxydeal.de (partial) + foxydeal.de + foxydeal.de (partial) + fp.my.uh.edu + University of Houston (partial) + fpcomplete.com + FP Complete.com + fr.canon.be + Canon + fr.canon.ch + Canon + fr.ch + Schweizer Regierung + fr.spontex.org + Spontex.org + fr.tchibo.ch + Tchibo + fr.tickengo.ca + Tickengo + fr33tux.org + fr33tux.org + frack.nl + Frack.nl + fraglive.cl + Fraglive + franceserv.fr + Franceserv + franchiseradioshack.cloudapp.net + RadioShack (partial) + franchiseradioshack.com + RadioShack (partial) + franken.de + Franken.de + fredandpickles.co.uk + Fred and Pickles + frederik-braun.com + Frederik-Braun.com + free-tv-video-online.me + Free-TV-Video-Online.me + freeassangenow.org + Free Assange Now.org + freebarrettbrown.org + Free Barrett Brown.org + freebase.com + Freebase (partial) + freebaselibs.com + Freebase (partial) + freebiblesoftware.com + Free Bible Software.com + freebsd.org + FreeBSD (partial) + freebsdfoundation.org + FreeBSD Foundation.org + freecause.com + Freecause + freecode.com + Freecode (partial) + freecultr.com + FREECULTR + freedesktop.org + freedesktop.org (partial) + freedns.afraid.org + FreeDNS.Afraid.org + freedom-to-tinker.com + Freedom to Tinker + freedomboxfoundation.org + Freedombox Foundation + freedomnotfear.org + Freedom not Fear.org + freedomonlinecoalition.com + Freedom Online Coalition.com + freedompop.com + FreedomPop.com (partial) + freefind.com + FreeFind + freejeremy.net + Free Jeremy.net + freelancer.co.uk + Freelancer + freelancer.com + Freelancer + freelansim.ru + Freelansim.ru (partial) + freemail.sebijk.com + Home of the Sebijk.com + freemailer.ch + Freemailer.ch + freenetproject.org + Freenet + freenode.net + freenode + freeporngif.com + Free Porn Gif.com (partial) + freepracticetests.org + Free practice tests.org + freepress.net + Free Press + freeprivacypolicy.com + Global Marketing Strategies (partial) + freerainbowtables.com + Free Rainbow Tables + freescale.com + Freescale.com (partial) + freescorenation.com + FreeScoreNation.com + freesnowden.is + Free Snowden.is + freespeech.org + Free Speech.org + freeunlocks.com + FreeUnlocks.com + freewebsitetemplates.com + freewebsitetemplates.com + freeworld.thc.org + The Hacker's Choice + freeyourandroid.org + FSFE.org (partial) + french-country-cottages.co.uk + Wyndham (partial) + frenchtouch.pro + FrenchTouch.pro + frenchtv.to + FrenchTV.to + frequentis.com + Frequentis.com (partial) + fresh-hotel.org + Fresh-hotel.org + freshbooks.com + FreshBooks (partial) + freshbsd.org + FreshBSD.org + freshmilk.tv + Freshmilk.tv (partial) + freshports.org + Freshports.org + fribid.se + FriBID.se + frictionalgames.com + Frictional Games (partial) + frid.ge + Fridge + friedhoff.org + Friedhoff.org + friendfeed-media.com + Friendfeed + friendfeed.com + Friendfeed + friendfinder.com + FriendFinder + friendlybracelets.com + Friendly Bracelets.com (partial) + friendster.com + Friendster (partial) + fromorbit.com + fromorbit.com + frontier.co.uk + Frontier.co.uk (partial) + frontiersin.org + Frontiers (partial) + frontlinedefenders.org + Frontline Defenders + frozen-yogurt-franchise.org + Frozen Yoghurt Franchise + frozencpu.com + FrozenCPU.com + frs.monotypeimaging.com + Monotype Imaging (partial) + frsupport.msi.com + MSI.com (false MCB) + frugalware-art.org + openDesktop.org + frwp.org + Wikimedia + frype.com + Draugiem.lv (partial) + fsadownload.ed.gov + ED.gov (partial) + fsaregistration.ed.gov + ED.gov (partial) + fsawebenroll.ed.gov + ED.gov (partial) + fsb.org.uk + Federation of Small Businesses (partial) + fsdata.se + FS Data + fsf.org + Free Software Foundation + fsfe.org + FSFE.org (partial) + fsfeurope.org + FSFE.org (partial) + fshare.vn + Fshare.vn + fsisac.com + FS ISAC.com + fstoppers.com + Fstoppers.com + fsu.edu + FSU.edu (partial) + ftb.ca.gov + California Franchise Tax Board + ftccomplaintassistant.gov + Federal Trade Commission (partial) + ftd.de + FTD.de + fteproxy.org + fteproxy.org + ftlgame.com + FTL Game.com (false MCB) + ftp.intevation.de + Intevation GmbH (partial) + ftp.intevation.net + Intevation GmbH (partial) + ftp.intevation.org + Intevation GmbH (partial) + ftp.rnl.ist.utl.pt + Technical University of Lisbon + fuelcdn.com + fuelcdn.com + fueleconomy.gov + Fuel Economy + fuerzapopular.pe + Fuerza Popular (partial) + fuerzapopularpe.keikoperu.com + Fuerza Popular (partial) + fujitsu-webmart.com + Fujitsu (partial) + fukuchi.org + Fukuchi.org + fulcrumbiometrics.com + Fulcrum Biometrics + fullcirclestudies.com + Full Circle Studies (partial) + fullerton.edu + Fullerton.edu (partial) + fullrate.dk + Fullrate (partial) + fulltraffic.net + FullTraffic (partial) + fundaciontelevisa.org + Fundacion Televisa.org (false MCB) + fundfill.com + FundFill.com + fundrazr.com + FundRazr.com (partial) + fundusze-emerytalne.money.pl + Money.pl (false MCB) + fundusze-inwestycyjne.money.pl + Money.pl (false MCB) + funkyandroid.com + Funky Android.com + furaffinity.net + Furaffinity (partial) + further.co.uk + Further + fuscia.info + fuscia.info + fused.com + Fused + fusion-net.co.uk + FusionNet + fusion.webfusion-secure.co.uk + webfusion (partial) + fusionforge.org + FusionForge + fusionio.com + FusionIO + fuskator.com + Fuskator.com + fust.ch + Coop + futurelearn.com + FutureLearn.com + futurity.org + Futurity.org + fuzeqna.com + Authorize.Net + fuzzing-project.org + Fuzzing-Project.org + fvn.no + Forsiden (partial) + fwc.gov.au + Fair Work Commission + fwd.channel5.com + Channel 5 + fwdcdn.channel5.com + Channel 5 + fwmapps.co.uk + Fast Web Media (partial) + fws.gov + U.S. Fish and Wildlife Service (partial) + fxguide.com + fxguide.com (partial) + fxosphone.mozilla.com.tw + Mozilla.com.tw (partial) + fxphd.com + fxphd + fxprime.com + FX Prime.com + fxsystems.com + FX Systems + fylde.gov.uk + UK Local Government + g-ir.com + Global Investor Relations + g.liveinternet.ru + LiveInternet (partial) + g.mozest.com + Mozest + g33kinfo.com + g33kinfo.com (partial) + g5.gov + G5 - US Department of Education + gaaturustigslapen.nl + Gaatur u stig slapen.nl + gab.cookie.oup.com + Oxford University Press (partial) + gabry.hu + Gabry.hu + gadget-o.com + Gadget-o + gaiahost.coop + GAIA Host Collective + gajim.org + Gajim + galaxis.at + Galaxis.at + gallup.com + Gallup (partial) + gamasutra.com + TechWeb (partial) + gambleid.com + GambleID + gambling-affiliation.com + iGaming (partial) + gamcare.org.uk + GamCare (partial) + game.co.uk + Game.co.uk + gamebase.dealspwn.com + HotUKDeals (partial) + gamedev.net + GameDev.net (partial) + gamefly.co.uk + GameFly + gamefly.com + GameFly + gamehouse.com + GameHouse + gameinformer.com + GameInformer (partial) + gameladen.com + Gameladen + gamelink.com + Game Link (partial) + gameoapp.com + gameoapp.com + gameological.com + The Gameological Society (partial) + gamersfirst.com + Gamersfirst.com (partial) + gamesonly.at + GamesOnly.at + gamesports.net + GameSports.net (false MCB) + gamespot.com + GameSpot (partial) + gamestarmechanic.com + Gamestar Mechanic + gamestop.com + GameStop + gametracker.com + Gametracker.com (partial) + gametreedeveloper.com + GameTree + gametreelinux.com + GameTree + gamezebo.com + Gamezebo + gaminatorslots.com + Gaminator + gamingonlinux.com + Gamingonlinux.com + gammae.com + GammaE.com + gammagroup.com + Gamma Group + gandi.net + Gandi + ganglandnews.com + Gang Land News + ganglia.wmflabs.org + Wikimedia + gannettridge.com + Gannett Ridge + ganzestore.com + Ganz eStore.com (partial) + garagegames.com + GarageGames + garciniacambogiavitalmend.com + Garcinia Cambogia VitalMend.com (partial) + garfield.com + Garfield.com + gargoyle-router.com + Gargoyle Router Firmware + garlandscience.com + Informa (partial) + garmin.com + Garmin + garoa.net + Garoa.net + gartner.com + Gartner.com (partial) + garyjohnson2012.com + Gary Johnson 2012 + gasngrills.com + Gasngrills.com (partial) + gatag.it + Sabre Hospitality Solutions (partial) + gateshead.gov.uk + UK Local Government + gatewaysb.com + Gateway State Bank + gatwickairport.com + Gatwick Airport + gavelbuddy.com + Gavel Buddy.com + gavelbuddylive.com + Gavel Buddy Live.com + gavinhungry.com + gavinhungry.com + gavinhungry.io + Gavin Hungry.io + gay-torrents.net + GayTorrents + gay180.com + Gay180 + gayromeo.com + PlanetRomeo + gazellegames.net + gazellegames.net + gbatemp.net + GBAtemp.net + gbot.me + Gogobot (partial) + gcaptain.com + gCaptain.com (partial) + gcdn.org + gCDN.org + gcentral.biz + G Central + gchat.com + GChat.com + gcmasia.com + GCM Asia.com (partial) + gcmcomputers.com + GCM Computers.com + gdata-software.com + G Data Software (partial) + gdata.* + G Data Software (partial) + gdata.co.jp + G Data Software (partial) + gdata.youtube.com + Google APIs + gdatasoftware.* + G Data Software (partial) + gdatasoftware.co.uk + G Data Software (partial) + gdatasoftware.com.br + G Data Software (partial) + ge.ch + Schweizer Regierung + geany.org + Geany.org (false MCB) + gearsourceeurope.com + GearSourceEurope (partial) + gearworkstire.com + Gearworks Manufacturing + geef.nl + Geef.nl + geek.net + Geek.net + geekevents.org + Geekevents.org + geekify.com.au + Geekify (partial) + geekisp.com + GeekISP.com + geeknetmedia.com + Geeknet Media (partial) + geeksphone.com + Geeksphone.com + geektechlabs.com + Geek Tech Labs.com + gefpmis.org + International Finance Corporation (partial) + geizhals.at + Geizhals.at + geizhals.de + Geizhals.de + geldermalsen.nl + NL Overheid + gemalto.com + Gemalto.com (partial) + gemcutter.org + RubyGems.org (partial) + gemeenteberkelland.nl + NL Overheid + gemeentebest.nl + NL Overheid + gemeentenoordenveld.nl + NL Overheid + gemeentewesterveld.nl + NL Overheid + gemeentewestland.nl + NL Overheid + gemius.pl + Gemius + gencat.cat + Generalitat of Catalonia (partial) + generationawake.eu + DesignAddict + geneseephoto.com + Genesee Photo Systems + genesis-technologies.com + Genesis-Technologies + geneva.usmission.gov + US Mission.gov (partial) + genges.com + GenGes.com + geni.net + GENI (partial) + genivi.org + GENEVI.org (partial) + genome.gov + US government (partial) + gentlelabs.com + Gentle labs.com + gentoo-art.org + openDesktop.org + gentoo-ev.org + Gentoo-eV.org + gentoo.org + Gentoo (partial) + geoamigo.com + GeoAmigo + geodacenter.org + Arizona State University (partial) + geolistening.com + Geo Listening.com + georgetown.edu + Georgetown University (partial) + georgiegirl.com.au + Georgie Girl Australia (partial) + geotrust.com + GeoTrust + gephi.org + Gephi + german-design-council.de + German Design Council + germantv.net + GermanTV + geronimo.apache.org + Apache.org (false MCB) + get.cm + Get.CM + get.it + Get.It + getadblock.com + AdBlock + getawaygrey.com + GetAwayGrey + getbuckyballs.com + Buckyballs + getcashboard.com + subimage (partial) + getchef.com + Get Chef.com (partial) + getclef.com + get Clef.com (partial) + getclicky.com + GetClicky + getcloak.com + GetCloak.com + getcloudapp.com + Linerunner (partial) + getclouder.com + GetClouder.com + getcomposer.org + Get Composer.org + getdigital-blog.de + Getdigital.de (partial) + getdigital.de + Getdigital.de (partial) + getdigital.eu + getDigital.eu + getdropbox.com + Dropbox + getfirebug.com + GetFirebug (false MCB) + getfoxyproxy.org + Get Foxy Proxy.org (partial) + getglue.com + GetGlue + getgo.de + getgo + getharvest.com + getHarvest.com (partial) + geti2p.net + Get I2P.net + getify.com + Getify.com (partial) + getjive.com + Jive.com + getlantern.org + Get Lantern.org + getmein.com + Live Nation Entertainment (partial) + getoutofdebt.org + Get Out of Debt Guy + getpebble.com + Pebble (partial) + getpersonas.com + GetPersonas.com + getpocket.com + GetPocket.com (partial) + getpocketbook.com + Pocketbook + getresponse.com + GetResponse.com (partial) + getsafeonline.org + Get Safe Online + getsatisfaction.com + Getsatisfaction.com + getshine.com + get Shine.com + getsyme.com + get Syme.com + gettingreal.37signals.com + 37Signals + gettraffic.com + GetTraffic.com + getty.edu + Getty.edu + gettyimages.* + Getty Images (partial) + gettyimages.co.* + Getty Images (partial) + gettyimages.com.au + Getty Images (partial) + gfi-italia.com + GFI Software Development (partial) + gfi.com + GFI Software Development (partial) + gfi.nl + GFI Software Development (partial) + gficloud.com + GFI Cloud + gfihispana.com + GFI Software Development (partial) + gfisoftware.de + GFI Software Development (partial) + gfmtrader.com + GFM Trader.com + gfsfrance.com + GFI Software Development (partial) + gftplns.org + Stelter (partial) + gfxpro.hu + Laptop.hu + gfycat.com + Gfycat.com + gg.gov.au + Governor-General of the Commonwealth of Australia + ghash.io + GHash.IO + ghirardelligiftguides.com + ghirardelligiftguides.com + ghost.org + Ghost.org (partial) + ghostery.com + Ghostery + ghosteryenterprise.com + Ghostery Enterprise.com + gi.de + Gesellschaft fuer Informatik + giac.org + GIAC.org + giantbomb.com + Giant Bomb.com (partial) + gibill.va.gov + US Department of Veterans Affairs + giblod.no + GiBlod.no + giffgaff.com + giffgaff + gifttool.com + GiftTool.com + gifyo.com + gifyo (partial) + giganews.com + Giganews (partial) + gigantic.com + Gigantic Tickets (partial) + gigaom.com + GigaOM (partial) + gigaserver.cz + Gigaserver (partial) + gigaset.com + Gigaset.com + gigaset01.webtrekk.net + Webtrekk.net + gigasize.com + GigaSize (partial) + gigenet.com + GigeNET.com + gigenetcloud.com + GigeNET Cloud.com + gigenetcloud.gigenet.net + GigeNET Cloud.com + gigya.com + Gigya (partial) + gimmickwear.com + Gimmickwear + giphy.com + Giphy.com + girlscouts.org + Girl Scouts (partial) + gistmarks.com + gistmarks.com + gitbook.io + GitBook.io (partial) + gitc.finance.gov.au + Commonwealth GITC + gitcafe.com + GitCafe (partial) + gitcop.com + GitCop.com + github.com + GitHub + github.io + GitHub + gitian.org + Gitian.org + gitlab.com + GitLab.com (partial) + gitorious.org + Gitorious + gittip.com + Gittip.com + givedirect.org + GiveDirect + givedirectly.org + GiveDirectly.org + givekidstheworld.org + Give Kids the World + givekidstheworldstore.org + Give Kids the World + giveto.mariestopes.org.au + Marie Stopes International Australia + givingcomfort.com + GivingComfort.org + givingcomfort.org + GivingComfort.org + givingprograms.com + GivingPrograms.com + gkb.ch + Schweizer Kantonalbanken + gkg.net + GKG + gktw.org + Give Kids the World + gl.ch + Schweizer Regierung + glad.org + GLAD (Gay & Lesbian Advocates & Defenders) + glamorousuk.com + Glamorous UK + glasgow.gov.uk + UK Local Government + glasscraftexpo.com + Glass Craft & Bead Expo + glassdoor.co.* + Glassdoor (partial) + glassdoor.com + Glassdoor (partial) + glassdoor.com.au + Glassdoor (partial) + glasses.com + Glasses.com (partial) + glassesusa.com + Glassesusa.com + gleam.io + Gleam + glenoit.com + Glenoit.com + glenscott.net + GlenScott + glitterbank.com + GlitterBank (partial) + glkb.ch + Schweizer Kantonalbanken + glo.bo + bit.ly vanity domains + global.ahnlab.com + Ahnlab + global.ebsco-content.com + EBSCO-content.com + global.fncstatic.com + Fox News (partial) + global.latin.epson.com + Epson.com (partial) + globalbersih.org + Global Bersih + globalchokepoints.org + EFF + globaleaks.org + GlobaLeaks.org (partial) + globalmarinenet.com + Global Marine Networks (partial) + globalnetworkinitiative.org + Global Network Initiative.org + globaloneteam.com + globaloneteam.com + globalperspectivescanada.com + Global Perspectives Canada + globalpolicy.org + Global Policy Forum + globalscaletechnologies.com + Global Scale Technologies + globalsign.* + GlobalSign + globalsign.co.* + GlobalSign + globalsign.com.* + GlobalSign + globalsources.com + Global Sources (partial) + globaltap.com + Globaltap.com + globaltestsupply.com + Globaltestsupply + globalvoicesonline.org + Global Voices Online.org (partial) + globalwitness.org + Global Witness + globat.com + Globat + globes.co.il + Globes (partial) + globetrotter.de + Globetrotter + globusonline.org + Globus Online + globusreisen.ch + Hotelplan + globusvoyages.ch + Hotelplan + glose.com + Glose.com + gloucestershire.gov.uk + UK Local Government + gls-group.eu + General Logistics Systems + gls.de + GLS Bank + gls.gls-service.de + GLS Bank + gluster.org + Gluster.org + glype.com + Glype (partial) + glyph.im + glyph.im + gmail.com + Google Services + gmo-registry.com + GMO-Registry.com + gmo.jp + GMO Internet (partial) + gmocloud.com + GMO Cloud.com (partial) + gmodules.com + Google APIs + gmoregistry.com + GMO-Registry.com + gmplib.org + GMP Lib.org + gmu.edu + George Mason University (partial) + gmx.* + GMX + gmx.co.uk + GMX + gna.org + Gna (partial) + gnome-help.org + openDesktop.org + gnome-look.org + openDesktop.org + gnome.org + GNOME (partial) + gnomefiles.org + openDesktop.org + gnomejournal.org + GNOME (partial) + gnu.org + GNU.org (partial) + gnuheter.com + Planet Gnuheter + gnunet.org + GNUnet + gnupg.org + GnuPG.org (partial) + go.oclaserver.com + oclaserver.com + go.tendatta.com + tendatta.com + go.touchcommerce.com + TouchCommerce (partial) + go.utah.edu + University of Utah (partial) + go2arena.com + Go2Arena.com + goaldet.com + Goaldet.com + goals.ar.gy + Argyle Social (partial) + goalworthy.com + GoalWorthy.com + gobby.0x539.de + 0x539 dev group (partial) + gocardless.com + Gocardless.com + gocoin.com + GoCoin.com + godaddy.com + GoDaddy (partial) + godaddymobile.com + GoDaddy (partial) + godl.co + Pagoda Box + godoc.org + GoDoc.org + godownloadsongs.com + Space Inch (partial) + goduke.com + Duke University (partial) + godvillegame.com + Godville game + goemerchant.com + GoEmerchant + goenergetix.com + Energetix (partial) + goeshow.com + Go eShow.com + gofundme.com + GoFundMe + gog.com + GOG.com + gogetssl.com + GoGetSSL.com + gogoair.com + Gogo + gogobot.com + Gogobot (partial) + gogoinflight.com + Gogo + gogotraining.com + GogoTraining.com (partial) + gogoyoko.com + gogoyoko (partial) + goingup.com + GoingUp (partial) + goke.me + Goke.me + golang.org + Go Lang.org + goldenadventures.com + Golden Adventures + goldenarium.com + Goldenarium + goldenfrog.com + Golden Frog.com (partial) + goldenorb.trinity.duke.edu + Duke University (partial) + goldsborowebdevelopment.com + Goldsboro Web Development + goldstar.com + Goldstar (partial) + golf2go.net + BCGolf.com + golfcourseindustry.com + Golf Course Industry + golfdigest.com + Golf Digest (partial) + golfdigestinsiders.com + Golf Digest (partial) + golflink.com + GolfLink.com (partial) + golflink.net + GolfLink.com (partial) + gomez.com + Compuware Gomez + gomoxie.com + Moxie Soft.com + gondor.io + Gondor + goo.gl + Google Services + goo.im + Goo.im + good.net + Good.net + goodnet.com + Good.net + goodpoint.de + rbu.sh + goodreads.com + Goodreads + goodsearch.com + goodsearch (partial) + goodsie.com + Goodsie (partial) + google-melange.com + GoogleMelange + google.* + Google Videos + google.ca + GoogleCanada + google.co.* + Google Videos + google.com + Google Videos + google.com.* + Google Videos + google.org + Google.org + googlecode.com + Google Services + googlemail.com + Google Services + googlesource.com + Google Services + googleusercontent.com + Google Services + googlewatchblog.de + GoogleWatchBlog + gosi.gov.sa + Saudi Government + goslice.com + Slice + gosoapbox.com + GoSoapBox + gosquared.com + GoSquared.com + gostats.com + GoStats (partial) + gosuslugi.ru + Gosuslugi.ru + gotlandring.com + Gotland Ring.com + gotmerchant.com + Gotmerchant.com (partial) + gotomeeting.com + Citrix (partial) + gotowebinar.com + Citrix (partial) + gotpantheon.com + Pantheon (partial) + gotskinswholesales.com + GotSkinsWholesales.com + goturkey.com + Go Turkey.com + gotvape.com + Got Vape.net + gotvape.net + Got Vape.net + gourmetgiftbaskets.com + GourmetGiftBaskets.com (partial) + gov.uk + GOV.UK + govcert.nl + NL Overheid + govdex.gov.au + GovDex + govexec.com + Atlantic Media (partial) + govspace.gov.au + Govspace + govwaste.co.uk + Gov Waste.co.uk + gowalla.com + Gowalla + gowork.pl + GoWork.pl (partial) + gp.se + GP.se (partial) + gpfi.org + GPFI + gpg4usb.cpunk.de + cpunk.de (partial) + gpgtools.org + GPGTools (partial) + gpodder.net + gPodder (partial) + gpp.partners.sophos.com + Sophos (partial) + gpul.org + GPUL.org (partial) + gq-magazine.co.uk + GQ (partial) + gq.com + GQ (partial) + gr.ch + Schweizer Regierung + graasmilk.net + graasmilk.net + grabcad.com + GrabCAD + gradapply.ucsd.edu + UCSD + gradimages.com + GradImages + gradschool.utah.edu + University of Utah (partial) + graduateapp.ucsd.edu + UCSD + grahamcluley.com + Graham Cluley.com (partial) + gramps-project + Gramps-project.org + gran-turismo.com + Gran-Turismo.com (partial) + grandhaventribune.com + Grand Haven Tribune (partial) + graphene-lda.com + Graphene-lda.com + grassroots.org + Grassroots.org (partial) + gratipay.com + Gratipay.com (partial) + gravatar.com + Gravatar + graysofwestminster.co.uk + Grays of Westminster (partial) + grc.com + Gibson Research + grcmc.org + Grand Rapids Community Media Center + grdc.com.au + Grains Research and Development Corporation + greasyfork.org + Greasy Fork.org + greatfire.org + GreatFire.org + greatnet.de + Greatnet.de (partial) + greatnonprofits.org + Greatnonprofits.org (partial) + greatscottgadgets.com + Great Scott Gadgets.com + greatteachersgreatschools.org + Stand for Children (partial) + greencar.com + Demand Media (partial) + greenhost.nl + Greenhost + greenhouse.io + Greenhouse.io + greenmangaming.com + greenman gaming (partial) + greenpolkadotbox.com + Green PolkaDot Box + greenqloud.com + GreenQloud.com + greensky.com + GreenSky Credit.com (partial) + greensmoke.co.uk + Green Smoke (partial) + greensmoke.com + Green Smoke (partial) + greentechmedia.com + Greentech Media + greenvehicleguide.gov.au + Green Vehicle Guide + greenvilleonline.com + GreenvilleOnline.com + greplin.com + Greplin.com + grepular.com + Grepular + gridserver.com + Media Temple (partial) + gridzdirect.com + Gridz Direct.com (partial) + griffith.edu.au + Griffith University + grillingishappiness.com + Grilling is Happiness.com + grinnell.edu + Grinnell College (partial) + grit.io + grit.io + grml.org + GRML.org + groceryserver.com + Grocery Server.com (partial) + groenlinks.nl + NL Politiek + groklearning-cdn.com + Grok Learning.com + groklearning.com + Grok Learning.com + groton.org + Groton.org + groupersocialclub.com + Grouper Social Club.com + groupersocialclub.com.au + Grouper Social Club.com + grouplogic.com + GroupLogic (partial) + groupon.co.uk + Groupon DE/UK + groupon.com + Groupon.com (partial) + groupon.de + Groupon DE/UK + groupon.gr + Groupon.gr + groupon.se + Groupon.se + grouponworks.com + Groupon Works.com + groups.google.* + Google Services + groups.google.co.* + Google Services + groups.google.com.* + Google Services + groupwise.boell.de + Boell.de + growery.org + Growery (partial) + growhq.com + Grow HQ.com + grsecurity.net + GRSecurity.net + gruen.net + GRÜN Software + gruene.de + Alliance '90/The Greens (partial) + grupfoni.com + Grupfoni + grupy-dyskusyjne.money.pl + Money.pl (false MCB) + gsfacket.se + Gsfacket.se + gsfn.us + gsfn.us + gsn.com + Game Show Network (partial) + gsnmagazine.com + Government Security News (partial) + gstatic.com + Google APIs + gsu.edu + GSU.edu (partial) + gtcsonline.mycashflow.fi + GTC's Online + gtk-apps.org + openDesktop.org + gu.com + The Guardian (partial) + gu.tt + Guttmacher Institute + guadec.org + GPUL.org (partial) + guarantorusloans.co.uk + Guarantorus Loans.co.uk + guardian.co.tt + Guardian.co.tt (false MCB) + guardianbookshop.co.uk + The Guardian (partial) + guardianeatright.co.uk + The Guardian (partial) + guardianproject.info + Guardian Project + guardiansubscriptions.co.uk + Guardian Subscriptions.co.uk + guide.macports.org + MacPorts.org + guidebook.com + Guidebook.com + guidestar.org + GuideStar (partial) + guifi.net + Guifi.net (partial) + guildmc.com + The Guild of Master Craftsmen + guildwars2.com + Guild Wars 2 (partial) + guitar.co.uk + Merchant City Music (partial) + guitarcenter.com + Guitar Center.com (partial) + guldencoin.com + Guldencoin.com + gulesider.no + Gulesider + gulli.com + gulli.com (partial) + gullipics.com + gulli.com (partial) + gum.co + Gumroad.com + gumgum.com + GumGum (partial) + gumroad.com + Gumroad.com + gumstix.com + Gumstix + gun.io + GunIO + gunadiframework.com + Accessible Information Management (gunadiframework.com) + gupnp.org + GNOME (partial) + guru.de + guru.de + gust.com + Gust (partial) + gutenberg.org + Gutenburg.org + guttmacher.org + Guttmacher Institute + gvntube.com + GVNTube.com (partial) + gweb03.webstorepackage.com + Website Pipeline (partial) + gyft.com + Gyft.com + gymglish.* + GymGlish (partial) + gymglish.co.uk + GymGlish (partial) + gymglish.com.br + GymGlish (partial) + gynecomastia.org + Gynecomastia.org + gzhls.at + Preisvergleich Internet Services (partial) + gzip.static.woot.com + Woot (partial) + h-da.de + Darmstadt University of Applied Sciences (partial) + h-node.org + h-node.org + h.online-metrix.net + online-metrix.net + h.s.sl.pt + Sapo.pt + h2hc.com.br + H2HC.com.br + h5n.us + h5n.us + haaksbergen.nl + NL Overheid + haarlemmermeer.nl + NL Overheid + habbo.fi + Habbo.fi + habervision.com + Haber Vision (partial) + habpl.us + habpl.us + habrahabr.ru + Habrahabr.ru (partial) + habrastorage.org + habrastorage.org + hackable-devices.org + hackable-devices.org + hackerexperience.com + Hacker Experience.com + hackerone.com + HackerOne.com + hackerrank.com + HackerRank.com + hackers.fi + hackers.fi + hackerschool.com + hackerschool.com + hackerspace.gr + Greek-various + hackerspace.pl + Hackerspace.pl + hackertarget.com + Hacker Target.com + hackinthebox.org + Hackinthebox.org + hackney.gov.uk + UK Local Government + hackpad.com + Hackpad + hackthissite.org + Hack This Site.org + hacktionlab.org + HacktionLab.org + hadalog.jp + Showcase-TV + haiku-os.org + Haiku Project + hailavenger.com + Hail Storm Products + hailguardian.com + Hail Storm Products + hailstormproducts.com + Hail Storm Products + hairsmize.com + Hairsmize.com + hak5.org + Hak5.org (partial) + hakko.com + Hakko.com + halebop.se + Halebop.se + halifax.co.uk + Halifax + halowaypoint.com + Halo + hamburg.de + Hamburg + hammacher.com + Hammacher Schlemmer (partial) + hamradio.com + Hamradio.com + handelsbanken.fi + handelsbanken.fi (partial) + handelsblatt.com + Handelsblatt (partial) + handmadekultur.de + Handmade Kultur.de (partial) + hands.com + hands.com + handtekening.nl + Handtekening.nl + handy.de + handy.de + hanford.gov + Hanford Site + hannovermesse.de + Hannover Messe.de (partial) + hansenet.download.nowtilus.tv + Nowtilus.tv (partial) + hants.gov.uk + UK Local Government + happyassassin.net + happyassassin.net + happyknowledge.com + HappyKnowledge.com + harakah.net.my + Harakahdaily (partial) + harakahdaily.net + Harakahdaily (partial) + hark.com + Hark + harland.com + Harland Clarke + harland.net + Harland Clarke + harlandclarke.com + Harland Clarke + harlandclarkegiftcard.com + Harland Clarke + harlandclarkewebsmart.com + Harland Clarke + harlandforms.com + Harland Clarke + harvardpilgrim.org + Harvard Pilgrim.org (partial) + hashcat.net + Hashcat + hashicorp.com + HashiCorp.com + haskell.org + Haskell.org (partial) + haskoin.com + Haskoin.com + haste.ch + Haste.ch + hastexo.com + hastexo.com + hastings.gov.uk + UK Local Government + hastrk1.com + hastrk1.com + hatatorium.com + Hatatorium + hatena.ne.jp + Hatena (partial) + haveibeenpwned.com + haveibeenpwned.com + haveproof.com + HaveProof.com + havering.gov.uk + UK Local Government + hawaiianair.com + Hawaiian Airlines + hawkhost.com + Hawk Host.com (partial) + hazen.gl.ciw.edu + Carnegie Institution for Science + hbanet.org + HBAnet.org + hbbtv.org + HbbTV + hbo.com + HBO + hboeck.de + HBoeck.de + hbr.org + HBR.org (partial) + hc2.humanclick.com + LivePerson (partial) + hd.se + HD.se + hddn.com + NetDNA (partial) + hdh.ucsd.edu + UCSD + hds.nerc.ac.uk + Natural Environment Research Council (partial) + hds.ucsd.edu + UCSD + hdsa.org + Huntington's Disease Society of America + hdtracks.com + HDtracks.com + he.com + Hurricane Electric + he.net + Hurricane Electric + headphone.com + Headphone.com + headstrong.de + headstrong.de + health.ucsd.edu + UCSD + healthcare.gov + Healthcare.gov + healthcarestaffbenefits.org + Healthcare Staff Benefits + healthcheckusa.com + HealthCheckUSA + healthdirect.gov.au + Healthdirect Australia + healthfuze.com + Healthfuze.com + healths.biz + Healths.Biz + healthunlocked.com + NHS (partial) + healthyforkids.wpengine.netdna-cdn.com + Healthy for Kids (partial) + heart.org + Heart.org (partial) + hearthvod.com + HearthVoD.com + heatball.de + Heatball.de + heathkit.com + Heathkit + heckrath.net + heckrath.net + heerenveen.nl + NL Overheid + heft.ivw.eu + IVW (partial) + heifer.org + Heifer.org + heimdalsecurity.com + Heimdal Security.com + heinlein-support.de + Heinlein-Support.de + heise.de + Heise.de (partial) + heiseshop.de + Heise shop.de + helix.apache.org + Apache.org (false MCB) + hellholecheesefactory.org + Hell Hole Cheese Factory.org + hello.tokyo + hello.tokyo + hellobar.com + Hello Bar (partial) + helloneighbour.com + Hello Neighbour + helmholtz-berlin.de + Helmholtz-Zentrum Berlin for Materials and Energy + helmich.de + Helmich IT-Security + help.aweber.com + AWeber Communications (partial) + help.codesion.com + Codesion (partial) + help.habbo.fi + Habbo.fi + help.lasallehs.net + lasallehs.net + help.livingsocial.co.uk + LivingSocial (partial) + help.netflix.com + Netflix (partial) + help.sixapart.com + SixApart + help.slideshare.com + SlideShare.net (partial) + help.snapengage.com + SnapEngage.com (false MCB) + help.tenderapp.com + ENTP (partial) + help.walmart.com + Walmart.com (false MCB) + helpdesk.softcom.com + SoftCom (partial) + helpjuice.com + Helpjuice (partial) + helpocean.com + helpOcean + helponclick.com + HelpOnClick + helpscout.net + Help Scout.net (partial) + helpspot.com + HelpSpot + helsinki.fi + University of Helsinki (partial) + heml.is + Heml.is + herbal-nutrition2.net + herbal-nutrition2.net + hercules.rr.com + RoadRunner + herdict.org + Herdict + herefordshire.gov.uk + UK Local Government + heroesofnewerth.com + S2 Games (partial) + heroku.com + Heroku + heroup.com + Hero Up.com + hertsdirect.org + UK Local Government + hesaplabakalim.com + Hesapla Bakalim.com + heteml.jp + Heteml.jp + hetlnvloket.nl + NL Overheid + hetzner.de + Hetzner Online + heusden.nl + NL Overheid + hex-rays.com + Hex-Rays.com + hexagon.cc + Hexagon + hexonet.net + Hexonet + hg.edgewall.org + Edgewall Software (partial) + hg.mozdev.org + Mozdev (partial) + hgo.se + HGO.se + hh.se + HH.se + hhmi.org + Howard Hughes Medical Institute + hi5.com + hi5 + hiawatha-webserver.org + Hiawatha-webserver.org + hiconversion.com + HiConversion.com (partial) + hideman.net + Hideman.net + hideme.ru + HideMe.ru + hideme.today + hideme.today + hidemyass.com + Hide My Ass (partial) + hidepay.net + Hidepay.net + hifx.co.uk + HiFX + hifxonline.co.uk + HiFX + hig.se + HIG.se + highbeam.com + Cengage (partial) + highfidelity.io + High Fidelity.io + highseer.com + High Seer.com + hillingdon.gov.uk + UK Local Government + hilversum.nl + NL Overheid + hinckley-bosworth.gov.uk + UK Local Government + hinckleyandbosworthonline.org.uk + UK Local Government + hipchat.com + HipChat.com + hipmunk.com + Hipmunk.com + his.com + Heller Information Services (partial) + his.se + HIS.se + history.lds.org + The Church of Jesus Christ of Latter-day Saints + historytoday.com + History Today (partial) + hitbox.com + Hitbox.com + hitbox.tv + hitbox.tv + hitleap.com + HitLeap.com + hits.dealer.com + Dealer.com (partial) + hitslink.com + HitsLink + hivelocity.net + Hivelocity Hosting + hivos.nl + Hivos.nl + hivos.org + Hivos.org + hizlisaat.com + Hızlı Saat + hjcms.de + HJCMS (CAcert) + hjv.dk + Hjv.dk + hjv.kursuslogin.dk + Hjv.kursuslogin.dk + hk.168qiquan.com + 168qiquan.com (partial) + hkex.com.hk + Hong Kong Stock Exchange (partial) + hkk.de + HKK + hkn.de + HKN (partial) + hlat.us + HabboLatino + hm.com + Hm.com + hmapps.net + hmapps.net + hmv.co.jp + HMV Japan (partial) + hmv.co.uk + HMV + hmv.com + HMV + hobbyking.com + Hobbyking + hobocomp.com + Hobocomp.com + hofer.at + Aldi + hofer.si + Aldi + hofstra.edu + Hofstra University + hoku.co.jp + Showcase-TV + hola.org + Hola + holderdeord.no + Holder de ord.no + holidaybreak.co.uk + Holidaybreak (partial) + hollywoodoutlaws.com + Hollywood Outlaws.com (partial) + hollywoodreporter.com + Hollywood Reporter (partial) + holoscripter.org + Holoscripter.org + home.americanexpress.com + AmericanExpress + home.ch + Home.ch (partial) + home.compete.com.edgesuite.net + Compete (partial) + home.efax.com + efax.com (partial) + home.pl + home.pl + home.regit.org + regit.org (partial) + homebase.co.uk + Homebase + homebase.com + Homebase + homebello.com + HomeBello (partial) + homebuzz.co.uk + home buzz.co.uk + homedepot.com + Home Depot.com (partial) + homefinder.com + HomeFinder.com (partial) + homeinsurance.com + HomeInsurance.com + homelessworldcup.org + Homeless World Cup + homementors.com + Home Mentors.com + hometheaterreview.com + Home Theater Review.com (partial) + honcode.ch + HONcode + honestpolicy.com + Honest Policy + honeybeeloans.com + HoneyBeeLoans.com + hoorn.nl + NL Overheid + hootsuite.com + HootSuite + hope.net + hope.net (partial) + hopstudios.com + Hop Studios + horde-llc.com + Horde (partial) + horde.hauke-m.de + Hauke + horizon.tv + Horizon.TV + horstaandemaas.nl + NL Overheid + hoseasons.co.uk + Wyndham (partial) + hospitalityleaders.com + Hospitality Leaders + host.co.id + Host.co.id + host.ie + Digiweb (partial) + host1plus.com + Host1Plus + host2.bg + host2.bg + hostanalytics.com + Host Analytics (partial) + hostasaurus.com + Hostasaurus + hostbaby.com + HostBaby (partial) + hostbillapp.com + HostBill (partial) + hostcenter.com + Bluewin HostCenter + hostcentric.com + HostCentric + hostcreo.com + Host Creo + hostdeclaration.ru + Declaration of Russian Hosting Providers + hostdime.com + HostDime (partial) + hostdimedomains.com + HostDime (partial) + hosteurope.de + Host Europe.de + hosteuropegroup.com + Host Europe Group + hostgator.com + HostGator (partial) + hosthorde.com + HostHorde.com + hostica.com + Hostica.com + hosting-advantage.com + NetFronts (partial) + hosting.0x539.de + 0x539 dev group (partial) + hosting.com + Hosting (partial) + hosting.de.inter.net + Inter.net (partial) + hosting.fleetnetworks.net + Fleet Networks (partial) + hosting.lavabit.com + Lavabit + hosting2go.nl + Hosting2GO.nl (partial) + hosting90.cz + Hosting90.cz + hosting9000.com + Hosting9000.com + hostingas.lt + Hostingas.lt + hostingcatalog.com + Hosting Catalog.com (partial) + hostingcon.com + HostingCon + hostingxtreme.com + HostingXtreme.com (partial) + hostit.hu + 23Vnet + hostmonster-cdn.com + Hostmonster + hostmonster.com + Hostmonster + hostpoint.ch + Hostpoint + hostpointpartner.ch + Hostpointpartner.ch + hostr.co + Hostr.co + hosts.co.uk + Hosts + hostvoice.com + Host Voice.com + hotel.ch + hotel.ch + hotelmangaby.com + Hotel Mangaby + hotelplan.ch + Hotelplan + hotels.com + Hotels.com (partial) + hoteltotravel.com + Hoteltotravel (partial) + hotelwifi.com + Hotel Wifi.com (partial) + hotfile.com + Hotfile + hothardware.pricegrabber.com + PriceGrabber clients + hotmail.co.* + Hotmail / Live + hotmail.com + Hotmail / Live + hotscripts.com + Hot Scripts.com + hotspot.t-mobile.net + T-Mobile + hotspotshield.com + Hotspot Shield (partial) + hotukdeals.com + HotUKDeals (partial) + hotwire.com + Hotwire + houndci.com + Hound CI.com + hounddogcentral.com + Hounddog Central + house.resource.org + Public.Resource.Org + housingwire.com + HousingWire.com + housting.de + Net-Housting.de (partial) + houten.nl + NL Overheid + hover.com + Hover.com (partial) + how-to-box.com + How to Box + howrandom.org + Howrandom.org + howsecureismypassword.net + How Secure Is My Password.net + howsmyssl.com + Hows My SSL.com + howsmytls.com + Hows My SSL.com + howto.gov + HowTo.gov + howto.landure.fr + Landure.fr + howtogeek.com + How To Geek.com (partial) + howtowriteabookasap.com + Global Marketing Strategies (partial) + hpcloud.com + HP Cloud.com (partial) + hplusdigitalseries.com + H+: the Digital Series + hqpower.eu + Velleman Group (partial) + hr-s.co.jp + HR Solutions + hra-news.org + HRA-News.org + hrc.org + Human Rights Campaign (partial) + hrcdn.net + HackerRank.com + hrep.nhmrc.gov.au + Human Research Ethics Portal + hrsmart.com + HRsmart + hrusecky.net + Michal Hrušecký + hrw.org + Human Rights Watch + hs.fi + Helsingin Sanomat (partial) + hsbc.* + HSBC + hsbc.co.* + HSBC + hsbc.com.* + HSBC + hsbctrinkaus.de + HSBC + hsivonen.fi + H Sivonen.fi + hslda.org + Home School Legal Defense Association + hsprod.investis.com + Investis.com (partial) + hsr.ch + University of Applied Sciences Rapperswil + hsselite.com + Hotspot Shield (partial) + hsto.org + Hsto.org + hstor.org + hstor.org + hsv.se + HSV.se + htbridge.com + HT Bridge.com + htrnews.com + Herald Times Reporter + http.cdnlayer.com + Internap Network Services (partial) + https.openbsd.org + OpenBSD.org (partial) + httpsnow.org + EFF + httpwatch.com + HTTPwatch.com + hubspot.com + HubSpot + hubzero.org + HUBzero + hud.gov + US Department of Housing and Urban Development (partial) + huffingtonpost.com + Huffington Post + hugedomains.com + HugeDomains.com (partial) + huggies.com.au + Huggies Australia (partial) + huizen.nl + NL Overheid + huk.de + HUK Coburg + humanaction.com + Human Action + humanbrainproject.eu + Human Brain Project.eu + humanevents.com + Human Events (partial) + humanism.org.uk + Humanism.org.uk + humanrights.gov.au + Australian Human Rights Commission + humanrightsdefensecenter.org + Human Rights Defense Center.org + humanrightsfirst.org + Human Rights First.org (partial) + humblebundle.com + Humble Bundle (partial) + hummingbird.sandiegoreader.com + San Diego Reader (partial) + hunch.com + Hunch (partial) + hungerhost.com + Hungerhost + huntcal.com + Hunt Calendars + huque.com + Huque.com (partial) + hurdman.app.bbb.org + Better Business Bureau (partial) + hurleymc.com + Hurley Medical Center + hurricaneelectric.net + Hurricane Electric + hush-hush.com + Hush-Hush (partial) + hush.com + Hushmail + hush.technology + Hush.technology + hushmail.com + Hushmail + hustlercanada.com + Hustler + hustlermagazine.com + Hustler + huuto.net + huuto.net + hvb.de + Hypovereinsbank + hvosting.ua + hvosting.ua + hwsw.hu + HWSW.hu + hyb.pw + Hybrid -- Cryptocurrency Combined + hydra.aufbix.org + Aufbix.org (partial) + hydra.geht.net + geht.net (partial) + hynek.me + Hynek.me + hypanova.com + Hypanova.com + hyperelliptic.org + Hyper Elliptic.org + hyperoptic.com + Hyperoptic.com + hypersend.labcorp.com + LabCorp + hyperspin.com + Hyperspin (partial) + hypovereinsbank.de + Hypovereinsbank + i-koruna.com + iKoruna + i.acdn.us + Yahoo! (partial) + i.arvm.de + arvm.de + i.bigmir.net + Bigmirnet (partial) + i.canvasugc.com + Canvas + i.cx + I.CX + i.dreamwiz.com + DreamWiz (partial) + i.duck.co + DuckDuckGo + i.encosia.com + Encosia + i.freeporngif.com + Free Porn Gif.com (partial) + i.imm.io + Pixlr (partial) + i.imwx.com + imwx.com (partial) + i.iucnredlist.org + IUCNredlist.org (partial) + i.kfs.io + kfs.io + i.kuonamaoni.com + kuonamaoni.com + i.lsimg.net + Live Strong.com (partial) + i.lv3.hbo.com + HBO + i.materialise.com + i.materialise (partial) + i.mktw.net + Marketwatch.com + i.mol.im + Daily Mail (partial) + i.o2active.cz + Telefónica (partial) + i.origin.mktw.net + Marketwatch.com + i.pgcdn.com + PriceGrabber + i.s-microsoft.com + Microsoft (partial) + i.superlawyers.com + Super Lawyers (partial) + i.t.net.ar + Taringa (partial) + i.techweb.com + TechWeb (partial) + i.ubm-us.net + TechWeb (partial) + i.yldbt.com + YieldBot (partial) + i0.cz + i0.cz + i0.poll.fm + Polldaddy + i1.*.msdn.com + MSDN (partial) + i1.ooshirts.com + ooshirts.com (partial) + i2.ooshirts.com + ooshirts.com (partial) + i2p2.de + I2P (partial) + iaapa.org + International Association of Amusement Parks and Attractions + iab.net + Interactive Advertising Bureau + iacr.org + International Association for Cryptologic Research + iam.netelligent.ca + Netelligent (partial) + iamplify.com + iAmplify (partial) + ian.com + ian.com + iana.org + IANA + iapc.nl + Stichting IAPC + iapc.utwente.nl + Stichting IAPC + iar.com + IAR.com + ias.cs.tum.edu + Technical University Munich (partial) + ias.edu + IAS.edu (partial) + iatspayments.com + iATS Payments.com (partial) + ib.primabanka.sk + Primabanka.sk + ib24.csob.sk + Csob.sk + ibario.com + iBario.com + iberdrola.es + Iberdrola (partial) + iberia.com + Iberia + iberiabank.com + Iberiabank + iblocklist.com + Iblocklist.com (partial) + ibphoenix.com + IBPhoenix.com + ibqonline.com + ibqonline.com + ibs.sberbank.sk + Ibs.sberbank.sk + ibtimes.co.uk + IBTimes.co.uk + ic-live.com + ic-live.com + ic3.gov + US Internet Crime Complaint Center + ica.se + ICA.se + icanhazip.com + icanhazip.com + icann.org + ICANN (partial) + icarol.com + iCarol + icbit.se + ICBIT + icculus.org + Icculus.org + ice.gov + U.S. Immigration and Customs Enforcement + icecat.biz + Icecat (partial) + icedivx.com + IceDivX.com + icefilms.info + IceFilms.info (partial) + iceheberg.fr + IceHeberg + iceimg.com + IceImg.com + icez.net + icez.net + icij.org + International Consortium of Investigative Journalists + icims.com + ICIMS.com + icinga.org + Icinga + icinga.wmflabs.org + Wikimedia + icio.us + Delicious + icln.org + ICLN.org + icmag.* + Intl Cannagraphic Magazine + icmail.com + ICMail + ico.gov.uk + UK Information Commissioner's Office (partial) + icommons.org + iCommons (partial) + icpen.org + ICPEN + icq.com + ICQ.com + icsdelivery.com + icsdelivery.com + ictrecht.nl + ICTRecht + icu-project.org + International Components for Unicode (partial) + icukhosting.co.uk + ICUK + id.google.co.* + Google Services + id.google.com.* + Google Services + id.tmtm.ru + TMtm.ru (partial) + id.trove-stg.com + Trove.com (partial) + idc.com + IDC + ideafit.com + Idea Fit.com (partial) + ideastorm.com + Dell (partial) + idefimusic.com + idefi + idefix.com + Idefix + identi.ca + Identica + identitytheft.org.uk + IdentityTheft + identrust.com + IdenTrust.com + identrustssl.com + IdenTrustSSL.com + idfpr.com + Illinois Department of Financial & Professional Regulation + idg.se + IDG.se (partial) + idgkonto.idg.se + IDG.se (partial) + idgmedia.idg.se + IDG.se (partial) + idm.east.cox.net + Cox Communications (partial) + idnet.net + IDNet + idofoundation.org + I Do Foundation + idp.micropolia.com + Micro Polia (partial) + idp.touchstonenetwork.net + Touchstone Network + idpedir.dmu.ac.uk + DMU + idstronghold.com + Identity Stronghold + iea.org + International Energy Agency + ieee-elearning.org + IEEE eLearning Library + ieee.org + IEEE (partial) + ielts.org + IELTS + ientry.com + iEntry (partial) + ietf.org + IETF (partial) + ifa.ch + IFA.ch + ifap.ed.gov + ED.gov (partial) + ifca.ai + International Financial Cryptography Association (partial) + ifex.org + IFEX.org + ifightsurveillance.com + I Fight Surveillance.org + ifixit-meta.dozuki.net + iFixit (partial) + ifixit.com + iFixit (partial) + iflygo.com + go!Mokulele + ifortuna.sk + Ifortuna.sk + ifrype.com + Draugiem.lv (partial) + ifttt.com + IFTTT.com (partial) + igalia.com + Igalia (partial) + ige.ch + Swiss Federal Institute of Intellectual Property + igg.me + Indiegogo (partial) + ighome.com + igHome.com + igl.net + Case's Ladder + igniterealtime.org + Ignite Realtime.org + ignum.cz + IGNUM (partial) + igodigital.com + iGoDigital.com + igolder.com + Igolder.com + igvita.com + Ilya Grigorik (partial) + iheart.com + iHeart.com (partial) + ihg.com + InterContinental Hotels Group + ihgagent.com + InterContinental Hotels Group + ihgmerlin.com + IHG Merlin.com (partial) + ihgplc.com + IHG PLC.com (partial) + iibuy.com.au + iiBuy.com.au + iinet.net.au + iiNet.net.au (partial) + iis.net + IIS.net + iis.se + IIS.se + ijmfreedommaker.org + IJM Freedom Maker (partial) + ijreview.com + IJReview.com (partial) + ikea.com + Ikea.com (partial) + ikiwiki.info + ikiwiki.info + ikk-gesundplus.de + IKK-Gesundplus + ikk-suedwest.de + IKK-Suedwest + ilivid.com + iLivid (partial) + iljmp.com + Iljmp.com + illicoweb.videotron.com + Videotron.com (mixed content) + illinois.edu + University of Illinois at Urban-Champaign (partial) + illinoislawreview.org + University of Illinois at Urban-Champaign (partial) + illumina.com + Illumina.com (partial) + ilmasto-opas.fi + Ilmasto-opas + ilo.org + ILO.org + ilogo.in + iLogo + ilovebluesea.com + i love blue sea.com + ilxgroup.com + ILG Group.com (partial) + im.gifbt.com + IndiaMART (partial) + im.post.ch + Post.ch + image.ahnlab.com + Ahnlab + image.arukereso.hu + Árukereső + image.compari.ro + Árukereső + image.email.argos.co.uk + Argos (partial) + image.netflix.com + Netflix (partial) + image.pazaruvaj.com + Árukereső + image.rakuten.co.jp + Rakuten.co.jp (partial) + image.trucktrend.com + Truck Trend.com (partial) + image.ucuzu.com + Árukereső + image.wemakeprice.com + wemakeprice.com (partial) + image.winzip.com + WinZip.com (partial) + image.www.gametracker.com + Gametracker.com (partial) + imagecomics.com + ImageComics.com + imageoptim.com + ImageOptim.com + images-jp.amazon.com + Amazon Web Services + images-static.trustpilot.com + Trustpilot.com (partial) + images.agoramedia.com + Everyday Health (partial) + images.akban.org + Akban.org + images.amazon.com + Amazon Web Services + images.bertrams.com + Betram Trading (partial) + images.bwbx.io + bwbx.io + images.community.wizards.com + Wizards of the Coast (partial) + images.dailyexpress.co.uk + Daily Express (partial) + images.dailystar-uk.co.uk + Daily Star (partial) + images.dealertrend.com + DealerTrend.com (partial) + images.deals.woot.com + Woot (partial) + images.discogsmp3.com + Discogs (partial) + images.eurogamer.net + Eurogamer (partial) + images.freewebs.com + Webs (partial) + images.google.com + Google Images + images.grab-media.com + Grab Media (partial) + images.grupfoni.com + Grupfoni + images.highspeedbackbone.net + SYX Services (partial) + images.hostels.com + Web Reservations International (partial) + images.indianexpress.com + Indian Express.com (partial) + images.ironsolutions.com + IRON Solutions (partial) + images.jitsmart.com + JumpingJack + images.jxt.net.au + JXT.net.au (partial) + images.liftshare.com + LiftShare + images.lynku.com + Lynku.com (partial) + images.minalyzer.com + Minalyzer.com (partial) + images.miretail.com + miretail.com + images.musicnet.com + MediaNet (partial) + images.palcdn.com + PAL cdn.com + images.pangora.com + Pangora (partial) + images.psxextreme.com + PSX Extreme (partial) + images.redbox.com + Redbox.com + images.rottentomatoescdn.com + Rottentomatoes + images.scanalert.com + ScanAlert (partial) + images.sciencedaily.com + ScienceDaily.com (partial) + images.sockshare.com + SockShare (partial) + images.summitpost.org + SummitPost (partial) + images.thebookpeople.co.uk + The Book People + images.thecarconnection.com + High Gear Media (partial) + images.tomsofmainestore.com + Tom's of Maine (partial) + images.travelpod.com + TravelPod (partial) + images.vg247.com + Eurogamer (partial) + images.waterfrontmedia.com + Everyday Health (partial) + images.womenshealth.de + Womenshealth.de + images.yemeksepetim.com + Yemeksepeti + imagesa.btol.com + Baker & Taylor (minimal) + imagesb.btol.com + Baker & Taylor (minimal) + imagesc.btol.com + Baker & Taylor (minimal) + imageshack.* + ImageShack (partial) + imagestash.org + Imagestash + imagewz.winzip.com + WinZip.com (partial) + imakethingswork.com + I Make Things Work + imation.com + Imation.com (partial) + imdb.com + IMDB (partial) + imediaconnection.com + iMedia Communications + imeem.com + Myspace (mixed content) + imf.org + IMF.org + imfimg.com + imfimg.com + imfreedom.org + Instant Messaging Freedom + img.a4apphack.com + a4apphack (partial) + img.bzimages.com + Branson Zipline (partial) + img.cache.vevo.com + VEVO + img.coxnewsweb.com + coxnewsweb.net + img.delvenetworks.com + delvenetworks + img.disc-soft.com + disc-soft.com (partial) + img.dxcdn.com + Deal Extreme + img.ebyrcdn.net + Ebyr CDN.net + img.en25.com + Eloqua + img.fark.net + Fark (partial) + img.gawkerassets.com + Gawkerassets.com (partial) + img.jp.fujitsu.com + Fujitsu (partial) + img.limango-media.de + limango + img.mixi.net + mixi (partial) + img.sedoparking.com + Sedo.com + img.shields.io + Img.shields.io + img.staticmy.com + staticmy.com + img.yawoot.com + Yawoot (partial) + img1.youm7.com + Youm7.com (partial) + imgbox.com + imgbox (partial) + imgflip.com + Imgflip.com + imgrind.com + IMGrind.com + imgur.com + Imgur + imine.co + imine.co + immerda.ch + Immerda.ch + immi.is + IMMI.is + immunicity.org + Immunicity.org + immunityinc.com + Immunityinc.com + immunitysec.com + Immunityinc.com + imo.im + imo.im + imodules.com + iModules + impactradius.com + Impact Radius + impactsoftcompany.com + Impact Software Company.com + imperativeideas.com + Imperative Ideas.com (partial) + imperial.ac.uk + Imperial College London (partial) + imperialviolet.org + ImperialViolet.org + impo.ch + Coop + improvely.com + Improvely.com + impulse.net + Impulse.net + imququ.com + ImQuQu.com + ims-dm.com + Interactive Marketing Solutions + imss-test-storage.ads.caltech.edu.s3.amazonaws.com + Caltech + imssr.com + IMSSR.com + in-disguise.com + in-Disguise.com + inachinashop.com + O’Heffernan + inapub.co.uk + Inapub.co.uk + inaturalist.org + iNaturalist.org + inbox.influenceexplorer.com + Sunlight Foundation (partial) + inboxapp.com + InboxApp.com + inc.com + Inc.com (partial) + incapsula.com + Incapsula + incircle.com + TPG Capital (partial) + incisivemedia.com + Incisive Media + incloak.com + inCloak.com + includes.okcimg.com + OkCupid (partial) + incoin.io + incoin.io (partial) + incommon.org + InCommon + incommonfederation.org + InCommon + ind.ie + Ind.ie + indabamusic.com + Indaba Music.com (false MCB) + independentmail.com + Independent Mail.com (partial) + indexoncensorship.org + Index on Censorship.org (partial) + indiegogo.com + Indiegogo (partial) + indiemerch.com + IndieMerch (partial) + indiemerchandising.com + IndieMerchandising + indiemerchstore.com + IndieMerchstore + individual-villas.co.uk + Wyndham (partial) + indprop.gov.sk + SlovakGoverment + inductionsolutions.com + Induction Solutions.com (partial) + industrybotnetgroup.org + Industry Botnet Group + industrybrains.com + Marchex (partial) + indybay.org + Indybay + indymedia.org + Indymedia.org + indymedia.org.uk + Indymedia.org + indyreader.org + IndyReader.org + indystar.com + Indianapolis Star + inertianetworks.com + Inertianetworks.com + inet.se + Inet.se + inetinteractive.com + iNet Interactive (partial) + inetsec.iseclab.org + Iseclab.org + infinet.com.au + Infinet.com.au (partial) + influencersconference.com + Influencers Conference + infobaselistexpress.com + Acxiom (partial) + infolinks.com + Infolinks (partial) + infomaniak.ch + Infomaniak Network + infomaniak.com + Infomaniak Network + infonline.de + INFOnline (partial) + infopaginas.com + Infopáginas + infopankki.fi + Infopankki + infoq.com + InfoQ (partial) + informahealthcare.com + Informa Healthcare (partial) + informahealthcarestore.com + Informa Healthcare (partial) + informatick.com + informatick.net (partial) + informatick.net + informatick.net (partial) + informatik.uni-hamburg.de + UHH_Informatik + informationactivism.org + informationactivism.org + informationweek.com + InformationWeek + informer.com + Informer.com (partial) + informit.com + InformIT (partial) + infosecisland.com + Infosec Island (partial) + infosecurity-magazine.com + Reed Exhibitions (partial) + infospyware.com + Infospyware.com (partial) + infotech-team.com + WebXakep.Net + infotomb.com + InfoTomb.com + infousa.com + Infogroup (partial) + infowar.com + InfoWar.com + infoworld.com + InfoWorld.com + infragard.net + Infragard.net + infrastructure.gov.au + Department of Infrastructure and Regional Development + infusionsoft.com + Infusionsoft (partial) + ing.com + ING + ing.nl + ING + ingdirect.com + ING Direct + ingdirect.com.au + ING Direct + ingdirect.es + ING DIRECT + ingentaconnect.com + ingentaconnect (partial) + ingenuity.net.au + Ingenuity Hosting + ingress.com + Ingress + initex.com + Initex.com + inkbunny.net + Inkbunny + inkfrog.com + inkFrog.com (partial) + inlinkz.com + InLinkz.com (partial) + inmotionhosting.com + InMotion Hosting + innovateuk.org + Innovate UK.org (partial) + inoreader.com + InoReader + insa-strasbourg.fr + Institut National des Sciences Appliquées (partial) + inschrijven.nl + Inschrijven.nl + insecure.ws + Insecure.ws + insidecelebs.com + insidecelebs.com + insidehighered.com + Inside Higher Ed (partial) + insideygs.com + insideygs.com + insight.adsrvr.org + adsrvr.org (partial) + insight.com + Insight + insightcommunity.com + Floor64 (partial) + insightexpress.com + InsightExpress.com + insightexpressai.com + InsightExpressai.com + inspectlet.com + Inspectlet.com + inspiration.dal.net + DALnet + inspirationgreen.com + Inspiration Green + inst.winzip.com + WinZip.com (partial) + instacominc.com + Instacom Inc.com + instagr.am + Instagram (partial) + instagram.com + Instagram (partial) + install.winzip.com + WinZip.com (partial) + instantlocatedemo.loc-aid.com + Locaid (partial) + instantpage.me + GoDaddy (partial) + instantssl.com + InstantSSL + instapanel.com + Instapanel.com + instapaper.com + Instapaper + institute.lds.org + The Church of Jesus Christ of Latter-day Saints + instra.com + Instra + insurance.va.gov + US Department of Veterans Affairs + insure-systems.co.uk + Dial Direct + intand.com + Tandem Calendar + intechnology.co.uk + InTechnology.co.uk + integrity.pt + Integrity.pt + integrity.st + Integrity.st + intel.com + Intel (partial) + intelfellowships.com + Intel Fellowships.com + intelli-direct.com + intelli-direct.com + intellichat.com + Just Develop It (partial) + intelligence.house.gov + US government (partial) + intelliot.com + intelliot.com + intelliserver.net + intelliserver.net + intelliworkschat.com + Intelliworks Chat.com + intellnews.net + Altoona Mirror (partial) + intelrad.com + Intelrad.com + intensitylab.com + IntensityLab.com + intentmedia.co.uk + Intent Media (partial) + interactivemediaawards.com + Interactive Media Awards + interactiveonline.com + Interactive Online + interc.pt + Interc.pt + intercom.io + Intercom.io + interdiscount.ch + Coop + interhyp.de + Interhyp.de + interkassa.com + Interkassa + interlan.se + Interlan.se + intermundomedia.com + Intermundo Media.com + intern.connecthr.nl + Campina (partial) + internap.com + Internap Network Services (partial) + internationalman.com + InternationalMan + internationalpayments.co.uk + International Payments.co.uk + internationalsos.com + International SOS + internet.bs + Internet.bs + internet.org.nz + Internet.org.nz + internet2.edu + Internet2 (partial) + internetbrands.com + Internet Brands + internetbs.net + Internet.bs + internetconsultatie.nl + NL Overheid + internetdefenseleague.org + Internet Defense League + internetretailer.com + Vertical Web Media + internetsociety.org + Internet Society (partial) + internetstaff.com + Internet Staff.com (partial) + internetsuccess.at + internetsuccess.at + internetvotes.org + Center for Rights + internetweek.jp + Internet Week.jp + internews.org + Internews + internt.slu.se + SLU.se + intersango.com + Intersango.com + interspire.com + BigCommerce + interworx.com + InterWorx (partial) + intevation.* + Intevation (partial) + intevation.de + Intevation GmbH (partial) + intevation.net + Intevation GmbH (partial) + intevation.org + Intevation GmbH (partial) + intgovforum.org + Int Gov Forum.org (partial) + intra.kth.se + KTH.se + intra.lshtm.ac.uk + London School of Hygiene & Tropical Medicine + intranet.ku.dk + University of Copenhagen (partial) + intrepidmuseum.org + Intrepid Museum + intrepidusgroup.com + Intrepidus Group.com + introversion.co.uk + Introversion Software (partial) + intuitivepassword.com + Intuitive Password.com (partial) + intuitlabs.com + Intuit Labs.com + inuits.eu + Inuits.eu + invasion.com + Invasion.com (partial) + invenio-software.org + Invenio-software.org + inventhelp.com + InventHelp + inverse.ca + Inverse + investor.gov + Investor.gov + investor.tremorvideo.com + Tremor Video.com (partial) + investorflow.com + Silver Oven (partial) + investors.com + Investors.com (partial) + investsmart.com.au + InvestSMART (partial) + invincea.com + Invincea.com (partial) + invisionpower.com + Invision Power Services (partial) + invitemedia.com + Invite Media (partial) + invoca.com + Invoca.com (partial) + invoca.net + Invoca.net + invodo.com + Invodo (partial) + invoiceocean.com + Invoice Ocean + involver.com + Involver + inwx.at + InterNetworX + inwx.ch + InterNetworX + inwx.com + InterNetworX + inwx.de + InterNetworX + inwx.es + InterNetworX + inwx.net + InterNetworX + io.tdc.no + TDC.no (partial) + iolproperty.co.za + IOLProperty.co.za (partial) + iomtt.com + IoMTT.com (partial) + ion.postclickmarketing.com + Post-Click Marketing (partial) + ionaudio.com + ION Audio + iop.org + Institute of Physics (partial) + ioplex.com + IOPLEX Software + iospp.org + IOSPP + iovation.com + iovation + ip-check.info + IP check (partial) + ip-projects.de + IP-Projects.de + ip-search.ch + Swiss Federal Institute of Intellectual Property + ip2location.com + IP2Location.com + ipa.jp + Japan Information Technology Promotion Agency + ipaddresslabs.com + IPAddressLabs.com (partial) + ipage.com + iPage + ipcc.ch + IPCC.ch + ipfire.org + IPFire.org (false MCB) + ipinvite.iperceptions.com + iPerceptions (partial) + iplay.com + Iplay.com (partial) + ipo.gov.uk + UK Intellectual Property Office + ipower.com + IPOWER + ipqualityscore.com + IPQualityScore.com + ipredator.se + IPredator + iproduction.com + IProduction + ips-invite.iperceptions.com + iPerceptions (partial) + ips-portal.iperceptions.com + iPerceptions (partial) + ipsos-na.com + Ipsos (partial) + ipswich.gov.uk + UK Local Government + iptc.org + ITPC (partial) + iptorrents.com + IPTorrents.com + iptv.canaldigital.dk + CanalDigital + ipv4.wtfismyip.com + WTFismyIP + ipv6.wtfismyip.com + WTFismyIP + ipwnage.com + iPwnAge.com + ipxe.org + iPXE.org (partial) + iqt.org + In-Q-Tel + iraaa.org + IRAAA.org (partial) + irccloud.com + Irccloud.com + ireeco.com + Ireeco.com + irf.se + IRF.se + iris.va.gov + US Department of Veterans Affairs + irish-country-cottages.co.uk + Wyndham (partial) + irishbroadband.ie + Irish Broadband + irishtimes.com + The Irish Times + ironsearch.com + IRON Search + irtf.org + IRTF.org + irunsafe.com + RunSafe + irwinlaw.com + Irwin Law + is.gd + is.gd + is.puma.com + Puma.com + isc-events.com + International Supercomputing Conference + isc.org + ISC + isc2.org + ISC2.org (partial) + isc2cares.org + ISC2 Cares.org + isdewinkelopen.nl + Stichting IAPC + iseclab.org + Iseclab.org + isecpartners.com + iSEC Partners + iservice.uniontrib.com + UTSanDiego.com (partial) + isiknowledge.com + Web of Knowledge + isis.poly.edu + ISIS + isisaccreditation.imrg.org + Interactive Media in Retail Group (partial) + isle.jp + Isle.jp + isleaked.com + Is Leaked.com + islington.gov.uk + UK Local Government + isnic.is + ISNIC.is + isoc.org + Internet Society (partial) + isoc.org.br + ISOC.org.br + isocket.com + isocket (partial) + isohunt.com + IsoHunt + isohunt.to + isoHunt.to (partial) + isomorphic.com + Isomorphic Software (partial) + ispam.nl + ISPam.nl + ispgids.com + ISPGids.com + ispid.nl + ISPID.nl + issh.ac.jp + International School of the Sacred Heart + isshub.io + IssHub.com + issuu.com + Issuu Aps (partial) + ist.utl.pt + Technical University of Lisbon + istanbulhs.org + istanbul hs.org + istheinternetonfire.com + istheinternetonfire.com + istlsfastyet.com + Is TLS Fast Yet.com + isyvmon.com + isyVmon (partial) + it-sicherheit.de + Institut für Internet-Sicherheit + it.google.* + Google Services + it24.idg.se + IDG.se (partial) + it24tjanster.idg.se + IDG.se (partial) + itactic.com + iTactic.com + italian-country-cottages.co.uk + Wyndham (partial) + italliance.com + ITAlliance.com + itbiz.cz + itbiz.cz + itdashboard.gov + IT Dashboard.gov + itechnician.co.uk + iTechnician.co.uk + itella.fi + itella.fi + iter.org + ITER.org + iterm2.org + iTerm2.org + itex.com + Itex + ithaca.edu + Ithaca College + itmb.nl + ITMB.nl + itriskltd.com + Itriskltd.com + itrust.org.cn + itrust.org.cn + itsanhonour.gov.au + It's an Honour + itslearning.com + ItsLearning + itu.dk + IT University of Copenhagen + itu.int + ITU (partial) + itunes.com + Apple.com (partial) + itv.com + ITV.com (partial) + iu.edu + Indianna University (partial) + iv.lt + Iv.lt (partial) + ivacy.com + Ivacy (partial) + ivarch.com + ivarch.com + ivdopia.com + Vdopia + ivegotkids.com + Ive Got Kids.com (partial) + ivn.us + Independent Voter Network + ivona.bigmir.net + Bigmirnet (partial) + ivoox.com + iVoox.com + ivpn.net + IVPN.net + iwantclips.com + iWantClips.com + iwantmytvmagazine.com + NTVB Media (partial) + iway.ch + iway.ch + iwdc.ucsd.edu + UCSD + iwight.com + UK Local Government + iwork.com + Apple.com (partial) + iwowcase.com + iWOWCase + ixquick-proxy.com + Ixquick + ixquick.com + Ixquick + ixsystems.com + iXsystems + ixwebhosting.com + Ecommerce (partial) + izea.com + IZEA.com + j.clickdensity.com + Clickdensity (partial) + j.mozest.com + Mozest + j.mp + bit.ly + ja-sig.org + Jasig.org + ja.net + JANET + jabber.at + Jabber.at + jabber.no + Jabber.no + jabber.ru + Jabber.ru (partial) + jabberd.org + Jabberd.org + jabbr.net + JabbR.net + jackandjill.ie + The Jack and Jill Children's Foundation Charity + jackandjillraffle.com + The Jack and Jill Children's Foundation Charity + jackandjillraffle.org + The Jack and Jill Children's Foundation Charity + jackimaging.com + Jack Imaging.com + jackrabbit.apache.org + Apache.org (false MCB) + jacksfetishtube.com + Jacks Fetish Tube + jackson-it.de + Jackson-IT.de + jacksonsun.com + The Jackson Sun (partial) + jacoblangvad.com + Jacob Langvad Nilsson + jacobsstudent.ucsd.edu + UCSD + jailbreakingisnotacrime.org + Jailbreaking Is Not a Crime.org + jaim.at + Jaim.at + jako-o.* + JAKO-O + jal.co.jp + Japan Airlines + jamanetwork.com + JAMA Network (partial) + jambit.com + jambit + jameco.com + Jameco + jamesthebard.net + jamesthebard.net + jamesvillas.co.uk + Wyndham (partial) + jamieoliver.com + Jamie Oliver + jamtrackcentral.com + Jamtrackcentral + janraincapture.com + JanRain (partial) + jappix.com + Jappix (partial) + jappix.net + Jappix.net + jappix.org + Jappix.org + jappix.pro + Jappix.pro + jariangibson.com + Jarian Gibson.com (partial) + jasig.org + Jasig.org + jasondavies.com + Jason Davies.com + jaspan.com + jaspan.com + java-apps.org + openDesktop.org + java.com + Java + java.net + Java.net (partial) + javacoolsoftware.com + Javacoolsoftware.com + javascriptmvc.com + JavaScriptMVC (partial) + javelinsecurity.com + Javelin Security.com + javelinstrategy.com + Javelin Strategy.com + javvin.com + Javvin.com (partial) + jawbone.com + Jawbone.com (partial) + jayisgames.com + Jay Is Games.com (partial) + jaymart.co.th + Jaymart.co.th + jba.io + jba.io + jboss.com + JBoss + jboss.org + JBoss + jbox.com + JList.com (partial) + jci.org + Journal of Clinical Investigation (partial) + jcp.org + JCP.org + jdeslip.com + jdeslip.com + jdeslippe.com + J Deslippe.com + jdkasten.com + JD Kasten.com + jdsupra.com + JD Supra + jeena.net + jeena.net + jeeptopsdirect.com + Jeep Tops Direct.com + jeffnabers.com + Jeff Nabers.com (partial) + jellynote.com + Jellynote.com + jenkins-ci.org + Jenkins-CI.org + jensge.org + jensge.org + jet2.com + Jet2.com + jetbrains.com + JetBrains (partial) + jetico.com + Jetico.com + jewelosco.com + Jewel Osco.com + jewishpress.com + JewishPress.com + jhalderm.com + J Halderm.com + jiffyfreescore.com + Jiffy Free Score.com + jigsaw.com + Jigsaw (partial) + jimg.dk + Jimg.dk + jinx.com + Jinx.com (partial) + jiscmail.ac.uk + JISCMail + jit.su + jit.su + jitec.jp + Japan Information Technology Promotion Agency + jitscale.com + Jitscale.com (false MCB) + jitsi.org + Jitsi + jive.com + Jive.com + jiwire.com + JiWire (partial) + jlist.com + JList.com (partial) + jmldirect.com + JML Direct.com + jmldirect.uat.venda.com + JML Direct.com + jms1.net + jms1.net + jobamatic.com + Simply Hired + jobbik.hu + Jobbik (partial) + jobboerse.arbeitsagentur.de + Arbeitsagentur.de + jobcloud.ch + jobs.ch + jobmatcher.hodesiq.com + Bernard Hodes Group (partial) + jobs.carecareers.com.au + Carecareers.com.au (partial) + jobs.ch + jobs.ch + jobs.citigroup.com + Citigroup (partial) + jobs.flowingdata.com + FlowingData.com (partial) + jobs.hasgeek.com + HasGeek (partial) + jobs.lshtm.ac.uk + London School of Hygiene & Tropical Medicine + jobs.netflix.com + Netflix (partial) + jobs.ridemetro.org + METRO Transit (Harris County, Houston, Texas) + jobs.urbandictionary.com + TheResumator clients (partial) + jobs.voxmedia.com + SB Nation (partial) + jobs2web.com + Jobs2Web + jobsatosu.com + Ohio State University (partial) + jobscore.com + jobScore (partial) + jobscout24.de + Jobscout24 + jobsgopublic.com + jobsgopublic.com (partial) + jobsite.com + Jobsite.com + jobthread.com + JobThread + jobvite.com + Jobvite (partial) + joeyh.name + JoeyH.name + johnlewis.ie + johnlewis.ie + johoobuy.com + Johoobuy.com + join.me + LogMeIn.com (partial) + join.tv + Join.TV + joindiaspora.com + Diaspora + joinos.com + Joinos.com + joinus.today + JoinUs.Today + joker.com + Joker + jolla.com + Jolla.com + jonathanmayer.org + Jonathan Mayer.org + jondos.org + JonDos + joomag.com + Joomag.com (partial) + joomlart.com + JoomlArt.com (partial) + joppix.com + joppix.com + jorsika.com + Camp Staff USA + josefsson.org + Josefsson.org + joshtriplett.org + Josh Triplett.org + joslin.org + Joslin Diabetes Center + jotform.com + JotForm + jotformpro.com + JotForm + jottit.com + Jottit + journal-news.net + Journal-News.net (partial) + journal-republican.com + Piatt County Journal-Republican (partial) + journal.paul.querna.org + Querna.org (partial) + journals.cambridge.org + Cambridge Journals + journals.uchastings.edu + UC Hastings.edu (false MCB) + journeyed.com + Journeyed + joyclub.de + Joyclub.de + joyent.com + Joyent (partial) + jp.fujitsu.com + Fujitsu (partial) + jpberlin.de + JPBerlin.de + jpg.st.audiko.net + Audiko + jquery.com + jQuery (partial) + jquery.org + jQuery.org (partial) + jquerymobile.com + jQuery Mobile.com (partial) + jqueryui.com + jQuery UI.com (partial) + jrrt.org.uk + Joseph Rowntree Reform Trust (partial) + js-kit.com + Echo (partial) + js.adlink.net + adlink.net + js.hs-analytics.net + HS-analytics.net + js.ptengine.jp + Pt engine.jp (partial) + jscss.cp.ctscdn.com + TPG Capital (partial) + jstor.org + JSTOR (partial) + jtlebi.fr + jtlebi.fr + judici.com + Judici + judicialwatch.org + Judicial Watch + juicycanvas.com + JuicyCanvas + jujucharms.com + Juju charms.com + jumio.com + Jumio + jumpingjack.com + JumpingJack + jumptime.com + JumpTime.com (partial) + junge-piraten.de + Pirate Party + juniper.net + Juniper Networks + juniperresearch.com + Juniper Research + juno.co.uk + JunoRecords + junodownload.com + JunoDownload + junostatic.com + JunoRecords + jura.ch + Schweizer Regierung + jusek.se + Jusek.se + just-eat.co.uk + justeatuk (partial) + justapple.com + Just Apple.com (false MCB) + justcloud.com + Just Develop It (partial) + justgetflux.com + F.lux + justgive.org + JustGive + justgiving.com + JustGiving (partial) + justhost.com + Just Develop It (partial) + justia.com + Justia (partial) + justice.gov.sk + SlovakGoverment + justice.gov.uk + Ministry of Justice + justice.sk + SlovakGoverment + justin.tv + Justin.tv (partial) + justitie.nl + NL Overheid + justmoon.net + Justmoon.net + justtomatoes.com + JustTomatoes.com + jvn.jp + JVN.jp + jwpsrv.com + jwpsrv.com + jyllands-posten.dk + Jyllands-Posten.dk + k2s.cc + K2s.cc + kabel.canaldigital.no + CanalDigital + kabel.canaldigital.se + CanalDigital + kabeldeutschland.de + Kabel Deutschland + kabelkiosk.de + Kabelkiosk.de + kabelmail.de + Kabel Deutschland + kable.com + Kable Media Services (partial) + kachingle.com + Kachingle + kagi.com + Kagi + kaimi.ru + kaimi.ru + kaiseki.me + kaiseki.me + kaisersysteme.com + Kaiser Systeme (partial) + kaizencrossfit.com + DDS2DDS.com + kakao.com + KAKAO + kali.org + Kali.org (partial) + kaltura.com + Kaltura (partial) + kameleoon.com + Kameleoon.com + kampyle.com + Kampyle (partial) + kaneva.com + Kaneva (partial) + kangurum.com.tr + Kangurum + kantarainitiative.org + Kantara Initiative.org + kantarlatam.com + Kantar Latam Portal + kapiton.se + Kapiton.se + kapsi.fi + Kapsi.fi (very partial) + karagarga.net + Karagarga + karmankardon.nl + Harman International Industries (partial) + kartfighter.com + Kart Fighter.com (partial) + karty-kredytowe.money.pl + Money.pl (false MCB) + karwansaraypublishers.com + Karwansaray Publishers.com (false MCB) + kasandbox.org + Khan Academy + kasperskycontenthub.com + kasperskycontenthub.com + kasserver.com + KASserver.com + kastatic.com + KickassTorrents + kastatic.org + Khan Academy + kat-de-paris.fr + Kat de Paris + kat.ph + KickassTorrents + katasterportal.sk + SlovakGoverment + kathrein.de + Kathrein + kattare.com + Kattare.com + katylee.com + Katylee.com + kau.se + KAU.se + kau.toke.dk + Toke.dk + kayak.co.uk + Kayak + kayak.com + Kayak + kb8ojh.net + kb8ojh.net + kbb.com + Kelley Blue Book Co. + kbit.dk + KB IT.dk + kbpublisher.com + KBPublisher.com (partial) + kbs.de + Knappschaft-Bahn-See + kcc.webhostone.de + WebhostOne + kcl.ac.uk + King's College London (partial) + kcvids.com + KCVids + kdab.com + KDAB + kde-apps.org + openDesktop.org + kde-files.org + openDesktop.org + kde-help.org + openDesktop.org + kde-look.org + openDesktop.org + keelog.com + Keelog.com + keenot.es + Keenot.es (partial) + keep2share.cc + K2s.cc + keepassx.org + Keepassx + kei.pl + Kei.pl (partial) + kemi.se + KEMI.se + kenai.com + Kenai.com + kenexa.com + Kenexa (partial) + kenexaworldconference.com + Kenexa (partial) + kensington.com + Kensington + kent.ac.uk + University of Kent (partial) + kent.gov.uk + UK Local Government + kentico.com + Kentico + kerbalspaceprogram.com + Kerbal Space Program (partial) + kernel.org + Kernel.org + kettering.gov.uk + UK Local Government + keybase.io + Keybase.io + keyerror.com + Keyerror.com + keymile.com + Keymile.com (partial) + keys.schokokeks.org + schokokeks.org + kgnb.am + KGNB.am + khanacademy.org + Khan Academy + khms.google.com + Google Maps + khms0.google.com + Google Maps + khms1.google.com + Google Maps + khms2.google.com + Google Maps + khms3.google.com + Google Maps + khn.nl + KHN.nl + khoc.co + KHOC.co + khronos.org + Khronos Group (partial) + kib.ki.se + KI.se + kickass.to + KickassTorrents + kickassapp.com + Kick Ass + kickasstorrents.com + KickassTorrents + kickassvps.com + KickAssVPS.com + kicknews.* + KickNews + kicknews.co.uk + KickNews + kickstarter.com + Kickstarter (partial) + kicktraq.com + Kicktraq + kidsfootlocker.com + Kids Foot Locker + kidshealth.org + KidsHealth/TeensHealth + kikatek.com + Kikatek + kimberly-clark.com + Kimberly-Clark (partial) + kimberly-clark.com.* + Kimberly-Clark (partial) + kimpluscraig.com + kimpluscraig.com + kinesis-ergo.com + Kinesis-Ergo.com + kinfolk.com + Kinfolk.com (partial) + king.com + King.com (partial) + kinghost.com.br + KingHost (partial) + kingsroadmerch.com + Kings Road Merch + kinko.me + Kinko.me + kinotehnik.com + Kinotehnik + kintera.com + Kintera Network + kintera.org + Kintera Network + kir.hu + Oktatási Hivatal + kirei.se + kirei.se + kirjoitusalusta.fi + Kirjoitusalusta + kirklees.gov.uk + UK Local Government + kirsle.net + Kirsle.net + kismetwireless.net + Kismetwireless.net + kissinsights.com + KISSinsights + kissmetrics.com + KISSmetrics + kit.edu + Karlsruhe Institute of Technology (partial) + kitapyurdu.com + Kitapyurdu + kitchenriddles.com + Kitchen Riddles.com + kitd.com + KIT digital + kitenet.net + kitenet.net (partial) + kitepackaging.co.uk + Kite Packaging.co.uk + kiva.org + Kiva.org (partial) + kivo.com + Kivo.com + kiwiirc.com + KiwiIRC.com + kkbox.com + KKBOX.com + kkh-allianz.de + KKH-Allianz + kkh.se + KKH.se + klimaschutzpartner-berlin.de + KlimaSchutzPartner Berlin + klinika.zdravie.sk + Klinika.zdravie.sk + klm.com + KLM + klondike.xiscosoft.es + Xiscosoft.es + klubitus.org + Klubitus.org + kmart.com + Kmart.com (partial) + kmh.se + KMH.se + knab.nl + Knab.nl + kncminer.com + KnCMiner.com + knightswarm.com + KnightSwarm + knot-dns.cz + Knot-DNS.cz + knowledge.verisign-grs.com + VeriSign (partial) + knowledge.verisign.ch + VeriSign (partial) + knowledge.verisign.co.nz + VeriSign (partial) + knowledge.verisign.co.uk + VeriSign (partial) + knowledge.verisign.com.au + VeriSign (partial) + knowledge.verisign.com.hk + VeriSign (partial) + knowledge.verisign.com.sg + VeriSign (partial) + knowledge.verisign.com.tw + VeriSign (partial) + knowledge.verisign.de + VeriSign (partial) + knowledge.verisign.dk + VeriSign (partial) + knowledge.verisign.es + VeriSign (partial) + knowledge.verisign.fr + VeriSign (partial) + knowledge.verisign.se + VeriSign (partial) + knowledgeblog.org + Knowledge Blog.org (partial) + kobo.com + Kobo (partial) + kobobooks.com + Kobo (partial) + koding.com + Koding + kohls.com + Kohls.com + kokousalusta.fi + Kokousalusta + kolab.org + Kolab.org + kolabsys.com + KolabSys.com + komments.net + Komments.net + kommunal.se + Kommunal.se + komoona.com + Komoona.com (partial) + komplett.no + Komplett.no + konami-korea.kr + Konami-Korea.kr + konami.com + Konami.com + konklone.com + konklone.com + konstfack.se + Konstfack.se + kontoapi.de + Konto API + kopiosto.fi + Kopiosto + kore.io + Kore.io + korelogic.com + KoreLogic Security + kornerstoneadmin.com + Kornerstone Admin.com + kororaproject.org + Korora Project.org + kosmetik-per-klick.de + Medikamente-Per-Klick + kotex.com + Kotex + koti.kapsi.fi + Kapsi.fi (very partial) + kotte-zeller.de + Kotte-zeller.de + kotulas.com + Kotulas.com + koumbit.org + Koumbit.org + kpdyer.com + K P Dyer.com + kpn.com + KPN + kpn.nl + KPN + kpopstage.co + kpopstage.co + kproxy.com + KProxy.com + kpt.ch + KPT.ch + kqed.org + KQED.org (partial) + kr36.co + kr36.co + kralenstart.nl + KralenStart.nl + kraxel.org + kraxel.org + krebsonsecurity.com + Krebs on Security + kredyty-gotowkowe.money.pl + Money.pl (false MCB) + kredyty-samochodowe.money.pl + Money.pl (false MCB) + kriminalvarden.se + KriminalVarden.se + kriso.* + Krisostomus + krita.org + Krita.org + kryptos.sh + Kryptos.sh (partial) + kryptronic.com + Kryptronic (partial) + krystal.co.uk + Krystal Hosting + krystal.info + Krystal Hosting + ksaglass.com + KSA Glass + ksh.hu + Központi Statisztikai Hivatal + ksl.com + KSL + ksplice.com + Ksplice (partial) + kth.se + KTH.se + kuantokusta.pt + Kuantokusta.pt + kubieziel.de + Kubieziel.de + kubuntuforums.net + Kubuntu Forums.net + kudelskisecurity.com + Kudelski Security + kulcs-soft.hu + Kulcs-soft.hu + kuleuven.be + Katholieke Universiteit Leuven (partial) + kundarea.wopsa.se + Wopsa (partial) + kundcenter.prq.se + prq.se + kunde.comdirect.de + comdirect bank + kundservice.svd.se + SvD.se (partial) + kungfunation.com + Kung Fu Store (partial) + kungfustore.com + Kung Fu Store (partial) + kunk.org + NPR.org (partial) + kununu.com + kununu (partial) + kurly.fr + Kurly.fr + kuro5hin.org + kuro5hin.org + kuruc.info + Kuruc.info + kuther.net + Kuther.net + kuvalehdet.fi + Otavamedia (partial) + kuvat.huuto.net + huuto.net + kuvat2.huuto.net + huuto.net + kvm-vps.com + KVM-VPS.com + kwiksurveys.com + KwikSurveys + kyani.net + Kyani.net + kyberia.sk + Kyberia.sk + kyivpost.com + Kyiv Post.com + kyleschaeffer.com + BlueHost clients + kyps.net + KYPS.net + l-auto-entrepreneur.org + L-auto-entrepreneur.org + l0cal.com + l0cal.com (CAcert) + l2020.org + Local 20/20 + l2c.co.kr + L2C + la-hora.org + Uhrzeit.org (partial) + laaclu.org + ACLU of Louisiana + labaia.ws + labaia.ws (partial) + labbb.org + Better Business Bureau (partial) + labcorp.com + LabCorp + labcorpsolutions.com + LabCorp + labelsbythesheet.com + Labels by the Sheet.com (partial) + labelsig.com + Labels IG.com + labs.aweber.com + AWeber Communications (partial) + labs.bad-dragon.com + Bad Dragon + labs.chevronwp7.com + Chevronwp7 Labs + labs.igalia.com + Igalia (partial) + lacaixa.es + La Caixa + lacie.com + La Cie.com (partial) + lacrossealerts.com + La Crosse Alerts.com + lacrossetechnology.com + La Crosse Technology.com + ladesk.com + LiveAgent + ladyfootlocker.com + Lady Foot Locker + laeditorialupr.com + University of Puerto Rico (partial) + laforge.gnumonks.org + Gnumonks.org (CAcert, partial) + lagen.nu + Lagen.nu + lakome.com + Lakome.com + lambda-tek.com + LambdaTek + landal.* + Wyndham (partial) + landalcampings.be + Wyndham (partial) + landalcampings.de + Wyndham (partial) + landalcampings.nl + Wyndham (partial) + landalgreenparks.com + Wyndham (partial) + landalparkshop.* + Wyndham (partial) + landalskilife.* + Wyndham (partial) + landliebe.de + Campina (partial) + landscape.io + Landscape.io (partial) + landsend.com + Lands End.com + landslide.com + Landslide.com + languageperfect.co.nz + Language Perfect (partial) + languageperfect.com + Language Perfect (partial) + lankylife.com + LankyLife + lansforsakringar.se + Lansforsakringar.se + lantmateriet.se + Lantmateriet.se + lanyrd.com + Lanyrd + lapatilla.com + LaPatilla.com + laprox.com + Laprox Sites + laproxsites.com + Laprox Sites + laptop.hu + Laptop.hu + laptoponline.hu + Laptop.hu + laquadrature.net + La Quadrature du Net + lastcall.com + TPG Capital (partial) + lastminute.com + Lastminute.com + lat.ms + bit.ly vanity domains + latimes.com + Los Angeles Times (partial) + laughingsquid.us + Laughing Squid (partial) + launchkey.com + Launchkey.com + launchpad.37signals.com + 37Signals + launchpad.net + Launchpad + launchpadlibrarian.net + Launchpad + laup.nu + Laup + lauramercier.com + Alticore (partial) + lavabit.com + Lavabit + laverna.cc + Laverna + law.resource.org + Public.Resource.Org + law.utah.edu + University of Utah (partial) + lawblog.de + LawBlog.de + lawnandlandscape.com + Lawn & Landscape + layerbnc.org + LayerBNC.org + laynepublications.com + Layne Publications + lazykush.com + Lazy Kush + lbhf.gov.uk + UK Local Government + lc2.lcstatic.net + Lester Chan.net + lca2014.linux.org.au + linux.conf.au + lchost.co.uk + LCHost + lcsrv1.myhsphere.biz + JodoHost (partial) + ld.svt.se + SVT.se (partial) + lds.org + The Church of Jesus Christ of Latter-day Saints + ldscdn.org + The Church of Jesus Christ of Latter-day Saints + le-vpn.com + Le-VPN.com (false MCB) + le.ac.uk + University of Leicester (partial) + leader-manager.com + Leader-Manager.com + leaderlandnews.com + The Leader (partial) + leadertech.com + Leader Technologies + leadformix.com + LeadFormix + leadlander.com + LeadLander (partial) + leadpages.net + LeadPages.net + leadwerks.com + Leadwerks.com (partial) + leagueoflegends.com + League of Legends.com (partial) + leahscape.com + LeahScape.com + leanpub.com + Leanpub.com (partial) + leap.se + LEAP.se + leapmotion.com + Leap Motion + learn.iis.net + IIS.net + learning.ausport.gov.au + Australian Sports Commission Learning Portal + learningbizpackage.com + Learning Biz Package.com + learnmyway.com + Learn my way.com + learnshare.com + LearnShare.com + leaseweb.com + LeaseWeb.com (partial) + leastauthority.com + Least Authority.com (partial) + ledgerscope.net + Ledgerscope.net + leechaccess.com + Leechaccess + leeds.ac.uk + University of Leeds (partial) + leetmedia.com + Leet Media.com + leetway.com + Leetway.com (false MCB) + lef.org + Life Extension Magazine + lefebvre.org + LeFebvre.org + legacy.com + Legacy.com (partial) + legaldirectories.com + Legal Directories + leginfo.legislature.ca.gov + California Legislative Information + legislationsurveys.com + legislationsurveys.com + legitscript.com + LegitScript + lego.com + LEGO (partial) + legtux.org + Legtux (cacert) + leicestershire.gov.uk + UK Local Government + lelo.com + Lelo.com + lenovo.co.uk + Lenovo (partial) + lenovo.com + Lenovo (partial) + lenovoorders.com + Lenovo (partial) + lenovovision.com + Lenovo (partial) + lensrentals.com + LensRentals.com + leo.org + Leo.org (partial) + leptop.hu + Laptop.hu + leroyfcpress.com + Leroy Farmer City Press (partial) + lespaceclient.fr + LEspace client.fr + lesterchan.net + Lester Chan.net + letsencrypt.org + Lets Encrypt.org + lettre-de-motivation-facile.com + Lettre-de-motivation-facile.com + leukemiafoundation.org + National Children's Leukemia Foundation + lever.co + Lever.co + levesoninquiry.org.uk + The Leveson Inquiry + leviathansecurity.com + Leviathan Security.com (partial) + levny-hosting.cz + Levny-hosting.cz + levonline.com + Levonline.com + lewrockwell.com + LewRockwell.com + lexisnexis.com + Reed Exhibitions (partial) + lexity.com + Lexity.com + lezlovevideo.com + LezloveVideo.com + lfait.com + LFAIT.com + lfchosting.com + LFC Hosting + lfgss.com + LFGSS.com + lfhair.com + LF Hair.com (partial) + lfov.net + LFov.net + lg.com + LG.com (partial) + lgscout.com + Lookingglass + lh.co.th + Lh.co.th + li.ru + LiveInternet (false MCB) + lib.uaa.alaska.edu + University of Alaska (partial) + libanswers.com + LibAnswers + libanywhere.com + Library Anywhere + libav.org + libav + libcom.org + Libcom + libdems.org.uk + Libdems.org.uk (partial) + liberalamerica.org + Liberal America.org (partial) + liberiangeek.net + Liberian Geek.net + liberty-human-rights.org.uk + Liberty + liberty.lavabit.com + Lavabit.com + libertyflailmowers.com + Liberty Flail Mowers.com (partial) + libguides.com + LibGuides + libraries.ucsd.edu + UCSD + library.uchastings.edu + UC Hastings.edu (false MCB) + library.unc.edu + UNC.edu (mixed content) + libraryh3lp.com + North Carolina State University (partial) + librarysource.uchastings.edu + UC Hastings.edu (false MCB) + librarything.com + LibraryThing + libravatar.org + Libravatar.org + libreoffice.org + LibreOffice (partial) + libreofficebox.org + LibreOffice-Box + libreplanet.org + LibrePlanet.org + libreswan.org + Libreswan.org + libri.de + Libri.de + librivox.org + LibriVox (partial) + libsdl.org + libSDL.org (partial) + libssh.org + libssh.org (partial) + libsyn.com + libsyn (partial) + libvirt.org + libvirt.org (partial) + license.steeleye.com + Steeleye.com (partial) + licensee.garfield.com + Garfield.com + licenses.javacoolsoftware.com + Javacoolsoftware.com + lichtblick.de + Lichtblick.de + lifeinthefastlane.ca + Life in the Fast Lane (partial) + lifeline.org.au + Lifeline Australia + liferay.com + Liferay.com + lifesaving.com + Lifesaving Resources + liftdna.com + Liftdna.com (partial) + liftsecurity.io + Lift Security.io + liftshare.com + LiftShare + light-paint.com + Light-Paint.com + lightbluetouchpaper.org + Light Blue Touchpaper.org + lighthouseapp.com + ENTP (partial) + lighttpd.net + lighttpd.net + lihm.net + lihm.net + liikenneturva.fi + Liikenneturva + lijit.com + Lijit.com + likes.com + Likes + likeyed.com + likeyed.com + liliani.com.br + Liliani + lilliputti.com + lilliputti.com + lillypad.lilly.ca + Eli Lilly (partial) + lillypad.lilly.com + Eli Lilly (partial) + lilux.lu + LiLux.lu + limango.de + limango + limeservice.com + LimeService + limesurvey.org + LimeSurvey + limited2art.com + Limited 2 Art.com (partial) + limun.org + limun.org + linbit.com + LINBIT (partial) + lincolnshire.gov.uk + UK Local Government + lincs.fr + LINCS.fr + lindtusa.com + Lindt USA + linearcollider.org + Linear Collider Collaboration + lingue.de + Linguee + linguee.com + Linguee + linguistlist.org + LINGUIST List (partial) + link.eml.skyandtelescope.com + Sky & Telescope (partial) + link.p0.com + Infogroup (partial) + link.samsung.com + Samsung.com (false MCB) + linkbucks.com + Linkbucks + linkedin.com + LinkedIn (partial) + linksalpha.com + LinksAlpha.com (partial) + linkshare.com + Rakuten LinkShare (partial) + linksmail.de + Die-Linke.de + linksys-content.vcommerce.com + Linksys (partial) + linksys.com + Linksys (partial) + linksysbycisco.com + Linksysbycisco.com + linnrecords.com + Linn Records.com (partial) + linode.com + Linode + linphone.org + Linphone + linutronix.de + linutronix + linux-dev.org + linux-dev.org + linux-magazin.de + Linux-Magazin Online (partial) + linux-magazine.com + Linux Magazine (partial) + linux-sunxi.org + linux-sunxi.org + linux.com + Linux.com + linux.conf.au + linux.conf.au + linux.lu + Linux.lu (partial) + linux.org.au + Linux.org.au + linux.org.ru + Linux.org.ru + linux42.org + openDesktop.org + linuxaria.com + Linuxaria.com + linuxcloudvps.com + Linux Cloud VPS.com + linuxcontainers.org + Linux Containers.org + linuxcounter.net + Linux Counter + linuxdaily.com + openDesktop.org + linuxdistrocommunity.com + Linux Distro Community.com + linuxforums.org + Linux Forums (partial) + linuxfoundation.org + Linux Foundation (partial) + linuxfr.org + DaLinuxFrenchPage + linuxgamepublishing.com + Linux Game Publishing (partial) + linuxhostsupport.com + linuxhostsupport.com + linuxlovers.at + Linuxlovers.at (partial) + linuxmint-art.org + openDesktop.org + linuxpl.com + Linuxpl.com (partial) + linuxquestions.org + LinuxQuestions.org (partial) + linuxtag.org + LinuxTag.org + linuxwall.info + linuxwall.info (partial) + linx.net + Linx.net + lippu.fi + Lippupiste Oy + lippupalvelu.fi + Ticketmaster (partial) + liquidmatrix.org + Liquidmatrix.org + liquidweb.com + Liquid Web + list.co.uk + The List (partial) + listbox.com + Listbox + listen.akvorrat.org + AK Vorrat.org (partial) + listener.co.nz + Listener.co.nz + listenerapproved.com + Listener Approved + listonic.com + Listonic (partial) + lists.*.inria.fr + Inria.fr (partial) + lists.exim.org + Exim.org (partial) + lists.fit.edu + Florida Institute of Technology (partial) + lists.gnumonks.org + Gnumonks.org (CAcert, partial) + lists.gnupg.org + GnuPG.org (cacert) + lists.grnet.gr + Greek-gov + lists.itnog.it + ITalian Network Operators Group (partial) + lists.mindrot.org + lists.mindrot.org + lists.noc.grnet.gr + Greek-gov + lists.ocamlcore.org + OCaml (partial) + lists.posteo.de + Posteo + lists.quagga.net + Quagga + lists.sfconservancy.org + Software Freedom Conservancy + lists.sudoroom.org + Sudo Room + lists.windowmaker.org + Window Maker (partial) + liteaddress.org + liteaddress.org + litebit.eu + LiteBit.eu + litecoin.info + Litecoin.info + litecoin.org + Litecoin.org + litecoin24.nl + Litecoin24.nl + litecointalk.org + LitecoinTalk.org + litehosting.org + LiteHosting.org (partial) + literatureandlatte.com + Literature and Latte.com + litetree.com + LiteTree.com + lithium.com + Lithium + litmus.com + Litmus.com + little.my + little.my + littler.com + Littler.com (partial) + liu.se + LIU.se + live.1nsk.ru + 1nsk.ru (partial) + live.assets.mybcdna.com + My Year Book (partial) + live.bitmissile.com + BitMissile (partial) + live.com + Hotmail / Live + livebeta.dagbladet.no + Dagbladet.no (false MCB) + livechat.zendesk.com + LiveChat (partial) + livechatinc.com + LiveChat (partial) + livecorp.com.au + LiveCorp + livefyre.com + Livefyre (partial) + liveinternet.ru + LiveInternet (false MCB) + livejournal.com + LiveJournal (partial) + livenation.* + Live Nation Entertainment (partial) + livenation.co.* + Live Nation Entertainment (partial) + livenation.com.au + Live Nation Entertainment (partial) + liveperson.com + LivePerson (partial) + liveperson.hosted.jivesoftware.com + LivePerson (partial) + liveperson.net + LivePerson (partial) + liveramp.com + LiveRamp + livestock-transport.com + Livestock Transport + livestream.com + Livestream + livestrong.com + Live Strong.com (partial) + livestrong.org + Livestrong (partial) + livezilla.net + LiveZilla.net + livingroutes.org + Living Routes.org (false MCB) + livingsocial.com + LivingSocial (partial) + lizardtech.com + Celartem (partial) + lkml.org + LKML + ll.*.utorrent.com + µTorrent (partial) + llnl.gov + Lawrence Livermore National Laboratory + lloydstsb-offshore.com + Lloyds TSB Offshore + lnkd.in + LinkedIn (partial) + loa.org + LoA.org + loader.engage.gsfn.us + gsfn.us + loadimpact.com + LoadImpact.com + loanliner.com + Loanliner.com + loanscience.com + Loan Science + lobby.clubredgaming.com + Club Red Gaming.com (partial) + loc1.hitsprocessor.com + HitsLink + local.ch + Local.ch + localbitcoins.com + localbitcoins.com + localedge.com + LocalEdge (partial) + localsearchassociation.org + Yellow Pages IMA (partial) + lochem.nl + NL Overheid + lockbox.com + Lockbox.com + lockerdome.com + LockerDome.com + lockify.com + Lockify.com + loctudy.fr + Loctudy + logbuch.c-base.org + C-Base + logentries.com + Logentries.com + loggly.com + Loggly.com + logicboxsoftware.com + LogicBox Software + logilab.fr + Logilab (partial) + login.aau.dk + Aalborg University (partial) + login.adaramedia.com + Adara Media (partial) + login.aliexpress.com + AliExpress.com (partial) + login.andersonvalleypost.com + E. W. Scripps Company (partial) + login.asp.net + ASP.NET (partial) + login.audiencescience.com + AudienceScience + login.carbook.com + Chrome Data + login.connect.kr + DreamWiz (partial) + login.dhts.duke.edu + Duke University (partial) + login.dtcc.edu + Delaware Technical Community College (partial) + login.ec21.com + EC21 (partial) + login.modernus.is + Modernus + login.money.pl + Money.pl (false MCB) + login.naukri.com + Naukri + login.numergy.com + Numergy + login.rz.htwg-konstanz.de + HTWG Konstanz + login.seznam.cz + Seznam.cz + login.softwareplanner.com + SmartBear (partial) + login.stormpost.datranmedia.com + PulsePoint (partial) + login.sucuri.net + Sucuri (partial) + login.szn.cz + Seznam.cz + login.talemetry.com + Talemetry.com (partial) + login.truelife.com + True Corporation + login.zap2it.com + Zap2it (partial) + loginza.ru + loginza.ru + logitech.com + Logitech.com (partial) + logmein.com + LogMeIn.com (partial) + logmeinrescue.com + LogMeIn.com (partial) + logotype.se + Logotype.se + logout.gmx.uimserv.net + GMX + logoyes.com + LogoYes + logs1.smithsonian.museum + Smithsonian Institution (partial) + lohud.com + lohud.com (partial) + loisfortexas.com + Lois Kolkhorst + lokaldealen-dbapp.netdna-ssl.com + Dagens Bedste.de (partial) + lokaty-bankowe.money.pl + Money.pl (false MCB) + lokus.no + lokus.no + lolicore.ch + Lolicore.ch + lolnet.org + lolnet.org + lolware.net + Lolware.net + lolzparade.com + DailyPix + lonap.net + LONAP + london-nano.com + London-Nano.com + london.gov.uk + UK Local Government + london.hackspace.org.uk + London Hackspace + london2012.com + London 2012 + londoncityairport.com + London City Airport + londonist.com + Londonist.com (partial) + londonstockexchange.com + London Stock Exchange (partial) + longaccess.com + Long Access.com (partial) + longform.org + Longform.org + longnow.org + Long Now.org (partial) + longtail.tv + LongTail (partial) + longtailvideo.com + LongTail (partial) + longurl.it + MyLikes + lookback.io + Lookback.io + lookinglocal.gov.uk + Looking Local + lookout.com + Lookout.com + looloo.com + looloo.com + loomio.org + Loomio.org (partial) + loopfuse.com + LoopFuse (partial) + loopfuse.net + LoopFuse (partial) + loopia.se + Loopia + loopiasecure.com + Loopia + loopt.com + Loopt + lorea.org + Lorea + lorentzcenter.nl + Lorentz Center.nl + lotro.com + lotro.com + lotusoriginals.com + Lotus Cars (partial) + louiseharrisoncouture.com + Louise Harrison Couture.com + louismilan.com + Louis Milan + louisville.edu + University of Louisville (partial) + love2d.org + Love 2D.org + lovefilm.* + LoveFilm + lovefood.com + Lovemoney.com (partial) + lovehoney.co.uk + LoveHoney (partial) + lovemoney.com + Lovemoney.com (partial) + loveourlocalbusiness.com + Love Our Local Business + lovettpublishinghouse.com + Lovett Publishing House.com + lowes.com + Lowes.com (partial) + loyalforex.com + Loyal Forex + lp0.eu + lp0 (CAcert) + lpdedicated.com + Add2Net (partial) + lpi.org + LPI.org + lpice.eu + LPICE.eu + lplogin.com + Add2Net (partial) + lpo.org.uk + LPO.org.uk (partial) + lqttswr.readspeaker.com + ReadSpeaker + lrb.co.uk + London Review of Books (partial) + lrcd.com + Lucid Reverie + lse.ac.uk + LSE.ac.uk (partial) + lsf.htwg-konstanz.de + HTWG Konstanz + lshtm.ac.uk + London School of Hygiene & Tropical Medicine + lsi.com + LSI.com (partial) + lso.com + Lone Star Overnight + lsu.edu + Louisiana State University (partial) + lsy-www.swiss.com + Swiss.com + lternet.edu + LTER + lth.se + LTH.se (partial) + lttng.org + LTTng Project + ltu.se + Luleå University of Technology (partial) + ltvimg.com + LongTail (partial) + lucidsolutions.co.nz + Lucid Solutions.co.nz + lucina.net + Lucina.net + luciosgold.ca + Lucio's Gold + luckyshare.net + LuckyShare + lucy.apache.org + Apache.org (false MCB) + ludialudom.sk + Ludialudom.sk + ludios.org + Ludios.org + lufthansa.com + Lufthansa + lugons.org + LUGoNS.org + lukb.ch + Schweizer Kantonalbanken + lulea.se + Luleå Municipality + lullabot.com + Lullabot.com + lulu.com + Lulu (partial) + lulzbot.com + LulzBot (partial) + lumension.com + Lumension.com (partial) + lumi.do + Lumi.do + lumiblade-shop.com + Lumiblade + lumimart.ch + Coop + luminoworld.com + LuminoWorld.com (partial) + lumo.me + Lumo + lumosity.com + Lumosity (partial) + lumovies.com + Lumovies.com (false MCB) + lunarmods.com + Add2Net (partial) + lunarpages.co.uk + Add2Net (partial) + lunarpages.com + Add2Net (partial) + lunarpages.com.mx + Add2Net (partial) + luneta.nearbuysystems.com + Nearbuysystems.com + lung.ca + Canadian Lung Association + lurkmo.re + Lurkmore.to + lurkmore.so + Lurkmore.to + lurkmore.to + Lurkmore.to + luxhv.com + LuxSci + luxomo.com + Luxomo.com + luxsci.com + LuxSci + luxsci.mobi + LuxSci + luxurycustomwheels.com + Luxury Custom Wheels + luxuryreplica.net + Luxury Replica + lv.com + Liverpool Victoria (partial) + lvmanagement.com + Las Vegas Management + lwn.net + LWN + lww.com + Lippincott Williams & Wilkins (partial) + lyris.com + Lyris (partial) + lyrishq.com + Lyris (partial) + lyrk.de + Lyrk.de + m-budget.migros.ch + Migros + m-fanshop.ch + Migros + m-go.migros.ch + Migros + m-net.de + M-net.de + m-pathy.com + m-pathy (partial) + m-privacy.de + m-privacy + m-w.co.uk + M-W.co.uk (false MCB) + m.addthisedge.com + AddThisedge.com + m.burt.io + Burt.io (partial) + m.draugiem.lv + Draugiem.lv (partial) + m.eclipso.de + eclipso + m.fanfiction.net + FanFiction (partial) + m.focus.de + Focus.de (false MCB) + m.friendfeed-media.com + Friendfeed + m.hotukdeals.com + HotUKDeals (partial) + m.kuruc.info + Kuruc.info + m.mobot.net + HotUKDeals (partial) + m.ph-cdn.com + Medical Express + m.posteo.de + Posteo + m.spontex.org + Spontex.org + m.www.linksynergy.com + Rakuten LinkShare (partial) + m01.eu + M01.eu + m3.idg.se + IDG.se (partial) + m6d.com + media6degrees (partial) + m86security.com + M86security + ma.mesaazcorruptionreport.com + Ripoff Report + maarssen.nl + NL Overheid + maas360.com + MaaS360.com (partial) + maastricht.nl + NL Overheid + maawg.org + MAAWG + macainfo.org + MacaInfo.org + macfarlanepackaging.com + Macfarlane Packaging.com + machinegunsvegas.com + Machine Guns Vegas.com + machineslikeus.com + Machines Like Us + macmillandictionary.com + Macmillan Dictionary.com + macosforge.org + MacOSForge.org + macpaper.com + MAC Paper.com (partial) + macports.org + MacPorts.org + macromedia.com + Adobe + macruby.org + MacRuby + macworld.idg.se + IDG.se (partial) + maddcalifornia.org + MADD California + madeinafreeworld.com + Made In a Free World.com (false MCB) + madmimi.com + Mad Mimi.com (partial) + madstein.at + Madstein.at + maemo-apps.org + openDesktop.org + maemo.org + Maemo (partial) + maeweb.ucsd.edu + UCSD + magazine.lotus.com + Lotus Cars (partial) + magazinesdirect.com + magazinesdirect.com + mageia.org + Mageia + magellanmodels.com + Magellan Models.com (false MCB) + magic.fr + Magic.fr + magicaffiliateplugin.com + Magic Affiliate plugin.com + magicmembers.com + Magic Members.com + magix-online.com + MAGIX (partial) + magix.com + MAGIX (partial) + magix.info + MAGIX (partial) + magnatune.com + Magnatune (partial) + magnet.ie + Magnet.ie + magserv.com + magserv.com + mah.se + MAH.se + mahoneshomedecor.com + Mahones Home Decor + maidstone.gov.uk + UK Local Government + mail-archive.com + Mail-archive.com + mail-tester.com + mail-tester.com + mail.action.at + A.C.T.I.O.N Kooperative (partial) + mail.azet.sk + Azet.sk + mail.com + Mail.com + mail.de + mail.de + mail.eclipso.de + eclipso + mail.ign.com + IGN (partial) + mail.init7.net + Init7 (partial) + mail.invitel.hu + Invitel (partial) + mail.justice.com + mail.justice.com + mail.o2active.cz + Telefónica (partial) + mail.rambler.su + Rambler.su + mail.ru + Mail.ru (partial) + mail.t-com.sk + Telekom.sk + mail.telekom.sk + Telekom.sk + mail.theatomgroup.com + The Atom Group (partial) + mail.uas.biz + United Acquisition Services (partial) + mail.usp.br + USP.br (partial) + mail.verticalmedia.com + Vertical Media (partial) + mail.webonic.hu + Websupport_sk_cz_at_hu + mail.websupport.at + Websupport_sk_cz_at_hu + mail.websupport.sk + Websupport_sk_cz_at_hu + mail.win.dtu.dk + Technical University of Denmark (partial) + mail.yaziba.net + Yaziba webmail + mail082.websupport.sk + Websupport_sk_cz_at_hu + mail2web.com + SoftCom (partial) + mailbox.org + Mailbox.org + mailchimp.com + MailChimp (partial) + mailgun.com + Mailgun.com (partial) + mailinator.com + Mailinator.com + mailing.channel4.com + Channel 4 (false MCB) + mailnull.com + MailNull.com + mailoo.org + Mailoo + mailoutinteractive.com + Mailout Interactive.com (partial) + mailpile.is + Mailpile.is + mailpoet.com + MailPoet.com + mailstation.de + mailstation.de + mailvelope.com + Mailvelope + main-host.de + main-host.de + main.makeuseoflimited.netdna-cdn.com + MakeUseOf (partial) + maine.gov + Maine.gov (partial) + majestic12.co.uk + Majestic-12 (partial) + majesticseo.com + Majestic-12 (partial) + major.io + major.io + majordesignsdollfashions.com + Major Designs Doll Fashions + makeagif.com + Make a Gif.com (partial) + makemodules.ning.com + Ning (false MCB) + makemytrip.com + Make My Trip + makeprojects.org + Make: Projects (partial) + makerble.com + Makerble + makerbot.com + Makerbot + makershed.com + Maker Shed + makeshop.jp + MakeShop.jp (partial) + makeuseof.com + MakeUseOf (partial) + makewebeasy.com + Makewebeasy.com + makeyourlaws.org + Makeyourlaws.org + makibox.com + MakiBox + makrotex.hu + Makrotex.hu + malcovery.com + Malcovery.com (partial) + maliit.org + Maliit.org (partial) + malina.hu + Domaintank + mall.cz + Mall_sk_cz_hu_pl + mall.hu + Mall_sk_cz_hu_pl + mall.pl + Mall_sk_cz_hu_pl + mall.sk + Mall_sk_cz_hu_pl + malware-tracker.com + Malware Tracker.com (partial) + malwarebytes.org + Malwarebytes (partial) + malwaretracker.com + Malware Tracker.com (partial) + mamba.ru + Mamba + mammut.ch + Mammut + man.com + Man Group + manabalss.lv + ManaBalss.lv + manage.audienceadnetwork.com + Audience Ad Network (partial) + manage.cm + manage.cm + manage.hosting.digiweb.ie + Digiweb (partial) + manage.sprintpcs.com + Sprint.com (partial) + managedforexprogram.com + Managed Forex Program.com + managedservices.otenet.gr + OTE + manageengine.com + ManageEngine + manager.bigv.io + BigV.io (partial) + manager.londit.com + londit.com (partial) + manager.money.pl + Money.pl (false MCB) + manchester.ac.uk + University of Manchester (partial) + manchester.gov.uk + UK Local Government + mandiant.com + Mandiant (partial) + mandiant.net + Mediant + mandriva.com + Mandriva.com + mandtbank.spatialpoint.com + M&T Bank (partial) + mangaupdates.com + Mangaupdates.com + manhattan-institute.org + Manhattan Institute + maninthemirror.org + Man in the Mirror.org + manta.com + Manta (partial) + mantisbt.org + MantisBT + manufrog.com + ManuFrog Webbhotell (partial) + mapbox.com + MapBox + maplesoft.com + Maplesoft.com + mappedinisrael.com + Mapped in Israel.com + mapraider.com + Mapraider.com (partial) + maps-api-ssl.google.com + Google Maps + maps.google.* + Google Maps + maps.google.co.* + Google Maps + maps.google.com.* + Google Maps + maps.googleapis.com + Google Maps + maps.gstatic.com + Google Maps + maps.org + MAPS + mara.gov.au + Office of the Migration Agents Registration Authority + marathonbet.com + Marathon Bet.com (partial) + marc-stevens.nl + Marc-Stevens.nl + marc.info + MARC.info + marcan.st + marcan.st + marcansoft.com + marcan.st + marchex.com + Marchex (partial) + marchforbabies.org + March for Babies.org (partial) + marconisida.com + Curso de Italiano + marhababrighton.co.uk + Marhaba Brighton + mariadb.com + MariaDB.com + mariadb.org + MariaDB + maricopa.edu + Maricopa Community Colleges (partial) + marieclaire.co.uk + Marie Claire.co.uk (partial) + mariestopes.org.au + Marie Stopes International Australia + marijuanamajority.com + Marijauana Majority + marinedepot.com + Marine Depot.com (partial) + marinellarose.com + MarinellaRose.com + marinsm.com + Marin Software (partial) + marinsoftware.com + Marin Software (partial) + marionstar.com + The Marion Star + mark.reevoo.* + Reevoo (partial) + markeedragon.com + Markee Dragon + marketdojo.com + Market Dojo + marketingoops.com + Marketingoops.com + marketo.com + Marketo + marketo.net + Marketo + marketplace-used.com + Marketplace Used (partial) + marketplace.org + Marketplace.org (partial) + marketplace.ricoh.com.sg + Ricoh (partial) + marketplace.ucsd.edu + UCSD + marketpress.com + MarketPress.com + marketwatch.com + Marketwatch.com + marketwire.com + Marketwire + markit.com + Markit (partial) + markmonitor.com + Mark Monitor + markng.co.uk + Mark NG.co.uk + marksandspencer.com + Marks & Spencer + marmotte.net + marmotte.net (partial) + marthastewart.com + Martha Stewart (partial) + marthastewartweddings.com + Martha Stewart (partial) + martineve.com + Martin Eve.com + martus.org + Martus + marum.de + Marum.de + marvel.com + Marvel.com (partial) + marvelheroes.com + Marvel Heroes.com (partial) + marvell.com + Marvell + marvelstore.com + Marvel Store.com + marx.org + Marxists Internet Archive + marxists.org + Marxists Internet Archive + mashape.com + Mashape.com (partial) + massagemag.com + Massage Magazine + massdrop.com + Massdrop.com + massrelevance.com + Mass Relevance + mastercard.com + MasterCard + mastermindpro.com + Mastermind + masternet.org + MasterNet + masterspaswi.com + Master Spas WI.com + mastozytose-schweiz.org + Mastozytose-Schweiz.org + masty.nl + Masty.nl + match.com + Match.com (partial) + matelife.net + MateLife + materiel.net + Materiel.net + mathias-kettner.de + Mathias-Kettner.de + mathiasbynens.be + Mathias Bynens.be + mathjax.org + MathJax (partial) + mathoverflow.net + MathOverflow.net + mathworks.com + MathWorks.com + matkahuolto.info + Matkahuolto + matrixgroup.net + Matrix Group + matrox.com + Matrox (partial) + matsuev.com + Denis Matsuev + matt.ucc.asn.au + University Computer Club (partial) + matthewsmarking.com + Matthews Marking.com (partial) + mattmccutchen.net + MattMccutchen.net + mauivaaircruise.com + MauivaAirCruise.com (partial) + maurus.net + maurus.net + max.jotfor.ms + JotForm + max.se + Max Hamburgare + maxcdn.com + MaxCDN.com (partial) + maxim-ic.com + Maxim Integrated.com (partial) + maxkitap.com + Max Kitap.com + maxmind.com + MaxMind (partial) + maxroam.com + MAXROAM (partial) + maxspeedcdn.com + MaxSpeed CDN.com + maxymiser.com + Maxymiser (partial) + mayday.us + Mayday.us + mayfirst.org + May First/People Link (partial) + mayoclinic.com + Mayo Clinic (partial) + mayoclinic.org + Mayo Clinic (partial) + maysoft.com + MayFlower Software (partial) + mbdetox.com + MB Detox + mbl.is + mbl.is (partial) + mbl.teljari.is + mbl.is (partial) + mbnet.fi + MBnet + mbox9.offermatica.com + offermatica.com + mbsportsweb.ca + MBSportsWeb (partial) + mbsportsweb.com + MBSportsWeb (partial) + mbusa.com + MBusa.com + mc.manuscriptcentral.com + ScholarOne (partial) + mcafeemobilesecurity.com + McAffee Mobile Security + mcafeesecure.com + McAfee SECURE + mcb.net + Manx Computer Bureau + mcitizen.com + Mahomet Citizen (partial) + mclu.org + Maine Civil Liberties Union + mcmaster.ca + McMaster University + mcmelectronics.com + MCM Electronics.com (partial) + mcssl.com + mcssl.com + mcvuk.com + Intent Media (partial) + mcwhirter.com.au + McWhirter.com.au + mcxnow.com + mcxNOW.com + mdcus.com + MDC US.com + mdh.se + MDH.se + mdn.mozillademos.org + Mozilla + mdshooters.com + Maryland Shooters + mdts.uk.com + MDTS + me.com + Apple.com (partial) + meanstinks.com + Mean Stinks + measure.richmetrics.com + Burt (partial) + measuredvoice.com + Captura Group (partial) + mecca.ca + ehosting.ca (partial) + medallion.kachingle.com + Kachingle + medconfidential.org + medConfidential.org + medgadget.com + Medgadget + media.220volt.hu + 220Volt.hu + media.bizj.us + The Business Journals (partial) + media.cdn.liquidweb.com + Liquid Web + media.cmgdigital.com + CMGdigital.com + media.corp.whiskeymedia.com + Whiskey Media (partial) + media.dyson.com + Dyson (partial) + media.firstclassmagazine.se + First Class Magazine.se (partial) + media.fit.edu + Florida Institute of Technology (partial) + media.go2app.org + HasOffers (partial) + media.heavy.com + Heavy.com (partial) + media.idownloadblog.com + iDownloadBlog (partial) + media.ign.com + IGN (partial) + media.kickstatic.com + KickApps (partial) + media.ldscdn.org + The Church of Jesus Christ of Latter-day Saints + media.marketwire.com + Marketwire + media.mcclatchyinteractive.com + McClatchy Interactive.com (partial) + media.mobyhub.com + Mobypicture + media.pantheos.com + Pantheos (partial) + media.petridish.org + Petridish (partial) + media.readspeaker.com + ReadSpeaker + media.screened.com + Whiskey Media (partial) + media.scrippsnewspapers.com + Scripps Newspapers.com + media.spontex.org + Spontex.org + media.techonline.com + TechOnline.com (partial) + media.thedenverchannel.com + TheDenverChannel.com (partial) + media.ticketmaster.eu + Ticketmaster (partial) + media.tracfonewireless.com + TracFone Wireless.com (partial) + media.wwte.com + WWTE (partial) + media1.break.com + break.com + media2.apnonline.com.au + APN News & Media (partial) + media40.wnyc.net + WNYC + media6degrees.com + media6degrees (partial) + media970.com + media970.com + mediaarea.net + MediaInfo + mediabistro.com + Mediabistro + mediacru.sh + Mediacru.sh + mediafactory.fm + Media Factory + mediakit.inc.com + Inc.com (mixed content) + medialayer.net + MediaLayer.com (partial) + medialinx-academy.de + Medialinx Academy.de (partial) + medialoot.com + Medialoot.com + mediamarkt.se + Mediamarkt.se + mediamath.com + MediaMath + mediamatters.org + MediaMatters.org (partial) + mediamir.medialand.ru + Medialand.ru (partial) + mediaplex.com + ValueClick (partial) + mediapost.com + MediaPost (partial) + mediaquestcorp.com + Mediaquest Corp.com + medias.myskreen.com + mySkreen.com (partial) + mediaspanonline.com + MediaSpan (partial) + mediastorehouse.com + Media Storehouse (partial) + mediastorehouse.net + Media Storehouse (partial) + mediate.com + Mediate.com + mediatemple.net + Media Temple (partial) + mediawiki.org + Wikimedia + mediaxus.com + Mediaxus.com + medibankhealth.com.au + Medibank Health Solutions + medical-treatments-management.com + Medical Treatments Management + medicalert.org + MedicAlert + medicaljane.com + Medical Jane + medicalxpress.com + Medical Express + medicare.gov + US government (partial) + medici-manager.com + Medici-manager.com + mediciglobal.com + MediciGlobal.com (partial) + medicinenet.com + MedicineNet.com (partial) + medicinescomplete.com + MedicinesComplete (partial) + medikamente-per-klick.de + Medikamente-Per-Klick + medipreis.de + MediPreis.de + medistack.com + MediStack.com + medium.com + Medium + medleyads.com + medleyads.com + medocmall.co.uk + medocmall.co.uk + medrx.sensis.com.au + Telstra Corporation (partial) + medstop.se + Medstop.se + meebey.net + Meebey.net + meebo.com + Meebo + meego.com + Meego + meerssen.nl + NL Overheid + meet.fm + Meet.fm + meetey.com + Meetey.com + meeting-reg.com + Marketing Matters + meetings.io + Meetings.io (partial) + meetinleeds.co.uk + MeetInLeeds + meetme.com + MeetMe + meetrics.com + Meetrics + meetrics.de + Meetrics + meetrics.net + Meetrics + meetup.com + Meetup (partial) + mega.co.nz + Mega + megabigpower.com + MegaBigPower.com + megafon.ru + MegaFon (partial) + megaglest.org + MegaGlest.org (partial) + megapath.com + MegaPath (partial) + megashare.im + MegaShare.im + megayoutubeviews.com + Mega Youtube Views + megworld.co.uk + MegWorld + meilenrechner.de + Miles-and-more.com + mein2.dastelefonbuch.de + Dastelefonbuch.de + meinfernbus.de + Meinfernbus.de + mekanist.net + Mekanist + meldium.com + Meldium.com + melectronics.ch + Migros + melkweb.com + Campina (partial) + melkweb.frieslandcampina.com + Campina (partial) + mellanox.com + Mellanox (partial) + meltin.net + Meltin.net (partial) + meltwaternews.com + Meltwater News + member.accesstrade.net + accesstrade.net (partial) + member.harland.com + Harland Clarke + membercentral.com + MemberCentral + membercentre.fairfax.com.au + Fairfax Digital (partial) + memberclicks.net + MemberClicks.net + memberdb.nuug.no + NUUG.no (false MCB) + members.dukeexechealth.org + Duke University (partial) + members.easynews.com + EasyNews + members.enlightenedperl.org + Enlightened Perl.org (partial) + members.firedoglake.com + Firedoglake (partial) + members.mtna.org + MTNA (partial) + members.tip.net.au + PC Users Group (ACT) (partial) + memcenter.maximintegrated.com + Maxim Integrated.com (partial) + memecenter.com + Meme Center (partial) + memopol.lqdn.fr + La Quadrature du Net + memorydealers.com + Memorydealers + memset.com + Memset + mentor.com + Mentor Graphics (partial) + mentoringcentral.net + Mentoring Central + meow.bnw.im + bnw + mequoda.com + Mequoda.com (partial) + mer.io + mer.io + meraki.com + Meraki + merchants.gamersfirst.com + Gamersfirst.com (partial) + merchdirect.com + MerchDirect (partial) + mercola.com + Mercola + mercurynews.com + Mercury News.com (partial) + mercyships.org + Mercy Ships (partial) + meritrustcu.org + Meritrust CU.org + merton.gov.uk + UK Local Government + messagingengine.com + messagingengine.com + messenger.ngageics.com + Ngage ICS (partial) + messerfinancial.com + Messer Financial + metaboli.co.uk + Metaboli.co.uk + metacode.cz + metacode.cz + metacpan.org + MetaCPAN + metal-detector-town.com + Metal-Detector-Town.com + metalab.at + metalab.at + metallica.com + Metallica (partial) + metapress.com + Metapress (partial) + metapress.org + MetaPress (partial) + metasearch.kib.ki.se + KI.se + metashop.at + Preisvergleich Internet Services (partial) + metasploit.com + Metasploit + metasploit.org + Metasploit + meteor.com + Meteor.com + methodactingstrasberg.com + Method Acting Strasberg.com + metin2.co.nz + Metin2.co.nz + metrics.adzip.co + adzip.co + metrics.geek.com + Ziff Davis (partial) + metrics.pcmag.com + Ziff Davis (partial) + metrics.penton.com + Penton Media (partial) + metrics.pisces-penton.com + Penton Media (partial) + metrics.reedbusiness.net + Reed Business.net (partial) + metrix.net + Metrix + metro.co.uk + Metro.co.uk + metroethernetforum.com + Metro Ethernet Forum.com (partial) + metrotransit.org + Metro Transit + mewsite.com + Mew + meynconnect.com + MeynConnect + mfi.re + MFi.re + mg2mobile.com + Mg2 mobile.com + mghocd.org + Massachusetts General Hospital OCD & Related Disorders Program + mgid.com + MGID.com (partial) + mh21.de + Martin Pitt + mhastic.de + Menshealth.de + mhsa.aihw.gov.au + Mental health services in Australia + mi5.gov.uk + MI5 + miamire.com + Miamire.com (partial) + mibbit.com + Mibbit + micahflee.com + Micah F Lee.com + michaelwlucas.com + Michael W Lucas.com + microad.jp + MicroAd.jp + microblink.com + microblink.com + microca.st + Microca.st + microchip.com + Microchip.com + microchipdirect.com + Microchip Direct.com + micron.com + Micron (partial) + micropartsusa.com + MicropartsUSA + microsoft.com + Microsoft (partial) + microsoftstore.com + Microsoft Store (partial) + microspot.ch + Coop + midasgreentech.com + Midas Green Tech.com (partial) + middelburg.nl + NL Overheid + middendrenthe.nl + NL Overheid + middleeastmonitor.com + Middle East Monitor.com + midlothian.gov.uk + UK Local Government + midnight-commander.org + Midnight Commander + midphase.com + Midphase (partial) + miga.org + International Finance Corporation (partial) + migros-service.migros.ch + Migros + migros-shop.de + Migros + migros.ch + Migros + migrosbank.ch + Migros + migrosmagazin.ch + Migros + migrosmagazine.ch + Migros + mijn.ing.nl + ING + mijnlandal.nl + Wyndham (partial) + mijnwestlandutrecht.nl + WestlandUtrecht Bank + mijnzakelijk.ing.nl + ING + mikel.olasagasti.info + Mikel Olasagasti Uranga (partial) + mikemasin.com + Mike Masin + mikrocontroller.net + Mikrocontroller.net + mikrotik.com + MikroTik.com (partial) + milchweb.frieslandcampina.com + Campina (partial) + milepoint.com + Milepoint.com + miles-and-more-kreditkarte.com + Miles-and-more.com + miles-and-more.com + Miles-and-more.com + militarysuper.gov.au + Military Super + milkandmore.co.uk + MilkAndMore + millenniumseating.com + Millennium Seating (partial) + millwardbrown.com + Millward Brown + milodev.com + milodev.com + milonic.com + Milonic (partial) + miltonkeynes.gov.uk + UK Local Government + mimovrste.com + Mall_sk_cz_hu_pl + min.us + Minus.com (partial) + minavardkontakter.se + My Healthcare Contacts + minbzk.nl + NL Overheid + mincommsy.uni-hamburg.de + MIN_Commsy + mind.org.uk + Mind (partial) + mindhealthconnect.org.au + Mindhealthconnect + minecraft.net + Minecraft + minecraft.org + Minecraft.org + minecraftserverlijst.nl + Minecraft Server Lijst.NL + minedu.sk + SlovakGoverment + minetest.ru + Minetest.ru (partial) + minfin.nl + NL Overheid + miniand.com + Miniand Tech (partial) + miniatur-wunderland.de + Miniatur Wunderland + minilock.io + miniLock.io + minimania.migros.ch + Migros + mint.com + Mint + minted.com + Minted (partial) + minus.com + Minus.com (partial) + mips.com + MIPS Technologies + mirakar.com + Mirakar.com + miramax.com + Miramax.com + miranda-im.org + Miranda IM (partial) + miranda.hemscott.com + Investis.com (partial) + mirantis.com + Mirantis.com + mirbsd.org + MirBSD + mirc.com + mIRC (partial) + misadventureswithandi.com + Misadventures with Andi (partial) + misco.co.uk + Misco.co.uk (partial) + mises.org + Mises.org + mit.edu + Massachusetts Institute of Technology (partial) + mitpressjournals.org + Massachusetts Institute of Technology (partial) + mitre.org + mitre.org + mitsubishi.com + Mitsubishi.com + mittidg.idg.se + IDG.se (partial) + miun.se + MIUN.se + mivacentral.com + MivaCentral + mivamerchant.com + Miva Merchant + mix-computer.de + MIX-Computer.de + mixbit.com + MixBit.com + mixcloud.com + Mixcloud.com (partial) + mixi.co.jp + mixi (partial) + mixi.jp + mixi (partial) + mixpanel.com + Mixpanel (partial) + mixtapeleak.com + MixtapeLeak + mixx.com + mixx.com + mixxx.org + Mixxx.org + mjam.net + Mjam + mjg.in + MJG International + mkateb.com + Mkateb.com + ml.azzurra.org + bofh.it + ml01.ispgateway.de + ispgateway.de (partial) + ml314.com + ML314.com + mla.com.au + Meat and Livestock Australia + mlno6.com + MLno6.com + mlpchan.net + MLPchan.net + mlpforums.com + MLP Forums + mlsecproject.org + MLSec Project.org + mlv-cdn.com + MyLikes + mm.sitecompass.com + SiteCompass.com (partial) + mmahq.com + MMAHQ + mmedia.me + Mercury News + mmixr.com + mmixr.com + mmoculture.com + MMO Culture + mmoga.com + MMOGA + mmoga.de + MMOGA + mmonit.com + MMonit.com + mnaonline.org + Michigan Nonprofit Association (partial) + mndigital.com + MediaNet (partial) + moana-surfrider.com + Moana Surfrider (partial) + moat.com + Moat (partial) + moatads.com + Moat (partial) + moava.org + Moava + mobify.com + Mobify + mobify.me + Mobify + mobifyagogo.wpengine.netdna-cdn.com + Mobify + mobigum.com + MobiGum.com + mobihand.com + MobiHand + mobilbonus.ch + Swiss Federal Railways (SBB/CFF/FFS) + mobile-ent.biz + Intent Media (partial) + mobile.gmx.de + GMX + mobile.sb.vdopia.com + Vdopia + mobile.swiss.com + Swiss.com + mobilecore.com + MobileCore.com + mobilepki.org + mobilepki.org + mobilevikings.com + Mobile Vikings (partial) + mobioinsider.com + Mobio INsider + mobireach.com + MobiHand + mobot.net + HotUKDeals (partial) + mobstac.com + MobStac (partial) + mobygames.com + Mobygames.com + mobypicture.com + Mobypicture + mochahost.com + MochaHost + modcloth.com + ModCloth.com (partial) + modelaircraft.org + Academy of Model Aeronautics (partial) + modelmayhem.com + Model Mayhem (partial) + modelviewculture.com + Model View Culture.com (partial) + modern.ie + modern.IE + moderncrypto.org + Modern Crypto.org + moderngiver.com + Modern Giver + modlife.com + Modlife + modmyi.com + ModMyi + modmypi.com + ModMyPi + modsecurity.org + ModSecurity + modulus.io + Modulus.io (partial) + modxcloud.com + MODX Cloud + moerdijk.nl + NL Overheid + moevideo.net + Moevideo + mofobian.com + Mofobian.com (partial) + mog.com + MOG + moi.gov.sa + Saudi Government + moikrug.ru + Yandex + moinmo.in + MoinMoin + moja.postovabanka.sk + Postovabanka.sk + moja.pss.sk + Pss.sk + moja.tatrabanka.sk + Moja.tatrabanka.sk + mojandroid.sk + Mojandroid.sk + moje.zuno.cz + ZUNO_BANK_AG + moje.zuno.sk + ZUNO_BANK_AG + mojeid.cz + mojeID.cz + moka5.com + MokaFive (partial) + mokafive.com + MokaFive (partial) + mol.gov.sa + Saudi Government + mollom.com + Mollom + momentusmedia.com + MomentusMedia + mommyslittlesunshine.com + Mommys Little Sunshine.com (partial) + monarch.co.uk + Monarch.co.uk + mondemp3.com + mondemp3.com + moneyadviceservice.org.uk + Money Advice Service (UK) + moneyandmarkets.com + Weiss Research + moneybookers.com + Moneybookers + mongodb.com + MongoDB.com (partial) + mongodb.org + mongoDB.org (partial) + mongoliad.com + The Mongoliad + moniker.com + KeyDrive (partial) + monitis.com + monitis.com (partial) + monkeyguts.com + MonkeyGuts.com + monmouthshire.gov.uk + UK Local Government + monoprice.com + Monoprice + monster-wow.com + Monster WoW + monsterdivx.com + MonsterDivx.com (partial) + montereybayaquarium.org + Monterey Bay Aquarium + montyprogram.com + Monty Program + mooc-list.com + MOOC-List.com (partial) + moodle.lasallehs.net + lasallehs.net + moodle.org + Moodle.org (partial) + moodle.usainteanne.ca + usainteanne + moodsmith.com + MoodSmith.com + moon.greenpeace.org + greenpeace.org (very partial) + moonfruit.com + Moonfruit.com (partial) + moonpig.com + MoonPig + moonpig.com.au + MoonPig + mooshi.com.au + Mooshi.com.au (partial) + moot.it + Moot.it + moovweb.com + Moovweb (partial) + moreal.co + Moreal.co + moreinterop.com + moreinterop.com + morello.se + Morello.se + morningstar.co.uk + Morningstar.co.uk (partial) + morningstaronline.co.uk + Morning Star Online.co.uk + moroccanbazaar.co.uk + Moroccan Bazaar + morpho.hu + Morpho.hu + morrisons.co.uk + Morrisons + morrisons.com + Morrisons + morrisonscellar.com + Morrisons Cellar.com + mortgageapplication.bremer.com + Bremer Bank + mos.org + Museum of Science (partial) + mosaicscience.com + Mosaic Science.com (partial) + mosr.sk + SlovakGoverment + motherjones.com + MotherJones.com (partial) + motherless.com + Motherless (partial) + moto-g.com + Moto-G.com + moto.money.pl + Money.pl (false MCB) + motorolasolutions.com + Motorola (partial) + mototradeup.com + Motorola Trade Up + mountainview.gov + City of Mountain View (partial) + mountsinai.org + Mount Sinai.org + mountspace.com + Mountspace.com + mouseblocker.com + Mouse Blocker.com + mouseflow.com + Mouseflow (partial) + mousematrix.com + Mousematrix.com + mov24hr.com + yed24hr.com + movabletype.com + Movable Type.com + move.va.gov + US Department of Veterans Affairs + movelia.es + Movelia + moveon.org + MoveOn + moveonpac.org + MoveOn + moviease.com + moviease.com + moviefone.com + Moviefone + movienewsletters.net + movienewsletters.net + movieposter.com + Movieposter.com + movieth.com + MovieTH.com + movietickets.com + MovieTickets.com + movzeed.com + yed24hr.com + moxiesoft.com + Moxie Soft.com + mozdev.org + Mozdev (partial) + mozdevgroup.com + Mozdev Group.com (partial) + mozest.com + Mozest + mozest.org + Mozest + mozilla-russia.org + Mozilla-Russia.org (partial) + mozilla.com + Mozilla + mozilla.org + Mozilla + mozillaignite.com + Mozilla + mozillalabs.com + Mozilla Labs.com + mozo.com.au + Mozo.com.au (partial) + mozy.co.uk + Mozy + mozy.com + Mozy + mpg.de + MPG.de + mpiweb.org + MPI web.org (partial) + mplayerhq.hu + MPlayer + mpx.no + Mpx + mrh.ibizarocks.com + Ibiza Rocks (partial) + mrm.freewheel.tv + FreeWheel (partial) + mrporter.com + MR PORTER + mrsmcnastys.com + Mrs. McNasty's + mshare.net + Mindshare Technologies + msi-shop.de + MSI-Shop.de + msi.com + MSI.com (partial) + msnbc.com + MSNBC.com (partial) + msp.money.pl + Money.pl (false MCB) + mtac.org + Music Teachers' Association of California + mtailor.com + MTailor.com + mtb.com + M&T Bank (partial) + mtekk.us + mtekk.us + mtgox.com + Mt.Gox + mtgsy.net + Microtech (partial) + mthode.org + mthode.org + mtmweb.biz + Medical Treatments Management + mtmweb.com + Medical Treatments Management + mtnafoundation.org + MTNA (partial) + mtrics.cdc.gov + US government (partial) + mtv.uol.com.br + UOL (partial) + muckrock.com + Muckrock + mudcrab.us + Mudcrab.us + mudgum.net + mudgum.net + mufin.com + MAGIX (partial) + mugenmonkey.com + MugenMonkey.com + mullet.se + Mullet.se + mullvad.net + Mullvad.net + multi-vpn.biz + MultiVPN + multibit.org + MultiBit + multicastmedia.com + Multicast Media + multicore-devcon.com + Multicore-DevCon.com + multimedia.pol.dk + Politiken.dk (partial) + multiply.com + Multiply (partial) + multiseek.net + MultiSeek + multisoft.com + MultiSoft (partial) + multivu.com + Cengage (partial) + mumzworld.com + Mumzworld.com + muni.cz + Muni.cz (partial) + munzinger.de + Munzinger.de + muse.mu + Muse.mu (partial) + musecdn.warnerartists.com + Muse.mu (partial) + musecdn2.businesscatalyst.com + Business Catalyst.com (partial) + music.cbc.ca + Canadian Broadcasting Corporation (mixed content) + musicbrainz.org + MusicBrainz + musiciansfriend.com + Musician's Friend (partial) + musicmetric.com + Musicmetric + musicnotes.com + Musicnotes.com (partial) + musicweek.com + Music Week + musikerforbundet.se + Musikerforbundet.se + musopen.org + Musopen (partial) + muspy.com + muspy + muss.alumni.utah.edu + University of Utah (partial) + mutelight.org + Mutelight.org + muttscomics.com + Muttscomics.com + mutualart.com + MutualArt.com + mutualofamerica.com + Mutual of America + muusikoiden.net + Muusikoiden.net + mvg-mobil.de + MVG-mobil.de + mville.edu + Manhattanville College (partial) + mvps.org + MVPs.org (partial) + mvptitle.com + MVP National Title + mw2.google.com + Google Maps + mwave.com.au + Mwave Australia (partial) + mwellner.de + Martin Pitt + mwrinfosecurity.com + MWR InfoSecurity.com + mxguarddog.com + MXGuarddog (partial) + mxlogic.com + McAfee MX Logic + mxtoolbox.com + MXToolBox + my.alfresco.com + Alfresco.com + my.apa.org + APA.org (partial) + my.bitdefender.com + Bitdefender.com (partial) + my.cloudfloordns.com + Microtech (partial) + my.com + My.com (partial) + my.covad.com + MegaPath (partial) + my.feedbox.com + Feedbox.com (partial) + my.fireclick.com + Fireclick.com (partial) + my.gmocloud.us + GMO Cloud.us + my.gov.au + myGov + my.ispsystem.com + ISPsystem (partial) + my.onlime.ch + Onlime.ch + my.otenet.gr + OTE + my.ratepoint.com + RatePoint (partial) + my.safaribooksonline.com + Safari Books Online + my.segpay.com + SegPay (partial) + my.smartbear.com + SmartBear (partial) + my.smoothwall.org + Smoothwall.org (partial) + my.st.com + ST.com (partial) + my.tealiumiq.com + Tealium (partial) + my.turbobytes.com + Turbobytes.com (partial) + my.usda.gov + United States Department of Agriculture (partial) + my.videobloom.com + VideoBloom.com (partial) + my.webtapestry.net + Axamba (partial) + myaccount.gcion.com + Gannett Company (partial) + myaccount.houstonchronicle.com + Houston Chronicle (partial) + myaloecleanse.com + My Aloe Cleanse.com + myapnic.net + Asia-Pacific Network Information Centre (partial) + mybbcentral.com + MyBB Central + mybcvs.ch + Banque Cantonale du Valais + mybenefitscalwin.com + MyBenefits CalWIN + mybenefitscalwin.net + MyBenefits CalWIN + mybenefitscalwin.org + MyBenefits CalWIN + mybetter.com + MyBetter.com + mybigcommerce.com + BigCommerce + mybitcointrade.com + Bitcoin Börse + mybuys.com + MyBuys (partial) + mycalendarbook.com + MyCalendar + mycampina.com + Campina (partial) + mycanvas.com + MyCanvas.com (partial) + mycdsglobal.com + CDS Global (partial) + mycharity.ie + MyCharity.ie + mychatagent.com + Just Develop It (partial) + mycliplister.com + My Cliplister.com + mycommerce.com + MyCommerce + mycomputer.com + MyComputer.com + myconan.net + myconan.net + mycontactual.com + Contactual (partial) + mycoresite.coresite.com + CoreSite.com (partial) + mycotopia.net + Mycotopia.net + mycp.co.nz + Openhost + mydatapipe.com + Datapipe.com (partial) + mydatapipe.net + Datapipe.com (partial) + mydigipass.com + Mydigipass.com + mydiscussion.gofrugal.com + GoFrugal (partial) + mydrive.ch + Mydrive + myedaccount.com + MyEdAccount.Com + myeddebt.com + MYEDDEBT.com + myendnoteweb.com + EndNote Web + myesri.com + Esri (partial) + myfitnesspal.com + MyFitnessPal + myfolder.net + myfolder (partial) + myfonts.com + MyFonts.com (partial) + myftp.utechsoft.com + Myftp.utechsoft.com + mygatekeeper.verisign.com.au + VeriSign (partial) + mygirlfund.com + MyGurlFund + mygoldencharter.co.uk + Golden Charter (partial) + mygoya.de + MAGIX (partial) + mygreenbeanextract.com + Green Coffee Bean Extract + myhailprotector.com + Hail Protector + myhearstnewspaper.com + Hearst Corporation (partial) + myhosting.com + SoftCom (partial) + myinmon.com + my InMon.com + myinterfase.com + myinterfase.com + myinteriordecorator.com + MyInteriorDecorator.com + myitcv.org.uk + myitcv.org.uk (partial) + myitworks.com + IT Works! + myitworksevents.com + IT Works! + mykolab.com + MyKolab.com + mykplan.com + ADP Retirement Services + myleague.com + MyLeague + mylevel3.net + mylevel3.net + mylifetime.com + myLifetime.com (partial) + mylikes.com + MyLikes + mylivechat.com + My LiveChat + myloc.de + myLoc.de + mylookout.com + Lookout.com + mymerchantguard.com + Just Develop It (partial) + mynaweb.com + Mynaweb.com (partial) + mynewflag.com + New Flag + mynewsdesk.com + Mynewsdesk.com (partial) + mynomadesk.com + Nomadesk (partial) + mynortonaccount.com + Norton (partial) + myoptimizerplus.com + My OptimizerPlus.com + myoptplussecure.com + My OptPlus secure.com + mypayquake.com + payQuake (partial) + mypcbackup.com + Just Develop It (partial) + myphilanthropedia.org + Philanthropedia + myplatinumpak.com + Platinum Performance.com + myplaydirect.com + MyPlayDirect + mypoints.com + MyPoints + myportableworld.com + My Portable World.com + myportal.im + myPortal.im + mypostbusiness.ch + Post.ch + mypressplus.com + Press+ (partial) + myradiocreative.com + My Radio Creative + myresumeagent.com + myResumeAgent.com (partial) + mysciencework.com + MyScienceWork.com + myscore180.com + MyScore180.com + mysecureconnect.com + mySecureConnect + myshadow.org + My Shadow.com + myshaklee.com + Shaklee (partial) + myshannonconnection.org + Shannon Health + myshazam.com + Shazam (partial) + mysitemyway.com + Mysitemyway + mysliderule.com + My SlideRule.com + mysmartrend.com + SmarTrend + mysn.de + Mysn.de + mysociety.org + mySociety.org + mysolarcity.com + SolarCity + myspace.com + Myspace (mixed content) + mysql.com + MySQL + mysql.de + MySQL + mysql.fr + MySQL + mysql.it + MySQL + mystockoptions.com + myStockOptions.com + mysullivannews.com + My Sullivan News.com (partial) + mysweetiq.com + mySweetIQ.com + mythic-beasts.com + Mythic Beasts (partial) + mytritonlink.ucsd.edu + UCSD + myucsdchart.ucsd.edu + UCSD + myuhc.com + MyUHC + myus.com + MyUS.com (partial) + myvarian.com + MyVarian.com + myvolunteerpage.com + Volunteer² (partial) + mywell-being.com + MyWell-Being.com + mywot.com + MyWOT (partial) + mywot.net + MyWOT (partial) + mzl.la + bit.ly vanity domains + mzstatic.com + Apple.com (partial) + mzv.sk + SlovakGoverment + n-aana.org + National American Arab Nursing Association + n-joy.de + N-JOY.de + n-kesteven.gov.uk + UK Local Government + n-somerset.gov.uk + UK Local Government + n.pr + bit.ly vanity domains + n0where.org + n0where.org + n5.adshostnet.com + adshostnet.com + na.decdna.net + Decdna.net + na.llnet.bioware.cdn.ea.com + BioWare (partial) + na.schottenland.de + Schottenland (partial) + naacp.org + NAACP + naacpcompanystore.org + NAACP Company Store + nab.com.au + NAB + nab.org + NAB.org + nabers.com + Nabers.com + nabtrade.com.au + NAB + nacdl.org + NACL.org + nadaguides.com + NADAguides + nadaguidesstore.com + NADAguides + nadir.org + nadir.org (partial) + nae.edu + National Academy of Engineering + nagra.com + Nagra.com + naiin.com + Naiin.com + nakedcitizens.eu + Naked citizens + name.com + Name.com (partial) + namecentr.al + NameCentr.al + namecentral.com + NameCentr.al + namecheap.com + NameCheap + nameid.org + NameID.org + names.co.uk + Names + nancysgonegreen.com + Nancys Gone Green.com + nandos.com + Nandos.com (partial) + nanoengineering.ucsd.edu + UCSD + nanog.org + North American Network Operators' Group + nanohub.org + NanoHUB + nap.edu + The National Academies Press (partial) + naplesnews.com + Naples News.com (partial) + napoleonmakeupacademy.com + Napoleon Makeup Academy.com + napoleonmakeupacademy.com.au + Napoleon Makeup Academy.com + narac.com + Narac.com + nardikt.ru + Herdict + naromax.com + Naromax + narro.mozest.com + Mozest + nasaimages.org + DVIDS Hub.net + nasuni.com + Nasuni.com (partial) + nathnac.org + National Travel Health Network and Centre (NaTHNaC) + national-lottery.co.uk + NationalLottery + national.com + Texas Instruments (partial) + nationalarchives.gov.uk + NationalArchivesGovUK (partial) + nationalcapital.gov.au + National Capital Authority + nationaldefensemagazine.org + National Defense Industrial Association (partial) + nationaleatingdisorders.org + National Eating Disorders Association + nationaleombudsman.nl + NL Overheid + nationalexpress.com + National Express (partial) + nationalexpress.jobs + National Express (partial) + nationalgeographic.com + National Geographic (partial) + nationalgrid.com + National Grid + nationalrail.co.uk + National Rail Enquiries (partial) + nationalreview.com + NationalReview.com (partial) + nationalserviceresources.org + nationalserviceresources.org + nationbuilder.com + NationBuilder (partial) + nationstates.net + NationStates.net + nationwide-jobs.co.uk + Nationwide Building Society (partial) + nativo.net + Nativo.net (partial) + nattstad.se + Nattstad.se + naturalskinshop.com + Natural Skin Shop + nature.com + Nature (partial) + natureshop.com + Nature Shop (partial) + naturfotografen-forum.de + Forums für Naturfotografen + naturvardsverket.se + Naturvardsverket.se + naughtydog.com + Naughty Dog + navercorp.com + Naver Corp.com + navicast.co.jp + Showcase-TV + navigantresearch.com + Navigant Research.com (partial) + navteq.com + NAVTEQ (partial) + navteqmedia.com + NAVTEQ (partial) + navy.gov.au + Royal Australian Navy + navynews.co.uk + Royal Navy (partial) + nawaat.org + Nawaat + nazwa.pl + nazwa.pl (partial) + nbcudigitaladops.com + NBCUniversal Media (partial) + nber.org + National Bureau of Economic Research + nbnco.com.au + NBN Co.com.au + nbwn.de + Notebooks Wie Neu + nc.me + NameCheap + ncbar.org + NC Bar.org + nccc.nl + NedLinux.com + nccgroup.com + NCC Group.com + nccgroupdomainservices.com + NCC Group Domain Services.com + ncdc.noaa.gov + National Oceanic and Atmospheric Administration (partial) + ncds.netflix.com + Netflix (partial) + nces.ed.gov + ED.gov (partial) + ncjrs.gov + NCJS.gov + ncm.novarait.com + Digiweb (partial) + ncpw.gov + National Consumer Protection Week + ncric.org + NCRIC + ncsc.nl + NCSC.nl + ncsi.com + NCSI.com + ncsoft.com + NCsoft.com + ncsu.edu + North Carolina State University (partial) + ncta.com + NCTA.com + nd.edu + University of Notre Dame (partial) + ndchost.com + NDCHost.com + ndi.org + NDI.org + ndia.org + National Defense Industrial Association (partial) + ne-web.ucsd.edu + UCSD + ne.ucsd.edu + UCSD + neaf.gov.au + National Ethics Application Form + nealpoole.com + Neal Poole + nearlyfreespeech.net + NearlyFreeSpeech.NET + neatoshop.com + NeatoShop.com + neave.tv + Neave.tv + nebula.com + Nebula + necdisplay.com + NEC Display.com (partial) + necessaryandproportionate.net + Necessary and Proportionate.org + necessaryandproportionate.org + Necessary and Proportionate.org + neck2neck.com + Neck2Neck + necu.org + Northeast Credit Union + necuhb.org + Northeast Credit Union + nedlinux.com + NedLinux.com + nedstat.com + comScore.com (partial) + neelwafurat.com + Neelwafurat.com + neg9.org + Neg9.org + negotiatingsalary.com + NegotiatingSalary.com + nehta.gov.au + National E-Health Transition Authority + neimanmarcus.com + TPG Capital (partial) + nejm.org + New England Journal of Medicine (partial) + nekvapor.com + NEK Vapor.com + nelly.com + Nelly.com + nelonen.fi + Nelonen.fi (partial) + nemertes.com + Nemertes.com + nemid.dtu.dk + Technical University of Denmark (partial) + nemid.nu + NemID + neo-direct.com + NEO Direct + neo-interactive.hu + Neo-interactive.hu + neobits.com + Neobits (partial) + neobookings.com + neobookings + neobux.com + NeoBux.com (partial) + neomailbox.* + neomailbox + neonisi.com + Neonisi.com + neonmob.com + NeonMob.com + neooffice.org + NeoOffice.org (partial) + neos.typo3.org + TYPO3.org (false MCB) + neoseeker.com + Neoseeker + neosmart.net + NeoSmart.net + neowin.net + Neowin.net (partial) + nerfnow.com + Nerf NOW + nesea.org + NESEA + nesl.edu + NESL.edu + nest.com + Nest.com + nestle.com + Nestlé (partial) + nestle.de + Nestlé (partial) + net-a-porter.com + Net-A-Porter.com + net-dns.org + NLnet Labs CACert + net-housting.de + Net-Housting.de (partial) + net-safe.info + Net-Safe + netapplications.com + Net Applications + netbank.de + netbank.de + netbeans.org + NetBeans (partial) + netbeat.de + Netbeat Webmail + netbel.oxfamireland.org + Oxfam Unwrapped + netbsd.org + NetBSD (partial) + netclean.com + NetClean.com (partial) + netdna.com + NetDNA (partial) + netdnasite.wpengine.netdna-cdn.com + NetDNA (partial) + netdoktor.se + Netdoktor.se + neteller-group.com + Optimal Payments (partial) + neteller.com + Optimal Payments (partial) + netelligent.ca + Netelligent (partial) + netfirms.com + Netfirms + netflix.com + Netflix (partial) + netforumpro.com + netFORUMpro.com + netgear.com + Netgear (partial) + netgroup.dk + Netgroup.dk + netguava.com + Netguava (partial) + netiq.com + NetIQ (partial) + netload.in + Netload + netlock.hu + NetLock (partial) + netmarble.com + Netmarble (partial) + netmarketshare.com + NetMarketShare.com + netmundial.net + Net Mundial.net + netnanny.com + Net Nanny + netnod.se + Netnod.se + netpivotal.* + NetPivotal + netpivotal.co.uk + NetPivotal + nets-danid.dk + Nets DanID + netsale.aktiiviraha.fi + handelsbanken.fi (partial) + netscape.com + AOL (partial) + netsekure.org + netsekure.org + netsemi.com + Net Semi + netsparker.com + Netsparker.com + netswipe.com + Jumio + nettica.com + Nettica + netverify.com + Netverify + network23.org + network23.org + networkadvertising.org + Network Advertising Initiative + networkedblogs.com + NetworkedBlogs + networkforgood.org + Network for Good + networking4all.com + Networking4all.com + networksolutions.com + Network Solutions (false MCB) + networktimefoundation.org + Network Time Foundation.org (partial) + networkworld.com + NetworkWorld (partial) + netzclub.net + netzclub + netzguerilla.net + netzguerilla.net + netzpolitik.org + Netzpolitik.org + neu.directbox.com + Directbox + neustar.biz + NeuStar + neustar.com + NeuStar + neustarultraservices.biz + NeuStar + neverddos.com + NeverDDoS.com + nevillholtopera.net + Nevill Holt Opera + nevistashealth.com + Nevistas Health.com + new.adestra.com + Adestra (partial) + new.livejasmin.com + LiveJasmin (partial) + newcastle.gov.uk + UK Local Government + newdream.net + New Dream Network + neweb.ucsd.edu + UCSD + newit.co.uk + NewIT + newlook.com + New Look (partial) + newmoon.com + New Moon Girls Online + newportmotorsports.com + Newport Motorsports + newrelic.com + New Relic.com + newrepublic.com + New Repubic (partial) + news-gazette.com + The News-Gazette (partial) + news.gnome.org + GNOME (false MCB) + news.google.* + Google Services + news.google.co.* + Google Services + news.google.com.* + Google Services + news.money.pl + Money.pl (false MCB) + news.uga.edu + University of Georgia (partial) + news.usni.org + USNI.org (false MCB) + news9daily.org + news9daily.org + newsagent.scoop.co.nz + Scoop.co.nz (partial) + newsblur.com + NewsBlur + newschallenge.org + News Challenge.org + newscientist.com + NewScientist.com (partial) + newsdaily.com + NewsDaily.com + newsday.com + Newsday.com (partial) + newsgator.com + NewsGator + newslook.com + NewsLook (partial) + newsmax.com + Newsmax.com (partial) + newspaperdirect.com + NewspaperDirect (partial) + newsregistry.com + News Registry (partial) + newsroom.intel.co.jp + Intel.co.jp (partial) + newsroom.intel.com + Intel.com (false MCB) + newsvine.com + newsvine.com (partial) + newswhip.com + NewsWhip (partial) + newyorkcasual.com + Newyorkcasual.com + newyorker.com + The New Yorker (partial) + newyorkneedsyou.org + New York Needs You.com + newzbin.com + Newzbin + newzbin2.es + Newzbin + nex.sx + nex.sx + nexac.com + nexac.com (partial) + nexcess.net + Nexcess (partial) + next.co.uk + Next + nextag.* + Nextag (partial) + nextbit.com + Nextbit.com + nextbus.com + NextBus + nexternal.com + Nexternal + nextgenautoparts.com + Next Gen Auto Parts.com (partial) + nextinpact.com + NEXTINpact (partial) + nextiva.com + Nextiva + nextstudioapps.com + Laffster + nexuspays.com + Nexus Pay + nexway.com + Nexaway (partial) + nfadmin.net + NFrance (partial) + nfb.org + National Federation of the Blind (partial) + ngpvan.com + NGP VAN + ngrok.com + ngrok.com + nhm.ac.uk + NHM.ac.uk (partial) + nhmrc.gov.au + National Health and Medical Research Council + nhn.com + NHN Corporation + nhncorp.com + NHN Corporation + nhnnext.org + NHN Next.org + nhs.uk + NHS (partial) + nhsdirect.nhs.uk + NHS Direct (partial) + nhw.se + NordicHardware + niap-ccevs.org + NIAP-CCEVS.org + nib.vub.sk + Vub.sk + nibcdirect.nl + NIBC Direct.nl + nic.ac + NicAc + nic.ad.jp + NIC.ad.jp + nic.br + NIC.br (partial) + nic.ch + NIC.ch + nic.cz + CZ.NIC + nic.io + NicIo + nic.tel + Telnic + nicehash.com + NiceHash.com + nicennaughty.co.uk + Nice 'n' Naughty + nickyhager.info + Nicky Hager (partial) + nicotine-anonymous.org + Nicotine Anonymous + nicta.com.au + NICTA (partial) + nightcode.info + Nightcode.info + nightlove.me + NightLove + nightweb.net + Nightweb.net + nikcub.com + Nik Cub.com + nike.com + Nike.com (partial) + nimbushosting.co.uk + Nimbus Hosting (partial) + nine-2-one.com + nine-2-one + nine.ch + Nine + nines.nl + Nines.nl + ning.com + Ning (partial) + ninite.com + Ninite + nintendo.com + Nintendo.com (partial) + nintendoworldreport.com + Nintendo World Report + nisit69.com + nisit69.com + nismonline.org + National Institute for Social Media + nitetimetoys.com + NiteTimeToys.com + nitrocloud.com + Nitro Cloud.com + niveusluna.org + Luna Nivius + njit.edu + NJIT.edu (partial) + nkb.ch + Schweizer Kantonalbanken + nkl.fi + Näkövammaisten keskusliitto + nknews.org + NK News.org (partial) + nku.gov.sk + SlovakGoverment + nl.canon.be + Canon + nla.gov.au + National Library of Australia + nlayer.net + nLayer Communications (partial) + nlg.org + National Lawyers Guild + nlgcdn.com + nlgcdn.com + nllgg.nl + NLLGG.nl + nlnetlabs.nl + NLnet Labs CACert + nluug.nl + NLUUG.nl (partial) + nmargin.com + PulsePoint (partial) + nmugroup.com + NMU + nnetworks.co.jp + Nnetworks + nnm-club.me + NNM-Club + no-ip.com + Vitalwerks (partial) + no.de + Joyent (partial) + noaddedsugar.com + no added sugar + noao.edu + National Optical Astronomy Observatory (partial) + noblehour.com + NobleHour.com + noc.ac.uk + University of Southampton (partial) + noc.grnet.gr + Greek-gov + nodejitsu.com + Nodejitsu.com (partial) + nodejs.org + nodejs.org (partial) + nodejsmodules.org + NodeJS Modules.org + nodeserv.com + NodeServ.com + nodpi.org + No Deep Packet Inspection campaign + noelia.fi + Noelia + noembed.com + Noembed.com + nohats.ca + No Hats.ca + noip.com + No IP.com + noisebridge.net + Noisebridge + noiselessvault.org + Noiseless Vault.org + nokia.* + Nokia (partial) + nokia.co.uk + Nokia (partial) + nokiasiemensnetworks.com + Nokia Siemens Networks (partial) + nokiausa.com + Nokia (partial) + nomachine.com + NoMachine.com + nomadesk.com + Nomadesk (partial) + nooelec.com + NooElec.com + noordwijkerhout.nl + NL Overheid + nordea.* + Nordea + nordichardware.com + NordicHardware + nordichardware.se + NordicHardware + nordichosting.com + Nordic Hosting.com + nordicsemi.com + Nordic Semiconductor + nordkapp.net + NordkappNett.no + nordkappnett.no + NordkappNett.no + nordnet.se + Nordnet.se + nordu.net + Nordu.net + nordvpn.com + Nordvpn.com + noris.net + noris.net + norman.com + Norman.com (partial) + north-herts.gov.uk + UK Local Government + northclicks.com + NorthClicks + northern-indymedia.org + Indymedia.org + northerntool.com + Northern Tool.com (partial) + northerntool.ugc.bazaarvoice.com + Northern Tool.com (partial) + northkoreatech.org + North Korea Tech.org + northnorfolk.org + UK Local Government + northpole.fi + Northpole.fi + northwarks.gov.uk + UK Local Government + norton.com + Norton (partial) + norwalkreflector.com + Norwalk Reflector (partial) + norwegian.com + Norwegian.com + norx.io + norx.io + nos-oignons.fr + Nos-oignons.net + nos-oignons.net + Nos-oignons.net + nos-oignons.org + Nos-oignons.net + nos.pt + Nos.pt + noscript.net + NoScript.net + nostarch.com + No Starch Press (partial) + notacon.org + Notacon.org + notalone.gov + Not Alone.gov + notebook-kisker.hu + Laptop.hu + notebookkisker.hu + Laptop.hu + notebooknagyker.hu + Laptop.hu + notenoughshaders.com + Not Enough Shaders.com + notesappstore.com + MayFlower Software (partial) + notex.ch + NoTex + nothing.ch + Nothing.ch + nottingham.ac.uk + NottinghamAC + nottinghamshire.gov.uk + UK Local Government + notwithoutawarrant.com + Center for Democracy & Technology + novainfosec.com + NoVA Infosec + novara.ie + Digiweb (partial) + novell.com + Novell (partial) + now.symassets.com + Symantec (partial) + noxa.de + noxa.de + noxamail.de + noxa.de + npd.com + NPD Group + npddecisionkey.com + DecisionKey + npdgroup.com + NPD Group + npm.im + npm js.org (partial) + npmjs.org + npm js.org (partial) + npower.com + npower (partial) + nppa.org + National Press Photographers Association + npr.org + NPR.org (partial) + nr-media-01.nationalreview.com + NationalReview.com (partial) + nr7.us + Net-Results (partial) + nrao.edu + NRAO.edu (partial) + nrc-cnrc.gc.ca + National Research Council Canada + nrc.gov + United States Nuclear Regulatory Commission + nrel.gov + National Renewable Energy Laboratory (partial) + nrelate.com + nrelate (partial) + nrf.com + National Retail Federation (partial) + nro.net + Number Resource Organization + nrsr.sk + SlovakGoverment + nruns.com + n.runs + nsa.gov + National Security Agency + nsf.gov + National Science Foundation (partial) + nsfwcorp.com + nsfwcorp.com (partial) + nsidc.org + National Snow and Ice Data Center + nslds.ed.gov + ED.gov (partial) + nsm.stat.no + Nasjonal Sikkerhetsmyndighet (NSM) + nsn.com + Nokia Siemens Networks (partial) + nsrc.org + NSRC + nsslabs.com + NSS Labs.com + nswebmail.uk.clara.net + Claranet (partial) + ntacdn1.net + ntacdn1.net + ntchosting.com + NTC Hosting + nti.org + NTI.org (partial) + ntnu.no + NTNU.no + ntop.org + ntop.org (false MCB) + ntpandp.com + NTpandp.com + ntsb.gov + National Transport Safety Board + ntt.com + NTT.com + nttcoms.com + NTTCom + nttxstore.jp + Nttxstore + ntu.ac.uk + NTU + ntu.edu.sg + Nanyang Technological University (partial) + ntualumni.org.uk + NTU + ntvspor.net + NTVSpor + nuand.com + Nuand.com (partial) + nublue.co.uk + NuBlue + nuclearblast.de + Nuclear Blast (partial) + nuclearcat.com + NuclearCat.com + nuevasync.com + NuevaSync (partial) + nuget.org + NuGet (partial) + nuigalway.ie + National University of Ireland (partial) + nuimagemedical.com + Nu Image Medical (partial) + nulab-inc.com + Nulab-Inc.com + numato.com + Numato.com (partial) + numbersusa.com + NumbersUSA + numergy.com + Numergy + nustarz.com + NuStarz.com (false MCB) + nutricentre.com + NutriCentre + nuug.no + NUUG.no (partial) + nuwear.com + Nuwear + nva.org + National Vulvodynia Association + nvenergy.com + NV Energy.com + nventio.com + nventio.com + nvidia.com + nVidia (partial) + nwf.org + National Wildlife Foundation (partial) + nwswimshop.com + Northwest Swim Shop + nwtime.org + Network Time Foundation.org (partial) + nxtck.com + nxtck.com + nyantec.com + nyantec + nyc.gov + New York City (partial) + nycla.org + NYCLA.org + nydailynews.com + NYDailyNews (partial) + nykeurope.com + NYK Europe.com (partial) + nysk.mediekompaniet.com + Mediekompaniet.com (partial) + nytexaminer.com + NYT eXaminer.com + nyti.ms + bit.ly vanity domains + nyu.edu + New York University (partial) + nyx.com + NYSE Euronext + nyx.cz + Nyx.cz + nzbindex.com + NZBIndex + nzbindex.nl + NZBIndex + nzbmatrix.com + nzbmatrix + nzbplanet.net + Nzbplanet.net + o.rmncdn.com + RetailMeNot.com (partial) + o2-tv.cz + Telefónica (partial) + o2.co.uk + Telefónica (partial) + o2.cz + Telefónica (partial) + o2.sk + Telefónica (partial) + o2extra.cz + Telefónica (partial) + o2online.de + o2 online.de (partial) + o2shop.cz + Telefónica (partial) + o2tv.cz + Telefónica (partial) + oag.ca.gov + California Department of Justice + oag.com + OAG (partial) + oaklandish.com + Oaklandish + oas.five.tv + Channel 5 + oas.org + Organization of American States + oascentral.aviationweek.com + 24/7 Media clients + oascentral.bostonherald.com + 24/7 Media clients + oascentral.datasphere.com + DataSphere.com (partial) + oascentral.globalpost.com + 24/7 Media clients + oasis-open.org + OASIS Open.org + ob.bremer.com + Bremer Bank + obedovat.sk + Obedovat.sk + obfb.bremer.com + Bremer Bank + obitalk.com + ObiTalk + objectif-securite.ch + Objectif-Securite.ch + oblivia.vc + oblivia.vc + occupycorporatism.com + Occupy Corporatism.com + occupywallst.org + Occupywallst.org + ocl-cal.gc.ca + Office of the Commissioner of Lobbying of Canada + oclaserver.com + oclaserver.com + octopoos.com + Octopoos.com + oculu.com + Oculu.com (partial) + oculusvr.com + Oculus VR (partial) + oderland.se + Oderland.se + odesk.by + odesk.by + odevzdej.cz + Odevzdej.cz + odir.org + Open Directory + odmenazadobiti.cz + Telefónica (partial) + odmp.org + Officer Down Memorial Page (partial) + odmwheels.com + ODMWheels + odn.io + Torbit (partial) + odpadnes.sk + Zlavy.odpadnes.sk + oeticket.com + oeticket (partial) + ofb.net + OFB (partial) + offensive-security.com + Offensive-Security.com + offeredby.net + Paradysz + office.co.uk + Office.co.uk (partial) + office.com + Microsoft (partial) + officedepot.com + Office Depot (partial) + officersforbundet.se + Officersforbundet.se + officeworks.com.au + Officeworks.com.au + offlinemode.org + offlinemode.org + ofono.org + oFono + ogt.jp + Infocube (partial) + ohiolink.edu + OhioLINK.edu (partial) + ohiostatealumni.org + Ohio State University (partial) + ohloh.com + Ohloh + ohloh.net + Ohloh + ohloh.org + Ohloh + ohm2013.org + OHM2013.org + ohsocool.org + Oh So Cool ! + oip.usda.gov + United States Department of Agriculture (partial) + ojrq.net + Impact Radius + ok.de + OK.de + okcoin.com + OKCoin.com + okcupid.com + OkCupid (partial) + okfn.org + OKFn.org (false MCB) + okpartypix.com + Genesee Photo Systems + okpay.com + OKPAY.com + oktatas.hu + Oktatási Hivatal + olark.com + Olark + olasagasti.info + Mikel Olasagasti Uranga (partial) + olb.nationwideinternational.com + Nationwide Building Society (partial) + olb.nationwideuk.ie + Nationwide Building Society (partial) + olb2.nationet.com + Nationwide Building Society (partial) + oldebroek.nl + NL Overheid + olimex.com + Olimex.com + olin.edu + Franklin W. Olin College of Engineering + olmn.org + OLMN.org + olvi.fi + Olvi.fi + om.cnet.com.au + CBS (partial) + om.dowjoneson.com + News Corporation (partial) + om.eamobile.com + Electronic Arts (partial) + om.nl + Openbaar Ministerie (partial) + omakaseweb.com + OmakaseWeb.com + omaze.com + Omaze.com (partial) + omaze.info + Omaze.info + omha.net + Ontario Minor Hockey Association + omicron.at + OMICRON (partial) + omnigroup.com + OmniGroup.com + omniref.com + Omniref.com + omnirom.org + Omnirom.org + omnitec.com + Omnitec + omniture-static.com + Adobe Digital Marketing + omniture.chip.eu + CHIP Online (partial) + omniture.com + Adobe Digital Marketing + omniupdate.com + OmniUpdate.com + omnovia.com + omNovia Technologies + omron.com + Omron.com + on-disk.com + On-Disk.com + on-web.fr + on-web.fr + on.cfr.org + bit.ly vanity domains + on.lung.ca + Ontario Lung Association + on.wsj.com + bit.ly vanity domains + on24.com + ON24.com (partial) + ona.gov.au + Office of National Assessments + onamae-server.com + Onamae-server.com (partial) + onamae.com + Onamae.com (partial) + onbeing.org + OnBeing.org + oncampus.csr.oberlin.edu + Oberlin College (partial) + onclickads.net + onclickads.net (partial) + ondarossa.info + OndaRossa.info + one-tab.com + One-Tab.com + one.actionkit.com + ONE.org + one.com + one.com + one.org + ONE.org + one2buy.com + One2Buy (partial) + oneadmin.cz + ONEadmin (partial) + onebit.cz + ONEbit + onebitbug.me + onebitbug.me + onecloudsecurity.com + OneCloudSecurity.com + oneday.lvrj.com + Las Vegas Review-Journal (partial) + onedrive.com + OneDrive.com + onegooddriver.com + One Good Driver + onegreenplanet.org + One Green Planet.org + onehealthtalk.org + One Health Talk.org (partial) + onehelp.cz + ONEhelp + onehub.com + Onehub.com + onelogin.com + OneLogin.com + onemancan.org + One Man Can + onenetworkdirect.com + oneNetworkDirect + onepagerapp.com + Onepager (partial) + oneserver.cz + ONEbit + onesolution.cz + ONEsolution + oneweb.cz + ONEweb (partial) + onguardonline.gov + OnGuard Online + oniontip.com + OnionTip.com + onjive.com + onJive.com + onlandscape.co.uk + On Landscape.co.uk + online-convert.com + online-convert.com (partial) + online-emr.com + Online EMR + online-offshore.lloydstsb.com + Lloyds TSB Offshore + online.alumni.rice.edu + Rice University (partial) + online.barrons.com + News Corporation (partial) + online.bezeqint.net + Bezeq International (partial) + online.cyberaces.org + CyberAces (partial) + online.fit.edu + Florida Institute of Technology (partial) + online.s-pankki.fi + S-pankki + online.statefarm.com + StateFarm + online.tu-graz.ac.at + TUGRaz.at (partial) + online.uen.org + Utah Education Network (partial) + online.vodafone.co.uk + Vodafone + online2.statefarm.com + StateFarm + onlinebanking.bankcoop.ch + Coop + onlinebanking.mandtbank.com + M&T Bank (partial) + onlinebanking.tdbank.com + TD Bank (partial) + onlinehelp.microsoft.com + Microsoft.com (false MCB) + onlinelibrarystatic.wiley.com + Wiley (partial) + onlineregister.com + Online Register + onlineregistrationcenter.com + Online Registration Center.com + onlineshoes.com + OnlineShoes.com + onlinethreatalerts.com + Online Threat Alerts.com + onlinewellnessassociation.com + Online Wellness Association + onlive.com + OnLive.com (partial) + ono.es + Ono + onorobot.org + ONOrobot.org + onsalesit.com + Onsalesit.com + onsecure.gov.au + OnSecure + onsiteconcierge.com + R66T + onsugar.com + OnSugar + onthehub.com + OnTheHub (partial) + ontology.co + Ontology.co + ontrac.com + OnTrac + ooda.com + OODA.com + oodaloop.com + OODA Loop.com + oodt.apache.org + Apache.org (false MCB) + ookla.com + Ookla (partial) + ooshirts.com + ooshirts.com (partial) + ooyala.com + Ooyala (partial) + op-co.de + op-co.de + opalang.org + Opa (partial) + opaskartta.turku.fi + Turku.fi + opc.gov.au + Office of Parliamentary Counsel + opcw.org + OPCW.org + open-mesh.com + Open-Mesh + open-mesh.org + Open Mesh + open-mpi.org + Open MPI + open-pc.com + openDesktop.org + open.ad.yieldmanager.net + Right Media + open.login.yahooapis.com + Yahoo APIs (partial) + openaccessbutton.org + Open Access Button.org + openadultdirectory.com + OpenAdultDirectory.com (partial) + openafs.org + OpenAFS.org + openbadges.org + Open Badges + openbenchmarking.org + Phoronix Media (partial) + openbsdeurope.com + OpenBSD Europe + openbsdstore.com + OpenBSD Store.com + opencalais.org + OpenCalais (partial) + openclipart.org + Open Clipart Library + opencryptoaudit.org + Open Crypto Audit.org + opencsw.org + OpenCSW.org (partial) + opendatacity.de + opendatacity + opendaylight.org + OpenDaylight + opendemocracy.net + openDemocracy.net + opendesktop.org + openDesktop.org + opendnssec.org + NLnet Labs + opendoors.org + Open Doors.org (partial) + openf2.org + OpenF2.org (partial) + openfabrics.org + OpenFabrics Alliance + openfarmgame.com + Open Farm Game + openfiler.com + openfiler + openfmri.org + OpenfMRI + openfoundry.org + OpenFoundry.org + opengarden.com + Opengarden.com (partial) + opengl.org + OpenGL + opengroup.org + The Open Group (partial) + openhatch.org + OpenHatch.org (partial) + openhost.co.nz + Openhost + openhost.net.nz + Openhost + openhpi.de + openHPI + openhub.net + Open Hub.net (partial) + openid.net + OpenID + openid.yubico.com + Yubico + openinfosecfoundation.org + Open InfoSec Foundation.org + openit.de + OpenIT + openitp.org + OpenITP.org + openknowledge.worldbank.org + International Finance Corporation (partial) + openleaks.org + OpenLeaks + openlibrary.org + Open Library.org + openlinksys.info + OpenLinksys.info + openmailbox.org + OpenMailBox.org + openmandriva.org + OpenMandriva + openmedia.ca + OpenMedia.ca (partial) + openmedia.org + OpenMedia.org (partial) + openmedianow.net + OpenMedia.org (partial) + openmrs.org + OpenMRS + openmw.org + OpenMW + opennet.net + OpenNet.net (partial) + openoffice.org + Apache OpenOffice (partial) + openprinting.org + Openprinting + openrce.org + OpenRCE + openrightsgroup.org + Open Rights Group + opensc-project.org + OpenSC Project + opensecrets.org + Center for Responsive Politics (partial) + openshift.com + OpenShift + openskillz.com + openDesktop.org + opensource.com + opensource.com + opensource.cse.ohio-state.edu + Ohio State University (partial) + opensource.osu.edu + Ohio State University (partial) + opensrs.com + OpenSRS.com (partial) + opensrs.net + OpenSRS.com (partial) + openssl.org + OpenSSL (partial) + openstack.org + OpenStack (partial) + openstat.ru + OpenStat.ru (partial) + openstreetmap.org + OpenStreetMap + opensuse.org + openSUSE (partial) + opensvc.com + OpenSVC (partial) + openswan.org + Openswan + opentechfund.com + OpenTechFund + opentechfund.org + OpenTechFund + opentemplate.org + openDesktop.org + opentext.com + OpenText (partial) + opentransfer.com + Ecommerce (partial) + openttd.org + OpenTTD (partial) + openttdcoop.org + OpenTTD (partial) + openuserjs.org + OpenUserJS.org + openvirtualizationalliance.org + Open Virtualization Alliance.org + openvpn.net + OpenVPN + openvz.org + OpenVZ.org (partial) + openwalls.com + Open Walls + openwatch.nl + OpenWatch.nl + openweb.or.kr + Open Web.or.kr + openwireless.org + Open Wireless Movement + openwrt.org + OpenWRT (partial) + openx.com + OpenX (partial) + operatingsystems.io + Operating Systems.io + operationfabulous.com + Operation Fabulous + opinionmeter.com + Opinionmeter (partial) + opintoluotsi.fi + Opintoluotsi + oplata.info + Oplata.info + oppelt.com + Oppelt.com + oppictures.com + United Stationers (partial) + oppo.com + Oppo.com (partial) + opscode.com + Opscode.com (partial) + opsmate.com + Opsmate + opsterland.nl + NL Overheid + opticsinfobase.org + Optical Society of America (partial) + optify.net + Optify + optimalpayments.com + Optimal Payments (partial) + optimizely.com + Optimizely + optionbit.com + OptionBit + optionsanimal.com + OptionsAnimal.com + optoutprescreen.com + OptOutPrescreen.com + oracle.com + Oracle (partial) + oracleimg.com + Oracle (partial) + orafarm.com + ORA + oralb.com + Procter & Gamble (partial) + orange.ch + Orange + orange.co.il + Orange + orange.jobs + Orange.Jobs (partial) + orange.sk + Orange.sk + orangeandwhite.com + OrangeandWhite.com + orangegeek.com + Orange Geek + orb-international.com + ORB-International.com + orbit.shazamid.com + Shazam (partial) + orbital.com + Orbital Sciences + orchid.hosts.jhmi.edu + The Johns Hopkins University (partial) + orchiddiva.com + Orchid Diva + ordbogen.com + Ordbogen.com + order.exede.com + Exede (partial) + order.kagi.com + Kagi + ordercourses.com + Cengage (partial) + orderhlp.com + Shopatron (partial) + ordermychecks.com + Harland Clarke + ordnancesurvey.co.uk + Ordnance Survey + oregon.gov + State of Oregon + oregonstate.edu + Oregon State University (partial) + orezpraw.com + Orez Praw.com + orgreenoptics.com + Orgreen Optics.com + origin.com + Electronic Arts (partial) + origin.img.domaintools.com + DomainTools (partial) + origin.varcentral.com.au + VARCentral.com.au (partial) + orionhub.org + Orion + orioninc.com + Orion Systems Integrators + orkut.co.in + Orkut (partial) + orkut.com + Orkut (partial) + orkut.com.br + Orkut (partial) + ornl.gov + Oak Ridge National Laboratory (partial) + oron.com + Oron (partial) + ort.fi + Suomen ortodoksinen kirkko + orwall.org + orWall.org + os3sec.org + os3sec.org + osa.org + Optical Society of America (partial) + osadl.org + OSADL.org + oschina.net + oschina (partial) + oscigen.org + Oscigen (CAcert) + osdir.com + OSDir.com + osdv.org + OSDV.org (partial) + osec.pl + Open Source Education Center + osgeo.org + OSGeo.org (partial) + osha.gov + US OSHA.gov + osicodesinc.com + OSI Codes + osmglobal.com + OSM Group + oss.nl + NL Overheid + ostel.co + Ostel.co + osu.edu + Ohio State University (partial) + osufoundation.org + Oregon State University (partial) + osuosl.org + Oregon State University (partial) + osvdb.org + OSVDB.org (partial) + ot.ca-mpr.jp + CA-mpr.jp + otalliance.org + OTAlliance.org + otavamedia.fi + Otavamedia (partial) + ote.gr + OTE + otpdirekt.sk + Otpdirekt.sk + otr.cypherpunks.ca + Off-the-Record Messaging + otr.im + OTR.im + otsuka-shokai.co.jp + Otsuka-shokai.co.jp + ottospora.nl + Ottospora.nl + otummstore.se + Otumm Store.se + ouifm.fr + Ouï FM (partial) + our-hometown.com + Our Hometown + ourcommonplace.com + OurCommonPlace + out-law.com + Out-Law.com + outbrain.com + Outbrain (partial) + outernet.is + Outernet + outflux.net + outflux.net + outlook.com + Outlook Live + outofcontrol.ca + Out of Control + outspark.com + Outspark (partial) + outwit.com + OutWit.com (partial) + ouya.tv + OUYA (partial) + overcast.fm + Overcast + overclockers.co.uk + OverClockers.co.uk + overheid.nl + NL Overheid + overijssel.nl + NL Overheid + overlakehospital.org + Overlake Hospital Medical Center + oversee.net + Oversee.net (partial) + overstock.com + Overstock.com (partial) + ovh-hosting.fi + OVH + ovh.co.uk + OVH + ovh.com + OVH + ovh.cz + OVH + ovh.de + OVH + ovh.es + OVH + ovh.ie + OVH + ovh.it + OVH + ovh.lt + OVH + ovh.nl + OVH + ovh.pl + OVH + ovh.pt + OVH + ovh.sn + OVH + ovidsp.tx.ovid.com + Ovid (partial) + ovscruise.com + Wyndham (partial) + owa.alfa.de + alfa Media Partner (partial) + owasp.org + OWASP + owenservices.com + Owen Services.com + owkb.ch + Schweizer Kantonalbanken + owl.english.purdue.edu + Purdue OWL + owncloud.com + ownCloud.com + owncloud.kairo.at + KaiRo (partial) + owncloud.org + ownCloud.org (partial) + owncube.com + OwnCube + ox-d.netline.com + netline.com (partial) + ox-d.pubgears.com + PubGears.com (partial) + ox.cx + Hynek.me + ox.digi.hu + Digi.hu + oxfamirelandunwrapped.com + Oxfam Unwrapped + oyoony.at + oyoony + oyoony.de + oyoony + oyoony.net + oyoony + ozb.me + OzBargain + ozbargain.com.au + OzBargain + ozlabs.org + OzLabs (CAcert) + ozon.travel + Ozon.Travel + p-tano.com + P-tano.com + p.acxiom-online.com + Acxiom-online.com + p.iivt.com + partypoker + p.liadm.com + IPONWEB (partial) + p.sfx.ms + Hotmail / Live + p.simg.uol.com.br + UOL (partial) + p3pwiz.com + Net Dynamics (partial) + p6r.com + P6R.com + pabo.nl + Pabo (partial) + pace.com + Pace.com (partial) + pace2race.com + Pace2Race (partial) + pacebus.com + Pace Bus.com (partial) + packagelab.com + Package Lab.com + packagist.org + Packagist.org + packetstatic.com + Packet Storm Security.com (partial) + packetstormsecurity.com + Packet Storm Security.com (partial) + packetwerk.com + Packetwerk.com + packtpub.com + Packt Publishing (partial) + pacsec.jp + PacSec.jp + pacw.org + PACW.org + paddle.com + Paddle.com + paddleapi.com + Paddle.com + padlet.com + Padlet.com (partial) + padlister.com + PadMapper (partial) + padmapper.com + PadMapper (partial) + paetec.com + PAETEC (partial) + page.ly + Pagely (partial) + pagekite.net + PageKite + pages03.net + Silverpop (partial) + paginazero.com.br + Página Zero + pagodabox.com + Pagoda Box + pagpop.com.br + PagPop + pair.com + pair Networks (partial) + pairlite.com + pair Networks (partial) + pairnic.com + pair Networks (partial) + pajustice.org + Pennsylvania Association for Justice + paket.de + Paket.de + pakfire.ipfire.org + IPFire.org (partial) + palaute.olvi.fi + Olvi.fi + palbin.com + Palbin.com + palgrave.com + Palgrave.com + palmetto.com + Palmetto.com + palms.com + Palms Casino Resort (partial) + palmshop.hu + Laptop.hu + paloaltonetworks.com + Palo Alto Networks.com + pamconsult.com + PamConsult + pamela.biz + PamConsult + pamfax.biz + PamConsult + panax.net + Panax + pandawhale.com + PandaWhale + panel.djangoeurope.com + DjangoEurope.com (partial) + panel.kei.pl + Kei.pl (partial) + panel.preyproject.com + PreyProject + panel.research-int.se + TNS Sifo (partial) + panic.com + Panic.com + panopticlick.com + Panopticlick.com + pantarhei.sk + Pantarhei.sk + pantheos.com + Pantheos (partial) + pantherexpress.net + CDNetworks (partial) + pantherpass.fit.edu + Florida Institute of Technology (partial) + pantherportal.cdnetworks.com + CDNetworks (partial) + paodelicia.com + PãoDelícia.com + papermart.com + Paper Mart.com (partial) + parabol.canaldigital.no + CanalDigital + parabola.nu + Parabola.nu + parabolagnulinux.org + Parabola GNULinux.org + paraduxmedia.com + Paradux Media.com + parallax.com + Parallax.com (partial) + parallels.com + Parallels (partial) + parametersecurity.com + Parameter Security.com + paramountmovies.com + ParamountMovies.com + parapoupar.com + ParaPoupar.com + parature.com + Parature.com + parcelforce.com + Parcelforce (partial) + pardot.com + Pardot + parkingcrew.com + ParkingCrew.com + parkingeye.co.uk + ParkingEye.co.uk + parkmodelsdirect.com + Park Models Direct + parse.com + Parse.com (partial) + parsecdn.com + Fastly + parsely.com + Parse.ly (partial) + parti-pirate.ch + PPS + partidopirata.es + Pirate Party + partipirate.ch + PPS + partito-pirata.ch + PPS + partitopirata.ch + PPS + partner.googleadservices.com + Google Services + partner.m3connect.de + m3connect + partner.ncloud.dk + ncloud.dk + partner.vxcp.de + Verivox (partial) + partnernaurovni.sk + Partnernaurovni.sk + partnernet.amazon.de + Amazon Associates + partners.smartname.com + NameMedia (partial) + partypoker.com + partypoker + pas.org.my + Pan-Islamic Malaysian Party + pass-web.ridemetro.org + METRO Transit (Harris County, Houston, Texas) + passagebank.com + PassageBank (partial) + passed.cc + Passed.cc + passion-radio.com + Passion-Radio.com (partial) + passionfruitads.com + Passionfruit Ads.com (partial) + passmark.com + PassMark.com (partial) + passport.gigabyte.com + Gigabyte.com (partial) + passports.gov.au + Australian Passport Office + passsource.com + PassSource + passthepopcorn.me + PassThePopcorn + passwd.io + Passwd.io + password-hashing.net + Password-Hashing.net + password.dmu.ac.uk + DMU + passwordbox.com + PasswordBox.com + passwordcard.org + PasswordCard + passwordscon.org + PasswordsCon (partial) + paste.openttdcoop.org + OpenTTD (partial) + paste.sh + paste.sh + pastee.org + Pastee.org + pastevault.com + PasteVault.com + patchofland.com + Patch of Land.com + patent.resource.org + Public.Resource.Org + patexia.com + Paxetia (partial) + path-follower.com + Lead Forensics (partial) + pathdefender.com + PathDefender.com + pathofexile.com + Path of Exile.com + patrickbateman.biz + patrickbateman.biz + patriotpost.us + The Patriot Post + pauldotcom.com + PaulDotCom.com (partial, false MCB) + paxtonrecord.net + Paxton Record (partial) + pay.gigahost.dk + Gigahost.dk + pay.gov + Pay.gov + pay02.zong.com + Zong (partial) + paycheckrecords.com + Paycheckrecords.com + paydirtgold.com + Pay Dirt Gold.com + payment.empflix.com + EmpFlix (partial) + paymentech.com + Paymentech.com (partial) + payments.amazon.co.uk + Amazon Associates + payments.amazon.com + Amazon Web Services + paymill.com + Paymill.com + paymill.de + Paymill.de + paymo.biz + Paymo + paypal-forward.com + PayPal | Forward + paypal.co.uk + PayPal + paypal.com + PayPal + payperpost.com + PayPerPost.com + payrollapp.com + payrollapp.com + paysafecard.com + paysafecard.com + payson.se + Payson + payza.com + Payza + pazaruvaj.com + Árukereső + pbase.com + PBase (partial) + pbgrd.com + PbGrd.com + pbhs.com + PBHS (partial) + pbsrc.com + Photobucket (partial) + pc2.mypreferences.com + MyPreferences.com (partial) + pcboc.com + California United Bank + pcbooster.com + PC Booster + pccasegear.com + PCCaseGear + pccasegear.com.au + PCCaseGear + pcel.com + PCEL + pcforalla.idg.se + IDG.se (partial) + pcicomplianceguide.org + PCI Compliance Guide.org + pcicomplianthosting.com + PenguinWebHosting (partial) + pcisecuritystandards.org + PCI Security Standards Council + pcmd.ac.uk + Peninsula College of Medicine & Dentistry (partial) + pcmedia.ign.com + IGN (partial) + pcp.ch + Pcp.ch + pcr-online.biz + Intent Media (partial) + pcug.org.au + PC Users Group (ACT) (partial) + pda-bes.amazon.com + Amazon Associates + pde.cc + Personal Data Ecosystem Consortium (partial) + pdf.yt + PDF.yt + pdfcrowd.com + pdfcrowd.com (partial) + pdftoword.com + PDF to Word.com + pdu.edu + Portland State University (partial) + peacecenter.org + Peace Center for the Performing Arts (partial) + peacemakergame.com + peacemakergame.com + pearsonvue.com + Pearson (partial) + peelregion.ca + Regional Municipality of Peel, Canada + peepd.com + Peepd.com (partial) + peercraft.com + Peercraft + peeringdb.com + PeeringDB + peerj.com + PeerJ (partial) + peerlibrary.org + PeerLibrary.org (partial) + pega.com + Pega (partial) + pegelf.de + Pegelf.de + pekwm.org + pekwm.org + peliaika.fi + GTC's Online + pen.org + PEN.org (partial) + penango.com + Penango (partial) + pendle.gov.uk + UK Local Government + penfoldgolf.com + Penfold Golf + pengpod.com + PengPod.com + penguinwebhosting.com + PenguinWebHosting (partial) + pensionsmyndigheten.se + PensionsMyndigheten.se + pentesterlab.com + PentesterLab (partial) + people.csail.mit.edu + Massachusetts Institute of Technology (partial) + peopleclick.com + Peopleclick.com (partial) + peoplefluent.com + PeopleFluent.com (partial) + peopleschoice.com + People's Choice Awards + pepperjamnetwork.com + PepperJam Exchange (partial) + percona.com + Percona (partial) + perel.eu + Velleman Group (partial) + perens.com + Bruce Perens + perfectaudience.com + Perfect Audience + perfectmoney.com + Perfect Money + performancealley.com + Performance Alley Racing (partial) + performancehorizon.com + Performance Horizon Group + performancewheel.com + Performance Wheel & Tire Warehouse + perl.org + Perl.org (partial) + persona.org + Mozilla Persona + personaldataecosystem.org + Personal Data Ecosystem Consortium (partial) + personaldemocracy.com + Personal Democracy Forum + personalitypage.com + Personality Page + personforce.com + Personforce (partial) + pet-nanny.net + Pet Nanny + petekeen.net + Pete Keen.net + peterborough.gov.uk + UK Local Government + peterodding.com + Peter Odding.com + petitions.moveon.org + MoveOn.org (false MCB) + petrogen.com + Petrogen.com + petsathome.com + Pets at Home + petstore.com + Petstore.com + petsymposium.org + PET Symposium.org + petteriraty.eu + Petteri Räty (partial) + pewdiepie.net + PewDiePie.net + pfa.idg.se + IDG.se (partial) + pfizer.com + Pfizer (partial) + pfizerhelpfulanswers.com + Pfizer (partial) + pfizerpro.com + Pfizer (partial) + pflag.org + PFLAG-Parents, Families, & Friends of Lesbians and Gays (partial) + pg.com + Procter & Gamble (partial) + pgbrandsampler.ca + Procter & Gamble (partial) + pgcon.org + PGCon (partial) + pgeveryday.ca + Procter & Gamble (partial) + pgeverydaysolutions.com + Procter & Gamble (partial) + pgi.com + PGi (partial) + pgl.co.uk + Holidaybreak (partial) + pgp.com + PGP + pgp.webtru.st + Webtru.st Keyserver + pgpru.com + openPGP in Russia + phantompeer.com + PhantomPeer.com + phcheats.com + PH Cheats + pheedo.com + Pheedo.com (partial) + philadelphiabar.org + Philadelphia Bar Association + philshobbyshop.com + Phils Hobby Shop.com + phishtank.com + PhishTank + phoenix.com + Phoenix.com + phoenix.edu + Phoenix.edu (partial) + phone-analytics.com + phone-analytics.com + photoblab.com + PhotoBlab + photographer.io + Photographer.io (partial) + photographytalk.com + PhotographyTalk.com + photomath.net + PhotoMath.net + photonconsulting.com + Photonconsulting.com + photopay.net + PhotoPay.net + photos.pcpro.co.uk + PCPro.co.uk (partial) + photos.prnewswire.com + PR Newswire (partial) + photoshelter.com + PhotoShelter (partial) + photosugar.com + PhotoSugar.com + photosynth.net + Photosynth + php-fusion.co.uk + PHP-Fusion.co.uk (partial) + php.net + PHP (partial) + phparch.com + php[architect] (partial) + phpbb.com + phpBB (partial) + phpmagazin.de + PHP magazin (partial) + phusionpassenger.com + Phusion Passenger.com + piatnik.de + Piatnik Deutschland + picasaweb.google.* + Google Services + picasaweb.google.co.* + Google Services + picasaweb.google.com.* + Google Services + pickaweb.co.uk + Pickaweb (partial) + picomoney.com + PicoMoney + picostocks.com + PicoStocks.com + picoville.com + Picoville.com + picplz.com + Picplz + picsity.com + Picsity.com (partial) + pictures.dealer.com + Dealer.com (partial) + pictures.vimention.com + Vimention.com (partial) + pidg.in + Pidgin + pidgin.im + Pidgin + piflc.xboxlive.com + Xbox (partial) + pijnacker-nootdorp.nl + NL Overheid + pikpok.com + PikPok.com + pimienta.org + potager.org + pin.aliyun.com + Aliyun.com (partial) + pin.ed.gov + ED.gov (partial) + pinboard.in + Pinboard.in + pinescharter.net + pinescharter.net (partial) + pingability.com + Pingability.com + pingdom.com + Pingdom (partial) + pingidentity.com + Ping Identity + pingless.co.il + Pingless (partial) + pingone.com + PingOne.com + pinkbike.com + Pinkbike (partial) + pinkpaislee.com + Pink Paislee + pinta-outlet.fi + Pinta-Outlet.fi + pinterest.com + Pinterest (partial) + pipl.com + Pipl (partial) + pirate-party.ch + PPS + pirateirc.net + Pirate Party + pirateleaks.cz + PirateLeaks + piratelinux.org + Pirate Linux.org + piraten-aargau.ch + PPS + piraten-basel.ch + PPS + piraten-partei.ch + PPS + piratenlogin.de + Piratenlogin.de + piratenpartei-bayern.de + Pirate Party + piratenpartei.at + Pirate Party + piratenpartei.ch + PPS + piratenpartei.de + Pirate Party + piratenpartij.nl + Pirate Party + piratepad.ca + Pirate Party + pirateparty.ca + Pirate Party + pirateparty.ch + PPS + pirateparty.gr + Greek-various + pirateparty.org.au + Pirate Party + pirateparty.org.uk + Pirate Party + piratereverse.info + PirateReverse.info (partial) + pirati.cz + Pirate Party + piriform.com + Piriform (partial) + piscatus.se + Piscatus.se + pistoncloud.com + Piston Cloud Computing + pitt.edu + University of Pittsburgh (partial) + pittsburghmassageandwellness.com + Pittsburgh Massage and Wellness.com + pivotallabs.com + Pivotal Labs (partial) + pivotaltracker.com + Pivotal Tracker (partial) + piware.de + Martin Pitt + piwik.avm.de + Avm.de + piwik.derpy.me + derpy.me + piwik.org + piwik.org (partial) + piwik.sysmocom.de + sysmocom.de (CAcert, partial) + pixel.alexametrics.com + Alexa (partial) + pixelexit.com + Pixel Exit.com + pixelh8.co.uk + Pixelh8 + pixi.me + Pixi.me + pixid.ideeinc.com + TinEye (partial) + pixlr.com + Pixlr (partial) + pixoto.com + Pixoto + pizza.de + pizza.de + pizza.fr + Pizza.fr + pizzahut.co.uk + Pizzahut UK + pjm.com + PJM.com (partial) + pjmedia.com + PJ Media + pjrc.com + PJRC.com + pjtv.com + PJTV.com + pki.irisgrid.es + RedIRIS.es + pkimber.net + P Kimber.net + pkware.com + PKWARE.com (partial) + plan.gs + Stelter (partial) + planboardapp.com + Planboard app.com + planet-lab.org + PlanetLab (partial) + planet-source-code.com + Planet-Source-Code.com + planet-work.* + Planet-Work + planetdiscover.com + Planet Discover + planete.inrialpes.fr + Inrialpes.fr (partial) + planetromeo.com + PlanetRomeo + plannedparenthood.org + Planned Parenthood + plant-world-seeds.com + Plant-World-Seeds.com (partial) + plantappstore.com + plantappstore.com (partial) + plantcommunity.de + PlantCommunity.de + plantronics.com + Plantronics + plantsolution.de + PlantSolution.de (partial) + plastc.com + Plastc.com + plastic-bin.com + Plastic-Bin.com + plastidipuruguay.com + Plasti Dip Uruguay.com + platform.communicatorcorp.com + Communicator Corporation (partial) + platform.sh + Platform.sh + platinumperformance.com + Platinum Performance.com + platinumskincare.com + Platinum Skin Care.com (partial) + plausible.coop + Plausible.coop + player.fm + Player.FM (partial) + player.io + PlayerIO.com + playerattack.com + Player Attack (partial) + playerauctions.com + PlayerAuctions.com + playerio.com + PlayerIO.com + playfire.com + Playfire (partial) + playonlinux.com + PlayOnLinux.com + playwarz.com + The War Z + playwire.com + Playwire (partial) + plazakauppa.fi + Otavamedia (partial) + pld-linux.org + PLD-Linux.org (partial) + ple.com.au + PLE.com.au + pleaseignore.com + Please Ignore.com + pledgie.com + Pledgie + plex.tv + Plex.tv + plexapp.com + Plexapp.com + pliktverket.se + Pliktverket.se + plimus.com + Plimus.com + plista.com + plista (partial) + plone.org + Plone.org (partial) + plos.org + Public Library of Science (partial) + ploum.net + ploum.net + plsiii.plsinfo.org + Peninsula Library System (partial) + plssl.com + PressLabs SSL + plug.dj + plug.dj (partial) + plugrush.com + PlugRush.com (partial) + plugunplug.net + Plug Unplug.net + plurk.com + plurk (partial) + plus.net + Plus.net + pluscontrollers.com + Controller Plus + plusgirot.se + Plusgirot.se + plusme.net + plusme.net (partial) + plymouth.ac.uk + Plymouth University + pmetrics.performancing.com + Performancing (partial) + pnasfirstlook.org + PNAS First Look (partial) + pnc.com + PNC + pnp4nagios.org + PNP4Nagios.org + po.st + Po.st (partial) + pobox.com + Pobox + pod.geraspora.de + Geraspora + podbean.com + Podbean.com (partial) + podcast.at + podcast.at (partial) + poddery.com + Poddery + poderpda.com + PoderPDA + poets.org + poets.org + pogo.com + Pogo + pogoda.money.pl + Money.pl (false MCB) + pogoplug.com + Pogoplug.com (partial) + pointroll.com + Pointroll + pointshound.com + PointsHound (partial) + poistenie.financnahitparada.sk + Financnahitparada.sk + poivron.org + potager.org + poivy.com + Poivy.com + pokec.azet.sk + Azet.sk + pokemon-world-online.net + Pokémon World Online + pokylinux.org + Poky + polarnopyret.se + PolarnoPyret.se + polarssl.org + PolarSSL + policemutual.co.uk + Police Mutual (partial) + policy.cookiereports.com + Cookie Reports.com (partial) + policymic.com + PolicyMic + polid.jppol.dk + JP/Politikens Hus (partial) + poliisi.fi + Poliisi.fi + polisforbundet.se + Polisforbundet.se + politie.nl + NL Overheid + politiken.dk + Politiken.dk (partial) + politisktinkorrekt.info + politisktinkorrekt.info + polk.com + Polk + polldaddy.com + Polldaddy + polybrowser.com + PolyBrowser.com + polygon.com + Polygon (false MCB) + polymer-project.org + Polymer-Project.org + pony.fm + Pony.fm + poodle.io + POODLE.io + poodletest.com + POODLE Test.com + pool.telekom.hu + Magyar Telekom (partial) + poolp.org + poopl.org + poormanmotorsports.com + Poor Man Motorsports + pop.claranet.de + Claranet (partial) + pop.com.br + POP (partial) + pop6.com + FriendFinder + popads.net + PopAds + popatomic.org + PopAtomic + popgoestheweek.com + Pop Goes the Week + popphoto.com + Popular Photography + poppysports.com + Poppy Sports + popsci.com + PopSci.com (partial) + popular.com.tw + Popular.com.tw + popularmechanics.com + Popular Mechanics (partial) + popup.questionpro.com + Survey Analytics (partial) + popvote.hk + PopVote.hk + pornel.net + Pornel.net + pornhub.com + PornHub (partial) + portal.5ninesdata.com + 5NINES (partial) + portal.ascio.com + Ascio.com (partial) + portal.bolehvpn.net + BolehVPN.net (partial) + portal.cachefly.com + CacheFly (partial) + portal.cedexis.com + Cedexis (partial) + portal.gigaclear.com + Gigaclear.com (partial) + portal.goldkeys.org + Goldkeys.net (partial) + portal.infinity-tracking.com + Infinity Tracking (partial) + portal.issworld.com + ISS World (partial) + portal.m3-connect.de + m3connect + portal.miun.se + MIUN.se + portal.mytum.de + MyTUM.de + portal.prnewswire.com + PR Newswire (partial) + portal.redpill-linpro.com + Redpill Linpro (partial) + portal.roadworks.org + roadworks.org + portal.servercentral.net + ServerCentral (partial) + portal.settrade.com + Settrade.com + portal.thalysnet.com + Thalys + portal.uk.clara.net + Claranet (partial) + portal.velleman.be + Velleman Group (partial) + portal.velleman.eu + Velleman Group (partial) + portal.vitelity.net + Vitelity + portal.webgility.com + Webgility (partial) + portaldaempresa.pt + Governo Português + portaldocidadao.pt + Governo Português + portalen.dtu.dk + Technical University of Denmark (partial) + portalmasq.com + PORTAL Masq.com + portalsp.acs.ncsu.edu + North Carolina State University (partial) + portforward.com + PortForward.com (partial) + portlandmercury.com + Portland Mercury.com (partial) + portlandonline.com + City of Portland, OR + portmorgan.com + PortMorgan.com + portoncv.gov.cv + Porton CV.gov.cv + portrait.gov.au + National Portrait Gallery + porvoo.fi + porvoo.fi + poshliving.com + PoshLiving + positivessl.com + PositiveSSL + posportal.com + POS Portal.com (partial) + post.ch + Post.ch + post.cz + Seznam.cz + posta.ch + Post.ch + postalheritage.org.uk + Postal Heritage.org.uk (partial) + postalinspectors.uspis.gov + US government (partial) + postauto.ch + Post.ch + postbank.de + Postbank + postbus.ch + Post.ch + postdanmark.dk + Postdanmark.dk + poste.ch + Post.ch + posten.se + Posten.se + posteo.de + Posteo + posterous.com + Posterous + posterstoreuk.com + Poster Store UK + postfinance.ch + Post.ch + postgresql.eu + PostgreSQL + postgresql.org + PostgreSQL + postgresql.us + PostgreSQL + posthaven.com + Posthaven.com (partial) + posti.fi + posti.fi + postini.com + Postini + postlapsaria.com + Postlapsaria (partial) + postoffice.co.uk + Post Office (partial) + postoffice.insure-systems.co.uk + Post Office (partial) + postofficeshop.co.uk + Post Office Shop (partial) + postovabanka.sk + Postovabanka.sk + postscapes.com + Postscapes + postsuisseid.ch + Post.ch + postto.me + Post to.Me + postwire.com + Postwire.com + potager.org + potager.org + powells.com + Powells.com + power.org + Power.org + powerbuy.co.th + Powerbuy.co.th + powerdns.com + PowerDNS.com + poweredbypaquin.com + Powered by Paquin + powerhosting.dk + Powerhosting.dk (partial) + powerhousemuseum.com + Powerhouse Museum.com (partial) + powerlineman.com + Powerlineman.com + powerlinemanmag.com + Powerlineman Magazine + powernotebooks.com + Powernotebooks.com + powerschool.lasallehs.net + lasallehs.net + powerspeaking.com + Power Speaking.com + powertothepooch.com + Power to the Pooch + powweb.com + PowWeb + ppcoin.org + PPCoin (partial) + pq.kagi.com + Kagi + praca.money.pl + Money.pl (false MCB) + praetorian.com + Praetorian.com + pragmaticmarketing.com + Pragmatic Marketing.com (partial) + pragprog.com + PragProg.com (partial) + praktikpladsen.dk + Praktikpladsen + pravydiplom.cz + PravyDiplom.cz + prawo.money.pl + Money.pl (false MCB) + precharge.com + preCharge.com + precisionmarinetools.com + Precision Marine Tools + precisionpros.com + PrecisionPros.com (partial) + premiumize.me + Premiumize.me + prenumeration.idg.se + IDG.se (partial) + prep.rci.com + Wyndham (partial) + pressandpolicy.bl.uk + British Library (partial) + presscoders.com + PressCoders + pressfreedomfoundation.org + Freedom of the Press Foundation + prettylightsmusic.com + Pretty Lights Music + prettylittlething.com + PrettyLittleThing.com + previa.se + Previa.se + preview.npmjs.com + npm js.org (partial) + preview.webplatform.org + WebPlatform + preyproject.com + Prey (partial) + prezi.com + Prezi.com + prezident.sk + SlovakGoverment + prf.hn + Performance Horizon Group + priberam.pt + Priberam.pt + pricegrabber.com + PriceGrabber + priceonomics.com + Priceonomics.com (partial) + pricerunner.co.uk + PriceRunner (partial) + pricerunner.com + PriceRunner (partial) + priceza.com + Priceza.com + prihlasenie.azet.sk + Azet.sk + prima.urospace.net + Urospace (partial) + primabanka.sk + Primabanka.sk + primesecoenergie.com + Primes Eco Energie.com + primus.com + Primus.com + princeton.edu + Princeton.edu (partial) + printchomp.com + Printchomp.com + printfection.com + Printfection.com (partial) + printink.si + printink.si + printmojo.com + PrintMojo + printrbot.com + printrbot (partial) + priorygroup.com + Priory Group.com (partial) + prism-break.org + PRISM Break.org + prisms.deewr.gov.au + DEEWR + prisonlegalnews.org + Prison Legal News.org + prisonphonejustice.org + Prison Phone Justice.org + privacy-cd.org + privacy-cd.org + privacy-handbuch.de + Privacy-Handbuch.de + privacy.io + Privacy IO + privacyassociation.org + International Association of Privacy Professionals + privacybox.de + PrivacyBox + privacychoice.org + PrivacyChoice (partial) + privacyfix.com + Privacyfix + privacyfoundation.de + German Privacy Foundation + privacyinternational.org + Privacy International + privacynotprism.org.uk + Privacy Not Prism.org.uk + privacyrights.org + Privacy Rights Clearinghouse + privacysolutions.no + Privacy Solutions.no + privacysos.org + Privacy SOS + privacytool.org + Privacy Tool.org + privatbanka.sk + Privatbanka.sk + privatecore.com + PrivateCore.com + privateinternetaccess.com + Private Internet Access + privatelee.com + Privatelee.com + privatepaste.com + PrivatePaste + privatetunnel.com + Private Tunnel + privatevpn.com + PrivatVPN + privatewifi.com + PrivateWifi + pro-linux.de + Pro-Linux.de (partial) + pro-managed.com + Pro-Managed + pro.connexity.com + Connexity.com (partial) + probikekit.co.uk + Pro Bike Kit (partial) + probmods.org + Prob Mods.org + proboards.com + ProBoards (partial) + process-one.net + Process-One.net (partial) + processing.org + Processing.org (partial) + processnet.hu + Domaintank + prochoice.org + National Abortion Federation + prod.idrix.fr + IDRIX.fr (partial) + product.adingo.jp.eimg.jp + adingo (partial) + producthunt.com + Product Hunt + products.mercola.com + Mercola + productvisio.com + Productvisio + profesia.sk + profesia.sk + professionalprivacypolicy.com + Global Marketing Strategies (partial) + profil.netzclub.net + netzclub + profiles.engadget.com + Engadget.com (partial) + profiles.joystiq.com + Joystiq.com (partial) + profitbricks.com + ProfitBricks (partial) + profitunion.org + ProfitUnion.org + progllc.com + Prometheus Global (partial) + programmableweb.com + ProgrammableWeb + programming.wolframcloud.com + Wolframcloud.com + progreso.pl + Progreso Webhosting (partial) + project.webplatform.org + WebPlatform + projecteuler.net + Project Euler + projecthoneypot.org + ProjectHoneypot + projectmeshnet.org + Project Meshnet (partial) + projectplace.*.dimelo.com + Projectplace.com (partial) + projectplace.com + Projectplace.com (partial) + projects.coin-or.org + Computational Infrastructure for Operations Research (partial) + projects.tigase.org + Tigase.org (partial) + projectsecretidentity.org + Project Secret Identity.org + projectslice.com + Slice + projectwonderful.com + Project Wonderful + projet-plume.org + Projet-PLUME.org + projetos.ossystems.com.br + O.S. Systems (partial) + prolexic.com + Prolexic + prometric.com + Prometric + promote.ie + Digiweb (partial) + proofpoint.com + Proofpoint (partial) + propellerpops.com + Propellerpops.com + properpet.com + ProperPet.com + propertydeals.com.pk + PropertyDeals.com.pk + propertyinvesting.com + PropertyInvesting.com (partial) + propublica.net + ProPublica.org + propublica.org + ProPublica.org + prosody.im + Prosidy.im + prospect.org + The American Prospect + prospect.prospectpublishi.netdna-cdn.com + Prospect Magazine (partial) + prospectmagazine.co.uk + Prospect Magazine (partial) + prosystemfx.com + prosystemfx.com + protecciondelconsumidor.gov + National Consumer Protection Week + protectedtext.com + ProtectedText.com + protectnetwork.org + Protect Network + protonmail.ch + ProtonMail.ch + protu.fi + Prometheus-leirin tuki ry + proultratrim.com + Pro Ultra Trim + provantage.com + Provantage + providesupport.com + Provide Support (partial) + provsmakning.synovate.se + Ipsos (partial) + proxify.com + Proxify + proxmox.com + Proxmox.com + proxy.org + Proxy.org + proxy.sh + Proxy.sh + proxysolutions.net + Proxy Solutions (partial) + prv.se + PRV.se + prx.org + PRX (partial) + ps.otenet.gr + OTE + ps3media.ign.com + IGN (partial) + psc.edu + PSC.edu + psmprogram.gov.au + Public Sector Management Program + psoft.net + Parallels (partial) + pspmedia.ign.com + IGN (partial) + pss.gov.au + Public Sector Superannuation Scheme + pss.sk + Pss.sk + pss.united.com + United Airlines + pssap.gov.au + Public Sector Superannuation Accumulation Plan + pssl.com + PSSL.com + psswrdbx.com + PasswordBox.com + psychologicalscience.org + Association for Psychological Science + psychologytoday.com + Psychology Today (partial) + pthree.org + pthree.org + ptpimg.me + Ptpimg.me + ptt.br + PTT.br + pubdirecte.com + Pubdirecte.com + pubkey.is + Pubkey.is + public.resource.org + Public.Resource.Org + publicidees.com + Public-Idées (partial) + publicinsightnetwork.org + PublicInsightNetwork.org + publicintelligence.net + Publicintelligence + publicknowledge.org + Public Knowledge + publicsuffix.org + Public Suffix.org + publicwhip.org.uk + The Public Whip + publikdemand.com + PublicDemand + publisher.tinypass.com + Tinypass.com (partial) + publishing.kalooga.com + Kalooga.com (partial) + pubmed.gov + National Institutes of Health (partial) + pubs.aaas.org + AAAS.org (partial) + pubservice.com + pubservice.com + pubsoft.org + PubSoft.org + puck.nether.net + Nether + pull.imgfave.netdna-cdn.com + imgfav (partial) + pulpcentral.com + PULP + pulse.me + Pulse.me + puma.com + Puma.com + puoti.olvi.fi + Olvi.fi + puppetlabs.com + Puppet Labs + purdue.edu + Purdue University (partial) + purduealum.org + Purdue University Association + purduealumni.org + Purdue University Association + purdueplantdoctor.com + Purdue Plant Doctor + pure-privacy.org + pure-privacy.org + purecambogia.com + Pure Cambogia.com + purecars.com + Pure Auto (partial) + purechat.com + Pure Chat.com (partial) + purecine.fr + CineMovies + purehacking.com + PureHacking + pureinfo.com + PureInfo + pureloto.com + Pureloto.com + pureultracleanse.com + Pure Ultra Cleanse + purevpn.com + PureVPN (partial) + puritan.com + Puritan.com + push.scrippsing.com + scrippsing.com (partial) + pusher.com + Pusher.com (partial) + pusherapp.com + Pusher (partial) + pushplay.com + PushPlay (partial) + pushpopcorn.com + Push Popcorn + put.io + put.io + putlocker.com + PutLocker (partial) + puu.sh + puu.sh + puush.me + puush.me + pv.gov.sa + Saudi Government + pwdhash.com + PwdHash.com + pwmt.org + pwmt.org + pxlssl.ibpxl.com + Internet Brands + pyneo.org + pyneo.org + pypi.python.org + Pypi + python.org + Python.org (partial) + pythonhosted.org + pythonhosted.org + q3k.org + q3k.org + q7.com + Q7 Enterprises + q8car.com + Q8Car (partial) + qabel.de + Qabel + qb50.eu + QB50 + qca.qualcomm.com + Qualcomm (partial) + qfxsoftware.com + QFX Software.com + qip.ru + QIP + qisserver.htwg-konstanz.de + HTWG Konstanz + qnetp.net + qnetp.net (partial) + qontext.com + Qontext + qrcode.kaywa.com + Kaywa (partial) + qrobe.it + Qrobe.it + qrsolutions.com + QR Solutions + qsli.com + QS LI.com + qsstats.com + QSstats.com + qt-apps.org + openDesktop.org + qt-project.org + Qt + qt.io + Qt.io + qtcloudservices.com + Qt Cloud Services.com + qtdeveloperdays.com + Qt Developer Days.com + quackquackgo.nl + quackquackgo.nl + quadpoint.org + QuadPoint.org + quakenet.org + QuakeNet.org + qualaris.com + Qualaris.com (partial) + qualityagent.com + QualityAgent (partial) + qualityunit.com + QualityUnit + qualys.com + Qualys + quantcast.com + Quantcast + quantserve.com + Quantserve.com + quantummansite.com + QuantumMAN + quattroplay.com + quattroplay.com + qub.ac.uk + Queen's University Belfast (partial) + qubes-os.org + Qubes-OS.org (partial) + qubitproducts.com + Qubit products.com + quch.io + Quch.io + queervids.com + QueerVids + quest.com + Quest.com (partial) + questacon.edu.au + Questacon + questadmin.net + FutureQuest (partial) + quickbase.com + Intuit (partial) + quicktranslate.com + quicktranslate.com + quidco.com + Quidco.com (partial) + quikcallus.com + Quik Callus.com + quikpayasp.com + QuikPAY asp.com + quirks.com + Quirks.com + quiterss.org + QuiteRSS.org + quiz-uscc.cyberquests.org + Cyberquests (Partial) + quizaction.de + QuizAction.de (partial) + qune.kuluttajavirasto.fi + Qune.kuluttajavirasto.fi + qunitjs.com + QUnit JS.com + quora.com + Quora + quotemedia.com + QuoteMedia + quotes.beaglestreet.com + Beagle Street (partial) + quotesnsayings.com + Quotes and Sayings.com (false MCB) + quup.com + quup.com + qwknetllc.com + QWKnet LLC.com (partial) + qxl.dk + Qxl + qxl.no + Qxl + r-hpc.com + R-HPC + r.ad6media.fr + ad6media (partial) + r.advg.jp + advg.jp (partial) + r.mradx.net + mradx.net + r00tz-org.theidentityproject.com + r00tz.org (partial) + r00tz.org + r00tz.org (partial) + r66t.com + R66T + rabbitmq.com + RabbitMQ + rabobank.nl + Rabobank + rac.co.uk + RAC + raceforward.org + Race Forward.org (partial) + rachelbythebay.com + Rachelbythebay.com + rack911.com + Rack911 + rackerhacker.com + Rackerhacker + rackspace.* + Rackspace (partial) + rackspace.co.* + Rackspace (partial) + rackspace.com.hk + Rackspace (partial) + rackspacecloud.com + Rackspace Cloud.com + radian.org + radian.org + radioeins.de + RBB + radioleaks.se + Radioleaks + radioplayer.co.uk + Radioplayer.co.uk + radioshack.com + RadioShack (partial) + radioshackwireless.com + RadioShack (partial) + radsec.org + RadSec.org + raeng.org.uk + Royal Academy of Engineering + rafflecopter.com + Rafflecopter.com + raiffeisen.ch + Raiffeisen.ch + railsschool.org + Railsschool.org + rainforestqa.com + Rainforest QA.com + rainn.org + RAINN.org (partial) + rally.org + Rally.org + ramnode.com + RamNode.com (partial) + ranallolawoffice.com + Nicholas Ranallo (partial) + rand.org + RAND (partial) + random.org + Random.org + randomhouse.com + Random House (partial) + randomintervals.com + Random Intervals (partial) + rangenetworks.com + Range Networks.com + rantoulpress.com + Rantoul Press (partial) + rapid7.com + Rapid7 (partial) + rapidbuyr.cachefly.net + RapidBuyr (partial) + rapidbuyr.com + RapidBuyr (partial) + rapidgator.net + Rapidgator.net (partial) + rapidleaf.com + RapidLeaf + rapidresearch.me + Rapidresearch.me + rapidshare.com + RapidShare (partial) + rapidsite.jp + RapidSite.jp + rapidssl.com + RapidSSL + rapleaf.com + Rapleaf + raptureready.com + Rapture Ready + rarbg.com + Rarbg + rare.us + Rare.us + rareaviation.com + RareAviation.com + ras.org.uk + Royal Astronomical Society + ratepoint.com + RatePoint (partial) + ratfishoil.com + RatfishOil.com (partial) + ratgeber-verbraucherzentrale.de + Verbraucherzentrale Nordrhein-Westfalen + rating-widget.com + Rating-Widget.com + raumzeitlabor.de + RaumZeitLabor.de (partial) + ravendb.net + RavenDB.net + rawgithub.com + rawgithub.com + rawstudio.org + Rawstudio.org (partial) + raymii.org + Raymii.org + raynersoftware.com + Rayner Software + raynersw.com + Rayner Software + razerzone.com + Razer + razoo.com + Razoo (partial) + rbb-online.de + RBB + rbcommons.com + RBCommons.com (partial) + rbinvestwdc.eu + RB Invest WDC.eu (partial) + rbl.ms + bit.ly vanity domains + rbt.asia + rbt.asia + rbu.sh + rbu.sh + rca.org + Reformed Church + rcfp.org + RCFP.org + rcitravelstore.co.uk + Wyndham (partial) + rcking.eu + RCKing + rcm-ca.amazon.ca + Amazon Associates + rcm-images.amazon.com + Amazon Associates + rcm-uk.amazon.co.uk + Amazon Associates + rcm.amazon.com + Amazon Associates + rd.io + Rdio (partial) + rdc.bremer.com + Bremer Bank + rdns.im + rdns.im + rdpass.bremer.com + Bremer Bank + rdsecure.org + Radical Designs + re-pear.com + Apple Parts Store (partial) + re.is + RE.is (partial) + reachandrich.antevenio.com + Antevenio (partial) + reachmode.com + Adblade (partial) + reactos.org + ReactOS.org (partial) + readability.com + Readability.com (partial) + reading.ac.uk + University of Reading + readitlaterlist.com + ReadItLaterList.com + readme.io + ReadMe.io + readrboard.com + ReadrBoard.com + readrobreid.com + ReadRobReid.com (partial) + readspeaker.com + ReadSpeaker + readthedocs.org + Read the Docs.org + readwrite.com + ReadWrite + readwriteweb.com + ReadWriteWeb + readyflowers.com + Ready Flowers + readyhosting.com + ReadyHosting.com + readynas.com + ReadyNAS + real-debrid.com + Real-Debrid.com + realmatch.com + RealMatch.com (partial) + realperson300.net + optimize-it (partial) + realrobothigh.com + Real Robot High + realtidbits.com + Realtidbits (partial) + realtime.co + Realtime.co + realtimestats.com + HitsLink + realvnc.com + RealVNC.com + reason.com + Reason.com + rebelmouse.com + RebelMouse.com + rec-log.jp + rec-log (partial) + rec-registry.gov.au + REC Registry + recalls.gov.au + Product Safety Recalls Australia + recapthelaw.org + Recap the Law + reclaim-your-privacy.com + Reclaim-Your-Privacy.com + reclog.jp + rec-log (partial) + reco.se + Reco.se + recode.net + Recode.net + reconingspeakers.com + Speaker Exchange + recordstoreday.com + Record Store Day + recordstoreday.tuneportals.com + Record Store Day + red-gate.com + Red-Gate.com (partial) + red-pill.eu + Red-Pill.eu (partial) + redbox.com + Redbox.com + redbridge.gov.uk + UK Local Government + redbubble.com + RedBubble (partial) + redbull.* + Red Bull (partial) + redbull.co.uk + Red Bull (partial) + redbullcontentpool.com + Red Bull Content Pool + redbullmobile.at + Red Bull Mobile (partial) + redbullmobile.com.au + Red Bull Mobile (partial) + redbullusa.com + Red Bull (partial) + redcoon.pt + Redcoon.pt + redcross.org + Red Cross.org (partial) + redcross.org.uk + British Red Cross (partial) + redding.com + E. W. Scripps Company (partial) + reddit.com + Reddit + redditmade.com + redditmade.com + reddpics.com + Redd Pics.com (partial) + redferret.net + The Red Ferret + redhat.com + Red Hat + rediris.es + RedIRIS.es + redmine.digitaria.com + Digitaria (partial) + rednerd.com + rednerd.com + redplum.com + RedPlum.com + redports.org + redports.org + redstate.com + RedState (partial) + redvase.bravenet.com + Bravenet Media (partial) + redweb.com + Redweb + reefbuilders.com + Reef Builders + reelhd.com + ReelHD.com + reelseo.com + ReelSEO.com + reelvidz.com + ReelVidz.com (partial) + reethibeach.com + Reethi Beach.com + reevoo.com + Reevoo (partial) + refog.com + Refrog + reformal.ru + Reformal (partial) + reg.cologne-cfd.de + CologneFurdance + reg.confuzzled.org.uk + Confuzzled + reg.ru + Reg.ru + rega.ch + Rega + regi.laptop.hu + Laptop.hu + regiobank.nl + RegioBank.nl + register.com + Register.com + register.ie + Digiweb (partial) + register.pearsoncmg.com + Pearson (partial) + register4less.com + Register4Less.com + registrace.seznam.cz + Seznam.cz + registracia.azet.sk + Azet.sk + registratie.powned.tv + PowNed (partial) + registration.xenegrade.com + Xengrade (partial) + registration123.com + Registration123.com + registro.br + Registro.br (partial) + registryrocket.com + registryrocket.com + regonline.com + Active.com (partial) + regularish.com + Regularish.com + reichelt.de + Reichelt.de + reimanpub.com + reimanpub.com + reiner-sct.com + Reiner-SCT.com + reinvigorate.net + Webtrends (partial) + reklamport.com + Reklamport.com + relate.org.uk + Relate.org.uk + relayrides.com + RelayRides.com + releases.flowplayer.org + Flowplayer.org (partial) + reliableisp.net + Reliable ISP.net + religionnews.com + Religion News.com (partial) + rememberthemilk.com + Remember the Milk + rememberthemilk.jp + Remember the Milk + remixdepolitiek.nl + Pirate Party + remote.jpress.co.uk + Johnson Press (partial) + remotecoder.io + RemoteCoder.io + remotelyanywhere.com + LogMeIn.com (partial) + remusexhauststore.com + Remue Exhaust Store.com + render.groupon-content.net + Sehirfirsati + renkum.nl + NL Overheid + renovationexperts.com + Renovation Experts (partial) + rentanode.nl + RentaNode.nl + rentex.com + Rentex + rentler.com + Rentler.com + renttherunway.com + Rent the Runway (partial) + replicant.us + Replicant.us + replicaperfection.com + Replica Perfection + reporo.com + Reporo (partial) + reporter-ohne-grenzen.de + Reporters Without Borders + reports.eyereturn.com + eyeReturn.com (partial) + repost.us + Repost.Us + repozitar.cz + Repozitar.cz + represent.us + Represent.Us + reputation.com + Reputation.com (partial) + req.connect.wunderloop.net + AudienceScience + requestpolicy.com + RequestPolicy + res-x.com + Certona (partial) + res.heraldm.com + Herald Media (partial) + research.de.com + Meetrics + researchgate.net + ResearchGate.net (partial) + researchmatch.org + ResearchMatch.org + researchstore.com + Datamonitor (partial) + resellerratings.com + ResellerRatings (partial) + reservation-desk.com + Reservation-Desk.com (partial) + reservationcounter.com + Reservation Counter (partial) + reservoir.marketstudio.net + Digital River (partial) + resetthenet.org + Reset the Net.org + resistsurveillance.org + Resist Surveillance.org + resnet.ucsd.edu + UCSD + resortquestsecure.com + Wyndham (partial) + resource.org + Public.Resource.Org + resources.guild-hosting.net + Enjin + responsive.io + responsive.io (partial) + restorethefourth.net + Restore the Fourth + result.webplatform.org + WebPlatform + resurs.se + Resurs.se + retailhosting.fi + Retailhosting.fi + retailmenot.com + RetailMeNot.com (partial) + retailsails.com + Retail Sails (partial) + retrofestive.ca + RetroFestive.ca + retronaut.com + Retronaut.com + retrousb.com + RetroUSB.com + reut.rs + bit.ly vanity domains + reverseheartbleed.com + reverseheartbleed.com + reviewingcomics.com + Reviewing Comics + reviewjournal.com + Las Vegas Review-Journal (partial) + reviews.ratepoint.com + RatePoint (partial) + reviews.reviewboard.org + Review Board.org (partial) + revision3.com + Revision3 (partial) + revolet.com + Revolet + revoltgames.com + Revolt Games (partial) + revosec.ch + revosec + revresponse.com + RevResponse.com + reztrip.com + RezTrip + rfc-editor.org + RFC-Editor + rfcexpress.com + RFC Express + rfparts.com + RF Parts.com + rgj.com + Reno Gazette-Journal (partial) + rhcloud.com + RH Cloud.com + rheden.nl + NL Overheid + rhinosoft.com + Rhino Software (partial) + rhinosupport.com + Global Marketing Strategies (partial) + rhizome.org + Rhizome (partial) + rhul.ac.uk + RHUL.ac.uk (partial) + riaa.com + RIAA + ribblevalley.gov.uk + UK Local Government + ric.org + RIC.org + ricardo.ch + Ricardo.ch + richarddawkins.net + Richard Dawkins Foundation (partial) + richmondshire.gov.uk + UK Local Government + richmondteaparty.com + Richmond Tea Party + richrelevance.com + RichRelevance (partial) + ricoh.co.in + Ricoh (partial) + ricoh.com + Ricoh (partial) + ricoh.com.hk + Ricoh (partial) + ricoh.sg + Ricoh (partial) + ridemetro.org + METRO Transit (Harris County, Houston, Texas) + riga.lv + Riga + righthaven.com + Righthaven + rightnow.com + RightNow Technologies (partial) + rightscon.org + RightsCon + rigzone.com + Rigzone (partial) + rijswijk.nl + NL Overheid + riksgalden.se + Riksgalden.se + rim.ponemon.org + Ponemon (partial) + ringcentral.com + RingCentral + ringrevenue.com + RingRevenue.com + ripe.net + ripe.net + ripmixmake.org + EFF + ripoffreport.com + Ripoff Report + ris.bka.gv.at + RIS + riscosopen.org + Risc OS Open + riseup.net + Riseup + risi.com + RISI + risiinfo.com + RISI + risk.io + Risk.io (partial) + ritter.vg + ritter.vg + riverbed.com + Riverbed (partial) + riverisland.com + River Island (partial) + riverisland.fr + River Island (partial) + rivieratours.com + Riviera Tours + rizon.net + Rizon.net + rlrose.co.uk + RL Rose + rmcybernetics.com + Research Media & Cybernetics + rnl.ist.utl.pt + Technical University of Lisbon + rnrwheels.com + RNR Wheels & Tires (partial) + roadtrippers.com + Roadtrippers + roadworks.org + roadworks.org + roammobility.com + Roam Mobility + robeco.nl + Robeco + robert.sesek.com + Sesek.com + robertsspaceindustries.com + Roberts Space Industries.com + robinbarnard.com + Robin Rabard (partial) + robohash.org + RoboHash + robotshop.com + RobotShop (partial) + roboxchange.com + ROBOXchange + robtex.com + RobTex + roccat.org + Roccat.org (false MCB) + rochester.edu + University of Rochester + rochesterhomepage.* + rochesterhomepage.net (partial) + rochford.gov.uk + UK Local Government + rockcreek.com + Rock Creek Outfitters (partial) + rocketmail.com + Yahoo! (partial) + rocketnet.jp + Rocketnet.jp + rockhursthawks.com + Rockhurst Hawks.com + rockpaperphoto.com + Rock Paper Photo.com + rockstargames.com + Rockstar Games (partial) + rockzi.com + ROCKZi.com + roddis.net + Roddis + roe.ch + roe.ch + roger.ucsd.edu + UCSD + rohieb.name + rohieb.name + roi.ru + ROI.ru + roia.biz + roia.biz + roketfiyat.com + RoketFiyat.com + roku.com + Roku.com (partial) + roleplaychat.org + RolePlayChat.org + rollapp.com + Rollapp.com + rollbar.com + Rollbar + rollcall.com + Roll Call.com (partial) + rollingstone.com + Rolling Stone.com (partial) + rollingstonesubscriptions.com + Rolling Stone Subscriptions.com + romab.com + romab.com + romab.se + romab.com + romdashboard.com + ROMDashboard + rooof.com + Rooof + rootbsd.net + RootBSD.net + rosehosting.com + RoseHosting.com + rosettacode.org + Rosetta Code.org (partial) + rossendale.gov.uk + UK Local Government + rossulbricht.org + Ross Ulbricht.org + rotaryview.com + RotaryView.com + rotesource.com + Rotesource.com + rother.gov.uk + UK Local Government + rotherham.gov.uk + UK Local Government + rottenecards.com + Rottenecards + rottentomatoes.com + Rottentomatoes + roughtradegear.com + Rough Trade Gear + routingpacketsisnotacrime.uk + Routing Packets Is Not a Crime.uk + rovio.com + Rovio.com + rows.io + rows.io + royal.gov.uk + RoyalGovUK + royalmail.com + Royal Mail (partial) + royalmailgroup.com + Royal Mail Group (partial) + royalnavy.mod.uk + Royal Navy (partial) + rpggamegeek.com + BoardGameGeek + rpgmakerweb.com + Rpgmakerweb.com + rpi.edu + Rensselaer Polytechnic Institute + rpt.anchorfree.net + AnchorFree (partial) + rpxnow.com + RPXNow.com (partial) + rr.com + RoadRunner + rredc.nrel.gov + National Renewable Energy Laboratory (partial) + rrts.com + RRTS.com + rs.broadcastjobs.co.uk + BroadcastJobs.co.uk (partial) + rsa.com + RSA + rsa.edgeboss.net + RSA Conference (partial) + rsaconference.com + RSA Conference (partial) + rsbac.org + RSBAC (partial) + rsc.org + Royal Society of Chemistry (partial) + rscweb.org + Royal Society of Chemistry (partial) + rsf.org + Reporters Without Borders + rsna.org + Radiological Society of North America (partial) + rspb.org.uk + RSPB + rspca.org.uk + RSPCA (partial) + rspcashop.co.uk + RSPCA shop.co.uk + rsshog.com + rsshog + rssinclude.com + RSSinclude + rstudio.com + RStudio.com (partial) + rsvp.com.au + RSVP + rsync.net + rsync.net (partial) + rt.com + RT.com (partial) + rt.gpl-violations.org + gpl-violations.org (partial) + rt.ru + RT.ru + rt.trafficfacts.com + Trafficfacts.com + rtbf.be + Rtbf.be Belgian Television + rte.ie + RTÉ + rtenl.ie + RTÉ + rtp.vc + RTP.vc + rttire.com + RT Tire + ru.content.eventim.com + Eventim (partial) + ru.nl + Radboud University Nijmegen + ruag.com + RUAG + rubicondev.com + Rubicon Development + rubiconproject.com + Rubicon Project + ruby-forum.com + Ruby-Forum.com + ruby-lang.org + ruby-lang.org (partial) + rubyforge.org + RubyForge (partial) + rubygems.org + RubyGems.org (partial) + ruc.dk + Roskilde University (partial) + rudi.net + RUDI.net + rudloff.pro + Rudloff.pro + ruelala.com + Rue La La.com + rug.nl + University of Groningen (partial) + rugby.gov.uk + UK Local Government + ruggedsoftware.org + Rugged Software + rugshd.com + RugsHD.com + rugstudio.com + RugStudio (partial) + ruhr-uni-bochum.de + Ruhr-Uni-Bochum.de (partial) + runabove.com + RunAbove + runforyourlives.com + Run for Your Lives + rushbucks.com + RushBucks.com + rushmypassport.com + RushMyPassport.com + ruskeybiz.ru + Ruskey Biz (partial) + russia2all.com + Russia2all.com + russianamericancompany.com + Russian American Company + rutgers.edu + Rutgers University (partial) + ruxconbreakpoint.com + Ruxcon Breakpoint.com + rxpharmacyusa.com + rxpharmacyusa.com + ryanair.com + Ryanair.com + ryedale.gov.uk + UK Local Government + rylwarfare.net + RYL Warfare + ryot.org + RYOT (partial) + s-3.com + S-3.com + s-ff0102-4f9172bc8a1062097406d809-0.yottaa.net + Cabinet Office + s-hertogenbosch.nl + NL Overheid + s-js.cogmatch.net + CogMatch.net + s-pankki.fi + S-pankki + s.bsd.net + BSD.net (partial) + s.cdon.com + CDON.COM + s.cstrlr.com + CastRoller (partial) + s.dsimg.com + Discogs (partial) + s.glbimg.com + Glb img.com (partial) + s.ign.com + IGN (partial) + s.ixiaa.com + IXI (partial) + s.ophan.co.uk + ophan.co.uk (partial) + s.pamfax.biz + PamConsult + s.pixogs.com + Discogs (partial) + s.ppjol.net + Press+ (partial) + s.ststat.com + See Group (partial) + s.svtrd.com + svtrd.com + s.swiftypecdn.com + Swiftype (partial) + s.tfcdn.com + TheFind + s.troveread.com + troveread.com + s.yeoldreader.com + The Old Reader + s.yjtag.jp + Yahoo! Japan (partial) + s0.2mdn.net + 2mdn.net + s0.c4tw.net + c4tw.net (partial) + s0.cyberciti.org + cyberciti.org + s01.esupport.sony.com + Sony (partial) + s1.ckeditor.com + CKEditor.com (partial) + s1.hughesnet.com + HughesNet (partial) + s1.linkvp.com + Visual Paradigm + s1.pir.fm + Piriform (partial) + s25.cnzz.com + cnzz.com + s2member.com + s2Member.com (partial) + s3.antimac.org + camelcamelcamel (partial) + s3.camelcamelcamel.com + camelcamelcamel (partial) + s3.carltonbale.com + CarltonBale.com (partial) + s3.lbrcdn.net + Law Business Research CDN (partial) + s3.lbrcdn.net.s3-external-3.amazonaws.com + Law Business Research CDN (partial) + s3.mediamatters.org + MediaMatters.org (partial) + s3.netdialog.se + Netdialog.se (partial) + s3.parature.com + Parature.com + s3.roosterteeth.com + Roster Teeth (partial) + s3.sandbaguk.com.s3.amazonaws.com + Sandbag (partial) + s3.www.universalsubtitles.org + Universal Subtitles + s3static.stelladotcdn.com + Stella & Dot + sa-as.com + VisiStat.com (partial) + sa.ed.gov + ED.gov (partial) + sabayon.org + Sabayon.org (partial) + sabb.com + HSBC + sac.se + Sac.se + sacnas.org + SACNAS (partial) + sacredcrystalsingingbowls.com + Crystal Singing Bowls + sacredcrystalsingingbowls.net + Sacred Crystal Singing Bowls.net + sade.com + Sade.com + saechsdsb.de + Der Sächsische Datenschutzbeauftragte + safariflow.com + Safari Flow.com (partial) + safe-in-cloud.com + Safe-In-Cloud.com + safe-mail.net + Safe-mail.net + safe.txmblr.com + Tumblr (partial) + safeassign.com + SafeAssign + safecharge247.com + safecharge247.com + safelinking.net + Safelinking + safello.com + Safello.com + safenet-inc.com + SafeNet (partial) + safeshepherd.com + Safeshepherd.com + saga.co.uk + Saga Group + sagecell.sagemath.org + Sagemath.org + sagepay.com + Sage (partial) + sagernotebook.com + Sagernotebook.com + sah3.net + Sah3.net + saic.com + SAIC.com (partial) + sailfishos.org + SailfishOS.org + sailthru.com + Sailthru + saimd.com + Corporate Color + sakerhet.idg.se + IDG.se (partial) + salattu.huuto.net + huuto.net + salesforce.com + Salesforce.com (partial) + salesmanago.pl + SALESmango.pl + salk.edu + Salk Institute + salsacommons.org + Salsa Labs + salsalabs.com + Salsa Labs + samba.com + SAMBA + samba.org + Samba.org + samknows.* + SamKnows (partial) + saml.socialtext.net + Socialtext.net (partial) + samssoftware.com.au + Sam's Software & Consulting (partial) + samsung.cn + Samsung (partial) + samsung.com + Samsung (partial) + samsung.com.cn + Samsung (partial) + samsung.net + Samsung mySingle + samsungapps.com + Samsung Apps (partial) + samsungapps.sina.cn + Sina (partial) + samsungknox.com + Samsung Knox.com (partial) + samsunglfd.com + Samsung LFD + samsungtechwin.co.kr + Samsung Techwin + samwhited.com + Sam Whited.com + sanalmarket.com.tr + Sanalmarket + sandbox.mydigipass.com + Mydigipass.com + sandeen.net + Sandeen.net + sandsmedia.com + S and S Media.com (partial) + sandstorm.io + Sandstorm.io + sanger.ac.uk + Wellcome Trust Sanger Institute (partial) + sanitarium.se + Sanitarium.se + sankaty.com + Sankaty Advisors + sankatyadvisors.com + Sankaty Advisors + sanoma.com + Sanoma.com + sanoma.fi + Sanoma.fi + sans.edu + SANS.edu + sans.org + SANS.org (partial) + santander.co.uk + Santander.co.uk (partial) + santanderbillpayment.co.uk + Santander BillPayment.co.uk + santuario.apache.org + Apache.org (false MCB) + sanwork.com + Sanworks + sap.com + SAP (partial) + sapato.ru + Sapato (partial) + sape.ru + Sape (partial) + sapo.pt + Sapo.pt + sapphireforum.com + Sapphire Forum.com + sarava.org + Sarava.org (partial) + sas.com + SAS Institute + sas.fazekas.hu + Fazekas + sassets.j2global.com + j2global.com + sata-io.org + SATA-IO.org + satoshidice.com + SatoshiDice + saturngames.co.uk + Co.uk + saucelabs.com + Sauce Labs + saucenao.com + SauceNAO.com + saudi.gov.sa + Saudi Government + sav.sk + SlovakGoverment + savage2.com + S2 Games (partial) + savethechildren.org.uk + Save the Children.org.uk (partial) + savethekoala.com + Australian Koala Foundation + savvyhawk.com + SavvyHawk.com + saymedia.com + Say Media + sbaglobal.com + Service by Air + sbarmen.no + sbarmen.no (partial) + sbb.ch + Swiss Federal Railways (SBB/CFF/FFS) + sbi.co.in + StateBankOfIndia + sbrf.ru + Sberbank of Russia + sbucciami.com + Sbucciami + sbvimprover.com + SBV Improver.com + sc.cdnma.com + Net-Results (partial) + sc.dealtime.com + DealTime (partial) + sc.edu + SC.edu (partial) + sc.videoemail.com + Videoemail.com + scaleengine.com + Scale Engine (partial) + scandinavianphoto.fi + Scandinavian Photo + scandinavianphoto.se + Scandinavian Photo + scanmarker.com + Scanmarker + scanningpens.co.uk + Scanning Pens.co.uk + scans.io + Scans.io + scbackstage.wpengine.netdna-cdn.com + Soundcloud (partial) + scene7.com + Scene7 + scenemusic.net + Nectarine Demoscene Music + scenetap.com + SceneTap + scepsis.ru + Scepsis + schaffner.org + Schaffner.org + schd.ws + Sched.org (partial) + sched.co + bit.ly vanity domains + sched.org + Sched.org (partial) + scheduleonce.com + ScheduleOnce.com (partial) + schetu.net + schetu.net + schiedam.nl + NL Overheid + schijndel.nl + NL Overheid + schiphol.nl + Schiphol + schlossbergstore.com + Schlossberg Store (partial) + schneider-electric.com + Schneider-Electric.com (partial) + schneideroptics.com + Schneider Kreuznach (partial) + schneier.com + Schneier on Security + schnellno.de + SchnellNo.de (partial) + schoeller.de + Nestlé Schöller (partial) + schokokeks.org + schokokeks.org (CAcert) + scholar.google.* + Google Services + scholar.google.co.* + Google Services + scholar.google.com.* + Google Services + schoolpress.cdn.whipplehill.net + WilliamHill (partial) + schools.dl.ed.gov + ED.gov (partial) + schooltoprison.org + SchooltoPrison.org + schrodinger.com + Schrödinger + schuilenburg.org + Schuilenburg.org (partial) + schulte.org + Schulte.org + schwab.com + Schwab.com + schweissgut.net + os-cillation (partial) + sciamdigital.com + Scientific American (partial) + sciencedirect.com + SciVerse (partial) + sciencemag.org + Sciencemag.org (partial) + scientificamerican.com + Scientific American (partial) + scientificlinux.org + Scientificlinux.org + scintilla.utwente.nl + Scintilla.utwente.nl + scmagazineus.com + ScMagazineUS.com + scmp.com + South China Morning Post (partial) + scoop.it + Scoop.it (partial) + scooter-attack.com + Scooter-Attack (partial) + scopus.com + Scopus + scorecardresearch.com + ScorecardResearch.com + scorerestore.com + Score Restore.com + scotborders.gov.uk + UK Local Government + scottbrand.com + Scottbrand.com + scottevest.com + Scottevest + scotthelme.co.uk + Scott Helme.co.uk + scottish-country-cottages.co.uk + Wyndham (partial) + scottishpower.co.uk + Scottish Power (partial) + scottishwindfest.com + Scottish Windfest + scottlinux.com + scottlinux.com + scrambl.is + Scrambl.is + scrapbookroyalty.org + Charity Wings + scraporchard.com + Scrap Orchard + screenshotmachine.com + Screenshot machine (partial) + scribd.com + Scribd.com (partial) + scribit.com + Scribit (partial) + scribusstuff.org + openDesktop.org + scripps.edu + Scripps Research Institute + scriptfodder.net + ScriptFodder + scriptjunkie.us + scriptjunkie.us (partial) + scriptlogic.com + Scriptlogic + scripts.liftshare.com + LiftShare + scripts.sil.org + SIL International (partial) + scripts.verticalacuity.com + Vertical Acuity (partial) + scriptsource.org + ScriptSource (partial) + scrs.gc.ca + Canadian Security Intelligence Service + scsk.jp + SCSK.jp + scss.net + Samsung mySingle + sct.gov.au + Superannuation Complaints Tribunal + scu.edu + Santa Clara University (partial) + scubbly.com + Scubbly (partial) + sculpteo.com + Sculpteo.com (partial) + sdacs.ucsd.edu + UCSD + sdc.countquest.se + Countquest.se + sdss3.org + Sloan Digital Sky Survey (partial) + sdsu-dspace.calstate.edu + Cal State.edu (partial) + sdsurf.workforcehosting.com + Workforce Hosting.com (partial) + se.ucsd.edu + UCSD + se.wwte9.com + WWTE (partial) + seacloud.cc + Seacloud + seafile-server.de + Seafile-Server.de + seafileserver.de + Seafile-Server.de + seagate.com + Seagate.com (partial) + seagm.com + SEAGM.com (false MCB) + seal.stellaservice.com + STELLAService (partial) + sealswithclubs.eu + Seals with Clubs + seanmckaybeck.com + Seanmckaybeck.com + search.etargetnet.com + Etarget (partial) + searchcode.com + searchcode.com + searchcommander.com + Search Commander + searchengineland.com + Third Door Media (partial) + searchmarketingexpo.com + Third Door Media (partial) + searchmarketingnow.com + Third Door Media (partial) + searchmobius.org + MOBIUS Catalog + searchterms.com + Net Applications + searscommerceservices.com + Sears Commerce Services.com + searsecommercejobs.com + Sears Ecommerce Jobs.com + seasonal.ly + Seasonal.ly + seatgeek.com + SeatGeek.com + seati.ms + bit.ly vanity domains + seattle.gov + City of Seattle (partial) + seattleix.net + SeattleIX.net + seattleprivacy.org + Seattle Privacy.org + seattletechnicalbooks.com + Seattle Technical Books.com (partial) + seba-geek.de + Someserver (partial) + seblod.com + SEBLOD.com + sec.crain.com + Crain Communications (partial) + sec.gov + U.S. Securities and Exchange Commission (partial) + secdev.com + SecDev.com + secondlife.com + Second Life.com (partial) + secondlookforensics.com + Second Look Forensics.com + secondmarket.com + SecondMarket.com + seconfig.sytes.net + Seconfig.sytes.net + secretsha.re + Secretshare + secular.org + Secular Coalition for America + secularhumanism.org + Secular Humanism.org + secularstudents.org + Secular Student Alliance + secunet.com + secunet (partial) + secunia.com + Secunia + secure-donor.com + secure-donor.com + secure-endpoints.com + Secure-Endpoints.com (partial) + secure-resumption.com + secure-resumption.com + secure-u.de + secure-u e.V. + secure.*.onsugar.com + OnSugar + secure.aadcdn.microsoftonline-p.com + Microsoft Online Services (partial) + secure.aadcdn.microsoftonline-p.net + Microsoft Online Services (partial) + secure.acceptiva.com + Acceptiva.com (partial) + secure.acpa.ca + Air Canada Pilot's Association (partial) + secure.admin.myvirtualpaper.com + My Virtual Paper (partial) + secure.adviva.net + Myspace (mixed content) + secure.ancestry.co.uk + Ancestry.com (partial) + secure.arb-forum.com + National Arbitration Forum (partial) + secure.asufoundation.org + Arizona State University (partial) + secure.avahost.net + AvaHost (partial) + secure.bookhostels.com + Web Reservations International (partial) + secure.brandify.com.au + Brandify (partial) + secure.buypremiumtech.net + Buy Premium Tech (partial) + secure.cato.org + Cato Institute (partial) + secure.cica.ca + Canadian Institute of Chartered Accountants (partial) + secure.claranetsoho.co.uk + Claranet (partial) + secure.classmates.com + Classmates + secure.clearcenter.com + ClearCenter.com (partial) + secure.comic-con.org + Comic-Con International + secure.commonground.convio.com + Convio + secure.comodo.net + Comodo + secure.cqrollcall.com + CQ Roll Call (partial) + secure.creocommunico.com + Host Creo + secure.critpath.org + Critical Path Internet Services + secure.csob.sk + Csob.sk + secure.currys.co.uk + Currys.co.uk (partial) + secure.datapipe.com + Datapipe.com (partial) + secure.dilbertfiles.com + DilbertFiles.org (partial) + secure.directorsdesk.com + NASDAQ (partial) + secure.disc-soft.com + disc-soft.com (partial) + secure.disney.co.jp + Disney.co.jp (partial) + secure.dormproject.ch + dormproject.ch + secure.elcomsoft.com + Elcomsoft (partial) + secure.esupport.com + eSupport.com (partial) + secure.eventim.* + Eventim (partial) + secure.fangamer.com + Fangamer (partial) + secure.filmlinc.com + Film Linc.com (partial) + secure.footprint.net + footprint.net (partial) + secure.gamblingcommission.gov.uk + Gambling Commission (partial) + secure.game.se + GAME.se (partial) + secure.getprice.com.au + Getprice (partial) + secure.gettyimages.* + Getty Images (partial) + secure.gettyimages.co.* + Getty Images (partial) + secure.gktw.org + Give Kids the World + secure.goabroad.com + GoAbroad.com (partial) + secure.healthcheckusa.com + HealthCheckUSA + secure.hostsearch.com + HostSearch (partial) + secure.hslda.org + Home School Legal Defense Association + secure.indeed.com + Indeed (partial) + secure.innocenceproject.org + Innocence Project (partial) + secure.interq.or.jp + InterQ.or.jp (partial) + secure.iphone.mtvn.com + Viacom + secure.itweb.co.za + ITWeb.co.za (partial) + secure.johnstonpress.co.uk + Johnson Press (partial) + secure.junodownload.com + JunoDownload + secure.kagi.com + Kagi + secure.keyghost.com + KeyGhost.com (partial) + secure.kreativmedia.ch + Kreativ Media (partial) + secure.landal.com + Wyndham (partial) + secure.lenos.com + Lenos Softwarse (partial) + secure.manga.com + Manga (partial) + secure.me + secure.me + secure.metoffice.gov.uk + Secure.metoffice.gov.uk (partial) + secure.metrix.net + Metrix + secure.mypass.de + myPass.de (partial) + secure.myrtlebeachshows.com + MyrtleBeachShows.com (partial) + secure.n-able.com + N-able.com (partial) + secure.nationaljournal.com + Atlantic Media (partial) + secure.netflix.com + Netflix (partial) + secure.netpr.pl + netPR (partial) + secure.newrepublic.com + New Repubic (partial) + secure.ngagelive.com + Ngage ICS (partial) + secure.nildram.net + TalkTalk (partial) + secure.nypost.com + News Corporation (partial) + secure.ogone.com + Ogone + secure.omg.org + Object Management Group (partial) + secure.oron.com + Oron (partial) + secure.palmcoastd.com + Palm Coast Data + secure.pangaea.de + PANGAEA (partial) + secure.payconnect.net + EDI Health Group + secure.paysol.se + Paysol.se + secure.paytoll.eu + Paytoll + secure.pegazhosting.com + Pegaz Hosting.com (partial) + secure.pepperfish.net + Pepperfish (partial) + secure.prleap.com + Condesa (partial) + secure.quotestream.com + Quotestream (partial) + secure.rallycongress.com + Rally Congress (partial) + secure.raynersw.com + Rayner Software + secure.redflush.com + Red Flush Casino (partial) + secure.reichelt.de + Reichelt.de + secure.roboform.com + RoboForm.com (partial) + secure.sakura.ad.jp + SAKURA Internet (partial) + secure.sendyourfiles.com + SendYourFiles.org (partial) + secure.skandiabanken.no + Skandiabanken + secure.smallbits.com + Smallbits.com (partial) + secure.smartplanet.com + SmartPlanet.com (partial) + secure.somethingawful.com + Something Awful (partial) + secure.stage-gettyimages.* + Getty Images (partial) + secure.stage-gettyimages.co.* + Getty Images (partial) + secure.stage-gettyimages.com.au + Getty Images (partial) + secure.studiesabroad.com + StudiesAbroad.com (partial) + secure.swisspostbox.com + Post.ch + secure.syllabushare.com + Syllabusshare (partial) + secure.syndetics.com + Library Anywhere + secure.teljari.is + Modernus + secure.touchnet.com + TouchNet Information Systems (partial) + secure.utopia-web.com + Utopia-Web (partial) + secure.vcab.com + VCAB.com (partial) + secure.vexxhost.com + vexxhost.com (partial) + secure.vispa.net.uk + Vispa (partial) + secure.webmercs.com + Data Design (partial) + secure.www.cfr.org + Council on Foreign Relations (partial) + secure.xaraonline.com + MAGIX (partial) + secure.xperiencedays.com + Xperience Days + secure.yellowpages.ca + YellowPages.ca (partial) + secure.zehosting.com + ZeHosting (partial) + secure.zt03.net + zt03.net (partial) + secure02.kidshealth.org + KidsHealth/TeensHealth + secure2.comic-con.org + Comic-Con International + secure2.insideknc.com + Kable Media Services (partial) + secure2.roisolutions.net + ROI Solutions (partial) + securecode.com + MasterCard + secureconnect.com + SecureConnect + secured.greenpeace.org + greenpeace.org (very partial) + secured.sandbag.uk.com + Sandbag (partial) + securedcontent.net + securedcontent.net + secureholidays.com + Wyndham (partial) + secureimage.securedataimages.com + FriendFinder + secureimages.teach12.com + The Teaching Company (partial) + securelime.com + Securelime + securelist.com + SecureList + securelogin.org + securelogin.org + securenet.com + SecureNet.com + secureorders.digiweb.ie + Digiweb (partial) + securepaths.com + securepaths.com + securepaynet.net + Securepaynet.net + securepcissl.com + securepicssl.com + secureprosoftware.com + SecurePro Software + securepurchaseserver.com + securepurchaseserver.com + securepurchaseserver2.com + securepurchaseserver.com + securestudies.com + SecureStudies.com (partial) + securetrust.com + Trustwave (partial) + secureuk.net + secureuk.net + secureusa.greenpeace.org + greenpeace.org (very partial) + securi.net + Securi (partial) + securingthehuman.org + Securing the Human.org + security-database.com + Security-Database.com + security.ngoinabox.org + Security In A Box + security.nl + Security.NL + securityconference.de + Munich Security Conference + securityevaluators.com + Security Evaluators.com + securityexperten.com + Security Experten.com (false MCB) + securityheaders.com + Securityheaders.com + securityinabox.org + Security in a Box.org + securitykiss.com + SecurityKISS.com (partial) + securityledger.com + The Security Ledger + securitymetrics.com + SecurityMetrics + securityweek.com + SecurityWeek.com + securosis.com + Securosis + securycast.com + SecuryCast Oy + secusmart.com + Secusmart + secwiki.org + SecWiki + sedo.co.uk + Sedo.com + sedo.com + Sedo.com + sedo.de + Sedo.com + sedo.fr + Sedo.com + sedonaaz.gov + City of Sedona (partial) + seecrypt.com + Seecrypt + seedboxes.cc + Seedboxes.cc + seeedstudio.com + Seeed Studio.com + seekingarrangement.com + SeekingArrangement.com + seetickets.com + See Group (partial) + segger.com + Segger.com + segment.io + Segment.io + segpaychat.com + SegPay (partial) + segpaycs.com + SegPay (partial) + segurosuniversales.net + Seguros Universales + sehirfirsati.com + Sehirfirsati + sektioneins.de + SektionEins.de + sel4.systems + seL4.systems + selangorku.com + Selangorku + selfhost.de + selfhost.de + selfridges.com + Selfridges.com (partial) + selger.canaldigital.no + CanalDigital + sellaband.com + Sellaband.com (partial) + sellercentral.amazon.co.uk + Amazon Associates + sellercentral.amazon.com + Amazon Associates + semabuzz.com + SEMABUZZ.COM + semantic-mediawiki.org + semantic-mediawiki.org + semiaccurate.com + SemiAccurate + seminary.lds.org + The Church of Jesus Christ of Latter-day Saints + senate.gov + Senate.gov + sencha.com + Sencha (partial) + sendgrid.com + SendGrid.com (partial) + sendmail.com + Sendmail + sensor2.suitesmart.com + suitesmart.com + seo.com + SEO.com + seotrainingtoronto.com + SEO Training Toronto + seower.com + seower.com + serato.com + Serato.com (partial) + serialist.net + Serialist + sertifikatai.lt + Sertifikatai.lt + servage.* + Servage.net + servedbyadbutler.com + AdBulter + servedbyopenx.com + OpenX (partial) + server.iad.liveperson.net + CafePress (partial) + server314.com + server314.com + serverapi.arcgisonline.com + ArcGIS (partial) + servercraft.co + Servercraft + servercrate.com + ServerCrate.com (partial) + serverdensity.io + Serverdensity.io + serverfault.com + Server Fault.com + serverfruit.com + Serverfruit.com + serveriai.lt + serveriai.lt + serverpilot.io + ServerPilot.io + serversaurus.com.au + Serversaurus.com.au (partial) + servertastic.com + ServerTastic + service.eudoxus.gr + Greek-gov + service.maxymiser.net + Maxymiser (partial) + service.projectplacedocs.com + Projectplace.com (partial) + service.snafu.de + snafu (partial) + service.velaro.com + Velaro (partial) + service.xara.com + MAGIX (partial) + serviceplus.cengage.com + Cengage (partial) + services-prefecture.com + Services-prefecture.com + services-sj.mediuscorp.com + Medius Corp.com (partial) + services-sj.mediusviewer.com + Medius Viewer.com + services.*.lego.com + LEGO (partial) + services.fit.edu + Florida Institute of Technology (partial) + services.forthnet.gr + Forthnet + services.wsje.com + News Corporation (partial) + servicetick.com + ServiceTick.com + serviceuptime.com + Service Uptime.com + serving.portal.dmflex.com + DMflex (partial) + sescoops.com + SEScoops + sessioncam.com + SessionCam.com + set.io + Set.io + settrade.com + Settrade.com + setup.tenderapp.com + ENTP (partial) + seulonta.fi + Syöpäjärjestöt + seurinternacional.com + Seurinternacional.com + sevenoaks.gov.uk + UK Local Government + sexslurp.com + SexSlurp + sexysitehosting.com + Sexy Site Hosting.com + seznam.cz + Seznam.cz + sf.net + SourceForge (partial) + sf0.iavs.net + Avast (partial) + sfconservancy.org + Software Freedom Conservancy + sferra.com + Sferra (partial) + sfm-offshore.com + SFM Group (partial) + sfsecuremail.statefarm.com + StateFarm + sfxhosted.exlibrisgroup.com + Ex Libris + sgi.com + SGI.com + sgkb.ch + Schweizer Kantonalbanken + sgno.org + SGNO.org (partial) + sgsstudentbostader.se + SGSStudentbostader.se + sh.ch + Schweizer Regierung + shaaaaaaaaaaaaa.com + shaaaaaaaaaaaaa.com + shacknews.com + Shacknews + shagaholic.com + Alcuda (partial) + shaklee.com + Shaklee (partial) + shamansgarden.com + Shaman's Garden + shambhalamountain.org + Shambhala Mountain Center + shannonhealth.com + Shannon Health + share.sbndev.net + SB Nation (partial) + shareasale.com + ShareASale.com (partial) + shared.od.org + OD.org + shared.sub.infousa.com + Infogroup (partial) + sharedvalue.org + SharedValue.org + sharedvue.net + sharedvue.net + sharefest.me + Sharefest.me + shareholder.com + Shareholder.com (partial) + shareit.com + MyCommerce + sharenice.org + shareNice + sharethenetwork.com + Share the Network + sharethis.com + ShareThis + sharethrough.com + Sharethrough (partial) + sharetobuy.com + sharetobuy.com + sharideangelo.com + Shari DeAngel.com (partial) + sharpfile.com + SharpFile.com (partial) + sharpmen.com + Sharpmen + shaunlorrain.com.au + Shaun Lorrain.com.au + shazam.com + Shazam (partial) + sheetmusicplus.com + Sheet Music Plus (partial) + shef.ac.uk + University of Sheffield (partial) + sheffield.ac.uk + University of Sheffield (partial) + sheffield.gov.uk + UK Local Government + shellfish.io + shellfish.io + shellterproject.com + Shellter Project.com + shepherdsfriendly.co.uk + Sheperds Friendly Society + shevibe.com + SheVibe.com (partial) + shibboleth.highwire.org + HighWire (partial) + shiftboard.com + Shiftboard.com (partial) + ship-ment.com + Shipment + shipto.com + Shipto.com (partial) + shkb.ch + Schweizer Kantonalbanken + shmoocon.org + ShmooCon + shmoop.com + Shmoop.com (partial) + shockmedia.nl + Shock Media.nl + shodan.io + Shodan.io + shoebuy.com + Shoebuy.com (partial) + shop.abc.net.au + ABC Online (partial) + shop.adapteva.com + Adapteva.com (partial) + shop.cei.org + Competitive Enterprise Institute (partial) + shop.cryptalloy.de + Cryptalloy.de (partial) + shop.entheogene.de + EntheoShop + shop.eset.co.uk + ESET (partial) + shop.harman.com + Harman International Industries (partial) + shop.haymarket.com + Haymarket (partial) + shop.idg.se + IDG.se (partial) + shop.infinet.com.au + Infinet.com.au (partial) + shop.kagi.com + Kagi + shop.look.co.uk + Look.co.uk (mixed content) + shop.m-budget.migros.ch + Migros + shop.medikamente-per-klick.de + Medikamente-Per-Klick + shop.niksoftware.com + Nik Software (partial) + shop.openbsdeurope.com + OpenBSD Europe + shop.sandsmedia.com + S and S Media.com (partial) + shop.serverbeach.com + ServerBeach.com (partial) + shop.skanetrafiken.se + Skanetrafiken.se + shop.skeptic.com + Skeptic shop + shop.sysmocom.de + sysmocom.de (CAcert, partial) + shop.teac.com + TEAC (partial) + shop.ticketpro.hu + Ticketpro (partial) + shop.toonpool.com + toonpool.com (partial) + shop.vhf.de + vhf (partial) + shop.vodafone.co.uk + Vodafone + shop.vodafone.de + Vodafone + shopatron.com + Shopatron (partial) + shopbootsusa.com + Boots.com (partial) + shopify.com + Shopify (partial) + shopinfo.net + shopinfo.net (partial) + shopkeeper.kagi.com + Kagi + shoplocal.com + ShopLocal + shopmanhattanite.com + Manhattanite + shopmania.com + ShopMania (partial) + shopmania.es + ShopMania (partial) + shopmimigreen.com + Shop Mimi Green.com + shoppbs.org + Public Broadcasting Service (partial) + shopperapproved.com + Shopper Approved.com + shopping.ba.com + BritishAirways + shopping.e2enetworks.com + E2E Networks (partial) + shoppingcartelite.com + Shopping Cart Elite + shops.neonisi.com + Neonisi.com + shopstyle.* + ShopStyle (partial) + shopstyle.co.* + ShopStyle (partial) + shopstyle.com.au + ShopStyle (partial) + shoptiques.com + Shoptiques.com (partial) + shopware.de + Shopware.de (partial) + shopwiki.com + ShopWiki (partial) + shopyourway.com + Shop Your Way.com (partial) + shopzilla.com + Shopzilla (partial) + shortlist.com + ShortList + shotgunclub.com + Shotgun Club + shovehost.com + ShoveHost.com + showcase-tv.com + Showcase-TV + showcase.ca + Showcase.ca (partial) + showingcloud.com + Showing Cloud.com + showmecon.com + ShowMeCon.com (partial) + shpock.com + Shpock + shrinktheweb.com + ShrinkTheWeb + shs.ucsd.edu + UCSD + shuddle.us + Shuddle.us + shurgardpayment.eu + Shurgard + shutterfly.com + Shutterfly (partial) + shutterstock.com + Shutterstock (partial) + shutthebackdoor.net + Shut the Backdoor.net + shwyz.ca + shwyz.ca + si.se + SI.se + sickdaysurfshop.com + SickDay surf shop.com + sicontact.at + ESET (partial) + sics.se + SICS.se + side.cr + SideCar + sidereel.com + SideReel (partial) + sideshowtoy.com + Sideshowtoy.com + sidibouras.com + SidiЪouras + sidn.nl + SIDN + sidux-ev.org + sidux e.V. + siemens.* + Siemens.com (partial) + sierraclubgreenhome.com + Sierra Club Green Home (partial) + siff.net + SIFF + sifomedia.citypaketet.se + Citypaketet (partial) + sifomedia.idg.se + IDG.se (partial) + sifomedia.thelocal.se + The Local (partial) + sifomedia.tidningsnatet.se + Tidningsnatet.se (partial) + sifterapp.com + Next Update (partial) + sigfig.com + SigFig + sigmabeauty.com + SigmaBeauty + sigmaxi.org + Sigma Xi.org + signal-spam.fr + Signal Spam + signals.com + Signals + signin.aws.amazon.com + Amazon Web Services + signon.org + MoveOn.org (false MCB) + signup.hasoffers.com + HasOffers (partial) + signup.netflix.com + Netflix (partial) + signup.network-maker.com + Network Maker (partial) + sigterm.no + Sigterm.no + sigxcpu.org + sigxcpu.org + siia.net + Software & Information Industry Association + silabs.com + Silicon Labs + silentcircle.com + Silent Circle + silentcircle.org + Silentcircle.org + silentsender.com + Silent Sender.com + silicon.com + Silicon.com + silkn.com + Silkn.com + silkroad.ws + Silkroad WS (partial) + silkspan.com + Silkspan.com + silvawoodflooring.co.uk + Silva Wood Flooring + silverrushstyle.com + SilverRush Style (partial) + silvertunnel.org + silvertunnel.org + simcity.com + Sim City.com (partial) + simmarket.com + simFlight (partial) + simon.butcher.name + Simon Butcher + simple-talk.com + Simple Talk (partial) + simplebooklet.com + simplebooklet.com (partial) + simplegiver.com + Modern Giver + simplekb.com + simplekb.com + simplepickup.com + Simple Pickup (partial) + simplereach.com + SimpleReach.com + simplybusiness.co.uk + Simply Business + simplyhired.com + Simply Hired + simplysecure.org + Simply Secure.org + simplystamps.com + Simply Stamps (partial) + simquadrat.de + Sipgate + simyo.de + Simyo (partial) + sinaapp.com + Sina App (partial) + singlefeed.com + Singlefeed + singlehop.com + SingleHop (partial) + singularityhub.com + Singularity Hub (partial) + sinnfein.ie + Sinn Fein + sinsofasolarempire.com + Sins of a Solar Empire.com (partial) + siosm.fr + Siosm.fr + sipgate.at + Sipgate + sipgate.co.uk + Sipgate + sipgate.de + Sipgate + sipsolutions.net + SIP Solutions + sirportly.com + Sirportly (partial) + sirrix.* + Sirrix (partial) + sis.amazon.com + Amazon Web Services + sis.gov.uk + Secret Intelligence Service + site.biz.id + Host.co.id + site24x7.com + Site24x7 + site5.com + Site5 (partial) + siteadvisor.com + SiteAdvisor.com + siteblindado.com + Site Blindado + sitefinity.com + Sitefinity.com (partial) + siteground.com + SiteGround (partial) + siteheart.com + SiteHeart + sitelock.com + SiteLock (partial) + sitemanager2.adicio.com + Adicio.com (partial) + sitemason.com + Sitemason (partial) + sitemason.vanderbilt.edu + Vanderbilt University (partial) + sitemasonmail.com + Sitemason (partial) + siteor.pl + Siteor (partial) + sitepen.com + SitePen.com + sitepoint.com + SitePoint (partial) + sitepointmarket.com + SitePoint (partial) + sitetagger.co.uk + SiteTagger.co.uk (partial) + sitetools.ratepoint.com + RatePoint (partial) + sitetrustnetwork.com + SiteTrust Network + siteuptime.com + SiteUptime.com + sitizens.com + Sitizens + sitola.cz + Sitola + sittard-geleen.nl + NL Overheid + sivers.org + Sivers + sixapart.com + SixApart + sixapart.jp + SixApart + sixxs.net + Sixxs.net + sizzlesitesinc.com + Sizzle Sites + sj.se + SJ.se (partial) + sjd.net + Josefsson.org + sk-nic.sk + Sk-nic.sk + sk.mbank.eu + mBank (partial) + skandia.se + Skandia + skandiabanken.no + Skandiabanken + skanetrafiken.se + Skanetrafiken.se + skat.dk + Skat.dk + skatemall.com + SkateMall (partial) + skeptic.org.uk + Skeptic.org.uk + skepticalscience.com + Skeptical Science + skepticink.com + Skeptic Ink.com + skhynix.com + SK hynix.com + skilldrum.com + AppVault (partial) + skillsmatter.com + Skills Matter.com + skimlinks.com + SkimLinks (partial) + skinflint.co.uk + Skinflint + skipscreen.com + Space Inch (partial) + skitch.com + Skitch + sknvibes.com + SKNVibes (partial) + skreened.com + Skreened.com (partial) + skrill.com + Skrill.com + skroutz.gr + Skroutz.gr + sks-keyservers.net + SKS Keyservers (partial) + skydsl.eu + Skydsl.eu + skynet.ie + The Skynet Project + skype.com + Skype (partial) + skyriderplay.com + Skyrider GraalOnline + skytal.es + Greek-various + skyviewinghelp.com + SkyViewingHelp.com + slashbits.com + Slashbits.com + slashdot.org + Slashdot (partial) + slashdotmedia.com + Slashdot Media + slate.com + Slate.com (partial) + slate.me + bit.ly vanity domains + slaveryfootprint.org + Slavery Footprint.org + slax.org + Slax Linux + slb.com + Schlumberger + slenderkitchen.com + The Slender Kitchen + slettmeg.no + Datatilsynet + slf.se + SLF.se + slhost.com + SoftCom (partial) + slice.com + Slice + slickdeals.net + Slickdeals + slickedit.com + SlickEdit.com + slickproductsusa.com + Slick Products + slidedeck.com + SlideDeck (partial) + slideshare.net + SlideShare.net (partial) + slo-tech.com + Slo-Tech + sloanconsortium.org + The Sloan Consortium (partial) + slooh.com + SLOOH (partial) + slotsgaminator.com + Gaminator + slough.gov.uk + UK Local Government + slovensko.sk + SlovakGoverment + slsp.sk + Slovenska_Sporitelna + slu.se + SLU.se + smail.websupport.sk + Websupport_sk_cz_at_hu + small.linncdn.com + Linn Records.com (partial) + smallingerland.nl + NL Overheid + smart-invests.biz + Smart-Invests.biz + smart-mail.de + Smart-Mail + smart.ly + Smart.ly + smartadserver.com + Smart AdServer (partial) + smartaremobil.idg.se + IDG.se (partial) + smartbrief.com + SmartBrief + smartertools.com + SmarterTools (partial) + smartertrack.com + SmarterTrack.com (partial) + smartftp.com + SmartFTP + smarthide.com + SmartHide (partial) + smartlessons.ifc.org + International Finance Corporation (partial) + smartling.com + Smartling (partial) + smartmoney.com + News Corporation (partial) + smartplanet.com + SmartPlanet.com (partial) + smartrecruiters.com + SmartRecruiters + smartronix.com + Smartronix + smetrics.mastercardintl.com + MasterCard + smfta.com + SMFTA.com (partial) + smiley.37signals.com + 37Signals + smjg.org + SMJG + smoothieblend.com + SmoothieBlend.com + smp.specificmedia.net + Specific Media (partial) + smtp.usainteanne.ca + usainteanne + smugmug.com + SmugMug.com (partial) + smutty.com + smutty + smuxi.com + Smuxi.im (partial) + smuxi.de + Smuxi.im (partial) + smuxi.im + Smuxi.im (partial) + smuxi.net + Smuxi.im (partial) + smuxi.org + Smuxi.im (partial) + smyl.es + sMyl.es + snabb.co + Snabb.co + snacktools.com + SnackTools.com (partial) + snagajob.com + snagajob + snakehosting.dk + Snakehosting.dk + snap.vidiemi.com + Vidi Emi (partial) + snapdeal.com + Snapdeal.com (partial) + snapengage-1.wpengine.netdna-cdn.com + SnapEngage (partial) + snapengage-3.wpengine.netdna-cdn.com + SnapEngage (partial) + snapengage-4.wpengine.netdna-cdn.com + SnapEngage (partial) + snapengage-5.wpengine.netdna-cdn.com + SnapEngage (partial) + snapengage-8.wpengine.netdna-cdn.com + SnapEngage (partial) + snapengage.com + SnapEngage (partial) + snapnames.com + KeyDrive (partial) + snapwidget.com + SnapWidget.com (partial) + snelis.com + Snel Internet Services + snelpanel.com + Snel Internet Services + snelserver.com + Snel Internet Services + snl.com + SNL.com (partial) + snort.org + Snort (partial) + snowmagazineonline.com + Snow Magazine + snsbank.nl + SNS Bank + snugnote.com + SnugNote (partial) + so.cl + Hotmail / Live + so36.net + so36.NET + soap.com + Soap.com (partial) + soapboxcms.com + Soapbox CMS + soc.indusguard.com + IndusGuard (partial) + socallinuxexpo.org + SoCal Linux Expo.org + social-engineer.com + Social-Engineer.com + social.bioware.com + BioWare (partial) + social.dw.de + DW.de (partial) + social.technet.microsoft.com + Microsoft (mixed content) + socialbakers.com + socialbakers.com + socialboxusa.com + SocialBox + socialcampaign.com + Crowd Factory + socialcodedev.com + Social Code dev.com + socialreader.com + Social Reader.com (partial) + socialscreamer.com + Social Screamer + socialsecurity.gov + US Social Security Administration + socialshows.com + SocialShows + socialshows.net + SocialShows + socialtheater.com + Social Theater + socialtwist.com + SocialTwist + socialtyzetracking.com + Nanigans (partial) + societyforscience.org + SocietyForScience.org + sociomantic.com + sociomantic labs + sockassist.com.au + Telstra Corporation (partial) + sockshare.com + SockShare (partial) + sodahead.com + SodaHead.com + sodiumshop.com + Sodiumshop.com + soekris.com + Soekris.com + soeren-hentzschel.at + Soeren Hentzschel. + sofawolf.com + Sofawolf + softcreatr.de + SoftCreatR.de + softether.org + SoftEther VPN + softlayer.com + SoftLayer + software.ucsd.edu + UCSD + softwarefreedom.org + Software Freedom Law Center + sofurry.com + SoFurry + sohopelesslybroken.com + SOHOPelessly Broken.com + sohosted.com + SoHosted.com + sol.io + Sol.io + solar1.net + Solar1.net + solarbotics.com + Solarbotics.com + solarcity.com + SolarCity + solarlist.com + SolarList.com + soldierx.com + Soldierx.com + solicitor-concierge.com + Solicitor-Concierge.com + solid-run.com + Solid-Run.com + solidalert.com + SolidAlert.com + solidlogic.com + Solid Logic Technology + solihull.gov.uk + UK Local Government + solmusica.com + Sol Musica + solutionshealthcare.com + Solutions Healthcare Management + somerset.gov.uk + UK Local Government + someserver.de + Someserver (partial) + sommer.migros.ch + Migros + songsterr.com + Songsterr.com (partial) + sonicwall.com + SonicWALL (partial) + sonos.com + Sonos.com (partial) + sony-europe.com + Sony-Europe.com + sony.co.uk + Sony (partial) + sony.com + Sony (partial) + sony.se + Sony.se + sonycsl.co.jp + Sony Computer Science Laboratories + sonyentertainmentnetwork.com + Sony Entertainment Network (partial) + sonypictures.co.uk + Sony Pictures UK + sonystyle.com.mx + Sony Latin America (partial) + soobest.com + SooBEST.com (partial) + soom.cz + Soom + soraiseyourglasses.com + So Raise Your Glasses + sorry.google.com + GoogleSorry + sos.state.co.us + Colorado Secretary of State (partial) + soscisurvey.de + SoSci Survey + soshareit.com + SoShare + soton.ac.uk + University of Southampton (partial) + sott.net + SotT.net (partial) + soundcloud.com + Soundcloud (partial) + soundcloud.wpengine.netdna-cdn.com + Soundcloud (partial) + soundgasm.net + soundgasm.net + soundkit.io + SoundKit.io + soundstrue.com + Sounds True + soundunwound.com + SoundUnwound + soup.io + Soup.io (partial) + source.opennews.org + OpenNews.org (partial) + source.schokokeks.org + schokokeks.org (CAcert) + source.webplatform.org + WebPlatform + sourcecoast.com + SourceCoast (partial) + sourced.fm + sourced.fm + sourcefabric.com + Sourcefabric.com (partial) + sourcefabric.org + Sourcefabric.com (partial) + sourceforge.net + SourceForge (partial) + sourceware.org + sourceware.org (partial) + southampton.gov.uk + UK Local Government + southbankcentre.co.uk + Southbank Centre.co.uk (partial) + southend.gov.uk + UK Local Government + southern-electric.co.uk + SouthernElectric + southglos.gov.uk + UK Local Government + southlanarkshire.gov.uk + UK Local Government + southwark.gov.uk + UK Local Government + sovereignman.com + Sovereign Man.com + soylentnews.org + Soylent News.org (partial) + sp.nl + NL Politiek + sp.onlinelibrary.wiley.com + Wiley (partial) + sp.velaro.com + Velaro (partial) + space.dtu.dk + Technical University of Denmark (partial) + space.hgo.se + HGO.se + space2u.com + Space2u (partial) + spaceindustrynews.com + Space Industry News + spacetelescope.org + Hubble (partial) + spaceweatherphone.com + Spaceweather PHONE + spacex.com + SpaceX + spam.fit.edu + Florida Institute of Technology (partial) + spamgourmet.com + SpamGourmet + spamicity.info + spamicity.info + spanair.com + Spanair + sparkfun.com + Sparkfun + sparklit.com + Sparklit + sparkstudios.com + Sparkstudios.com + spartafx.com + Spartafx.com + sparxtrading.com + Sparx Trading.com (partial) + spatialbuzz.com + SpatialBuzz.com (partial) + spatialpoint.com + SpatialPoint + spbas.com + SPBAS.com (partial) + spcala.com + SPCA Los Angeles + spd.de + Sozialdemokratische Partei Deutschlands + spdx.org + SPDX.org (partial) + speakeasy.net + MegaPath (partial) + speakerdeck.com + Speaker Deck.com + speakychat.com + SpeakyChat.com + speakyoursilence.org + Speak Your Silence + speakyweb.com + SpeakyChat.com + special-trade.de + Special-trade.de + specialforces.com + SpecialForces + specialized.net + Specialized Products Company (partial) + specmod.hjv.dk + Hjv.dk + spectraflow.com + Spectraflow.com + speech.leseweb.dk + speech.leseweb.dk + speedppc.com + SpeedPPC (partial) + speedtest.net + Speedtest.net (partial) + speedtree.com + SpeedTree.com (partial) + spendbitcoins.com + Spendbitcoins + spicebox.co.jp + spicebox + spider.io + Spider.io (partial) + spideroak.com + SpiderOak + spiderwebsoftware.com + Spiderweb Software + spidweb.com + Spiderweb Software + spiegel.de + Spiegel (partial) + spilnu.dk + Splinu.dk + spirit.com + Spirit Airlines + splashdata.com + Splash Data.com (partial) + splendidbacon.com + Splendid Bacon + splitreason.com + Split Reason Clothing + spn.sr + VIRURL + spogo.co.uk + spogo.co.uk + spoki.lv + Spoki + spontex.org + Spontex.org + spoonful.com + Spoonful.com + sportifik.com + Sportifik + sportsauthority.com + Sports Authority (partial) + spot.im + Spot.IM + spotify.com + Spotify (partial) + spotplanet.org + Spotplanet + spotware.com + Spotware.com + spotxchange.com + SpotXchange.com (partial) + spreadshirt.at + Spreadshirt + spreadshirt.be + Spreadshirt + spreadshirt.co.uk + Spreadshirt + spreadshirt.com + Spreadshirt + spreadshirt.de + Spreadshirt + spreadshirt.dk + Spreadshirt + spreadshirt.es + Spreadshirt + spreadshirt.fi + Spreadshirt + spreadshirt.fr + Spreadshirt + spreadshirt.ie + Spreadshirt + spreadshirt.it + Spreadshirt + spreadshirt.net + Spreadshirt + spreadshirt.nl + Spreadshirt + spreadshirt.no + Spreadshirt + spreadshirt.pl + Spreadshirt + spreadshirt.se + Spreadshirt + spring.io + Spring.io (partial) + springer-gabler.de + Springer (partial) + springer.com + Springer (partial) + springerzahnmedizin.de + Springer (partial) + springpadit.com + Springpad + springshare.com + Springshare + sprint.com + Sprint.com (partial) + sprites.pcpro.co.uk + PCPro.co.uk (partial) + spritesmods.com + SpritesMods.com + spriza.com + Spriza.com + sproutinc.com + Sprout (partial) + spsn.net + spsn.net + sptag.com + Sptag.com + sptag1.com + sptag1.com + spyderco.com + Spyderco + sqlconverter.com + SQL Converter + sqlite.org + SQLite + sqsp.com + Squarespace (partial) + square.com + Square.com + squarefree.com + squarefree.com + squarepenguin.co.uk + Square Penguin + squarespace.com + Squarespace (partial) + squareup.com + Square (partial) + squirrel-webmail.surftown.com + Squirrel-webmail.surftown.com + squirrelmail.org + SquirrelMail + sr.se + SverigesRadio + srb2.org + SRB2.org + srds.com + SRDS.com (partial) + srlabs.de + Security Research Labs + srm.de + SRM.de + srv.asknet.com + asknet (partial) + srv.asknet.de + asknet (partial) + srv.cdn-asknet.com + asknet (partial) + srv.cdn-asknet.de + asknet (partial) + srv.clickfuse.com + ClickFuse + srware.net + Srware + ssa.gov + US Social Security Administration + ssafastore.co.uk + SSAFA (partial) + ssb.no + SSB.no + ssdp.org + Students for Sensible Drug Policy + sseeventsgroup.com + SSE Events Group.com + ssl-certificate-center.verisign.ch + VeriSign (partial) + ssl-certificate-center.verisign.co.uk + VeriSign (partial) + ssl-certificate-center.verisign.com.au + VeriSign (partial) + ssl-certificate-center.verisign.com.hk + VeriSign (partial) + ssl-certificate-center.verisign.com.sg + VeriSign (partial) + ssl-certificate-center.verisign.com.tw + VeriSign (partial) + ssl-certificate-center.verisign.de + VeriSign (partial) + ssl-certificate-center.verisign.dk + VeriSign (partial) + ssl-certificate-center.verisign.es + VeriSign (partial) + ssl-certificate-center.verisign.fr + VeriSign (partial) + ssl-certificate-center.verisign.it + VeriSign (partial) + ssl-certificate-center.verisign.se + VeriSign (partial) + ssl.assets.sheetmusicplus.com + Sheet Music Plus (partial) + ssl.atbar.org + ATbar (partial) + ssl.cdngc.net + CDNetworks (partial) + ssl.chroot-me.in + chroot-me.in + ssl.intevation.de + Intevation GmbH (partial) + ssl.intevation.net + Intevation GmbH (partial) + ssl.intevation.org + Intevation GmbH (partial) + ssl.kaptcha.com + Kapt Cha + ssl.net-m.net + Net Mobile + ssl.palmcoastd.com + Palm Coast Data + ssl.panoramio.com + Panoramio (partial) + ssl.post-gazette.com + Pittsburgh Post-Gazette (partial) + ssl.pstatic.net + pstatic.net + ssl.sifomedia.se + TNS Sifo (partial) + ssl.sntech.de + SNtech (partial) + ssl.soufun.com.tw + Soufun.com.tw (partial) + ssl.synovite-scripts.com + synovite-scripts.com + ssl.ticketportal.sk + Ticketportal.sk + ssl.webserviceaward.com + Web Service Award (partial) + ssl.zoho.co.jp + Zoho.jp (partial) + ssl.zoomshare.com + Zoomshare (partial) + ssl1.gmti.com + Gannett Company (partial) + ssl134.penguinhost.net + PenguinWebHosting (partial) + ssl2.cdngc.net + CDNetworks (partial) + ssl7.net + Secure Socket Layer Billing Services + sslcdce.internapcdn.net + Internap Network Services (partial) + sslcert14.com + sslcert14.com + sslcert19.com + sslcert19.com + sslcert35.com + sslcert35.com + ssllabs.com + SSLlabs.com + ssllin1.123-secure.com + 123-reg + sslmate.com + SSLMate.com + ssls.com + SSLs.com + sslshopper.com + SSLshopper + sso.alfa-openmedia.de + alfa Media Partner (partial) + sso.channel5.com + Channel 5 + sso.five.tv + Channel 5 + sso.swiss-va.com + Swiss-VA.com (partial) + ssrn.com + SSRN (partial) + sss.gov + US Selective Service System + sstatic.net + Stack Exchange (partial) + st-andrews.ac.uk + St-Andrews.ac.uk (partial) + st.mycdn.me + mycdn.me + st.org + ST.org + sta.sh + Sta.sh + stablehost.com + Stable Host (partial) + stackapps.com + Stack Exchange (partial) + stackcommerce.com + StackCommerce.com (partial) + stackexchange.com + Stack Exchange (partial) + stacklet.com + Stacklet.com (partial) + stackmonkey.com + StackMonkey.com + stackoverflow.com + Stack Exchange (partial) + stacksocial.com + StackSocial (partial) + stadt-bremerhaven.de + Caschys Blog + stadt-zuerich.ch + Stadt-Zuerich.ch + stadt.zh.piratenpartei.ch + PPS + staff.rice.edu + Rice University (partial) + staffordshire.gov.uk + UK Local Government + staffsmoorlands.gov.uk + UK Local Government + stage-mobioinsider.com + Mobio INsider + staging.eastmon.com.au + Eastmon.com.au (partial) + staging.extranet.nsidc.org + National Snow and Ice Data Center + stagingspeak.com + Tunespeak.com + stallman.org + Stallman.org + stand.org + Stand for Children (partial) + standaard.be + Standaard.be (partial) + standagainstspying.com + Stand Against Spying.org + standagainstspying.net + Stand Against Spying.org + standagainstspying.org + Stand Against Spying.org + standardebooks.com + Standard Ebooks.com + standishmanagement.com + Standish Management + standup2cancer.ca + Stand Up to Cancer (partial) + standup2cancer.org + Stand Up to Cancer (partial) + stanford.edu + Stanford University (partial) + stanford.io + bit.ly vanity domains + stapi.snacktools.net + SnackTools.net + staples.com + Staples.com + star-pool.com + Star-Pool (partial) + star.duodecim.fi + Duodecim.fi + staradvertiser.com + Honolulu Star Advertiser + starbucks.com + Starbucks.com (partial) + stardock.com + Stardock (partial) + stardock.net + Stardock (partial) + starfieldtech.com + Starfield Technologies, Inc. + starkist.com + StarKist + starmoney.de + StarMoney.de + starmotorcycles.com + Star Motorcycles + starnet.com + StarNet.com (partial) + starrez.com + StarRez + starsearchcasting.com + Star Search Casting.com (partial) + start.unblu.com + Unblu.com (partial) + startcom.org + StartCom + startingpage.com + Ixquick + startjesucces.nl + Stichting IAPC + startlogic.com + StartLogic + startmail.com + StartMail + startpage.com + Ixquick + startssl.com + StartCom + startssl.eu + StartCom + startssl.net + StartCom + startssl.org + StartCom + startssl.us + StartCom + starttls.info + STARTTLS.info + starwars.com + StarWars.com (partial) + starwoodhotels.com + Starwood Hotels & Resorts + stash.alonetone.com + alonetone (partial) + stat.onestat.com + OneStat (partial) + stat.webhostingsearch.com + Web Hosting Search (partial) + statcounter.com + Statcounter (partial) + statefarm.com + StateFarm + statesmanjournal.com + Statesman Journal (partial) + statf.com + Fandango (partial) + static-eu1.vimention.com + Vimention.com (partial) + static.aboutus.org + AboutUs (partial) + static.adziff.com + Ziff Davis (partial) + static.arukereso.hu + Árukereső + static.ashleymadison.com + ashleymadison.com (partial) + static.atv.hu + ATV.hu (partial) + static.cineclick.com.br + Cineclick.com.br (partial) + static.compari.ro + Árukereső + static.couponfinder.com + Oversee.net (partial) + static.dealer.com + Dealer.com (partial) + static.dezeen.com + Dezeen.com (partial) + static.domainsigma.com + DomainSigma.com (partial) + static.editor.meetic.com + Meetic (partial) + static.fashionara.com + Fashionara.com (partial) + static.flixstercdn.com + Flixster (partial) + static.frostwire.com + FrostWire (partial) + static.gay-torrents.net + GayTorrents + static.gowalla.com + Gowalla + static.hgmsites.net + High Gear Media (partial) + static.hsappstatic.net + HubSpot + static.ijreview.com + IJReview.com (partial) + static.insided.nl + inSided (partial) + static.jsconf.us + JSConf.us (partial) + static.justin.tv + Justin.tv (partial) + static.lanyrd.net + Lanyrd + static.licdn.com + LinkedIn (partial) + static.lovefilm.* + LoveFilm + static.mydrive.ch + Mydrive + static.opentok.com + TokBox + static.opml.org + OPML (partial) + static.ow.ly + Ow.ly (partial) + static.parastorage.com + Wix (partial) + static.pazaruvaj.com + Árukereső + static.planetminecraft.com + Planet Minecraft.com (partial) + static.plymedia.com + PLYmedia.com (partial) + static.rubyforge.vm.bytemark.co.uk + RubyForge (partial) + static.scripting.com + Scripting News (partial) + static.seagm.com + SEAGM.com (partial) + static.seetickets.com + See Group (partial) + static.sehirfirsati.com + Sehirfirsati + static.shoutback.com + Shoutback Concepts (partial) + static.sl.lumosity.com + Lumosity (partial) + static.slickdealscdn.com + Slickdeals + static.slickdealz.net + Slickdeals + static.slo-tech.com + Slo-Tech + static.smallworldlabs.com + Small World Labs.com (partial) + static.smdg.ca + Smdg.ca + static.sockshare.com + SockShare (partial) + static.solfoinc.netdna-cdn.com + YP bot.net (partial) + static.songcoleta.com + SongColeta.com (partial) + static.superstart.se + Superstart.se + static.thefullsignal.com + The Full Signal (partial) + static.truckingunlimited.com + TruckingUnlimited.com (partial) + static.trustdale.com + Trust Dale.com (partial) + static.trustedshops.com + Trusted Shops (partial) + static.ucuzu.com + Árukereső + static.unrealitytv.co.uk + Unreality TV (partial) + static.velvetcache.org + Velvet Cache.org (partial) + static.vg.no + VG.no + static.vimention.com + Vimention.com (partial) + static.weboffice.uwa.edu.au + University of Western Australia (partial) + static.webplatform.org + WebPlatform + static.websimages.com + Webs (partial) + static.wixstatic.com + Wix (partial) + static.xperiencedays.com + Xperience Days + static.ylilauta.org + Ylilauta + static.youmix.co.uk + Youmix (partial) + static.zenimax.com + ZeniMax Media (partial) + static.ziffdavis.com + Ziff Davis (partial) + static01.vg.no + VG.no + static02.vg.no + VG.no + static03.vg.no + VG.no + static04.vg.no + VG.no + static1.sockshare.com + SockShare (partial) + staticgen.com + StaticGen.com + statichukd.com + HotUKDeals (partial) + staticsitegenerators.net + Static Site Generators.net + staticstuff.net + GetClicky + staticv.net + Vast (partial) + staticwhich.co.uk + Which? (partial) + statinfo.ksh.hu + Központi Statisztikai Hivatal + stationlrowingclub.com + Station L Rowing Club + statistik-gallup.net + TNS Gallup (partial) + statistik.bayern.de + StatistikamtBayern + stats.cyscon.net + cyscon.net (partial) + stats.feedsportal.com + Feedsportal.com (partial) + stats.ftb.ca.gov + California Franchise Tax Board + stats.spontex.org + Spontex.org + stats.thermitic.net + Thermitic.net (partial) + stats.webplatform.org + WebPlatform + statuspage.io + StatusPage.io + stayclassy.org + StayClassy + stayfriends.at + StayFriends + stayfriends.ch + StayFriends + stayfriends.de + StayFriends + staysafeonline.org + StaySafeOnline.org + staysmartonline.gov.au + Stay Smart Online + staytoday.com + StayToday.com + stda.ilius.net + Meetic (partial) + stdhivtraining.org + California STD/HIV Prevention Training Center (partial) + steadfast.net + Steadfast.net + steaknshake.com + Steaknshake.com + stealthnews.com + Stealthnews.com + steamcommunity.com + Steam Community.com (partial) + steaw.com + Steaw + stedebroec.nl + NL Overheid + steenwijkerland.nl + NL Overheid + steg-electronics.ch + STEG + steganos.com + Steganos.com + stelladot.com + Stella & Dot + stemulitefitnessformula.com + Stemulite Fitness Formula + stevenroddis.com + Steven Roddis + stevesie.com + Stevesie + stgraber.org + St Graber.org + stickhet.com + Stickhet + stirling.gov.uk + UK Local Government + stitcher.com + Stitcher (partial) + stkittszipline.com + St. Kitts Zipline (partial) + stlbeacon.org + St L Beacon.org + stockcharts.com + StockCharts.com (partial) + stockton.edu + Stockton College (partial) + stocktrade.de + Stocktrade.de + stocktwits.com + StockTwits (partial) + stop-snoring-mouthpiece.org + Stop-Snoring-Mouthpiece.org (partial) + stopbadware.org + Stopbadware.org + stopthehacker.com + Stopthehacker.com + stopwatching.us + Stop Watching Us + storage-bin.com + Storage-Bin.com + storage.myfreecopyright.com + MyFreeCopyright.com (partial) + storage.stgbssint.com + stgbssint.com + store.2k.com + 2K Games (partial) + store.androidguys.com + MobiHand clients + store.bistudio.com + Bohemia Interactive (partial) + store.drdobbs.com + TechWeb (partial) + store.edgerunner.com + Edgerunner.com (partial) + store.fruitninja.com + Fruit Ninja (partial) + store.globalresearch.ca + Global Research.ca (partial) + store.invensense.com + InvenSense.com (partial) + store.jfklibrary.org + JFK library.org (partial) + store.kagi.com + Kagi + store.lds.org + The Church of Jesus Christ of Latter-day Saints + store.litespeedtech.com + LiteSpeed Technologies (partial) + store.richarddawkins.net + Richard Dawkins Foundation (partial) + store.sony.com.mx + Sony Latin America (partial) + store.startrek.com + Star Trek (partial) + store.tequipment.net + Tequipment.NET (partial) + store.theonion.com + The Onion (partial) + store.totalwebsolutions.com + Total Web Solutions (partial) + store.venturebeat.com + VentureBeat (partial) + store.winzip.com + WinZip.com (partial) + store.yubico.com + Yubico + store4geeks.com + Store4Geeks.com + storebrand.no + Storebrand + storefront.nr-assets.net + NR-assets.net + storefront.verisign.co.jp + VeriSign (partial) + storenvy.com + Storenvy (partial) + storesecured.com + StoreSecured.com (partial) + storify.com + Storify + stork.eid.lt + eid.lt (partial) + storminternet.co.uk + Storm Internet (partial) + storywrite.com + Storywrite (partial) + stowesports.com + AJ's Ski & Sports + stpeter.im + stpeter.im + strangeworlds.co.uk + StrangeWorlds + straply.com + Straply + strasweb.fr + Strasweb.fr + strategicmanagement.net + Strategic Management Society + strategyanalytics.com + Strategy Analytics + strategysignals.com + Strategysignals.com + strato-hebergement.fr + STRATO (partial) + strato-hosting.co.uk + STRATO (partial) + strato-mailcenter.com + STRATO MailCenter + strato-pro.com + STRATO Pro + strato.* + STRATO (partial) + stratum0.org + Stratum 0 + streammygame.com + StreamMyGame + streetartutopia.com + Street Art Utopia + streetmoda.com + Street Moda (partial) + strimoid.pl + Strimoid.pl + stripe.com + Stripe.com + strlabs.wpengine.netdna-cdn.com + Sharethrough (partial) + strongest-privacy.com + Strongest-privacy.com + strongswan.org + strongSwan + strongvpn.com + StrongVPN.com + structures.ucsd.edu + UCSD + stubhub.com + Stubhub + studentaid.ed.gov + ED.gov (partial) + studentaid2.ed.gov + ED.gov (partial) + studentaidcalculator.com + Student Aid Calculator.com + studentbenefits.ca + Student Benefits.ca + studenthealth.ucsd.edu + UCSD + studentloans.gov + StudentLoans.gov + studiopress.com + StudioPress.com + studyinaustralia.gov.au + Study in Australia + stunnel.org + stunnel.org + stunnish.com + Stunnish.com (false MCB) + stupid.com + Stupid.com + stuvel.eu + Stüvel photography + stylist.co.uk + Stylist.co.uk + suas.ie + Suas.ie + subconadmin.com + Subcon admin.com + subeta.net + Subeta + sublime.wbond.net + Will Bond + sublimetext.com + Sublime Text.com + submissiontechnology.co.uk + Submission Technology + subscribe.condenastdigital.com + Condé Nast (partial) + subscribe.condenet.com + Condé Nast (partial) + subscribe.ratepoint.com + RatePoint (partial) + subscribenww.com + NetworkWorld (partial) + subscribeonline.co.uk + Dovetail Services (partial) + subscriberconcierge.com + Marketing G2 + subscriberservices.mcclatchy.com + McClatchy.com (partial) + subterraneangames.com + Subterranean Games.com + subtome.com + SubToMe.com + subway.com + Subway.com + successchef.com + Success Chef + successfactors.com + SuccessFactors + such001.reichelt.de + Reichelt.de + sudoroom.org + Sudo Room + sueddeutsche-tickets.de + Süddeutsche Zeitung Tickets + sugarcrm.hostone.com.au + Host One (partial) + suicidepreventionlifeline.org + National Suicide Prevention Lifeline + suitabletech.com + Suitable Tech.com (partial) + suitey.com + Suitey.com + summertime.fazekas.hu + Fazekas + sun.edgeboss.net + edgeboss.net (partial) + sun365.me + Sun365.me + sunbeltsoftware.com + Sunbeltsoftware.com + sundancechannel.com + Sundance Channel + sundayworld.com + Sunday World.com + sunglasswarehouse.com + Sunglass Warehouse + sunlightfoundation.com + Sunlight Foundation (partial) + sunrise.ch + Sunrise + sunriseprintonline.com + Sunrise Print Online + sunroofwinddeflectors.com + Sunroof Wind Deflectors.com + sunsetprohosting.com + Sunset ProHosting + sunsetprohosting.net + Sunset ProHosting + sunshinepress.org + Sunshinepress.org + suntimes.com + SunTimes.com (partial) + suntrust.com + SunTrust + sunxi.org + linux-sunxi.org + sunybroome.edu + Broome Community College + suomi.fi + Suomi.fi + supadupa.me + SupaDupa (partial) + superantispyware.com + SuperAntiSpyware + superbreak.com + Holidaybreak (partial) + supercard.ch + Coop + superdesk.pro + Sourcefabric.com (partial) + superdrug.com + Superdrug (partial) + superevr.com + Superevr + superguarantee.com + SuperMedia (partial) + superherostuff.com + Superherostuff.com (partial) + superkuh.com + superkuh.com + supermedia.com + SuperMedia (partial) + superpages.com + SuperMedia (partial) + supersec.com + Supersec + superstart.se + Superstart.se + superstats.com + SuperStats.com (partial) + superstrands.com + SuperStrands + superuser.com + Stack Exchange (partial) + supervalu.com + SUPERVALU + suppliersignup.kagi.com + Kagi + suppliesfordreams.org + Supplies for Dreams.org (partial) + support.aetherflyff.com + Aether Flyff.com (partial) + support.aolonnetwork.com + AOL (partial) + support.apple.com + Apple (false MCB) + support.brookings.edu + Brookings Institution (partial + support.cape-it.de + cape-it.de (partial) + support.covad.com + MegaPath (partial) + support.csbs.utah.edu + University of Utah (partial) + support.fastwebhost.com + FastWebHost.com (partial) + support.greenbone.net + Greenbone (partial) + support.infinet.com.au + Infinet.com.au (partial) + support.iopus.com + iOpus.com (partial) + support.ispbilling.com + Tucows (partial) + support.kagi.com + Kagi + support.medialayer.com + MediaLayer.com (partial) + support.parature.com + Parature.com + support.photobucket.com + Zendesk.com clients (partial) + support.snapchat.com + Snapchat.com (partial) + support.tango.me + Tango.me (partial) + support.tilera.com + Tilera (partial) + support.zabbix.com + Zabbix (partial) + support.zen.co.uk + Zen Internet (false MCB) + suprbay.org + The Pirate Bay (partial) + suprizkizlar.com + Suprizkizlar.com + sure-assist.com + sure-assist.com + suresupport.com + SureSupport + surfcanyon.com + Surfcanyon.com + surfeasy.com + Surfeasy.com + surfline.com + Surfline + surftown.com + Surftown.com + surkatty.org + Surkatty.org + surveydaddy.com + Surveydaddy + surveygizmo.com + SurveyGizmo.com + survivetheclaireperryinter.net + Survive the Claire Perry Inter.net + survs.com + Survs (partial) + suse-art.org + openDesktop.org + suse.com + SUSE (partial) + susestudio.com + SUSE (partial) + sustainability-ornl.org + Oak Ridge National Laboratory (partial) + sustainablebusiness.com + Sustainablebusiness.com + sutn.sk + SlovakGoverment + sv.no + SV.no (partial) + svb.com + Silicon Valley Bank + svbtle.com + Svbtle.com + svenskaspel.se + Svenskaspel.se + sverigesradio.se + SverigesRadio + svgopen.org + SVGOpen + svn.gnumonks.org + Gnumonks.org (CAcert, partial) + svn.macports.org + MacPorts.org + svn.mozdev.org + Mozdev (partial) + svn.nmap.org + Nmap.org (partial) + svn.openezx.com + OpenEZX.org (CAcert, partial) + svn.openezx.net + OpenEZX.org (CAcert, partial) + svn.openezx.org + OpenEZX.org (CAcert, partial) + svn.python.org + Python.org SVN + svn.redmine.org + Redmine.org (partial) + sw.nohold.net + noHold (partial) + swan.sk + Swan.sk + swapoff.org + SwapOff.org + swartzfiles.com + Swartz Files.com + sway.com + Sway + swca.org + SWCA.org + sweb.ru + SpaceWeb + sweetandsourstudio.com + Sweet & Sour + sweetpepper.org + potager.org + swiftype.com + Swiftype (partial) + swin.edu.au + Swin.edu.au (partial) + swinburne.edu.au + Swinburne.edu (partial, false MCB) + swiss.com + Swiss.com + swissabroad.ch + Swissabroad.ch + swisscex.com + SWISSCEX.com + swisscom.ch + Swisscom.ch + swisscom.com + Swisscom.ch + swissdigicert.ch + Swisscom.ch + swisslinsen.ch + swisslinsen.ch + swisspost-gls.ch + Post.ch + swisspost.ch + Post.ch + swisspost.com + Post.ch + swisspower.ch + Swiss Power + swissreg.ch + Swiss Federal Institute of Intellectual Property + swisssign.com + Post.ch + switch.ch + switch.ch + switch.co + Switch.co + switchboard.com + SuperMedia (partial) + switchie.ch + Switchie.ch + switchnet.io + Switchnet.io + switchplus.ch + switchplus.ch + swordfishdc.com + swordfishdc.com + swreg.com + SWREG + swtor.com + swtor.com (partial) + sxcdn.xgraph.net + XGraph (partial) + sycom.co.jp + Sycom.co.jp + sydostran.se + Sydostran.se + sylvancompany.com + Sylvan Company.com + symantec.com + Symantec (partial) + symlynx.com + symlynX + sympa.org + Sympa.org (partial) + symplicity.com + Symplicity + synaptop.com + Synaptop.com + sync.com + Sync.com + syndetics.com + Library Anywhere + syndie.de + Syndie + synergistscada.com + Synergist SCADA + synergy-foss.org + Synergy-FOSS.org (partial) + synergy-stage.eamobile.com + Electronic Arts (partial) + synology.com + Synology (partial) + synology.com.tw + Synology (partial) + synopsys.com + Synopsys (partial) + synthetix.com + Synthetix.com (partial) + synthetix.info + Synthetix.info + synthetix.net + Synthetix.info + syoparekisteri.fi + Syöpäjärjestöt + sys4.de + sys4.de + sysadmincasts.com + Sysadmin Casts.com + sysmocom.de + sysmocom.de (CAcert, partial) + sysprovide.de + sysprovide (partial) + sysstaff.ucsd.edu + UCSD + system.vovici.com + Vovici.com (partial) + system76.com + System76.com + systembolaget.se + Systembolaget.se + systemcenteradviser.com + System Center Advisor.com + systemcenteradviser.net + System Center Advisor.com + systemcenteradvisor.com + System Center Advisor.com + systemcenteradvisor.net + System Center Advisor.com + systemintegra.ru + SystemIntegra.ru + sysward.com + SysWard.com + szkb.ch + Schweizer Kantonalbanken + szm.com + Szm.com + t-com.sk + Telekom.sk + t-engine.org + T-Engine.org (partial) + t-mobile.co.uk + T-Mobile + t-mobile.com + T-Mobile + t-mobile.nl + T-Mobile + t-online.de.intellitxt.com + T-Online (partial) + t-shirtmojo.com + T-Shirt Mojo + t.album.youmix.co.uk + Youmix (partial) + t.brand-server.com + brand-server.com + t.channeladvisor.com + ChannelAdvisor.com (partial) + t.co + Twitter + t.track.youmix.co.uk + Youmix (partial) + t.trackedlink.net + dotMailer (partial) + t.yawoot.com + Yawoot (partial) + t.ytcdn.net + YouTorrent (partial) + t1.mediamath.com + MediaMath + t3.io + t3.io + t35.com + T35 cPanel Hosting + t4ft.de + FirstTag.de + taboola.com + Taboola (partial) + tachanka.org + Tachanka.org + tacticaltech.org + Tactical Tech.org (partial) + tag.beanstock.co + Beanstock Media (partial) + tag.yieldoptimizer.com + Adara Media (partial) + tagasauris.com + Tagasauris.com + tagesschau.de + tagesschau.de (partial) + tagonline.com + TAG Online.com + tags.tiqcdn.com + Tealium (partial) + tahoe-lafs.org + Tahoe-LAFS + taiga.io + Taiga.io + tailgatersparking.com + Tailgaters Parking.com + tailormadeanswers.com + Tailor Made Answers + takeaway.com + Takeaway.com + takecontrolbooks.com + Take Control Ebooks + takuu--saatio-fi.directo.fi + Takuu-Säätiö + takuu-saatio.fi + Takuu-Säätiö + tal.de + tal.de + taleo.com + Taleo (partial) + taleo.net + Taleo (partial) + talkhealthpartnership.com + NHS (partial) + talkingfrench.com + Talking French + talkingphonebook.com + LocalEdge (partial) + talktalk-labs.com + TalkTalk-Labs.com + talktalk.co.uk + TalkTalk (partial) + talktalkbusiness.co.uk + TalkTalk (partial) + tally.upsideout.com + UpsideOut.com (partial) + tampabaysod.com + Tampa Bay Sod.com + tamu.edu + Texas A&M University (partial) + tancity.de + TanCity.de + tandemcal.com + Tandem Calendar + tandfonline.com + Informa (partial) + tandlakarforbundet.se + Tandlakarforbundet.se + tandridge.gov.uk + UK Local Government + tango.me + Tango.me (partial) + tankafetast.com + TankaFetast.com + tanomail.com + Tanomail.com + taoeffect.com + Tao Effect.com + tapad.app10.hubspot.com + Tapad (partial) + tapatalk.com + Tapatalk + tapgage.net + Tapgage + tapiture.com + Tapiture.com (partial) + taringa.net + Taringa (partial) + tarsnap.com + Tarsnap + tasb.org + Texas Association of Schoolboards + taskforce.is + Taskforce.is + tatepublishing.com + Tate Publishing.com + tauntondeane.gov.uk + UK Local Government + taxpayersalliance.com + TaxPayers' Alliance + taylorandfrancis.com + Informa (partial) + taz.de + TAZ + tb.raiffeisendirect.ch + Raiffeisen.ch + tbray.org + TBray.org + tc3.edu + Tompkins-Cortland Community College + tcd.ie + Trinity College Dublin (partial) + tchibo.ch + Tchibo + tchibo.com.tr + Tchibo + tchibo.cz + Tchibo + tchibo.de + Tchibo + tchibo.hu + Tchibo + tchibo.pl + Tchibo + tchibo.sk + Tchibo + tcli.ed.gov + ED.gov (partial) + tcpalm.com + TCPalm.com (partial) + tcpalmextras.com + TCPalm.com (partial) + tdc-wholesale.com + TDC.dk (partial) + tdc.dk + TDC.dk (partial) + tdcanadatrust.com + TD Canada Trust + tdconline.se + TDC online.se + tdcserviceonline.com + TDC Service Online.com + tdnam.com + GoDaddy (partial) + teac.co.jp + TEAC (partial) + teach-ats.ed.gov + ED.gov (partial) + teachersassurance.co.uk + Teachers Assurance + teacupsandtrinkets.co.uk + Teacups and Trinkets.co.uk + team-cymru.org + Team Cymru + teamintraining.org + Team in Training.org (partial) + teamviewer.com + Teamviewer + teapartypatriots.org + Tea Party Patriots + tech.lds.org + The Church of Jesus Christ of Latter-day Saints + tech.money.pl + Money.pl (false MCB) + techdirt.com + Techdirt + techendo.com + Techendo.com + techhouse.org + TechHouse + techidiots.net + Techidiots.net + techinasia.com + Tech in Asia.com + techmeme.com + Techmeme.com + technical.ly + Technical.ly (partial) + technocrat.net + Technocrat.net + technologyreview.com + TechnologyReview (partial) + technologyreview.in + TechnologyReview (partial) + technomedia.com + Technomedia + techopedia.com + Techopedia.com + techpowerup.com + Techpowerup.com + techreport.com + The Tech Report (partial) + techrepublic.com + TechRepublic (partial) + techslinger.com + Techslinger.com + techsupportalert.com + Techsupportalert + techtarget.com + TechTarget (partial) + techtoolsforactivism.org + Tech Tools for Activism.org + techverse.com.au + TechVerse (partial) + techwebonlineevents.com + TechWeb (partial) + techworld.idg.se + IDG.se (partial) + tecnocode.co.uk + tecnocode.co.uk + ted.ucsd.edu + UCSD + teddyhyde.com + Teddy Hyde.com + teendriversource.org + TeenDriverSource.org + teenshealth.org + KidsHealth/TeensHealth + tehconnection.eu + Tehconnection + tehtri-security.com + TEHTRI-Security.com + tek.no + Tek.no (partial) + tekgoblin.com + TekGoblin + tekgoblinmedia.com + TekGoblin + teksyndicate.com + Tek Syndicate.com + tel.archives-ouvertes.fr + Archives-ouvertes.fr (partial) + tele-task.de + tele-TASK + tele2.se + Tele2.se + telebrands.net + Telebrands + telecom.sk + Telekom.sk + telefonica.cz + Telefónica (partial) + telegr.am + Telegr.am + telegram.com + Telegram.com (partial) + telegram.org + Telegram.org + telegraph.co.uk + Telegraph Media Group (partial) + telekom.at + A1 Telekom Austria + telekom.com + Deutsche Telekom + telekom.de + Deutsche Telekom + telekom.sk + Telekom.sk + telemetryverification.net + Telemetry (partial) + telenor.se + Telenor.se (partial) + telerik-web-assets.com + Telerik-web-assets.com + telerik.com + Telerik.com (partial) + telethon.it + Telethon.it (partial) + telework.gov.au + Telework.gov.au + telex.cc + Telex + telfort.nl + Telfort (partial) + telia.se + Telia.se + telmasters.com + TelMasters + telnic.org + Telnic + tem.fi + Työ- ja elinkeinoministeriö + temando.com + Temando.com + templatemonster.com + Template Monster.com (partial) + tendatta.com + tendatta.com + tenderapp.com + ENTP (partial) + tenon.com + Tenon.com + tent.io + Tent.io + tent.is + Tent.is + tepamine.com + DNA Serum + terasic.com.tw + Terasic.com.tw (partial) + terena.org + Terena.org (partial) + termsofservicegenerator.com + Global Marketing Strategies (partial) + terneuzen.nl + NL Overheid + terragalleria.com + Terra Galleria + terrapass.com + TerraPass (partial) + terreactive.ch + terreActive + terresoubliees.com + Terres Oubliees.com + terrorismlegislationreviewer.independent.gov.uk + Independent.gov.uk (partial) + tersee.com + tersee + terveysportti.fi + Terveysportti.fi + terveysportti.net + Terveysportti.fi + terveysportti.org + Terveysportti.fi + tesco.com + Tesco (partial) + tescobank.com + Tesco Bank.com + tescocompare.com + Tesco Compare.com + tescodiets.com + Tesco Diets.com + tescofinance.com + Tesco Bank.com + tescophoto.com + Tesco Photo.com + tescoshareandearn.com + Tesco Share and Earn.com + teslamotors.com + Tesla Motors (partial) + test-ipv6.cz + Test-IPv6.cz (partial) + test.musicbrainz.org + MusicBrainz + test.ssltrust.us + ssltrust.us (partial) + testcloud.de + testCloud.io (partial) + testcloud.io + testCloud.io (partial) + testequipmentdepot.com + Test Equipment Depot + teststackoverflow.com + Stack Exchange (partial) + tetu.com + Tetu + texaco.com + Texaco.com + texastribune.org + Texas Tribune.org + textbooks.com + Textbooks.com + textmagic.com + TextMagic.com (partial) + textpad.com + TextPad.com (partial) + teylingen.nl + NL Overheid + tfaforms.com + FormAssembly.com (partial) + tfl.gov.uk + Transport for London (partial) + tfsprays.com + TF Sprays.com + tgthr.com + tgthr.com + tgthr.crbuildsite.com + tgthr.com + thainetizen.org + Thai Netizen.org + thaipicpost.info + thaipicpost.info + thalescomminc.com + Thales Communications + thalys.com + Thalys + thalysthecard.com + Thalys + thankyou.com + ThankYou.com + thawte.com + Thawte + thc.org + The Hacker's Choice + the-best-hosting.net + The Best Hosting + the-body-shop.ch + Coop + the-dma.org + The-DMA.org (partial) + the-group.net + The Group + the-independent-news.com + The Independent News (partial) + the109.org + The 109 + theaa.com + TheAA + theaj.co.uk + Architect's Journal + theappendix.net + The Appendix.net (partial) + theatlantic.com + The Atlantic.com (partial) + theatln.tc + bit.ly vanity domains + theaustralianalps.wordpress.com + Australian Alps National Parks + thebaffler.com + The Baffler + thebigweddingmovie.com + The Big Wedding Movie.com + theblueskylife.com + The Blue Sky Life.com + thebodyshop.co.uk + The Body Shop.co.uk (partial) + thebookpeople.co.uk + The Book People + thecairopost.youm7.com + Youm7.com (partial) + thecanadianpress.com + The Canadian Press + thechive.com + The Chive.com + thecityuk.com + TheCityUK + thecoastnews.com + The Coast News.com + theconversation.com + The Conversation + theconversation.edu.au + The Conversation + thecustomizewindows.com + The Customize Windows + thecutestsiteontheblock.com + The Cutest Site on the Block + thedailybeast.com + The Daily Beast (partial) + thedaywefightback.org + The Day We Fight Back.org + thedilbertstore.com + The Dilbert Store.com (partial) + thediplomat.com + The Diplomat + thedma.org + The DMA.org (partial) + thedrum.com + The Drum.com (partial) + theeca.com + Entertainment Consumer's Association (partial) + theedgeclimbing.com + The Edge Climbing.com + theeroticreview.com + TheEroticReview + thefederalistpapers.org + The Federalist Papers.org (partial) + thefind.com + TheFind + thefnf.org + The FNF.org + thegazette.co.uk + The Gazette + thegcloud.com + The G Cloud.com (partial) + thegef.org + International Finance Corporation (partial) + thegoodfight.fm + The Good Fight.fm + thegrandtheatre.com + The Grand + thegreatcourses.com + The Great Courses (partial) + thegrommet.com + The Grommet.com + thehabbos.org + thehabbos.org + thehackernews.com + Thehackernews.com + thehill.com + The Hill.com + thehoxton.com + The Hoxton.com + thehut.com + TheHut.com (partial) + theiabm.org + IABM + theiconic.com.au + The Iconic.com (partial) + theiet.org + IET (partial) + thejh.net + Jann Horn + thejns.org + Journal of Neurosurgery (partial) + thejournal.ie + TheJournal.ie + thejournalnews.com + lohud.com (partial) + theme.co + Theme.co (partial) + themesandco.com + Themes and Co.com + thenation.com + The Nation + thenewsfunnel.com + The News Funnel (partial) + thenextweb.com + The Next Web (partial) + theoldreader.com + The Old Reader + theoutnet.com + The Outnet + thepermitstore.com + ThePermitStore.com + thephone.coop + thephone.coop (partial) + thepiratebay.org + The Pirate Bay (partial) + thepiratebay.se + The Pirate Bay (partial) + thepiratebay.sx + Thepiratebay.sx + thepokerchips.net + ThePokerChips.net + theprivacyblog.com + The Privacy Blog + therapynotes.com + Therapynotes.com + thereadingroom.com + TheReadingRoom.com (partial) + theresumator.com + TheResumator.com (partial) + thesafety.us + TheSafety.US + theses.cz + Theses.cz + thesexyhouse.com + The Sexy House + thesims3.com + Electronic Arts (partial) + thesixthaxis.com + TheSixthAxis.com + theskoop.ca + The Skoop + thespartaninstitute.com + The Spartan Institute (partial) + thesprawl.org + The Sprawl + thestar.com + Toronto Star (partial) + thestorefront.com + The Storefront.com (partial) + thestranger.com + The Stranger.com (partial) + theswirlworld.com + aswirlgirl.com (partial) + thetechjournal.com + The Tech Journal.com + thetfp.com + The TFP + thethemefoundry.com + The Theme Foundry.com (partial) + theticketfactory.com + The Ticket Factory + thetoadfly.com + The Toad Fly (partial) + thetrainline.com + TheTrainLine + thewatershed.com + The Watershed + thewatershedresidence.com + The Watershed Residence + thewebindex.org + The Web Index.org + theweek.com + The Week.com + theweekendedition.com.au + The Weekend Edition + thewesternworld.com + The Western World (partial) + thewire.com + The Wire.com (false MCB) + thewordpro.com + The Word Pro + thewrap.com + The Wrap (partial) + thezaplab.com + The Zap Lab + thijsalkema.de + Thijs Alkema.de + thing.net + thing.net (partial) + thingiverse.com + Thingiverse (partial) + thinglink.com + ThingLink (partial) + thinkgeek.com + ThinkGeek + thinkingchristian.net + Thinking Christian + thinkpad.com + Lenovo (partial) + thinkprogress.org + ThinkProgress.org (false MCB) + thinksteroids.com + MESO-Rx + thinkwithgoogle.com + Think With Google + thirdage.com + ThirdAge (partial) + this-download-would-be-faster-with-a-premium-account-at-good.net + Good.net + thiswebhost.com + ThisWebHost + thompson.com + Thompson.com + thoughtstreams.io + ThoughtStreams.io + thoughtworks.com + ThoughtWorks.com (partial) + thp.io + thp.io + thread.com + Thread.com + threadingbuildingblocks.org + Threading Building Blocks + threatmetrix.com + ThreatMetrix.com (partial) + threatpost.com + ThreatPost + threattracksecurity.com + ThreatTrack Security.com + three.ie + Three + threema.ch + Threema + threerivers.gov.uk + UK Local Government + threestore.three.co.uk + Three + thumbs.mochiads.com + Mochi ads.com + thumbs.sbstatic.com + Silobreaker (partial) + thumbshots.* + Thumbshots (partial) + thunderclap.it + Thunderclap.it + thunderkick.com + Thunderkick + thunderranchinc.com + Thunder Ranch + ti.com + Texas Instruments (partial) + ti.to + Ti.to + tickengo.* + Tickengo + tickertech.com + TickerTech.com + ticketcorner.ch + Ticketcorner + ticketdriver.com + Ticket Driver + ticketing.trch.co.uk + TicketingNetworkEastMidlands + ticketingnetworkeastmidlands.co.uk + TicketingNetworkEastMidlands + ticketmaster.* + Ticketmaster (partial) + ticketmaster.co.uk + Ticketmaster (partial) + ticketnet.fr + ticketnet.fr (partial) + ticketone.it + TicketOne + ticketonline.de + Ticket Online + ticketportal.sk + Ticketportal.sk + tickets.com + Tickets.com (partial) + tickets.london2012.com + London 2012 + tickets.sueddeutsche.de + Süddeutsche Zeitung Tickets + ticketsage.com + TICKETsage + ticketsnow.com + TicketsNow (partial) + ticketweb.* + Ticketmaster (partial) + tictail.com + Tictail.com (partial) + tid.al + Tid.al (partial) + tidbits.com + TidBITS + tienda.astrocentro.com + Astrocentro.com (partial) + tierra.net + TierraNet (partial) + tieto.com + Tieto.com (partial) + tigerdirect.com + TigerDirect (partial) + tigr.net + Tigr.net + tiki.org + Tiki.org (partial) + tilburguniversity.edu + Tilburg University (partial) + tilburguniversity.nl + Tilburg University (partial) + time.com + TIME.com (partial) + timeclockdeals.com + Time Clock Deals.com + timeinc.brightcove.com.edgesuite.net + Time Inc (partial) + timeinc.net + Time Inc (partial) + timesofmoney.com + TimesofMoney + timesrecordnews.com + Times Record News (partial) + timetrade.com + TimeTrade.com + timeweb.ru + TimeWeb + timex.com + Timex + timtaubert.de + Tim Taubert.de + tindie.com + Tindie.com (partial) + tineye.com + TinEye (partial) + tinfoil.co + Tinfoil Security.com + tinfoilsecurity.com + Tinfoil Security.com + ting.com + Ting.com + tinkerforge.com + Tinkerforge.com (partial) + tintup.com + Tintup.com + tiny.cc + Tiny.cc + tinybytes.me + TinyBites + tinychat.com + TinyChat + tinyletter.com + TinyLetter.com + tinypass.com + Tinypass.com (partial) + tinypng.com + TinyPNG + tinyteenpass.com + tinyteenpass.com + tinyurl.com + TinyURL + tip.net.au + TIP.net.au (partial) + tipico.de + Tipico.de + tippie.uiowa.edu + University of Iowa (partial) + tiremetroonline.com + Tire Metro + tirerack.com + Tirerack + tiresnwheels.ca + Tires N' Wheels + tiscali.co.uk + TalkTalk (partial) + tiscali.nl + Telfort (partial) + tiswww.case.edu + Case Western Reserve University (partial) + titanfile.com + Titanfile.com + titania.com + Titania.com + titanpad.com + TitanPad.com + titanshare.to + Titanshare.to + tito.io + Ti.to + tizen.org + Tizen.org + tjanster.idg.se + IDG.se (partial) + tjoos.com + Tjoos (partial) + tk.de + Techniker Krankenkasse + tk.ilius.net + Meetic (partial) + tkb.ch + Schweizer Kantonalbanken + tldr.io + tldrio + tldrlegal.com + TLDRLegal.com (partial) + tm.*.dp.yieldmanager.net + Right Media + tmbc.gov.uk + UK Local Government + tmcnet.com + Tmcnet.com + tmcomponents.travelmarket.com + Travelmarket.com (partial) + tmobile.com + T-Mobile + tmobile.nl + T-Mobile + tmobileuk.blackberry.com + T-Mobile + tmpwebeng.com + TMPwebeng.com + tmt.org + Thirty Meter Telescope (partial) + tmz.com + TMZ.com + tmz.vo.llnwd.net + TMZ.com + tn123.org + tn123.org + tnnet.fi + TNNet + tno.nl + TNO.nl + tns-counter.ru + tns-counter.ru + tnsinfo.com + TNS Info + to.pbs.org + bit.ly vanity domains + today.com + Today.com (partial) + todo.ly + TodoLy + todoist.com + Todoist + tofinosecurity.com + TofinoSecurity + tog.ie + TOG + togahotels.com + Toga Hotels (partial) + togevi.com + Ive Got Kids.com (partial) + toi.ivwbox.de + T-Online (partial) + tokbox.com + TokBox + tokyo-tosho.net + Tokyo Toshokan + tokyotosho.info + Tokyo Toshokan + tokyotosho.se + Tokyo Toshokan + tomsofmainestore.com + Tom's of Maine (partial) + tomtom.com + TomTom International (partial) + tonergiant.co.uk + TonerGiant (partial) + tony.xyz + tony.xyz + tooagile.wpengine.com.netdna-cdn.com + AgileBits (partial) + tool.linguee.com + Linguee + tools.its.waikato.ac.nz + University of Waikato (partial) + tools.otenet.gr + OTE + tools.wmflabs.org + Wikimedia + toolserver.org + Toolserver + toorcon.net + ToorCon.net + top.de + top.de + top.list.ru + List.ru + topatoco.com + TopatoCo + topbuy.com.au + TopBuy.com.au + topcoder.com + TopCoder + topoption.com + TopOption.com (partial) + toptip.ch + Coop + torbay.gov.uk + UK Local Government + torbit.com + Torbit (partial) + torcache.net + Torcache.net + torcheck.xenobite.eu + Xenobite.eu + torguard.net + TorGuard + torlock.com + TorLock.com + torproject.org + Tor Project + torrentfreak.com + TorrentFreak.com + torrentfunk.com + TorrentFunk.com (partial) + torrentprivacy.com + TorrentPrivacy (partial) + torrentz.ch + Torrentz + torrentz.com + Torrentz + torrentz.eu + Torrentz + torrentz.in + Torrentz + torrentz.me + Torrentz + torreycommerce.com + TorreyCommerce (partial) + torreycommerce.net + TorreyCommerce.net + torsearch.es + TorSearch.es + torservers.net + Torservers + tosback.org + TOSBack.org + tosdr.org + Terms of Service; Didn't Read + totalbarcode.com + TotalBarcode.com + totalboox.com + Total Boox + totalchoicehosting.com + Total Choice Hosting (partial) + totalfanshop.net + Total Fan Shop.net + totalicare.com + Total Eyecare + totalinvestor.co.uk + Total Investor + totalrecall.com + Binary Biz + totalrecall.switchingon.com + Unicom (partial) + totaltravel.co.uk + Yahoo! (partial) + totaltravel.com + Yahoo! (partial) + totemapp.com + Totem + towelroot.com + towelroot + townnews365-dot-com.bloxcms.com + TownNews.com + townnews365.com + TownNews.com + townsvillebottomfishingcharters.com.au + Townsville Bottom Fishing Charters.com.au (partial) + tox.im + Tox.im + toyfoundry.net + ToyFoundry (partial) + toysrus.com + Toys R Us.com (partial) + tpb.me + TPB.me + tpd.sk + Tpd.sk + tpptraining.com + TPPtraining.com + trac.handbrake.fr + Handbrake.fr (partial) + trac.macports.org + MacPorts.org + trac.pcbsd.org + PC-BSD (partial) + track.adcocktail.com + ADCocktail (partial) + track.effiliation.com + Effiliation (partial) + track.roiservice.com + Roiservice.com + track.securedvisit.com + SecuredVisit.com (partial) + track.tiara.daum.net + Daum Communications (partial) + trackalyzer.com + Trackalyzer + tracking-point.com + TrackingPoint (partial) + tracking.aunggo.com + aunggo.com + tracking.thehut.net + TheHut.com (partial) + tracking.verisign.co.nz + VeriSign (partial) + tracking.verisign.com.au + VeriSign (partial) + tracking.verisign.com.hk + VeriSign (partial) + tracking.verisign.com.tw + VeriSign (partial) + tracks.fit.edu + Florida Institute of Technology (partial) + tracks.www.zazzle.com + Zazzle (partial) + traction-digital.com + Traction-Digital.com (partial) + tradeking.com + TradeKing.com (partial) + trademarkia.com + Trademarkia.com + trademoremargin.com + TradeMore Margin.com + tradepub.com + tradepub.com (partial) + trader.skandiabanken.no + Skandiabanken + traffichaus.com + Traffic Haus (partial) + trafficholder.com + Traffic Holder (partial) + trafficjunky.net + TrafficJunky + trafficmaxx.de + trafficmaxx (partial) + trafficprivacy.com + TrafficPrivacy + trafficshop.com + Traffic Shop + training.ebsco.com + EBSCOhost (partial) + training.sss.gov + US Selective Service System + trakk247.com + trakk247.com + transactauto.com + Transact Auto + transcend.org + Transcend.org + transformationmadeeasy.com + transformationmadeeasy.com (partial) + transformativeworks.org + Transformative Works.org (partial) + transifex.com + Transifex (partial) + transip.nl + TransIP.nl + transitionnetwork.org + TransitionNetwork.org + translatewiki.net + Translatewiki.net + translationproject.org + Translation Project.org + translink.co.uk + Translink + transloadit.com + Debuggable (partial) + transmarine.org + Trans Marine + transmissionbt.com + Transmission (partial) + transmode.com + Transmode + transmode.se + Transmode.se + transportstyrelsen.se + Transportstyrelsen.se + transversal.com + Transversal.com + traq.exitec.com + Exitec (partial) + trashmail.net + Trashmail + trasy.docelu.pl + docelu.pl (partial) + travel.united.com + United Airlines + traveldoctor.com.au + Travel Doctor + travelhouse.ch + Hotelplan + travelingnuker.com + Travelingnuker.com + travelnow.com + TravelNow (partial) + travelplan.gr + Travel Plan + travelrepublic.co.uk + Travel Republic (partial) + travelrepublic.com + Travel Republic (partial) + travelzoo.com + Travelzoo.com (partial) + travis-ci.org + Travis CI + travisf.net + Travis F.net + traxarmstrong.com + traxarmstrong.com + treasurydirect.gov + TreasuryDirect + treehousei.com + TreeHouse I.com + trefis.com + Trefis + trekaroo.com + Trekaroo (partial) + trellian.com + Trellian (partial) + trello.com + Trello + tremendesk.com + Add2Net (partial) + trendin.com + Trendin.com + trendmicro.com + Trend Micro (partial) + trendmicro.eu + Trend Micro (partial) + trendweight.com + TrendWeight + trent.utfs.org + utfs.org (partial) + trialpay.com + TrialPay (partial) + tribalfusion.com + Tribal Fusion.com (partial) + tribalhosting.net + tribalhosting.net + tribler.org + Tribler (partial) + tribot.org + TRiBot.org (partial) + tricolumbia.org + Tricolumbia.org + trideci.com + TriDeci + tridium.com + Tridium + trillian.im + Trillian.im (partial) + trinityfi.org + Trinity Foundation + triodos.com + Triodos.com + triodos.nl + Triodos.nl (partial) + tripadvisor.com + TripAdvisor (partial) + tripbod.com + tripbod.com (partial) + triphip.com + TripHip + tripit.com + TripIt.com + tripwire.com + Tripwire.com (partial) + trisquel.info + Trisquel + tritonlink.ucsd.edu + UCSD + triumph-adler.de + Triumph-Adler.de + trklnks.com + AdSupply (partial) + trollingeffects.org + Trolling Effects.org + tron-delta.org + TRON-DELTA.ORG + tronixcomputers.com + Tronix Computers.com + troopers.de + Troopers.de + tropo.com + Tropo (partial) + trove.com + Trove.com (partial) + troveread.com + troveread.com + trueachievements.com + Trueachievements.com + truecrypt.ch + TrueCrypt.ch + truecrypt.org + Truecrypt (partial) + truenudists.com + truenudists.com + truevault.com + TrueVault.com + trumanlibrary.org + Harry S Truman Library and Museum + trumba.com + Trumba + trumpia.com + Trumpia.com + trust-center.verisign.ch + VeriSign (partial) + trust-center.verisign.co.uk + VeriSign (partial) + trust-center.verisign.com.au + VeriSign (partial) + trust-center.verisign.com.sg + VeriSign (partial) + trust-center.verisign.com.tw + VeriSign (partial) + trust-center.verisign.de + VeriSign (partial) + trust-center.verisign.dk + VeriSign (partial) + trust-center.verisign.es + VeriSign (partial) + trust-center.verisign.fr + VeriSign (partial) + trust-center.verisign.it + VeriSign (partial) + trust-center.verisign.se + VeriSign (partial) + trust-guard.com + Trust-Guard.com (partial) + trust-it.gr + Trust-IT.gr + trust.verisign.com.hk + VeriSign (partial) + truste.com + TRUSTe (partial) + trusted-introducer.nl + Trusted-Introducer.org + trusted-introducer.org + Trusted-Introducer.org + trustedcomputinggroup.org + Trusted Computing Group + trustedcs.com + Trusted CS.com + trustedmessenger.com + TrustedMessenger.com + trustedreviews.com + Trusted Reviews (partial) + trustedsec.com + TrustedSec.com + trustedshops.* + Trusted Shops (partial) + trustedshops.co.uk + Trusted Shops (partial) + trusteer.com + Trusteer.com (partial) + trustico.com + Trustico + trustkeeper.net + TrustKeeper + trustlogo.com + Comodo + trustthevote.org + TrustTheVote.org (partial) + trustwave.com + Trustwave (partial) + trustworthyinternet.org + Trustworthy Internet Movement + trustycon.org + TrustyCon.org + truthdig.com + Truthdig.com + truthinadvertising.org + Truth in Advertising + trycelery.com + Try Celery.com + trygghansa.se + Trygghansa.se + tryprocleanse.com + My Aloe Cleanse.com + trysuperbgreencoffee.com + Try Superb Green Coffee.com + tsbmag.com + TSB Mag.com + tsdd.org + TSDD.org + tshaonline.org + TSHA online.org + tsl.state.tx.us + Texas State Library and Archives Commission + tso.co.uk + TSO.co.uk + tsv.fi + Tieteellisten seurain valtuuskunta + tt.se + TT.se + ttc.talenttech.com + Talemetry.com (partial) + tu-chemnitz.de + TU-Chemnitz.de (partial) + tubbergen.nl + NL Overheid + tube4.me + Tube4.me + tubemogul.com + TubeMogul.com (partial) + tuftsgiving.org + Tufts Giving.org + tuftsmedicalcenter.org + Tufts Medical Center.org (partial) + tug.org + TeX Users Group + tugg.com + Tugg.com (partial) + tuitam.pl + TU I TAM + tuki.kapsi.fi + Kapsi.fi (very partial) + tum.de + Tum.de + tumblr.com + Tumblr (partial) + tune.pk + Tune.pk + tunespeak.com + Tunespeak.com + tuningworld.com.au + Tuning World + tunisia-sat.com + Tunisia-Sat + tunisia-sat.com.tn + Tunisia-Sat + tunnelbear.com + TunnelBear + tunnelbroker.com + HE Tunnel Broker + tunnelbroker.net + HE Tunnel Broker + turbosquid.com + TurboSquid (partial) + turbotax.com + Intuit (partial) + turku.fi + Turku.fi + turn.com + Turn.com + turner.com + Turner.com (partial) + turngs.com + Turn Game Studios + turnonsocial.com + Turn On Social + tuscany.apache.org + Apache.org (false MCB) + tutor.com + Tutor.com (partial) + tuts4you.com + Tuts 4 You.com + tutsplus.com + TutsPlus.com (partial) + tuv.com + CONVAR (partial) + tuvdotcom.com + CONVAR (partial) + tuwien.ac.at + Vienna University of Technology (partial) + tuxic.nl + TuxIC.nl + tv4play.se + TV4play.se + tvheadend.org + Tvheadend.org + tvlicensing.co.uk + Tvlicensing.co.uk + tvnewscheck.com + TVNewsCheck.com (partial) + tvnz.co.nz + TVNZ + tvshowtime.com + TVShow Time.com + tvsupport.net + tvsupport.net + tvtorrents.com + TvTorrents + tweakers.net + Tweakers.net + tweakimg.net + Tweakers.net + tweetdeck.com + Tweetdeck + tweetriver.com + Mass Relevance + twiant.com + twiant.com + twilio.com + Twilio + twimgs.com + TechWeb (partial) + twimler.com + Twimler.com + twinings.co.uk + Twinings (partial) + twisp.me + twisp.me + twisted4life.com + Twisted4Life + twistedmatrix.com + TwistedMatrix + twistymania.migros.ch + Migros + twitcasting.tv + TwitCasting (partial) + twitch.tv + Justin.tv (partial) + twitpic.com + TwitPic + twitter.com + Twitter + twittercommunity.com + Twitter Community.com + twittercounter.com + Twitter Counter (partial) + twofactorauth.org + Two Factor Auth + twoseventy.net + Twoseventy.net + twtpoll.com + Twtpoll.com + twylah.com + Twylah.com + tyj.fi + Työttömyyskassojen Yhteisjärjestö + typecast.com + Typecast.com (partial) + typekit.com + Typekit + typepad.com + Typepad (partial) + typo3.org + TYPO3 (partial) + typodun.unistra.fr + UniStra.fr (false MCB) + typography.com + Typography.com (partial) + typotheque.com + Typotheque (partial) + u-blox.com + U-blox.com + ua.edu + UA.edu (partial) + ua2go.com + United Airlines + uakjobs.com + University of Alaska Jobs (uakjobs.com) + uakron.edu + University of Akron (partial) + uber.com + Uber Technologies (partial) + uberent.com + UberEnt.com (partial) + ubermedia.com + UberMedia.com (partial) + uberspace.de + Uberspace + ubertt.org + Ubertt.org + ubisoftgroup.com + Ubisoft Group + ubm.io + bit.ly vanity domains + ubounce.wpengine.netdna-cdn + Unbounce (partial) + ubs.com + UBS (partial) + ubuntu-art.org + openDesktop.org + ubuntuforums.org + Ubuntu Forums.org (false MCB) + ubuntuone.com + Ubuntu (partial) + ubykotex.com.au + U by Kotex Australia + uc.edu + University of Cincinatti (partial) + ucalgary.ca + UCalgary.ca (partial) + ucc.dk + UCC.dk + ucf.edu + University of Central Florida (partial) + uchastings.edu + UC Hastings.edu (partial) + uchicago.edu + University of Chicago (partial) + ucl.ac.uk + University College London (partial) + ucla.in + bit.ly vanity domains + uclahealth.org + UCLA Health + uclan.ac.uk + University of Central Lancashire + uclearning.ucsd.edu + UCSD + uclinics.com + uClinics + uclouvain.be + Université catholique de Louvain + ucsd.edu + UCSD + ucsdbkst.ucsd.edu + UCSD + ucsf.edu + University of California, San Francisco (partial) + uct.ac.za + University of Cape Town (partial) + ucuzu.com + Árukereső + ud-media.de + UD Media.de + udacity.com + Udacity.com (partial) + udel.edu + University of Delaware (partial) + uden.nl + NL Overheid + udistrital.edu.co + Universidad Distrital + udk.com + Unreal Development Kit + udmedia.de + UD Media.de + uef.fi + University of Eastern Finland (partial) + uefidk.com + Uefidk.com + uen.org + Utah Education Network (partial) + ufcfit.com + UFC Fit + ufies.org + UFies.org + ugotposted.com + You Got Posted + ugyfelkapu.digi.hu + Digi.hu + uhhospitals.org + uhhospitals.org (partial) + uhrzeit.org + Uhrzeit.org (partial) + uhub.org + uhub + uidaho.edu + University of Idaho (partial) + uie.com + UIE + uim.tifbs.net + 1&1 Internet + uio.no + University of Oslo + uiuc.edu + University of Illinois at Urban-Champaign (partial) + ujd.gov.sk + SlovakGoverment + uk.accessorize.com + Accessorize (partial) + uk.wwte4.com + WWTE (partial) + uk.zopa.com + Zopa (partial) + uk2.net + UK-2 (partial) + uk2img.net + UK-2 (partial) + ukashcardsatis.com + UkashCardSATIS + ukfast.co.uk + UKFast.co.uk (partial) + ukfsn.org + UK Free Software Network (partial) + ukonlinecentres.com + UK online centres.com (partial) + ukr.net + Ukr.net + ukreg.com + Fasthosts (partial) + ukwebsolutionsdirect.co.uk + UK Web Solutions Direct + ukwebsolutionsdirect.com + UK Web Solutions Direct + ul.ie + UL.ie (partial) + ul.to + Cyando (partial) + uline.com + Uline.com (partial) + ultimatepoker.com + Ultimate Poker + ultradns.* + UltraDNS + ultrafacil.com.br + Ultra Facil.com.br + ultranaturelean.com + UltraNature Lean + ultrasurf.us + Ultrasurf.us + ulule.com + Ulule + ulysses.calvin.edu + Calvin College (partial) + umaine.edu + University of Maine (partial) + umanitoba.ca + University of Manitoba (partial) + umass.edu + University of Massachusetts Amherst (partial) + umassathletics.cstv.com + University of Massachusetts Amherst (partial) + umassulearn.net + University of Massachusetts Amherst (partial) + umbel.com + Umbel.com + umd.edu + University of Maryland (partial) + umich.edu + University of Michigan (partial) + umonitor.com + uMonitor + umu.se + Umeå University (partial) + umw.edu + University of Mary Washington (partial) + un.org + United Nations + unbit.it + Unbit.it (partial) + unbounce.com + Unbounce (partial) + unbound.net + NLnet Labs CACert + uncg.edu + University of North Carolina at Greensboro (partial) + unclineberger.org + UNC Lineberger.org + underground-gamer.com + Underground Gamer + underhandedcrypto.com + Underhanded Crypto.com (partial) + underskog.no + Underskog + unfpa.org + UNFPA.org + unhosted.org + Unhosted + uni-erlangen.de + University of Erlangen-Nuremberg (partial) + uni-karlsruhe.de + Karlsruhe Institute of Technology (partial) + uni-passau.de + University of Passau (partial) + uni-potsdam.de + University of Potsdam (partial) + uni-saarland.de + Uni-Saarland.de (partial) + uni-stuttgart.de + University of Stuttgart (partial) + uni-tuebingen.de + University of Tübingen (partial) + unibet.com.au + Unibet Australia + uniblue.com + Uniblue + unicaondemand.com + Unica (partial) + unid.utah.edu + University of Utah (partial) + unifiedtracking.com + Nanigans (partial) + unigine.com + Unigine + unileoben.ac.at + Uni Leoben.ac.at (partial) + unimi.it + Unimi.it (partial) + uninett.no + Uninett (partial) + unique-vintage.com + Unique Vintage + unisg.ch + Unisg.ch + unistra.fr + University of Strasbourg (partial) + united-internet.de + United Internet + united.com + United Airlines + uniteddomains.com + United Domains + unitednuclear.com + United Nuclear Scientific + unitedrepublic.org + United Republic (partial) + unitedsafcu.org + United San Antonio Federal Credit Union + unity3d.com + Unity (partial) + univ-brest.fr + Univ-Brest.fr (partial) + univention.de + Univention.de + universalsubtitles.org + Universal Subtitles + university.monetate.com + Monetate (partial) + universityadmissions.se + universityadmissions.se + univie.ac.at + Univie.ac.at (partial) + unknowncheats.me + Unknowncheats.me + unlimited401k.com + Nabers.com + unm.edu + UNM + unmultimedia.org + UN Multimedia.org + uno.im + Uno.im + unodc.org + UNODC.org + unoeuro.com + UnoEuro.com (partial) + unpac.org + unPAC + unr.li + unrestrict.li + unrealengine.com + Unreal Engine + unrestrict.li + unrestrict.li + unt.edu + University of North Texas (partial) + untappd.com + Untappd.com + unwantedwitness.or.ug + Unwanted Witness.or.ug + uofulaw.org + University of Utah (partial) + uoregon.edu + UOregon (Partial!) + uow.edu.au + University of Wollongong + up0.net + Lyris (partial) + upatient.com + uPatient + upay.co.uk + Upay + upaymobile.co.uk + Upay + upc.edu + Polytechnic University of Catalonia (partial) + upc.es + Polytechnic University of Catalonia (partial) + upc.nl + UPC + upforit.com + Alcuda (partial) + upgnation.com + The Nation + upgradedself.com + Upgraded Self.com + upic.me + upic.me (partial) + uplay.ubi.com + Uplay.ubi.com + upload.yubico.com + Yubico + uploaded.net + uploaded.net (partial) + uploaded.to + Cyando (partial) + uploading.com + Uploading.com (partial) + uploads.va.gov + US Department of Veterans Affairs + upp.st + UppSite (partial) + upphandling24.idg.se + IDG.se (partial) + uppsite.com + UppSite (partial) + uprotect.it + Uprotect.it + uproxy.org + uProxy.org + upsploit.com + upSploit.com + upstart.com + Upstart + uptilo.com + Uptilo + uptime.netcraft.com + Netcraft.com (partial) + uptimerobot.com + Uptime Robot + upu.int + UPU.int + upworthy.com + Upworthy.com (partial) + upx69.com + upx69.com + uqwimax.jp + UQ WiMAX + urac.org + URAC + urbanterror.info + UrbanTerror.info (partial) + urbanvilla.nl + Urban Villa.nl + urkb.ch + Schweizer Kantonalbanken + urlaubspiraten.de + urlaubspiraten + urlquery.net + urlQuery + urltrends.com + UrlTrends + urospace.de + Urospace (partial) + urx.com + URX.com (partial) + us-cert.gov + US-Cert.gov + us.hsbc.com + HSBC + usainteanne.ca + usainteanne + usajobs.gov + US government (partial) + usalliance.org + USAlliance + usask.ca + University of Saskatchewan (partial) + usat.ly + bit.ly vanity domains + usatoday.com + USA Today (partial) + usb.org + USB.org (partial) + usbank.com + USBank + usbclientadvocacy.com + U.S. Bank Client Advocacy + usc.edu + University of Southern California (partial) + usdoedregistration.ed.gov + ED.gov (partial) + use-enco.com + Use-Enco.com + use.typekit.com + Typekit + usenetjunction.com + Usenet Junction + usenetserver.com + UsenetServer + usenix.org + USENIX + useotrproject.org + USE OTR Project.org + user.hao123.com + halo123 (partial) + user.lightsource.ca + Canadian Light Source (partial) + userecho.com + UserEcho (partial) + useresponse.com + UseResponse.com (partial) + userfox.com + userfox + userimages.static.zgncdn.com + Zynga (partial) + users.admin.badgeville.com + Badgeville.com (partial) + users.dal.net + DALnet + users.vimention.com + Vimention.com (partial) + userscape.com + UserScape + userscripts.org + UserScripts.org + userstyles.org + Userstyles.org + uservoice.com + Uservoice (partial) + usessh001.com + Use SSH 001.com + usfca.edu + USF CA.edu (partial) + usfreeads.com + USFreeads (partial) + usfsp.edu + University of South Florida (partial) + ushmm.org + ushmm.org + usi.edu + University of Southern Indiana (partial) + usmagazine.com + Us Magazine.com (partial) + usnautic.com + US Nautic (partial) + usni.org + USNI.org (partial) + uspirates.org + Pirate Party + usplusu.com + UsplusU.com + usps.com + USPS + uspsoig.gov + US government (partial) + usrjoy.com + UsrJoy + usrowing.org + USRowing (partial) + ussco.com + United Stationers (partial) + usshortcodes.com + Common Short Code Administration (partial) + usvisa-info.com + CSC Visa Information Service + usweeklysubscriptions.com + US Weekly subscriptions.com + ut.edu + University of Tampa + utdallas.edu + University of Texas at Dallas (partial) + utexas.edu + University of Texas at Austin (partial) + utica.edu + Utica College + utk.edu + University of Tennessee, Knoxville + utl.pt + Technical University of Lisbon + utopia.ai + Utopia + utoronto.ca + University of Toronto (partial) + utrecht.nl + NL Overheid + utsandiego.com + UTSanDiego.com (partial) + utsouthwestern.edu + University of Texas Southwestern Medical Center (partial) + utsystem.edu + University of Texas System + uttlesford.gov.uk + UK Local Government + utwente.nl + UTwente.nl (partial) + uu.se + UU.se + uua.org + Unitarian Universalist Association of Congregations (partial) + uvic.ca + UVic.ca (partial) + uvm.edu + UVM.edu (partial) + uvo.gov.sk + SlovakGoverment + uvpn.de + uVPN + uvt.nl + Tilburg University (partial) + uw.edu + University of Washington (partial) + uwaterloo.ca + University of Waterloo (partial) + uwinnipeg.ca + UWinnipeg.ca (partial) + uxt.ucsd.edu + UCSD + v-identity.com + v-identity.com + v.calameo.com + Calameo.com (partial) + v.calheers.ca.gov + Covered California (partial) + v.gd + v.gd + v.vungle.com + Vungle (partial) + v2cigs.com + V2 Cigs (partial) + v2ex.com + v2ex (partial) + v3.co.uk + V3.co.uk (partial) + va.gov + US Department of Veterans Affairs + vacanteen.va.gov + US Department of Veterans Affairs + vacareers.va.gov + US Department of Veterans Affairs + vacenza.com + vacenza.com (partial) + vaforvets.va.gov + US Department of Veterans Affairs + vagrantcloud.com + Vagrant Cloud.com + vagrantup.com + Vagrantup.com (partial) + valeofglamorgan.gov.uk + UK Local Government + valleyfirstcu.org + Valley First CU.org + valoancaptain.com + VA Loan Captain + valtiolle.fi + Valtiolle.fi + value-domain.com + Value-Domain.com (partial) + valueapplications.com + Value Applications + valueclick.com + ValueClick (partial) + valueclickmedia.com + ValueClick (partial) + valuecommerce.com + ValueCommerce (partial) + valuecommerce.ne.jp + ValueCommerce (partial) + valuedopinions.co.uk + Valued Opinions + valuehost.ru + ValueHost.ru + valueshop.co.uk + ValueShop.co.uk + valvesoftware.com + Valve Software.com (partial) + vanillaforums.com + Vanilla Forums (partial) + vanillamastercard.com + VanillaMastercard + vanillicon.com + Vanillicon.com + vanlanschot.com + Van Lanschot.com + vanlanschot.nl + Van Lanschot.nl + vansso.harland.net + Harland Clarke + variety.com + Variety.com (partial) + varnish-cache.org + Varnish-Cache.org + varnish-software.com + Varnish-Software.com (partial) + varuste.net + Varuste.net + vast.com + Vast (partial) + vatt.fi + Valtion taloudellinen tutkimuskeskus + vault.cca.edu + Vault.cca.edu + vault.studio.ndnmediaservices.com + NDN media services.com + vayable.com + Vayable.com + vbseo.com + vBSEO (partial) + vbulletin.com + vBulletin + vce.com + VCE.com (partial) + vcint.com + Victor Chandler International + vcommerce.com + Vcommerce (partial) + vdio.com + Vdio + vdopia.com + Vdopia + vdoth.com + Vdoth.com + vdownloader.com + VDownloader + vdownloader.es + VDownloader + vdqbulbs.com.au + VDQ Bulbs.com + veber.co.uk + Veber.co.uk + vectormediagroup.com + Vector Media Group + vedphoto.com + vedphoto.com (partial) + vegasdealhunter.com + Vegas Deal Hunter + vegaspartnerlounge.com + Vegas Partner Lounge + vehbidz.com + VehBidz (partial) + vektorbank.com + vektorbank.com + velleman.be + Velleman Group (partial) + velleman.eu + Velleman Group (partial) + vellemanusa.com + Velleman Group (partial) + velocitymicro.com + Velocity Micro + velox-project.eu + Velox-Project.eu + vendercom.com + Vendercom (partial) + vendetta-online.com + Vendetta Online (partial) + vendorsvoice.idg.se + IDG.se (partial) + ventrachicago.com + Ventra Chicago.com + veracode.com + Veracode.com + verbraucher-sicher-online.de + Verbraucher-sicher-online.de + verdadmedia.com + Verdad Media + vereinigte-ikk.de + Vereinigte IKK + verfassungsschutz.de + Bundesamt für Verfassungsschutz + verifiedvoting.org + Verified Voting + verifiedvotingfoundation.org + Verified Voting + verigames.com + Verigames.com + verio.com + Verio (partial) + verisign-japan-domain.com + VeriSign (partial) + verisign.be + VeriSign (partial) + verisign.ch + VeriSign (partial) + verisign.co.jp + VeriSign (partial) + verisign.co.nz + VeriSign (partial) + verisign.co.uk + VeriSign (partial) + verisign.com + VeriSign (partial) + verisign.com.au + VeriSign (partial) + verisign.com.br + VeriSign (partial) + verisign.com.hk + VeriSign (partial) + verisign.com.sg + VeriSign (partial) + verisign.com.tw + VeriSign (partial) + verisign.de + VeriSign (partial) + verisign.dk + VeriSign (partial) + verisign.es + VeriSign (partial) + verisign.fr + VeriSign (partial) + verisign.it + VeriSign (partial) + verisign.nl + VeriSign (partial) + verisign.se + VeriSign (partial) + verisigninc.com + VeriSign (partial) + verisignlabs.com + Verisign Labs.com (partial) + verivox.de + Verivox (partial) + verizon.com + Verizon (partial) + verizon.net + Verizon (partial) + verizonbusiness.com + Verizon (partial) + verizonenterprise.com + Verizon Enterprise (partial) + verizonwireless.com + Verizon Wireless + verkkokauppa.duodecim.fi + Duodecim.fi + veronmaksajat.fi + Veronmaksajat + versacart.com + VersaCart Systems + versioneye.com + VersionEye.com + vervehosting.com + Verve Hosting (partial) + verzekeringssite.nl + Verzekeringssite.nl (partial) + vesica.ws + Vesica + vespermarine.co.* + Vesper Marine + vespermarine.com.au + Vesper Marine + vesselbags.com + Vessel + vevo.com + VEVO + vfemail.net + VFEmail.net + vg.no + VG.no + vgocom.com + VGO Com.com (partial) + vgwort.de + VG WORT (partial) + viaforensics.com + viaForensics.com + viaverio.com + Viaverio.com + viber.com + Viber (partial) + vibrantmedia.com + Vibrant + vic20.blipp.com + Blipp.com + vice.com + Vice (partial) + victoriassecret.com + Victoria's Secret (partial) + victoriassecretcanada.ca + Victorias Secret Canada.ca + victorinox.com + Victorinox + victorops.com + VictorOps.com + vid.ly + Vid.ly (partial) + vid.me + Vid.me + vidahost.com + Vidahost (partial) + vidaysalud.com + Vida y Salud.com (partial) + vidble.com + Vidble.com + viddler.com + Viddler.com (partial) + video-dean.com + Video Dean + video.eetimes.com + EE Times (mixed content) + video.pbs.org + Public Broadcasting Service (partial) + videoaidedinstruction.com + Video Aided Instruction + videodroid.org + Videodroid.org + videogamegeek.com + BoardGameGeek + videolan.org + VideoLAN (partial) + videoplaza.tv + Videoplaza.tv (partial) + videopp.com + VideoPP.com (partial) + videopros.com + VideoPros + videos.toypics.net + Toypics + videotron.com + Videotron.com (partial) + vidup.me + Vidup.me (partial) + vidyard.com + Vidyard (partial) + viedemerde.fr + Beta & Cie (partial) + viepratique.fr + Vie Pratique.fr (partial) + viewablemedia.net + Visible Measures (partial) + viewmychart.com + MyChart + viglink.com + VigLink + vikingvpn.com + VikingVPN.com + villahostels.com + Villa Saint Exupéry (partial) + villas4you.co.uk + Wyndham (partial) + vimention.com + Vimention.com (partial) + vimention.mobi + Vimention.com (partial) + vine.co + Vine.co + violetdarkling.com + Violet Darkling.com + violetindigo.com.au + Violet Indigo + vip.vetbiz.gov + US Department of Veterans Affairs + vipcell.com.tr + VipCell + vippy.co + Vippy.co + vipserv.org + VIPserv.org + virginaustralia.com + Virgin Australia + virginiamason.org + Virginia Mason Hospital & Medical Center + virginmedia.com + Virgin Media.com (partial) + virginmobileusa.com + Virgin Mobile + virt-manager.org + virt-manager.org + virtkick.io + VirtKick.io + virtual-server.org + Virtual-Server.org + virtualbox.org + VirtualBox + virtualedge.com + ADP VirtualEdge + virtualnewscenter.com + Virtual News Center + virtualnewscenter.wpengine.netdna-cdn.com + Virtual News Center + virtualspirits.com + Virtual Sprits + virurl.com + VIRURL + virusbtn.com + Virus Bulletin + virusec.com + Virusec.com + virustotal.com + VirusTotal + virwox.com + VirWoX.com + visa.com + Visa (partial) + visabuxx.com + Visa Buxx.com (partial) + visaeurope.com + Visa Europe (partial) + visaforchina.org + Visaforchina.org + visahq.com + VisaHQ + visaliatimesdelta.com + Visalia Times-Delta + visatovietnam.org + Visa to Vietnam + vishakeswwwabcde.trappedinsidethecomputer.net + trappedinsidethecomputer.net (partial) + visiba.com + Visiba.com + visibletechnologies.com + Visible Technologies + visionairlines.com + Vision Airlines + visionartforum.com + Vision Art Forum.com (partial) + visistat.com + VisiStat.com (partial) + visitorboost.com + Awio Web Services (partial) + visitormotion.com + etracker + vispashop.com + Vispa (partial) + vistech.net + Vistech Communications + vistumbler.net + Random Intervals (partial) + visual-paradigm.com + Visual Paradigm + visualisingadvocacy.org + Visualising Advocacy.org + visualwebsiteoptimizer.com + Visual Website Optimizer (partial) + vitalads.com + VitalAds (partial) + vitalcred.com.br + PagPop + vitalmend.com + VitalMend.com (partial) + vitamindcouncil.org + Vitamin D Council + vitaminshoppe.com + Vitamin Shoppe.com (partial) + vitamintalent.com + Vitamin T + vivaciti.net + Vivaciti (partial) + viviscal.co.uk + Viviscal + vk.com + VK (experimental new rule) + vk.me + VK (experimental new rule) + vkontakte.ru + VK (experimental new rule) + vlada.gov.sk + SlovakGoverment + vlagtwedde.nl + NL Overheid + vlc-addons.org + openDesktop.org + vle.dmu.ac.uk + DMU + vlg.cs.nyu.edu + New York University (partial) + vlissingen.nl + NL Overheid + vmail.me + Vmail.me + vmware.com + VMware (partial) + vn5socks.com + vn5socks.com + voa.va.gov + US Department of Veterans Affairs + vod.super8-movie.com + ParamountMovies.com + vod.transformersmovie.com + ParamountMovies.com + vodafone.co.nz + Vodafone + vodafone.co.uk + Vodafone + vodafone.de + Vodafone + vodafone.ie + Vodafone + voffka.com + Voffka (partial) + vogel.de + Vogel.de + voicedailydeals.com + VOICE Daily Deals + voicefive.com + VoiceFive + voices.com + Voices.com (partial) + voicestar.com + Marchex (partial) + void.gr + Greek-various + voipdistributor.net + VoIPDistributor.net + voipuserportal.co.uk + Entanet (partial) + volatilesystems.com + Volatile Systems.com (partial) + volcanoecigs.com + Volcano eCigs + volgistics.com + Volgistics (partial) + volkswagenbank.de + Volkswagen Bank + volotea.com + Volotea.com + volunteermatters.com + Volunteer Matters + volusion.co.uk + Volusion (partial) + volusion.com + Volusion (partial) + vonage.ca + Vonage + vonage.co.uk + Vonage + vonage.com + Vonage + voo.st + Voost! + voodoo.com + Voodoo.com (partial) + voodooping.com + Voodoo Ping.com + vorpal.io + Vorpal.io + vorratsdatenspeicherung.de + AK-Vorrat + voscast.com + VosCast.com + votervoice.net + voterVOICE + votesmart.org + Project Vote Smart + votewatch.eu + VoteWatch.eu + voting.academiccouncil.duke.edu + Duke University (partial) + voucherexpress.co.uk + Hemmingway Marketing (partial) + vovici.com + Vovici.com (partial) + vox.com + Vox.com (false MCB) + voxer.com + Voxer (partial) + voxility.com + Voxility.com + vp1-voiceportal.megapath.com + MegaPath (partial) + vpn.aclutx.org + ACLU of Texas + vpn.nordicacademy.no + Nordic Academy.no (partial) + vpn4all.com + VPN4ALL + vpnbook.com + vpnbook.com + vpnglobe.com + VPNGlobe.com + vpnincome.com + in-Disguise.com + vpnreactor.com + VPNReactor.com + vpnreviewer.com + VPN Reviewer.com + vpnsearch.net + VPNSearch.net + vpnservice.ru + VPNService.ru + vps.net + VPS.net (partial) + vpsboard.com + vpsBoard.com + vr.org + Vr.org (partial) + vr.preferred-reservations.com + Preferred Reservations (partial) + vr.se + VR.se + vrijstellingoldtimer.nl + Vrijstelling Oldtimer + vs.ch + Schweizer Regierung + vsco.co + VSCo.co + vsearch2.net + vsearch2.net + vsexshop.ru + vsexshop.ru (partial) + vstech.net + Versus Technologies + vt.edu + VT.edu (partial) + vtcsec.ru + VTCSec.ru + vtecdirect.com + VTEC Direct + vtiger.com + Vtiger.com + vtluug.org + VTLUUG.org + vtracy.de + Vtracy + vttts.readspeaker.com + ReadSpeaker + vtunnel.com + VTunnel + vtv.fi + Valtiontalouden tarkastusvirasto + vub.sk + Vub.sk + vue.com + Pearson (partial) + vueling.com + Vueling + vulnscan.org + Vulnscan.org + vumanity.net + Vumanity.net (partial) + vungle.com + Vungle (partial) + vuze.com + Vuze + vws3.primus.ca + Primus Canada (partial) + vz-nrw.de + Verbraucherzentrale Nordrhein-Westfalen + vzaar.com + vzaar (partial) + vzw.com + Verizon Wireless + w-tune.com + Web Tune Factory + w.kuruc.org + Kuruc.info + w.mlv-cdn.com + MyLikes + w00t.com + Woot (partial) + w00tads.com + w00tads.com + w01.my-files.de + My-files.de + w1.buysub.com + CDS Global (partial) + w3counter.com + W3Counter.com + w3roi.com + Awio Web Services (partial) + waarschuwingsdienst.nl + NL Overheid + wac.20f5.edgecastcdn.net + ReelVidz.com (partial) + wac.51d5.edgecastcdn.net + PutLocker (partial) + wachovia.com + Wachovia + waeckerlin.org + Waeckerlin.org + waffle.io + Waffle.io + waffles.fm + Waffles.fm + wageningen.nl + NL Overheid + wagner.edu + Wagner College + waikato.ac.nz + University of Waikato (partial) + waindigo.org + Waindigo.org + waitrose.com + Waitrose.com (partial) + waitrosedirect.com + Waitrose Direct.com (partial) + walderwyss.com + Walder Wyss.com + walgreens.com + Walgreens (partial) + walkingmen.com + Walking Men + walkit.com + walkit.com + wallpapers-today.com + Wallpaperstoday + wallst.com + Markit On Demand + walmart.com + Walmart.com (partial) + walthamforest.gov.uk + UK Local Government + walthers.com + Walthers + wandisco.com + WANdisco.com (partial) + wantful.com + Wantful + wapo.st + bit.ly vanity domains + wargaming.com + Wargaming.net + wargaming.net + Wargaming.net + warmlyyours.com + WarmlyYours + warnerartists.com + Warner Artists + warosu.org + warosu.org + warrington.gov.uk + UK Local Government + wartstick.com + WartStick.com (false MCB) + warwick.ac.uk + University of Warwick (partial) + washington.edu + University of Washington (partial) + washpost.com + Wash Post.com + wasilczyk.pl + Wasilczyk.pl + water-challenge.com + Water-Challenge.com (partial) + water.org + Water.org (partial) + waterfoxproject.org + Waterfox project.org + watermarquee.com + Water Marquee + watershed.co.uk + Watershed + watkins.edu + Watkins.edu + watsi.org + Watsi.org + watson.ch + Watson.ch + wattpad.com + Wattpad.com (partial) + wauland.de + Wauland.de + wavecon.de + WaveCon.de + wavpin.com + Wavpin + wayf.ukfederation.org.uk + UK Access Management Federation + wayskinny.com + wayskinny.com + wbginvestmentclimate.org + International Finance Corporation (partial) + wbs-law.de + Weilde Beuger Solmecke + wcas.nu + bit.ly vanity domains + wck2.companieshouse.gov.uk + Companies House (partial) + wd2go.com + WD2go.com + wdfiles.com + Wikidot (partial) + wdm.org.uk + World Development Movement + wdr.de + Wdr.de + wdws.com + WDWS (partial) + wealthytheatre.org + Grand Rapids Community Media Center + wearechoosy.com + Argos (partial) + weather.mercurynews.com + MediaNews Group (partial) + weatherzone.com.au + Weatherzone (partial) + web-hosting.com + web-hosting.com (partial) + web-registry.com + web-registry.com + web-stat.com + web-stat.com + web-stat.net + Web-Stat.net + web.com + Web.com (partial) + web.consumerreports.org + Consumer Reports (partial) + web.datemas.de + Datemas.de (partial) + web.nvd.nist.gov + National Institute of Standards and Technology (partial) + web.satd.uma.es + Uma.es + web.synch.hu + Synch.hu (partial) + web.telegram.org + Telegram.org + web4u.cz + Web4U + web5.uottawa.ca + University of Ottawa (partial) + webalert.jp + WebAlert.jp + webapp.ftb.ca.gov + California Franchise Tax Board + webapp.icarol.com + iCarol + webappl.web.sh.se + SH.se + webassets.scea.com + Sony (partial) + webassign.net + WebAssign + webbyawards.com + Webby Awards (partial) + webcamboys.us + WebcamBoys (partial) + webcampus.wilmu.edu + Wilmington University (partial) + webchat.oftc.net + OFTC Webchat + webcitz.com + WebCitz + webclaim.net + EDI Health Group + webcompat.com + webcompat.com + webcon.japias.jp + Japias.jp (partial) + webcontrolcenter.com + webcontrolcenter.com + webcruiter.no + Webcruiter (partial) + webdav.mydrive.ch + Mydrive + webdesignmarketing.eu + Web Design Marketing + webdev.pdu.edu + Portland State University (false MCB) + webdevstudios.com + WebDevStudios (partial) + webento.com + Webento + webfaction.com + Web Faction + webfestglobal.com + Webfest Global + webfonts.fonts.com + Monotype Imaging (partial) + webfonts.fontslive.com + Monotype Imaging (partial) + webforest.eu + Web Forest.eu + webforms.lidl.com + Lidl (partial) + webfoundation.org + Web Foundation.org + webfusion-support.co.uk + webfusion (partial) + webfusion.co.uk + webfusion (partial) + webfwd.org + Mozilla + webgility.com + Webgility (partial) + webglobe.sk + Webglobe.sk + webgo24.de + WebGo24.de + webhost.biz + Ecommerce (partial) + webhost4life.com + WebHost4Life + webhostinggeeks.com + Web Hosting Geeks.com + webhostingpad.com + Web Hosting Pad (partial) + webhostingstuff.com + WebHostingStuff (partial) + webhostingtalk.com + Web Hosting Talk (partial) + webhostlist.de + webhostlist.de + webhostone.de + WebhostOne + webhungary.hu + Webhungary.hu + webink.com + WebINK.com (partial) + webinspector.com + Web Inspector + webkit.org + Webkit.org + webkite.com + WebKite.com (partial) + weblogawards.org + Weblog Awards + webmagazin.de + webmagazin.de (partial) + webmail.argewebhosting.nl + Argeweb hosting.nl + webmail.axboe.dk + Axboe (partial) + webmail.bln.de.clara.net + Claranet (partial) + webmail.claranet.pt + Claranet (partial) + webmail.daily.co.uk + Daily + webmail.digi.hu + Digi.hu + webmail.dmu.ac.uk + DMU + webmail.eol.hu + Invitel (partial) + webmail.fit.edu + Florida Institute of Technology (partial) + webmail.forthnet.gr + Forthnet + webmail.gigahost.dk + Gigahost.dk + webmail.graasmilk.net + graasmilk.net + webmail.hcltech.com + HCL Technologies (partial) + webmail.hosts.co.uk + Hosts + webmail.htwg-konstanz.de + HTWG Konstanz + webmail.loxinfo.co.th + Webmail.loxinfo.co.th + webmail.nedlinux.com + NedLinux.com + webmail.noxa.de + noxa.de + webmail.onlime.ch + Onlime.ch + webmail.planet-school.de + PS-Webhosting Webmail + webmail.prq.se + prq.se + webmail.schokokeks.org + schokokeks.org + webmail.server1.firstfind.nl + Yourhosting + webmail.sf-mail.de + SF-Mail.de + webmail.sk + Swan.sk + webmail.swan.sk + Swan.sk + webmail.szm.com + Szm.com + webmail.ucsd.edu + UCSD + webmail.ukeer.de + ukeer.de (partial) + webmail.usainteanne.ca + usainteanne + webmail.webstyle.ch + webstyle.ch (partial) + webmail.websupport.at + Websupport_sk_cz_at_hu + webmail.websupport.sk + Websupport_sk_cz_at_hu + webmail.wippies.com + Wippies Webmail + webmail4.names.co.uk + Names + webmailcluster.perfora.net + 1&1 Internet + webmaker.org + Mozilla Webmaker + webmdhealth.com + WebMD Health + webmdhealthservices.com + WebMD Health Services + webmedia.bankofamerica.com + BankofAmerica.com (partial) + webnium.co.jp + Webnium.co.jp + webofknowledge.com + Web of Knowledge + webonic.hu + Websupport_sk_cz_at_hu + weboolu.com + Weboolu (partial) + webooluinc.com + Weboolu (partial) + webpower.nl + Web Power (partial) + webprospector.de + WebProspector (partial) + webroot.com + Webroot.com (partial) + webropolsurveys.com + Webropolsurveys.com + websanity.com + WebSanity + websecurify.com + Websecurify.com + websense.com + Websense (partial) + webservices.amazon.com + Amazon Web Services + webshared.mcore.com + Motricity (partial) + webshopapp.com + Webshopapp.com + webshoprevolution.com + WebShop Revolution + websitealive.com + WebsiteAlive (partial) + websitealive1.com + WebsiteAlive (partial) + websitealive10.com + WebsiteAlive (partial) + websitealive2.com + WebsiteAlive (partial) + websitealive3.com + WebsiteAlive (partial) + websitealive4.com + WebsiteAlive (partial) + websitealive5.com + WebsiteAlive (partial) + websitealive6.com + WebsiteAlive (partial) + websitealive7.com + WebsiteAlive (partial) + websitealive8.com + WebsiteAlive (partial) + websitealive9.com + WebsiteAlive (partial) + websitegrowers.com + WebsiteGrowers.com + websitesettings.com + websitesettings.com + websocially.com + WebSocial.ly (partial) + webspace4all.eu + Webspace4All + webspace4clans.de + Webspace4Clans.de (partial) + webspectator.com + WebSpectator.com + websrv01.kidshealth.org + KidsHealth/TeensHealth + webstarts.com + WebStarts + webstaurantstore.com + The Webstaurant Store (partial) + websupport.at + Websupport_sk_cz_at_hu + websupport.cz + Websupport_sk_cz_at_hu + websupport.sk + Websupport_sk_cz_at_hu + webtimeclock.com + Webtimeclock.com + webtracker.jp + Webtracker.jp + webtraffiq.com + WebtraffIQ.com (partial) + webtranslateit.com + Webtranslateit + webtraxs.com + Webtraxs.com (partial) + webtrekk.net + Webtrekk + webtrends-lb.ericsson.net + Ericsson (partial) + webtype.com + WebType (partial) + webwewant.org + WebWeWant.org + webxakep.net + WebXakep.Net + webxmedia.co.uk + WEBxMedia + webzilla.com + WebZilla + wechat.com + WeChat (partial) + wed.is + Wed.is + weebly.com + Weebly (partial) + weechat.org + WeeChat.org + weekendjeweg.nl + Holidaybreak (partial) + weeklyplus.com + WeeklyPlus (partial) + weekplan.net + Week Plan + weert.nl + NL Overheid + wefightcensorship.org + We Fight Censorship (partial) + wegohealth.com + Wego Health.com (partial) + wegoted.com + WeGotEd.com + wegotwax.com + WeGotWax.com + weheartit.com + We Heart It + weibo.cn + Sina Weibo (partial) + weissinc.com + Weiss Research + welcomecottages.com + Wyndham (partial) + well.com + Whole Earth 'Lectronic Link (partial) + wellbid.com + wellbid.com + wellingborough.gov.uk + UK Local Government + wello.com + Wello.com + wellsfargo.com + Wells Fargo + welsh-country-cottages.co.uk + Wyndham (partial) + weltbild.ch + Weltbild.ch + wemineltc.com + Wemineltc.com + weneedtoknow.info + We Need to Know.info + wennect.info + Wennect.info + weoinvoice.com + weoInvoice + wepay.com + WePay (partial) + wepromise.eu + WePromise.EU + werkenbijdeoverheid.nl + NL Overheid + wesnoth.org + Battle for Wesnoth (partial) + west-lindsey.gov.uk + UK Local Government + westconsincu.org + Westconsin Credit Union + westconsincuhb.org + Westconsin Credit Union + westdevon.gov.uk + UK Local Government + westjet.com + West Jet + westlandutrecht.nl + WestlandUtrecht Bank + westlandutrechtbank.nl + WestlandUtrecht Bank + westlaw.com + Westlaw.com (partial) + westminster.gov.uk + UK Local Government + westoxon.gov.uk + UK Local Government + westpac.com.au + Westpac + westsussex.gov.uk + UK Local Government + wetransfer.com + WeTransfer + weusecoins.com + WeUseCoins + wgea.gov.au + Workplace Gender Equality Agency + what.cd + WhatCD + whatbox.ca + Whatbox.ca + whatimg.com + Whatimg.com + whatismyip.com + WhatIsMyIP + whatsapp.com + WhatsApp.com + whatsmydns.net + Whats My DNS.net + whatsuccesstakes.com + Global Marketing Strategies (partial) + wheel.sk + Wheel.sk + where.com + Where.com + which.co.uk + Which? (partial) + which.net + Which? (partial) + whirlpool.net.au + Whirlpool + whispergifts.com + Whisper Gifts (partial) + whispersystems.org + WhisperSystems (partial) + whistleout.co.uk + WhistleOut (partial) + whistleout.com + WhistleOut (partial) + whistleout.com.au + WhistleOut (partial) + whitecatpublications.com + White Cat Publications + whitefence.com + WhiteFence.com (partial) + whitehatsec.com + WhiteHat Security + whitehothair.co.uk + White Hot Hair.co.uk (partial) + whitelabel.net + Whitelabel.net + whitelabeldating.alcuda.com + Alcuda (partial) + whiteout.io + Whiteout.io + whitepages.com + Whitepages.com (partial) + whmcs.com + WHMCS (partial) + whms.com + WHMS-FM (partial) + wholefoodsmarket.com + Whole Foods Market.com + wholesalelabels.com + Wholesale Labels.com (partial) + whonix.org + Whonix.org + whosampled.com + WhoSampled.com (partial) + whsmith.co.uk + WHSmith (partial) + whyy.org + WHYY.org + wi-fi.org + Wi-Fi Alliance + wickedfiber.com + Wicked Fiber + wickedlasers.com + Wicked Lasers + wickr.com + Wickr.com + widgetbox.com + Widgetbox.com (partial) + widgetserver.com + Widgetbox.com (partial) + wierden.nl + NL Overheid + wifidb.net + Random Intervals (partial) + wigan.gov.uk + UK Local Government + wiggle.co.uk + Wiggle (partial) + wigle.net + WiGLE + wiiings.com + Wiiings.com + wijchen.nl + NL Overheid + wiki.15m.cc + Wiki.15m.cc + wiki.c-base.org + C-Base + wiki.crypto.is + Crypto.is + wiki.cyanogenmod.org + CyanogenMod.org (false MCB) + wiki.fool.com + Fool.com (false MCB) + wiki.galaxyproject.org + Galaxy Project.org (partial) + wiki.hope.net + hope.net (false MCB) + wiki.kubuntu.org + Kubuntu.org (partial) + wiki.linuxlovers.at + Linuxlovers.at (false MCB) + wiki.musicbrainz.org + MusicBrainz + wiki.myportal.im + myPortal.im + wiki.openvas.org + OpenVAS.org (partial) + wiki.phpmyadmin.net + phpMyAdmin.net (partial) + wiki.schokokeks.org + schokokeks.org + wiki.sequanux.org + Sequanux.org (false MCB) + wiki.teamfortress.com + Team Fortress + wikibooks.org + Wikimedia + wikidata.org + Wikimedia + wikidot.com + Wikidot (partial) + wikifur.com + WikiFur + wikileaks.org + WikiLeaks + wikileaksparty.org.au + Wikileaks Party (partial) + wikimedia.ca + Wikimedia + wikimedia.org + Wikimedia + wikimediafoundation.org + Wikimedia + wikinews.org + Wikimedia + wikinvest.com + Wikinvest + wikipedia.org + Wikimedia + wikiquote.org + Wikimedia + wikisource.org + Wikimedia + wikispaces.com + Tangient (partial) + wikispooks.com + WikiSpooks + wikiversity.org + Wikimedia + wikivoyage.org + Wikimedia + wikivs.com + Wikivs.com + wiktionary.org + Wikimedia + wildapricot.org + Wild Apricot.org + wildarchives.com + WildArchives.com + wildcardcorp.com + Wildcard Corp.com + wildstar-online.com + WildStar online.com + wildwestdomains.com + Wild West Domains + wiley.com + Wiley (partial) + wilhelm-gym.net + wilhelm-gym.net + williamhill.com + William Hill (partial) + williams.edu + Williams College (partial) + willleathergoods.com + Will Leather Goods + willowgarage.com + Willow Garage (partial) + wilmu.edu + Wilmington University (partial) + wimdu.co.uk + Wimdu.co.uk + wimo.com + WiMo.com + win-rar.com + WinRAR + win-sv.jp + Win-sv.jp + wincent.com + Wincent.com + windows.mouselike.org + Telefónica (partial) + windows.net + Windows.net + windowsazure.com + Windows Azure + windowsitpro.com + Windows IT Pro (partial) + windowsphone.com + Windows Phone (partial) + windowssecrets.com + Windows Secrets.com (partial) + windstream.com + Windstream Communications (partial) + windstreambusiness.com + Windstream Business + wine-apps.org + openDesktop.org + wineaustralia.com + Wine Australia Corporation + winehq.org + WineHQ (partial) + wingolog.org + wingolog.org + winhardware.catalysis.com + Catalysis (partial) + winhawille.edu.hel.fi + Winhawille.edu.hel.fi + winhistory-forum.net + Winhistory Forum + winpcap.org + WinPcap + winsupersite.com + WinSuperSite.com (partial) + winswitch.org + Window Switch + winterswijk.nl + NL Overheid + winterthur.zh.piratenpartei.ch + PPS + wintiewin.com + WinTieWin + winzip.com + WinZip.com (partial) + wipmania.com + WIPmania + wired.com + Wired (false MCB, partial) + wiredforchange.com + Salsa Labs + wiredminds.de + WiredMinds (partial) + wireedit.com + WireEdit.com + wirelessmedia.ign.com + IGN (partial) + wireshark.org + Wireshark (partial) + wirral.gov.uk + UK Local Government + wishlistgranted.com + Wishlist Granted.com + wishmich.org + Make-A-Wish Foundation of Michigan + wishpot.com + Wishpot.com + withgoogle.com + With Google.com + witopia.net + WiTopia.net + wix.com + Wix (partial) + wiz.biz + Wiz.biz + wizards.com + Wizards of the Coast (partial) + wizbangblog.com + Wizbang + wizbangpop.com + Wizbang Pop + wk3.org + wk3.org + wl.easydategroup.com + Alcuda (partial) + wlfriends.org + Friends of WikiLeaks + wm4.pacific.net.au + Pacnet (partial) + wms.assoc-amazon.* + Amazon Associates + wnyc.org + WNYC + woahh.com + Woahh + wodc.nl + NL Overheid + wog.ch + World of Games + wolfram.com + Wolfram.com (partial) + wolframalpha.com + Wolfram Alpha (experimental) + wolframcloud.com + Wolframcloud.com + wolframscience.com + Wolframscience.com + wolfsonmicro.com + Wolfson Microelectronics (partial) + woltlab.com + WoltLab.com + wolverhampton.gov.uk + UK Local Government + womenonwaves.org + Womenonwaves.org + womenonweb.org + Women on Web + womensaid.ie + Women's Aid + womensexpova.com + Women Sex Pova.com (partial) + womenshealthspecialists.org + Women's Health Specialists (partial) + wonderlandmovies.de + Wonderlandmovies + wonga.com + Wonga.com + woobox.com + Woobox.com (partial) + woodgreen.org.uk + Wood Green.org.uk (partial) + woodgreenshop.org.uk + Wood Green Shop.org.uk + woodtreeswing.com + Wood Tree Swings + woopra.com + Woopra (partial) + woot.com + Woot (partial) + woothemes.com + WooThemes (partial) + wordcamp.org + WordCamp (partial) + wordentropy.org + Wordentropy.org + wordnik.com + Wordnik + wordpress.com + WordPress (partial) + wordpress.org + WordPress (partial) + wordpress2.trustthevote.org + TrustTheVote.org (false MCB) + work4labs.com + Work4 Labs + workaround.org + workaround.org + workforceportal.elabor.com + eLabor (partial) + workplacegiving.co.uk + Workplace Giving + world.popadscdn.net + PopAds + worldcat.org + WorldCat + worldchamberdirectoryonline.com + World Chamber of Commerce Directory (partial) + worldcitycard.com + World City Card + worldcommunitygrid.org + World Community Grid + worldfoodprize.org + The World Food Prize + worldfootballextra.com + World Football Extra + worldforpets.com.au + World for Pets.com.au + worldhealth.net + Worldhealth.net + worldlandscapearchitect.com + World Landscape Architecture + worldmarkbywyndham.com + Wyndham (partial) + worldmate.com + WorldMate.com + worldofwarplanes.* + World of Warplanes (partial) + worldpanelinfo.com + Wordpanelinfo + worldremit.com + WorldRemit.com + worldsecuresystems.com + Adobe Digital Marketing + worldwinner.com + Game Show Network (partial) + worstpills.org + WorstPills.org + woz.ch + Woz.ch + wp-poc.details.com + Details.com (false MCB) + wp.me + WP.me + wp.patheos.com + Pantheos (partial) + wpacracker.com + CloudCracker + wpc.016b.edgecastcdn.net + Web.com (partial) + wpengine.com + WP Engine + wpi.edu + Worcester Polytechnic Institute (partial) + wpmudev.org + wpmudev.org + wpp.com + WPP + wpstartbox.com + StartBox (partial) + wpymedia.nhm.ac.uk + NHM.ac.uk (partial) + wral.com + WRAL.com + wrd.cm + Wired (false MCB, partial) + writeapp.me + Writeapp.me + writelatex.com + writeLaTeX.com + wrms.catalyst.net.nz + Catalyst IT (partial) + wrzru.com + WRZRU + wrzuta.pl + Wrzuta.pl (partial) + ws.amazon.* + Amazon Associates + ws.amazon.co.* + Amazon Associates + ws.cnetcontent.com + CNET content.com + wservices.ch + wservices.ch + wsjeuropesubs.com + News Corporation (partial) + wsjsafehouse.com + News Corporation (partial) + wsws.org + World Socialist Web Site + wtfismyip.com + WTFismyIP + wtfuzz.com + WTFuzz.com + wto.org + WTO.org (partial) + wtop.com + Wtop.com (partial) + wtr.nhtsa.gov + US government (partial) + wuala.com + wuala + wufoo.com + Wufoo + wunderkraut.fi + Wunderkraut.fi + wunderlist.com + Wunderlist (partial) + wunderloop.net + AudienceScience + wupaymentsolutions.com + Western Union (partial) + wush.net + Wush.Net + wustl.edu + Washington University in St. Louis (partial) + wustlconnections.com + Washington University in St. Louis Alumni Association + wvu.edu + West Virginia University (partial) + ww.stallman.org + Stallman.org + ww2.epeat.net + EPEAT (partial) + ww7.investorrelations.co.uk + Global Investor Relations + wwdomains.com + Wild West Domains + wwte1.com + WWTE (partial) + wwte10.com + WWTE (partial) + wwte4.com + WWTE (partial) + wwte7.com + WWTE (partial) + wwte8.com + WWTE (partial) + wwte9.com + WWTE (partial) + www-10.lotus.com + Lotus (partial) + www-acs.ucsd.edu + UCSD + www-act.ucsd.edu + UCSD + www-cs.ucsd.edu + UCSD + www-cse.ucsd.edu + UCSD + www-ne.ucsd.edu + UCSD + www-prod-storage.cloud.caltech.edu.s3.amazonaws.com + Caltech + www-s.dakko.us + dakko.us (partial) + www-structures.ucsd.edu + UCSD + www-tc.pbs.org + Public Broadcasting Service (partial) + www.*.alaska.edu + University of Alaska (partial) + www.*.anl.gov + Argonne National Laboratory (partial) + www.*.arch.ethz.ch + ETH Zürich (partial) + www.*.bbb.org + Better Business Bureau (partial) + www.*.cardiff.ac.uk + Cardiff University (partial) + www.*.cf.ac.uk + Cardiff University (partial) + www.*.doe.gov + United States Department of Energy (partial) + www.*.duke.edu + Duke University (partial) + www.*.gta.arch.ethz.ch + ETH Zürich (partial) + www.*.herts.ac.uk + University of Hertfordshire (partial) + www.*.inmotionhosting.com + InMotion Hosting + www.*.mit.edu + Massachusetts Institute of Technology (partial) + www.*.ncsu.edu + North Carolina State University (partial) + www.*.newsvine.com + newsvine.com (partial) + www.*.nsf.gov + National Science Foundation (partial) + www.*.nyu.edu + New York University (partial) + www.*.onsugar.com + OnSugar + www.*.psu.edu + Pennsylvania State University (partial) + www.*.senate.gov + Senate.gov + www.*.soton.ac.uk + University of Southampton (partial) + www.*.t-mobile.co.uk + T-Mobile + www.*.uh.edu + University of Houston (partial) + www.*.uidaho.edu + University of Idaho (partial) + www.*.umaine.edu + University of Maine (partial) + www.*.unbit.it + Unbit.it (partial) + www.*.uni-mainz.de + University of Mainz (false MCB) + www.*.unibe.ch + University of Bern (partial) + www.*.vaforvets.va.gov + US Department of Veterans Affairs + www.*.vba.va.gov + US Department of Veterans Affairs + www.100-gute-gruende.de + 100-gute-gruende.de + www.1010ez.med.va.gov + US Department of Veterans Affairs + www.1177.se + 1177.se + www.123ehost.com + 123eHost.com + www.131002.net + 131002.net + www.17track.net + 17track.net + www.1984.is + 1984.is + www.1984hosting.com + 1984.is + www.1cart.co.nz + 1Cart + www.1deg.org + 1 Deg.org + www.1f0.de + 1f0.de (partial) + www.1in3campaign.org + One in 3 Campaign + www.1nightstandstory.com + 1NightStandStory + www.1phads.com + 1phads.com + www.1sand0s.nl + 1s and 0s.nl + www.1stwarning.com + Net Applications + www.1tw.org + bit.ly vanity domains + www.1ty.me + 1ty.me + www.2020mobile.es + 2020mobile + www.220volt.hu + 220Volt.hu + www.23andme.com + 23andMe.com + www.247filmz.com + 247filmz + www.256.com + 256.com + www.2dialog.com + 2Dialog.com (partial) + www.2ndvote.com + 2nd Vote.com + www.316space.com + BlueHost clients + www.316space.harralmedia.com + BlueHost clients + www.37signals.com + 37Signals + www.39dollarglasses.com + 39dollarglasses.com + www.3bbwifi.com + 3bbwifi.com + www.3dcenter.org + 3dcenter + www.3dglassesfree.com + 3dglassesfree.com (partial) + www.3dstats.com + 3DStats + www.3fm.nl + 3FM + www.451research.com + 451 Group + www.4gamer.net + 4gamer.net (partial) + www.4gifs.com + forgifs.com + www.4sevens.com + 4sevens + www.5vpn.net + 5vpn.net + www.6xq.net + 6xq.net (CAcert) + www.7chan.org + 7chan + www.7springs.com + 7 Springs.com + www.888173.net + 888173.net (partial) + www.972mag.com + 972 Mag.com (partial) + www.99.se + 99.se + www.Avanza.se + Avanza.se + www.Tunnelbear.com + TunnelBear + www.a16z.com + A16z.com + www.a1webstats.com + A1WebStats.com (partial) + www.a2e.de + a2e.de + www.a3li.li + a3li + www.aaai.org + Aaai.org + www.aaenhunze.nl + NL Overheid + www.aamc.org + AAMC.org + www.aartdevos.dk + Aart de Vos (partial) + www.aaspring.com + aaspring.com + www.ab9il.net + AB9IL.net + www.abacus.com + Abacus.com (partial) + www.abanet.org + American Bar Assocation + www.abbo-shop.ch + Abbo-shop.ch + www.abbott.com + Abbott Laboratories + www.abcm.ch + Bolo's Computer Museum + www.abdn.ac.uk + Abdn.ac.uk (partial) + www.abebooks.co.uk + AbeBooks + www.abebooks.com + AbeBooks + www.aberdeencity.gov.uk + UK Local Government + www.aberdeenshire.gov.uk + UK Local Government + www.abestweb.com + ABestWeb.com + www.abiresearch.com + ABI Research + www.ablegamers.com + AbleGamers + www.abnamro.nl + ABN AMRO Bank + www.abosgratis.de + Abosgratis.de + www.about.me + AboutMe + www.aboutairportparking.com + Oversee.net (partial) + www.aboutthedata.com + About the Data.com + www.above.com + Above.com (partial) + www.abovealloffers.com + All Above Offers + www.accelaworks.com + Accela Communications (partial) + www.access-kaiseki-tools.com + access-kaiseki-tools.com + www.accessguardian.com + AccessGuardian.com + www.accessibility.nl + Accessibility.nl + www.accesslabs.org + AccessLabs + www.account3000.com + account3000.com + www.accountchooser.com + Account Chooser + www.ace-analyzer.com + ace-analyzer.com + www.acikakademi.com + Acik Akademi.com + www.acls.org + ACLS.org + www.aclu-nj.org + ACLU of New Jersey (partial) + www.aclu-sc.org + ACLU of Southern California + www.aclu-wa.org + ACLU of Washington + www.aclunc.org + ACLU of Northern California + www.acluofnc.org + ACLU of North Carolina + www.acluofnorthcarolina.org + ACLU of North Carolina + www.aclutx.org + ACLU of Texas + www.acm.org + ACM.org (false MCB) + www.acorns.com + Acorns.com (partial) + www.acoustics.org + Acoustics.org + www.acoustid.org + AcoustID + www.acpa.ca + Air Canada Pilot's Association (partial) + www.acromediainc.com + Acro Media (partial) + www.actel.com + Actel.com + www.action-intell.com + Action Intell + www.actionsalvage.com + Action Auto Wreckers + www.activestatic.net + Active.com (partial) + www.acunetix.com + Acunetix.com + www.ada.lt + ada.lt (partial) + www.adadvisor.net + TARGUSinfo + www.adaptec.com + Adaptec.com (partial) + www.adaptivecomputing.com + Adaptive Computing + www.adbusters.org + Adbusters.org + www.adcash.com + Adcash + www.adda-sr.org + Attention Deficit Disorders Association - Southern Region + www.addbooks.se + AddBooks.se + www.addictech.com + Addictech + www.addictionhelpchat.com + Addiction Help + www.addison.com.hk + Addison.com.hk (partial) + www.adeccowaytowork.com + Adecco Way to Work + www.adentifi.com + adentifi.com + www.adform.com + Adform + www.adigital.org + adigital (partial) + www.adlibris.com + Adlibris/Capris + www.admin.asmp.org + American Society of Media Photographers + www.admission.com + Ticketmaster (partial) + www.adobetag.com + Adobetag.com + www.adoyacademy.se + Adoyacademy.se + www.adpeepshosted.com + Ad Peeps hosted.com + www.adperfect.com + AdPerfect (partial) + www.adperio.com + Adperio.com + www.adpselect.com + ADP Screening and Selection Services + www.adsafecontrol.com + AdSafe (partial) + www.adscendmedia.com + Adscend Media + www.adspeed.com + AdSpeed (partial) + www.adultcineporn.com + adultcineporn.com + www.adultswim.com + Adult Swim + www.advantagemedia.com + Advantage Business Media + www.advantageseoservices.com + Advantage + www.adviceguide.org.uk + Adviceguide (partial) + www.adyadvantage.com + Ady Advantage.com (partial) + www.aea.se + Aea.se + www.aeolusproject.org + Aeolus + www.aeriagames.com + Aeriagames + www.aeryon.com + Aeryon Labs + www.aesload.de + Aesload.de + www.aesnet.org + American Epilepsy Society (partial) + www.aetherflyff.com + Aether Flyff.com (partial) + www.afcea.org + AFCEA + www.afcom.com + AFCOM.com + www.afcyhf.com + Commission Junction + www.affair-guide.com + Affair-Guide.com (partial) + www.affili.net + affili.net (partial) + www.afford.com + Afford.com + www.affutd.com + AffUtd.com + www.afp548.com + AFP548.com (partial) + www.afra-berlin.de + AFRA-Berlin.de + www.afsp.org + American Foundation for Suicide Prevention + www.aftership.com + AfterShip.com + www.aftontrailrun.com + Afton Trial Run + www.agendaless.com + Agendaless.com + www.agilewebsolutions.com + AgileBits (partial) + www.agnitum.com + Agnitum + www.agrisupply.com + Agri Supply.com (partial) + www.agwa.name + Agwa.name + www.ahmia.fi + ahmia.fi + www.ai-online.com + Automotive Industries + www.ai.ai + Automotive Industries + www.airbnb.* + Airbnb (partial) + www.airbnb.com.* + Airbnb (partial) + www.airshipventures.com + AirshipVentures + www.airtricity.com + Airtricity + www.airvpn.org + Air VPN + www.akademikerforsakring.se + AkademikerFörsäkring.se + www.akademikerförsäkring.se + AkademikerFörsäkring.se + www.akira.org + Akira.org + www.akismet.com + Akismet + www.aklamio.com + aklamio.com + www.aktiiviraha.fi + handelsbanken.fi (partial) + www.alastairs-place.net + Alastair’s Place + www.albinoloverats.net + albinoloverats + www.alchemistowl.org + alchemistowl.org + www.alecomm.com + Alecomm.com + www.alertaenlinea.gov + OnGuard Online + www.alertsite.com + SmartBear (partial) + www.alex.se + Alex.se + www.alexcabal.com + Alex Cabal.com + www.alexishair.com + Alexis Hair (partial) + www.alias.io + alias.io + www.alice-dsl.de + AliceDSL + www.all-inkl.* + All-inkl.com + www.all4xs.net + all4xs.net + www.allafrica.com + allAfrica (partial) + www.alldaycalm.com + All Day Calm + www.alldebrid.fr + AllDebrid.com (partial) + www.allerderm.com + SmartPractice + www.alliancebernstein.com + AllianceBernstein (partial) + www.allianz-fuer-cybersicherheit.de + Allianz für Cyber-Sicherheit + www.allianz-fuer-cybersicherheit.org + Allianz für Cyber-Sicherheit + www.allianzfuercybersicherheit.de + Allianz für Cyber-Sicherheit + www.allingsas.se + Allingsas.se + www.allistene.fr + Allistene.fr + www.allunmanaged.com + AllUnmanaged.com + www.allybank.com + Ally Financial (partial) + www.alpha.gr + Greek-banks + www.alphabankcards.gr + Greek-banks + www.alsoactebis.com + ALSO Actebis + www.alt.ac.uk + Association for Learning Technology (partial) + www.altera.com + Altera.com (partial) + www.alternalabs.com + AlternaLabs (partial) + www.alternatives.ca + Alternatives.ca + www.altimatewellness.com + Altimate Wellness (partial) + www.alumfx.com + AlumFX.com + www.alumne.dtu.dk + Technical University of Denmark (partial) + www.alumni.utah.edu + University of Utah (partial) + www.alzforum.org + Alzforum.org (partial) + www.amara.org + Amara (false MCB) + www.amazingweb.co + amazingweb + www.amazon.co.jp + Amazon Japan (partial) + www.amberswann.com + Amber Swann Publishing (partial) + www.ambx.com + Ambx.com + www.amctheatres.com + AMCTheatres + www.ameliaandersdotter.eu + Amelia Andersdotter.eu + www.americanaexchange.com + Americana Exchange + www.americanancestors.org + American Ancestors.org (partial) + www.americanexpress.com + AmericanExpress + www.americanflyertrains.com + American Flyer Trains.com + www.americanfreedom.com + American Freedom.com + www.americanfuturefund.com + American Future Fund + www.americanscientist.org + American Scientist.org + www.americaslongestwar.com + America's Longest War + www.americorpsconnect.org + nationalserviceresources.org + www.amersfoort.nl + NL Overheid + www.ami.com + AMI.com + www.amiga.adage.com + Crain Communications (partial) + www.amnestyusa.org + Amnesty USA.org (partial) + www.ams.org + AMS.org (partial) + www.amsl.com + AMSl.com + www.amstelveen.nl + NL Overheid + www.amsterdam.nl + NL Overheid + www.amway.com + Alticore (partial) + www.ananda.org + Ananda Sangha + www.andersonvalleypost.com + E. W. Scripps Company (partial) + www.androidfilehost.com + Androidfilehost.com + www.androidpolice.com + Androidpolice + www.angel.co + AngelList (partial) + www.angus.gov.uk + UK Local Government + www.animenfo.com + Animenfo.com + www.annevankesteren.nl + Anne van Kesteren.nl + www.anonbox.net + anonbox.net + www.anonine.com + Anonine.com + www.anonymousads.com + Anonymousads.com + www.anonymousspeech.com + AnonymousSpeech.com + www.anonyproz.com + Anyproz + www.anquanbao.com + Anquanbao.com + www.anrdoezrs.net + Commission Junction + www.ansa.it + Ansa.it + www.anthrocon.org + Anthrocon + www.antiphishing.org + Anti-Phishing Working Group (partial) + www.antipolygraph.org + AntiPolygraph.org + www.antispam-ev.de + AntiSpam e.V. + www.anunciou.com + Anunciou.com (partial) + www.anybeat.com + Anybeat + www.anyfi.net + Anyfi.net + www.ao2.it + ao2.it (CAcert) + www.aok.de + AOK + www.apcmag.com + APC Magazine + www.apertureinsight.com + PulsePoint (partial) + www.apigility.org + Apigility.org + www.apmebf.com + Commission Junction + www.apollo-auto.com + Apollo-auto.com + www.apomedifot.de + Apomedifot.de (partial) + www.apoteket.se + Apoteket.se + www.apotheke.de + Apotheke.de + www.appcelerator.com + Appcelerator + www.appdynamics.com + AppDynamics + www.apperdeck.com + Holtwick IT (partial) + www.appetize.io + Appetize.io + www.appgratis.com + AppGratis + www.appharbor.com + AppHarbor.com + www.appiehein.com + Appie Hein.com + www.applications.sciverse.com + SciVerse (partial) + www.applyweb.com + ApplyWeb.com + www.appsites.com + Appsites.com + www.appvault.com + AppVault (partial) + www.apress.com + Apress.com + www.apricorn.com + Apricorn.com + www.apwu.org + American Postal Workers Union + www.apwustore.org + American Postal Workers Union + www.aquent.us + Aquent (partial) + www.aqueousvapor.com + Aqueous Vapor.com (partial) + www.ar.ch + Schweizer Regierung + www.arbeitsagentur.de + Arbeitsagentur.de + www.arbornetworks.com + Arbor Networks (partial) + www.archi-strasbourg.org + Archi-Strasbourg + www.architectsjournal.co.uk + Architect's Journal + www.architektur.uni-kl.de + Uni-Kl.de (false MCB) + www.archive.is + archive.today (partial) + www.archive.today + archive.today (partial) + www.archiveofourown.org + ArchiveOfOurOwn + www.archos.com + Archos.com + www.arcor.de + ArcorCentralLogin + www.argeweb.nl + Argeweb.nl + www.argos-spain.co.uk + Argos (partial) + www.argoscareers.com + Argos (partial) + www.argosemails.co.uk + Argos (partial) + www.argosonline.es + Argos (partial) + www.arisebitcoin.com + Arisebitcoin.com + www.arlanda.se + Arlanda.se + www.armorybids.com + ArmoryBids.com + www.armyoutlet.de + Armyoutlet.de + www.array.is + Array.is (partial) + www.arrivabus.co.uk + Arriva + www.arrl.org + ARRL (partial) + www.ars.usda.gov + USDA-ARS + www.articulate.com + Articulate.com (false MCB) + www.artpractical.com + Art Practical + www.arukereso.hu + Árukereső + www.as.au.edu + UA.edu (false MCB) + www.as112.net + AS112.net + www.ascenderfonts.com + Monotype Imaging (partial) + www.ashford.com + Ashford.com (partial) + www.ashlandfiber.net + Ashland Fiber.net (partial) + www.ask-inc.com + transformationmadeeasy.com (partial) + www.askapatient.com + Ask a Patient + www.asmc.de + Asmc.de + www.aspectsecurity.com + Aspect Security + www.aspplayground.net + ASPPlayground.NET + www.assayassured.co.uk + Assay Assured.co.uk (partial) + www.asseenonresponsetv.com + asseenonresponsetv.com + www.assembly.com + Assembly.com (partial) + www.assistance-multimedia.fr + Assistance-Multimedia.fr + www.assoc-amazon.* + Amazon Associates + www.asteriskexchange.com + Asterisk Exchange (partial) + www.astra.io + Astra.io + www.astro.rug.nl + University of Groningen (partial) + www.astronomicaltours.net + AstronomicalTours + www.aswirlgirl.com + aswirlgirl.com (partial) + www.atagar.com + atagar.com + www.atbank.nl + ATBank + www.atech.io + aTech Media (partial) + www.atinternet-solutions.com + AT Internet Solutions + www.ativismo.org.br + Ativismo.org.br (partial) + www.atomiccowlick.com + Atomic Cowlick + www.atomicorp.com + Atomicorp + www.atsec.com + atsec.com + www.attic-backup.org + Attic-backup.org + www.au.org + Americans United (partial) + www.auctionthing.net + auctionthing.net + www.audentio.com + Audentio.com + www.audioboo.fm + Audioboo.fm (partial) + www.aulani.jobs + Aulani.jobs + www.auscert.org.au + AusCERT.org + www.ausregistry.com.au + AusRegistry (partial) + www.austrian.com + Austrian Airlines + www.authorizenet.com + Authorize.Net + www.autisticadvocacy.org + Autistic Self-Advocacy Network + www.automatak.net + Automatak.net + www.autotools.io + Autotools.io + www.avadirect.com + Avadirect + www.avaxhome.ws + Avaxhome.ws (partial) + www.aviris.fi + Aviris näönvälineet + www.aviris.nkl.fi + Aviris näönvälineet + www.avm.de + Avm.de + www.avoiceformen.com + A Voice for Men.com + www.avoinministerio.fi + Avoin ministeriö + www.avoinyliopisto.fi + avoinyliopisto.fi + www.avropa.se + Avropa.se + www.avuecentral.com + Avue Central + www.avuedigitalservices.com + Avue Digital Services + www.awesomejar.com + AwesomeJar.com + www.awltovhc.com + Commission Junction + www.awxibrm.com + Commission Junction + www.axantum.com + Axantum.com (partial) + www.axelarnbak.nl + Axel Arnbak.nl + www.axisbank.co.in + Axis Bank (partial) + www.ayyildiz.de + Ay Yildiz + www.azingsport.se + Azingsport.se + www.b2bmediaportal.com + b2bmediaportal.com + www.b3n.org + b3n.org + www.babymed.com + BabyMed.com (partial) + www.backbonesecurity.com + Backbone Security + www.backpackerslucerne.ch + Backpackers Lucerne + www.backstreet-merch.com + Backstreet International Merchandise + www.backstreetmerch.com + Backstreet International Merchandise + www.backupify.com + Backupify + www.badoo.com + Badoo.com + www.baekdal.com + Baekdal (partial) + www.bagatoo.se + Bagatoo.se + www.bahn-bkk.de + Bahn-BKK + www.balatarin.com + Balatarin + www.baldershage.se + Baldershage.se + www.balkanleaks.eu + Balkan Leaks + www.balkongshoppen.se + Balkongshoppen.se + www.ballicom.co.uk + Ballicom + www.ballotmeasuredomains.com + Ballot Measure Domains + www.bamsecure.com + BAM Agency (partial) + www.bamshop.co.uk + BAM Agency (partial) + www.bandcamp.mu + Bandcamp + www.bandpass.me + BandPass.me + www.bankid.no + BankID.no + www.bankrate.com + bankrate.com + www.baratikor.com + Draugiem.lv (partial) + www.barbican.org.uk + Barbican + www.barclays.co.uk + Barclays + www.barclayscorporate.com + Barclays + www.bardwilhome.com + Bardwil Home (partial) + www.bareos.org + Bareos + www.barikat.gr + Greek-various + www.barkerjr.net + BarkerJr.net + www.barmer-gek.de + Barmer-GEK + www.barna.org + Barna.org + www.barnard.edu + Barnard College + www.barnesjewish.org + Barnes-Jewish Hospital (partial) + www.barnskospecialisten.se + Barnskospecialisten.se + www.baselland.ch + Schweizer Regierung + www.bassetlaw.gov.uk + UK Local Government + www.bath.ac.uk + University of Bath (partial) + www.bathnes.gov.uk + UK Local Government + www.batmanarkhamorigins.com + Batmanarkhamorigins.com + www.batstrading.com + BATS Exchange + www.battelle.org + Battelle (partial) + www.bawsi.org + BAWSI.org + www.bayan.ir + Bayan.ir (partial) + www.bayareaamusements.com + Bay Area Amusements + www.baycitizen.org + Bay Citizen.org + www.bayfiles.com + BayFiles + www.bayfiles.net + BayFiles + www.bazzapp.com + BazzApp + www.bbbonline.org + Better Business Bureau (partial) + www.bbbsilicon.org + Better Business Bureau (partial) + www.bbc.com + BBC.com (false MCB) + www.bbcchildreninneed.co.uk + BBC Children In Need + www.bbcshop.com + Bbcshop.com + www.bbsey.es + bbsey.es (partial) + www.bbseyes.com + bbsey.es (partial) + www.bccla.org + BCCLA.org + www.bcgolf.com + BCGolf.com + www.bdone.hu + Bdone.hu + www.be.ch + Schweizer Regierung + www.beaconreader.com + Beacon Reader.com + www.bear.im + bear.im + www.beatsmedia.com + Beatsmedia + www.beautifuldecay.com + BeautifulDecay.com (partial) + www.becoquin.com + BeCoquin.com (partial) + www.beefree.io + BeeFree.io + www.beeldengeluid.nl + Beeld en Geluid.nl (partial) + www.beginlinux.com + BeginLinux.com + www.beginnertriathlete.com + Beginner Triathlete (partial) + www.belkin.com + Belkin (partial) + www.bell-labs.com + Bell-Labs.com + www.belpino.se + Belpino.se + www.belspo.be + Belspo.be (partial) + www.benetech.org + Benetech + www.beonespark.com + BE One Spark.com (partial) + www.bequiet.com + be quiet.com (false MCB) + www.bergdorfgoodman.com + TPG Capital (partial) + www.bergenopzoom.nl + NL Overheid + www.berkeleychessschool.org + Berkeley Chess School (partial) + www.berkeleylug.com + Berkeley LUG.com + www.berlin.de + Berlin.de + www.berlinonline.de + Berlinonline.de + www.bernstein.com + AllianceBernstein (partial) + www.berrange.com + Daniel P. Berrangé + www.bespied-ons-niet.nl + Bespied-ons-niet.nl + www.bestlawyers.com + Best Lawyers + www.bet365.com + bet365 Group (partial) + www.bet365affiliates.com + bet365 Group (partial) + www.betnet.fr + Betnet.fr + www.bettercrypto.org + BetterCrypto.org + www.betvictor.com + Victor Chandler International + www.bezosexpeditions.com + Bezos Expeditions + www.bgamed.de + bGamed.de (partial) + www.bhiab.se + Bhiab.se + www.biddeal.com + Biddeal + www.bigbrotherawards.de + German BigBrotherAwards + www.bigconcerts.co.za + Big Concerts (partial) + www.bigjocker.com + bigjocker.com + www.bignerdranch.com + Big Nerd Ranch + www.bigv.io + BigV.io (partial) + www.bihira.com + Bihira.com + www.bike24.de + Bike24.de + www.bikebiz.com + Intent Media (partial) + www.billetnet.dk + Ticketmaster (partial) + www.billettservice.no + Ticketmaster (partial) + www.billing.helpjuice.com + Helpjuice (partial) + www.billmaher.com + Bill Maher.com + www.billycreative.com + Billy Creative + www.binarybiz.com + Binary Biz + www.binaryturf.com + BinaryTurf + www.binbox.io + Binbox.io (partial) + www.binsearch.info + BinSearch + www.binsearch.net + BinSearch + www.bioshockinfinite.com + BioShock Infinite + www.bip.io + Bip.IO + www.birthdayinabox.com + Birthday in a Box (partial) + www.birthprint.com + Birthprint + www.bistudio.com + Bohemia Interactive (partial) + www.bit.ly.pro + bit.ly + www.bitaddress.org + bitaddress.org + www.bitballoon.com + BitBalloon.com + www.bitcard.org + BitCard + www.bitcoin-central.net + Bitcoin-Central + www.bitcoin.at + Bitcoin Wiki + www.bitcoin.co.th + Bitcoin.Co.th + www.bitcoin.in + Bitcoin Wiki + www.bitcoinforum.com + Bitcoin Forum.com + www.bitcoinfunding.com + BitcoinFunding.com + www.bitcoinmagazine.com + Bitcoin Magazine.com (partial) + www.bitcoinmarket24.com + Bitcoin Market 24 + www.bitcointalk.org + Bitcoin Forum + www.bitcoinwisdom.com + BitcoinWisdom.com + www.bitfetch.com + bitfetch + www.bitgamer.com + bitGamer + www.bitgamer.su + bitGamer + www.bitly.com + bit.ly + www.bitly.pro + bit.ly + www.bitmessage.org + Bitmessage + www.bitrig.org + Bitrig + www.bitservicex.com + eCash.io + www.bitstampede.com + Bit Stampede.com + www.bitvisor.org + BitVisor.org + www.bitwig.com + Bitwig.com + www.bivol.bg + Bivol + www.bkk-advita.de + BKK-Advita + www.bkw-fmb.ch + BKW-FMB.ch + www.blackbox.co.uk + Black Box.co.uk + www.blackfoot.co.uk + Blackfoot.co.uk + www.blacklotus.net + Black Lotus + www.blackpool.gov.uk + UK Local Government + www.blacktonic.com + BlackTonic.com (partial) + www.blake2.net + BLAKE2 + www.blamestella.com + BlameStella + www.blazingthyme.com + Blazing Thyme + www.bleep.com + Bleep.com + www.blekko.com + Blekko + www.blink-182.com + blink-182 (partial) + www.blipp.com + Blipp.com + www.blockbuster.co.uk + BlockBuster UK + www.blocked.org.uk + Blocked.org.uk + www.blocket.se + Blocket.se + www.blockitpocket.com + BlockitPocket.com + www.blockmetrics.com + Block Metrics + www.blockscript.com + BlockScript + www.blockstream.com + Blockstream.com (partial) + www.blog.edoeb.admin.ch + Schweizer Regierung + www.blogcdn.com + blogcdn.com (partial) + www.blognone.com + Blognone.com + www.blogoverflow.com + Stack Exchange (partial) + www.blogsmithmedia.com + Moviefone + www.blot.im + Blot.im + www.bluechip.hu + Bluechip (mixedcontent) + www.bluecoat.com + BlueCoat + www.bluegiga.com + Bluegiga.com + www.bluejeanscable.com + Blue Jeans Cable.com + www.bluekrypt.be + BlueKrypt.com + www.bluekrypt.com + BlueKrypt.com + www.bluemanticketing.com + Blue Man Ticketing (partial) + www.bluemovie.eu + Blue Movie (partial) + www.bluemovie.net + Blue Movie (partial) + www.bluetoad.com + BlueToad.com + www.blumenthals.com + Blumenthals + www.bmclogostore.com + BMC Logo Store.com + www.bmi.bund.de + Bundesministerium des Innern + www.bmibaby.com + Bmibaby.com + www.bn.com + Barnes and Noble (partial) + www.bnd.bund.de + Bundesnachrichtendienst + www.bnf.org + British National Formulary (partial) + www.bnw.im + bnw + www.bnz.co.nz + BankOfNewZeland + www.boardgamegeek.com + BoardGameGeek + www.boardzoo.com + BoardZoo.com + www.boarnsterhim.nl + NL Overheid + www.bodum.com + Bodum + www.boe.ca.gov + California State Board of Equalization + www.boerse-frankfurt.de + Börse Frankfurt + www.bokborgen.se + Bokborgen.se + www.bokelskere.no + Bokelskere + www.bolagsverket.se + Bolagsverket.se + www.boltbus.com + Boltbus.com + www.boneblast.com + BoneBlast.com (partial) + www.bookacourse.com + Bookacourse (partial) + www.bookit.nl + Holidaybreak (partial) + www.booklog.jp + Booklog.jp + www.bookmyname.com + BookMyName + www.bookonline.saudiairlines.com + Saudia Airlines (partial) + www.bookshare.org + Bookshare + www.bookstore.ucsd.edu + UCSD + www.boostbybenz.com + Boost by Benz.com + www.boots.ie + Boots.ie + www.bootsthai.com + Boots Thai.com + www.borne.nl + NL Overheid + www.bortarsasag.hu + Bortársaság + www.bose.co.uk + Bose + www.botbot.me + BotBot.me + www.botfrei.de + Botfrei.de (partial) + www.bothar.ie + Bothar + www.bouncerstation.com + Bouncer Station.com + www.bouncycastle.org + Bouncy Castle.org (partial) + www.bountyoss.com + BountyOSS.com + www.bountysource.com + Bountysource.com (partial) + www.bournemouth.gov.uk + UK Local Government + www.boxoffice.com + BoxOffice (partial) + www.boxopus.com + boxopus.com + www.boxuk.com + BoxUK + www.bprbzk.nl + NL Overheid + www.bpsshop.org.uk + BPS (partial) + www.brabant.nl + NL Overheid + www.brabysads.com + Brabysads.com (partial) + www.bradford.gov.uk + UK Local Government + www.brainbench.com + Brainbench + www.brainshark.com + Brainshark + www.brainstorage.me + Brainstorage.me (partial) + www.braintree.gov.uk + UK Local Government + www.braintreepaymentsolutions.com + Braintreepayments.com + www.brandsaver.ca + Procter & Gamble (partial) + www.brashear.me + Brashear.me + www.braunschweig.de + Braunschweig + www.breakoutband.com + BreakoutBand.com + www.bremer.com + Bremer Bank + www.brendaneich.com + Brendan Eich + www.brennancenter.org + Brennan Center.org + www.brent.gov.uk + UK Local Government + www.breuninger.com + Breuninger (partial) + www.briandunning.com + briandunning.com + www.bricklink.com + BrickLink + www.bright-things.com + Bright-Things.com + www.brightfort.com + BrightFort.com (partial) + www.brighton.com + Brighton (partial) + www.britcoin.co.uk + Britcoin.co.uk + www.britishairways.com + BritishAirways + www.britishgas.co.uk + British Gas (partial) + www.brixwork.com + Brixwork.com (partial) + www.brmlab.cz + brmlab + www.broadbandconvergent.com + Broadband Convergent + www.broadbandreports.com + Broadband Reports + www.broadcomfoundation.org + Broadcom Foundation.org + www.broadland.gov.uk + UK Local Government + www.brockman.com + Brockman + www.brokenman.co + Brokenman + www.browsealoud.com + BrowseAloud.com + www.browserid.org + BrowserID + www.browserleaks.com + BrowserLeaks + www.browsershots.org + BrowserShots + www.brueckenbauer.ch + Migros + www.bruteforce.gr + Bruteforce.gr (Partial) + www.bsdcan.org + BSD Can.org + www.bsdconsulting.co.jp + BSD Consulting.co.jp + www.bsi-fuer-buerger.de + Federal Office for Information Security + www.bsi.bund.de + Federal Office for Information Security + www.bsi.de + Federal Office for Information Security + www.btc.to + btc.to + www.btcbuy.info + BTC Buy + www.btcguild.com + BTCGuild.com + www.btcsportsbet.com + BTCSportsBet + www.btczone.com + BTCZone + www.bth.se + BTH.se + www.btjunkie.org + btjunkie + www.btplc.com + BT Group (partial) + www.btsportbusiness.com + BT Sport for Business + www.btunnel.com + BTunnel + www.btwifi.co.uk + BT Wi-fi + www.buch.ch + buch.ch + www.bucketlistly.com + BucketListly.com (partial) + www.bucknell.edu + Bucknell University (partial) + www.buddycube.com + BuddyCube.com + www.budgetgolf.se + Budgetgolf.se + www.budgetkredit.ch + budgetkredit.ch (partial) + www.buff.ly + bit.ly vanity domains + www.bugzil.la + bugzil.la + www.bulbman.com + BulbMan + www.bulksms.co.uk + BulkSMS + www.bulletproofexec.com + Bulletproof Exec.com (partial) + www.bullguard.com + Bullguard + www.bullockinc.com + Bullock Inc.com + www.bunchball.net + Bunchball (partial) + www.bund.de + Verwaltung Online + www.bundesnetzagentur.de + Bundesnetzagentur + www.bundesverfassungsgericht.de + Bundesverfassungsgericht + www.bungie.net + Bungie + www.bupa.com + Bupa + www.burningshed.co.uk + Burning Shed + www.burningshed.com + Burning Shed + www.burnley.gov.uk + UK Local Government + www.burstmedia.co.uk + Burst Media + www.business.hsbc.co.uk + HSBC + www.bussgods.se + Bussgods.se + www.bussit.turku.fi + Turku.fi + www.buyfacefx.com + Silkn.com + www.buyveteran.com + Buy Veteran (partial) + www.buzzdoes.com + buzzdoes.com + www.buzzhosting.org + Buzzhosting.org + www.buzzvpn.com + Buzz VPN + www.bva.bund.de + Federal Office of Administration + www.bverfg.de + Bundesverfassungsgericht + www.bww.com + Alticore (partial) + www.byo.com + Brew Your Own + www.byte.com + InformationWeek + www.c-base.org + C-Base + www.c-spanvideo.org + C-SPAN Video.org (false MCB) + www.c3tag.com + C3tag.com + www.ca-pca.fr + CA-PCR.fr + www.ca.niif.hu + NIIF Intézet (partial) + www.caa.co.uk + Civil Aviation Authority + www.cabal.ws + Cabal WS (partial) + www.cabforum.org + CA/Browser Forum + www.cabinet-office.gov.uk + Cabinet Office + www.cacetech.com + CaceTech + www.cadence.com + Cadence Design Systems (partial) + www.cadsoft.de + CadSoft + www.cafemakers.com + Cafemakers + www.caisse-epargne.fr + Caisse d'Epargne + www.cal.net + Cal.net + www.calderdale.gov.uk + UK Local Government + www.calendario.cc + Calendario.cc + www.calendars.com + Calendars.com (partial) + www.calgaryoutdoorcentre.ca + UCalgary.ca (partial) + www.calispora.org + Calispora + www.calligra-suite.org + Calligra.org + www.calligra.org + Calligra.org + www.calomel.org + Calomel.org + www.calyx.net + calyx.net + www.camaya.net + camaya.net + www.cambeywest.com + Cambey & West (partial) + www.camden.gov.uk + UK Local Government + www.campact.de + Campact.de + www.campinaopschool.nl + Campina (partial) + www.canadahelps.org + CanadaHelps (partial) + www.canaldigital.dk + CanalDigital + www.canaldigital.se + CanalDigital + www.cancer.fi + Syöpäjärjestöt + www.candhlures.com + CandH Lures.com (partial) + www.canlii.org + CanLII + www.cannex.com + CANNEX + www.canon-europe.com + Canon + www.canon.at + Canon + www.canon.ba + Canon + www.canon.co.nz + Canon + www.canon.co.uk + Canon + www.canon.com.au + Canon + www.canon.com.cn + Canon + www.canon.com.mk + Canon + www.canon.com.tr + Canon + www.canon.de + Canon + www.canon.dk + Canon + www.canon.ee + Canon + www.canon.es + Canon + www.canon.fi + Canon + www.canon.fr + Canon + www.canon.ie + Canon + www.canon.it + Canon + www.canon.lt + Canon + www.canon.lu + Canon + www.canon.lv + Canon + www.canon.nl + Canon + www.canon.no + Canon + www.canon.pt + Canon + www.canon.ru + Canon + www.canon.se + Canon + www.canon.si + Canon + www.canon.sk + Canon + www.canterbury.gov.uk + UK Local Government + www.canvasholidays.co.uk + Wyndham (partial) + www.capify.org + Capistrano + www.capitaloneconnect.* + Capital One Connect + www.caprioli.se + Peter Caprioli + www.capris.no + Adlibris/Capris + www.carbonfund.org + Carbonfund.org + www.carbonmade.com + Carbonmade (partial) + www.carbonwind.net + Carbonwind.net + www.care-net.org + Care Net + www.careerbuilder.com + CareerBuilder (partial) + www.careers.dyson.com + Dyson (partial) + www.careers.fi + Careers.fi + www.carrier-lost.org + carrier-lost.org + www.casaar.com + Casaar.com (partial) + www.casascius.com + Casascius + www.casecurity.org + CA Security Council + www.caseking.biz + Caseking.biz + www.cashback4you.de + cashback4you + www.casinoaffiliateprograms.com + CasinoAffiliatePrograms.com + www.casro.org + Casro (partial) + www.catersnews.com + Caters News Agency (partial) + www.catincan.com + CatinCan + www.catooh.com + MAGIX (partial) + www.cavium.org + Cavium.org + www.cbb.dk + Cbb.dk + www.cbcblueprint.com + CBC Blueprint + www.cbfisap.ed.gov + ED.gov (partial) + www.cbo.gov + US Congressional Budget Office + www.cbp.net.br + CBP.net.br + www.cbpweb.nl + Dutch Data Protection Authority + www.cccure.com + CCCure.com + www.cccure.org + CCCure.org + www.cccure.training + CCCure.training (partial) + www.ccdcoe.org + CCDCoE + www.ccianet.org + CCIA + www.ccodearchive.net + Comprehensive C Archive Network + www.cda.nl + NL Politiek + www.cdn-net.com + cdn-net.com + www.cdnjs.com + cdnjs + www.cdon.dk + CDON.COM + www.cdon.eu + CDON.COM + www.cdon.fi + CDON.COM + www.cdon.no + CDON.COM + www.cdon.se + CDON.COM + www.cdw.com + CDW and CDW-G + www.cdwg.com + CDW and CDW-G + www.ce1.com + Creative Endeavors + www.cebit.de + CeBIT.de (partial) + www.cede.ch + cede + www.celiac.org + Celiac Disease Foundation + www.cenowarka.pl + Cenowarka.pl + www.censorship.govt.nz + Censorship.govt.nz + www.census.gov + US government (partial) + www.centerforrights.org + Center for Rights + www.centerlinebeta.net + Centerline Digital (partial) + www.centralcomputers.com + Central Computers.com + www.centrance.com + CEntrance (partial) + www.ceredigion.gov.uk + UK Local Government + www.cert.fi + CERT.fi + www.cert.se + CERT.se + www.certible.com + Certible + www.cesg.gov.uk + CESG + www.cfengine.com + CFEngine + www.cff.ch + Swiss Federal Railways (SBB/CFF/FFS) + www.chakasmmm.com + Chakas Mmm.com (partial) + www.challenge25.go.jp + Japanese government (partial) + www.championsofregnum.com + Champions of Regnum.com + www.changemakers.com + Changemakers + www.changetip.com + ChangeTip.com + www.channel5.com + Channel 5 + www.chaox.net + chaox.net + www.charities.org + America's Charities + www.charlottenaturemuseum.org + Charlotte Nature Museum + www.charnwood.gov.uk + UK Local Government + www.chartio.com + Chartio.com + www.chartsinfrance.net + Charts in France + www.chasepaymentech.com + Chase Paymentech.com + www.chatsecure.org + ChatSecure + www.chatwithourteam.com + InMotion Hosting + www.chcidoo2.cz + Telefónica (partial) + www.cheapassfiction.com + Cheapass Fiction.com + www.cheapssls.com + CheapSSLs + www.checkdomain.de + Checkdomain + www.checkmarx.com + Checkmarx.com (partial) + www.checksconnect.com + Harland Clarke + www.checktls.com + Checktls.com + www.cherwell.gov.uk + UK Local Government + www.cheshireeast.gov.uk + UK Local Government + www.chessbase-shop.com + ChessBase-shop.com (partial) + www.cheznous.com + Wyndham (partial) + www.chiliproject.org + ChiliProject.org (partial) + www.chinalaborwatch.org + China Labor Watch + www.chip-app.de + CHIP-Kiosk.de + www.chip-digital.de + CHIP-Digital.de + www.chipin.com + ChipIn (partial) + www.chipland.hu + ChipLand.hu + www.chl.it + CHL.it + www.chlomo.org + Chlomo.org (partial) + www.chocolatey.org + Chocolatey.org + www.chris-lamb.co.uk + Chris-Lamb.co.uk + www.chris.lu + Chris.lu + www.chriscoyne.com + Chris Coyne.com + www.chrisnewland.com + Chris Newland.com + www.christ-swiss.ch + Coop + www.christianprayercenter.com + Christian Prayer Center + www.chromerooms.com + Chrome Rooms.com + www.chromestatus.com + Chrome Status.com + www.chronicle.com + Chronicle + www.chs.us + chs.us + www.cia.gov + Central Intelligence Agency + www.ciao.de + Ciao (partial) + www.cilkplus.org + Cilk Plus.org + www.cimacorp.net + Factory Expo Home Centers + www.cinestar.de + CineStar + www.cio.com.au + CIO.com.au + www.cipherlawgroup.com + CipherLaw + www.cira.kyoto-u.ac.jp + Kyoto-U.ac.jp (partial) + www.cirt.net + CIRT.net + www.cirtexhosting.com + Cirtex Hosting.com + www.ciscolearningsystem.com + Cisco Learning System.com + www.cisofy.com + CISOfy.com (partial) + www.citeulike.org + CiteULike + www.citialumninetwork.com + Citi Alumni Network + www.citizenfourfilm.com + Citizenfour Film.com + www.citizenlab.org + The Citizen Lab + www.citizensinformation.ie + CitizensInformation + www.citmedialaw.org + DMLP.org (partial) + www.citrusbyte.com + Citrusbyte.com + www.city-link.co.uk + City Link + www.cityemail.com + City Mail + www.cityoflondon.gov.uk + UK Local Government + www.cjib.nl + NL Overheid + www.claimconnect.net + EDI Health Group + www.clarityray.com + ClarityRay (partial) + www.class-central.com + Class-Central.com + www.classzone.com + ClassZone.com + www.clear-code.com + Clear-Code.org + www.clearchain.com + ClearChain + www.clearlink.com + Clearlink.com + www.clickssl.com + ClickSSL.com + www.clicky.com + GetClicky + www.climatecentral.org + Climate Central + www.clinicaltrials.gov + ClinicalTrials.gov + www.clinkle.com + Clinkle.com + www.clipperz.is + Clipperz.is + www.clipth.net + Vdoth.com + www.clkads.com + clkads.com + www.clkmon.com + clkads.com + www.clkrev.com + clkads.com + www.clockworkmod.com + Clockworkmod.com + www.cloudafrica.net + CloudAfrica.net + www.cloudcracker.com + CloudCracker + www.cloudflarechallenge.com + CloudFlare Challenge.com + www.cloudfront.net + Cloudfront + www.cloudmark.com + Cloudmark + www.cloudsleuth.net + CloudSleuth + www.clubcompy.com + ClubCompy + www.cluster1.easy-hebergement.net + Easy Hébergement + www.clusterconnection.com + Cluster Connection.com (partial) + www.cmdev.com + CM Dev.com + www.cmpadministration.com + CMP + www.cms.hhs.gov + US government (partial) + www.cmswire.com + CMSWire + www.cnb.cx + bit.ly vanity domains + www.cno.org + College of Nurses of Ontario (partial) + www.coastalmicrosupply.com + Coastal Micro Supply (partial) + www.coastdigital.co.uk + Coast Digital + www.cod.ed.gov + ED.gov (partial) + www.code42.com + Code42.com + www.codeascraft.com + Code as Craft.com + www.codebasehq.com + Codebase HQ.com (partial) + www.codehs.com + CodeHS.com + www.codeofhonor.com + Code of Honor + www.codersclan.net + CodersClan.net + www.codeschool.com + Code School.com (partial) + www.codesourcery.com + Mentor Graphics (partial) + www.codespeak.net + codespeak + www.codeweavers.* + CodeWeavers (partial) + www.coevorden.nl + NL Overheid + www.cohnreznick.com + CohnReznick.com + www.coindl.com + CoinDL + www.coinurl.com + CoinURL.com + www.cokecce.com + Coke CCE.com + www.colbertnation.com + Colbert Nation (partial) + www.colino.net + Colin Leroy + www.collabora.com + Collabora (partial) + www.collada.org + COLLADA + www.collectd.org + collectd.org + www.collegebeschermingpersoonsgegevens.nl + Dutch Data Protection Authority + www.collegiatepeaksbank.com + Collegiate Peaks Bank + www.coloman.nl + Coloman.nl + www.coloradoattorneygeneral.gov + Colorado State Attorney General + www.coloradonocall.com + Official Colorado No-Call List + www.colossal.jp + Colossal.jp (partial) + www.comdirect.de + comdirect bank + www.cometdocs.com + Cometdocs.com (partial) + www.comic-con.net + Comic-Con International + www.comic-con.org + Comic-Con International + www.comic-rocket.com + Comic-Rocket.com + www.commandfive.com + Command Five + www.commercialappeal.com + E. W. Scripps Company (partial) + www.commission-junction.com + Commission Junction + www.commlink.org + CommLink.org (partial) + www.commonapp.org + Common App + www.commoncrawl.org + CommonCrawl + www.commondreams.org + CommonDreams + www.commscope.com + CommScope.com (partial) + www.communicatelive.co.uk + Communicate Live + www.communicatoremail.com + Communicator Corporation (partial) + www.community.wbgames.com + Community.wbgames.com + www.comnap.aq + COMNAP.aq + www.comodo.net + Comodo + www.comodogroup.com + Comodo + www.companiesintheuk.co.uk + CompaniesInTheUK + www.compaq.com + Compaq.com + www.compari.ro + Árukereső + www.competitionsbywyndham.com.au + Wyndham (partial) + www.complang.org + CompLang.org + www.completelyprivatefiles.com + CompletelyPrivateFiles.com + www.complex-systems.com + Complex-systems.com + www.comptroller.nyc.gov + New York City (partial) + www.compulab.co.il + CompuLab.co.il + www.computerbasedmath.org + Computerbasedmath.org + www.computerfulfillment.com + Computer Fulfillment + www.compuware.com + Compuware (partial) + www.comscoredatamine.com + comScore Data Mine.com + www.comviq.se + Comviq.se + www.concrete5.org + concrete5 (partial) + www.condenaststore.com + Condé Nast (partial) + www.confuzzled.org.uk + Confuzzled + www.connect.me + Connect.me + www.connecthr.nl + Campina (partial) + www.consecur.de + ConSecur + www.consortiumlibrary.org + Consortium Library + www.consumer.gov + Consumer.gov + www.consumeraffairs.com + ConsumerAffairs.com (partial) + www.consumerdirect.gov.uk + Adviceguide (partial) + www.consumerreports.org + Consumer Reports (partial) + www.consumersniper.com + ConsumerSniper.com + www.consumerswin.com + Cosumers Win.com + www.consumidor.gov + Consumer.gov + www.contactprivacy.com + Contact Privacy + www.contactus.com + ContactUs.com (partial) + www.contentwatch.com + Content Watch + www.continental.com + Continental + www.control.tierra.net + TierraNet (partial) + www.control.vps.net + VPS.net (partial) + www.controllermax.com + ControllerMAX.com (partial) + www.coochey.net + Coochey.net (partial) + www.coolcart.net + CoolCart.Net + www.coolkeywest.com + Cool Key West + www.coop.no + Coop.no + www.coopathome.ch + Coop + www.cooperating-objects.eu + Cooperating-Objects.eu + www.cooperation-online.ch + Coop + www.cooperazione.ch + Coop + www.coophotellkupp.com + Coop.no + www.coopzeitung.ch + Coop + www.cope-it.at + Cope-IT + www.corbinfisher.com + Corbin Fisher + www.corkuniversitypress.com + Cork University Press.com + www.corningcu.org + Corning Credit Union + www.corp.mamba.ru + Mamba + www.corpimages.de + corpimages.de + www.corporatedomains.com + Corporation Service Company + www.cosmo.org + Cosmo.org + www.cosmote.gr + Cosmote + www.cotse.net + Cotse.net + www.cottagesdirect.co.uk + Wyndham (partial) + www.cottageselection.co.uk + Wyndham (partial) + www.couchpota.to + CouchPota.to + www.couchsurfing.org + Couchsurfing + www.county-star.com + The County Star (partial) + www.couragefound.org + Courage Found.org + www.courthousenews.com + Courthouse News Service + www.courtlistener.com + CourtListener.com + www.courtneyluv.com + BlueHost clients + www.courtsofnz.govt.nz + Courts of New Zealand + www.covacations.com + Continental + www.coverageforall.org + Foundation for Health Coverage Education + www.coverartarchive.org + MusicBrainz + www.coveredca.com + Covered California (partial) + www.coveredca.org + Covered California (partial) + www.coveredcacertifiedpartners.com + Covered California (partial) + www.coverfire.com + Coverfire.com + www.coxdigitalsolutions.com + Cox Digital Solutions (partial) + www.cozmedics.com.au + COZmedics.com.au + www.cp.org + The Canadian Press + www.cpanel.guru + cPanel.guru + www.cpaptalk.com + cpaptalk.com (partial) + www.cpaste.org + cpaste + www.cpbonlinebanking.com + Collegiate Peaks Bank + www.cpj.org + CPJ + www.cpubenchmark.net + CPU Benchmark.net + www.crackstation.net + CrackStation.net + www.craphound.com + Craphound + www.crbug.com + Chromium.org + www.crcpress.com + Informa (partial) + www.createspace.com + CreateSpace + www.creativelittlereaders.com + Creative Little Readers.com (partial) + www.creativeskills.be + Creativeskills.be (partial) + www.creativity-online.com + Crain Communications (partial) + www.credit-suisse.com + Credit Suisse + www.creocommunico.com + Host Creo + www.crm-metrix.com + CRM Metrix + www.croscill.com + Croscill.com (partial) + www.crowdsupply.com + Crowd Supply.com (partial) + www.crp.gov.sk + SlovakGoverment + www.crrev.com + Chromium.org + www.crunchboard.com + AOL (partial) + www.cryptanalysis.eu + Cryptanalysis + www.cryptocloud.ca + Cryptocloud.ca + www.cryptocoding.net + CryptoCoding + www.cryptocoincharts.info + Cryptocoin Charts.info + www.cryptolux.org + CryptoLUX.org + www.cryptonetwork.com + CryptoNetwork.com + www.cryptoparty.in + Cryptoparty + www.cryptoparty.org + Cryptoparty + www.cryptosms.org + CryptoSMS (CAcert) + www.cryptotweet.com + CryptoTweet.com + www.crystaldelights.com + Crystal Delights.com + www.crz.gov.sk + SlovakGoverment + www.cs.sunysb.edu + Stony Brook University (partial) + www.cs.ucsd.edu + UCSD + www.cs.utah.edu + University of Utah (partial) + www.csbaacademy.com + CSBA Academy.com (partial) + www.csbs.utah.edu + University of Utah (partial) + www.cscprotectsbrands.com + Corporation Service Company + www.csctrustedsecure.com + CSCtrustedsecure.com + www.cse.ucsd.edu + UCSD + www.csirt.cz + CSIRT.CZ + www.csob.sk + Csob.sk + www.csquad.org + csquad.org + www.csrsupport.com + CSRSupport.com + www.csync.org + csync.org + www.cta-observatory.org + Cherenkov Telescope Array + www.ctera.com + CTERA Networks + www.ctftime.org + CTFtime.org + www.cts-strasbourg.eu + Cts-strasbourg.eu + www.ctt.org + ctt.org + www.ctt.pt + Ctt + www.ctunnel.com + CTunnel + www.cualbr.com + Commission Junction + www.cueup.com + Cueup.com + www.cuidadodesalud.gov + CuidadoDeSalud.gov + www.cultura.no + Cultura Sparebank + www.cups.org + CUPS.org + www.curbed.cc + bit.ly vanity domains + www.cure53.de + Cure53.de + www.curiosity-driven.org + curiosity-driven.org + www.current.com + Current TV (partial) + www.curvehost.com + Curvehost + www.cusp.com + TPG Capital (partial) + www.customtiburon.com + Custom Tiburon + www.customwheelconnection.com + CustomWheelConnection.com (partial) + www.cuusoo.net + Cuusoo (partial) + www.cvimellesgriot.com + CVI Melles Griot + www.cxcloud.com + Cxcloud.com + www.cxsecurity.com + cxsecurity.com + www.cyanogenmod.org + CyanogenMod.org (false MCB) + www.cyberagent.co.jp + CyberAgent + www.cyberaide.ca + Cybertip.ca + www.cyberfret.com + Cyberfret.com + www.cyberpatrol.com + CyberPatrol (partial) + www.cybersecuritychallenge.org.uk + Cyber Security Challenge + www.cybershambles.com + CyberShambles.com + www.cybersicherheits-allianz.de + Allianz für Cyber-Sicherheit + www.cybersitter.com + CYBERsitter + www.cygwin.com + Cygwin.com (partial) + www.cykloteket.se + Cykloteket.se + www.cyngn.com + Cyngn.com + www.cyveillance.com + Cyveillance.com + www.cz.o2.com + Telefónica (partial) + www.czshare.com + CZshare.com (partial) + www.d66.nl + NL Politiek + www.dac.co.jp + D.A.Consortium + www.dafdirect.org + dafdirect.org + www.dagbladet.no + Dagbladet.no (false MCB) + www.daha.net + SoftCom (partial) + www.daily.co.uk + Daily + www.dailyfantasyradio.com + Daily Fantasy Radio + www.dailynk.com + Daily NK.com (partial) + www.dailystar.co.uk + Daily Star (partial) + www.dailyutahchronicle.com + University of Utah (partial) + www.dakko.us + dakko.us (partial) + www.dal.net + DALnet + www.dalemacartney.com + Dale Macartney.com + www.dan.me.uk + Dan.me.uk + www.danblah.com + dan blah.com (partial) + www.dante-analytics.net + DANTE-analytics.net + www.darkmail.info + Darkmail.info + www.das-labor.org + Das-labor.org + www.das-parlament.de + Das Parlament (partial) + www.databits.net + databits.net + www.datacell.is + DataCell + www.datacenterworld.com + Data Center World.com (partial) + www.datacoup.com + DataCoup.com (partial) + www.datalogix.com + Datalogix.com (partial) + www.datapipe.co.uk + Datapipe.com (partial) + www.datapipe.com + Datapipe.com (partial) + www.datapipe.net + Datapipe.com (partial) + www.dataprotection.ie + Data Protection Commissioner + www.datatilsynet.no + Datatilsynet + www.datavantage.com + DataVantage + www.datenschutz.de + Virtual Privacy Office + www.datenschutzzentrum.de + Independent Centre for Privacy Protection Schleswig-Holstein + www.datstat.com + DatStat + www.davidadrian.org + David Adrian.org + www.davidsontutoring.com + Davidson Tutoring (partial) + www.davpack.co.uk + Davpack.co.uk + www.dawsonera.com + Dawsonera (partial) + www.daydeal.ch + daydeal + www.db.tt + Dropbox + www.dbnnor.no + DnB Nor + www.dcboee.org + DCBoEE.org + www.dcerpc.org + DCERPC + www.ddosbreak.com + DDoSBreak.com + www.dds2dds.com + DDS2DDS.com + www.dea.com + DEA.com + www.deaconess.com + Deaconess Health System + www.deaddrops.com + Dead Drops.com + www.dealcent.com + DealCent + www.dealchicken.com + Phoenix Media Group (partial) + www.dealerrater.com + DealerRater.com (partial) + www.dealfish.co.th + Dealfish.co.th + www.dealnews.com + dealnews.com (partial) + www.dealspwn.com + HotUKDeals (partial) + www.dearfcc.org + Dear FCC.org + www.debekijkerie.nl + De Bekijkerie.nl + www.debian-administration.org + Debian-Administration.org (partial) + www.deco.proteste.pt + Deco.proteste.pt + www.decryptcryptolocker.com + Decrypt CryptoLocker.com + www.dedigitaletopschool.nl + De Digitale Topschool.nl + www.deepbit.net + Deepbit.net + www.deepdyve.com + DeepDyve + www.deeppoliticsforum.com + Deep Politics Forum.com + www.deepsec.net + DeepSec.net (partial) + www.defectivebydesign.org + Defective By Design.org + www.defenceandsecurity.ca + CADSI + www.defenceimagery.mod.uk + UK Ministry of Defence + www.defendinnovation.org + EFF + www.defenseindustrydaily.com + Defense Industry Daily (partial) + www.defenseone.com + Defense One.com (false MCB) + www.dei.com.gr + Greek-various + www.dei.gr + Greek-various + www.delaware.gov + State of Delaware (partial) + www.delawaretoday.com + Delaware Today.com (partial) + www.delfogo.com + Delfogo Rx + www.delicious.com + Delicious + www.delico.se + Delico.se + www.deliveras.gr + Deliveras + www.dell.com + Dell.com (false MCB) + www.delta.no + Delta.no + www.democracynow.org + DemocracyNow (partial) + www.demonoid.ph + Demonoid.ph + www.denso-wave.com + DENSO WAVE + www.dephormation.org.uk + Dephormation.org.uk + www.depolitiezoekt.nl + NL Overheid + www.depositprotection.com + DepositProtection + www.der-preis-jaeger.de + der-preis-jaeger.de + www.derby.gov.uk + UK Local Government + www.deri.ie + National University of Ireland (partial) + www.derpiboo.ru + Derpiboo.ru + www.despora.de + Despora.de + www.deutsche-boerse.com + Deutsche Börse Group + www.deutschebkk.de + Deutsche BKK + www.deutschepost.de + deutschepost + www.develop-online.net + Intent Media (partial) + www.developer.mydigipass.com + Mydigipass.com + www.devolo.com + Devolo.com + www.devon.gov.uk + UK Local Government + www.devstructure.com + Devstructure + www.df.eu + DF.eu + www.dfranke.us + D Franke.us + www.dfri.se + Dfri.se + www.dgl.cx + dgl.cx + www.dia-grid.org + DiaGrid + www.diagonalperiodico.net + Diagonalperiodico.net + www.diagrid.org + DiaGrid + www.dialdirect.co.uk + Dial Direct + www.diasp.de + Diasp.de + www.diasp.eu + Diasp.eu + www.diasp.org + Diasp.org + www.diasporabr.com.br + DiasporaBR.com.br + www.diasporaproject.org + Diaspora + www.dice.com + Dice (false MCB) + www.die-linke.de + Die-Linke.de + www.die.net + Die.net + www.diffuse.ca + Diffuse.ca + www.digi77.com + Digi77.com + www.digid.nl + NL Overheid + www.digiday.com + Digiday.com (false MCB) + www.digipaper.fi + Mederra Group (partial) + www.digitabportals.com + Digitab Portals + www.digital-future.it + Digital-Future.it + www.digitalbond.com + Digital Bond + www.digitaldefenders.org + Digital Defenders.org + www.digitalegesellschaft.de + Digitalegesellschaft + www.digitalforensicsmagazine.com + DigitalForensicsMagazine + www.digitalforest.co.jp + NTTCom + www.digitalscirocco.net + digitalscirocco.net + www.digitec.ch + Digitec.ch + www.dignityindying.org.uk + Dignity in Dying.org.uk (partial) + www.dikkenberg.net + Dikkenberg.net + www.dinclinx.com + Madison Logic (partial) + www.dionyziz.com + Greek-various + www.diplomaframe.com + Church Hill Classics (partial) + www.direct.gov.uk + GOV.UK + www.direct123.fi + Direct123.fi + www.directbox.at + Directbox + www.directbox.biz + Directbox + www.directbox.ch + Directbox + www.directbox.com + Directbox + www.directbox.de + Directbox + www.directbox.eu + Directbox + www.directbox.info + Directbox + www.directbox.net + Directbox + www.directbox.tv + Directbox + www.directspace.net + DirectSpace + www.disability.gov + Disability.gov + www.disc-soft.com + disc-soft.com (partial) + www.discogs.com + Discogs (partial) + www.discounttheatre.com + DiscountTheatre.com + www.discovery.org + Discovery.org + www.discoveryplace.org + Discovery Place + www.discoveryplacekids.org + Discovery Place + www.diskusjon.no + Diskusjon + www.disman.tl + disman.tl + www.distraction.gov + Distraction.gov + www.dittdistrikt.no + Ditt Distrikt + www.divitup.com + DivItUp.com + www.dixcart.com + Dixcart + www.djoserjunior.nl + Holidaybreak (partial) + www.djoserwandelenfiets.nl + Holidaybreak (partial) + www.djurrattsalliansen.se + DjurRattsAlliansen.se + www.dl.ed.gov + ED.gov (partial) + www.dlitz.net + DLitz.net + www.dmachoice.org + DMAchoice.org + www.dmesg.gr + dmesg.gr + www.dmlp.org + DMLP.org (partial) + www.dmoz.org + Dmoz.org + www.dms-sweden.com + DMS-Sweden.com + www.dmu.ac.uk + DMU + www.dmv.ca.gov + California Department of Motor Vehicles + www.dnb.com + D&B (partial) + www.dns.lc.wix.com + Wix (partial) + www.dnscrypt.eu + DNSCrypt.eu + www.dnsdynamic.org + DNSdynamic + www.dnsexit.com + Dnsexit + www.dnsleaktest.com + DNS leak test.com + www.dnssec-tools.org + DNSSEC-Tools + www.dnssec-validator.cz + DNSSEC-Validator.cz + www.dntx.com + DNTX.com + www.do.de + Domain-Offensive + www.dobrochan.com + Dobrochan + www.dobrochan.org + Dobrochan + www.dobrochan.ru + Dobrochan + www.doc.ic.ac.uk + Imperial College London (partial) + www.docelu.pl + docelu.pl (partial) + www.doclerholding.com + Docler Holding + www.doctorswithoutborders.org + DoctorsWithoutBorders.org + www.document.no + Document.no + www.documentfreedom.net + Document Freedom Day + www.documentfreedom.org + Document Freedom Day + www.docusign.com + Docusign.com + www.docusign.net + Docusign.net + www.doesburg.nl + NL Overheid + www.dollaraday.co + Dollar a Day.co + www.domain-dns.com + Domain-DNS.com + www.domainbox.com + Domainbox.com (partial) + www.domaincamp.de + domainCAMP + www.domaincoin.net + DomainCoin.net + www.domainfest.com + Oversee.net (partial) + www.domainmarket.com + DomainMarket.com (partial) + www.domainsbyproxy.com + Domains By Proxy + www.domeinenrz.nl + NL Overheid + www.domena.cz + IGNUM (partial) + www.domenovyprohlizec.cz + Domenovy prohlizec.cz + www.dominustemporis.com + Dominus Temporis.com + www.domreg.lt + Domreg.lt + www.donationcoder.com + DonationCoder.com + www.doncaster.gov.uk + UK Local Government + www.donorregister.nl + NL Overheid + www.dontspyonus.org.uk + Dont Spy On Us.org.uk + www.doodle.com + Doodle (partial) + www.dopplr.com + Dopplr.com + www.doriancolor.com + Dorian Color + www.dornsife.usc.edu + University of Southern California (partial) + www.dosomething.org + Dosomething.org + www.dotmailer.co.uk + dotMailer (partial) + www.doublefine.com + Double Fine + www.dover.gov.uk + UK Local Government + www.downstreamtoday.com + DownstreamToday.com + www.dpbolvw.net + Commission Junction + www.dr.com.tr + DR.com.tr + www.dragndropbuilder.com + DrAgnDroPbuilder.com + www.draugiem.lv + Draugiem.lv (partial) + www.drawquest.com + DrawQuest + www.dreamnews.jp + Dream News.jp + www.dreamsolution.nl + Dreamsolution.nl + www.dreamspark.com + DreamSpark.com + www.dribbble.com + Dribble.com (partial) + www.drivee.jp + drivee + www.driverseddirect.com + DriversEdDirect.com + www.drivestyle.co.uk + DriveStyle Insure + www.dropboxatwork.com + Dropbox + www.dropboxmail.com + Dropbox + www.dropboxteam.com + Dropbox + www.dropcam.com + Dropcam.com + www.dropdav.com + DropDav + www.droplr.com + Droplr.com + www.drownedinsound.com + Drowned In Sound.com (partial) + www.drugpolicy.org + drugpolicy.org + www.drugs-forum.com + Drug Forum + www.drumbeat.org + Mozilla + www.drupalgardens.com + Drupal Gardens.com (partial) + www.dshield.org + DShield.org + www.dshs.state.tx.us + Texas Department of State Health Services + www.dtcc.edu + Delaware Technical Community College (partial) + www.dtic.dtu.dk + Technical University of Denmark (partial) + www.dtu.dk + Technical University of Denmark (partial) + www.dtunnel.com + DTunnel + www.dubfire.net + dubfire.net + www.duckdns.org + Duck DNS.org + www.dudley.gov.uk + UK Local Government + www.duiven.nl + NL Overheid + www.dukgo.com + DuckDuckGo + www.dundeecity.gov.uk + UK Local Government + www.duodecim.fi + Duodecim.fi + www.duolingo.com + Duolingo.com + www.dutchdpa.nl + Dutch Data Protection Authority + www.dwarffortresswiki.org + Dwarf Fortress Wiki.org (partial) + www.dwin1.com + DWin1.com + www.dwolla.com + Dwolla (partial) + www.dyankov.eu + Dyankov.eu + www.dynadot.com + DynaDot + www.dyson.co.uk + Dyson (partial) + www.dyson.ie + Dyson (partial) + www.dzne.de + German Center for Neurodegenerative Diseases + www.e-cegjegyzek.hu + E-cegjegyzek.hu + www.e-food.gr + e-food.gr + www.e-gold.com + e-gold (partial) + www.e-magin.se + E-magin.se + www.e-mail-made-in-germany.de + E-Mail made in Germany + www.e-mielenterveys.fi + E-mielenterveys + www.e-nls.com + Nijyuyon-Bimuunzu + www.e-onlinedata.com + e-onlinedata.com + www.e-rewards.com + E-rewards.com + www.e14n.com + E14N + www.e4ward.com + E4ward.com + www.e621.net + e621.net + www.eai.org + Electronic Arts Intermix (partial) + www.earl.io + Earl + www.east-northamptonshire.gov.uk + UK Local Government + www.eastbayteamservices.com + Eastbay Team Services + www.easthants.gov.uk + UK Local Government + www.eastlothian.gov.uk + UK Local Government + www.eastriding.gov.uk + UK Local Government + www.easy-share.com + Crockotec (partial) + www.easy2coach.net + easy2coach.net (partial) + www.easycottages.com + Wyndham (partial) + www.easynews.com + EasyNews + www.easywallet.org + easywallet.org + www.easywhois.com + easyWhois.com + www.eater.com + Eater + www.ebenefits.va.gov + US Department of Veterans Affairs + www.ebi.ac.uk + Ebi.ac.uk + www.ebi.co.uk + European Bioinformatics Institute + www.ebuyer.com + Ebuyer.com (false MCB) + www.ebuzzing.com + ebuzzing (partial) + www.ecb.eu + Europa.eu + www.ece.ucsd.edu + UCSD + www.ece.unm.edu + UNM + www.echoditto.com + EchoDitto.com + www.eclipso.ch + Eclipso.ch + www.eclipso.de + eclipso + www.ecm74.com + ecm74.com (partial) + www.ecommerce.com + Ecommerce (partial) + www.econda-monitor.de + econda-monitor.de + www.ecsi.com + ECSI + www.ecustomeropinions.com + eDigitalResearch (partial) + www.ed.gov + ED.gov (partial) + www.edas.info + Edas.info + www.eddieizzard.com + Eddie Izzard (partial) + www.edfil.es + Edfil.es + www.edigital.hu + Extreme Digital + www.edihealth.com + EDI Health Group + www.edihealth.net + EDI Health Group + www.edinburgh.gov.uk + UK Local Government + www.edirectdebit.com + eDirectDebit (partial) + www.edonorcentral.com + eDonorCentral.com + www.edp.pt + EDP.pt + www.edri.org + EDRi.org + www.edrive-hosting.cz + edrive hosting (partial) + www.eduroam.es + eduroam ES + www.eduroam.no + eduroam.no + www.edwardtufte.com + Edward Tufte + www.eeqj.com + EEQJ + www.ef.gy + ef.gy + www.efax.co.uk + efax.co.uk (partial) + www.effi.org + Effi.org + www.eforensicsmag.com + eForensics Mag.com (partial) + www.efukt.com + eFukt.com + www.ehoiva.fi + eHoiva + www.ehospice.com + ehospice + www.ehostpros.com + FastWebHost.com (partial) + www.eide-itc.no + Eide-ITC.no + www.eidq.org + EIDQ + www.eigenlab.org + eigenLab + www.eiseverywhere.com + etouches + www.ekiga.net + Ekiga (partial) + www.ekiga.org + Ekiga (partial) + www.ekomi-us.com + eKomi + www.ekomi.* + eKomi + www.ekomi.co.za + eKomi + www.el-tramo.be + El-Tramo.be + www.elanex.biz + Elanex.biz + www.elburg.nl + NL Overheid + www.electronicinsanity.com + Techidiots.net + www.elementaryos.org + Elementary OS.org (partial) + www.elie.im + Elie Bursztein + www.eliminatejunkemail.com + pair Networks (partial) + www.elitekeyboards.com + EliteKeyboards.com + www.elizabethsmartfoundation.org + Elizabeth Smart Foundation (partial) + www.elkosmas.gr + elkosmas.gr + www.ellak.gr + Greek-various + www.elliptictech.com + Elliptic Technologies + www.ello.co + Ello.co + www.elmbridge.gov.uk + UK Local Government + www.eloconcursos.com.br + Elo Concursos.com.br + www.eloquentjavascript.net + Eloquent JavaScript.net + www.elotouchexpress.com + Elo Global e-services + www.elq.to + Eloqua + www.elsevier.ca + Elsevier (partial) + www.elsevier.com + Elsevier (mixedcontent) + www.elsevierhealth.co.uk + Elsevier (partial) + www.elsevierhealth.com.au + Elsevier (partial) + www.emaileri.com + Emaileri.fi + www.emaileri.fi + Emaileri.fi + www.emaileri.net + Emaileri.fi + www.emapawards.com + Emap Awards + www.emeraldinsight.com + Emerald + www.emjcd.com + Commission Junction + www.emory.edu + Emory University (partial) + www.employeeexpress.gov + Employeeexpress.gov + www.en.greatfire.org + GreatFire.org + www.encosia.com + Encosia + www.encrypt.to + Encrypt.to + www.encryptallthethings.net + Encrypt All the Things.net + www.encrypteverything.ca + Encrypt Everything.ca + www.encryptingdata.info + EncryptingData.info + www.energystar.gov + EnergyStar + www.enfield.gov.uk + UK Local Government + www.engagemedia.org + Engage Media.org + www.english-heritage.org.uk + English-Heritage.org.uk (partial) + www.englishdefenceleague.net + English Defence League.net (partial) + www.enigmail.net + Enigmail.net + www.enom.com + eNom (partial) + www.enomcentral.com + eNomCentral (partial) + www.enphase.com + Enphase Energy (partial) + www.ensigniamail.com + Ensignia mail.com (partial) + www.ensijaturvakotienliitto.fi + Ensi- ja turvakotien liitto + www.enterprise.com + Enterprise.com + www.enterprisersproject.com + Enterprisers Project.com + www.entropay.com + EntroPay + www.entropia.de + Entropia.de + www.entropywave.com + Entropy Wave (partial) + www.envirotrend.com.au + Envirotrend (partial) + www.eoft.eu + EOFT + www.eon-hungaria.com + E.ON IT Hungary + www.epa.ie + EPA (.ie) + www.epay.bg + ePay.bg + www.epic.org + EPIC + www.epilepsyfoundation.org + Epilepsy Foundation of America + www.epilepsyontario.org + Epilepsy Ontario + www.epls.gov + Epls.gov + www.eplus-gruppe.de + E-Plus Gruppe + www.epo-rtal.org + ACLU of North Carolina + www.eprize.net + ePrize + www.epson.ca + Epson.com (partial) + www.epson.com.mx + Epson.com (partial) + www.equalit.ie + eQualit.ie + www.equity.org.uk + Equity + www.era.int + ERA.int + www.erdgeist.org + erdgeist + www.ereceptionist.co.uk + eReceptionist.co.uk (partial) + www.ericw.us + Eric W.us + www.eriga.lv + Riga + www.ernaehrung-per-klick.de + Medikamente-Per-Klick + www.ernw.de + ERNW.de + www.eroakirkosta.fi + Eroakirkosta.fi + www.erowid.com + Erowid + www.erowid.org + Erowid + www.esa.int + European Space Agency (partial) + www.esb.ie + ESB.ie + www.esbie.ie + ESB.ie + www.esc.edu + Empire State College + www.escan.com + Virusec.com + www.escrowlive.net + Escrow Live.net + www.eset.* + ESET (partial) + www.eshop.kensington.com + Kensington + www.eshopbrokers.co.uk + e-ShopBrokers + www.esiss.ac.uk + ESISS + www.eso.org + European Southern Observatory (partial) + www.espacejeux.com + espacejeux + www.espionageapp.com + Espionage app.com + www.esr.org + Earth & Space Research + www.esrb.org + ESRB + www.essex.gov.uk + UK Local Government + www.estavisas.org + ESTA Visas.org + www.estoniaevoting.org + Estonia Evoting.org + www.esue.ohio-state.edu + Ohio State University (partial) + www.esv.de + ESV.de + www.etarget.* + Etarget (partial) + www.ethack.org + EthACK.org + www.ethlife.ethz.ch + ETH Zürich (partial) + www.ethnologue.com + Ethnologue + www.eticketing.co.uk + Ticketmaster (partial) + www.etipos.sk + Etipos.sk + www.etouches.com + etouches + www.etracker.de + etracker + www.etravelway.com + Etravelway.com + www.etreshop.com + Etre Shop.com (partial) + www.ettus.com + Ettus.com (partial) + www.euro-ix.net + Euro-ix.net + www.eurodiet.co.uk + Eurodiet (partial) + www.euroforum.com + Euroforum (partial) + www.euromail.se + Telenor.se (partial) + www.euronuclear.org + European Nuclear Society + www.european-privacy-seal.eu + EuroPriSe + www.europeancensorship.eu + EuropeanCensorship.eu (partial) + www.eveger.de + Eveger + www.eventim.* + Eventim (partial) + www.eventim.fi + Lippupiste Oy + www.evermap.com + EverMap.com + www.evermeet.cx + evermeet.cx + www.everyanglemedia.com + Every Angle Media + www.evga.com.au + EVGA (partial) + www.evga.com.tw + EVGA (partial) + www.evo.com + evo.com (partial) + www.evoluted.net + Evoluted.net + www.evolvesocially.org + Evolve Socially.org (partial) + www.ewellnessmag.com + eWellness magazine (partial) + www.exacom.sk + Exacom.sk + www.exante.eu + EXANTE + www.excelsior-usa.com + Excelsior-USA.com (partial) + www.exeterfamily.co.uk + Exeter Friendly Society + www.exeterfriendly.co.uk + Exeter Friendly Society + www.exhaleprovoice.org + Exhale + www.exootlab.com + ExootLab + www.expandedsupport.com + SUSE (partial) + www.expeditedssl.com + ExpeditedSSL.com + www.experian.com + Experian + www.experiencedays.co.uk + Experience Days + www.expertbail.com + AIA Surety + www.exploithub.com + ExploitHub.com + www.explore.co.uk + Holidaybreak (partial) + www.exposingtheinvisible.org + Exposing the Invisible.org + www.express-vpn.com + Express-VPN.com + www.exsila.ch + exsila + www.extensis.com + Extensis.com (partial) + www.extreme-light-infrastructure.eu + Extreme Light Infrastructure + www.extremetracking.com + Extreme Tracking + www.eydap.gr + Greek-various + www.eyereturnmarketing.com + eyeReturn Marketing.com (partial) + www.eyetechds.com + EyeTech + www.ezaccessory.com + ezAccessory.com + www.ezcrypt.it + EZCrypt + www.ezding.com.tw + ezDing.com.tw (partial) + www.ezimages.eu + EZTV + www.ezrss.it + EZTV + www.f-droid.org + F-Droid + www.f35.com + F35.com + www.f5networks.co.jp + F5 + www.f9.fi + F9 Distribution + www.faa.gov + Federal Aviation Administration (partial) + www.faaaccess.ed.gov + ED.gov (partial) + www.fablabtacoma.com + FabLab Tacoma + www.fablabtruck.nl + Fab Lab Truck.nl + www.facebook.* + Facebook + www.factor.cc + Factor.cc + www.factorable.net + factorable.net + www.factoryhomesale.com + Factory Expo Home Centers + www.fafsa.ed.gov + ED.gov (partial) + www.fafsa.gov + ED.gov (partial) + www.fafsalivehelp01.ed.gov + ED.gov (partial) + www.fagms.net + fagms.net + www.faithinmotion.com.au + Faith in Motion.com.au (partial) + www.faiusa.org + Food Allergy Initiative + www.falkirk.gov.uk + UK Local Government + www.fandago.com + Fandago + www.fangamer.net + Fangamer (partial) + www.fanpagegeneratorpro.com + Global Marketing Strategies (partial) + www.faradaysec.com + Faraday sec.com + www.fareham.gov.uk + UK Local Government + www.farmaciforbundet.se + Farmaciforbundet.se + www.fashionara.com + Fashionara.com (partial) + www.fass.se + Fass.se + www.fastclick.com + ValueClick (partial) + www.fastcodesign.com + Fast Co Design.com + www.fasttrack.va.gov + US Department of Veterans Affairs + www.fastwebhost.com + FastWebHost.com (partial) + www.fastwebmedia.com + Fast Web Media (partial) + www.fau.org + Freie Arbeiterinnen- und Arbeiter-Union (FAU) (CAcert) + www.fazekas.hu + Fazekas + www.fb-assets.com + FreshBooks (partial) + www.fb18.de + FB18_Forum + www.fbdatesecure.com + JDI Dating (partial) + www.fbnstatic.com + Fox News (partial) + www.fcitx-im.org + Fcitx-im.org + www.fcpablog.com + FCPA Blog (partial) + www.febas.de + Febas.de + www.fedbizopps.gov + Federal Business Opportunities + www.federalregister.gov + Federal Register + www.federatedinvestors.com + Federated Investors (partial) + www.federatedmedia.net + Federated Media Publishing (partial) + www.fedoramagazine.org + Fedora Magazine.org (false MCB) + www.feed2js.org + Feed2JS.org + www.feedarea.de + podcast.at (partial) + www.feedburner.com + FeedBurner (partial) + www.feedjit.com + Feedjit (partial) + www.feedmyinbox.com + FeedMyInbox + www.feefighters.com + FeeFighters + www.feefo.com + Feefo + www.feitbulbs.com + Feit Electric Company (partial) + www.femtoduino.com + Femtoduino.com + www.fencecenter.com + Fence Center.com + www.fenland.gov.uk + UK Local Government + www.feralhosting.com + Feral Hosting.com + www.feralinteractive.com + Feralinteractive.com + www.festival.london2012.com + London 2012 + www.ffs.ch + Swiss Federal Railways (SBB/CFF/FFS) + www.fhi.se + FHI.se + www.fhs.se + FHS.se + www.fiannafail.ie + Fianna Fail + www.fibank.bg + Fibank + www.fiddler2.com + fiddler2.com + www.fiercefinance.com + FierceFinance (partial) + www.fiercewireless.com + FierceWireless (partial) + www.fifedirect.org.uk + UK Local Government + www.figshare.com + figshare + www.filebox.tv + FileBox + www.filmlair.com + Filmlair + www.filmlinc.com + Film Linc.com (partial) + www.filterdigital.com + Filter (partial) + www.fimc.net + MediaSpan (partial) + www.finance.gov.sk + SlovakGoverment + www.financialcryptography.com + Financial Cryptography + www.financnahitparada.sk + Financnahitparada.sk + www.finavia.fi + Finavia.fi + www.findababysitter.com.au + Find a Babysitter (partial) + www.findlegalforms.com + FindLegalForms.com (partial) + www.findmyorder.com + Digital River (partial) + www.finka.pl + Finka.pl (partial) + www.finkmanufacturing.com + BioShock Infinite + www.finlex.fi + Finlex + www.finmozg.ru + finmozg.ru + www.finn.no + Finn + www.finnchamber.com + SmartPractice + www.finra.org + Financial Industry Regulatory Authority + www.firefox.net.cn + Firefox.net.cn + www.firemail.de + Firemail.de + www.firm24.com + Firm24.com + www.firmas.lv + Firmas.lv + www.firstamendmentcoalition.org + First Amendment Coalition + www.firstclassmagazine.se + First Class Magazine.se (partial) + www.firstgiving.com + FirstGiving + www.fishwrapper.com + Fishwrapper.com (false MCB) + www.fiskeriverket.se + Fiskeriverket.se + www.fit.edu + Florida Institute of Technology (partial) + www.fitnessmarket.com.au + Fitness Market (partial) + www.fixubuntu.com + Fix Ubuntu.com + www.fkl.fi + Finanssialan Keskusliitto + www.flashback.org + Flashback.org + www.flightglobalshop.com + Flightglobal (partial) + www.flinkster.de + flinkster + www.flippa.com + Flippa + www.flitto.com + Flitto.com + www.flix123.com + flix123.com + www.flixden.com + FlixDen + www.floatinghospital.org + Floating Hospital.org + www.floek.net + Floek.net + www.flossmanuals.net + FLOSSManuals.net + www.flowingdata.com + FlowingData.com (partial) + www.fluendo.com + Fluendo (partial) + www.fluttertoday.com + FlutterToday.com (partial) + www.fluxbb.org + FluxBB.org (partial) + www.flyersrights.org + FlyersRights.org + www.flyertown.ca + Flyertown + www.fmv.se + FMV.se + www.fnacspectacles.com + Fnac (partial) + www.focusonlearningcenter.com + Focus on Learning Center.com + www.foecvliab.com + FoECV LiaB.com + www.fokus.no + Fokus Bank + www.folksam.se + Folksam.se + www.fontdeck.com + Fontdeck (partial) + www.fontmarketplace.com + Monotype Imaging (partial) + www.foodallergy.org + Food Allergy & Anaphylaxis Network + www.foodhub.co.nz + Food Hub + www.foodprotectiontaskforce.com + Food Protection Task Force.com (partial) + www.foofighters.com + FooFighters + www.footlocker-inc.com + Foot Locker, Inc. + www.footlocker.eu + Foot Locker Europe (partial) + www.fora.tv + FORA.tv (partial) + www.forbrukerportalen.no + Forbrukerraadet + www.forensic.to + Zeno's Forensic Site + www.forensischinstituut.nl + NL Overheid + www.foresters.biz + Foresters + www.forex-metal.com + Forex-Metal + www.foriswine.com + Foris Wine + www.fornex.com + Fornex.com (partial) + www.forrester.com + Forester (partial) + www.forsakringskassan.se + Forsakringskassan.se + www.forsvarsforbundet.se + Forsvarsforbundet.se + www.fortum.com + Fortum + www.fortunetango.com + FortuneTango + www.forum-3dcenter.org + forum-3dcenter + www.forums.playfire.com + Playfire (partial) + www.fossil-scm.org + Fossil-SCM.org + www.fotoblur.com + Fotoblur + www.fotopigeon.com + FotoPigeon + www.fourmilab.ch + Fourmilab (partial) + www.foxydeal.com + foxydeal.de (partial) + www.foxydeal.de + foxydeal.de (partial) + www.fpcomplete.com + FP Complete.com + www.fr.ch + Schweizer Regierung + www.frack.nl + Frack.nl + www.franceserv.fr + Franceserv + www.franchiseradioshack.com + RadioShack (partial) + www.franziskawellner.de + Martin Pitt + www.frederik-braun.com + Frederik-Braun.com + www.freeassangenow.org + Free Assange Now.org + www.freebsdfoundation.org + FreeBSD Foundation.org + www.freecode.com + Freecode (partial) + www.freedom-to-tinker.com + Freedom to Tinker + www.freedomboxfoundation.org + Freedombox Foundation + www.freedomnotfear.org + Freedom not Fear.org + www.freedomonlinecoalition.com + Freedom Online Coalition.com + www.freejeremy.net + Free Jeremy.net + www.freelansim.ru + Freelansim.ru (partial) + www.freemailer.ch + Freemailer.ch + www.freeporngif.com + Free Porn Gif.com (partial) + www.freepracticetests.org + Free practice tests.org + www.freeprivacypolicy.com + Global Marketing Strategies (partial) + www.freerainbowtables.com + Free Rainbow Tables + www.freesnowden.is + Free Snowden.is + www.freespeech.org + Free Speech.org + www.freewebsitetemplates.com + freewebsitetemplates.com + www.freeyourandroid.org + FSFE.org (partial) + www.frenchtouch.pro + FrenchTouch.pro + www.frenchtv.to + FrenchTV.to + www.frequentis.com + Frequentis.com (false MCB) + www.fribid.se + FriBID.se + www.frid.ge + Fridge + www.friedhoff.org + Friedhoff.org + www.friendlybracelets.com + Friendly Bracelets.com (partial) + www.friendster.com + Friendster (partial) + www.fromorbit.com + fromorbit.com + www.frontiersin.org + Frontiers (partial) + www.fsadownload.ed.gov + ED.gov (partial) + www.fsaregistration.ed.gov + ED.gov (partial) + www.fsawebenroll.ed.gov + ED.gov (partial) + www.fstoppers.com + Fstoppers.com + www.ftb.ca.gov + California Franchise Tax Board + www.ftccomplaintassistant.gov + Federal Trade Commission (partial) + www.ftd.de + FTD.de + www.fteproxy.org + fteproxy.org + www.ftjcfx.com + Commission Junction + www.fueleconomy.gov + Fuel Economy + www.fuerzapopular.pe + Fuerza Popular (partial) + www.fujitsu-webmart.com + Fujitsu (partial) + www.fukuchi.org + Fukuchi.org + www.fulcrumbiometrics.com + Fulcrum Biometrics + www.fullcirclestudies.com + Full Circle Studies (partial) + www.fullrate.dk + Fullrate (partial) + www.fundfill.com + FundFill.com + www.funkyandroid.com + Funky Android.com + www.fuscia.info + fuscia.info + www.fusion-net.co.uk + FusionNet + www.futurity.org + Futurity.org + www.fuzeqna.com + Authorize.Net + www.fuzzing-project.org + Fuzzing-Project.org + www.fws.gov + U.S. Fish and Wildlife Service (partial) + www.fylde.gov.uk + UK Local Government + www.g-ir.com + Global Investor Relations + www.g33kinfo.com + g33kinfo.com (partial) + www.g5.gov + G5 - US Department of Education + www.gaaturustigslapen.nl + Gaatur u stig slapen.nl + www.gabry.hu + Gabry.hu + www.gamasutra.com + TechWeb (partial) + www.game.co.uk + Game.co.uk + www.gamefly.co.uk + GameFly + www.gamefly.com + GameFly + www.gameoapp.com + gameoapp.com + www.gamersfirst.com + Gamersfirst.com (partial) + www.gamesonly.at + GamesOnly.at + www.gamespot.com + GameSpot.com (false MCB) + www.gametracker.com + Gametracker.com (partial) + www.gametreedeveloper.com + GameTree + www.gaminatorslots.com + Gaminator + www.gamingonlinux.com + Gamingonlinux.com + www.gammagroup.com + Gamma Group + www.gannett-cdn.com + gannett-cdn.com (partial) + www.gannettridge.com + Gannett Ridge + www.garfield.com + Garfield.com + www.gargoyle-router.com + Gargoyle Router Firmware + www.garlandscience.com + Informa (partial) + www.garmin.com + Garmin + www.garoa.net + Garoa.net + www.gasngrills.com + Gasngrills.com (partial) + www.gateshead.gov.uk + UK Local Government + www.gavelbuddy.com + Gavel Buddy.com + www.gavinhungry.com + gavinhungry.com + www.gavinhungry.io + Gavin Hungry.io + www.gay-torrents.net + GayTorrents + www.gayromeo.com + PlanetRomeo + www.gazellegames.net + gazellegames.net + www.gbatemp.net + GBAtemp.net + www.gcdn.org + gCDN.org + www.gcentral.biz + G Central + www.gdata-software.com + G Data Software (partial) + www.gdata.* + G Data Software (partial) + www.gdata.co.jp + G Data Software (partial) + www.gdatasoftware.* + G Data Software (partial) + www.gdatasoftware.co.uk + G Data Software (partial) + www.gdatasoftware.com.br + G Data Software (partial) + www.geany.org + Geany.org (false MCB) + www.geef.nl + Geef.nl + www.geekify.com.au + Geekify (partial) + www.geekisp.com + GeekISP.com + www.geeknetmedia.com + Geeknet Media (partial) + www.gefpmis.org + International Finance Corporation (partial) + www.geldermalsen.nl + NL Overheid + www.gemcutter.org + RubyGems.org (partial) + www.gemeenteberkelland.nl + NL Overheid + www.gemeentebest.nl + NL Overheid + www.gemeentenoordenveld.nl + NL Overheid + www.gemeentewesterveld.nl + NL Overheid + www.gemeentewestland.nl + NL Overheid + www.gemklub.hu + Gémklub + www.genesis-technologies.com + Genesis-Technologies + www.geni.net + GENI (partial) + www.genivi.org + GENEVI.org (false MCB) + www.genome.gov + US government (partial) + www.gentoo-ev.org + Gentoo-eV.org + www.geoamigo.com + GeoAmigo + www.geodacenter.org + Arizona State University (partial) + www.geolistening.com + Geo Listening.com + www.georgiegirl.com.au + Georgie Girl Australia (partial) + www.get.cm + Get.CM + www.get.pictos.cc + Pictos (partial) + www.getbuckyballs.com + Buckyballs + www.getcashboard.com + subimage (partial) + www.getcloak.com + GetCloak.com + www.getcomposer.org + Get Composer.org + www.getdigital-blog.de + Getdigital.de (partial) + www.getdigital.de + getDigital.de (false MCB) + www.getdropbox.com + Dropbox + www.getfoxyproxy.org + Get Foxy Proxy.org (partial) + www.geti2p.net + Get I2P.net + www.getify.com + Getify.com (partial) + www.getjive.com + Jive.com + www.getlantern.org + Get Lantern.org + www.getpersonas.com + GetPersonas.com + www.getsyme.com + get Syme.com + www.gettyimages.* + Getty Images (partial) + www.gettyimages.co.* + Getty Images (partial) + www.gfi-italia.com + GFI Software Development (partial) + www.gfi.nl + GFI Software Development (partial) + www.gficloud.com + GFI Cloud + www.gfihispana.com + GFI Software Development (partial) + www.gfisoftware.de + GFI Software Development (partial) + www.gfsfrance.com + GFI Software Development (partial) + www.gftplns.org + Stelter (partial) + www.gi.de + Gesellschaft fuer Informatik + www.giac.org + GIAC.org + www.gibill.va.gov + US Department of Veterans Affairs + www.giblod.no + GiBlod.no + www.gifttool.com + GiftTool.com + www.gifyo.com + gifyo (partial) + www.giganews.com + Giganews (partial) + www.gigaset.com + Gigaset.com + www.gigenetcloud.com + GigeNET Cloud.com + www.girlscouts.org + Girl Scouts (partial) + www.gistmarks.com + gistmarks.com + www.gitcafe.com + GitCafe (partial) + www.gitcop.com + GitCop.com + www.gitian.org + Gitian.org + www.gittip.com + Gittip.com + www.givedirect.org + GiveDirect + www.givedirectly.org + GiveDirectly.org + www.givekidstheworld.org + Give Kids the World + www.givekidstheworldstore.org + Give Kids the World + www.givingcomfort.com + GivingComfort.org + www.givingcomfort.org + GivingComfort.org + www.gkg.net + GKG + www.gktw.org + Give Kids the World + www.gl.ch + Schweizer Regierung + www.glasgow.gov.uk + UK Local Government + www.glasscraftexpo.com + Glass Craft & Bead Expo + www.glassesusa.com + Glassesusa.com + www.glenoit.com + Glenoit.com + www.glenscott.net + GlenScott + www.glitterbank.com + GlitterBank (partial) + www.glo.bo + bit.ly vanity domains + www.globalchokepoints.org + EFF + www.globaleaks.org + GlobaLeaks.org (partial) + www.globalmarinenet.com + Global Marine Networks (partial) + www.globalnetworkinitiative.org + Global Network Initiative.org + www.globalpolicy.org + Global Policy Forum + www.globalsign.* + GlobalSign + www.globalsign.co.in + GlobalSign + www.globalsign.com.* + GlobalSign + www.globaltestsupply.com + Globaltestsupply + www.globes.co.il + Globes (partial) + www.globetrotter.de + Globetrotter + www.globusreisen.ch + Hotelplan + www.globusvoyages.ch + Hotelplan + www.glose.com + Glose.com + www.gloucestershire.gov.uk + UK Local Government + www.gls-group.eu + General Logistics Systems + www.gls.de + GLS Bank + www.glype.com + Glype (partial) + www.glyph.im + glyph.im + www.gmail.com + Google Services + www.gmo-registry.com + GMO-Registry.com + www.gmodules.com + Google APIs + www.gmoregistry.com + GMO-Registry.com + www.gmplib.org + GMP Lib.org + www.gmu.edu + George Mason University (partial) + www.gmx.* + GMX + www.gmx.co.uk + GMX + www.gna.org + Gna (partial) + www.gnomejournal.org + GNOME (partial) + www.gnuheter.com + Planet Gnuheter + www.gnupg.org + GnuPG.org (partial) + www.godoc.org + GoDoc.org + www.godownloadsongs.com + Space Inch (partial) + www.goduke.com + Duke University (partial) + www.godvillegame.com + Godville game + www.gogoair.com + Gogo + www.gogoinflight.com + Gogo + www.gogotraining.com + GogoTraining.com (partial) + www.goldenfrog.com + Golden Frog.com (partial) + www.golf2go.net + BCGolf.com + www.golfcourseindustry.com + Golf Course Industry + www.golfdigestinsiders.com + Golf Digest (partial) + www.golflink.net + GolfLink.com (partial) + www.gomez.com + Compuware Gomez + www.gondor.io + Gondor + www.goo.gl + Google Services + www.goo.im + Goo.im + www.goodsearch.com + goodsearch (partial) + www.goodsie.com + Goodsie (partial) + www.google-melange.com + GoogleMelange + www.google.* + Google Videos + www.google.co.* + Google Videos + www.google.com + GoogleSorry + www.google.com.* + Google Videos + www.google.org + Google.org + www.googlemail.com + Google Services + www.googletagservices.com + Google Services + www.gosi.gov.sa + Saudi Government + www.goslice.com + Slice + www.gotmerchant.com + Gotmerchant.com (partial) + www.gotoassist.com + Citrix (partial) + www.goturkey.com + Go Turkey.com + www.govcert.nl + NL Overheid + www.gowalla.com + Gowalla + www.gowork.pl + GoWork.pl (partial) + www.gpfi.org + GPFI + www.gpul.org + GPUL.org (partial) + www.gq-magazine.co.uk + GQ (partial) + www.graasmilk.net + graasmilk.net + www.grabcad.com + GrabCAD + www.gradimages.com + GradImages + www.gradschool.utah.edu + University of Utah (partial) + www.grahamcluley.com + Graham Cluley.com (partial) + www.gran-turismo.com + Gran-Turismo.com (partial) + www.grandhaventribune.com + Grand Haven Tribune (partial) + www.graysofwestminster.co.uk + Grays of Westminster (partial) + www.grctech.com + Gibson Research + www.greasyfork.org + Greasy Fork.org + www.greatcareers.co.uk + Argos (partial) + www.greatfire.org + GreatFire.org + www.greatnet.de + Greatnet.de (partial) + www.greatscottgadgets.com + Great Scott Gadgets.com + www.greenhost.nl + Greenhost + www.greenmangaming.com + greenman gaming (partial) + www.greensmoke.co.uk + Green Smoke (partial) + www.greentechmedia.com + Greentech Media + www.greplin.com + Greplin.com + www.gridzdirect.com + Gridz Direct.com (partial) + www.grit.io + grit.io + www.groenlinks.nl + NL Politiek + www.groklearning.com + Grok Learning.com + www.groton.org + Groton.org + www.grouplogic.com + GroupLogic (partial) + www.grouponworks.com + Groupon Works.com + www.growery.org + Growery (partial) + www.gruen.net + GRÜN Software + www.gruene.de + Alliance '90/The Greens (partial) + www.grupfoni.com + Grupfoni + www.gsfacket.se + Gsfacket.se + www.gsnmagazine.com + Government Security News (partial) + www.gsu.edu + GSU.edu (false MCB) + www.guadec.org + GPUL.org (partial) + www.guarantorusloans.co.uk + Guarantorus Loans.co.uk + www.guardianbookshop.co.uk + The Guardian (partial) + www.guardianeatright.co.uk + The Guardian (partial) + www.guardiansubscriptions.co.uk + Guardian Subscriptions.co.uk + www.guildmc.com + The Guild of Master Craftsmen + www.guitar.co.uk + Merchant City Music (partial) + www.gulesider.no + Gulesider + www.gun.io + GunIO + www.gupnp.org + GNOME (partial) + www.guru.de + guru.de + www.gust.com + Gust (partial) + www.gvntube.com + GVNTube.com (partial) + www.gymglish.* + GymGlish (partial) + www.gymglish.co.uk + GymGlish (partial) + www.gymglish.com.br + GymGlish (partial) + www.gynecomastia.org + Gynecomastia.org + www.h-node.org + h-node.org + www.h2hc.com.br + H2HC.com.br + www.haaksbergen.nl + NL Overheid + www.haarlemmermeer.nl + NL Overheid + www.habbo.fi + Habbo.fi + www.habervision.com + Haber Vision (partial) + www.habpl.us + habpl.us + www.habrastorage.org + habrastorage.org + www.hackable-devices.org + hackable-devices.org + www.hackerrank.com + HackerRank.com + www.hackertarget.com + Hacker Target.com + www.hackinthebox.org + Hackinthebox.org + www.hackney.gov.uk + UK Local Government + www.hackthissite.org + Hack This Site.org + www.hacktionlab.org + HacktionLab.org + www.hailavenger.com + Hail Storm Products + www.hak5.org + Hak5.org (false MCB) + www.hakko.com + Hakko.com + www.halebop.se + Halebop.se + www.hamburg.de + Hamburg + www.hamradio.com + Hamradio.com + www.handelsbanken.fi + handelsbanken.fi (partial) + www.handmadekultur.de + Handmade Kultur.de (partial) + www.handtekening.nl + Handtekening.nl + www.hanford.gov + Hanford Site + www.hannovermesse.de + Hannover Messe.de (partial) + www.hants.gov.uk + UK Local Government + www.harland.com + Harland Clarke + www.harland.net + Harland Clarke + www.harlandclarke.com + Harland Clarke + www.harlandclarkegiftcard.com + Harland Clarke + www.harlandclarkewebsmart.com + Harland Clarke + www.harlandforms.com + Harland Clarke + www.harvardpilgrim.org + Harvard Pilgrim.org (partial) + www.hashcat.net + Hashcat + www.haskoin.com + Haskoin.com + www.hastings.gov.uk + UK Local Government + www.hastrk1.com + hastrk1.com + www.hatatorium.com + Hatatorium + www.haveproof.com + HaveProof.com + www.havering.gov.uk + UK Local Government + www.hbbtv.org + HbbTV + www.hboneplus.hu + NIIF Intézet (partial) + www.hdh.ucsd.edu + UCSD + www.hds.ucsd.edu + UCSD + www.hdsa.org + Huntington's Disease Society of America + www.hdserviceproviders.com + HDserviceproviders.com + www.hdtracks.com + HDtracks.com + www.he.com + Hurricane Electric + www.headstrong.de + headstrong.de + www.healthcheckusa.com + HealthCheckUSA + www.healths.biz + Healths.Biz + www.heatball.de + Heatball.de + www.heathkit.com + Heathkit + www.heerenveen.nl + NL Overheid + www.heidelberg.de + heidelberg + www.hellholecheesefactory.org + Hell Hole Cheese Factory.org + www.hello.tokyo + hello.tokyo + www.helloneighbour.com + Hello Neighbour + www.helmholtz-berlin.de + Helmholtz-Zentrum Berlin for Materials and Energy + www.helmich.de + Helmich IT-Security + www.heml.is + Heml.is + www.herefordshire.gov.uk + UK Local Government + www.heroesofnewerth.com + S2 Games (partial) + www.hertsdirect.org + UK Local Government + www.hetlnvloket.nl + NL Overheid + www.heusden.nl + NL Overheid + www.hex-rays.com + Hex-Rays.com + www.hexagon.cc + Hexagon + www.hgo.se + HGO.se + www.hh.se + HH.se + www.hi5.com + hi5 + www.hiawatha-webserver.org + Hiawatha-webserver.org + www.hideme.ru + HideMe.ru + www.hideme.today + hideme.today + www.hifx.co.uk + HiFX + www.hig.se + HIG.se + www.highfidelity.io + High Fidelity.io + www.hillingdon.gov.uk + UK Local Government + www.hilversum.nl + NL Overheid + www.hinckley-bosworth.gov.uk + UK Local Government + www.hinckleyandbosworthonline.org.uk + UK Local Government + www.hipchat.com + HipChat.com + www.his.se + HIS.se + www.historytoday.com + History Today (partial) + www.hitbox.tv + hitbox.tv + www.hivos.nl + Hivos.nl + www.hjv.dk + Hjv.dk + www.hkex.com.hk + Hong Kong Stock Exchange (partial) + www.hkk.de + HKK + www.hkn.de + HKN (partial) + www.hm.com + Hm.com + www.hmapps.net + hmapps.net + www.hmv.co.uk + HMV + www.hmv.com + HMV + www.hobbyking.com + Hobbyking + www.hobocomp.com + Hobocomp.com + www.hofstra.edu + Hofstra University + www.hoku.co.jp + Showcase-TV + www.holderdeord.no + Holder de ord.no + www.holidaybreak.co.uk + Holidaybreak (partial) + www.hollywoodoutlaws.com + Hollywood Outlaws.com (partial) + www.home.ch + Home.ch (partial) + www.homebase.co.uk + Homebase + www.homebase.com + Homebase + www.homebello.com + HomeBello (partial) + www.homefinder.com + HomeFinder.com (partial) + www.homementors.com + Home Mentors.com + www.hometheaterreview.com + Home Theater Review.com (false MCB) + www.honcode.ch + HONcode + www.hoorn.nl + NL Overheid + www.hopstudios.com + Hop Studios + www.horde-llc.com + Horde (partial) + www.horstaandemaas.nl + NL Overheid + www.host2.bg + host2.bg + www.hostbaby.com + HostBaby (partial) + www.hostcenter.com + Bluewin HostCenter + www.hostcreo.com + Host Creo + www.hostdeclaration.ru + Declaration of Russian Hosting Providers + www.hostdimedomains.com + HostDime (partial) + www.hosteuropegroup.com + Host Europe Group + www.hostica.com + Hostica.com + www.hostican.com + Hostican Web Hosting + www.hosting.com + Hosting (partial) + www.hosting2go.nl + Hosting2GO.nl (partial) + www.hostingas.lt + Hostingas.lt + www.hostingcatalog.com + Hosting Catalog.com (partial) + www.hostingxtreme.com + HostingXtreme.com (partial) + www.hostpointpartner.ch + Hostpointpartner.ch + www.hostr.co + Hostr.co + www.hosts.co.uk + Hosts + www.hostvoice.com + Host Voice.com + www.hotel.ch + hotel.ch + www.hotelmangaby.com + Hotel Mangaby + www.hotelplan.ch + Hotelplan + www.hoteltotravel.com + Hoteltotravel (partial) + www.hotfile.com + Hotfile + www.hotmail.co.* + Hotmail / Live + www.hotscripts.com + Hot Scripts.com + www.hotukdeals.com + HotUKDeals (partial) + www.houndci.com + Hound CI.com + www.house.resource.org + Public.Resource.Org + www.housting.de + Net-Housting.de (partial) + www.houten.nl + NL Overheid + www.howsecureismypassword.net + How Secure Is My Password.net + www.howsmyssl.com + Hows My SSL.com + www.howsmytls.com + Hows My SSL.com + www.howto.gov + HowTo.gov + www.howtowriteabookasap.com + Global Marketing Strategies (partial) + www.hplusdigitalseries.com + H+: the Digital Series + www.hqpower.eu + Velleman Group (partial) + www.hr-s.co.jp + HR Solutions + www.hra-news.org + HRA-News.org + www.hrc.org + Human Rights Campaign (partial) + www.hrsmart.com + HRsmart + www.hs.fi + Helsingin Sanomat (partial) + www.hsbc.* + HSBC + www.hsbc.co.* + HSBC + www.hsbc.com.* + HSBC + www.hsivonen.fi + H Sivonen.fi + www.hslda.org + Home School Legal Defense Association + www.hsv.se + HSV.se + www.httpsnow.org + EFF + www.hub.sciverse.com + SciVerse (partial) + www.hubzero.org + HUBzero + www.huizen.nl + NL Overheid + www.huk.de + HUK Coburg + www.humanism.org.uk + Humanism.org.uk + www.humanrightsdefensecenter.org + Human Rights Defense Center.org + www.humanrightsfirst.org + Human Rights First.org (partial) + www.hungerhost.com + Hungerhost + www.huntcal.com + Hunt Calendars + www.huque.com + Huque.com (partial) + www.hurleymc.com + Hurley Medical Center + www.hush.com + Hushmail + www.hush.technology + Hush.technology + www.hushmail.com + Hushmail + www.hustlercanada.com + Hustler + www.hustlermagazine.com + Hustler + www.huuto.net + huuto.net + www.hvb.de + Hypovereinsbank + www.hvgkonyvek.hu + HVG Kiadó Zrt. + www.hyb.pw + Hybrid -- Cryptocurrency Combined + www.hynek.me + Hynek.me + www.hyperelliptic.org + Hyper Elliptic.org + www.hyperoptic.com + Hyperoptic.com + www.hyperspin.com + Hyperspin (partial) + www.hypovereinsbank.de + Hypovereinsbank + www.i-koruna.com + iKoruna + www.i.cx + I.CX + www.i0.cz + i0.cz + www.iajapan.org + IA Japan.org (partial) + www.iar.com + IAR.com + www.iatspayments.com + iATS Payments.com (partial) + www.ibario.com + iBario.com + www.iblocklist.com + Iblocklist.com (partial) + www.ibphoenix.com + IBPhoenix.com + www.ibqonline.com + ibqonline.com + www.ibtimes.co.uk + IBTimes.co.uk + www.ic3.gov + US Internet Crime Complaint Center + www.ica.se + ICA.se + www.icanhazip.com + icanhazip.com + www.icarol.com + iCarol + www.ice.gov + U.S. Immigration and Customs Enforcement + www.iceheberg.fr + IceHeberg + www.icez.net + icez.net + www.icmag.* + Intl Cannagraphic Magazine + www.icmail.com + ICMail + www.ico.gov.uk + UK Information Commissioner's Office (partial) + www.icommons.org + iCommons (partial) + www.icommunity.fr + iCommunity.fr + www.icpen.org + ICPEN + www.ictrecht.nl + ICTRecht + www.icukhosting.co.uk + ICUK + www.ideastorm.com + Dell (partial) + www.idefix.com + Idefix + www.identitytheft.org.uk + IdentityTheft + www.identrustssl.com + IdenTrustSSL.com + www.idfpr.com + Illinois Department of Financial & Professional Regulation + www.idg.se + IDG.se (partial) + www.idnet.net + IDNet + www.idofoundation.org + I Do Foundation + www.idstronghold.com + Identity Stronghold + www.iea.org + International Energy Agency + www.ieee-elearning.org + IEEE eLearning Library + www.ifa.ch + IFA.ch + www.ifap.ed.gov + ED.gov (partial) + www.ifca.ai + International Financial Cryptography Association (partial) + www.ifex.org + IFEX.org + www.ifightsurveillance.com + I Fight Surveillance.org + www.iflygo.com + go!Mokulele + www.ifortuna.sk + Ifortuna.sk + www.ifttt.com + IFTTT.com (partial) + www.ignum.cz + IGNUM (partial) + www.igolder.com + Igolder.com + www.igvita.com + Ilya Grigorik (partial) + www.ihgagent.com + InterContinental Hotels Group + www.ihgplc.com + IHG PLC.com (partial) + www.iis.net + IIS.net + www.ijmfreedommaker.org + IJM Freedom Maker (partial) + www.ijreview.com + IJReview.com (partial) + www.ikgalekkerslapen.nl + ikgalekkerslapen.nl + www.ikiwiki.info + ikiwiki.info + www.ikk-gesundplus.de + IKK-Gesundplus + www.ikk-suedwest.de + IKK-Suedwest + www.illinoislawreview.org + University of Illinois at Urban-Champaign (partial) + www.ilmasto-opas.fi + Ilmasto-opas + www.ilo.org + ILO.org + www.ilxgroup.com + ILG Group.com (partial) + www.imagecomics.com + ImageComics.com + www.imageoptim.com + ImageOptim.com + www.imageshack.com + ImageShack (partial) + www.imagestash.org + Imagestash + www.imediaconnection.com + iMedia Communications + www.imeem.com + Myspace (mixed content) + www.imf.org + IMF.org + www.imfreedom.org + Instant Messaging Freedom + www.imgbox.com + imgbox (partial) + www.immi.is + IMMI.is + www.immunicity.org + Immunicity.org + www.immunityinc.com + Immunityinc.com + www.immunitysec.com + Immunityinc.com + www.imo.im + imo.im + www.impactsoftcompany.com + Impact Software Company.com + www.imperativeideas.com + Imperative Ideas.com (partial) + www.impo.ch + Coop + www.improvely.com + Improvely.com + www.imququ.com + ImQuQu.com + www.ims-dm.com + Interactive Marketing Solutions + www.imssr.com + IMSSR.com + www.inachinashop.com + O’Heffernan + www.inboxapp.com + InboxApp.com + www.inc.com + Inc.com (mixed content) + www.incircle.com + TPG Capital (partial) + www.incloak.com + inCloak.com + www.incommon.org + InCommon + www.indexoncensorship.org + Index on Censorship.org (partial) + www.indiemerchandising.com + IndieMerchandising + www.indiemerchstore.com + IndieMerchstore + www.individual-villas.co.uk + Wyndham (partial) + www.indprop.gov.sk + SlovakGoverment + www.inductionsolutions.com + Induction Solutions.com (partial) + www.indure.org + INDURE + www.industrybotnetgroup.org + Industry Botnet Group + www.indybay.org + Indybay + www.indyreader.org + IndyReader.org + www.indystar.com + Indianapolis Star + www.inet.se + Inet.se + www.inetinteractive.com + iNet Interactive (partial) + www.infinet.com.au + Infinet.com.au (partial) + www.infobaselistexpress.com + Acxiom (partial) + www.infonline.de + INFOnline (partial) + www.infopankki.fi + Infopankki + www.infoq.com + InfoQ (partial) + www.informahealthcare.com + Informa Healthcare (partial) + www.informatick.com + informatick.net (partial) + www.informatik.uni-hamburg.de + UHH_Informatik + www.informationweek.com + InformationWeek + www.informer.com + Informer.com (partial) + www.infosecisland.com + Infosec Island (partial) + www.infosecurity-magazine.com + Reed Exhibitions (partial) + www.infospyware.com + Infospyware.com (partial) + www.infotomb.com + InfoTomb.com + www.infragard.net + Infragard.net + www.infusionsoft.com + Infusionsoft (partial) + www.ing.com + ING + www.ing.nl + ING + www.ingdirect.com.au + ING Direct + www.ingdirect.es + ING DIRECT + www.ingentaconnect.com + ingentaconnect (partial) + www.ingress.com + Ingress + www.initex.com + Initex.com + www.inkbunny.net + Inkbunny + www.inoreader.com + InoReader + www.insa-strasbourg.fr + Institut National des Sciences Appliquées (partial) + www.inschrijven.nl + Inschrijven.nl + www.insecure.ws + Insecure.ws + www.insightcommunity.com + Floor64 (partial) + www.insightexpress.com + InsightExpress.com + www.inspirationgreen.com + Inspiration Green + www.instapanel.com + Instapanel.com + www.instapaper.com + Instapaper + www.instra.com + Instra + www.insurance.va.gov + US Department of Veterans Affairs + www.insure-systems.co.uk + Dial Direct + www.intechnology.co.uk + InTechnology.co.uk + www.integrity.st + Integrity.st + www.intelfellowships.com + Intel Fellowships.com + www.intelliserver.net + intelliserver.net + www.intellnews.net + Altoona Mirror (partial) + www.intensitylab.com + IntensityLab.com + www.intentmedia.co.uk + Intent Media (partial) + www.interactivemediaawards.com + Interactive Media Awards + www.interactiveonline.com + Interactive Online + www.interdiscount.ch + Coop + www.interhyp.de + Interhyp.de + www.internap.co.jp + Internap Network Services (partial) + www.internationalpayments.co.uk + International Payments.co.uk + www.internetbrands.com + Internet Brands + www.internetconsultatie.nl + NL Overheid + www.internetstaff.com + Internet Staff.com (partial) + www.internetvotes.org + Center for Rights + www.internetweek.jp + Internet Week.jp + www.internews.org + Internews + www.interspire.com + BigCommerce + www.intevation.* + Intevation (partial) + www.intevation.de + Intevation GmbH (partial) + www.intevation.net + Intevation GmbH (partial) + www.intevation.org + Intevation GmbH (partial) + www.intgovforum.org + Int Gov Forum.org (partial) + www.intrepidmuseum.org + Intrepid Museum + www.intrepidusgroup.com + Intrepidus Group.com + www.introversion.co.uk + Introversion Software (partial) + www.inuits.eu + Inuits.eu + www.invasion.com + Invasion.com (partial) + www.invenio-software.org + Invenio-software.org + www.inventhelp.com + InventHelp + www.inverse.ca + Inverse + www.investor.gov + Investor.gov + www.investorflow.com + Silver Oven (partial) + www.investors.com + Investors.com (partial) + www.investorsinpeople.co.uk + Investors in People + www.investsmart.com.au + InvestSMART (partial) + www.invoca.com + Invoca.com (partial) + www.iolproperty.co.za + IOLProperty.co.za (partial) + www.ionaudio.com + ION Audio + www.ioplex.com + IOPLEX Software + www.ip-check.info + IP check (partial) + www.ip2location.com + IP2Location.com + www.ipa.go.jp + Japan Information Technology Promotion Agency + www.ipa.jp + Japan Information Technology Promotion Agency + www.ipcc.ch + IPCC.ch + www.ipo.gov.uk + UK Intellectual Property Office + www.ipqualityscore.com + IPQualityScore.com + www.ipsos-na.com + Ipsos (partial) + www.ipswich.gov.uk + UK Local Government + www.iptc.org + ITPC (partial) + www.ipwnage.com + iPwnAge.com + www.iqt.org + In-Q-Tel + www.iraaa.org + IRAAA.org (partial) + www.irccloud.com + Irccloud.com + www.irf.se + IRF.se + www.irill.org + IRILL.org + www.irishtimes.com + The Irish Times + www.irtf.org + IRTF.org + www.irunsafe.com + RunSafe + www.irwinlaw.com + Irwin Law + www.isc-events.com + International Supercomputing Conference + www.isc2cares.org + ISC2 Cares.org + www.iseclab.org + Iseclab.org + www.isiknowledge.com + Web of Knowledge + www.isleaked.com + Is Leaked.com + www.islington.gov.uk + UK Local Government + www.isnic.is + ISNIC.is + www.isoc.org.br + ISOC.org.br + www.isocket.com + isocket (partial) + www.isohunt.to + isoHunt.to (partial) + www.isomorphic.com + Isomorphic Software (partial) + www.ispam.nl + ISPam.nl + www.ispgids.com + ISPGids.com + www.ispid.nl + ISPID.nl + www.ist.utl.pt + Technical University of Lisbon + www.istanbulhs.org + istanbul hs.org + www.istlsfastyet.com + Is TLS Fast Yet.com + www.isyvmon.com + isyVmon (partial) + www.it-sicherheit.de + Institut für Internet-Sicherheit + www.italliance.com + ITAlliance.com + www.itbiz.cz + itbiz.cz + www.itella.fi + itella.fi + www.iterm2.org + iTerm2.org + www.ithaca.edu + Ithaca College + www.itrust.org.cn + itrust.org.cn + www.itslearning.com + ItsLearning + www.itunes.com + Apple.com (partial) + www.itvstatic.com + ITV.com (partial) + www.ivarch.com + ivarch.com + www.ivdopia.com + Vdopia + www.ivegotkids.com + Ive Got Kids.com (partial) + www.ivpn.net + IVPN.net + www.iwantclips.com + iWantClips.com + www.iwight.com + UK Local Government + www.iwork.com + Apple.com (partial) + www.izea.com + IZEA.com + www.j.mp + bit.ly + www.ja-sig.org + Jasig.org + www.ja.net + JANET + www.jabber.at + Jabber.at + www.jabber.no + Jabber.no + www.jackandjill.ie + The Jack and Jill Children's Foundation Charity + www.jackandjillraffle.com + The Jack and Jill Children's Foundation Charity + www.jackandjillraffle.org + The Jack and Jill Children's Foundation Charity + www.jackson-it.de + Jackson-IT.de + www.jailbreakingisnotacrime.org + Jailbreaking Is Not a Crime.org + www.jaim.at + Jaim.at + www.jako-o.at + JAKO-O + www.jako-o.com + JAKO-O + www.jako-o.de + JAKO-O + www.jako-o.eu + JAKO-O + www.jako-o.lu + JAKO-O + www.jal.co.jp + Japan Airlines + www.jambit.com + jambit + www.jameco.com + Jameco + www.jamesvillas.co.uk + Wyndham (partial) + www.jamieoliver.com + Jamie Oliver + www.jamstec.go.jp + JAMSTEC.go.jp + www.jamtrackcentral.com + Jamtrackcentral + www.jansbrug.nl + D.S.V. Sint Jansbrug + www.jappix.net + Jappix.net + www.jappix.org + Jappix.org + www.jappix.pro + Jappix.pro + www.jariangibson.com + Jarian Gibson.com (partial) + www.jasondavies.com + Jason Davies.com + www.java.com + Java + www.javacoolsoftware.com + Javacoolsoftware.com + www.javvin.com + Javvin.com (partial) + www.jayisgames.com + Jay Is Games.com (partial) + www.jaymart.co.th + Jaymart.co.th + www.jba.io + jba.io + www.jbox.com + JList.com (partial) + www.jdeslip.com + jdeslip.com + www.jdeslippe.com + J Deslippe.com + www.jdkasten.com + JD Kasten.com + www.jdoqocy.com + Commission Junction + www.jdsupra.com + JD Supra + www.jeffnabers.com + Jeff Nabers.com (partial) + www.jellynote.com + Jellynote.com + www.jensge.org + jensge.org + www.jewelosco.com + Jewel Osco.com + www.jewishpress.com + JewishPress.com + www.jinx.com + Jinx.com (partial) + www.jiscmail.ac.uk + JISCMail + www.jitec.ipa.go.jp + Japan Information Technology Promotion Agency + www.jitec.jp + Japan Information Technology Promotion Agency + www.jitsi.org + Jitsi + www.jive.com + Jive.com + www.jobbik.hu + Jobbik (partial) + www.jobsatosu.com + Ohio State University (partial) + www.jobscout24.de + Jobscout24 + www.jobsite.com + Jobsite.com + www.johnlewis.ie + johnlewis.ie + www.johoobuy.com + Johoobuy.com + www.joindiaspora.com + Diaspora + www.joinus.today + JoinUs.Today + www.jonathanmayer.org + Jonathan Mayer.org + www.jondos.org + JonDos + www.joppix.com + joppix.com + www.joshtriplett.org + Josh Triplett.org + www.joslin.org + Joslin Diabetes Center + www.journal-news.net + Journal-News.net (partial) + www.journal-republican.com + Piatt County Journal-Republican (partial) + www.journeyed.com + Journeyed + www.joyclub.de + Joyclub.de + www.jpberlin.de + JPBerlin.de + www.jpcert.or.jp + JP-CERT + www.jrrt.org.uk + Joseph Rowntree Reform Trust (partial) + www.js-kit.com + Echo (partial) + www.judici.com + Judici + www.jujucharms.com + Juju charms.com + www.juki.co.jp + JUKI + www.juniperresearch.com + Juniper Research + www.junodownload.com + JunoDownload + www.jusek.se + Jusek.se + www.just-eat.co.uk + justeatuk (partial) + www.justice.gov.sk + SlovakGoverment + www.justice.gov.uk + Ministry of Justice + www.justice.sk + SlovakGoverment + www.justitie.nl + NL Overheid + www.justmoon.net + Justmoon.net + www.justtomatoes.com + JustTomatoes.com + www.jyllands-posten.dk + Jyllands-Posten.dk + www.k2s.cc + K2s.cc + www.kabelbw.de + kabelbw + www.kabeldeutschland.de + Kabel Deutschland + www.kabelkiosk.de + Kabelkiosk.de + www.kable.com + Kable Media Services (partial) + www.kachingle.com + Kachingle + www.kagi.com + Kagi + www.kaiseki.me + kaiseki.me + www.kaisersysteme.com + Kaiser Systeme (partial) + www.kakao.com + KAKAO + www.kampyle.com + Kampyle (partial) + www.kaneva.com + Kaneva (partial) + www.kangurum.com.tr + Kangurum + www.kapsi.fi + Kapsi.fi (very partial) + www.karagarga.net + Karagarga + www.karmankardon.nl + Harman International Industries (partial) + www.karwansaraypublishers.com + Karwansaray Publishers (partial) + www.kasandbox.org + Khan Academy + www.kasperskycontenthub.com + kasperskycontenthub.com + www.kasserver.com + KASserver.com + www.kastatic.org + Khan Academy + www.katasterportal.sk + SlovakGoverment + www.kathrein.de + Kathrein + www.kayak.co.uk + Kayak + www.kayak.com + Kayak + www.kb8ojh.net + kb8ojh.net + www.kbit.dk + KB IT.dk + www.kbpublisher.com + KBPublisher.com (false MCB) + www.kbs.de + Knappschaft-Bahn-See + www.kcc.webhostone.de + WebhostOne + www.kdab.com + KDAB + www.kdukvh.com + Commission Junction + www.keelog.com + Keelog.com + www.keenot.es + Keenot.es (partial) + www.keep2share.cc + K2s.cc + www.keepassx.org + Keepassx + www.kei.pl + Kei.pl (partial) + www.kemi.se + KEMI.se + www.kenexa.com + Kenexa (partial) + www.kenexaworldconference.com + Kenexa (partial) + www.kent.gov.uk + UK Local Government + www.kerbalspaceprogram.com + Kerbal Space Program (partial) + www.kettering.gov.uk + UK Local Government + www.keyerror.com + Keyerror.com + www.khanacademy.org + Khan Academy + www.kickass.to + KickassTorrents + www.kickasstorrents.com + KickassTorrents + www.kicknews.co.uk + KickNews + www.kicktraq.com + Kicktraq + www.kidshealth.org + KidsHealth/TeensHealth + www.kimberly-clark.com + Kimberly-Clark (partial) + www.kimberly-clark.com.* + Kimberly-Clark (partial) + www.kinesis-ergo.com + Kinesis-Ergo.com + www.kinfolk.com + Kinfolk.com (partial) + www.kinotehnik.com + Kinotehnik + www.kintera.com + Kintera Network + www.kir.hu + Oktatási Hivatal + www.kirklees.gov.uk + UK Local Government + www.kirsle.net + Kirsle.net + www.kismetwireless.net + Kismetwireless.net + www.kitapyurdu.com + Kitapyurdu + www.kitepackaging.co.uk + Kite Packaging.co.uk + www.kivo.com + Kivo.com + www.kkbox.com + KKBOX.com + www.kkh-allianz.de + KKH-Allianz + www.kkh.se + KKH.se + www.klimaschutzpartner-berlin.de + KlimaSchutzPartner Berlin + www.klubitus.org + Klubitus.org + www.kmh.se + KMH.se + www.knot-dns.cz + Knot-DNS.cz + www.knowledgeblog.org + Knowledge Blog.org (partial) + www.kohls.com + Kohls.com + www.kokousalusta.fi + Kokousalusta + www.komments.net + Komments.net + www.kommunal.se + Kommunal.se + www.komplett.no + Komplett.no + www.konami-korea.kr + Konami-Korea.kr + www.konami.com + Konami.com + www.konklone.com + konklone.com + www.konstfack.se + Konstfack.se + www.kore.io + Kore.io + www.kornerstoneadmin.com + Kornerstone Admin.com + www.kosmetik-per-klick.de + Medikamente-Per-Klick + www.kotex.com + Kotex + www.kotte-zeller.de + Kotte-zeller.de + www.kotulas.com + Kotulas.com + www.koumbit.org + Koumbit.org + www.kpdyer.com + K P Dyer.com + www.kpt.ch + KPT.ch + www.kqzyfj.com + Commission Junction + www.kr36.co + kr36.co + www.kraxel.org + kraxel.org + www.kreativvonalak.hu + Kreatív Vonalak + www.krebsonsecurity.com + Krebs on Security + www.kriminalvarden.se + KriminalVarden.se + www.krita.org + Krita.org + www.kryptos.sh + Kryptos.sh (partial) + www.krystal.info + Krystal Hosting + www.ksh.hu + Központi Statisztikai Hivatal + www.kth.se + KTH.se + www.kuantokusta.pt + Kuantokusta.pt + www.kub.nl + Tilburg University (partial) + www.kubieziel.de + Kubieziel.de + www.kulcs-soft.hu + Kulcs-soft.hu + www.kuro5hin.org + kuro5hin.org + www.kuther.net + Kuther.net + www.kuvalehdet.fi + Otavamedia (partial) + www.kvm-vps.com + KVM-VPS.com + www.kwiksurveys.com + KwikSurveys + www.kyberia.sk + Kyberia.sk + www.kyivpost.com + Kyiv Post.com + www.kyleschaeffer.com + BlueHost clients + www.kyps.net + KYPS.net + www.l-rz.de + Leibniz Supercomputing Centre + www.l0cal.com + l0cal.com (CAcert) + www.l2020.org + Local 20/20 + www.l2c.co.kr + L2C + www.laaclu.org + ACLU of Louisiana + www.labbb.org + Better Business Bureau (partial) + www.labcorp.com + LabCorp + www.labcorpsolutions.com + LabCorp + www.labelsbythesheet.com + Labels by the Sheet.com (partial) + www.lacie.com + La Cie.com (partial) + www.lacrossealerts.com + La Crosse Alerts.com + www.laeditorialupr.com + University of Puerto Rico (partial) + www.lagen.nu + Lagen.nu + www.lambda-tek.com + LambdaTek + www.landal.* + Wyndham (partial) + www.landalcampings.be + Wyndham (partial) + www.landalcampings.de + Wyndham (partial) + www.landalcampings.nl + Wyndham (partial) + www.landalgreenparks.com + Wyndham (partial) + www.landalparkshop.* + Wyndham (partial) + www.landalskilife.* + Wyndham (partial) + www.landliebe.de + Campina (partial) + www.landscape.io + Landscape.io (partial) + www.languageperfect.co.nz + Language Perfect (partial) + www.languageperfect.com + Language Perfect (partial) + www.lansforsakringar.se + Lansforsakringar.se + www.lantmateriet.se + Lantmateriet.se + www.lanyrd.com + Lanyrd + www.laproxsites.com + Laprox Sites + www.laptop.hu + Laptop.hu + www.laptoplap.hu + Laptop.hu + www.lastcall.com + TPG Capital (partial) + www.lastminute.com + Lastminute.com + www.laughingsquid.us + Laughing Squid (partial) + www.lauramercier.com + Alticore (partial) + www.lavabit.com + Lavabit + www.law.resource.org + Public.Resource.Org + www.law.utah.edu + University of Utah (partial) + www.lawblog.de + LawBlog.de + www.lawnandlandscape.com + Lawn & Landscape + www.laynepublications.com + Layne Publications + www.lbhf.gov.uk + UK Local Government + www.lds.org + The Church of Jesus Christ of Latter-day Saints + www.ldscdn.org + The Church of Jesus Christ of Latter-day Saints + www.lduhtrp.net + Commission Junction + www.leader-manager.com + Leader-Manager.com + www.leaderlandnews.com + The Leader (partial) + www.leadertech.com + Leader Technologies + www.leadwerks.com + Leadwerks.com (partial) + www.leap.se + LEAP.se + www.leapmotion.com + Leap Motion + www.learnmyway.com + Learn my way.com + www.leastauthority.com + Least Authority.com (partial) + www.ledgerscope.net + Ledgerscope.net + www.leechaccess.com + Leechaccess + www.lef.org + Life Extension Magazine + www.lefebvre.org + LeFebvre.org + www.legaldirectories.com + Legal Directories + www.legislationsurveys.com + legislationsurveys.com + www.legitscript.com + LegitScript + www.leibniz-supercomputing-centre.* + Leibniz Supercomputing Centre + www.leicestershire.gov.uk + UK Local Government + www.lenovo.co.uk + Lenovo (partial) + www.lenovoorders.com + Lenovo (partial) + www.lenovovision.com + Lenovo (partial) + www.lensrentals.com + LensRentals.com + www.leroyfcpress.com + Leroy Farmer City Press (partial) + www.lespaceclient.fr + LEspace client.fr + www.lesterchan.net + Lester Chan.net + www.letsencrypt.org + Lets Encrypt.org + www.leukemiafoundation.org + National Children's Leukemia Foundation + www.levesoninquiry.org.uk + The Leveson Inquiry + www.leviathansecurity.com + Leviathan Security.com (partial) + www.levny-hosting.cz + Levny-hosting.cz + www.levonline.com + Levonline.com + www.lexisnexis.com + Reed Exhibitions (partial) + www.lezlovevideo.com + LezloveVideo.com + www.lfait.com + LFAIT.com + www.lfgss.com + LFGSS.com + www.lfov.net + LFov.net + www.lh.co.th + Lh.co.th + www.lib.washington.edu + University of Washington (partial) + www.libanswers.com + LibAnswers + www.libanywhere.com + Library Anywhere + www.libcom.org + Libcom + www.liberalamerica.org + Liberal America.org (partial) + www.liberiangeek.net + Liberian Geek.net + www.liberty-human-rights.org.uk + Liberty + www.libertyflailmowers.com + Liberty Flail Mowers.com (partial) + www.library.dmu.ac.uk + DMU + www.library.unc.edu + UNC.edu (mixed content) + www.libreofficebox.org + LibreOffice-Box + www.libssh.org + libssh.org (partial) + www.libvirt.org + libvirt.org (partial) + www.lichtblick.de + Lichtblick.de + www.lifeinthefastlane.ca + Life in the Fast Lane (partial) + www.lifeline.org.au + Lifeline Australia + www.liferay.com + Liferay.com + www.liftshare.com + LiftShare + www.lightbluetouchpaper.org + Light Blue Touchpaper.org + www.lihm.net + lihm.net + www.liikenneturva.fi + Liikenneturva + www.likeyed.com + likeyed.com + www.liliani.com.br + Liliani + www.lilliputti.com + lilliputti.com + www.limeservice.com + LimeService + www.limesurvey.org + LimeSurvey + www.limited2art.com + Limited 2 Art.com (partial) + www.limun.org + limun.org + www.linbit.com + LINBIT (partial) + www.lincolnshire.gov.uk + UK Local Government + www.lincs.fr + LINCS.fr + www.lindtusa.com + Lindt USA + www.lingue.de + Linguee + www.linguee.com + Linguee + www.linguistlist.org + LINGUIST List (partial) + www.linkshare.com + Rakuten LinkShare (partial) + www.linksmail.de + Die-Linke.de + www.linksysbycisco.com + Linksysbycisco.com + www.linnrecords.com + Linn Records.com (partial) + www.linphone.org + Linphone + www.linutronix.de + linutronix + www.linux-dev.org + linux-dev.org + www.linux-magazine.com + Linux Magazine (partial) + www.linux-sunxi.org + linux-sunxi.org + www.linux.conf.au + linux.conf.au + www.linux.org.ru + Linux.org.ru + www.linuxcloudvps.com + Linux Cloud VPS.com + www.linuxcounter.net + Linux Counter + www.linuxgamepublishing.com + Linux Game Publishing (partial) + www.linuxhostsupport.com + linuxhostsupport.com + www.linuxtag.org + LinuxTag.org + www.linx.net + Linx.net + www.lippupalvelu.fi + Ticketmaster (partial) + www.list.co.uk + The List (partial) + www.listener.co.nz + Listener.co.nz + www.litehosting.org + LiteHosting.org (partial) + www.literatureandlatte.com + Literature and Latte.com + www.littler.com + Littler.com (partial) + www.livechat.zendesk.com + LiveChat (partial) + www.liveinternet.ru + LiveInternet (false MCB) + www.livenation.* + Live Nation Entertainment (partial) + www.livenation.co.* + Live Nation Entertainment (partial) + www.livestock-transport.com + Livestock Transport + www.livezilla.net + LiveZilla.net + www.lizardtech.com + Celartem (partial) + www.lkml.org + LKML + www.lloydstsb-offshore.com + Lloyds TSB Offshore + www.loa.org + LoA.org + www.loadimpact.com + LoadImpact.com + www.loanliner.com + Loanliner.com + www.lochem.nl + NL Overheid + www.loctudy.fr + Loctudy + www.logentries.com + Logentries.com + www.loginza.ru + loginza.ru + www.logoyes.com + LogoYes + www.loisfortexas.com + Lois Kolkhorst + www.lokus.no + lokus.no + www.lolware.net + Lolware.net + www.london-nano.com + London-Nano.com + www.london.gov.uk + UK Local Government + www.londonstockexchange.com + London Stock Exchange (partial) + www.longnow.org + Long Now.org (partial) + www.longtail.tv + LongTail (partial) + www.lookback.io + Lookback.io + www.lookinglocal.gov.uk + Looking Local + www.loopt.com + Loopt + www.lorea.org + Lorea + www.lorentzcenter.nl + Lorentz Center.nl + www.lotusoriginals.com + Lotus Cars (partial) + www.lovefilm.* + LoveFilm + www.lovefood.com + Lovemoney.com (partial) + www.lovehoney.co.uk + LoveHoney (partial) + www.loveourlocalbusiness.com + Love Our Local Business + www.lpdedicated.com + Add2Net (partial) + www.lplogin.com + Add2Net (partial) + www.lpo.org.uk + LPO.org.uk (partial) + www.lrcd.com + Lucid Reverie + www.lrz-muenchen.de + Leibniz Supercomputing Centre + www.lrz-munich.eu + Leibniz Supercomputing Centre + www.lrz.eu + Leibniz Supercomputing Centre + www.lse.ac.uk + LSE.ac.uk (partial) + www.lshtm.ac.uk + London School of Hygiene & Tropical Medicine + www.lsi.com + LSI.com (partial) + www.lso.com + Lone Star Overnight + www.lth.se + LTH.se (partial) + www.lucina.net + Lucina.net + www.ludialudom.sk + Ludialudom.sk + www.ludios.org + Ludios.org + www.lulea.se + Luleå Municipality + www.lullabot.com + Lullabot.com + www.lumiblade-shop.com + Lumiblade + www.lumimart.ch + Coop + www.luminoworld.com + LuminoWorld.com (partial) + www.lumo.me + Lumo + www.lumovies.com + Lumovies.com (false MCB) + www.lunarmods.com + Add2Net (partial) + www.lunarpages.co.uk + Add2Net (partial) + www.lunarpages.com.mx + Add2Net (partial) + www.lung.ca + Canadian Lung Association + www.luxhv.com + LuxSci + www.luxsci.mobi + LuxSci + www.lv.com + Liverpool Victoria (partial) + www.lvmanagement.com + Las Vegas Management + www.lwn.net + LWN + www.lyrishq.com + Lyris (partial) + www.m-fanshop.ch + Migros + www.m-net.de + M-net.de + www.m-w.co.uk + M-W.co.uk (false MCB) + www.m-wm.com + MAZDA Web Members + www.m6d.com + media6degrees (partial) + www.m86security.com + M86security + www.maarssen.nl + NL Overheid + www.maastricht.nl + NL Overheid + www.maawg.org + MAAWG + www.machineslikeus.com + Machines Like Us + www.macmillandictionary.com + Macmillan Dictionary.com + www.macosforge.org + MacOSForge.org + www.macports.org + MacPorts.org + www.macruby.org + MacRuby + www.maddcalifornia.org + MADD California + www.madstein.at + Madstein.at + www.magazinesdirect.com + magazinesdirect.com + www.magic.fr + Magic.fr + www.magix-online.com + MAGIX (partial) + www.magix.info + MAGIX (partial) + www.magnet.ie + Magnet.ie + www.mah.se + MAH.se + www.maidstone.gov.uk + UK Local Government + www.mail-archive.com + Mail-archive.com + www.mail-tester.com + mail-tester.com + www.mailbox.org + Mailbox.org + www.mailinator.com + Mailinator.com + www.mailnull.com + MailNull.com + www.mailoo.org + Mailoo + www.mailoutinteractive.com + Mailout Interactive.com (partial) + www.mailpile.is + Mailpile.is + www.mailvelope.com + Mailvelope + www.maine.gov + Maine.gov (partial) + www.majestic12.co.uk + Majestic-12 (partial) + www.majesticseo.com + Majestic-12 (partial) + www.major.io + major.io + www.majordesignsdollfashions.com + Major Designs Doll Fashions + www.makeagif.com + Make a Gif.com (partial) + www.makershed.com + Maker Shed + www.makeshop.jp + MakeShop.jp (partial) + www.makeuseof.com + MakeUseOf (partial) + www.makewebeasy.com + Makewebeasy.com + www.makeyourlaws.org + Makeyourlaws.org + www.makibox.com + MakiBox + www.malcovery.com + Malcovery.com (partial) + www.mall.cz + Mall_sk_cz_hu_pl + www.mall.hu + Mall_sk_cz_hu_pl + www.mall.pl + Mall_sk_cz_hu_pl + www.mall.sk + Mall_sk_cz_hu_pl + www.malverndiabeticfoot.org + Malvern Diabetic Foot.org + www.malware-tracker.com + Malware Tracker.com (partial) + www.mammut.ch + Mammut + www.manabalss.lv + ManaBalss.lv + www.managedforexprogram.com + Managed Forex Program.com + www.manchester.gov.uk + UK Local Government + www.mandiant.com + Mandiant (partial) + www.mangaupdates.com + Mangaupdates.com + www.manhattan-institute.org + Manhattan Institute + www.mantisbt.org + MantisBT + www.maplesoft.com + Maplesoft.com + www.mappedinisrael.com + Mapped in Israel.com + www.maps.org + MAPS + www.marc-stevens.nl + Marc-Stevens.nl + www.marc.info + MARC.info + www.marcan.st + marcan.st + www.marcansoft.com + marcan.st + www.mariadb.com + MariaDB.com + www.marieclaire.co.uk + Marie Claire.co.uk (partial) + www.mariestopes.org.au + Marie Stopes International Australia + www.markeedragon.com + Markee Dragon + www.marketingoops.com + Marketingoops.com + www.marketplace-used.com + Marketplace Used (partial) + www.marketwire.com + Marketwire + www.martineve.com + Martin Eve.com + www.martus.org + Martus + www.marum.de + Marum.de + www.marx.org + Marxists Internet Archive + www.marxists.org + Marxists Internet Archive + www.mashape.com + Mashape.com (partial) + www.massagemag.com + Massage Magazine + www.massdrop.com + Massdrop.com + www.mathias-kettner.de + Mathias-Kettner.de + www.mathiasbynens.be + Mathias Bynens.be + www.mathworks.com + MathWorks.com + www.matkahuolto.info + Matkahuolto + www.matrox.com + Matrox (partial) + www.matthewsmarking.com + Matthews Marking.com (partial) + www.mattmccutchen.net + MattMccutchen.net + www.mauivaaircruise.com + MauivaAirCruise.com (partial) + www.maurus.net + maurus.net + www.max.se + Max Hamburgare + www.maxim-ic.com + Maxim Integrated.com (partial) + www.maysoft.com + MayFlower Software (partial) + www.mbank.com.pl + mBank (partial) + www.mbdetox.com + MB Detox + www.mbsportsweb.ca + MBSportsWeb (partial) + www.mcafeemobilesecurity.com + McAffee Mobile Security + www.mcitizen.com + Mahomet Citizen (partial) + www.mclibrary.duke.edu + Duke University (partial) + www.mclu.org + Maine Civil Liberties Union + www.mcmaster.ca + McMaster University + www.mcmelectronics.com + MCM Electronics.com (partial) + www.mcssl.com + mcssl.com + www.mcvuk.com + Intent Media (partial) + www.mcwhirter.com.au + McWhirter.com.au + www.mcxnow.com + mcxNOW.com + www.mdcus.com + MDC US.com + www.mdh.se + MDH.se + www.mdshooters.com + Maryland Shooters + www.me.com + Apple.com (partial) + www.measuredvoice.com + Captura Group (partial) + www.media.zapunited.com + zapunited (partial) + www.mediaarea.net + MediaInfo + www.medialayer.net + MediaLayer.com (partial) + www.medialinx-academy.de + Medialinx Academy.de (partial) + www.mediamarkt.se + Mediamarkt.se + www.mediamath.com + MediaMath + www.mediamatters.org + MediaMatters.org (partial) + www.mediastorehouse.net + Media Storehouse (partial) + www.mediate.com + Mediate.com + www.mediawiki.org + Wikimedia + www.medicalert.org + MedicAlert + www.medicalxpress.com + Medical Express + www.medici-manager.com + Medici-manager.com + www.mediciglobal.com + MediciGlobal.com (false MCB) + www.medicinescomplete.com + MedicinesComplete (partial) + www.medikamente-per-klick.de + Medikamente-Per-Klick + www.medipreis.de + MediPreis.de + www.medium.com + Medium + www.medocmall.co.uk + medocmall.co.uk + www.medstop.se + Medstop.se + www.meebey.net + Meebey.net + www.meerssen.nl + NL Overheid + www.meeting-reg.com + Marketing Matters + www.meetinleeds.co.uk + MeetInLeeds + www.megabigpower.com + MegaBigPower.com + www.megaglest.org + MegaGlest.org (false MCB) + www.megapath.com + MegaPath (partial) + www.megayoutubeviews.com + Mega Youtube Views + www.meine-verbraucherzentrale.de + Verbraucherzentrale Nordrhein-Westfalen + www.meinfernbus.de + Meinfernbus.de + www.mekanist.net + Mekanist + www.meldium.com + Meldium.com + www.melectronics.ch + Migros + www.melkweb.com + Campina (partial) + www.meltin.net + Meltin.net (partial) + www.membercentral.com + MemberCentral + www.meningitis-trust.org + Meningitus Trust (partial) + www.menshealth.de + Menshealth.de + www.mequoda.com + Mequoda.com (partial) + www.merchdirect.com + MerchDirect (partial) + www.mercyships.org.s3.amazonaws.com + Mercy Ships (partial) + www.merton.gov.uk + UK Local Government + www.metaboli.co.uk + Metaboli.co.uk + www.metacode.cz + metacode.cz + www.metapress.org + MetaPress (partial) + www.metashop.at + Preisvergleich Internet Services (partial) + www.metasploit.org + Metasploit + www.meteor.com + Meteor.com + www.metrix.net + Metrix + www.metro.co.uk + Metro.co.uk + www.metrotransit.org + Metro Transit + www.mewsite.com + Mew + www.meynconnect.com + MeynConnect + www.mfi.re + MFi.re + www.mghocd.org + Massachusetts General Hospital OCD & Related Disorders Program + www.mh21.de + Martin Pitt + www.mi5.gov.uk + MI5 + www.miamire.com + Miamire.com (partial) + www.micahflee.com + Micah F Lee.com + www.michaelwlucas.com + Michael W Lucas.com + www.microca.st + Microca.st + www.microchip.com + Microchip.com + www.microchipdirect.com + Microchip Direct.com + www.micron.com + Micron (partial) + www.micropartsusa.com + MicropartsUSA + www.microsoft.com + Microsoft (mixed content) + www.microspot.ch + Coop + www.midasgreentech.com + Midas Green Tech.com (partial) + www.middelburg.nl + NL Overheid + www.middendrenthe.nl + NL Overheid + www.midlothian.gov.uk + UK Local Government + www.midnight-commander.org + Midnight Commander + www.midphase.com + Midphase (partial) + www.miga.org + International Finance Corporation (partial) + www.migros-shop.de + Migros + www.migros.ch + Migros + www.migrosbank.ch + Migros + www.migrosmagazin.ch + Migros + www.migrosmagazine.ch + Migros + www.mijnlandal.nl + Wyndham (partial) + www.mijnwestlandutrecht.nl + WestlandUtrecht Bank + www.mikrocontroller.net + Mikrocontroller.net + www.miles-and-more.com + Miles-and-more.com + www.milkandmore.co.uk + MilkAndMore + www.millenniumseating.com + Millennium Seating (partial) + www.millwardbrown.com + Millward Brown + www.milonic.com + Milonic (partial) + www.miltonkeynes.gov.uk + UK Local Government + www.mimovrste.com + Mall_sk_cz_hu_pl + www.minbzk.nl + NL Overheid + www.mincommsy.uni-hamburg.de + MIN_Commsy + www.mind.org.uk + Mind (partial) + www.minecraft.net + Minecraft + www.minedu.sk + SlovakGoverment + www.minfin.nl + NL Overheid + www.miniatur-wunderland.de + Miniatur Wunderland + www.mint.com + Mint + www.mirakar.com + Mirakar.com + www.miramax.com + Miramax.com + www.mirbsd.org + MirBSD + www.mirc.com + mIRC (partial) + www.misadventureswithandi.com + Misadventures with Andi (partial) + www.mitpressjournals.org + Massachusetts Institute of Technology (partial) + www.mitsubishi.com + Mitsubishi.com + www.miun.se + MIUN.se + www.mivacentral.com + MivaCentral + www.mivamerchant.com + Miva Merchant + www.mix-computer.de + MIX-Computer.de + www.mixi.co.jp + mixi (partial) + www.mixx.com + mixx.com + www.mjam.net + Mjam + www.mjg.in + MJG International + www.ml314.com + ML314.com + www.mlno6.com + MLno6.com + www.mmonit.com + MMonit.com + www.mndigital.com + MediaNet (partial) + www.mngt.waikato.ac.nz + University of Waikato (partial) + www.moana-surfrider.com + Moana Surfrider (partial) + www.moatads.com + Moat (partial) + www.mobihand.com + MobiHand + www.mobile-ent.biz + Intent Media (partial) + www.mobilecore.com + MobileCore.com + www.mobilepki.org + mobilepki.org + www.mobilevikings.com + Mobile Vikings (partial) + www.mobireach.com + MobiHand + www.mobot.net + HotUKDeals (partial) + www.mochahost.com + MochaHost + www.modelaircraft.org + Academy of Model Aeronautics (partial) + www.modelviewculture.com + Model View Culture.com (false MCB) + www.moderncrypto.org + Modern Crypto.org + www.modsecurity.org + ModSecurity + www.modxcloud.com + MODX Cloud + www.moerdijk.nl + NL Overheid + www.moevideo.net + Moevideo + www.mofobian.com + Mofobian.com (partial) + www.mog.com + MOG + www.moi.gov.sa + Saudi Government + www.moinmo.in + MoinMoin + www.mojandroid.sk + Mojandroid.sk + www.mojeid.cz + mojeID.cz + www.mol.gov.sa + Saudi Government + www.momentusmedia.com + MomentusMedia + www.mommyslittlesunshine.com + Mommys Little Sunshine.com (partial) + www.monarch.co.uk + Monarch.co.uk + www.money.pl + Money.pl (false MCB) + www.mongoliad.com + The Mongoliad + www.monkeyguts.com + MonkeyGuts.com + www.monmouthshire.gov.uk + UK Local Government + www.monsterdivx.com + MonsterDivx.com (partial) + www.montereybayaquarium.org + Monterey Bay Aquarium + www.mooc-list.com + MOOC-List.com (partial) + www.moon.greenpeace.org + greenpeace.org (very partial) + www.moonpig.com + MoonPig + www.moonpig.com.au + MoonPig + www.mooshi.com.au + Mooshi.com.au (partial) + www.moreinterop.com + moreinterop.com + www.morningstar.co.uk + Morningstar.co.uk (partial) + www.mosaicscience.com + Mosaic Science.com (partial) + www.mosr.sk + SlovakGoverment + www.motesplatsen.se + Motesplatsen.se + www.motherless.com + Motherless (partial) + www.moto-g.com + Moto-G.com + www.mountainview.gov + City of Mountain View (partial) + www.mountspace.com + Mountspace.com + www.mousematrix.com + Mousematrix.com + www.mov24hr.com + yed24hr.com + www.movabletype.com + Movable Type.com + www.move.va.gov + US Department of Veterans Affairs + www.movelia.es + Movelia + www.moveonpac.org + MoveOn + www.moviefone.com + Moviefone + www.movienewsletters.net + movienewsletters.net + www.movieposter.com + Movieposter.com + www.movzeed.com + yed24hr.com + www.mozdev.org + Mozdev (partial) + www.mozo.co + Mozo.com.au (false MCB) + www.mozo.com.au + Mozo.com.au (false MCB) + www.mozy.co.uk + Mozy + www.mozy.com + Mozy + www.mpx.no + Mpx + www.mshare.net + Mindshare Technologies + www.mtailor.com + MTailor.com + www.mtekk.us + mtekk.us + www.mthode.org + mthode.org + www.mtmweb.biz + Medical Treatments Management + www.mtmweb.com + Medical Treatments Management + www.mtnafoundation.org + MTNA (partial) + www.muckrock.com + Muckrock + www.mudgum.net + mudgum.net + www.mufin.com + MAGIX (partial) + www.mullet.se + Mullet.se + www.mullvad.net + Mullvad.net + www.multibit.org + MultiBit + www.multicore-devcon.com + Multicore-DevCon.com + www.multisoft.com + MultiSoft (partial) + www.multivu.com + Cengage (partial) + www.munzinger.de + Munzinger.de + www.muse.mu + Muse.mu (partial) + www.musicbrainz.org + MusicBrainz + www.musicweek.com + Music Week + www.musikerforbundet.se + Musikerforbundet.se + www.musopen.org + Musopen (partial) + www.muspy.com + muspy + www.mutelight.org + Mutelight.org + www.mutualart.com + MutualArt.com + www.muusikoiden.net + Muusikoiden.net + www.mvg-mobil.de + MVG-mobil.de + www.mvps.org + MVPs.org (partial) + www.mvptitle.com + MVP National Title + www.mwave.com.au + Mwave Australia (partial) + www.mwellner.de + Martin Pitt + www.mxguarddog.com + MXGuarddog (partial) + www.mxtoolbox.com + MXToolBox + www.myapnic.net + Asia-Pacific Network Information Centre (partial) + www.mybenefitscalwin.com + MyBenefits CalWIN + www.mybenefitscalwin.net + MyBenefits CalWIN + www.mybenefitscalwin.org + MyBenefits CalWIN + www.mybitcointrade.com + Bitcoin Börse + www.mycalendarbook.com + MyCalendar + www.mycampina.com + Campina (partial) + www.mycanvas.com + MyCanvas.com (false MCB) + www.mycharity.ie + MyCharity.ie + www.mychatagent.com + Just Develop It (partial) + www.mycommerce.com + MyCommerce + www.mycomputer.com + MyComputer.com + www.mycotopia.net + Mycotopia.net + www.mycp.co.nz + Openhost + www.mydatapipe.com + Datapipe.com (partial) + www.mydatapipe.net + Datapipe.com (partial) + www.mydigipass.com + Mydigipass.com + www.mydrive.ch + Mydrive + www.myedaccount.com + MyEdAccount.Com + www.myeddebt.com + MYEDDEBT.com + www.myendnoteweb.com + EndNote Web + www.myesri.com + Esri (partial) + www.myfitnesspal.com + MyFitnessPal + www.myfolder.net + myfolder (partial) + www.mygoldencharter.co.uk + Golden Charter (partial) + www.mygoya.de + MAGIX (partial) + www.myhealth.va.gov + US Department of Veterans Affairs + www.myhearstnewspaper.com + Hearst Corporation (partial) + www.myinterfase.com + myinterfase.com + www.myitcv.org.uk + myitcv.org.uk (partial) + www.mykplan.com + ADP Retirement Services + www.myloc.de + myLoc.de + www.mynomadesk.com + Nomadesk (partial) + www.mynortonaccount.com + Norton (partial) + www.myoptimizerplus.com + My OptimizerPlus.com + www.myoptplussecure.com + My OptPlus secure.com + www.myphilanthropedia.org + Philanthropedia + www.myplaydirect.com + MyPlayDirect + www.mypoints.com + MyPoints + www.mypostbusiness.ch + Post.ch + www.myshadow.org + My Shadow.com + www.myshazam.com + Shazam (partial) + www.mysitemyway.com + Mysitemyway + www.mysmartrend.com + SmarTrend + www.mysn.de + Mysn.de + www.mysociety.org + mySociety.org + www.mysolarcity.com + SolarCity + www.mysql.de + MySQL + www.mysql.fr + MySQL + www.mysql.it + MySQL + www.mysullivannews.com + My Sullivan News.com (partial) + www.mysweetiq.com + mySweetIQ.com + www.mytatasky.com + TataSky + www.mytritonlink.ucsd.edu + UCSD + www.myuhc.com + MyUHC + www.myvolunteerpage.com + Volunteer² (partial) + www.mywell-being.com + MyWell-Being.com + www.mzl.la + bit.ly vanity domains + www.mzv.sk + SlovakGoverment + www.n-aana.org + National American Arab Nursing Association + www.n-joy.de + N-JOY.de + www.n-kesteven.gov.uk + UK Local Government + www.n-somerset.gov.uk + UK Local Government + www.n0where.org + n0where.org + www.naacpcompanystore.org + NAACP Company Store + www.naacpimageawards.net + NAACP Image Awards + www.nab.org + NAB.org + www.nacdl.org + NACL.org + www.nadaguidesstore.com + NADAguides + www.nae.edu + National Academy of Engineering + www.naiin.com + Naiin.com + www.nakedcitizens.eu + Naked citizens + www.namecheap.com + NameCheap + www.nameid.org + NameID.org + www.names.co.uk + Names + www.nandos.com + Nandos.com (partial) + www.nanoengineering.ucsd.edu + UCSD + www.nanohub.org + NanoHUB + www.narac.com + Narac.com + www.nasaimages.org + DVIDS Hub.net + www.nasuni.com + Nasuni.com (partial) + www.national-lottery.co.uk + NationalLottery + www.national.com + Texas Instruments (partial) + www.nationaldefensemagazine.org + National Defense Industrial Association (partial) + www.nationaleatingdisorders.org + National Eating Disorders Association + www.nationaleombudsman.nl + NL Overheid + www.nationalexpress.jobs + National Express (partial) + www.nationalreview.com + NationalReview.com (partial) + www.nationalserviceresources.org + nationalserviceresources.org + www.nationwide-jobs.co.uk + Nationwide Building Society (partial) + www.nattstad.se + Nattstad.se + www.natureshop.com + Nature Shop (partial) + www.naturvardsverket.se + Naturvardsverket.se + www.navercorp.com + Naver Corp.com + www.navicast.co.jp + Showcase-TV + www.navigantresearch.com + Navigant Research.com (partial) + www.navteqmedia.com + NAVTEQ (partial) + www.navynews.co.uk + Royal Navy (partial) + www.nawaat.org + Nawaat + www.nazwa.pl + nazwa.pl (partial) + www.nbg.gr + Greek-banks + www.nbwn.de + Notebooks Wie Neu + www.nccc.nl + NedLinux.com + www.nccgroupdomainservices.com + NCC Group Domain Services.com + www.ncdc.noaa.gov + National Oceanic and Atmospheric Administration (partial) + www.nces.ed.gov + ED.gov (partial) + www.ncric.org + NCRIC + www.ncsc.nl + NCSC.nl + www.ncsi.com + NCSI.com + www.ncta.com + NCTA.com + www.ndia.org + National Defense Industrial Association (partial) + www.ndr.de + Ndr.de + www.nealpoole.com + Neal Poole + www.neck2neck.com + Neck2Neck + www.necu.org + Northeast Credit Union + www.nedlinux.com + NedLinux.com + www.nedstat.com + comScore.com (partial) + www.neelwafurat.com + Neelwafurat.com + www.nelly.com + Nelly.com + www.nelonen.fi + Nelonen.fi (mixed videos) + www.nemertes.com + Nemertes.com + www.neo-direct.com + NEO Direct + www.neobits.com + Neobits (partial) + www.neomailbox.net + neomailbox + www.neonisi.com + Neonisi.com + www.neowin.net + Neowin.net (partial) + www.nerfnow.com + Nerf NOW + www.nesea.org + NESEA + www.nesl.edu + NESL.edu + www.nest.com + Nest.com + www.nestle.de + Nestlé (partial) + www.net-dns.org + NLnet Labs CACert + www.net-housting.de + Net-Housting.de (partial) + www.netbank.de + netbank.de + www.netbeat.de + Netbeat Webmail + www.netdoktor.se + Netdoktor.se + www.neteller-group.com + Optimal Payments (partial) + www.netelligent.ca + Netelligent (partial) + www.netflix.com + Netflix (partial) + www.netgo.hu + NetGo.hu + www.netgroup.dk + Netgroup.dk + www.netguava.com + Netguava (partial) + www.netlock.hu + NetLock (partial) + www.netmarketshare.com + NetMarketShare.com + www.netmile.co.jp + NetMile.co.jp + www.netmundial.net + Net Mundial.net + www.netnanny.com + Net Nanny + www.netpivotal.co.uk + NetPivotal + www.netpivotal.eu + NetPivotal + www.nets-danid.dk + Nets DanID + www.netsparker.com + Netsparker.com + www.netteca.com + Nettica + www.network23.org + network23.org + www.networking4all.com + Networking4all.com + www.netzclub.net + netzclub + www.netzpolitik.org + Netzpolitik.org + www.neustar.biz + NeuStar + www.neustarultraservices.biz + NeuStar + www.nevistashealth.com + Nevistas Health.com + www.newcastle.gov.uk + UK Local Government + www.newit.co.uk + NewIT + www.newlook.com + New Look (partial) + www.newmoon.com + New Moon Girls Online + www.newrepublic.com + New Repubic (partial) + www.newschallenge.org + News Challenge.org + www.newsgator.com + NewsGator + www.newspaperdirect.com + NewspaperDirect (partial) + www.newsregistry.com + News Registry (partial) + www.newswhip.com + NewsWhip (partial) + www.newyorkcasual.com + Newyorkcasual.com + www.newyorkneedsyou.org + New York Needs You.com + www.nex.sx + nex.sx + www.next.co.uk + Next + www.nextbit.com + Nextbit.com + www.nextbus.com + NextBus + www.nfadmin.net + NFrance (partial) + www.nfb.org + National Federation of the Blind (partial) + www.ngpvan.com + NGP VAN + www.ngrok.com + ngrok.com + www.nhn.com + NHN Corporation + www.nhncorp.com + NHN Corporation + www.nhnnext.org + NHN Next.org + www.nhw.se + NordicHardware + www.niap-ccevs.org + NIAP-CCEVS.org + www.nic.ac + NicAc + www.nic.ad.jp + NIC.ad.jp + www.nic.ch + NIC.ch + www.nic.io + NicIo + www.nic.tel + Telnic + www.nicennaughty.co.uk + Nice 'n' Naughty + www.nickyhager.info + Nicky Hager (partial) + www.niif.hu + NIIF Intézet (partial) + www.nikcub.com + Nik Cub.com + www.nikhef.nl + Nikhef.nl + www.nine-2-one.com + nine-2-one + www.nines.nl + Nines.nl + www.ninite.com + Ninite + www.nintendoworldreport.com + Nintendo World Report + www.nisit69.com + nisit69.com + www.niveusluna.org + Luna Nivius + www.nkl.fi + Näkövammaisten keskusliitto + www.nku.gov.sk + SlovakGoverment + www.nlayer.net + nLayer Communications (partial) + www.nlg.org + National Lawyers Guild + www.nllgg.nl + NLLGG.nl + www.nluug.nl + NLUUG.nl (partial) + www.nmargin.com + PulsePoint (partial) + www.nnetworks.co.jp + Nnetworks + www.no.de + Joyent (partial) + www.noao.edu + National Optical Astronomy Observatory (partial) + www.nodejsmodules.org + NodeJS Modules.org + www.nodpi.org + No Deep Packet Inspection campaign + www.noelia.fi + Noelia + www.nohats.ca + No Hats.ca + www.noisebridge.net + Noisebridge + www.noiselessvault.org + Noiseless Vault.org + www.nokia.* + Nokia (partial) + www.nokia.co.uk + Nokia (partial) + www.nokiausa.com + Nokia (partial) + www.nomachine.com + NoMachine.com + www.nooelec.com + NooElec.com + www.noordwijkerhout.nl + NL Overheid + www.nordea.* + Nordea + www.nordichardware.com + NordicHardware + www.nordichardware.se + NordicHardware + www.nordichosting.com + Nordic Hosting.com + www.nordicsemi.com + Nordic Semiconductor + www.nordkapp.net + NordkappNett.no + www.nordkappnett.no + NordkappNett.no + www.nordnet.se + Nordnet.se + www.nordu.net + Nordu.net + www.nordvpn.com + Nordvpn.com + www.normalesup.org + normalesup.org (partial) + www.norman.com + Norman.com (partial) + www.north-herts.gov.uk + UK Local Government + www.northkoreatech.org + North Korea Tech.org + www.northnorfolk.org + UK Local Government + www.northpole.fi + Northpole.fi + www.northwarks.gov.uk + UK Local Government + www.norwalkreflector.com + Norwalk Reflector (partial) + www.norwegian.com + Norwegian.com + www.norx.io + norx.io + www.nos-oignons.fr + Nos-oignons.net + www.nos-oignons.net + Nos-oignons.net + www.nos-oignons.org + Nos-oignons.net + www.nos.pt + Nos.pt + www.noscript.net + NoScript.net + www.notacon.org + Notacon.org + www.notalone.gov + Not Alone.gov + www.notebooknagyker.hu + Laptop.hu + www.notenoughshaders.com + Not Enough Shaders.com + www.notesappstore.com + MayFlower Software (partial) + www.nottinghamshire.gov.uk + UK Local Government + www.notwithoutawarrant.com + Center for Democracy & Technology + www.novara.ie + Digiweb (partial) + www.noxa.de + noxa.de + www.npddecisionkey.com + DecisionKey + www.npdgroup.com + NPD Group + www.npm.im + npm js.org (partial) + www.npower.com + npower (partial) + www.nppa.org + National Press Photographers Association + www.npted.org + NPTEd.org + www.nrc-cnrc.gc.ca + National Research Council Canada + www.nrc.gov + United States Nuclear Regulatory Commission + www.nrel.gov + National Renewable Energy Laboratory (partial) + www.nrf.com + National Retail Federation (partial) + www.nri.co.jp + Nomura Research Institute + www.nrsr.sk + SlovakGoverment + www.nruns.com + n.runs + www.nsa.gov + National Security Agency + www.nsfwcorp.com + nsfwcorp.com (partial) + www.nslds.ed.gov + ED.gov (partial) + www.nsn.com + Nokia Siemens Networks (partial) + www.ntchosting.com + NTC Hosting + www.nti.org + NTI.org (partial) + www.ntsb.gov + National Transport Safety Board + www.nttcoms.com + NTTCom + www.nttxstore.jp + Nttxstore + www.ntu.ac.uk + NTU + www.ntualumni.org.uk + NTU + www.ntvspor.net + NTVSpor + www.nuand.com + Nuand.com (partial) + www.nuclearblast.de + Nuclear Blast (partial) + www.nuclearcat.com + NuclearCat.com + www.nuevasync.com + NuevaSync (partial) + www.nuigalway.ie + National University of Ireland (partial) + www.nuimagemedical.com + Nu Image Medical (partial) + www.numato.com + Numato.com (partial) + www.numergy.com + Numergy + www.nutricentre.com + NutriCentre + www.nva.org + National Vulvodynia Association + www.nvenergy.com + NV Energy.com + www.nwswimshop.com + Northwest Swim Shop + www.nycla.org + NYCLA.org + www.nydailynews.com + NYDailyNews (false MCB) + www.nykeurope.com + NYK Europe.com (partial) + www.nyx.cz + Nyx.cz + www.nzbindex.com + NZBIndex + www.nzbindex.nl + NZBIndex + www.nzbplanet.net + Nzbplanet.net + www.o2-tv.cz + Telefónica (partial) + www.o2.co.uk + Telefónica (partial) + www.o2.sk + Telefónica (partial) + www.o2extra.cz + Telefónica (partial) + www.o2shop.cz + Telefónica (partial) + www.o2tv.cz + Telefónica (partial) + www.oag.ca.gov + California Department of Justice + www.oag.com + OAG.com (false MCB) + www.obedovat.sk + Obedovat.sk + www.obitalk.com + ObiTalk + www.objectif-securite.ch + Objectif-Securite.ch + www.oblivia.vc + oblivia.vc + www.occupywallst.org + Occupywallst.org + www.octopoos.com + Octopoos.com + www.oderland.se + Oderland.se + www.odesk.by + odesk.by + www.odevzdej.cz + Odevzdej.cz + www.odmenazadobiti.cz + Telefónica (partial) + www.odpadnes.sk + Zlavy.odpadnes.sk + www.oecd.org + OECD + www.oeticket.com + oeticket (partial) + www.office.co.uk + Office.co.uk (partial) + www.office.com + Microsoft (partial) + www.officersforbundet.se + Officersforbundet.se + www.officeworks.com.au + Officeworks.com.au + www.ohiostatealumni.org + Ohio State University (partial) + www.ohloh.com + Ohloh + www.ohloh.org + Ohloh + www.ohm2013.org + OHM2013.org + www.ohsocool.org + Oh So Cool ! + www.ok.de + OK.de + www.okcupid.com + OkCupid (partial) + www.oktatas.hu + Oktatási Hivatal + www.oldebroek.nl + NL Overheid + www.olimex.com + Olimex.com + www.olin.edu + Franklin W. Olin College of Engineering + www.olmn.org + OLMN.org + www.olvi.fi + Olvi.fi + www.om.nl + Openbaar Ministerie (partial) + www.omakaseweb.com + OmakaseWeb.com + www.omaze.com + Omaze.com (partial) + www.omicron.at + OMICRON (partial) + www.omnigroup.com + OmniGroup.com + www.omniref.com + Omniref.com + www.omnirom.org + Omnirom.org + www.omniture-static.com + Adobe Digital Marketing + www.omron.com + Omron.com + www.on.lung.ca + Ontario Lung Association + www.one.com + one.com + www.one2buy.com + One2Buy (partial) + www.oneadmin.cz + ONEadmin (partial) + www.onebitbug.me + onebitbug.me + www.onegooddriver.com + One Good Driver + www.onehealthtalk.org + One Health Talk.org (partial) + www.onehelp.cz + ONEhelp + www.onehub.com + Onehub.com + www.onepagerapp.com + Onepager (partial) + www.oneserver.cz + ONEbit + www.onesolution.cz + ONEsolution + www.oneweb.cz + ONEweb (partial) + www.onguardonline.gov + OnGuard Online + www.oniontip.com + OnionTip.com + www.onjive.com + onJive.com + www.online.cyberaces.org + CyberAces (partial) + www.onlinenotebook.hu + Laptop.hu + www.onlineregister.com + Online Register + www.onlineregistrationcenter.com + Online Registration Center.com + www.onlinethreatalerts.com + Online Threat Alerts.com + www.ono.es + Ono + www.onsiteconcierge.com + R66T + www.onthehub.com + OnTheHub (partial) + www.ontrac.com + OnTrac + www.ooda.com + OODA.com + www.oodaloop.com + OODA Loop.com + www.ooshirts.com + ooshirts.com (partial) + www.opalang.org + Opa (partial) + www.opcw.org + OPCW.org + www.open-mesh.org + Open Mesh + www.open-mpi.org + Open MPI + www.openaccessbutton.org + Open Access Button.org + www.openadultdirectory.com + OpenAdultDirectory.com (partial) + www.openbenchmarking.org + Phoronix Media (partial) + www.opendaylight.org + OpenDaylight + www.opendoors.org + Open Doors.org (partial) + www.openfabrics.org + OpenFabrics Alliance + www.openfarmgame.com + Open Farm Game + www.openfmri.org + OpenfMRI + www.openfoundry.org + OpenFoundry.org + www.opengarden.com + Opengarden.com (partial) + www.opengl.org + OpenGL + www.openhpi.de + openHPI + www.openid.net + OpenID + www.openit.de + OpenIT + www.openleaks.org + OpenLeaks + www.openlibrary.org + Open Library.org + www.openlinksys.info + OpenLinksys.info + www.openmailbox.org + OpenMailBox.org + www.openmedia.ca + OpenMedia.ca (partial) + www.openmedia.org + OpenMedia.org (partial) + www.openmedianow.net + OpenMedia.org (partial) + www.openmrs.org + OpenMRS + www.openprinting.org + Openprinting + www.openrce.org + OpenRCE + www.opensc-project.org + OpenSC Project + www.opentechfund.com + OpenTechFund + www.openttdcoop.org + OpenTTD (partial) + www.openuserjs.org + OpenUserJS.org + www.openvirtualizationalliance.org + Open Virtualization Alliance.org + www.openwalls.com + Open Walls + www.openwatch.nl + OpenWatch.nl + www.openweb.or.kr + Open Web.or.kr + www.operationfabulous.com + Operation Fabulous + www.opinionmeter.com + Opinionmeter (partial) + www.opintoluotsi.fi + Opintoluotsi + www.oplata.info + Oplata.info + www.opsmate.com + Opsmate + www.opsterland.nl + NL Overheid + www.opticsinfobase.org + Optical Society of America (partial) + www.optimalpayments.com + Optimal Payments (partial) + www.optoutprescreen.com + OptOutPrescreen.com + www.oracleimg.com + Oracle (partial) + www.oralb.com + Procter & Gamble (partial) + www.orange.co.il + Orange + www.orange.jobs + Orange.Jobs (false MCB) + www.orange.sk + Orange.sk + www.orb-international.com + ORB-International.com + www.orbital.com + Orbital Sciences + www.ordbogen.com + Ordbogen.com + www.ordercourses.com + Cengage (partial) + www.orderhlp.com + Shopatron (partial) + www.ordermychecks.com + Harland Clarke + www.orezpraw.com + Orez Praw.com + www.orgreenoptics.com + Orgreen Optics.com + www.orionhub.org + Orion + www.orkut.co.in + Orkut (partial) + www.orkut.com.br + Orkut (partial) + www.oron.com + Oron (partial) + www.ort.fi + Suomen ortodoksinen kirkko + www.orwall.org + orWall.org + www.orxrdr.com + orxrdr.com + www.os3sec.org + os3sec.org + www.oscigen.org + Oscigen (CAcert) + www.osha.gov + US OSHA.gov + www.osicodesinc.com + OSI Codes + www.osmglobal.com + OSM Group + www.oss.nl + NL Overheid + www.ostel.co + Ostel.co + www.osufoundation.org + Oregon State University (partial) + www.otalliance.org + OTAlliance.org + www.otavamedia.fi + Otavamedia (partial) + www.ote.gr + OTE + www.otpdirekt.sk + Otpdirekt.sk + www.ottospora.nl + Ottospora.nl + www.ouifm.fr + Ouï FM (partial) + www.out-law.com + Out-Law.com + www.outbrain.com + Outbrain.com (false MCB) + www.outflux.net + outflux.net + www.outofcontrol.ca + Out of Control + www.overheid.nl + NL Overheid + www.overijssel.nl + NL Overheid + www.ovh-hosting.fi + OVH + www.ovh.co.uk + OVH + www.ovh.com + OVH + www.ovh.cz + OVH + www.ovh.de + OVH + www.ovh.es + OVH + www.ovh.ie + OVH + www.ovh.it + OVH + www.ovh.lt + OVH + www.ovh.nl + OVH + www.ovh.pl + OVH + www.ovh.pt + OVH + www.ovh.sn + OVH + www.ovscruise.com + Wyndham (partial) + www.owasp.org + OWASP + www.oxfamirelandunwrapped.com + Oxfam Unwrapped + www.oyoony.at + oyoony + www.oyoony.de + oyoony + www.oyoony.net + oyoony + www.ozbargain.com.au + OzBargain + www.ozon.travel + Ozon.Travel + www.p-tano.com + P-tano.com + www.p3pwiz.com + Net Dynamics (partial) + www.p6r.com + P6R.com + www.pabo.nl + Pabo (partial) + www.pace.com + Pace.com (partial) + www.pace2race.com + Pace2Race (partial) + www.pacebus.com + Pace Bus.com (partial) + www.packagist.org + Packagist.org + www.packetstatic.com + Packet Storm Security.com (partial) + www.packetstormsecurity.com + Packet Storm Security.com (partial) + www.packetwerk.com + Packetwerk.com + www.pacsec.jp + PacSec.jp + www.pacw.org + PACW.org + www.padlister.com + PadMapper (partial) + www.padmapper.com + PadMapper (partial) + www.paetec.com + PAETEC (partial) + www.page.ly + Pagely (partial) + www.pagekite.net + PageKite + www.pages03.net + Silverpop (partial) + www.paket.de + Paket.de + www.palantir.com + Palantir.com + www.palgrave.com + Palgrave.com + www.palmetto.com + Palmetto.com + www.pamconsult.com + PamConsult + www.pamela.biz + PamConsult + www.pamfax.biz + PamConsult + www.panic.com + Panic.com + www.panopticlick.com + Panopticlick.com + www.pantarhei.sk + Pantarhei.sk + www.pantheos.com + Pantheos (partial) + www.pantherexpress.net + CDNetworks (partial) + www.papermart.com + Paper Mart.com (partial) + www.paraduxmedia.com + Paradux Media.com + www.parallax.com + Parallax.com (partial) + www.paramountmovies.com + ParamountMovies.com + www.parature.com + Parature.com + www.parcelforce.com + Parcelforce (partial) + www.parkingcrew.com + ParkingCrew.com + www.parship.nl + Parship.nl + www.partidopirata.es + Pirate Party + www.partnernaurovni.sk + Partnernaurovni.sk + www.passagebank.com + PassageBank (partial) + www.passmark.com + PassMark.com (partial) + www.passportimages.com + Hotmail / Live + www.passsource.com + PassSource + www.password-hashing.net + Password-Hashing.net + www.passwordcard.org + PasswordCard + www.paste.sh + paste.sh + www.pastee.org + Pastee.org + www.pastevault.com + PasteVault.com + www.patchofland.com + Patch of Land.com + www.patent.resource.org + Public.Resource.Org + www.patexia.com + Paxetia (partial) + www.pathdefender.com + PathDefender.com + www.patrickbateman.biz + patrickbateman.biz + www.pauldotcom.com + PaulDotCom.com (partial, false MCB) + www.paxtonrecord.net + Paxton Record (partial) + www.pay.va.gov + US Department of Veterans Affairs + www.paycheckrecords.com + Paycheckrecords.com + www.paypal-forward.com + PayPal | Forward + www.paypal.co.uk + PayPal + www.paypalobjects.com + PayPal + www.payperpost.com + PayPerPost.com + www.payrollapp.com + payrollapp.com + www.pazaruvaj.com + Árukereső + www.pbhs.com + PBHS (partial) + www.pccasegear.com + PCCaseGear + www.pccasegear.com.au + PCCaseGear + www.pcp.ch + Pcp.ch + www.pcr-online.biz + Intent Media (partial) + www.pcug.org.au + PC Users Group (ACT) (partial) + www.pde.cc + Personal Data Ecosystem Consortium (partial) + www.pdf.yt + PDF.yt + www.pdfcrowd.com + pdfcrowd.com (partial) + www.pdftoword.com + PDF to Word.com + www.pdu.edu + Portland State University (false MCB) + www.peacecenter.org + Peace Center for the Performing Arts (partial) + www.peacemakergame.com + peacemakergame.com + www.peelregion.ca + Regional Municipality of Peel, Canada + www.peepd.com + Peepd.com (partial) + www.peercraft.com + Peercraft + www.peeringdb.com + PeeringDB + www.peerj.com + PeerJ (partial) + www.peerlibrary.org + PeerLibrary.org (partial) + www.pegelf.de + Pegelf.de + www.pekwm.org + pekwm.org + www.peliaika.fi + GTC's Online + www.pen.org + PEN.org (partial) + www.pendle.gov.uk + UK Local Government + www.pensionsmyndigheten.se + PensionsMyndigheten.se + www.pentesterlab.com + PentesterLab (partial) + www.perel.eu + Velleman Group (partial) + www.perfectmoney.com + Perfect Money + www.performancehorizon.com + Performance Horizon Group + www.performancewheel.com + Performance Wheel & Tire Warehouse + www.personaldataecosystem.org + Personal Data Ecosystem Consortium (partial) + www.pet-nanny.net + Pet Nanny + www.petekeen.net + Pete Keen.net + www.peterborough.gov.uk + UK Local Government + www.peterodding.com + Peter Odding.com + www.petrogen.com + Petrogen.com + www.petsathome.com + Pets at Home + www.petsymposium.org + PET Symposium.org + www.pgbrandsampler.ca + Procter & Gamble (partial) + www.pgcon.org + PGCon (partial) + www.pgi.com + PGi (partial) + www.pgl.co.uk + Holidaybreak (partial) + www.pgp.webtru.st + Webtru.st Keyserver + www.pgpru.com + openPGP in Russia + www.phantompeer.com + PhantomPeer.com + www.pheedcontent.com + pheedcontent.com + www.philadelphiabar.org + Philadelphia Bar Association + www.philshobbyshop.com + Phils Hobby Shop.com + www.phishtank.com + PhishTank + www.phoenix.com + Phoenix.com + www.photoblab.com + PhotoBlab + www.photonconsulting.com + Photonconsulting.com + www.php-fusion.co.uk + PHP-Fusion.co.uk (partial) + www.phpmagazin.de + PHP magazin (partial) + www.picostocks.com + PicoStocks.com + www.picplz.com + Picplz + www.pidg.in + Pidgin + www.pijnacker-nootdorp.nl + NL Overheid + www.pikpok.com + PikPok.com + www.pin.ed.gov + ED.gov (partial) + www.pinescharter.net + pinescharter.net (partial) + www.pingability.com + Pingability.com + www.pingless.co.il + Pingless (partial) + www.pinsentmasons.com + Out-Law.com + www.pinta-outlet.fi + Pinta-Outlet.fi + www.piratelinux.org + Pirate Linux.org + www.piraten-aargau.ch + PPS + www.piraten-basel.ch + PPS + www.pirateparty.ca + Pirate Party + www.piratereverse.info + PirateReverse.info (partial) + www.piscatus.se + Piscatus.se + www.pistoncloud.com + Piston Cloud Computing + www.pivotaltracker.com + Pivotal Tracker (partial) + www.pixelexit.com + Pixel Exit.com + www.pixelh8.co.uk + Pixelh8 + www.pixi.me + Pixi.me + www.pixid.ideeinc.com + TinEye (partial) + www.pixoto.com + Pixoto + www.pizzahut.co.uk + Pizzahut UK + www.pjrc.com + PJRC.com + www.pkimber.net + P Kimber.net + www.pkracv.com + Commission Junction + www.plan.gs + Stelter (partial) + www.planet-source-code.com + Planet-Source-Code.com + www.planet-work.fr + Planet-Work + www.planetromeo.com + PlanetRomeo + www.plannedparenthood.org + Planned Parenthood + www.plant-world-seeds.com + Plant-World-Seeds.com (partial) + www.plantappstore.com + plantappstore.com (partial) + www.plantcommunity.de + PlantCommunity.de + www.plantronics.com + Plantronics + www.plantsolution.de + PlantSolution.de (partial) + www.platform.sh + Platform.sh + www.platinumskincare.com + Platinum Skin Care.com (partial) + www.player.io + PlayerIO.com + www.playerattack.com + Player Attack (partial) + www.playerio.com + PlayerIO.com + www.playfire.com + Playfire (partial) + www.playonlinux.com + PlayOnLinux.com + www.plazakauppa.fi + Otavamedia (partial) + www.ple.com.au + PLE.com.au + www.pledgie.com + Pledgie + www.pliktverket.se + Pliktverket.se + www.ploum.net + ploum.net + www.plugrush.com + PlugRush.com (partial) + www.plugunplug.net + Plug Unplug.net + www.plusgirot.se + Plusgirot.se + www.plusme.net + plusme.net (partial) + www.pnasfirstlook.org + PNAS First Look (partial) + www.pod.geraspora.de + Geraspora + www.podcast.at + podcast.at (partial) + www.poddery.com + Poddery + www.poets.org + poets.org + www.pofssavecredit.co.uk + Post Office (partial) + www.poistenie.financnahitparada.sk + Financnahitparada.sk + www.poivy.com + Poivy.com + www.pokemon.co.jp + Pokemon.com (partial) + www.polarnopyret.se + PolarnoPyret.se + www.polarssl.org + PolarSSL + www.poliisi.fi + Poliisi.fi + www.polisforbundet.se + Polisforbundet.se + www.politie.nl + NL Overheid + www.polk.com + Polk + www.polybrowser.com + PolyBrowser.com + www.polygon.com + Polygon (false MCB) + www.polymer-project.org + Polymer-Project.org + www.poodle.io + POODLE.io + www.poodletest.com + POODLE Test.com + www.pop.com.br + POP (partial) + www.popatomic.org + PopAtomic + www.popgoestheweek.com + Pop Goes the Week + www.popsci.com + PopSci.com (partial) + www.popular.com.tw + Popular.com.tw + www.pornel.net + Pornel.net + www.pornhub.com + PornHub (partial) + www.portaldaempresa.pt + Governo Português + www.portaldocidadao.pt + Governo Português + www.portalen.dtu.dk + Technical University of Denmark (partial) + www.portlandonline.com + City of Portland, OR + www.portmorgan.com + PortMorgan.com + www.porvoo.fi + porvoo.fi + www.positivessl.com + PositiveSSL + www.post.ch + Post.ch + www.post.cz + Seznam.cz + www.posta.ch + Post.ch + www.postauto.ch + Post.ch + www.postdanmark.dk + Postdanmark.dk + www.poste.ch + Post.ch + www.posten.se + Posten.se + www.posteo.de + Posteo + www.postfinance.ch + Post.ch + www.postgresql.eu + PostgreSQL + www.posthaven.com + Posthaven.com (partial) + www.posti.fi + posti.fi + www.postlapsaria.com + Postlapsaria (partial) + www.postoffice.co.uk + Post Office (partial) + www.postoffice.travelmoneycard.co.uk + Post Office (partial) + www.postofficeshop.co.uk + Post Office Shop (partial) + www.postovabanka.sk + Postovabanka.sk + www.postsuisseid.ch + Post.ch + www.postwire.com + Postwire.com + www.power.org + Power.org + www.powerbuy.co.th + Powerbuy.co.th + www.powerlinemanmag.com + Powerlineman Magazine + www.powernotebooks.com + Powernotebooks.com + www.ppcoin.org + PPCoin (partial) + www.praetorian.com + Praetorian.com + www.praktikpladsen.dk + Praktikpladsen + www.pravydiplom.cz + PravyDiplom.cz + www.precisionpros.com + PrecisionPros.com (partial) + www.precos.com.pt + Árukereső + www.presscoders.com + PressCoders + www.prettylightsmusic.com + Pretty Lights Music + www.previa.se + Previa.se + www.prezident.sk + SlovakGoverment + www.priberam.pt + Priberam.pt + www.priceonomics.com + Priceonomics.com (partial) + www.priceza.com + Priceza.com + www.primabanka.sk + Primabanka.sk + www.printmojo.com + PrintMojo + www.prism-break.org + PRISM Break.org + www.prisonlegalnews.org + Prison Legal News.org + www.prisonphonejustice.org + Prison Phone Justice.org + www.privacy-cd.org + privacy-cd.org + www.privacy-handbuch.de + Privacy-Handbuch.de + www.privacy.io + Privacy IO + www.privacyassociation.org + International Association of Privacy Professionals + www.privacybox.de + PrivacyBox + www.privacychoice.org + PrivacyChoice (partial) + www.privacyfoundation.de + German Privacy Foundation + www.privacyinternational.org + Privacy International + www.privacynotprism.org.uk + Privacy Not Prism.org.uk + www.privacyrights.org + Privacy Rights Clearinghouse + www.privacysos.org + Privacy SOS + www.privacytool.org + Privacy Tool.org + www.privateinternetaccess.com + Private Internet Access + www.privatetunnel.com + Private Tunnel + www.privatevpn.com + PrivatVPN + www.pro-managed.com + Pro-Managed + www.probank.gr + Greek-banks + www.probikekit.co.uk + Pro Bike Kit (partial) + www.probmods.org + Prob Mods.org + www.prochoice.org + National Abortion Federation + www.profesia.sk + profesia.sk + www.professionalprivacypolicy.com + Global Marketing Strategies (partial) + www.profitbricks.com + ProfitBricks (partial) + www.progllc.com + Prometheus Global (partial) + www.progressive.hu + ::progressive:: (partial) + www.projecteuler.net + Project Euler + www.projecthoneypot.org + ProjectHoneypot + www.projectsecretidentity.org + Project Secret Identity.org + www.projectslice.com + Slice + www.projectwonderful.com + Project Wonderful + www.prometric.com + Prometric + www.promote.ie + Digiweb (partial) + www.propellerpops.com + Propellerpops.com + www.propertydeals.com.pk + PropertyDeals.com.pk + www.propertyinvesting.com + PropertyInvesting.com (partial) + www.prospect.org + The American Prospect + www.prospectmagazine.co.uk + Prospect Magazine (partial) + www.protecciondelconsumidor.gov + National Consumer Protection Week + www.protectedtext.com + ProtectedText.com + www.protonmail.ch + ProtonMail.ch + www.proxify.com + Proxify + www.proxy.sh + Proxy.sh + www.proxysolutions.net + Proxy Solutions (partial) + www.prv.se + PRV.se + www.pss.sk + Pss.sk + www.pte.hu + Pécsi Tudományegyetem + www.pthree.org + pthree.org + www.pubkey.is + Pubkey.is + www.public.resource.org + Public.Resource.Org + www.publicidees.com + Public-Idées (partial) + www.publicinsightnetwork.org + PublicInsightNetwork.org + www.publicintelligence.net + Publicintelligence + www.publicknowledge.org + Public Knowledge + www.publicsuffix.org + Public Suffix.org + www.publikdemand.com + PublicDemand + www.pubservice.com + pubservice.com + www.pubsoft.org + PubSoft.org + www.pulse.me + Pulse.me + www.puma.com + Puma.com + www.pumo.com.tw + Pumo.com.tw (partial) + www.purduealum.org + Purdue University Association + www.purduealumni.org + Purdue University Association + www.purdueplantdoctor.com + Purdue Plant Doctor + www.pure-privacy.org + pure-privacy.org + www.purecars.com + Pure Auto (partial) + www.purechat.com + Pure Chat.com (partial) + www.purehacking.com + PureHacking + www.puritan.com + Puritan.com + www.pushplay.com + PushPlay (partial) + www.put.io + put.io + www.pv.gov.sa + Saudi Government + www.pwdhash.com + PwdHash.com + www.pyneo.org + pyneo.org + www.pythonhosted.org + pythonhosted.org + www.q3k.org + q3k.org + www.q7.com + Q7 Enterprises + www.qabel.de + Qabel + www.qb50.eu + QB50 + www.qca.qualcomm.com + Qualcomm (partial) + www.qksrv.net + Commission Junction + www.qksz.net + Commission Junction + www.qontext.com + Qontext + www.qsstats.com + QSstats.com + www.qt.io + Qt.io + www.qtdeveloperdays.com + Qt Developer Days.com + www.quackquackgo.nl + quackquackgo.nl + www.qualaris.com + Qualaris.com (partial) + www.qualityunit.com + QualityUnit + www.quest.com + Quest.com (partial) + www.quikcallus.com + Quik Callus.com + www.quikpayasp.com + QuikPAY asp.com + www.quirks.com + Quirks.com + www.quiterss.org + QuiteRSS.org + www.quotesnsayings.com + Quotes and Sayings.com (false MCB) + www.qxl.dk + Qxl + www.qxl.no + Qxl + www.r-hpc.com + R-HPC + www.r00tz-org.theidentityproject.com + r00tz.org (partial) + www.r00tz.org + r00tz.org (partial) + www.r66t.com + R66T + www.rac.co.uk + RAC + www.rachelbythebay.com + Rachelbythebay.com + www.rackspace.com + Rackspace.com (false MCB) + www.rackspace.com.hk + Rackspace (partial) + www.radioeins.de + RBB + www.radioplayer.co.uk + Radioplayer.co.uk + www.radioshackwireless.com + RadioShack (partial) + www.radsec.org + RadSec.org + www.rafflecopter.com + Rafflecopter.com + www.raiffeisen.ch + Raiffeisen.ch + www.railsschool.org + Railsschool.org + www.rally.org + Rally.org + www.ranallolawoffice.com + Nicholas Ranallo (partial) + www.randomintervals.com + Random Intervals (partial) + www.rantoulpress.com + Rantoul Press (partial) + www.rapidgator.net + Rapidgator.net (partial) + www.rapidsite.jp + RapidSite.jp + www.raptureready.com + Rapture Ready + www.rarbg.com + Rarbg + www.rare.us + Rare.us + www.ras.org.uk + Royal Astronomical Society + www.ratepoint.com + RatePoint (partial) + www.ratfishoil.com + RatfishOil.com (partial) + www.ratgeber-verbraucherzentrale.de + Verbraucherzentrale Nordrhein-Westfalen + www.ravendb.net + RavenDB.net + www.rawgithub.com + rawgithub.com + www.raymii.org + Raymii.org + www.raynersoftware.com + Rayner Software + www.raynersw.com + Rayner Software + www.rbb-online.de + RBB + www.rbcommons.com + RBCommons.com (partial) + www.rbl.ms + bit.ly vanity domains + www.rbt.asia + rbt.asia + www.rbu.sh + rbu.sh + www.rca.org + Reformed Church + www.rcitravelstore.co.uk + Wyndham (partial) + www.rd.io + Rdio (partial) + www.rdns.im + rdns.im + www.readability.com + Readability.com (partial) + www.reading.ac.uk + University of Reading + www.readitlaterlist.com + ReadItLaterList.com + www.readrboard.com + ReadrBoard.com + www.readrobreid.com + ReadRobReid.com (partial) + www.readspeaker.com + ReadSpeaker + www.readwrite.com + ReadWrite + www.readwriteweb.com + ReadWriteWeb + www.readynas.com + ReadyNAS + www.realone.com + Real Networks (partial) + www.realtimestats.com + HitsLink + www.realvnc.com + RealVNC.com + www.rec-log.jp + rec-log (partial) + www.recapthelaw.org + Recap the Law + www.reclaim-your-privacy.com + Reclaim-Your-Privacy.com + www.reclog.jp + rec-log (partial) + www.reco.se + Reco.se + www.recode.net + Recode.net + www.recordstoreday.com + Record Store Day + www.red-gate.com + Red-Gate.com (partial) + www.red-pill.eu + Red-Pill.eu (partial) + www.redbox.com + Redbox.com + www.redbridge.gov.uk + UK Local Government + www.redbull.* + Red Bull (partial) + www.redbullmobile.at + Red Bull Mobile (partial) + www.redcoon.pt + Redcoon.pt + www.redcross.org + Red Cross.org (partial) + www.redding.com + E. W. Scripps Company (partial) + www.redditstatic.com + Reddit + www.reddpics.com + Redd Pics.com (partial) + www.rediris.net + RedIRIS.es + www.rednerd.com + rednerd.com + www.redports.org + redports.org + www.redstate.com + RedState (partial) + www.reelvidz.com + ReelVidz.com (partial) + www.refog.com + Refrog + www.register.ie + Digiweb (partial) + www.register4less.com + Register4Less.com + www.registration123.com + Registration123.com + www.registryrocket.com + registryrocket.com + www.regonline.com + Active.com (partial) + www.regularish.com + Regularish.com + www.reichelt.de + Reichelt.de + www.relate.org.uk + Relate.org.uk + www.relayrides.com + RelayRides.com + www.reliableisp.net + Reliable ISP.net + www.rememberthemilk.jp + Remember the Milk + www.remixdepolitiek.nl + Pirate Party + www.remotecoder.io + RemoteCoder.io + www.renkum.nl + NL Overheid + www.renovationexperts.com + Renovation Experts (partial) + www.rentanode.nl + RentaNode.nl + www.rentex.com + Rentex + www.reporter-ohne-grenzen.de + Reporters Without Borders + www.reportlab.com + ReportLab (partial) + www.repozitar.cz + Repozitar.cz + www.requestpolicy.com + RequestPolicy + www.res-x.com + Certona (partial) + www.researchgate.net + ResearchGate.net (partial) + www.researchmatch.org + ResearchMatch.org + www.researchstore.com + Datamonitor (partial) + www.resistsurveillance.org + Resist Surveillance.org + www.resortquestsecure.com + Wyndham (partial) + www.resurs.se + Resurs.se + www.retailhosting.fi + Retailhosting.fi + www.retailmenot.com + RetailMeNot.com (partial) + www.retailsails.com + Retail Sails (partial) + www.reut.rs + bit.ly vanity domains + www.revosec.ch + revosec + www.revresponse.com + RevResponse.com + www.reztrip.com + RezTrip + www.rfc-editor.org + RFC-Editor + www.rfcexpress.com + RFC Express + www.rheden.nl + NL Overheid + www.rhinosoft.com + Rhino Software (partial) + www.rhizome.org + Rhizome (partial) + www.riaa.com + RIAA + www.ribblevalley.gov.uk + UK Local Government + www.ric.org + RIC.org + www.ricardo.ch + Ricardo.ch + www.richardandjudy.co.uk + Richard and Judy Book Club + www.richarddawkins.net + Richard Dawkins Foundation (partial) + www.richmondshire.gov.uk + UK Local Government + www.ricoh.co.in + Ricoh (partial) + www.ricoh.com + Ricoh (partial) + www.ricoh.com.hk + Ricoh (partial) + www.ricoh.sg + Ricoh (partial) + www.ridemetro.org + METRO Transit (Harris County, Houston, Texas) + www.rightnow.com + RightNow Technologies (partial) + www.rightscon.org + RightsCon + www.rijswijk.nl + NL Overheid + www.rikenresearch.riken.jp + RIKEN.jp (partial) + www.riksgalden.se + Riksgalden.se + www.ripmixmake.org + EFF + www.ris.bka.gv.at + RIS + www.riscosopen.org + Risc OS Open + www.risi.com + RISI + www.risiinfo.com + RISI + www.ritter.vg + ritter.vg + www.rivieratours.com + Riviera Tours + www.rnengage.com + RightNow Technologies (partial) + www.rnl.ist.utl.pt + Technical University of Lisbon + www.rnsfpw.net + Commission Junction + www.roadtrippers.com + Roadtrippers + www.roadworks.org + roadworks.org + www.robeco.nl + Robeco + www.robinbarnard.com + Robin Rabard (partial) + www.roboxchange.com + ROBOXchange + www.roccat.org + Roccat.org (false MCB) + www.rochester.edu + University of Rochester + www.rochesterhomepage.* + rochesterhomepage.net (partial) + www.rochford.gov.uk + UK Local Government + www.rockcreek.com + Rock Creek Outfitters (partial) + www.rocketmail.com + Yahoo! (partial) + www.rockhursthawks.com + Rockhurst Hawks.com + www.rohieb.name + rohieb.name + www.roia.biz + roia.biz + www.rollapp.com + Rollapp.com + www.romab.com + romab.com + www.romab.se + romab.com + www.rosettacode.org + Rosetta Code.org (partial) + www.rossendale.gov.uk + UK Local Government + www.rotaryview.com + RotaryView.com + www.rother.gov.uk + UK Local Government + www.rotherham.gov.uk + UK Local Government + www.rottenecards.com + Rottenecards + www.routingpacketsisnotacrime.uk + Routing Packets Is Not a Crime.uk + www.rovio.com + Rovio.com + www.rows.io + rows.io + www.royal.gov.uk + RoyalGovUK + www.royalnavy.mod.uk + Royal Navy (partial) + www.rpggamegeek.com + BoardGameGeek + www.rpgmakerweb.com + Rpgmakerweb.com + www.rr.com + RoadRunner + www.rsbac.org + RSBAC (partial) + www.rscweb.org + Royal Society of Chemistry (partial) + www.rstudio.com + RStudio.com (partial) + www.rsync.net + rsync.net (partial) + www.rt.ru + RT.ru + www.rte.ie + RTÉ + www.rtenl.ie + RTÉ + www.rttire.com + RT Tire + www.ruag.com + RUAG + www.ruby-forum.com + Ruby-Forum.com + www.ruc.dk + Roskilde University (partial) + www.rudloff.pro + Rudloff.pro + www.ruelala.com + Rue La La.com + www.rugby.gov.uk + UK Local Government + www.ruggedsoftware.org + Rugged Software + www.runforyourlives.com + Run for Your Lives + www.rus.uni-stuttgart.de + University of Stuttgart (partial) + www.rushmypassport.com + RushMyPassport.com + www.ruskeybiz.ru + Ruskey Biz (partial) + www.ruxconbreakpoint.com + Ruxcon Breakpoint.com + www.ryedale.gov.uk + UK Local Government + www.ryot.org + RYOT (partial) + www.s-3.com + S-3.com + www.s-hertogenbosch.nl + NL Overheid + www.s-pankki.fi + S-pankki + www.s2member.com + s2Member.com (partial) + www.sa-as.com + VisiStat.com (partial) + www.sac.se + Sac.se + www.sacnas.org + SACNAS (partial) + www.sacredcrystalsingingbowls.net + Sacred Crystal Singing Bowls.net + www.sade.com + Sade.com + www.saechsdsb.de + Der Sächsische Datenschutzbeauftragte + www.safaribooksonline.com + Safari Books Online + www.safariflow.com + Safari Flow.com (partial) + www.safe-in-cloud.com + Safe-In-Cloud.com + www.safeassign.com + SafeAssign + www.safecharge247.com + safecharge247.com + www.safelinking.net + Safelinking + www.sagernotebook.com + Sagernotebook.com + www.saic.com + SAIC.com (partial) + www.saimd.com + Corporate Color + www.salk.edu + Salk Institute + www.salsacommons.org + Salsa Labs + www.samknows.* + SamKnows (partial) + www.samsung.com.cn + Samsung (partial) + www.samsungdirect.com + Samsung Direct (partial) + www.samsunglfd.com + Samsung LFD + www.samsungtechwin.co.kr + Samsung Techwin + www.sanalmarket.com.tr + Sanalmarket + www.sandbox.mydigipass.com + Mydigipass.com + www.sandsmedia.com + S and S Media.com (partial) + www.sanger.ac.uk + Wellcome Trust Sanger Institute (partial) + www.sanitarium.se + Sanitarium.se + www.sankatyadvisors.com + Sankaty Advisors + www.sanoma.com + Sanoma.com + www.santanderbillpayment.co.uk + Santander BillPayment.co.uk + www.sapphireforum.com + Sapphire Forum.com + www.sata-io.org + SATA-IO.org + www.satoshidice.com + SatoshiDice + www.saucelabs.com + Sauce Labs + www.saucenao.com + SauceNAO.com + www.saudi.gov.sa + Saudi Government + www.sav.sk + SlovakGoverment + www.savage2.com + S2 Games (partial) + www.savethechildren.org.uk + Save the Children.org.uk (false MCB) + www.savethekoala.com + Australian Koala Foundation + www.savvyhawk.com + SavvyHawk.com + www.saymedia.com + Say Media + www.sbarmen.no + sbarmen.no (partial) + www.sbb.ch + Swiss Federal Railways (SBB/CFF/FFS) + www.sbi.co.in + StateBankOfIndia + www.sbrf.ru + Sberbank of Russia + www.sbvimprover.com + SBV Improver.com + www.sc.pages05.net + pages05.net + www.scaleengine.com + Scale Engine (partial) + www.scandinavianphoto.fi + Scandinavian Photo + www.scandinavianphoto.se + Scandinavian Photo + www.scans.io + Scans.io + www.scenemusic.net + Nectarine Demoscene Music + www.scepsis.ru + Scepsis + www.schaffner.org + Schaffner.org + www.sched.co + Sched.org (partial) + www.scheduleonce.com + ScheduleOnce.com (partial) + www.schiedam.nl + NL Overheid + www.schijndel.nl + NL Overheid + www.schiphol.nl + Schiphol + www.schlossbergstore.com + Schlossberg Store (partial) + www.schneideroptics.com + Schneider Kreuznach (partial) + www.schneier.com + Schneier on Security + www.schoeller.de + Nestlé Schöller (partial) + www.schokokeks.org + schokokeks.org (CAcert) + www.schooltoprison.org + SchooltoPrison.org + www.schrodinger.com + Schrödinger + www.schuilenburg.org + Schuilenburg.org (partial) + www.schweissgut.net + os-cillation (partial) + www.sci.uma.es + Uma.es + www.sciamdigital.com + Scientific American (partial) + www.scientificlinux.org + Scientificlinux.org + www.scintilla.utwente.nl + Scintilla.utwente.nl + www.scmagazineus.com + ScMagazineUS.com + www.scmp.com + South China Morning Post (partial) + www.scotborders.gov.uk + UK Local Government + www.scottbrand.com + Scottbrand.com + www.scottevest.com + Scottevest + www.scotthelme.co.uk + Scott Helme.co.uk + www.scottish-country-cottages.co.uk + Wyndham (partial) + www.scottishpower.co.uk + Scottish Power (partial) + www.scottishpowerpipeband.com + Scottish Power Pipe Band + www.scottlinux.com + scottlinux.com + www.scrambl.is + Scrambl.is + www.scrapbookroyalty.org + Charity Wings + www.screenshotmachine.com + Screenshot machine (partial) + www.scribit.com + Scribit (partial) + www.scripps.edu + Scripps Research Institute + www.scriptfodder.net + ScriptFodder + www.scriptjunkie.us + scriptjunkie.us (partial) + www.scriptsource.org + ScriptSource (partial) + www.scsk.jp + SCSK.jp + www.scss.net + Samsung mySingle + www.scubbly.com + Scubbly (partial) + www.seacloud.cc + Seacloud + www.seafileserver.de + Seafile-Server.de + www.searchcode.com + searchcode.com + www.searchengineland.com + Third Door Media (partial) + www.searchmarketingexpo.com + Third Door Media (partial) + www.searchmarketingnow.com + Third Door Media (partial) + www.searchterms.com + Net Applications + www.searsecommercejobs.com + Sears Ecommerce Jobs.com + www.seatgeek.com + SeatGeek.com + www.seattleix.net + SeattleIX.net + www.seattleprivacy.org + Seattle Privacy.org + www.seattletechnicalbooks.com + Seattle Technical Books.com (partial) + www.seba-geek.de + Someserver (partial) + www.sebijk.com + Home of the Sebijk.com + www.seblod.com + SEBLOD.com + www.sec.escapistexpo.com + The Escapist Expo + www.secdev.com + SecDev.com + www.secondlookforensics.com + Second Look Forensics.com + www.secondmarket.com + SecondMarket.com + www.secular.org + Secular Coalition for America + www.secularhumanism.org + Secular Humanism.org + www.secunet.com + secunet (partial) + www.secure-endpoints.com + Secure-Endpoints.com (partial) + www.secure-resumption.com + secure-resumption.com + www.secure-u.de + secure-u e.V. + www.secure.avahost.net + AvaHost (partial) + www.secure.pangaea.de + PANGAEA (partial) + www.secure.pdcnet.org + Philosophy Documentation Center (partial) + www.securecode.com + MasterCard + www.secureconnect.com + SecureConnect + www.securedcontent.net + securedcontent.net + www.secureholidays.com + Wyndham (partial) + www.securelist.com + SecureList + www.securepaths.com + securepaths.com + www.securepurchaseserver.com + securepurchaseserver.com + www.securepurchaseserver2.com + securepurchaseserver.com + www.securesuite.co.uk + RSA Security (partial) + www.securetrust.com + Trustwave (partial) + www.secureuk.net + secureuk.net + www.securingthehuman.org + Securing the Human.org + www.securities.com + Securities.com (partial) + www.security-database.com + Security-Database.com + www.securityconference.de + Munich Security Conference + www.securityevaluators.com + Security Evaluators.com + www.securityexperten.com + Security Experten.com (partial) + www.securitykiss.com + SecurityKISS.com (partial) + www.securityledger.com + The Security Ledger + www.secusmart.com + Secusmart + www.secwiki.org + SecWiki + www.sedo.fr + Sedo.com + www.sedonaaz.gov + City of Sedona (partial) + www.seecrypt.com + Seecrypt + www.seedboxes.cc + Seedboxes.cc + www.seetickets.com + See Group (partial) + www.segger.com + Segger.com + www.segment.io + Segment.io + www.segpaychat.com + SegPay (partial) + www.segpaycs.com + SegPay (partial) + www.sehirfirsati.com + Sehirfirsati + www.sektioneins.de + SektionEins.de + www.sel4.systems + seL4.systems + www.semabuzz.com + SEMABUZZ.COM + www.semantic-mediawiki.org + semantic-mediawiki.org + www.sendmail.com + Sendmail + www.seo.com + SEO.com + www.seower.com + seower.com + www.sertifikatai.lt + Sertifikatai.lt + www.servage.com + Servage.net + www.servedbyadbutler.com + AdBulter + www.server.cpmstar.com + CPMStar + www.service.futurequest.net + FutureQuest (partial) + www.serviceuptime.com + Service Uptime.com + www.sessioncam.com + SessionCam.com + www.settrade.com + Settrade.com + www.seulonta.fi + Syöpäjärjestöt + www.seurinternacional.com + Seurinternacional.com + www.sevenoaks.gov.uk + UK Local Government + www.seznam.cz + Seznam.cz + www.sfconservancy.org + Software Freedom Conservancy + www.sferra.com + Sferra (partial) + www.sgi.com + SGI.com + www.sgno.org + SGNO.org (partial) + www.sgsstudentbostader.se + SGSStudentbostader.se + www.shaaaaaaaaaaaaa.com + shaaaaaaaaaaaaa.com + www.shagaholic.com + Alcuda (partial) + www.shambhalamountain.org + Shambhala Mountain Center + www.shands.org + University of Florida (partial) + www.sharedvalue.org + SharedValue.org + www.sharefest.me + Sharefest.me + www.sharenice.org + shareNice + www.sharethenetwork.com + Share the Network + www.sharideangelo.com + Shari DeAngel.com (partial) + www.sharpfile.com + SharpFile.com (partial) + www.shaunlorrain.com.au + Shaun Lorrain.com.au + www.sheffield.gov.uk + UK Local Government + www.shellfish.io + shellfish.io + www.shellterproject.com + Shellter Project.com + www.shepherdsfriendly.co.uk + Sheperds Friendly Society + www.shevibe.com + SheVibe.com (partial) + www.shiftboard.com + Shiftboard.com (partial) + www.shipto.com + Shipto.com (partial) + www.shmoocon.org + ShmooCon + www.shop.cryptalloy.de + Cryptalloy.de (partial) + www.shop.harman.com + Harman International Industries (partial) + www.shop.infinet.com.au + Infinet.com.au (partial) + www.shop.skanetrafiken.se + Skanetrafiken.se + www.shopinfo.net + shopinfo.net (partial) + www.shopmanhattanite.com + Manhattanite + www.shopmimigreen.com + Shop Mimi Green.com + www.shoppbs.org + Public Broadcasting Service (partial) + www.shopstyle.* + ShopStyle (partial) + www.shopware.de + Shopware.de (partial) + www.shopyourway.com + Shop Your Way.com (partial) + www.showcase-tv.com + Showcase-TV + www.shwyz.ca + shwyz.ca + www.si.se + SI.se + www.sics.se + SICS.se + www.side.cr + SideCar + www.sideshowtoy.com + Sideshowtoy.com + www.sidn.nl + SIDN + www.sidux-ev.org + sidux e.V. + www.siemens.* + Siemens.com (partial) + www.siemens.co.* + Siemens.com (partial) + www.siemens.com.* + Siemens.com (partial) + www.siff.net + SIFF + www.sigmabeauty.com + SigmaBeauty + www.sigmaxi.org + Sigma Xi.org + www.signal-spam.fr + Signal Spam + www.sigterm.no + Sigterm.no + www.siia.net + Software & Information Industry Association + www.silabs.com + Silicon Labs + www.silentsender.com + Silent Sender.com + www.silicon.com + Silicon.com + www.silkspan.com + Silkspan.com + www.silvertunnel.org + silvertunnel.org + www.simcity.com + Sim City.com (partial) + www.simple-talk.com + Simple Talk (partial) + www.simplegiver.com + Modern Giver + www.simplybusiness.co.uk + Simply Business + www.simplysecure.org + Simply Secure.org + www.simplystamps.com + Simply Stamps (partial) + www.simquadrat.de + Sipgate + www.sinnfein.ie + Sinn Fein + www.sinsofasolarempire.com + Sins of a Solar Empire.com (partial) + www.sintjansbrug.nl + D.S.V. Sint Jansbrug + www.sipsolutions.net + SIP Solutions + www.sirportly.com + Sirportly (partial) + www.sirrix.* + Sirrix (partial) + www.sis.gov.uk + Secret Intelligence Service + www.siteadvisor.com + SiteAdvisor.com + www.sitefinity.com + Sitefinity.com (partial) + www.sitepointmarket.com + SitePoint (partial) + www.sitetrustnetwork.com + SiteTrust Network + www.siteuptime.com + SiteUptime.com + www.sitola.cz + Sitola + www.sittard-geleen.nl + NL Overheid + www.sivers.org + Sivers + www.sixapart.com + SixApart + www.sixapart.jp + SixApart + www.sj.se + SJ.se (partial) + www.sk-nic.sk + Sk-nic.sk + www.skandia.se + Skandia + www.skandiabanken.no + Skandiabanken + www.skanetrafiken.se + Skanetrafiken.se + www.skat.dk + Skat.dk + www.skatemall.com + SkateMall (partial) + www.skeptic.org.uk + Skeptic.org.uk + www.skepticalscience.com + Skeptical Science + www.skhynix.com + SK hynix.com + www.skillsmatter.com + Skills Matter.com + www.skinflint.co.uk + Skinflint + www.skipscreen.com + Space Inch (partial) + www.skreened.com + Skreened.com (partial) + www.sks-keyservers.net + SKS Keyservers (partial) + www.skytal.es + Greek-various + www.skyviewinghelp.com + SkyViewingHelp.com + www.slate.com + Slate.com (partial) + www.slb.com + Schlumberger + www.slettmeg.no + Datatilsynet + www.slf.se + SLF.se + www.slice.com + Slice + www.slickproductsusa.com + Slick Products + www.slidedeck.com + SlideDeck (partial) + www.slo-tech.com + Slo-Tech + www.sloanconsortium.org + The Sloan Consortium (partial) + www.slough.gov.uk + UK Local Government + www.slovensko.sk + SlovakGoverment + www.slu.se + SLU.se + www.smallingerland.nl + NL Overheid + www.smart-mail.de + Smart-Mail + www.smartauction.biz + Ally Financial (partial) + www.smartertrack.com + SmarterTrack.com (partial) + www.smartftp.com + SmartFTP + www.smarthide.com + SmartHide (partial) + www.smartplanet.com + SmartPlanet.com (partial) + www.smartronix.com + Smartronix + www.smava.de + smava + www.smfta.com + SMFTA.com (partial) + www.smoothieblend.com + SmoothieBlend.com + www.smuxi.com + Smuxi.im (partial) + www.smuxi.de + Smuxi.im (partial) + www.smuxi.im + Smuxi.im (partial) + www.smuxi.net + Smuxi.im (partial) + www.smuxi.org + Smuxi.im (partial) + www.snabb.co + Snabb.co + www.snacktools.com + SnackTools.com (partial) + www.snagajob.com + snagajob + www.snakehosting.dk + Snakehosting.dk + www.snapdeal.com + Snapdeal.com (partial) + www.snelpanel.com + Snel Internet Services + www.snelserver.com + Snel Internet Services + www.snl.com + SNL.com (partial) + www.snowmagazineonline.com + Snow Magazine + www.snsbank.nl + SNS Bank + www.so.cl + Hotmail / Live + www.social-engineer.com + Social-Engineer.com + www.socialboxusa.com + SocialBox + www.socialcampaign.com + Crowd Factory + www.socialcodedev.com + Social Code dev.com + www.socialscreamer.com + Social Screamer + www.socialshows.com + SocialShows + www.socialtheater.com + Social Theater + www.socialtyzetracking.com + Nanigans (partial) + www.societyforscience.org + SocietyForScience.org + www.sockshare.com + SockShare (partial) + www.sofawolf.com + Sofawolf + www.softether.org + SoftEther VPN + www.softwarefreedom.org + Software Freedom Law Center + www.sofurry.com + SoFurry + www.sofurryfiles.com + SoFurry + www.sohopelesslybroken.com + SOHOPelessly Broken.com + www.sohosted.com + SoHosted.com + www.soi.city.ac.uk + City University London + www.solar1.net + Solar1.net + www.soldierx.com + Soldierx.com + www.solidalert.com + SolidAlert.com + www.solihull.gov.uk + UK Local Government + www.somerset.gov.uk + UK Local Government + www.someserver.de + Someserver (partial) + www.songsterr.com + Songsterr.com (partial) + www.sony.se + Sony.se + www.sonycsl.co.jp + Sony Computer Science Laboratories + www.sonypictures.co.uk + Sony Pictures UK + www.soobest.com + SooBEST.com (partial) + www.soom.cz + Soom + www.soraiseyourglasses.com + So Raise Your Glasses + www.sos.state.co.us + Colorado Secretary of State (partial) + www.soscisurvey.de + SoSci Survey + www.soshareit.com + SoShare + www.sott.net + SotT.net (partial) + www.soundgasm.net + soundgasm.net + www.soundkit.io + SoundKit.io + www.soundunwound.com + SoundUnwound + www.sourcecoast.com + SourceCoast (partial) + www.sourceware.org + sourceware.org (partial) + www.southampton.ac.uk + University of Southampton (partial) + www.southampton.gov.uk + UK Local Government + www.southend.gov.uk + UK Local Government + www.southern-electric.co.uk + SouthernElectric + www.southglos.gov.uk + UK Local Government + www.southlanarkshire.gov.uk + UK Local Government + www.southwark.gov.uk + UK Local Government + www.sovereignman.com + Sovereign Man.com + www.soylentnews.org + Soylent News.org (partial) + www.sp.nl + NL Politiek + www.space.dtu.dk + Technical University of Denmark (partial) + www.space2u.com + Space2u (partial) + www.spaceindustrynews.com + Space Industry News + www.spacetelescope.org + Hubble (partial) + www.spaceweatherphone.com + Spaceweather PHONE + www.spacex.com + SpaceX + www.spamgourmet.com + SpamGourmet + www.spamicity.info + spamicity.info + www.sparked.com + Sparked + www.sparkstudios.com + Sparkstudios.com + www.sparxtrading.com + Sparx Trading.com (partial) + www.spatialpoint.com + SpatialPoint + www.spbas.com + SPBAS.com (partial) + www.spcala.com + SPCA Los Angeles + www.speakerdeck.com + Speaker Deck.com + www.special-trade.de + Special-trade.de + www.specialized.net + Specialized Products Company (partial) + www.spicebox.co.jp + spicebox + www.spider.io + Spider.io (partial) + www.spiderwebsoftware.com + Spiderweb Software + www.spidweb.com + Spiderweb Software + www.spilnu.dk + Splinu.dk + www.spirit.com + Spirit Airlines + www.splashdata.com + Splash Data.com (partial) + www.splendidbacon.com + Splendid Bacon + www.splitreason.com + Split Reason Clothing + www.spogo.co.uk + spogo.co.uk + www.spontex.org + Spontex.org + www.sportsauthority.com + Sports Authority (partial) + www.spotware.com + Spotware.com + www.spring.io + Spring.io (partial) + www.springer-gabler.de + Springer (partial) + www.springerzahnmedizin.de + Springer (partial) + www.springpadit.com + Springpad + www.springshare.com + Springshare + www.spritesmods.com + SpritesMods.com + www.sproutinc.com + Sprout (partial) + www.spsn.net + spsn.net + www.sptag.com + Sptag.com + www.sptag1.com + sptag1.com + www.spyderco.com + Spyderco + www.squarefree.com + squarefree.com + www.squareup.com + Square (partial) + www.squirrelmail.org + SquirrelMail + www.sr.se + SverigesRadio + www.srds.com + SRDS.com (partial) + www.srm.de + SRM.de + www.srware.net + Srware + www.ssafastore.co.uk + SSAFA (partial) + www.ssb.no + SSB.no + www.ssdp.org + Students for Sensible Drug Policy + www.ssl.gostats.com + GoStats (partial) + www.ssllabs.com + SSLlabs.com + www.sslmate.com + SSLMate.com + www.sslshopper.com + SSLshopper + www.sss.gov + US Selective Service System + www.st.org + ST.org + www.stablehost.com + Stable Host (partial) + www.stackapps.com + Stack Exchange (partial) + www.stackmonkey.com + StackMonkey.com + www.stadt-zuerich.ch + Stadt-Zuerich.ch + www.staffordshire.gov.uk + UK Local Government + www.staffsmoorlands.gov.uk + UK Local Government + www.stallman.org + Stallman.org + www.stand.org + Stand for Children (partial) + www.standaard.be + Standaard.be (mixed content) + www.standagainstspying.com + Stand Against Spying.org + www.standagainstspying.net + Stand Against Spying.org + www.standagainstspying.org + Stand Against Spying.org + www.standardebooks.com + Standard Ebooks.com + www.stanford.io + bit.ly vanity domains + www.star-pool.com + Star-Pool (partial) + www.starkist.com + StarKist + www.starmotorcycles.com + Star Motorcycles + www.starttls.info + STARTTLS.info + www.starwars.com + StarWars.com (partial) + www.starwoodhotels.com + Starwood Hotels & Resorts + www.statefarm.com + StateFarm + www.statf.com + Fandango (partial) + www.staticgen.com + StaticGen.com + www.statichukd.com + HotUKDeals (partial) + www.staticv.net + Vast (partial) + www.staticwhich.co.uk + Which? (partial) + www.stationlrowingclub.com + Station L Rowing Club + www.statistik.bayern.de + StatistikamtBayern + www.staysafeonline.org + StaySafeOnline.org + www.staytoday.com + StayToday.com + www.stdhivtraining.org + California STD/HIV Prevention Training Center (partial) + www.steaknshake.com + Steaknshake.com + www.steaw.com + Steaw + www.stedebroec.nl + NL Overheid + www.steenwijkerland.nl + NL Overheid + www.steg-electronics.ch + STEG + www.stirling.gov.uk + UK Local Government + www.stlbeacon.org + St L Beacon.org + www.stockcharts.com + StockCharts.com (partial) + www.stonearch.net + SemiAccurate + www.stopthehacker.com + Stopthehacker.com + www.store4geeks.com + Store4Geeks.com + www.storebrand.no + Storebrand + www.storminternet.co.uk + Storm Internet (partial) + www.storywrite.com + Storywrite (partial) + www.strasweb.fr + Strasweb.fr + www.strategysignals.com + Strategysignals.com + www.strath.ac.uk + University of Strathclyde (partial) + www.strato-hebergement.fr + STRATO (partial) + www.strato-hosting.co.uk + STRATO (partial) + www.strato-mailcenter.com + STRATO MailCenter + www.strato-pro.com + STRATO Pro + www.strato.* + STRATO (partial) + www.streammygame.com + StreamMyGame + www.streetmoda.com + Street Moda (partial) + www.strimoid.pl + Strimoid.pl + www.strongvpn.com + StrongVPN.com + www.structures.ucsd.edu + UCSD + www.studentaid.ed.gov + ED.gov (partial) + www.studentaid2.ed.gov + ED.gov (partial) + www.studentloans.gov + StudentLoans.gov + www.stunnel.org + stunnel.org + www.stupid.com + Stupid.com + www.stuvel.eu + Stüvel photography + www.subconadmin.com + Subcon admin.com + www.subeta.net + Subeta + www.sublimetext.com + Sublime Text.com + www.subway.com + Subway.com + www.sudoroom.org + Sudo Room + www.sueddeutsche-tickets.de + Süddeutsche Zeitung Tickets + www.suicidepreventionlifeline.org + National Suicide Prevention Lifeline + www.suitabletech.com + Suitable Tech.com (partial) + www.sun365.me + Sun365.me + www.sunbeltsoftware.com + Sunbeltsoftware.com + www.sunriseprintonline.com + Sunrise Print Online + www.sunsetprohosting.com + Sunset ProHosting + www.suntec.net + Suntec.net (partial) + www.sunxi.org + linux-sunxi.org + www.sunybroome.edu + Broome Community College + www.superantispyware.com + SuperAntiSpyware + www.supercard.ch + Coop + www.superdrug.com + Superdrug (partial) + www.superevr.com + Superevr + www.superkuh.com + superkuh.com + www.superstart.se + Superstart.se + www.supervalu.com + SUPERVALU + www.suppliesfordreams.org + Supplies for Dreams.org (partial) + www.surfcanyon.com + Surfcanyon.com + www.surfeasy.com + Surfeasy.com + www.surfline.com + Surfline + www.surftown.com + Surftown.com + www.surveygizmo.com + SurveyGizmo.com + www.survivetheclaireperryinter.net + Survive the Claire Perry Inter.net + www.survs.com + Survs (partial) + www.sustainablebusiness.com + Sustainablebusiness.com + www.sutn.sk + SlovakGoverment + www.sv.no + SV.no (partial) + www.svb.com + Silicon Valley Bank + www.sverigesradio.se + SverigesRadio + www.svgopen.org + SVGOpen + www.swan.sk + Swan.sk + www.swapoff.org + SwapOff.org + www.swartzfiles.com + Swartz Files.com + www.sweetandsourstudio.com + Sweet & Sour + www.swiftype.com + Swiftype (partial) + www.swinburne.edu.au + Swinburne.edu (partial, false MCB) + www.swiss.com + Swiss.com + www.swisscex.com + SWISSCEX.com + www.swissdigicert.ch + Swisscom.ch + www.swisspost-gls.ch + Post.ch + www.swisspost.ch + Post.ch + www.swisspost.com + Post.ch + www.swisssign.com + Post.ch + www.switchboard.com + SuperMedia (partial) + www.switchie.ch + Switchie.ch + www.sycom.co.jp + Sycom.co.jp + www.sydostran.se + Sydostran.se + www.sympa.org + Sympa.org (partial) + www.synaptop.com + Synaptop.com + www.sync.com + Sync.com + www.syndetics.com + Library Anywhere + www.syndie.de + Syndie + www.synergy-foss.org + Synergy-FOSS.org (partial) + www.synology.com.tw + Synology (partial) + www.synopsys.co.jp + Synopsys (partial) + www.synthetix.com + Synthetix.com (partial) + www.synthetix.info + Synthetix.info + www.synthetix.net + Synthetix.info + www.syoparekisteri.fi + Syöpäjärjestöt + www.sysadmincasts.com + Sysadmin Casts.com + www.sysmocom.de + sysmocom.de (CAcert, partial) + www.sysprovide.de + sysprovide (partial) + www.system76.com + System76.com + www.systembolaget.se + Systembolaget.se + www.szm.com + Szm.com + www.t-analytics.com + TripAdvisor (partial) + www.t-com.sk + Telekom.sk + www.t-engine.org + T-Engine.org (partial) + www.t-shirtmojo.com + T-Shirt Mojo + www.t35.com + T35 cPanel Hosting + www.tachanka.org + Tachanka.org + www.tageswoche.ch + TagesWoche + www.tahina.priv.at + priv.at (CAcert) + www.tahoe-lafs.org + Tahoe-LAFS + www.tailormadeanswers.com + Tailor Made Answers + www.takeaway.com + Takeaway.com + www.takuu-saatio.fi + Takuu-Säätiö + www.talkingfrench.com + Talking French + www.talktalk-labs.com + TalkTalk-Labs.com + www.tampabaysod.com + Tampa Bay Sod.com + www.tancity.de + TanCity.de + www.tandemcal.com + Tandem Calendar + www.tandfonline.com + Informa (partial) + www.tandlakarforbundet.se + Tandlakarforbundet.se + www.tandridge.gov.uk + UK Local Government + www.tango.me + Tango.me (partial) + www.tanomail.com + Tanomail.com + www.taoeffect.com + Tao Effect.com + www.tapatalk.com + Tapatalk + www.tapgage.net + Tapgage + www.taringa.net + Taringa (partial) + www.tarsnap.com + Tarsnap + www.tatepublishing.com + Tate Publishing.com + www.tauceti.org.au + TauCeti.org.au + www.tauntondeane.gov.uk + UK Local Government + www.taylorandfrancis.com + Informa (partial) + www.tc3.edu + Tompkins-Cortland Community College + www.tcd.ie + Trinity College Dublin (partial) + www.tcli.ed.gov + ED.gov (partial) + www.tcpalmextras.com + TCPalm.com (partial) + www.tdc-wholesale.com + TDC.dk (partial) + www.tdcanadatrust.com + TD Canada Trust + www.tdcserviceonline.com + TDC Service Online.com + www.tdnam.com + GoDaddy (partial) + www.teac.co.jp + TEAC (partial) + www.teach-ats.ed.gov + ED.gov (partial) + www.team-cymru.org + Team Cymru + www.teamintraining.org + Team in Training.org (partial) + www.teapartypatriots.org + Tea Party Patriots + www.techhouse.org + TechHouse + www.techinasia.com + Tech in Asia.com + www.techmeme.com + Techmeme.com + www.technical.ly + Technical.ly (partial) + www.technologyreview.in + TechnologyReview (partial) + www.technomedia.com + Technomedia + www.techpowerup.com + Techpowerup.com + www.techreport.com + The Tech Report (partial) + www.techslinger.com + Techslinger.com + www.techsupportalert.com + Techsupportalert + www.techtoolsforactivism.org + Tech Tools for Activism.org + www.techverse.com.au + TechVerse (partial) + www.tecnocode.co.uk + tecnocode.co.uk + www.teddyhyde.com + Teddy Hyde.com + www.teendriversource.org + TeenDriverSource.org + www.teenshealth.org + KidsHealth/TeensHealth + www.tehtri-security.com + TEHTRI-Security.com + www.teksyndicate.com + Tek Syndicate.com + www.tele-task.de + tele-TASK + www.tele2.se + Tele2.se + www.telebrands.net + Telebrands + www.telecom.sk + Telekom.sk + www.telefonica.cz + Telefónica (partial) + www.telegram.org + Telegram.org + www.telekom.at + A1 Telekom Austria + www.telekom.de + Deutsche Telekom + www.telekom.hu + Magyar Telekom (partial) + www.telekom.sk + Telekom.sk + www.telenor.se + Telenor.se (partial) + www.telerik-web-assets.com + Telerik-web-assets.com + www.telmasters.com + TelMasters + www.telnic.org + Telnic + www.tem.fi + Työ- ja elinkeinoministeriö + www.tenderapp.com + ENTP (partial) + www.tenon.com + Tenon.com + www.tent.io + Tent.io + www.terasic.com.tw + Terasic.com.tw (partial) + www.termsofservicegenerator.com + Global Marketing Strategies (partial) + www.terneuzen.nl + NL Overheid + www.terreactive.ch + terreActive + www.terveysportti.fi + Terveysportti.fi + www.terveysportti.net + Terveysportti.fi + www.terveysportti.org + Terveysportti.fi + www.tesco.com + Tesco.com (false MCB) + www.tescobank.com + Tesco Bank.com + www.tescocompare.com + Tesco Compare.com + www.tescodiets.com + Tesco Diets.com + www.tescofinance.com + Tesco Bank.com + www.tescophoto.com + Tesco Photo.com + www.teslamotors.com + Tesla Motors (partial) + www.test-ipv6.cz + Test-IPv6.cz (false MCB) + www.test.de + test + www.testequipmentdepot.com + Test Equipment Depot + www.texaco.com + Texaco.com + www.textmagic.com + TextMagic.com (partial) + www.textpad.com + TextPad.com (partial) + www.teylingen.nl + NL Overheid + www.tfaforms.com + FormAssembly.com (partial) + www.thainetizen.org + Thai Netizen.org + www.thalescomminc.com + Thales Communications + www.thalys.com + Thalys + www.thalysthecard.com + Thalys + www.thawte.com + Thawte + www.thc.org + The Hacker's Choice + www.the-best-hosting.net + The Best Hosting + www.the-body-shop.ch + Coop + www.the-independent-news.com + The Independent News (partial) + www.theaa.com + TheAA + www.theaj.co.uk + Architect's Journal + www.theatlantic.com + The Atlantic.com (false MCB) + www.thebaffler.com + The Baffler + www.thebigweddingmovie.com + The Big Wedding Movie.com + www.theblueskylife.com + The Blue Sky Life.com + www.thebookpeople.co.uk + The Book People + www.thecanadianpress.com + The Canadian Press + www.thecityuk.com + TheCityUK + www.theconversation.com + The Conversation + www.theconversation.edu.au + The Conversation + www.thecustomizewindows.com + The Customize Windows + www.thedilbertstore.com + The Dilbert Store.com (partial) + www.thediplomat.com + The Diplomat + www.thedma.org + The DMA.org (partial) + www.theedgeclimbing.com + The Edge Climbing.com + www.theeroticreview.com + TheEroticReview + www.thefederalistpapers.org + The Federalist Papers.org (partial) + www.thegef.org + International Finance Corporation (partial) + www.thegoodfight.fm + The Good Fight.fm + www.thegrandtheatre.com + The Grand + www.thegreatcourses.com + The Great Courses (partial) + www.thehoxton.com + The Hoxton.com + www.thehut.com + TheHut.com (partial) + www.theiabm.org + IABM + www.thejh.net + Jann Horn + www.thejns.org + Journal of Neurosurgery (partial) + www.theme.co + Theme.co (partial) + www.themesandco.com + Themes and Co.com + www.thenewsfunnel.com + The News Funnel (partial) + www.theoldreader.com + The Old Reader + www.theprivacyblog.com + The Privacy Blog + www.therapynotes.com + Therapynotes.com + www.thereadingroom.com + TheReadingRoom.com (partial) + www.thesafety.us + TheSafety.US + www.theses.cz + Theses.cz + www.thesixthaxis.com + TheSixthAxis.com + www.theskoop.ca + The Skoop + www.thesprawl.org + The Sprawl + www.theswirlworld.com + aswirlgirl.com (partial) + www.thetechjournal.com + The Tech Journal.com + www.thetfp.com + The TFP + www.theticketfactory.com + The Ticket Factory + www.thetoadfly.com + The Toad Fly (partial) + www.thetrainline.com + TheTrainLine + www.thewatershedresidence.com + The Watershed Residence + www.thewebindex.org + The Web Index.org + www.theweek.com + The Week.com + www.theweekendedition.com.au + The Weekend Edition + www.thewesternworld.com + The Western World (partial) + www.thinkpad.com + Lenovo (partial) + www.thinkprogress.org + Center for American Progress (partial) + www.thiswebhost.com + ThisWebHost + www.thompson.com + Thompson.com + www.thoughtworks.com + ThoughtWorks.com (partial) + www.thp.io + thp.io + www.thread.com + Thread.com + www.threatmetrix.com + ThreatMetrix.com (partial) + www.threattracksecurity.com + ThreatTrack Security.com + www.three.ie + Three + www.threerivers.gov.uk + UK Local Government + www.thunderclap.it + Thunderclap.it + www.thunderranchinc.com + Thunder Ranch + www.ti.to + Ti.to + www.tickengo.* + Tickengo + www.tickerassist.co.uk + Microgaming + www.tickermadness.com + Ticker Madness.com + www.ticketingnetworkeastmidlands.co.uk + TicketingNetworkEastMidlands + www.ticketmaster.* + Ticketmaster (partial) + www.ticketnet.fr + ticketnet.fr (partial) + www.ticketportal.sk + Ticketportal.sk + www.tickets.london2012.com + London 2012 + www.ticketweb.co.uk + Ticketmaster (partial) + www.tidbits.com + TidBITS + www.tigerdirect.com + TigerDirect (partial) + www.tigr.net + Tigr.net + www.tilburguniversity.nl + Tilburg University (partial) + www.timesofmoney.com + TimesofMoney + www.timex.com + Timex + www.timtaubert.de + Tim Taubert.de + www.tindie.com + Tindie.com (partial) + www.tinfoil.co + Tinfoil Security.com + www.tinkerforge.com + Tinkerforge.com (partial) + www.tinychat.com + TinyChat + www.tinypass.com + Tinypass.com (partial) + www.tinyteenpass.com + tinyteenpass.com + www.tip.net.au + TIP.net.au (partial) + www.tirerack.com + Tirerack + www.tiscali.nl + Telfort (partial) + www.titanfile.com + Titanfile.com + www.titania.com + Titania.com + www.tito.io + Ti.to + www.tk.de + Techniker Krankenkasse + www.tkqlhce.com + Commission Junction + www.tmbc.gov.uk + UK Local Government + www.tmcnet.com + Tmcnet.com + www.tmobile.nl + T-Mobile + www.tmobileuk.blackberry.com + T-Mobile + www.tms.va.gov + US Department of Veterans Affairs + www.tn123.org + tn123.org + www.tno.nl + TNO.nl + www.todo.ly + TodoLy + www.tofinosecurity.com + TofinoSecurity + www.togahotels.com + Toga Hotels (partial) + www.togevi.com + Ive Got Kids.com (partial) + www.tokyo-tosho.net + Tokyo Toshokan + www.tokyotosho.info + Tokyo Toshokan + www.tokyotosho.se + Tokyo Toshokan + www.tomsofmainestore.com + Tom's of Maine (partial) + www.tomtom.com + TomTom International (partial) + www.tonergiant.co.uk + TonerGiant (partial) + www.tony.xyz + tony.xyz + www.toorcon.net + ToorCon.net + www.topatoco.com + TopatoCo + www.toptip.ch + Coop + www.torbay.gov.uk + UK Local Government + www.torcache.net + Torcache.net + www.torguard.net + TorGuard + www.torrentfunk.com + TorrentFunk.com (partial) + www.torrentprivacy.com + TorrentPrivacy (partial) + www.torrentz.ch + Torrentz + www.torrentz.com + Torrentz + www.torrentz.eu + Torrentz + www.torrentz.in + Torrentz + www.torrentz.me + Torrentz + www.torreycommerce.com + TorreyCommerce (partial) + www.torsearch.es + TorSearch.es + www.tosdr.org + Terms of Service; Didn't Read + www.toshiba.co.jp + Toshiba.co.jp (partial) + www.totalbarcode.com + TotalBarcode.com + www.totalrecall.com + Binary Biz + www.totaltravel.co.uk + Yahoo! (partial) + www.townnews365.com + TownNews.com + www.townsvillebottomfishingcharters.com.au + Townsville Bottom Fishing Charters.com.au (partial) + www.toysrus.com + Toys R Us.com (partial) + www.tpb.me + TPB.me + www.tpd.sk + Tpd.sk + www.tpptraining.com + TPPtraining.com + www.tqlkg.com + Commission Junction + www.tracking-point.com + TrackingPoint (partial) + www.traction-digital.com + Traction-Digital.com (false MCB) + www.trademarkia.com + Trademarkia.com + www.tradepub.com + TradePub.com (false MCB) + www.trafficprivacy.com + TrafficPrivacy + www.trafficshop.com + Traffic Shop + www.trakk247.com + trakk247.com + www.transactauto.com + Transact Auto + www.transcend.org + Transcend.org + www.transformationmadeeasy.com + transformationmadeeasy.com (partial) + www.transformativeworks.org + Transformative Works.org (partial) + www.transip.nl + TransIP.nl + www.transitionnetwork.org + TransitionNetwork.org + www.translatewiki.net + Translatewiki.net + www.translationproject.org + Translation Project.org + www.transmode.com + Transmode + www.transportstyrelsen.se + Transportstyrelsen.se + www.transversal.com + Transversal.com + www.travelhouse.ch + Hotelplan + www.travelplan.gr + Travel Plan + www.travelrepublic.com + Travel Republic (partial) + www.traxarmstrong.com + traxarmstrong.com + www.treasurydirect.gov + TreasuryDirect + www.trellian.com + Trellian (partial) + www.trello.com + Trello + www.tribler.org + Tribler (partial) + www.trideci.com + TriDeci + www.tridium.com + Tridium + www.trillian.im + Trillian.im (partial) + www.trinityfi.org + Trinity Foundation + www.tripbod.com + tripbod.com (partial) + www.tripwire.com + Tripwire.com (partial) + www.tritonlink.ucsd.edu + UCSD + www.triumph-adler.de + Triumph-Adler.de + www.trollingeffects.org + Trolling Effects.org + www.tronixcomputers.com + Tronix Computers.com + www.troopers.de + Troopers.de + www.tropo.com + Tropo (partial) + www.trueachievements.com + Trueachievements.com + www.truenudists.com + truenudists.com + www.trumanlibrary.org + Harry S Truman Library and Museum + www.trumba.com + Trumba + www.trumpia.com + Trumpia.com + www.trusted-introducer.nl + Trusted-Introducer.org + www.trusted-introducer.org + Trusted-Introducer.org + www.trustedcs.com + Trusted CS.com + www.trustedsec.com + TrustedSec.com + www.trustedshops.* + Trusted Shops (partial) + www.trustedshops.co.uk + Trusted Shops (partial) + www.trustico.com + Trustico + www.trustlogo.com + Comodo + www.trustthevote.org + TrustTheVote.org (false MCB) + www.trustworthyinternet.org + Trustworthy Internet Movement + www.truthdig.com + Truthdig.com + www.truthinadvertising.org + Truth in Advertising + www.trycelery.com + Try Celery.com + www.trygghansa.se + Trygghansa.se + www.tsoshop.co.uk + TSO Shop + www.tsv.fi + Tieteellisten seurain valtuuskunta + www.tt.se + TT.se + www.tu-hamburg.de + TUHH.de (partial) + www.tubbergen.nl + NL Overheid + www.tuftsgiving.org + Tufts Giving.org + www.tuftsmedicalcenter.org + Tufts Medical Center.org (partial) + www.tug.org + TeX Users Group + www.tuitam.pl + TU I TAM + www.tum.de + Tum.de + www.tumblr.com + Tumblr.com (false MCB) + www.tuningworld.com.au + Tuning World + www.turku.fi + Turku.fi + www.tus.ac.jp + Tokyo University of Science (partial) + www.tuv.com + CONVAR (partial) + www.tuvdotcom.com + CONVAR (partial) + www.tuxic.nl + TuxIC.nl + www.tv.gsn.com + Game Show Network (partial) + www.tv4play.se + TV4play.se + www.tvheadend.org + Tvheadend.org + www.tvlicensing.co.uk + Tvlicensing.co.uk + www.tvshowtime.com + TVShow Time.com + www.tweetdeck.com + Tweetdeck + www.twiant.com + twiant.com + www.twinings.co.uk + Twinings (partial) + www.twisted4life.com + Twisted4Life + www.twittercommunity.com + Twitter Community.com + www.twittercounter.com + Twitter Counter (partial) + www.twofactorauth.org + Two Factor Auth + www.twtpoll.com + Twtpoll.com + www.twylah.com + Twylah.com + www.typepad.com + Typepad (partial) + www.ua2go.com + United Airlines + www.uakjobs.com + University of Alaska Jobs (uakjobs.com) + www.ubermedia.com + UberMedia.com (partial) + www.ubertt.org + Ubertt.org + www.ubs-static.com + UBS (partial) + www.ubuntuone.com + Ubuntu (partial) + www.ubykotex.com.au + U by Kotex Australia + www.ucc.dk + UCC.dk + www.ucl.ac.uk + University College London (partial) + www.uclahealth.org + UCLA Health + www.ucommand.com + ucommand.com + www.ucuzu.com + Árukereső + www.ud-media.de + UD Media.de + www.udacity.com + Udacity.com (partial) + www.uden.nl + NL Overheid + www.udistrital.edu.co + Universidad Distrital + www.udk.com + Unreal Development Kit + www.uef.fi + University of Eastern Finland (partial) + www.uefidk.com + Uefidk.com + www.uen.org + Utah Education Network (partial) + www.uhhospitals.org + uhhospitals.org (partial) + www.uhub.org + uhub + www.uie.com + UIE + www.ujd.gov.sk + SlovakGoverment + www.uk2img.net + UK-2 (partial) + www.ukonlinecentres.com + UK online centres.com (partial) + www.ukreg.com + Fasthosts (partial) + www.ukwebsolutionsdirect.co.uk + UK Web Solutions Direct + www.ukwebsolutionsdirect.com + UK Web Solutions Direct + www.ul.ie + UL.ie (false MCB) + www.ul.to + Cyando (partial) + www.uline.com + Uline.com (partial) + www.ultradns.* + UltraDNS + www.ultrasurf.us + Ultrasurf.us + www.umail.utah.edu + University of Utah (partial) + www.umassulearn.net + University of Massachusetts Amherst (partial) + www.un.org + United Nations + www.unbound.net + NLnet Labs CACert + www.unclineberger.org + UNC Lineberger.org + www.underground-gamer.com + Underground Gamer + www.underhandedcrypto.com + Underhanded Crypto.com (partial) + www.underskog.no + Underskog + www.unfpa.org + UNFPA.org + www.uni-kl.de + Uni-Kl.de (false MCB) + www.uni-mainz.de + University of Mainz (false MCB) + www.uniblue.com + Uniblue + www.unido.org + UNIDO.org + www.unifiedtracking.com + Nanigans (partial) + www.unisg.ch + Unisg.ch + www.unistra.fr + UniStra.fr (false MCB) + www.united-domains.de + United Domains + www.united-internet.de + United Internet + www.united.com + United Airlines + www.uniteddomains.com + United Domains + www.unitedrepublic.org + United Republic (partial) + www.univ-brest.fr + Univ-Brest.fr (partial) + www.universityadmissions.se + universityadmissions.se + www.unm.edu + UNM + www.unodc.org + UNODC.org + www.unpac.org + unPAC + www.untappd.com + Untappd.com + www.unwantedwitness.or.ug + Unwanted Witness.or.ug + www.uofulaw.org + University of Utah (partial) + www.upay.co.uk + Upay + www.upaymobile.co.uk + Upay + www.upforit.com + Alcuda (partial) + www.upgnation.com + The Nation + www.upgradedself.com + Upgraded Self.com + www.uplay.ubi.com + Uplay.ubi.com + www.uploaded.net + uploaded.net (partial) + www.uploaded.to + Cyando (partial) + www.upplandsvasby.se + Upplandsvasby.se + www.uppsite.com + UppSite (partial) + www.uprotect.it + Uprotect.it + www.upu.int + UPU.int + www.upworthy.com + Upworthy.com (partial) + www.uqwimax.jp + UQ WiMAX + www.urac.org + URAC + www.urlaubspiraten.de + urlaubspiraten + www.urlquery.net + urlQuery + www.urltrends.com + UrlTrends + www.urospace.de + Urospace (partial) + www.usa.canon.com + Canon + www.usainteanne.ca + usainteanne + www.usask.ca + University of Saskatchewan (partial) + www.usb.org + USB.org (partial) + www.usdoedregistration.ed.gov + ED.gov (partial) + www.usenetjunction.com + Usenet Junction + www.usenix.org + USENIX + www.useotrproject.org + USE OTR Project.org + www.useresponse.com + UseResponse.com (partial) + www.userscripts.org + UserScripts.org + www.userstyles.org + Userstyles.org + www.usessh001.com + Use SSH 001.com + www.usfreeads.com + USFreeads (partial) + www.ushmm.org + ushmm.org + www.usi.edu + University of Southern Indiana (partial) + www.uspsoig.gov + US government (partial) + www.usrjoy.com + UsrJoy + www.usrowing.org + USRowing (partial) + www.usshortcodes.com + Common Short Code Administration (partial) + www.usweeklysubscriptions.com + US Weekly subscriptions.com + www.utica.edu + Utica College + www.utl.pt + Technical University of Lisbon + www.utrecht.nl + NL Overheid + www.uttlesford.gov.uk + UK Local Government + www.uua.org + Unitarian Universalist Association of Congregations (partial) + www.uvo.gov.sk + SlovakGoverment + www.uvpn.de + uVPN + www.uwm.edu + University of Wisconsin–Milwaukee (partial) + www.v3.co.uk + V3.co.uk (partial) + www.va.gov + US Department of Veterans Affairs + www.vacanteen.va.gov + US Department of Veterans Affairs + www.vacareers.va.gov + US Department of Veterans Affairs + www.vagrantcloud.com + Vagrant Cloud.com + www.valeofglamorgan.gov.uk + UK Local Government + www.valu.va.gov + US Department of Veterans Affairs + www.value-domain.com + Value-Domain.com (partial) + www.valueapplications.com + Value Applications + www.valueclick.com + ValueClick (partial) + www.valuecommerce.ne.jp + ValueCommerce (partial) + www.valueshop.co.uk + ValueShop.co.uk + www.vanillicon.com + Vanillicon.com + www.vanlanschot.com + Van Lanschot.com + www.vanlanschot.nl + Van Lanschot.nl + www.varnish-software.com + Varnish-Software.com (partial) + www.varuste.net + Varuste.net + www.varusteleka.fi + Varusteleka.fi + www.vatt.fi + Valtion taloudellinen tutkimuskeskus + www.vayable.com + Vayable.com + www.vbseo.com + vBSEO (partial) + www.vce.com + VCE.com (partial) + www.vdownloader.com + VDownloader + www.vectormediagroup.com + Vector Media Group + www.vedphoto.com + vedphoto.com (partial) + www.vehbidz.com + VehBidz (partial) + www.velleman.be + Velleman Group (partial) + www.velleman.eu + Velleman Group (partial) + www.vellemanusa.com + Velleman Group (partial) + www.velocitymicro.com + Velocity Micro + www.velox-project.eu + Velox-Project.eu + www.vendorportal.ecms.va.gov + US Department of Veterans Affairs + www.verbraucher-sicher-online.de + Verbraucher-sicher-online.de + www.verdadmedia.com + Verdad Media + www.vereinigte-ikk.de + Vereinigte IKK + www.verfassungsschutz.de + Bundesamt für Verfassungsschutz + www.verifiedvoting.org + Verified Voting + www.verifiedvotingfoundation.org + Verified Voting + www.verisign-japan-domain.com + VeriSign (partial) + www.verisign.be + VeriSign (partial) + www.verisign.ch + VeriSign (partial) + www.verisign.co.jp + VeriSign (partial) + www.verisign.co.nz + VeriSign (partial) + www.verisign.co.uk + VeriSign (partial) + www.verisign.com.au + VeriSign (partial) + www.verisign.com.br + VeriSign (partial) + www.verisign.com.hk + VeriSign (partial) + www.verisign.com.sg + VeriSign (partial) + www.verisign.com.tw + VeriSign (partial) + www.verisign.de + VeriSign (partial) + www.verisign.dk + VeriSign (partial) + www.verisign.es + VeriSign (partial) + www.verisign.fr + VeriSign (partial) + www.verisign.it + VeriSign (partial) + www.verisign.nl + VeriSign (partial) + www.verisign.se + VeriSign (partial) + www.verisigninc.com + VeriSign (partial) + www.verivox.de + Verivox (partial) + www.verizonbusiness.com + Verizon (partial) + www.verizonenterprise.com + Verizon Enterprise (partial) + www.veronmaksajat.fi + Veronmaksajat + www.versioneye.com + VersionEye.com + www.vesica.ws + Vesica + www.vg.no + VG.no + www.viaforensics.com + viaForensics.com + www.viaverio.com + Viaverio.com + www.vibrantmedia.com + Vibrant + www.victoriassecretcanada.ca + Victorias Secret Canada.ca + www.vidaysalud.com + Vida y Salud.com (partial) + www.vidble.com + Vidble.com + www.videoaidedinstruction.com + Video Aided Instruction + www.videodroid.org + Videodroid.org + www.videogamegeek.com + BoardGameGeek + www.videoplaza.tv + Videoplaza.tv (partial) + www.videopp.com + VideoPP.com (partial) + www.videopros.com + VideoPros + www.vidup.me + Vidup.me (partial) + www.vikingvpn.com + VikingVPN.com + www.villahostels.com + Villa Saint Exupéry (partial) + www.villas4you.co.uk + Wyndham (partial) + www.vimention.com + Vimention.com (partial) + www.vimention.mobi + Vimention.com (partial) + www.vip.vetbiz.gov + US Department of Veterans Affairs + www.vipcell.com.tr + VipCell + www.vipserv.org + VIPserv.org + www.virginiamason.org + Virginia Mason Hospital & Medical Center + www.virginmobile.com.au + Virgin Mobile + www.virt-manager.org + virt-manager.org + www.virtual-server.org + Virtual-Server.org + www.virtualedge.com + ADP VirtualEdge + www.virtualspirits.com + Virtual Sprits + www.virurl.com + VIRURL + www.virusbtn.com + Virus Bulletin + www.virusec.com + Virusec.com + www.virustotal.com + VirusTotal + www.virwox.com + VirWoX.com + www.vis.fsc.va.gov + US Department of Veterans Affairs + www.visaeurope.com + Visa Europe (partial) + www.visaforchina.org + Visaforchina.org + www.visahq.com + VisaHQ + www.visiba.com + Visiba.com + www.visionairlines.com + Vision Airlines + www.visionartforum.com + Vision Art Forum.com (partial) + www.visitormotion.com + etracker + www.visn2.va.gov + US Department of Veterans Affairs + www.visn23.va.gov + US Department of Veterans Affairs + www.vispahost.com + Vispa (partial) + www.vispashop.com + Vispa (partial) + www.visual-paradigm.com + Visual Paradigm + www.visualisingadvocacy.org + Visualising Advocacy.org + www.vitalads.com + VitalAds (partial) + www.vitalmend.com + VitalMend.com (partial) + www.vitamindcouncil.org + Vitamin D Council + www.vitamintalent.com + Vitamin T + www.vivaciti.net + Vivaciti (partial) + www.viviscal.co.uk + Viviscal + www.vizzit.se + Vizzit.se + www.vkontakte.ru + VK (experimental new rule) + www.vlada.gov.sk + SlovakGoverment + www.vlagtwedde.nl + NL Overheid + www.vlissingen.nl + NL Overheid + www.vmail.me + Vmail.me + www.vn5socks.com + vn5socks.com + www.voa.va.gov + US Department of Veterans Affairs + www.vodafone.co.nz + Vodafone + www.vodafone.co.uk + Vodafone + www.vodafone.ie + Vodafone + www.voffka.com + Voffka (partial) + www.vofzpwh.com + Commission Junction + www.voices.com + Voices.com (partial) + www.voicestar.com + Marchex (partial) + www.voipuserportal.co.uk + Entanet (partial) + www.volatilesystems.com + Volatile Systems.com (partial) + www.volcanoecigs.com + Volcano eCigs + www.volgistics.com + Volgistics (partial) + www.volunteermatters.com + Volunteer Matters + www.vonage.ca + Vonage + www.vonage.co.uk + Vonage + www.vonage.com + Vonage + www.votervoice.net + voterVOICE + www.votesmart.org + Project Vote Smart + www.votewatch.eu + VoteWatch.eu + www.voucherexpress.co.uk + Hemmingway Marketing (partial) + www.vovici.com + Vovici.com (partial) + www.vox.com + Vox.com (false MCB) + www.voxility.com + Voxility.com + www.vpn4all.com + VPN4ALL + www.vpnreviewer.com + VPN Reviewer.com + www.vpsboard.com + vpsBoard.com + www.vr.org + Vr.org (partial) + www.vr.se + VR.se + www.vrijstellingoldtimer.nl + Vrijstelling Oldtimer + www.vsearch2.net + vsearch2.net + www.vtv.fi + Valtiontalouden tarkastusvirasto + www.vub.sk + Vub.sk + www.vue.com + Pearson (partial) + www.vulnscan.org + Vulnscan.org + www.vungle.com + Vungle (partial) + www.vz-nrw.de + Verbraucherzentrale Nordrhein-Westfalen + www.w-tune.com + Web Tune Factory + www.waarschuwingsdienst.nl + NL Overheid + www.waffles.fm + Waffles.fm + www.wageningen.nl + NL Overheid + www.wagner.edu + Wagner College + www.waindigo.org + Waindigo.org + www.waitrose.com + Waitrose.com (partial) + www.walderwyss.com + Walder Wyss.com + www.walkit.com + walkit.com + www.walthamforest.gov.uk + UK Local Government + www.walthers.com + Walthers + www.wargaming.com + Wargaming.net + www.warnerartists.com + Warner Artists + www.warrington.gov.uk + UK Local Government + www.wartstick.com + WartStick.com (false MCB) + www.water-challenge.com + Water-Challenge.com (partial) + www.waterfoxproject.org + Waterfox project.org + www.watkins.edu + Watkins.edu + www.watsi.org + Watsi.org + www.watson.ch + Watson.ch + www.wauland.de + Wauland.de + www.wavecon.de + WaveCon.de + www.wbginvestmentclimate.org + International Finance Corporation (partial) + www.wbs-law.de + Weilde Beuger Solmecke + www.wcas.nu + bit.ly vanity domains + www.wd2go.com + WD2go.com + www.wdr.de + Wdr.de + www.wdws.com + WDWS (partial) + www.wealthytheatre.org + Grand Rapids Community Media Center + www.wearechoosy.com + Argos (partial) + www.web-registry.com + web-registry.com + www.webassign.net + WebAssign + www.webbyawards.com + Webby Awards (partial) + www.webcampus.wilmu.edu + Wilmington University (partial) + www.webclaim.net + EDI Health Group + www.webcompat.com + webcompat.com + www.webcruiter.no + Webcruiter (partial) + www.webdevstudios.com + WebDevStudios (partial) + www.webfestglobal.com + Webfest Global + www.webfonts.fonts.com + Monotype Imaging (partial) + www.webforest.eu + Web Forest.eu + www.webfoundation.org + Web Foundation.org + www.webfusion-support.co.uk + webfusion (partial) + www.webfusion.co.uk + webfusion (partial) + www.webfwd.org + Mozilla + www.webgility.com + Webgility (partial) + www.webglobe.sk + Webglobe.sk + www.webhostingstuff.com + WebHostingStuff (partial) + www.webhostone.de + WebhostOne + www.webhungary.hu + Webhungary.hu + www.webinspector.com + Web Inspector + www.webmagazin.de + webmagazin.de (partial) + www.webonic.hu + Websupport_sk_cz_at_hu + www.webplatform.org + WebPlatform + www.webpower.nl + Web Power (partial) + www.webropolsurveys.com + Webropolsurveys.com + www.websitealive1.com + WebsiteAlive (partial) + www.websitealive10.com + WebsiteAlive (partial) + www.websitealive2.com + WebsiteAlive (partial) + www.websitealive3.com + WebsiteAlive (partial) + www.websitealive4.com + WebsiteAlive (partial) + www.websitealive5.com + WebsiteAlive (partial) + www.websitealive6.com + WebsiteAlive (partial) + www.websitealive7.com + WebsiteAlive (partial) + www.websitealive8.com + WebsiteAlive (partial) + www.websitealive9.com + WebsiteAlive (partial) + www.websitesettings.com + websitesettings.com + www.webspace4all.eu + Webspace4All + www.webstaurantstore.com + The Webstaurant Store (partial) + www.websupport.at + Websupport_sk_cz_at_hu + www.websupport.cz + Websupport_sk_cz_at_hu + www.websupport.sk + Websupport_sk_cz_at_hu + www.webtranslateit.com + Webtranslateit + www.webtraxs.com + Webtraxs.com (partial) + www.webwewant.org + WebWeWant.org + www.webzilla.com + WebZilla + www.weebly.com + Weebly (mixed content) + www.weechat.org + WeeChat.org + www.weekendjeweg.nl + Holidaybreak (partial) + www.weeklyplus.com + WeeklyPlus (partial) + www.weert.nl + NL Overheid + www.wefightcensorship.org + We Fight Censorship (partial) + www.wegoted.com + WeGotEd.com + www.weizmann.ac.il + Weizmann Institute of Science (partial) + www.welcomecottages.com + Wyndham (partial) + www.wellingborough.gov.uk + UK Local Government + www.welsh-country-cottages.co.uk + Wyndham (partial) + www.weltbild.ch + Weltbild.ch + www.wemineltc.com + Wemineltc.com + www.weoinvoice.com + weoInvoice + www.wepromise.eu + WePromise.EU + www.werkenbijdeoverheid.nl + NL Overheid + www.west-lindsey.gov.uk + UK Local Government + www.westconsincuhb.org + Westconsin Credit Union + www.westdevon.gov.uk + UK Local Government + www.westlandutrecht.nl + WestlandUtrecht Bank + www.westlandutrechtbank.nl + WestlandUtrecht Bank + www.westminster.gov.uk + UK Local Government + www.westoxon.gov.uk + UK Local Government + www.westsussex.gov.uk + UK Local Government + www.wetransfer.com + WeTransfer + www.whatimg.com + Whatimg.com + www.whatsmydns.net + Whats My DNS.net + www.whatsuccesstakes.com + Global Marketing Strategies (partial) + www.whispergifts.com + Whisper Gifts (partial) + www.whistleout.co.uk + WhistleOut (partial) + www.whistleout.com.au + WhistleOut (partial) + www.whitehothair.co.uk + White Hot Hair.co.uk (partial) + www.whms.com + WHMS-FM (partial) + www.wholesalelabels.com + Wholesale Labels.com (partial) + www.whonix.org + Whonix.org + www.whosampled.com + WhoSampled.com (partial) + www.wickedfiber.com + Wicked Fiber + www.wickedlasers.com + Wicked Lasers + www.wickr.com + Wickr.com + www.wierden.nl + NL Overheid + www.wigan.gov.uk + UK Local Government + www.wigglestatic.com + Wiggle (partial) + www.wijchen.nl + NL Overheid + www.wikileaksparty.org.au + Wikileaks Party (partial) + www.wikimedia.ca + Wikimedia + www.wikimediafoundation.org + Wikimedia + www.wikivs.com + Wikivs.com + www.wilhelm-gym.net + wilhelm-gym.net + www.wilmu.edu + Wilmington University (partial) + www.wimo.com + WiMo.com + www.winbond.com + Winbond.com + www.wincent.com + Wincent.com + www.wind.com.gr + Wind + www.windows.net + Windows.net + www.windowsitpro.com + Windows IT Pro (partial) + www.windowssecrets.com + Windows Secrets.com (partial) + www.windstreambusiness.com + Windstream Business + www.wingolog.org + wingolog.org + www.winhistory-forum.net + Winhistory Forum + www.winpcap.org + WinPcap + www.winsupersite.com + WinSuperSite.com (partial) + www.winswitch.org + Window Switch + www.winterswijk.nl + NL Overheid + www.winzip.com + WinZip.com (partial) + www.wipmania.com + WIPmania + www.wireedit.com + WireEdit.com + www.wirral.gov.uk + UK Local Government + www.wishlistgranted.com + Wishlist Granted.com + www.wishmich.org + Make-A-Wish Foundation of Michigan + www.wizards.com + Wizards of the Coast (partial) + www.wlfriends.org + Friends of WikiLeaks + www.wodc.nl + NL Overheid + www.wog.ch + World of Games + www.wolframcdn.com + Wolfram CDN.com + www.wolframcloud.com + Wolframcloud.com + www.wolframscience.com + Wolframscience.com + www.wolfsonmicro.com + Wolfson Microelectronics (partial) + www.wolverhampton.gov.uk + UK Local Government + www.womenonwaves.org + Womenonwaves.org + www.womenonweb.org + Women on Web + www.womensaid.ie + Women's Aid + www.womensexpova.com + Women Sex Pova.com (partial) + www.womenshealth.de + Womenshealth.de + www.womenshealthspecialists.org + Women's Health Specialists (partial) + www.wonga.com + Wonga.com + www.woodgreen.org.uk + Wood Green.org.uk (partial) + www.woothemes.com + WooThemes (partial) + www.wordcamp.org + WordCamp (partial) + www.wordentropy.org + Wordentropy.org + www.workplacegiving.co.uk + Workplace Giving + www.worldchamberdirectoryonline.com + World Chamber of Commerce Directory (partial) + www.worldfoodprize.org + The World Food Prize + www.worldforpets.com.au + World for Pets.com.au + www.worldhealth.net + Worldhealth.net + www.worldmarkbywyndham.com + Wyndham (partial) + www.worstpills.org + WorstPills.org + www.woz.ch + Woz.ch + www.wp.me + WP.me + www.wpacracker.com + CloudCracker + www.wpi.edu + Worcester Polytechnic Institute (partial) + www.wpstartbox.com + StartBox (partial) + www.wpx.ne.jp + wpX.ne.jp + www.writelatex.com + writeLaTeX.com + www.wtfuzz.com + WTFuzz.com + www.wtop.com + Wtop.com (partial) + www.wtpx-telekom.com + Deutsche Telekom + www.wunderlist.com + Wunderlist (partial) + www.wupaymentsolutions.com + Western Union (partial) + www.wustlconnections.com + Washington University in St. Louis Alumni Association + www.wwdomains.com + Wild West Domains + www.wwte11.com + WWTE (partial) + www.wwte12.com + WWTE (partial) + www.wwte13.com + WWTE (partial) + www.wwte14.com + WWTE (partial) + www.wwte2.com + WWTE (partial) + www.wwte3.com + WWTE (partial) + www.wykop.pl + Wykop.pl (partial) + www.wyndhamrentals.com + Wyndham (partial) + www.wyzant.com + WyzAnt (partial) + www.wyzerme.com + WyzerMe + www.wza.us + wza.us + www.xagasoft.com + Xagasoft + www.xav.com + xav.com + www.xavisys.com + Xavisys + www.xcat.nl + xCAT.nl + www.xda-developers.com + XDA-Developers.com (false MCB) + www.xemail.de + Xemail.de + www.xen-orchestra.com + Xen-Orchestra.com + www.xenforo.com + XenForo.com (partial) + www.xenvps.com + Xen VPS.com + www.xetum.com + Xetum.com (partial) + www.xgaming.com + XGaming + www.xhamster.biz + Alcuda (partial) + www.xine-project.org + xine-project.org + www.xiscosoft.* + Xiscosoft.es + www.xiscosoft.com.es + Xiscosoft.es + www.xmind.net + XMind.net (partial) + www.xmos.com + XMOS (partial) + www.xoskins.com + XO Skins + www.xpd.se + XPD.se + www.xperiastudio.com + Xperia Studio (partial) + www.xperiencedays.com + Xperience Days + www.xpra.org + Xpra + www.xprize.org + X PRIZE Foundation (partial) + www.xsens.com + Xsens.com (partial) + www.xserver.*.jp + Xserver (partial) + www.xservers.ro + xServers + www.xt-commerce.com + xt:Commerce (partial) + www.xtube.com + Xtube.com + www.xumaa.com + Xumaa.com (partial) + www.yadg.cc + YADG.cc + www.yaha.no + Yaha + www.yahoo-help.jp + Yahoo! Japan (partial) + www.yakala.co + Yakala.co + www.yaler.net + Yaler.net (partial) + www.yamgo.com + Yamgo.com + www.yceml.net + Commission Junction + www.yeahtv.com + YEAH! + www.yeswescan.org + Public.Resource.Org + www.ylilauta.org + Ylilauta + www.ymail.com + Yahoo! (partial) + www.ymcmbofficial.com + YMCMB Official Merch + www.ymlp.com + Your Mailing List Provider + www.york.ac.uk + University of York + www.york.cuny.edu + York College of New York + www.yorkfitness.com + York Fitness + www.yougotposted.com + You Got Posted + www.youhavedownloaded.com + You Have Downloaded + www.youm7.com + Youm7.com (partial) + www.youngrewiredstate.org + Young Rewired State.org + www.your-file-system.com + Your-File-System.com + www.your-freedom.net + Your Freedom + www.yourmailinglistprovider.com + Your Mailing List Provider + www.yourmembership.com + YourMembership.com + www.yoursupportservices.co.uk + Your Support Services.co.uk + www.yourvideofile.org + Yourvideofile.org + www.yousendit.com + YouSendIt + www.youtube-nocookie.com + YouTube + www.youtube.ae + YouTube + www.youtube.at + YouTube + www.youtube.ba + YouTube + www.youtube.be + YouTube + www.youtube.bg + YouTube + www.youtube.bh + YouTube + www.youtube.ca + YouTube + www.youtube.ch + YouTube + www.youtube.cl + YouTube + www.youtube.co + YouTube + www.youtube.co.ae + YouTube + www.youtube.co.at + YouTube + www.youtube.co.hu + YouTube + www.youtube.co.id + YouTube + www.youtube.co.il + YouTube + www.youtube.co.in + YouTube + www.youtube.co.ke + YouTube + www.youtube.co.kr + YouTube + www.youtube.co.ma + YouTube + www.youtube.co.nz + YouTube + www.youtube.co.th + YouTube + www.youtube.co.ug + YouTube + www.youtube.co.uk + YouTube + www.youtube.co.za + YouTube + www.youtube.com.ar + YouTube + www.youtube.com.au + YouTube + www.youtube.com.bh + YouTube + www.youtube.com.br + YouTube + www.youtube.com.co + YouTube + www.youtube.com.ee + YouTube + www.youtube.com.eg + YouTube + www.youtube.com.es + YouTube + www.youtube.com.gh + YouTube + www.youtube.com.gr + YouTube + www.youtube.com.hk + YouTube + www.youtube.com.hr + YouTube + www.youtube.com.jo + YouTube + www.youtube.com.kw + YouTube + www.youtube.com.lb + YouTube + www.youtube.com.lv + YouTube + www.youtube.com.mk + YouTube + www.youtube.com.mx + YouTube + www.youtube.com.my + YouTube + www.youtube.com.ng + YouTube + www.youtube.com.om + YouTube + www.youtube.com.pe + YouTube + www.youtube.com.ph + YouTube + www.youtube.com.pt + YouTube + www.youtube.com.qa + YouTube + www.youtube.com.ro + YouTube + www.youtube.com.sa + YouTube + www.youtube.com.sg + YouTube + www.youtube.com.tn + YouTube + www.youtube.com.tr + YouTube + www.youtube.com.tw + YouTube + www.youtube.com.ua + YouTube + www.youtube.com.ye + YouTube + www.youtube.cz + YouTube + www.youtube.de + YouTube + www.youtube.dk + YouTube + www.youtube.dz + YouTube + www.youtube.ee + YouTube + www.youtube.es + YouTube + www.youtube.fi + YouTube + www.youtube.fr + YouTube + www.youtube.gr + YouTube + www.youtube.hk + YouTube + www.youtube.hr + YouTube + www.youtube.hu + YouTube + www.youtube.ie + YouTube + www.youtube.in + YouTube + www.youtube.it + YouTube + www.youtube.jo + YouTube + www.youtube.kr + YouTube + www.youtube.lt + YouTube + www.youtube.lv + YouTube + www.youtube.ma + YouTube + www.youtube.me + YouTube + www.youtube.mk + YouTube + www.youtube.mx + YouTube + www.youtube.my + YouTube + www.youtube.ng + YouTube + www.youtube.nl + YouTube + www.youtube.no + YouTube + www.youtube.pe + YouTube + www.youtube.ph + YouTube + www.youtube.pl + YouTube + www.youtube.pr + YouTube + www.youtube.pt + YouTube + www.youtube.qa + YouTube + www.youtube.ro + YouTube + www.youtube.rs + YouTube + www.youtube.ru + YouTube + www.youtube.sa + YouTube + www.youtube.se + YouTube + www.youtube.sg + YouTube + www.youtube.si + YouTube + www.youtube.sk + YouTube + www.youtube.sn + YouTube + www.youtube.tn + YouTube + www.youtube.ua + YouTube + www.youtube.ug + YouTube + www.youtube.ye + YouTube + www.youvisit.com + YouVisit.com + www.ypassociation.org + Yellow Pages IMA (partial) + www.ysubookstore.com + Youngstown State University Bookstore + www.yt-dl.org + yt-dl.org + www.yts.re + Yts.re + www.yu.edu + Yeshiva University + www.yubico.com + Yubico + www.yuilibrary.com + YUI Library + www.yuri.org.uk + Yuri.org.uk + www.zakird.com + Zakir D.com + www.zaltbommel.nl + NL Overheid + www.zandvoort.nl + NL Overheid + www.zapier.com + Zapier.com + www.zazzle.com + Zazzle (partial) + www.zb45.nl + ZB45.nl + www.zd.net + bit.ly vanity domains + www.zdmcirc.com + ZDmcirc.com + www.zdtronic.com + ZDTronic + www.zeeland.nl + NL Overheid + www.zeist.nl + NL Overheid + www.zen-cart.com + Zen Cart (partial) + www.zerobin.net + ZeroBin.net + www.zerodayinitiative.com + Zero Day Initiative.com (partial) + www.zeromq.org + zeromq (partial) + www.zerotier.com + ZeroTier.com + www.zerties.org + zerties.org + www.zeuscat.com + zeuscat.com + www.zh.greatfire.org + GreatFire.org + www.ziedot.lv + Ziedot.lv + www.zillowstatic.com + Zillow (partial) + www.zimbrablog.com + Zimbra (false MCB) + www.ziplist.com + Ziplist.com + www.zlatkovic.com + Zlatkovic.com + www.zlavadna.sk + Zlavadna.sk + www.zmap.io + ZMap.io + www.zohoblogs.com + Zoho (partial) + www.zohocorp.com + Zoho (partial) + www.zoink.it + EZTV + www.zoklet.net + Zoklet.net + www.zombeewatch.org + Zombie Watch + www.zoneedit.com + ZoneEdit (partial) + www.zonomi.com + Zonomi + www.zooko.com + Zooko.com + www.zooniverse.org + Zooniverse + www.zoosk.com + Zoosk.com + www.zopa.com + Zopa (partial) + www.zoum.ca + ZOUM + www.zscaler.com + Zscaler + www.zueriwieneu.ch + Zueri wie neu.ch + www.zuno.cz + ZUNO_BANK_AG + www.zuno.eu + ZUNO_BANK_AG + www.zuno.sk + ZUNO_BANK_AG + www.zutphen.nl + NL Overheid + www.zwame.pt + Zwame.pt + www.zwiebelfreunde.de + Zwiebelfreunde.de + www.zwijndrecht.nl + NL Overheid + www.zxidp.org + ZXIDP.org + www.zy0d0x.com + Zy0d0x.com + www.zylon.net + Zylon.net (false MCB) + www.zyngaplayersupport.com + Zynga Player Support.com + www01.tracer.jp + NTTCom + www1.handelsbanken.fi + handelsbanken.fi (partial) + www1.ibdcd.com + Investors.com (partial) + www1.lansforsakringar.se + Lansforsakringar.se + www1.livenation.* + Live Nation Entertainment (partial) + www1.livenation.co.* + Live Nation Entertainment (partial) + www1.netflix.com + Netflix (partial) + www1.pollg.com + Harris Interactive (partial) + www1.va.gov + US Department of Veterans Affairs + www1.youm7.com + Youm7.com (partial) + www2.adm.ku.dk + University of Copenhagen (partial) + www2.blocket.se + Blocket.se + www2.dastelefonbuch.de + Dastelefonbuch.de + www2.edi7.lu + EDI7.lu (partial) + www2.handelsbanken.fi + handelsbanken.fi (partial) + www2.hgst.com + HGST.com (partial) + www2.lse.ac.uk + London School of Economics (partial) + www2.nationalreview.com + NationalReview.com (partial) + www2.netflix.com + Netflix (partial) + www2.seetickets.com + See Group (partial) + www2.sites.uidaho.edu + University of Idaho (partial) + www2.toyota.es + Toyota.es (partial) + www2.whipplehill.com + WilliamHill (partial) + www2.youm7.com + Youm7.com (partial) + www3.formassembly.com + FormAssembly.com (partial) + www3.hmv.co.uk + HMV + www3.labcorp.com + LabCorp + www3.netflix.com + Netflix (partial) + www3.truecorp.co.th + True Corporation + www4.labcorp.com + LabCorp + www4.uwm.edu + University of Wisconsin–Milwaukee (partial) + www4.va.gov + US Department of Veterans Affairs + www9.handelsbanken.fi + handelsbanken.fi (partial) + wwwcdn.channel5.com + Channel 5 + wwwmail.urz.uni-heidelberg.de + wwwmail_urz_uni-heidelberg.de + wwwn.cdc.gov + US government (partial) + wwws.loc.gov + US government (partial) + wwws.whitehouse.gov + US government (partial) + wykop.pl + Wykop.pl (partial) + wyndham.com + Wyndham (partial) + wyndhamrentals.com + Wyndham (partial) + wyzant.com + WyzAnt (partial) + wyzerme.com + WyzerMe + wz2100.net + Warzone2100 (CAcert) + wza.us + wza.us + x-info.org + x-info.org + x.translateth.is + TranslateThi.is (partial) + x1.xingassets.com + Xing + x10hosting.com + x10Hosting (partial) + x14.eu + VIPserv.org + xagasoft.com + Xagasoft + xamarin.com + Xamarin.com (partial) + xav.com + xav.com + xavisys.com + Xavisys + xbetsport.com + 1xbet.com + xcat.nl + xCAT.nl + xda-developers.com + XDA Developers (partial) + xe.com + XE (partial) + xelerance.com + Xelerence.com + xemail.de + Xemail.de + xen-orchestra.com + Xen-Orchestra.com + xenforo.com + XenForo.com (partial) + xenobite.eu + Xenobite.eu + xenogamers.org + Xeno Gamers.org + xenvps.com + Xen VPS.com + xetum.com + Xetum.com (partial) + xfce-help.org + openDesktop.org + xfce-look.org + openDesktop.org + xfire.com + Xfire (partial) + xgaming.com + XGaming + xhamster.biz + Alcuda (partial) + xignite.com + Xignite (partial) + xine-project.org + xine-project.org + xing.com + Xing + xiph.org + Xiph.org + xiscosoft.* + Xiscosoft.es + xiscosoft.com.es + Xiscosoft.es + xkcd.com + xkcd + xkcd.org + xkcd + xm.com + XM.com + xmarks.com + Xmarks + xmind.net + XMind.net (partial) + xmission.com + XMission (partial) + xmms2.org + XMMS2.org + xmos.com + XMOS (partial) + xmpp.net + XMPP.net + xmpp.org + XMPP.org (partial) + xoskins.com + XO Skins + xparkmedia.com + Xparkmedia.com + xpd.se + XPD.se + xperiastudio.com + Xperia Studio (partial) + xperiencedays.com + Xperience Days + xpiconly.com + XPic only + xplosion.de + xplosion interactive + xplr.com + Xplr + xpra.org + Xpra + xprize.org + X PRIZE Foundation (partial) + xrel.to + xREL.to (partial) + xs4all.nl + XS4ALL (partial) + xsens.com + Xsens.com (partial) + xserver.*.jp + Xserver (partial) + xservers.ro + xServers + xt-commerce.com + xt:Commerce (partial) + xtgem.com + XtGem.com (partial) + xtube.com + Xtube.com + xtwo.ne.jp + Xtwo.ne.jp (partial) + xumaa.com + Xumaa.com (partial) + xxxbunker.com + xxxbunker.com (partial) + ya.ru + Yandex + yabumi.cc + Yabumi.cc + yadg.cc + YADG.cc + yagina.com + Yagina.com + yaha.no + Yaha + yahoo.com + Yahoo! (partial) + yahooapis.com + Yahoo APIs (partial) + yakala.co + Yakala.co + yaler.net + Yaler.net (partial) + yamgo.com + Yamgo.com + yammer.com + Yammer + yandex.net + Yandex + yandex.ru + Yandex + yannick.net + Yannick.net + yeahtv.com + YEAH! + yed24hr.com + yed24hr.com + yellowbot.com + YellowBot.com (partial) + yellowpagesoptout.com + Yellow Pages IMA (partial) + yelp.com + Yelp (partial) + yemeksepeti.com + Yemeksepeti + yespic69.com + yespic69.com + yeswescan.org + Public.Resource.Org + yfrog.com + yfrog + ygnition.com + Ygnition (partial) + yho.com + Yho.com + yhoo.it + Yahoo! (partial) + yify-torrents.com + YIFY Torrents + yify-torrents.im + YIFY Torrents + ylilauta.org + Ylilauta + ymail.com + Yahoo! (partial) + ymcastlouis.org + YMCA of Greater St. Louis + ymcmbofficial.com + YMCMB Official Merch + ymlp.com + Your Mailing List Provider + yoctoproject.org + Yocto Project.org (partial) + yopto.com + Yopto.com (partial) + york.cuny.edu + York College of New York + yorkfitness.com + York Fitness + you.38degrees.org.uk + 38degrees + yougotposted.com + You Got Posted + youhavedownloaded.com + You Have Downloaded + youm7.com + Youm7.com (partial) + youngrewiredstate.org + Young Rewired State.org + younited.com + younited.com (partial) + your-file-system.com + Your-File-System.com + your-freedom.net + Your Freedom + your.trash.net + trash.net (partial) + yourbittorrent.com + YourBittorrent + yourdatelink.com + Your Date Link + yourfone.de + yourfone.de + yourhosting.nl + Yourhosting + yourlocaledge.com + Your Local Edge.com + yourmailinglistprovider.com + Your Mailing List Provider + yourmembership.com + YourMembership.com + yourmoney.ch + Schweizer Kantonalbanken + yoursupportservices.co.uk + Your Support Services.co.uk + yourvideofile.org + Yourvideofile.org + yousendit.com + YouSendIt + youtu.be + YouTube + youtube-nocookie.com + YouTube + youtube.ae + YouTube + youtube.at + YouTube + youtube.ba + YouTube + youtube.be + YouTube + youtube.bg + YouTube + youtube.bh + YouTube + youtube.ca + YouTube + youtube.ch + YouTube + youtube.cl + YouTube + youtube.co + YouTube + youtube.co.ae + YouTube + youtube.co.at + YouTube + youtube.co.hu + YouTube + youtube.co.id + YouTube + youtube.co.il + YouTube + youtube.co.in + YouTube + youtube.co.ke + YouTube + youtube.co.kr + YouTube + youtube.co.ma + YouTube + youtube.co.nz + YouTube + youtube.co.th + YouTube + youtube.co.ug + YouTube + youtube.co.uk + YouTube + youtube.co.za + YouTube + youtube.com + YouTube + youtube.com.ar + YouTube + youtube.com.au + YouTube + youtube.com.bh + YouTube + youtube.com.br + YouTube + youtube.com.co + YouTube + youtube.com.ee + YouTube + youtube.com.eg + YouTube + youtube.com.es + YouTube + youtube.com.gh + YouTube + youtube.com.gr + YouTube + youtube.com.hk + YouTube + youtube.com.hr + YouTube + youtube.com.jo + YouTube + youtube.com.kw + YouTube + youtube.com.lb + YouTube + youtube.com.lv + YouTube + youtube.com.mk + YouTube + youtube.com.mx + YouTube + youtube.com.my + YouTube + youtube.com.ng + YouTube + youtube.com.om + YouTube + youtube.com.pe + YouTube + youtube.com.ph + YouTube + youtube.com.pt + YouTube + youtube.com.qa + YouTube + youtube.com.ro + YouTube + youtube.com.sa + YouTube + youtube.com.sg + YouTube + youtube.com.tn + YouTube + youtube.com.tr + YouTube + youtube.com.tw + YouTube + youtube.com.ua + YouTube + youtube.com.ye + YouTube + youtube.cz + YouTube + youtube.de + YouTube + youtube.dk + YouTube + youtube.dz + YouTube + youtube.ee + YouTube + youtube.es + YouTube + youtube.fi + YouTube + youtube.fr + YouTube + youtube.gr + YouTube + youtube.hk + YouTube + youtube.hr + YouTube + youtube.hu + YouTube + youtube.ie + YouTube + youtube.in + YouTube + youtube.it + YouTube + youtube.jo + YouTube + youtube.kr + YouTube + youtube.lt + YouTube + youtube.lv + YouTube + youtube.ma + YouTube + youtube.me + YouTube + youtube.mk + YouTube + youtube.mx + YouTube + youtube.my + YouTube + youtube.ng + YouTube + youtube.nl + YouTube + youtube.no + YouTube + youtube.pe + YouTube + youtube.ph + YouTube + youtube.pl + YouTube + youtube.pr + YouTube + youtube.pt + YouTube + youtube.qa + YouTube + youtube.ro + YouTube + youtube.rs + YouTube + youtube.ru + YouTube + youtube.sa + YouTube + youtube.se + YouTube + youtube.sg + YouTube + youtube.si + YouTube + youtube.sk + YouTube + youtube.sn + YouTube + youtube.tn + YouTube + youtube.ua + YouTube + youtube.ug + YouTube + youtube.ye + YouTube + youversion.com + YouVersion + youvisit.com + YouVisit.com + ypassociation.org + Yellow Pages IMA (partial) + ysubookstore.com + Youngstown State University Bookstore + yt-dl.org + yt-dl.org + yts.re + Yts.re + yu.edu + Yeshiva University + yubico.com + Yubico + yuilibrary.com + YUI Library + z.mozest.com + Mozest + zacks.com + Zacks Investment Research (partial) + zadarastorage.com + Zadara Storage (partial) + zaehlwerk.net + zaehlwerk.net + zakird.com + Zakir D.com + zaltbommel.nl + NL Overheid + zamzar.com + Zamzar.com (partial) + zandvoort.nl + NL Overheid + zanesvilletimesrecorder.com + Zanesville Times Recorder + zanox.com + Zanox (partial) + zapier.com + Zapier.com + zappos.com + Zappos (partial) + zaption.com + Zaption + zapunited.com + zapunited (partial) + zareason.com + Zareason.com + zarkzork.com + Zark Zork.com + zataz.com + Zataz (partial) + zazzle.com + Zazzle (partial) + zb45.nl + ZB45.nl + zcomm.org + ZComm.org + zd.net + bit.ly vanity domains + zdbb.net + Ziff Davis (partial) + zdmcirc.com + ZDmcirc.com + zdnet.com.au + ZDNet (partial) + zdtronic.com + ZDTronic + zeedpic69.com + zeedpic69.com + zeeland.nl + NL Overheid + zeist.nl + NL Overheid + zen-cart.com + Zen Cart (partial) + zen.co.uk + Zen Internet (partial) + zencoder.com + Zencoder (partial) + zend.com + Zend (partial) + zendesk.com + Zendesk (partial) + zendition.net + Zendition.net + zendylabs.com + Zendy Labs + zenfolio.com + Zenfolio (partial) + zeringo.com + Zeringo + zerobin.net + ZeroBin.net + zeroblock.com + ZeroBlock.com + zerodayinitiative.com + Zero Day Initiative.com (partial) + zeromq.org + zeromq (partial) + zerorobotics.org + Zero Robotics + zerotier.com + ZeroTier.com + zeroxx.nl + ZeroXX + zerties.org + zerties.org + zerve.com + Zerve + zerzar.com + Zerzar + zetetic.net + Zetetic.net + zeuscat.com + zeuscat.com + zh.ch + Schweizer Regierung + zh.greatfire.org + GreatFire.org + ziedot.lv + Ziedot.lv + zillow.com + Zillow (partial) + zillowstatic.com + Zillow (partial) + zimbra.com + Zimbra (false MCB) + zimbrablog.com + Zimbra (false MCB) + zipcar.com + Zipcar + zipcloud.com + Just Develop It (partial) + ziplist.com + Ziplist.com + zissousecure.com + zissousecure.com + zkb.ch + Schweizer Kantonalbanken + zlatkovic.com + Zlatkovic.com + zlavadna.sk + Zlavadna.sk + zlavy.odpadnes.sk + Zlavy.odpadnes.sk + zmanda.com + Zmanda (partial) + zmap.io + ZMap.io + znaturalfoods.com + Z Natural Foods.com + zoho.com + Zoho (partial) + zoho.jp + Zoho.jp (partial) + zohoblogs.com + Zoho (partial) + zohocorp.com + Zoho (partial) + zoink.it + EZTV + zoklet.net + Zoklet.net + zomato.com + Zomato.com + zombeewatch.org + Zombie Watch + zona.t-com.sk + Telekom.sk + zona.telecom.sk + Telekom.sk + zona.telekom.sk + Telekom.sk + zone-h.org + Zone-H.org + zoneedit.com + ZoneEdit (partial) + zoner.fi + Zoner.fi + zonomi.com + Zonomi + zonza.tv + ZONZA + zoo24.de + Zoo24.de + zooko.com + Zooko.com + zooku.ro + Zooku + zoomerang.com + Zoomerang + zooniverse.org + Zooniverse + zoosk.com + Zoosk.com + zopa.com + Zopa (partial) + zopim.com + Zopim + zorpia.com + Zorpia (false MCB) + zorrovpn.com + ZorroVPN.com + zotero.org + Zotero + zoum.ca + ZOUM + zpchips.com + ZPChips.com + zsl.org + Zoological Society of London (partial) + ztunnel.com + ZTunnel + zugaina.org + Zugaina (partial) + zugerkb.ch + Schweizer Kantonalbanken + zuhah.com + Zuhah.com + zumzi.* + Zumzi (partial) + zuno.cz + ZUNO_BANK_AG + zuno.eu + ZUNO_BANK_AG + zuno.sk + ZUNO_BANK_AG + zuse-crew.de + Zuse-Crew.de + zutphen.nl + NL Overheid + zwame.pt + Zwame.pt + zwiebelfreunde.de + Zwiebelfreunde.de + zwijndrecht.nl + NL Overheid + zxidp.org + ZXIDP.org + zy0d0x.com + Zy0d0x.com + zylon.net + Zylon.net (false MCB) + zynga.com + Zynga (partial) + zyngaplayersupport.com + Zynga Player Support.com + zzounds.com + zZounds.com + + diff --git a/https-everywhere_to_plist.rb b/https-everywhere_to_plist.rb new file mode 100644 index 0000000..b04bd21 --- /dev/null +++ b/https-everywhere_to_plist.rb @@ -0,0 +1,48 @@ +#!/usr/bin/ruby +# +# convert all HTTPS Everywhere XML rule files into one big rules hash and write +# it out as a plist, as well as a standalone hash of target URLs -> rule names +# to another plist +# + +require "active_support/core_ext/hash/conversions" +require "plist" + +rules = {} +targets = {} + +Dir.glob(File.dirname(__FILE__) + +"/https-everywhere/src/chrome/content/rules/*.xml").each do |f| + hash = Hash.from_xml(File.read(f)) + + raise "no ruleset" if !hash["ruleset"] + + if hash["ruleset"]["default_off"] + next # XXX: should we store these? + end + + raise "conflict on #{f}" if rules[hash["ruleset"]["name"]] + + rules[hash["ruleset"]["name"]] = hash + + hash["ruleset"]["target"].each do |target| + if !target.is_a?(Hash) + # why do some of these get converted into an array? + if target.length != 2 || target[0] != "host" + puts f + raise target.inspect + end + + target = { target[0] => target[1] } + end + + if targets[target["host"][1]] + raise "rules already exist for #{target["host"]}" + end + + targets[target["host"]] = hash["ruleset"]["name"] + end +end + +File.write("https-everywhere_targets.plist", targets.to_plist) +File.write("https-everywhere_rules.plist", rules.to_plist)