Cimbali

Results 348 comments of Cimbali

So draft releases can only create new tags, not reference existing ones? That’s too bad.

We’re matching base64 currently, otherwise the encoding for http and www wouldn’t start with `aHR0` and `d3d3`. You might be confused by the fact that the regex is case insensitive....

> Yes and no. We match strings starting with `aHR0` and `d3d3`, which correspond to base64-encoded prefixes `www` and `http`. Base-32 prefixes are `O53XO` and `NB2HI4`, which we don’t match....

Both `http://track.com/redir?u=aHR0cDovL2V4YW1wbGUuY29t` and `https://track.com/redir?u=aHR0cDovL2V4YW1wbGUuY29t` convert to `http://example.com/`, if that’s what you’re asking about. If the embedded URL starts with `www` we inherit the connection, so `http://track.com/redir?u=d3d3LmV4YW1wbGUuY29t` converts to `http://www.example.com/` and...

So while we’re cleaning javascript links, some websites use `onmousedown` instead of `onclick`, like google (of course) which causes the iframe load I mentioned above, and also #101. ~~I believe...

Suggested by @tarihci in #104: generic user-specified redirects (à la Redirector), e.g. reddit -> old.reddit, imgur.com -> imgurp.com, google.com -> google.{my favourite TLD}

Potential tracking hashes, suggested by @Rtizer-9 in https://github.com/Cimbali/CleanLinks/issues/108#issuecomment-609669553: > A doubt @Cimbali: > > Is the #4cff708c1aff in > https://www.forbes.com/sites/lisettevoytko/2020/03/13/twitters-most-liked-tweet-of-the-week-elon-musk-dismisses-coronavirus-fears/#4cff708c1aff > > a tracking parameter? Coz even if you remove...

I’ve seen another hash that was suspicious today, on an outgoing link from facebook. Additionally to the `fbclid` parameter there was `#.XpWKwogtXjo.facebook` appended to the URL

@e-t-l There seem to be 2 types of redirections in that add-on: 1. cache redirection based on URLs (anything in [redirector.js](https://github.com/da2x/amp2html/blob/master/scripts/redirector.js)) roughly − we cover that by auto-detecting links in...

I’ve found another scheme of redirections where domain and sub-domain are separated: ``` https://consents.prismamedia.com/?redirectHost=https%3A%2F%2Fwww.domain.name&redirectUri=%2fpath%2to%2fpage ```