terribletortoise

joined 1 year ago
[–] [email protected] 15 points 1 month ago

The simple answer is yes.
It's possible to encode or tunnel anything over any protocol.

The next question is why isn't it done more?

  1. http has basically become the defacto internet protocol for all media content. This has resulted in a lot of other protocols from becoming blocked due lack of support or due to firewall rules.
  2. efficiency. http (and all the other protocols it runs atop) have become highly optimized for doing what it does. To layer something like http over another protocol, would certainly be possible but it would likely be slower, less responsive and lack a lot of the niceties that make http work as well as it does.

For the above reasons it's actually more common to see other protocols run on top of http. This is especially common to prevent blocking and censorship by making the traffic look like normal http traffic when it may actually be private messaging apps, file transfers, VPN, etc.

[–] [email protected] 5 points 2 months ago (1 children)

I like to recommend the episode(s) on John McAfee when people first start Bastards. They're wild and not nearly as dark/heavy as some episodes can be.

 

Credit where due: https://www.instagram.com/p/C9LzdpYCryE/?igsh=NTc4MTIwNjQ2YQ==

(I have no affiliation with this store. Sharing because their shirts go hard.)

[–] [email protected] 3 points 6 months ago (3 children)

Not exactly what you asked for but Joplin files are markdown. The app itself (very cross platform) renders them in a nice format. https://joplinapp.org/

[–] [email protected] 7 points 7 months ago* (last edited 7 months ago)

The addAddress call may just be configuring the local side of the VPN. It's hard to know without looking at the rest of the code.
The general workflow when establishing a VPN connection is:

  • open a socket to the destination VPN service (ProtonVPN, or whatever suspect service).
  • configure parameters such as DNS, split tunneling, and which networks to route over the VPN (generally everything from your local system, except the VPN connection itself).
  • update the local routing so traffic starts flowing over the VPN.

addAddress may just be part of the configuration. A very cursory search suggests that OpenVPN may be being used as the underlying VPN implementation framework (not uncommon).