-
Notifications
You must be signed in to change notification settings - Fork 728
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WDB signatures to allow specific URLs regardless of display text #796
Comments
But how would we decide what constitutes a TLD? Mozilla keeps a list of TLDs. Do we have one in ClamAV? Otherwise of course guessing at anything other than a one-word suffix (like ".com", or ".net") could get us in trouble, because we can't very well say that |
The intent is to trust going to the |
We wouldn't want to trust So perhaps it needs the |
Ah, so the
rule says "if the display text is |
Yup. That's the idea. I'd like an easy way to say that anything that redirects to |
|
I'm guessing we want to allow both the |
Uh... I had no idea It seems like it may do exactly what I was hoping for??? It's not in our documentation and we don't have any examples of it in the I found the commit where it was introduced and am just reading what the changes do: 6e3332c I will will have to do some testing. If it really does what I had been hoping for, we may be able to just update the documentation, add a couple feature tests, and close this ticket. |
I'd be surprised if it actually works as-is, since this line from the original commit you've linked:
no longer exists in the current code. That is, |
|
Hi, any updates on this? Do you want to somehow revert to the old code that used to handle |
Ping? :) |
I'm sorry, I don't have anything else to report. We're down a team member and I haven't been able work on lower priority issues. |
I understand. Sorry to hear about that. Update the issue here if and when you have time. |
PDB signatures are a watch list to protect certain real-URL domains, by monitoring for suspicious links that say they go to those domains in the display-text, but actually go somewhere else.
WDB signatures are an allow list to prevent phishing heuristics for trusted real-URL + display+URL combinations.
It would be useful to have WDB signatures to allow URLs to click-time protection domains where we are unable to verify what the final/actual domain is that the URL will resolve to.
Our current option is to allow a bunch of TLDs in a regex for the display text, like this:
It would be nice to be able to do something like this instead, so we don't have to guess at all of the possible display domain TLD's:
Ref: #771 (comment)
The text was updated successfully, but these errors were encountered: