-
-
Notifications
You must be signed in to change notification settings - Fork 953
/
cf_gateway_rule_create.js
33 lines (25 loc) · 1.34 KB
/
cf_gateway_rule_create.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { createZeroTrustRule, getZeroTrustLists } from "./lib/api.js";
import { BLOCK_BASED_ON_SNI } from "./lib/constants.js";
import { notifyWebhook } from "./lib/helpers.js";
const { result: lists } = await getZeroTrustLists();
// Create a Wirefilter expression to match DNS queries against all the lists
const wirefilterDNSExpression = lists.reduce((previous, current) => {
if (!current.name.startsWith("CGPS List")) return previous;
return `${previous} any(dns.domains[*] in \$${current.id}) or `;
}, "");
console.log("Creating DNS rule...");
// .slice removes the trailing ' or '
await createZeroTrustRule(wirefilterDNSExpression.slice(0, -4), "CGPS Filter Lists", ["dns"]);
// Optionally create a rule that matches the SNI.
// This only works for users who proxy their traffic through Cloudflare.
if (BLOCK_BASED_ON_SNI) {
const wirefilterSNIExpression = lists.reduce((previous, current) => {
if (!current.name.startsWith("CGPS List")) return previous;
return `${previous} any(net.sni.domains[*] in \$${current.id}) or `;
}, "");
console.log("Creating SNI rule...");
// .slice removes the trailing ' or '
await createZeroTrustRule(wirefilterSNIExpression.slice(0, -4), "CGPS Filter Lists - SNI Based Filtering", ["l4"]);
}
// Send a notification to the webhook
await notifyWebhook("CF Gateway Rule Create script finished running");