OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title>Interstitials</title> | 3 <title>Interstitials</title> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <h2>Choose an interstitial<h2> | 6 <h2>Choose an interstitial</h2> |
7 <h3>SSL</h3> | 7 <div> |
Bernhard Bauer
2015/06/24 08:00:12
You don't need this div; you only need one around
Bhanu Dev
2015/06/24 17:30:28
Done.
| |
8 <a href='ssl'>example.com</a><br> | 8 <h3>SSL</h3> |
9 <a href='ssl?url=https://google.com'>SSL (google.com)</a><br> | 9 <div> |
10 <a href='ssl?overridable=1&strict_enforcement=0'>example.com (Overridable)</a> | 10 <a href='ssl'>example.com</a> |
11 <br> | 11 </div> |
12 <a href='ssl?clock_manipulation=2'>Clock is ahead</a><br> | 12 <div> |
13 <a href='ssl?clock_manipulation=-2'>Clock is behind</a><br> | 13 <a href='ssl?url=https://google.com'>SSL (google.com)</a> |
14 <br><br> | 14 </div> |
15 <h3>SafeBrowsing</h3> | 15 <div> |
16 <a href='safebrowsing?type=malware'>Malware</a><br> | 16 <a href='ssl?overridable=1&strict_enforcement=0'> |
17 <a href='safebrowsing?type=phishing'>Phishing</a><br> | 17 example.com (Overridable) |
18 <a href='safebrowsing?type=clientside_malware'>Client Side Malware</a><br> | 18 </a> |
19 <a href='safebrowsing?type=clientside_phishing'>Client Side Phishing</a><br> | 19 </div> |
20 <div> | |
21 <a href='ssl?clock_manipulation=2'>Clock is ahead</a> | |
22 </div> | |
23 <div> | |
24 <a href='ssl?clock_manipulation=-2'>Clock is behind</a> | |
25 </div> | |
26 </div> | |
27 <div> | |
28 <h3>SafeBrowsing</h3> | |
29 <div> | |
30 <a href='safebrowsing?type=malware'>Malware</a> | |
31 </div> | |
32 <div> | |
33 <a href='safebrowsing?type=phishing'>Phishing</a> | |
34 </div> | |
35 <div> | |
36 <a href='safebrowsing?type=clientside_malware'>Client Side Malware</a> | |
37 </div> | |
38 <div> | |
39 <a href='safebrowsing?type=clientside_phishing'>Client Side Phishing</a> | |
40 </div> | |
41 </div> | |
42 <div> | |
43 <h3>Captive Portal</h3> | |
44 <div> | |
45 <a href='captiveportal'>google.com (Captive Portal, Non-Wifi)</a> | |
46 </div> | |
47 <div> | |
48 <a href='captiveportal?is_wifi=1'> | |
49 google.com (Captive Portal, on some Wifi) | |
50 </a> | |
51 </div> | |
52 <div> | |
53 <a href='captiveportal?is_wifi=1&wifi_name=CoffeeShopWifi'> | |
54 google.com (CaptivePortal, on wifi "CoffeeShopWifi") | |
55 </a> | |
56 </div> | |
57 </div> | |
20 </body> | 58 </body> |
21 </html> | 59 </html> |
OLD | NEW |