Forgot your password?
typodupeerror

Comment Avoiding bubble collapse consequences (Score 4, Insightful) 366

The AI industry has blown a spectacular bubble via circular dealing - Nvidia, OpenAI, Oracle, Microsoft, CoreWeave, etc are all doing monopoly money deals. Nvidia "sells" some GPUs, then "invests" the proceeds back into OpenAI, nothing got done, no money changed hands, but their stock values zoom. This looks exactly like the Dotcom bubble in the late 1990s and such things always implode - the market doesn't just correct, it panics, it liquidates, nobody can tell what's real, so everything is for sale at pennies on the dollar.

The industry's strategy to not go to prison for this stunt is to make AI equivalent to nuclear weapons. When the bubble begins to burst, the Trump administration will "make a deal", what you see is the beginning of that process. This will work about as well as the attempt to shake down Iran for their oil, but cause and effect are not the Trump administration's strong suit.

Comment Re:Who will pay for this? (Score 4, Interesting) 33

To clarify, the users were OpenAI themselves, so there is no question that they would be liable in this case.

The bots were not intentionally deployed; rather, they were being tested on how well they could complete a data recovery task (downloading a certain file from a certain server on a simulated Internet) that had been complicated by putting various obstacles in the way. Unfortunately, they found a different way to solve the problem: by getting the file from the real Internet, where it was publicly available. Part of this process involved collaborating with each other by treating the RubyGems website (which is supposed to be for polished packages) like GitHub; unlike every other package site hack in history, the exploits they uploaded weren't meant to be downloaded by unsuspecting users. As usual the bots cheerfully ignored all the clues that they had escaped containment and were consistently justifying their actions as acceptable due to being in a sandboxed testing environment. (This is something OpenAI has pledged to focus on.)

The actual damage done to RubyGems seems to be that OpenAI is now unwittingly in possession of a substantial number of user login tokens. This certainly meets the definition of a data breach, but it's not like the credentials are for sale on the dark web. As a website operator I'd much rather be mauled to death by this well-meaning swarm of superintelligent infants than targeted by even a single actual malicious human. In all likelihood OpenAI will just quietly pass RubyGems a sizeable donation and it'll all blow over.

Comment Re:Dumb crawlers require dumb solutions (Score 1) 43

To be honest that was actually my first theory, since the bots didn't seem interested in exploring the rest of the domain. I suppose there's no way to know for certain. I concluded that it must be an imbecile's attempt at harvesting, though, because the queries weren't really exploring the string space in any useful way. Here's a sample:

"GET /index?author=15&go=Search&id=48&name_restrict=1&q&re&results_&results_pagenum=2980 HTTP/1.1"
"GET /index?author=2&go=Search&group=0&group_restrict=1&id=48&name_restrict=1&q&results_pagenum=5440&template=41&type HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_restrict=1&q&results_pagenum=33500&templat HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_restrict=1&q&results_pagenum=32640&templ HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_restrict=1&q&res&results_page&results_pagenum=39300 HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_restrict=1&q&results_&results_pa&results_pagenum=12340 HTTP/1.1"
"GET /index?author=2&go=Search&group=0&group_restrict=1&id=48&name_r&res&results_pagenum=6100 HTTP/1.1"
"GET /index?author=2&go=Search&group=0&group_restrict=1&id=48&name_restrict=1&q&results_pagenum=2920&te HTTP/1.1"
"GET /index?author=15&go=Search&id=48&nam&results_&results_pagenum=17940 HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_restrict=1&q&results&results_pag&results_pagenu&results_pagenum=37720 HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_restrict=1&q&results_pagenum=9360&template=41&type_r HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_restrict=1&q&r&results_pagenum=28040 HTTP/1.1"
"GET /index?author=15&go=Search&id=48&name_&results_pag&results_pagenum=10400 HTTP/1.1"

The only thing this is fuzzing is the query string parser. It's not testing the limits of string buffers, it's not using interesting characters, it's just brain-damaged. The fact that it's also fetching different page numbers shows it's trying to follow page links and failing badly at doing so.

The site gets plenty of sniffing from garden-variety pests. e.g. this half-hearted attempt to find a framework or two that I don't have:

"POST /__rsc HTTP/1.1"
"POST /api/auth/session HTTP/1.1"
"POST /api/auth HTTP/1.1"
"POST /__nextjs_action HTTP/1.1"
"POST /.action HTTP/1.1"
"POST /_rsc HTTP/1.1"
"POST /api/auth/callback HTTP/1.1"
"POST /_middleware HTTP/1.1"
"POST / HTTP/1.1"

