Earlier quoted context omitted.
> the internet becoming deep fried Good phrase. I've frequently heard the term "Kentucky Fried Education" applied to the decay of schools and universities under the influence of big-tech mediocrity. My Digital Vegan response would be that "heavily processed" content harms your intellectual health because it's not fresh and has no vitamins :) Ted Nelson anticipated this "death by indirection". Some of his early writin…
Couldn't a bi-directional link still be written into HTML? Like any other tag, it could simply go unused while being available so nobody feels obligated.
Intercepting t.co links using DNS rewrites
51–60 of 60 posts
Re: Intercepting t.co links using DNS rewrites
#52Will this show up in Certificate Transparency logs?
Unlikely as the logs are appended to by CAs when they issue certificates. Browsers could in theory contribute data but the infrastructure to support that would likely to be orders of magnitude bigger. I'm scared even thinking about going down that rabbit hole due to the expectation of what would be found (MITM evidence). :_(
Re: Intercepting t.co links using DNS rewrites
#53Just quit twitter and it's all good huh? Why is everyone not leaving Twitter?
It’s not just Twitter. Maybe this tool could be made to uncloack a list of known url shorteners.
List of supported ones is here: https://github.com/djhworld/theunwrapper/blob/main/config/un...
Re: Intercepting t.co links using DNS rewrites
#54Clever solution! The author keeps emphasizing how hacky and what a terrible idea this is, but it's really not provided they trust their own infrastructure. This is exactly how SSL decryption in corporate environments works as well - MITM traffic using a cert issued by your own CA.
Re: Intercepting t.co links using DNS rewrites
#55Re: Intercepting t.co links using DNS rewrites
#56If (hypothetically at least) the "go service" is running on the device, then if one controls DNS on the device, one can set the A record for the t.co domainname to the address of the go service. In that case, does one still need a "reverse proxy".
Yeah, I was running the service on a different port though, the proxy was just to work around that.
Re: Intercepting t.co links using DNS rewrites
#57Clever solution! The author keeps emphasizing how hacky and what a terrible idea this is, but it's really not provided they trust their own infrastructure. This is exactly how SSL decryption in corporate environments works as well - MITM traffic using a cert issued by your own CA.
I think I was more bracing myself for a deluge of disapproving comments, so just wanted to make sure to emphasise I know the drawbacks of the approach and understand the risks etc :)
I thought it was odd you kept calling it "bad" and "awful". It's exactly as secure as any other certificate on the web. Arguably more, as you're aware of any access to the keys. The only differentiation is a commercial interest, nothing "bad" at all.
Re: Intercepting t.co links using DNS rewrites
#58Maybe I’m missing something, but it seems like this doesn’t need to be a DNS rewrite at all. Couldn’t you just set a proxy server for outgoing requests that passes through for ones that aren’t a redirect? Or is the trade off there performance (since you’re proxying every request instead of just certain DNS names)?
Re: Intercepting t.co links using DNS rewrites
#59Earlier quoted context omitted.
Yeah, I was running the service on a different port though, the proxy was just to work around that.
Why does service need to run on a different port, i.e., not 80 or 443. What about running the service on the loopback, 127.0.0.2 or whatever. I ask because I have run into similar problems.
Re: Intercepting t.co links using DNS rewrites
#60Earlier quoted context omitted.
Why does service need to run on a different port, i.e., not 80 or 443. What about running the service on the loopback, 127.0.0.2 or whatever. I ask because I have run into similar problems.
Using nginx, caddy, apache etc means you can offload the SSL handling there and let the application just be an application. In the age of containers, setting up a reverse proxy to handle it is minimal effort.
Not a caddy user, but I believe caddy, with a plugin, can function as a forward proxy.