Remix.run Logo
AI agent hacks gym to get its user a spot in pilates class(bbc.com)
29 points by ashurandi 3 hours ago | 65 comments
jabron 2 hours ago | parent | next [-]

Is it even possible to "hack" an API that has no authorisation for any of its methods?

reedf1 2 hours ago | parent | next [-]

In a legal sense any unwanted intrusion can be considered hacking - i.e. a 'hack' is not contingent on penetrating authorization. In practice most APIs are secured by obscurity rather than any high quality rigorous authorization. The only thing it would make absolutely clear at a legal level is that you do not want the API to be publicly used, but for a jury/judge accessing an unadvertised API via browser tools is hacking.

torginus 2 hours ago | parent | next [-]

I think this is the solution to a lot of AI 'alignment' issues.

We have laws, and LLMs should NEVER break them unless the user states its fine with some qualifying condition. Yes, every country has a different legal system, but I think there's a decent idea of what constitutes intrusion thats agreed on in most parts of the world.

In grey area scenarios, the user should be able to override this, with a warning of clear consequences of, and should they accept, users should be held criminally liable.

If the LLM does so unprompted, the responsibility should be the providers'.

LLMs should be considered tools, legally speaking.

reedf1 an hour ago | parent [-]

I do think one day that LLMs may be so 'aligned' that hacking culture will have a resurgence in some way. In the sense that the only way to do anything a bit below board will be manually.

alex7o an hour ago | parent [-]

Nah, local models with abliterated layers and uncensoring will be sold on the deepweb

reedf1 7 minutes ago | parent [-]

great - that still requires something

ra 2 hours ago | parent | prev | next [-]

I'm pretty sure that's not universally true. IANAL but I believe the legality depends on location and context.

close04 an hour ago | parent | prev [-]

And to be clear, this isn't an "I just walked through an open door" situation. This is getting in the house through a 2nd floor open window, destroying some items and putting some of your own in their place.

> the bot explained that it had manipulated the system to book him onto classes months in advance - against the normal rules of the system.

> The agent replied saying it had succeeded by cancelling another gym-goer's booking.

This wasn't just breaking the rules of the gym, it also caused damages to someone. Someone had their booking canceled, maybe lost some money, definitely lost time dealing with this topic.

graemep 32 minutes ago | parent [-]

Would phoning them and pretending to be someone ahead of you in a queue to cancel their reservation be a crime? probably, but not one likely to get prosecuted.

Shank an hour ago | parent | prev | next [-]

