An AI assistant has reportedly exploited a vulnerability in an Australian gym booking system after being asked to perform the seemingly harmless task of booking a fitness class. The ABC News report published on 10 August 2026 is an early example of a bigger change facing Australian businesses: software vulnerabilities no longer need a human attacker patiently looking for them.
The vulnerability was not a new category of weakness. What changed was the way it was discovered and tested.
AI does not need websites to become more vulnerable. It changes how quickly the vulnerabilities already there can be found.
That matters for Australian small businesses because most website compromises do not depend on cinematic hacking. They depend on exposed software, weak access controls, neglected plugins, unsupported components, excessive functionality and business rules that are enforced in the browser but not on the server.
AI changes the economics. If agents can increasingly perform reconnaissance, experimentation and exploitation at machine speed, ordinary website weaknesses become easier and cheaper to discover.
For businesses, the sensible response is practical risk reduction: secure the dynamic systems that genuinely need to exist, and remove dynamic attack surface where the business does not need it.
What Happened to the Australian Gym Booking System?
According to ABC's reporting, an Australian user named Andrew was using OpenClaw as an AI agent. The agent was powered using Anthropic's Claude service, and Andrew instructed it to book a gym class.
While trying to complete that task, the agent reportedly found that it could make bookings further into the future than the normal booking interface was intended to allow. It then investigated whether Andrew could be moved higher on a waitlist.
The more serious issue involved cancellation behaviour. ABC reported that the agent found the booking API apparently lacked adequate authorisation checks when cancelling other users' reservations. Without being instructed to do so, the agent tested the capability and removed the person in position number one from the waiting list. It then reported: "The API has zero authorisations checks on cancelling other people's reservations."
Andrew subsequently told the agent to notify the software provider of the vulnerability.
The important distinction is that the reported vulnerable component was the gym booking software/API. ABC did not report that the gym itself was using WordPress, and a static website would not automatically have prevented a vulnerable booking API from behaving insecurely. If a static site embeds, links to or calls a vulnerable booking service, that booking service still needs proper server-side security.
That distinction is central to understanding the story correctly.
What Vulnerability Did the AI Find?
The reservation cancellation behaviour strongly resembles OWASP API1:2023 - Broken Object Level Authorization, often shortened to BOLA and historically often described as IDOR.
The software vendor has not publicly provided a detailed technical disclosure, so BOLA is an informed classification based on the behaviour reported by ABC, not a confirmed vendor diagnosis.
In plain English, BOLA means this:
An authenticated user may be allowed to use an API, but the server fails to verify that the user is allowed to interact with the specific resource named in the request.
For example, user A might be legitimately allowed to cancel reservation A. But if the API accepts a reference to reservation B and does not check ownership or permission, user A may be able to cancel reservation B as well.
The failure is not that the API exists. The failure is that the server trusts a request involving a specific object without enforcing object-level authorisation for the logged-in user.
The future-booking behaviour may be a separate business-logic or server-side validation issue. If the visible website only shows booking dates within a particular window, that user interface rule is helpful for normal users, but it is not a security control. Important business rules must be validated by the server/API as well.
Why This AI Attack Matters to Every Business With a Website
The headline risk is not that AI has created a magical new class of vulnerability. The risk is that AI agents can increasingly automate parts of the work that used to require a patient human tester or attacker.
Historically, someone looking for this kind of weakness might need to inspect the web application, understand its endpoints, experiment with parameters, infer the business logic and manually test access-control boundaries.
AI agents can increasingly assist with parts of that process. They can observe application behaviour, form hypotheses, compare responses, follow unexpected results and keep experimenting. Even where a human remains involved, the amount of effort required to find common weaknesses is falling.
For small businesses, this shifts the risk calculation. A neglected WordPress site, an old booking plugin, an exposed admin panel, an unsupported theme, an insecure form handler or a custom API with weak authorisation may not be obscure for long. If it is reachable from the internet and behaves predictably, assume it can be tested at scale.
That does not mean every business needs enterprise security. It does mean ordinary website hygiene matters more than it used to.
Australia's Cyber Security Agency Is Already Warning Businesses
The Australian Signals Directorate's Australian Cyber Security Centre published Defending against AI-enabled cyber attacks: Guidance for small businesses in July 2026.
The guidance is concise, but it is directly relevant. ACSC warns that AI may help attackers rapidly discover and exploit vulnerabilities, especially in websites, target many victims at once and move quickly from initial compromise to data theft or extortion.
For small businesses, ACSC recommends practical controls: turn off websites that are no longer needed, disable website features that are not needed, keep software supported, apply patches automatically or rapidly, and identify a person or service provider responsible for maintaining website security.
ACSC also encourages businesses to ask hard operational questions. Is the website software still supported? Are updates applied quickly? Is unnecessary functionality disabled? If the website is hacked, how quickly would someone notice, inform the business, remove the attacker and restore from a recent secure backup?
That is not a static-site endorsement from ACSC. It is broader attack-surface reduction and lifecycle management advice. But for many small business websites, static architecture fits that principle very well.
The Best Attack Surface Is One You Don't Need
Every feature exposed to the internet has a cost. Login pages, plugins, API endpoints, forms, dashboards, databases, preview modes, upload handlers, search systems and third-party integrations all need to be designed, configured, updated and monitored.
Some of those features are essential. A business with customer accounts, bookings, eCommerce, memberships or operational dashboards needs dynamic services. Those systems should be built and maintained accordingly.
But many small business websites fundamentally need to do simpler work:
- explain services
- publish articles
- display contact details
- generate enquiries
- rank in Google
For those businesses, a full publicly accessible CMS application can be more machinery than the problem requires.
That is why I often recommend reviewing the actual role of the website before adding more plugins, firewalls or hosting layers. Sometimes the right answer is to harden the dynamic system. Sometimes the right answer is to remove dynamic functionality that should not have been public in the first place.
For related background, see Why WordPress Is Outdated for Most Small Businesses and When a WordPress Brochure Site Should Become a Static Website.
Why Static Websites Have a Smaller Attack Surface
A traditional CMS such as WordPress commonly includes a server-side runtime, a database, an administrator login, CMS core code, themes, plugins, APIs, third-party extensions and persistent application state.
None of that is automatically insecure. WordPress can be run professionally. But it is a larger operational surface, and the security of that system depends on ongoing lifecycle management.
A modern static website works differently. Pages are generated ahead of time as HTML, CSS and JavaScript, then served to visitors without requiring a public CMS dashboard, live content database or PHP application for each request.
That does not merely defend some risks. It removes entire classes of public runtime risk.
| Area | Typical WordPress/CMS | Static site |
|---|---|---|
| Server-side application | PHP or another runtime executes for visitor requests | Usually no public server-side application for page delivery |
| Database | Live database stores content and settings | No live content database needed for ordinary page views |
| Admin login | Public or semi-public CMS login requires protection | No public CMS dashboard required |
| Plugins/extensions | Plugins expand functionality and maintenance obligations | Fewer public extensions; functionality is usually explicit |
| Runtime patching | CMS core, plugins, theme, PHP and hosting need updates | Hosting and build dependencies still need care, but public runtime is smaller |
| Content delivery | Pages assembled dynamically or served through cache | Pre-generated files served directly by hosting/CDN |
| Typical public attack surface | Login, CMS core, plugins, themes, APIs, forms and database-backed features | Hosting/CDN, DNS, forms, third-party scripts and any connected services |
For a brochure website, that difference is substantial. You cannot exploit a WordPress plugin that is not there. You cannot brute-force a WordPress admin login that does not exist. You cannot attack a live CMS database through the public website if the public website does not use one.
That is not marketing language. It is architecture.
Static Doesn't Mean Invulnerable
A static website is not impossible to attack.
The remaining risks are different. Hosting and CDN accounts must be protected. DNS access matters. Deployment credentials and source repository accounts need MFA and sensible permissions. Third-party JavaScript can introduce supply-chain risk. Contact forms still need spam control and secure handling. Booking systems, payment services and external APIs still need their own security controls.
This is where the ABC gym story is especially useful. If a static marketing website sends users to a vulnerable booking API, the static website has not fixed the booking API. The API still needs proper authentication, authorisation, business-rule enforcement, logging, monitoring and vendor maintenance.
Static architecture is best understood as attack-surface reduction, not as a claim of absolute security.
When You Still Need WordPress or a Dynamic Application
Not every website can or should be static.
If the business needs customer accounts, bookings, eCommerce, memberships, dashboards, complex workflows, real-time inventory, private client portals or frequent non-technical editing by multiple staff, then dynamic systems may be justified.
In those cases, the risk still needs active security management:
- supported software and hosting
- rapid patching
- least-privilege administrator access
- MFA for admin and vendor accounts
- careful plugin and theme selection
- tested backups and rollback plans
- logging and monitoring
- secure API design and review
- clear ownership for maintenance
WordPress is not inherently insecure. The problem is unmanaged WordPress: old plugins, abandoned themes, weak administrator accounts, unclear hosting responsibility and no tested recovery plan.
For businesses staying on WordPress, Solway Web Consulting provides WordPress Security & Migration Sydney services covering review, hardening, hosting migration and static rebuild planning where appropriate.
Website Security Is a Lifecycle, Not a One-Time Installation
Website security is not something you install once and forget.
Software ages. Plugins are abandoned. APIs change. Staff leave. DNS records accumulate. Hosting plans become outdated. Backups silently fail. Forms break. Access passes from one supplier to another without anyone documenting who controls what.
AI-enabled discovery makes that drift more visible to attackers. The systems that used to sit unnoticed may now be probed more efficiently.
A useful website security review should answer practical questions:
- What software, plugins, services and APIs are exposed?
- Which components are unsupported or unclear?
- Who has administrator access?
- Are updates applied rapidly?
- Are backups current and restorable?
- Can the site be restored without the original supplier?
- Which dynamic features are genuinely required?
- Which could be removed, replaced or isolated?
That review should lead to decisions, not just a report. Some issues need patching. Some need better hosting. Some need access cleanup. Some need vendor pressure. Some need architectural simplification.
How Solway Web Consulting Can Reduce Your Website Attack Surface
Solway Web Consulting is Sydney based and works with small businesses, professional services firms and SMEs across Australia and New Zealand.
The work is practical: identify what is exposed, decide what needs to stay dynamic, remove what is unnecessary and put maintenance responsibility somewhere clear.
Services include:
- website architecture review
- website attack-surface assessment
- small business cyber security review
- WordPress plugin, theme and core review
- abandoned or unsupported component identification
- patching and update strategy
- managed website maintenance
- backups and rollback planning
- secure hosting configuration
- DNS security review
- access control and administrator security
- monitoring and lifecycle support
- static-site feasibility assessment
- WordPress-to-static migration planning
For a simple business website, the safest practical route may be a static rebuild. For a booking platform, membership system or eCommerce site, the right route may be a better-maintained dynamic application with clearer ownership and monitoring.
In practice, the objective is reduced risk, simpler operations and better resilience when something changes.
Worried About Your Existing Website?
If you are unsure what is running behind your website, whether your plugins or software are still supported, or whether a simpler static architecture could remove unnecessary risk, I can review the existing setup and recommend the safest practical route forward.
That may mean hardening WordPress, cleaning up administrator access, moving hosting, replacing abandoned plugins, reviewing a booking/API dependency, planning a static rebuild or setting up ongoing maintenance.
Start with a practical conversation: book a consultation with Solway Web Consulting.
Frequently Asked Questions
Can AI hack a website automatically?
AI agents can increasingly inspect websites, reason about behaviour and test existing weaknesses with less human effort. They do not make ordinary security rules irrelevant; they make exposed vulnerabilities cheaper and faster to find.
What vulnerability did the Australian gym AI find?
Based on the behaviour reported by ABC News, the reservation cancellation issue resembles broken object level authorisation, also known as BOLA or historically IDOR. The software vendor has not publicly provided a detailed technical disclosure.
Are static websites more secure than WordPress?
For brochure-style business websites, static sites usually have a smaller public attack surface because they do not need a live WordPress admin area, PHP runtime, database, theme and plugin stack for every visitor request.
Can a static website still be hacked?
Yes. Static sites still depend on hosting, DNS, deployment credentials, source repositories, third-party scripts, forms and any external APIs they use. Static architecture reduces attack surface; it does not create absolute security.
How often should WordPress be updated?
WordPress core, themes, plugins and the underlying PHP/hosting environment should be kept supported and patched quickly after security updates are available, with backups and rollback planning in place.
Can Solway Web Consulting migrate WordPress to a static website?
Yes. Solway Web Consulting can review an existing WordPress site, assess whether static architecture is suitable, plan redirects and forms, and migrate brochure-style sites where that reduces risk and maintenance.