I would use this just to cut and paste text from my host machine to my VMs, because I've never been able to get that seemingly simple concept to work reliably.
Magic-Wormhole – Get things from one computer to another, safely
51–60 of 192 posts
Re: Magic-Wormhole – Get things from one computer to another, safely
#52Re: Magic-Wormhole – Get things from one computer to another, safely
#53Earlier quoted context omitted.
What if there are 65535 active send requests? Perhaps of which 65534 are opened by an attacker?
The attacker still just gets 1 guess per wormhole / send request. Each send-request / wormhole is its own separate thing.
Re: Magic-Wormhole – Get things from one computer to another, safely
#54This reminds me of the great tool http://www.fefe.de/ncp/ , which seems like the same thing only without the cryptographic authentication!
Nifty.. I'll look at the network side of that, maybe we can steal some ideas. At the moment magic-wormhole depends upon one of: * at least one side has a public IP address * both sides are on the same (private) LAN * a TURN-like "Transit Relay" server that I run That transit server hasn't gotten a worrysome amount of traffic yet, but it's a potential scaling problem. (Fortunately the two sides can offer their own tra…
Re: Magic-Wormhole – Get things from one computer to another, safely
#55How does this compare to AirDrop (besides obviously being cross platform)?
Magic-Wormhole: CLI only (so far), no OS integration anywhere, better security properties. Also it's got a spiffy wizard-hat logo (thanks Katie!).
Re: Magic-Wormhole – Get things from one computer to another, safely
#56Earlier quoted context omitted.
What if there are 65535 active send requests? Perhaps of which 65534 are opened by an attacker?
Probably all "slots" would be "occupied" and everybody gets the attacker's sent file, iiuc.
Re: Magic-Wormhole – Get things from one computer to another, safely
#57So, basically, scp (with a 16-bit session key that has to be exchanged oob)?
Re: Magic-Wormhole – Get things from one computer to another, safely
#58Earlier quoted context omitted.
Probably all "slots" would be "occupied" and everybody gets the attacker's sent file, iiuc.
Or the attacker only needs to monitor the last free slot to see what shows up?
EDIT: was just explained in other comment by meejah, thanks! (https://news.ycombinator.com/item?id=14649727#14650551)
Re: Magic-Wormhole – Get things from one computer to another, safely
#59So, basically, scp (with a 16-bit session key that has to be exchanged oob)?
In fact there's a mode (kinda experimental right now) to use magic-wormhole to transfer an ssh pubkey into the ~/.ssh/authorized_keys on a new account. Ideally your site admin should be able to give you access to a new machine with a wormhole code, instead of having you email them a pubkey.
Re: Magic-Wormhole – Get things from one computer to another, safely
#60Assuming that you have openssh and rssh installed, you bootstrap like this: useradd -m -g users -s /usr/bin/rssh tmp passwd tmp edit /etc/rssh.conf and uncomment allowscp Share the password with the party you want to exchange data with. Make sure your ports are open.
See: https://serverfault.com/questions/197545/can-non-login-accou...
The use case I see for wormhole is if you're working purely in the python ecosystem. That's it.
You're free to disagree of course, but I prefer ssh, since it's peer-to-peer end-to-end encrypted, and extends to cover other use cases much more easily (rsync, VNC, etc.).