Yes, the Computer Fraud and Abuse Act is widely criticised for making almost any act a violation (https://www.law.cornell.edu/uscode/text/18/1030) including many things that many people do on a routine basis, such as accessing a non-public API. If it was not intended to be accessed and is accessed, then the perpetrator of the crime has met the "exceeds authorized access" clause.

> (a) Whoever

> (2) intentionally accesses a computer without authorization or exceeds authorized access, and thereby obtains—

> (C) information from any protected computer;

> (6) the term “exceeds authorized access” means to access a computer with authorization and to use such access to obtain or alter information in the computer that the accesser is not entitled so to obtain or alter;

A "protected computer" is:

> (B) which is used in or affecting interstate or foreign commerce or communication, including a computer located outside the United States that is used in a manner that affects interstate or foreign commerce or communication of the United States

So this is a Pilates computer, which probably is used by a business which probably conducts interstate commerce, which probably makes it a protected computer, and the API gave "information".

So, yes.

graemep 31 minutes ago | parent [-]

The article is about something that happened in Australia. What does the law there say?

mr_mitm an hour ago | parent | prev | next [-]

The term is insufficiently defined and has overloaded meaning.

In the original sense of the word, i.e. creative use of technology? Debatable, and most techies would probably land on the "no" side of the debate.

Is it illegal? Depends on the jurisdiction and is up to a judge, but it probably falls under unauthorized modification of computer systems, so here the answer is probably "yes". IANAL, but lack of authorization mechanism is probably not a valid defense. AFAIK lawyers and judges do not follow the law to the letter independent of real world experience, so you can probably argue that if the UI didn't provide a way to cancel other people's appointments, then any reasonable person should realize it wasn't intended for public use and thus refrain from doing it. (Corollary: LLMs are not reasonable persons.) Just like an unlocked house door isn't an invitation to come in, you have to assume it was done accidentally (may depend on customs of the location, but where I come from it's pretty obvious).

Is it morally acceptable? Pretty clearly no. Even if it wasn't illegal, it's a jerk move.

msy 2 hours ago | parent | prev | next [-]

If you leave your front door open I don’t think you’d classifying someone walking in and taking your laptop as ‘not stealing’.

graemep 2 hours ago | parent | next [-]

However walking through the door would not be a crime in itself, where I live anyway.

bryanrasmussen 2 hours ago | parent | next [-]

where do you live? Most places I've lived if you walk into a private residence where you don't know anyone but the door is open that is unlawful entry or trespassing. Same if someone forgets to lock the door of their business when they close at 9 p.m and you go in at midnight.

an hour ago | parent [-]
[deleted]
cung an hour ago | parent | prev | next [-]

You can legally walk into someones home in your country if the door is not locked? Where is that?

konart 2 hours ago | parent | prev | next [-]

It's funny how the two of our comments are polar opposites

an hour ago | parent | prev | next [-]
[deleted]
walthamstow an hour ago | parent | prev [-]

If you talking about Britain, it depends on why you walked through the door

graemep 34 minutes ago | parent [-]

I am, and yes, its not a crime in itself though, unlike picking the lock to get in.

konart 2 hours ago | parent | prev [-]

Someone walking in is an illegal entry to begin with.

PS: in some countries

gnfargbl 2 hours ago | parent | prev | next [-]

At least one person has received significant jail time for doing exactly that: https://www.justice.gov/usao-nj/pr/new-york-man-sentenced-41...

It's not straightforward: the conviction was eventually vacated (without really addressing the substantive point), and it is possible that the US authorities went particularly heavy in this case for other reasons.

But yes, attacking an unauthenticated API has previously met the threshold for conviction.

CJefferson an hour ago | parent | prev | next [-]

My gym class operates on 'write on a piece of paper, cross off your name if you want to cancel'. I could cross someone else's name off and write mine in. They would have trouble figuring out it was me who did the malicious cross-off.

That wouldn't make it remotely acceptable of course.

stochastic-parr 2 hours ago | parent | prev | next [-]

It's being used unintentionally to do things it wasn't designed to do... isn't that hacking by definition? Missing Auth is a typical finding.

coldtea 2 hours ago | parent | prev | next [-]

Practically speaking, discovering that fact and taking advantage of it, is already "hacking".

tossandthrow 2 hours ago | parent [-]

We are used the interfaces being web interfaces.

But say that the underlying api exposes some endpoint discoverability capabilities (eg. Exposing an openAPI spec), then arguably the action was invited: the actions was documented along with the auth model.

coldtea an hour ago | parent | next [-]

If you forget a slip of paper writing "the door is open + your alert shutdown pin" on a sticker outside your house, is it not still an issue if someone enters who you didn't invite?

TeMPOraL 2 hours ago | parent | prev [-]

Unfortunately normies tend to treat APIs like "staff only" stickers on doors.

oulipo an hour ago | parent | prev | next [-]

The more interesting question is rather: who is responsible? The user who set-up Claw, the LLM provider?

croes 2 hours ago | parent | prev | next [-]

If you ask a software developer: no

If you ask a judge: probably yes

kenniskrag 2 hours ago | parent | next [-]

In switzerland it depends 143bis StGB:

Any person who, with the intention of securing an unlawful gain for themselves or another obtains for themselves or another data that are stored or transmitted electronically or in some similar manner and which are not intended for them and have been specially secured to prevent their access shall be liable to a custodial sentence not exceeding five years or to a monetary penalty.

ofjcihen an hour ago | parent [-]

So this wording is really interesting in the bug bounty sense and I’m curious if you know how it would be handled.

If someone hits an unsecured API, receives information, and notifies the company of this while also requesting a bounty, would that satisfy all of the requirements of prosecution?

The unlawful gain is the sticking point in my mind.

kenniskrag an hour ago | parent | next [-]

If you publish the bug then it could be unfair competition in my opinion. There was a product test where the mentioned some flaws of a medicine but didnt mention other producers of same drug. They broke the UC rules and paid some money: https://politchronik.swiss/de/prozesse/57953-das-kassensturz...

kenniskrag an hour ago | parent | prev [-]

If you access "private" data it's also unlawful acording to 143. Pentesting is a hot topic but there are comapnys acusing you of hacking if you send them a security report (hacking). If they mention a bug bounty program then you are allowed to test their security as described in this program but not more.

Foskya an hour ago | parent | prev | next [-]

I guess it falls in the same category of burglars that enter from the unlocked main door. It is still illegal even if there were no security measures to overcome by the attacker.

That being said using an API does require a minimum of computer knowledge

CJefferson an hour ago | parent | prev | next [-]

I'm a software developer. This is clearly bad, and we can decide what it should be called. It might not be 'hacking', but you are clearly abusing the computer to steal a space in a class you shouldn't have.

nicman23 2 hours ago | parent | prev [-]

not really, it needs criminal intent.

croes an hour ago | parent [-]

Nope

https://www.heise.de/en/news/Modern-Solution-Court-of-Appeal...

mr_mitm an hour ago | parent [-]

AFAIK felonies in Germany require "intent", not "criminal intent". The guy could have stopped earlier, right after testing the password. But he decided to use it to view data which didn't belong to him. I realize I'm going against the general public opinion, but he didn't have to do that, and I can see why the court didn't accept "but I only did it to take screenshots" as a valid defense, because that's clearly intent.

croes 39 minutes ago | parent [-]

Modern Solution would have claimed that the password wouldn‘t have allowed access to important data.

mr_mitm 17 minutes ago | parent [-]

So be it. Publicly disclose the vulnerability and stop doing business with them.

cineticdaffodil an hour ago | parent | prev | next [-]

[dead]

huflungdung 2 hours ago | parent | prev [-]

[dead]

jp0d 2 hours ago | parent | prev | next [-]

Posted two days ago.

https://news.ycombinator.com/item?id=49236439

faangguyindia 2 hours ago | parent | prev | next [-]

Lately, anytime I want to do anything, AI from Anthropic and OpenAI gets in the way; even simply putting a logo where watermarks from free services exist is now impossible.

I am off to DeepSeek Flash now.

asdf88990 an hour ago | parent [-]

What do you mean by this?

I use a combination of big American AI and self hosted but I don’t understand your point.

seltzered_ an hour ago | parent | prev | next [-]

The original deleted blog post on the 'ai agent hacks gym' story was back from April 2026: https://web.archive.org/web/20260516025532/https://www.affin...

milgrim 2 hours ago | parent | prev | next [-]

Guess this will become common now. I used Claude to write a small application to monitor free appointments for driving license renewal at my DMV. Instead of waiting 6 months I was able to get an appointment within a few days.

skeledrew 2 hours ago | parent | prev | next [-]

Old news framed as something fresh. That "happened in April" may as well read "happened 2 years ago" and is like saying someone was caught jay walking.

mattlondon 2 hours ago | parent | prev | next [-]

Surely surely there are apps that use AI to watch you while you do at-home pilates and tell you if you are doing it wrong, need to suck in that bit or straighten that bit?

TeMPOraL 2 hours ago | parent [-]

But someone could get offended! So no. But with LLMs, it's becoming easy to make such app for your own use, tuned to the encouragement style and threshold that works best for you.

glimshe an hour ago | parent | prev | next [-]

BREAKING NEWS: Thief uses AI to break into unlocked storage shed

laurels-marts an hour ago | parent | prev | next [-]

Those that have, more will be given. Those that do not, more will be taken.

supriyo-biswas 2 hours ago | parent | prev | next [-]

I can't help but think that this is a submarine[1] paid for by OpenAI or Anthropic as a way of garnering public sentiment for AI regulation.

[1] https://www.paulgraham.com/submarine.html

hypfer 2 hours ago | parent | prev | next [-]

AI just doing what 17yo hackers with skills but lack of fully developed morals would've done.

Just without the skin in the game.

...And with a fully grown adult requesting it to do so with zero care or due diligence. Just a whoopsie after the fact.

Why would they let media take photos of them?? I suppose as a "look this could've happened to anyone"? But it actually can't.

I guess they also must've realized that, given that the bbc interview was declined. So good on them I guess.

monooso an hour ago | parent [-]

> And with a fully grown adult requesting it to do so with zero care or due diligence.

I'm unclear what you consider reasonable due diligence in this case. Should the protagonist have assumed that the gym API was unauthenticated, and that the agent would discover this?

hypfer an hour ago | parent [-]

No, it starts much earlier.

They should not have given a next token predictor unsupervised Internet access, regardless of what the marketing might have told them about its capabilities or alignment.

Don't use technology you do not understand in ways that might bring harm to others. Exercise appropriate caution.

I don't think the guy itself is fully to blame though. Our whole culture has rotted quite significantly.

watwut an hour ago | parent [-]

> They should not have given a next token predictor unsupervised Internet access

Yes.

> regardless of what the marketing might have told them about its capabilities or alignment

I think that marketing teams should be blamed for lies and exaggerations much more then people who trusted them. As is now, everything is too much biased toward the biggest liar out there.

hypfer an hour ago | parent [-]

Being legally liable might work.

Might "harm innovation" though.

zombot an hour ago | parent | prev | next [-]

Every online service there is is getting cracked and its user data downloaded without consequences (for the service, that is. Users get their identities stolen). Maybe the onslaught of the bots will finally make safety a serious concern.

2 hours ago | parent | prev | next [-]
[deleted]
coldtea 2 hours ago | parent | prev | next [-]

"Asked for a car, they got me a Claude subscription. How's that for being born under a bad sign?"

lu7897859 2 hours ago | parent | prev | next [-]

[dead]

songhonglei1985 2 hours ago | parent | prev [-]

[flagged]