(of course, none of these URLs exist other than /, and you definitely can't just POST to it)

All this said... I've seen that spammers regularly misconfigure their tools, they'll try to register accounts with names like #[X:\LISTS\NAMES.TXT] and it only makes sense that some other cybercriminals trying to get rich quick have a similar lack of interest in programming shit correctly. Generally people don't turn to script kiddie shit if they have a personality conducive to putting in an honest hard day's work perfecting their craft.

Comment Dumb crawlers require dumb solutions (Score 5, Interesting) 43

I had a problem where AI scrapers were absolutely DETERMINED to fish out every possible query string from a search results page. Almost all of the query strings they tried were invalid due to shitty and dysfunctional string substitution. "&page=100" wouldn't be followed by "&page=101", it would be followed by "&pag&pag=1010" or something even more insanely half-baked, until the query strings were like 100+ characters long. It was the technological equivalent of watching HIV mutate in real time.

But the insane thing was that, aside from page number, they were always requesting info about the same other criteria: filtered by the same user, the same page type, and with no text string. So I just took those particular values and started banning logged-out users who requested that combination of criteria.

I figured I'd need to change my tactics in a couple of days once the botnet got bored of that particular page and moved on to requesting bogus entries for another user.

MariaDB> select count(*) from ip_bans;
+----------+
| count(*) |
+----------+
| 671671 |
+----------+

It hasn't.

Comment Re:So i can just post 30TB and get it later? (Score 5, Informative) 66

No. Trying to push 30TB into Freenet will be interpreted as an attack on the network by other peers and they'll disconnect from your peer.

Freenet is better viewed as a communication medium than a storage medium. Data is prioritized according to demand, somewhat like an LRU cache. You can't upload 30TB and expect the network to preserve it for you.

On liability, running a Freenet peer is more like running network infrastructure that automatically routes and caches other people's traffic than intentionally publishing it. US law explicitly recognizes this distinction in the DMCA's provisions for transitory network communications and system caching. We discuss this in more detail in the FAQ.

Comment Re:Just a heads up, decentralized platforms... (Score 4, Informative) 66

You obviously haven't tried Freenet. You can join our room on River and you'll see no spam, no fraud, no hate speech, none of that.

Decentralized doesn't mean unmoderated. Systems built on Freenet can be moderated however their creators and communities want. River is moderated.

The difference is that nobody running one service gets to decide what everyone else is allowed to run.

Submission + - Freenet: Apps Without Platforms

Sanity writes: Earlier this year Slashdot covered the launch of the completely redesigned Freenet. I recently gave a talk about what we've been building since then. Unlike traditional web applications, apps on Freenet have no central server or database, with application state instead distributed across the network. These now include decentralized group chat, publishing, search, and fully decentralized Git hosting. The talk also gets into some of Freenet's internals, including how we use machine learning for network routing.

Comment whole of society manipulation (Score 1) 31

Back in the teens we found a couple of instances where political actors were encouraging people to install screen savers or cryptocurrency wallets that turned their phones into reverse proxies. This was thought to be specifically for the sake of giving hostile foreign operations (read: Russia) access to U.S. domestic politics.

The fact that smart TVs are facilitating this is just ... we're going to need home networks that treat IoT stuff as different than our actual systems.

Oh, wait, TP-Link had well over half the U.S. router market, but they're getting banned over national security concerns?

Maybe there's a market for a router with traffic accounting as a service so one can see what's happening?

This is why the only device in my house with internet is a Roku. I simply will not tolerate the rest of that invasive junk.

Comment A world in transition (Score 1) 148

The call centers are going to be decimated ... but so will the AI replacements meant to talk to humans.

I have a number of issues this morning that require calls. First, deal with PG&E about changing the billing for my new house. The I need to talk to my bank about banning Google from ever billing me again. I absolutely HATE changing doctors, but had to do it, because getting to Antioch, then into the city, is just ridiculous from here, so it's time for first appointment.

I would love to be able to just give Claude a list of administrivia like that and let it plow through the work. I see progress on agent related billing, I see Cloudflare doing stuff for an internet dominated by agents ... everyone in the industrialized world is going to have an AI adjutant to handle this stuff. I really hope the old military term "dog robber" gets revived as a way to describe them.

Comment obvious bubble (Score 3, Interesting) 75

There's an obvious bubble, the circular dealings among the large core players are an enormous red flag.

The frontier labs are in the same position that DEC and Sun Microsystems were in the 1990s, as consumer hardware running Linux began to displace them. There will be ups and downs, but the trend is unavoidable.

The productivity gains are not there, AI is great for coding, some customer service is working, but the "50% of all white collar workers" that the frontier labs thought was good positioning last year 1) ain't gonna work but it did 2) infuriate the managerial class.

The frontier labs got away with it, thus far, in part because of concerns over the arrival of artificial general intelligence, which occupies a similar niche to nuclear weapons in the minds of policy makers. We ARE seeing frontier models escaping and attacking others, there ARE hazards, but it's nothing like what was imagined.

And the open models plus wild talent are as much a danger as wild talent was all on its own.

The frontier labs are like the coyote in that last moment when he's windmilling wildly, but not falling yet.

Comment jury nullification (Score 4, Informative) 132

Someone needs to launch a national campaign educating people on jury nullification.

The property damage laws are not really the sort of thing nullification is meant for, it's supposed to quickly put an end to the effect of bad laws, but if that's the one tool handy, and it's this much of a social issue, it should be put to work.

Slashdot Top Deals

Live within your income, even if you have to borrow to do so. -- Josh Billings

Working...