Live data from Hacker News

Cryptboard.io – Anonymous encrypted web clipboard and chat

github.com

21–30 of 54 posts

Re: Cryptboard.io – Anonymous encrypted web clipboard and chat

#21

Is there a German word for "this person is very intelligent but lacks sensibilities"? A js-based browser app to move files between VMs in (literally any scenario where you've opt-ed into using VMs for isolating)??? The only thing feature here that seems useful, is also unmentioned and basically is an anti-feature -- a server with persistence. so, instead of using the qemu/libvirt/vb/hyperv native way of passing in a…

> To copy and paste text/files into Remote Desktop, such as VMWare Horizon, RDP, and others where clipboard doesn't work or disabled

The URL the tool generates is very long. If you can't copy/paste, are you just retyping that URL by hand?

Re: Cryptboard.io – Anonymous encrypted web clipboard and chat

#22
post #19

I built something similar but it wasn't intended as a clipboard. Mostly for anonymous chat but I personally ended up using it as a clip board. The difference. We don't persist anything on the server side, it's totally in memory and you can create new streams that have shorter ttls. Website: https://malten.xyz Source code: https://github.com/asim/malten

Ver

Re: Cryptboard.io – Anonymous encrypted web clipboard and chat

#23
post #19

I built something similar but it wasn't intended as a clipboard. Mostly for anonymous chat but I personally ended up using it as a clip board. The difference. We don't persist anything on the server side, it's totally in memory and you can create new streams that have shorter ttls. Website: https://malten.xyz Source code: https://github.com/asim/malten

>The difference. We don't persist anything on the server side, it's totally in memory

Very nice. At what point are items deleted? Obviously private data is up to the user, but what about privacy ie gdpr, and the general courtesy of deletion from your end?

Re: Cryptboard.io – Anonymous encrypted web clipboard and chat

#25
post #19

I built something similar but it wasn't intended as a clipboard. Mostly for anonymous chat but I personally ended up using it as a clip board. The difference. We don't persist anything on the server side, it's totally in memory and you can create new streams that have shorter ttls. Website: https://malten.xyz Source code: https://github.com/asim/malten

>The difference. We don't persist anything on the server side, it's totally in memory Very nice. At what point are items deleted? Obviously private data is up to the user, but what about privacy ie gdpr, and the general courtesy of deletion from your end?

Every message is deleted after 1024 seconds by default in any stream created on the fly by posting a message. New streams can be explicitly created with lower ttls that expire messages sooner. All streams cap at 1024 messages and are aged out like that if they persist longer than the ttl of the stream.

Re: Cryptboard.io – Anonymous encrypted web clipboard and chat

#28
The interesting thing here is that an identity is represented by an image ("avatar"). Normally you can't get enough combinations with such a scheme and still produce a distinguishable image. Perhaps those long hex numbers shown in the screenshot also represent identity?

Another interesting thing here is that the RSA keys are 1024 bits long. It is fairly unlikely that some entity like the NSA is going to expend a Manhattan Project level of effort to get the messages of one individual (it would be cheaper to use other methods) but they in theory could. Most just make RSA keys 2048 bits long and accept the wild overkill.

Re: Cryptboard.io – Anonymous encrypted web clipboard and chat

#29
post #8

Is there a German word for "this person is very intelligent but lacks sensibilities"? A js-based browser app to move files between VMs in (literally any scenario where you've opt-ed into using VMs for isolating)??? The only thing feature here that seems useful, is also unmentioned and basically is an anti-feature -- a server with persistence. so, instead of using the qemu/libvirt/vb/hyperv native way of passing in a…

> Feel like XY Problem - there's probably a simpler, better solution for a slightly more specific (or even just attempted-to-be-specified-at-all) problem statement. Problem: Share content between two random devices without having to install an app, having to share the content with a third party or having to have a verified (by third party) identity. Or alternatively, what's a quick way to share a file with a random p…

[dead]

Re: Cryptboard.io – Anonymous encrypted web clipboard and chat

#30
post #8

Is there a German word for "this person is very intelligent but lacks sensibilities"? A js-based browser app to move files between VMs in (literally any scenario where you've opt-ed into using VMs for isolating)??? The only thing feature here that seems useful, is also unmentioned and basically is an anti-feature -- a server with persistence. so, instead of using the qemu/libvirt/vb/hyperv native way of passing in a…

> Feel like XY Problem - there's probably a simpler, better solution for a slightly more specific (or even just attempted-to-be-specified-at-all) problem statement. Problem: Share content between two random devices without having to install an app, having to share the content with a third party or having to have a verified (by third party) identity. Or alternatively, what's a quick way to share a file with a random p…

I’m building a serverless, ephemeral, private chat app that you could accomplish this with: https://chitchatter.im/
Post reply on HN