6 ms·
> This is a console friendly pastebin that allows binary files. No fancy website, no intermediate pages to click through, and no CAPTCHAs. The site is cool, bu
by daniel-s 2y ago
> This is a console friendly pastebin that allows binary files.
No fancy website, no intermediate pages to click through, and no CAPTCHAs.
The site is cool, but is it not just going to be abused?
- derefr 2y agoIt very likely will be, yes. I would personally suggest that this site probably "wants" accounts. Yes, with CAPTCHAs (on registration.) If you want to be able to ban people who abuse your service, you'll need some thing-that-is-costly-to-get-multiple-of to ban them by. Otherwise they just keep coming back. To still be a "console-friendly pastebin", the result of doing that costly registration process, could just be a page that gives you a (private) URL, that works like the base URL does now. https://paste.c-net.org/b/{bucket} https://paste.c-net.org/b/{bucket} or something, where {bucket} is a UUIDv4, or anything else with enough entropy to not be able to brute-force enumerate your way into someone else's account URL. The uploaded files themselves could still have short human-writable top-level paths, for ease of repeating them over the phone. Though, I notice that when you upload a file, you get a "delete key" as well as a URL. IMHO the "delete key" shouldn't be a weird nonstandard header you send with an HTTP DELETE; it should just be a URL — e.g. https://paste.c-net.org/b/{bucket}/{delete_key} https://paste.c-net.org/b/{bucket}/{delete_key} — that you can HTTP DELETE directly. In other words, make /b/{bucket}/{delete_key} the file's "true name", and /{link} a "read-only view" of the file.
- daniel-s 2y agoI have heard good things about https://www.stopforumspam.com/ https://www.stopforumspam.com/.
- t-3 2y agoWhen you say abused, I assume you mean either CSAM or copyrighted material? Is there a hash database or something that could be queried to block known bad stuff? (would probably fail in the face of compression or encryption, but catching the low-hanging fruit would at least probably handle any potential legal liability?) Seems like something useful AI would actually work well for, if FBI/publishers/etc., would train a model and release it or host a service with an API.
- j16sdiz 2y ago> catching the low-hanging fruit would at least probably handle any potential legal liability? Actually No. It take 5 minutes to create a script to randomize a password, encrypt and upload. Abusers have been doing the same for 20+ years and it is very effective.
- ttyprintk 2y agoI think the question is not about the persistence of uploaders but the safe harbor of innocent hosters. For example, hosting a password-protected binary with a cleared hash is one thing. The bad actor posting a password (any password) might be another.
- xg15 2y agoThis. The reason why we don't have an un-siloed, general-purpose means of file transfer after 40 years of internet is probably more a legal than a technical one...
- hnlmorg 2y agoUsually youll find vendor lock ins because the actual hard part of this isn’t legal, it’s building a user base from non-technical users. And that usually requires having your standard included with platforms they already use. This is why (for example) Google Drive and OneDrive have become so popular despite Dropbox being first to market. There’s plenty of other file transfer solutions out there too but you’ll find the un-siloed ones will be lesser known than the siloed ones simply because of the power of $$$
- GoblinSlayer 2y agobittorent
- egeozcan 2y agoIt will be. Any time you offer something that allows anonymous uploads & shares (hell, sometimes even if you don't allow share, people will share accounts), it will be a silo 95% full of material that's illegal in practically every corner of the world. If you play the good citizen and encrypt the files, giving the key to the owners, then you also don't have any means to preemptively detect and delete that stuff, you just keep waiting on some law agency knocking at your door. Also, if you openly say "hey I'll peek into your files to see if they are legal", then they will be the ones encrypting. Disallow that? It's a nightmare to detect and abusers are really, really creative! So much dedication too! And it's not just CSAM, there will be detailed instructions on practically any illegal thing you couldn't even imagine. It's bad, really bad, and I've grown to accept that small, closed community services (best with real-world connections) are the only way forward.
- guerrilla 2y ago> It's bad, really bad, and I've grown to accept that small, closed community services (best with real-world connections) are the only way forward. Our first technology, community, serves a purpose after all.
- alias_neo 2y agoI wrote something similar as a toy project a while back, it's open source, and I host a "demo" version of it, but for fear of all of this, I limited it to only kilobytes of data and have the links expire after an hour. I run it on my LAN for my own use, which is what I think it's best for, but I really don't like having something like this on the web. Luckily, I've never advertised or shown it off so nobody but myself uses it, but I'll probably take down the demo site too, soon. EDIT: Typo
- fragmede 2y agoIt's sad that you don't have Internet friends that you trust enough to share that with after writing all that code. Maybe open source it but don't link to your demo instance? It's more sad that the Internet is like that. There are a couple of really neat quirky projects out there that I only know about through word of mouth because the open Internet is not to be trusted. The projects are behind a login wall, so it's not like they're discoverable either.
- p4bl0 2y agoI ran a very similar service for years. And yes it will be abused. I stopped when russian and chinese bots where sending many messages per seconds containing AI generated marketing bullshit with links to scammy sites in various format (html, bb code, markdown, …) and it became GB of text… :/. I still haven't finish to clean things up. The service is now discontinued because of this: https://paste.fulltxt.net/ https://paste.fulltxt.net/ The full code for the service is here: https://paste.fulltxt.net/42 https://paste.fulltxt.net/42 The command-line paste tool was this simple script: https://paste.fulltxt.net/txtp https://paste.fulltxt.net/txtp In another distant past, I ran an URL minification service at http://uzy.me/ http://uzy.me/, and there too because of spams, I had to discontinue it. Spam is really killing the internet… This actually saddens me.
- stavros 2y agoI run https://pastery.net https://pastery.net, and yep, exact same deal.