Upload HMGC Domain FF.txt
Browse files- HMGC Domain FF.txt +165 -0
HMGC Domain FF.txt
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
HMGC Domain FF
|
| 2 |
+
|
| 3 |
+
//=========================================================================
|
| 4 |
+
// DOMAINFLAGS.TXT
|
| 5 |
+
//
|
| 6 |
+
// This file allows control of how DG Web Inspection Proxy
|
| 7 |
+
// handles HTTP and HTTPS requests made to specific web servers
|
| 8 |
+
//
|
| 9 |
+
// Current Domain Flags Definition
|
| 10 |
+
// (Version 7.8.1)
|
| 11 |
+
//
|
| 12 |
+
//
|
| 13 |
+
// Control Flag Name Parameter
|
| 14 |
+
// ------------------------ ---------
|
| 15 |
+
// SKIP INSPECTION SK
|
| 16 |
+
// SKIP INSPECTION if TLS TLSK
|
| 17 |
+
// USE BROWSER CACHING CACHE
|
| 18 |
+
// DISABLE BROWSER CACHING NCACHE
|
| 19 |
+
// SKIP HTTPS SITES WHEN ACCESSED BY SAFARI TLSK_SAFARI
|
| 20 |
+
// SKIP HTTPS SITES WHEN ACCESSED BY CHROME TLSK_CHROME
|
| 21 |
+
// SKIP HTTP TRAFFIC AT THE TCP LEVEL HTTP_TCPSK
|
| 22 |
+
//
|
| 23 |
+
// NOTES:
|
| 24 |
+
// NCACHE is useful if the caching is disabled globally.
|
| 25 |
+
// If NCACHE and CACHE are both specified on the same line, NCACHE takes precedence.
|
| 26 |
+
// If SK or TLSK is specified all other processing is skipped. That includes CACHE and NCACHE.
|
| 27 |
+
//
|
| 28 |
+
// You can add a line to this file for each domain or IP address (range)
|
| 29 |
+
// that you need special handling for. Each line can contain either a
|
| 30 |
+
// domain entry or an IP subnet entry.
|
| 31 |
+
//
|
| 32 |
+
// Examples:
|
| 33 |
+
|
| 34 |
+
// example.com,SK //<-- SKIP inspection of requests to example.com
|
| 35 |
+
// *.example.com,SK //<-- SKIP inspection of requests to immediate subdomains of example.com
|
| 36 |
+
// **.example.com,SK //<-- SKIP inspection of requests to all subdomains of example.com
|
| 37 |
+
// 10.10.0.0/16,SK //<-- SKIP inspection of requests to the 10.10.0.0/16 network
|
| 38 |
+
// 10.20.10.1,SK //<-- SKIP inspection of requests to the server at 10.20.10.1
|
| 39 |
+
|
| 40 |
+
// Domain wildcard syntax is designed to mimic directory glob syntax.
|
| 41 |
+
// It is not a full regular expression syntax.
|
| 42 |
+
// The following meta-characters are supported:
|
| 43 |
+
// • “*” will match any character except “.”
|
| 44 |
+
// • “**” will match any character including “.”
|
| 45 |
+
// • “?” will match a single character
|
| 46 |
+
// • “[]” can be used to specify a character match list. As an example [ab] will match a or b but will not match c
|
| 47 |
+
// • “[!]” can be used to specify a negative character match list. As an example [!ab] will not match a or b but will match c
|
| 48 |
+
// • {} can be used to specify comma separated pattern alternatives. For example {ab,de} will match ab or de
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
// Ad networks
|
| 52 |
+
secure.adnxs.com,SK
|
| 53 |
+
as-*.casalemedia.com,SK
|
| 54 |
+
logx.optimizely.com,SK
|
| 55 |
+
fastlane.rubiconproject.com,SK
|
| 56 |
+
tps*.doubleverify.com,SK
|
| 57 |
+
timeinc-*.openx.net,SK
|
| 58 |
+
ads.adaptv.advertising.com,SK
|
| 59 |
+
autoway.hmc.co.kr,SK+NCACHE+TLSK
|
| 60 |
+
|
| 61 |
+
// Microsoft website for AD FS
|
| 62 |
+
login.microsoftonline.com,SK
|
| 63 |
+
// Single Sign On sites
|
| 64 |
+
sso.teamviewer.com,SK
|
| 65 |
+
idp.blackberry.com,SK
|
| 66 |
+
pki.entitlement.siemens.com,SK
|
| 67 |
+
|
| 68 |
+
// Apple websites with certificate checks on Safari Browser
|
| 69 |
+
safari-extensions.apple.com,TLSK_SAFARI
|
| 70 |
+
icloud.com,TLSK_SAFARI
|
| 71 |
+
setup.icloud.com,TLSK_SAFARI
|
| 72 |
+
edge.icloud.com,TLSK_SAFARI
|
| 73 |
+
*pushws.icloud.com,TLSK_SAFARI
|
| 74 |
+
*contactsws.icloud.com,TLSK_SAFARI
|
| 75 |
+
feedbackws.icloud.com,TLSK_SAFARI
|
| 76 |
+
*keyvalueservice.icloud.com,TLSK_SAFARI
|
| 77 |
+
idmsa.apple.com,TLSK_SAFARI
|
| 78 |
+
**.apple.com,TLSK_SAFARI
|
| 79 |
+
|
| 80 |
+
// Sales Force caches the case files, the NCACHE is necessary to override the caching
|
| 81 |
+
// if logging/blocking NTDs is desired.
|
| 82 |
+
**.force.com,NCACHE
|
| 83 |
+
|
| 84 |
+
// dropbox (and others) use cache-control headers for downloaded contents, the NCACHE is necessary
|
| 85 |
+
// to override if logging/blocking of NTDs is desired.
|
| 86 |
+
**.dl.dropboxusercontent.com,NCACHE
|
| 87 |
+
web.opendrive.com,NCACHE
|
| 88 |
+
mail-attachment.googleusercontent.com,NCACHE
|
| 89 |
+
|
| 90 |
+
//chrome remote desktop
|
| 91 |
+
instantmessaging-pa.clients6.google.com,TLSK_CHROME
|
| 92 |
+
|
| 93 |
+
//Outlook
|
| 94 |
+
api.aadrm.com,SK
|
| 95 |
+
|
| 96 |
+
// Push Notifications are often implemented by FCM.
|
| 97 |
+
// Fixes the case when push notifications are not appearing
|
| 98 |
+
mtalk.google.com,SK
|
| 99 |
+
|
| 100 |
+
//SA-38414, Online commerce
|
| 101 |
+
cc.zdtc.app,SK
|
| 102 |
+
|
| 103 |
+
// 여기서부터 HMGC거 추가됨
|
| 104 |
+
|
| 105 |
+
//Autoever
|
| 106 |
+
autoway.hmc.co.kr,SK+NCACHE+TLSK
|
| 107 |
+
|
| 108 |
+
//Groupware(Autoway)
|
| 109 |
+
autowaysso.hyundai.net,SK+NCACHE+TLSK
|
| 110 |
+
autoway.hyundai.net,SK+NCACHE+TLSK
|
| 111 |
+
autowayoos.hyundai.net,SK+NCACHE+TLSK
|
| 112 |
+
autowaymail.hyundai.net,SK+NCACHE+TLSK
|
| 113 |
+
autowaywf.hyundai.net,SK+NCACHE+TLSK
|
| 114 |
+
autowayatt.hyundai.net,SK+NCACHE+TLSK
|
| 115 |
+
autowayapps.hyundai.net,SK+NCACHE+TLSK
|
| 116 |
+
autowaypush.hyundai.net,SK+NCACHE+TLSK
|
| 117 |
+
autowaynotify.hyundai.net,SK+NCACHE+TLSK
|
| 118 |
+
autowaylogging.hyundai.net,SK+NCACHE+TLSK
|
| 119 |
+
10.6.180.37,SK+NCACHE+TLSK
|
| 120 |
+
10.6.180.43,SK+NCACHE+TLSK
|
| 121 |
+
10.6.180.73,SK+NCACHE+TLSK
|
| 122 |
+
10.6.180.76,SK+NCACHE+TLSK
|
| 123 |
+
10.6.180.53,SK+NCACHE+TLSK
|
| 124 |
+
10.6.180.51,SK+NCACHE+TLSK
|
| 125 |
+
10.6.180.72,SK+NCACHE+TLSK
|
| 126 |
+
10.6.180.91,SK+NCACHE+TLSK
|
| 127 |
+
autowaysso.hmc.co.kr,SK+NCACHE+TLSK
|
| 128 |
+
autowaysso.kia.co.kr,SK+NCACHE+TLSK
|
| 129 |
+
autowaysso.hmckmc.co.kr,SK+NCACHE+TLSK
|
| 130 |
+
adfs.hmc.co.kr,SK+NCACHE+TLSK
|
| 131 |
+
autoway.hmc.co.kr,SK+NCACHE+TLSK
|
| 132 |
+
partners.hmc.co.kr,SK+NCACHE+TLSK
|
| 133 |
+
autoway.kia.co.kr,SK+NCACHE+TLSK
|
| 134 |
+
partners.kia.co.kr,SK+NCACHE+TLSK
|
| 135 |
+
rndportal.hmckmc.co.kr,SK+NCACHE+TLSK
|
| 136 |
+
portalif.hmc.co.kr,SK+NCACHE+TLSK
|
| 137 |
+
autowayoos.hmc.co.kr,SK+NCACHE+TLSK
|
| 138 |
+
autowaymail.hmc.co.kr,SK+NCACHE+TLSK
|
| 139 |
+
autowaymail.kia.co.kr,SK+NCACHE+TLSK
|
| 140 |
+
rndmail.hmckmc.co.kr,SK+NCACHE+TLSK
|
| 141 |
+
autowaymailif.hmc.co.kr,SK+NCACHE+TLSK
|
| 142 |
+
autowaywf.hmc.co.kr,SK+NCACHE+TLSK
|
| 143 |
+
autowaywf.kia.co.kr,SK+NCACHE+TLSK
|
| 144 |
+
rndwf.hmckmc.co.kr,SK+NCACHE+TLSK
|
| 145 |
+
autowaywfif.hmc.co.kr,SK+NCACHE+TLSK
|
| 146 |
+
autowayatt.hmc.co.kr,SK+NCACHE+TLSK
|
| 147 |
+
autowayatt.kia.co.kr,SK+NCACHE+TLSK
|
| 148 |
+
|
| 149 |
+
//2024-03-26 liyiyi
|
| 150 |
+
unilicenceapp.mofcom.gov.cn,SK+NCACHE+TLSK
|
| 151 |
+
211.88.33.109,SK+NCACHE+TLSK
|
| 152 |
+
jdlicapp.mofcom.gov.cn,SK+NCACHE+TLSK
|
| 153 |
+
211.88.33.77,SK+NCACHE+TLSK
|
| 154 |
+
|
| 155 |
+
//2024-03-27 linwei
|
| 156 |
+
corporbank.icbc.com.cn,SK+NCACHE+TLSK
|
| 157 |
+
218.205.188.51,SK+NCACHE+TLSK
|
| 158 |
+
|
| 159 |
+
//2024-04-15 piaoshengzhen
|
| 160 |
+
psp.hyundai-autoever.org.cn,SK+NCACHE+TLSK
|
| 161 |
+
10.109.14.110,SK+NCACHE+TLSK
|
| 162 |
+
|
| 163 |
+
//2024-11-14 ipv6 sk
|
| 164 |
+
[::]/128,SK
|
| 165 |
+
[::]/0,SK
|