Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions ModCloudFlare.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ public void Init(HttpApplication context)

private static List<string> CloudFlareIPRanges = new List<string>()
{
"204.93.240.0/24",
"204.93.177.0/24",
"199.27.128.0/21",
"173.245.48.0/20",
"103.21.244.0/22",
Expand All @@ -38,7 +36,8 @@ public void Init(HttpApplication context)
"197.234.240.0/22",
"198.41.128.0/17",
"162.158.0.0/15",
"104.16.0.0/12"
"104.16.0.0/12",
"172.64.0.0/13"
};

public static bool IsCloudFlareIP(string ip)
Expand Down