Skip to content

Commit 8eb12e9

Browse files
authored
Special rule for vercel.app
This issue are taking care of one of our time biggest phishing network See: - https://kb.mypdns.org/issue/MTX-1402 - mypdns/matrix#1400 By adding the HTTP code 451, we should be able to remove any outdated records Closes #407 Signed-off-by: spirillen <[email protected]>
1 parent 93de509 commit 8eb12e9

File tree

1 file changed

+1
-0
lines changed
  • PyFunceble/checker/availability/extras

1 file changed

+1
-0
lines changed

PyFunceble/checker/availability/extras/rules.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ def __init__(self, status: Optional[AvailabilityCheckerStatus] = None) -> None:
9898
r"\.sz.id$": [(self.switch_to_down_if_status_code, 302)],
9999
r"\.translate\.goog$": [(self.switch_to_down_if_status_code, 403)],
100100
r"\.tumblr\.com$": [(self.switch_to_down_if_status_code, 404)],
101+
r"\.vercel\.app$": [(self.switch_to_down_if_status_code, 451)],
101102
r"\.web\.app$": [(self.switch_to_down_if_status_code, 404)],
102103
r"\.wix\.com$": [(self.switch_to_down_if_status_code, 404)],
103104
r"^s3\.ap-south-1\.amazonaws\.com$": [

0 commit comments

Comments
 (0)