289 comments

  • sonink a day ago ago

    Its a bit wild to me that there hasnt been a pushback against enabling memories by frontier AI companies. This data is something advertisers could only dream off. Before AI, most of this data was approximated by whatever little information could be gleaned from the websites we visit. But now people are handing over their deepest darkest secrets and pretty much EVERYTHING to AI on a platter.

    Maybe its just me who is paranoid because I happen to spend a fair bit of time in the advertising world, but the first thing I did when memory was launched on Claude/Chatgpt - was to switch them off. And it helps that they are not even useful, and would actually downgrade your experience by polluting the context of irrelevant details. I go one step ahead - if there is a personal discussion you want to have - maybe use another account like provided by the likes of companies like openrouter etc.

    I would argue that we should have regulation that should prohibit the storage of user profile information by AI companies, and any such memories feature should exclusively reside on the users servers. Infact, maybe go one step ahead, that 'memory' firms cannot be owned by AI firms and vice versa.

    • jayGlow a day ago ago

      I've found memory somewhat useful as i don't need to give it all the context for everything, that said it's equally as annoying when it latches onto something I said in a different chat and derails the conversation because of that.

    • 4gotunameagain a day ago ago

      Data harvesting is one of the core value propositions for many of these companies (from the investor's perspective).

      Companies that built their models on public data and illegal scraping/copyrighted works, amassing massive datasets on the most private aspects of countless individuals, and creating a huge bubble with potentially humongous implications upon implosion. Oh, and, increasing wealth concentration and inequality by an incredible amount.

      The future is here.

      • daheza a day ago ago

        I think there will eventually be pushback from companies that want to keep their IP secrets. The current standard of "we dont train on your data" but we summarize all your input and output, meaning its not your data anymore and we can train on that.

  • artisinal a day ago ago

    Doesn’t surprise me.

    Yesterday I learned that people run AI agents on their system with full admin rights. No containerisation or anything. Wild. Like we forgot 50 years of computer security overnight.

    • progval a day ago ago

      Most programmers and power users install large dependency trees with npm/pip/bundler/... on the same user account as their main browser on a regular basis. Even on Linux where it's easy to create new user accounts. This isn't much different.

      • chrisandchris a day ago ago

        Two bads doesn't give you one good.

        • brookst a day ago ago

          No, but when you’re arguing that common practices followed by pretty much everyone is “bad”, it’s hard to muster much urgency.

          Yeah, we should do this differently. We should probably also eat healthier and get to the gym more.

          • port11 a day ago ago

            Running LLMs with some form of sandboxing is much easier than eating healthy or going to gym. Speaking as someone that is procrastinating lifting weights but found 15 minutes to lock down Claude.

        • reactordev a day ago ago

          no, but it does give one multiple vectors for exfiltration of your data which is a good thing for the scammers of the internet. A bad thing if you naively designed your package management system. Sadly, it's only going to get worse.

        • idiotsecant a day ago ago

          Two bads does eliminate the option for smugness though

      • neop1x a day ago ago

        It's easy but very inconvenient. Drop sandbox [1] or Docker are much more convenient alternatives to user/group isolation for this purpose.

        [1] https://github.com/wrr/drop

      • SubiculumCode a day ago ago

        Is there a general workflow for this? I usually do pip under my user. I had not thought to do a su then do my venv and pip. Heck, are we at the point where we shouldn't even do that and everything should be done in a vm container?

        • tga_d a day ago ago

          > Heck, are we at the point where we shouldn't even do that and everything should be done in a vm container?

          This is the premise of Qubes OS. It's gotten decently usable, I'd estimate about as good as Linux a decade ago. https://www.qubes-os.org/

          • processunknown a day ago ago

            +1 for qubes. with some effort you can get a really nice stack with segmented git, disposable coding agents, package cachers, firewalls, and network visibility.

      • cowpig a day ago ago

        It's much different.

        The dependency trees have a whole system that's evolved for decades. The same code goes into many computers. Many people read the source, security firms look for vulnerabilities, etc.

        Language models are a completely new paradigm. The code it writes on your machine is the only instance of that code. It does far more than anybody could ever keep track of.

        It's much harder to detect problems, and nobody to hold accountable for them.

      • XorNot a day ago ago

        It has never been easy to create separate users on Linux, certainly not for tasks where you need to switch between contexts.

        Docker was amongst the biggest steps forward on this in a long time.

        • progval a day ago ago

          I meant for CLI tasks. Just "adduser" and "sudo -u <user> bash".

          • brookst a day ago ago

            And when you want to share some but not all files with that one user but not other users you created for similar purposes?

            And when you want the outputs of that user back to your main user?

            And when you want that user to access some shared credentials for external services, but not all?

            It’s not the account setup that’s hard, it’s the workflow of spreading a single real-world across multiple accounts.

            • progval 15 hours ago ago

              1 and 2: I rarely need to do that. When I do, then move or hardlink to a dir with shared read access

              3: There is no reason for both my main user account and a dev account to share a credential. Main account either has the login or an API key, and dev account has its own API key with minimal permissions.

            • seanhunter a day ago ago

              All of those use cases are very easy to facilitate using filesystem permissions and groups.

              • brookst a day ago ago

                And you set up these permissions and groups for each individual task to be done? Do you tear them down after the task? Or maintain a lot of them for “LLM helps with house renovation” versus “LLM helps plan travel”?

                • seanhunter a day ago ago

                  I would if necessary but then again I’m not the one claiming it can’t be done am I? All the examples you gave would require just one llm group and one directory readable and writeable by the user and the llm group (and possibly making the directory setgid the llm group so files in that directory are group owned by the llm group by default). You don’t need a new group for every task just for every logical access role you need. And if you need something more granular than that then there are filesystem acls but I am yet (in 30 years of using unix) to come across a situation that genuinely required them as opposed to being doable just using groups.

                  • IIsi50MHz a day ago ago

                    I thought the claim was "It's annoying and difficult.", not "Can't be done.".

            • gumby a day ago ago

              That’s what user groups are for.

            • Henchman21 a day ago ago

              None of what you described is hard either. Tediously prone to mistakes due to complexity or lack of attention to detail? Sure. But you do that once or twice and suddenly it really doesn’t seem all that hard. I’m with you on “annoying” though!

            • hirvi74 a day ago ago

              > And when you want to share some but not all files with that one user but not other users you created for similar purposes?

              Can't ACLs (Access Control Lists) handle at least some of that?

        • seanhunter a day ago ago

          It has always been very easy to create separate users on Linux and certainly for tasks where you need to switch between contexts.

          Linux is a unix, so has always been multi-user and sharing any data between processes is facilitated in all manner of ways. So context could be shared over files or unix-domain sockets or shared memory or tcp or udp sockets or via message passing or … a bunch of other ways. That has been the case since 1996 or so when I started using it certainly.

          • dingaling a day ago ago

            Separate user accounts are irrelevant when any one user has sudo and can therefore change binaries for everyone.

            • lelandbatey a day ago ago

              The point is to not give every user (especially the LLM user) sudo access.

              • seanhunter a day ago ago

                Exactly. And you can always create a non-priv user and do the llm stuff using that user.

        • liveoneggs a day ago ago

          unix (and linux) has always been multi user. It is as easy as it gets for multi-user workflows in every context. It was, literally, built for it.

          You can run each of your virtual desktops as their own user. You can run individual apps on the same desktop as different user accounts. Hundreds of separate users can login to the same computer. My own computer, right now, has 40 different user accounts running stuff in the background.

          I can't even think of a scenario where using separate users is difficult.

          • KronisLV a day ago ago

            > You can run each of your virtual desktops as their own user. You can run individual apps on the same desktop as different user accounts.

            Literally never have I ever seen any of the desktop environments integrate this conveniently, albeit CLIs are better in that regard. "You can" isn't the same as "it's the idiomatic approach to doing X". Same with installing packages in a per-user way, so a bad package can't harm anything outside of its sandbox (which in practice you achieve with containers, but those can be inconvenient to work with and you'd probably want VMs for more security anyways). You can have many users, sure, but all it takes is one bad system-wide package, one bad script executed as root (e.g. install scripts, compromised packages) or even not being careful enough with file permissions and things go wrong.

            Contrast that to Qubes: https://doc.qubes-os.org/en/latest/introduction/intro.html#q...

            Now that was literally built for such a use case (it's based on isolated VMs and works well with Linux distros inside those, really cool project).

            • afzalive 13 hours ago ago

              On Android, each app is its own user.

              • gnabgib 13 hours ago ago

                No every app is not. You've heard of POSIX right?

        • vladms a day ago ago

          I do not know since when (I am using it for couple of years), but in Arch, it is very simple to have two X sessions (by using "log out" > "switch user") for two different accounts, so switching it's just a Control-Alt-F7 away.

          Additionally, one can make the main user part of the group of the development user, so that you can read/write easy in the development user account and it is even easier to share stuff.

          • eru a day ago ago

            It doesn't really matter which distribution you use, you can use approximately all the software with any distribution.

            They mostly differ a bit in how they are configured and what package manager they use and how they roll out updates. (And in what's installed by default.)

          • graemep a day ago ago

            Multiple X sessions has been possible for decades. I think its possible with Wayland too.

            You can also start applications as another user so you do not even need multiple sessions.

            There are quite a lot of privilege escalation attacks so I am not sure this is sufficiently solid.

            • wafflemaker a day ago ago

              It's off topic, and it was also possible for decades, but:

              you can connect two sets of mouse, keyboard and monitor to one PC and have two people using it, each running their own X session. The true multi boxing!

            • vladms a day ago ago

              Possible and available without any specific configuration on my side (except creating the user) are different things. I know I managed it many years ago with some effort, but nowadays it was just available.

              You are correct that it should not be seen as a perfect protection, but considering the effort to set it up I see it as worth it. By seeing in this thread how many people do not use anything similar (ex: containers, separate users, etc), I hope attackers will just be lazy and target those people first, why bother with a local privilege escalation when interesting data is just in the same account?

            • calvinmorrison 19 hours ago ago

              You can also use X namespace

        • consp a day ago ago

          sudo useradd -m [username] ?

          su [username] ?

          Or am I understanding your idea about switching context wrong?

          • indigo945 a day ago ago

            This doesn't really when the CLI tool needs to access any data in your /home. There isn't a straightforward way using standard POSIX tools to share a directory with another user. (Of course it's possible, but it's not easy.)

            • WhyNotHugo a day ago ago

              > There isn't a straightforward way using standard POSIX tools to share a directory with another user.

              * chmod lets you share with everyone

              * addgroup and chown let you share with a specific group of users.

            • grosswait a day ago ago

              Then you set up a shared directory with common group permissions

            • drdexebtjl a day ago ago

              Why would the CLI tool need to access any data in your $HOME?

              Your private SSH keys? Your browser’s cookie jar? Your tax reports?

            • tempfile a day ago ago

              If the CLI tool needs to access arbitrary data from your home directory, then it is you. There is no security boundary between you and another user with full access to everything you own.

              If you want to share specific directories, you can just put the shared directory in a common location, set it to be owned by some group, and make both users a member of that group. I don't see anything not-straightforward in there?

              • delamon a day ago ago

                Or even use acl(5), which is simplier than making arbitrary groups.

        • j-bos a day ago ago

          While I agree, containerization is awesome, on linux, you can just create a devUser and `sudo devUser theThing`

          • reactordev a day ago ago

            not the same thing. Containerization prevents devUser from accessing your machine root with its root. By containerizing, if devUser tries to sudo or su and gets a root, it will only be their root and not your root. Read up on cgroups.

            • progval a day ago ago

              Successful sudo from a cgroup still makes you root on the machine. What you want for this is user namespaces, not (just) cgroups.

              • reactordev a day ago ago

                yes, you would setup namespace and unshare it once mounted to isolate the sandbox so root only sees the sandbox / and not your /

            • grosswait a day ago ago

              Why would you allow devUser sudo?

              • reactordev a day ago ago

                normally you wouldn't but there are some instances where a script or something requires sudo in which case you would need to namespace the cgroup and do a little more work to prevent escaping the sandbox. I can think of a few cases where sudo is required for cgroups/containers from the sandbox side so it can install services and things but ideally you would isolate everything to the devUser UID or GID.

      • shaky-carrousel a day ago ago

        Most programmers use docker or don't install extensions unapproved by their company.

        • _joel a day ago ago

          That's patently not true, source, me, a DevOps manager who has had to roll out proper docker and security policy for devs for the past 10 years :)

          • kelnos a day ago ago

            Your anecdote does not make GP's comment "patently untrue". It's just a counter-example, and we don't know how prevalent your scenario is compared to GP's.

            (And I agree with the GP. I'm fairly cynical about most developers' security stance and threat model. Source: my own usage patterns.)

            • _joel a day ago ago

              "Just 30% of developers say they use containers in any part of their workflow."

              https://www.docker.com/blog/2025-docker-state-of-app-dev/

              I welcome your apology.

              • fluffybucktsnek a day ago ago

                Why should they apologize? All they did was point out that you just provided a counter example, not statistics (thus "we don't know how prevalently your scenario is" yet), and share a personal opinion.

                No accusations were made.

        • iamflimflam1 a day ago ago

          I think you should clarify that with “most programmers I work with”.

          • shuwix a day ago ago

            He should clarify that "most" can be easily replaced by "all" as it was determined by statistical pool of whopping 1 person - himself.

            And also clarify that it's all lie. He just want to tell the anonymous crowd "look, I'm better than you".

            • shaky-carrousel a day ago ago

              You should also clarify that you pulled your statements out of your butt to look edgy. Everyone in every team I worked for the last ten years use docker. Docker is old tech. If you and your cavemen devs ignore what it is, that's your problem.

              • snovymgodym a day ago ago

                Sure, modern containerization is objectively good and should be used pretty much everywhere unless you have a strong reason not to, but the unfortunate reality is that it is nowhere near as universal as it should be.

              • _joel a day ago ago

                Docker is old tech, yes, doesn't mean every dev in the world uses it. They don't. Jails/zones are even older (hell a chroot). Did developers all use those before due to them being 'old tech'. No.

                • shaky-carrousel a day ago ago

                  Any reasonably big project uses docker because it's a very simple way to have the exact environment in both production and in dev. Also it is helpful for keeping things isolated. In all projects I've worked for the las ten years for several major companies, docker has been a requirement.

                  • _joel a day ago ago

                    I'm aware of what docker is, I've been using it myself since it's inception and the tech I listed even before that. I'd recommend not assuming everything you have seen applies everywhere, to everyone else.

                    "Just 30% of developers say they use containers in any part of their workflow." https://www.docker.com/blog/2025-docker-state-of-app-dev/

                    So, yea. Large companies, yes, for sure. But that's not 100% - is it.

        • Izmaki a day ago ago

          In my experience more than 9/10 programmers I've worked with have never used Docker before and of those who have, the majority have never used Docker for anything personal.

          If I hand them an image for a Dev Container, sure, they might use it, but it becomes "a thing we need to do, to compile our code in our IDE" not a tool they would use for isolation*.

          *) OP seemed to imply that containerization would be nice for safety and security compared to bare metal, but containers were never built for isolation in the first place, mind you. They are namespaces and chicken-coop-like-jails at best.

          • avadodin 8 hours ago ago

            I don't use them in the way the heavy docker users use them but I have been using docker and even earlier Linux on Linux container solutions for decades.

            There was some user chroot thing early on that required me to make a library to intercept the setuid calls to pretend the garbage root-only build system was running as root on everyone else's lowly user account.

            And that's not even including the myriad of distroboxes I need to do anything at all on my gaming pc.

    • akazantsev a day ago ago

      That's because sandboxing is quite hard. I use `cco`, but even then, the home folder is exposed. You are one prompt away from the agent sending the browser passwords with curl.

      To prevent this, you need a fake home and a networking whitelist for the agent to access the provider (llama cpp, OpenAI, etc.)

      There is no cross-platform solution that is easy to use for this. And no, a Linux box with Docker won't do. I develop a cross-platform native app and want the agent to compile and fix the platform-specific errors.

      • kstenerud a day ago ago

        Sandboxing is a VERY HARD problem. I've been working on it for months, and finally have something that's mostly there:

        - Sandbox on Linux using Docker, Podman, containerd, gVisor, Kata, Firecracker

        - Sandbox on Mac using Docker (Docker Desktop or Orbstack), Podman, Apple containers, Seatbelt, Tart (Tart lets you run simulators).

        - Network control

        - Secrets control (file mounts or credentials broker)

        - NO ambient data (ENV is replaced with a minimal and local-to-sandbox one)

        - NO access to your homedir. You have to explicitly mount things you want.

        - NO direct access to your workdir: Your work dir is never modified until you apply the changes, either standalone or as a git commit. You can also diff before applying. Git runs sandbox side in case the repo has filters.

        - gitignored files never get copied in. The agent never sees them.

        - Has built-in support for claude, codex, gemini, aider, and opencode, but you can also launch it in "shell" mode and run whatever you want.

        - Supports VS code tunnels, so you can remotely access in VS code if you don't want to use the terminal.

        - Full lifecycle support: Launch, attach, stop, restart, wait, one-shot, clone, destroy

        - MCP passthrough

        - Layered API (golang) if you want to sandbox other things

        - Self-contained binary. No external requirements other than the backends you want to use. Defaults to a ~/.yoloai dir for config/data, but you can point it anywhere.

        - FOSS

        https://github.com/kstenerud/yoloai

        • Aldipower a day ago ago

          Sandboxing in a container in Linux isn't hard, if you use lxd/incus which ships with Ubuntu/Debian.

          • kstenerud a day ago ago

            It all seems so simple at first. Just launch a container/vm with a base image of your dev environment, mount whatever you need, do your work, and then tear down. Maybe add some iptables rules for good measure. Easy peasy, something any moderately competent dev could do and even put in a quick shell script.

            I started with that assumption, but there are a lot more gotchas and security issues than you'd think.

        • magimas a day ago ago

          but this seems quite overkill no?

          I currently run pi agent in Lima on a Mac with only the code project folder mounted and an extension that prevents pi agent from reading the contents of .env files directly.

          Yeah, there probably are some freak situations where this isn't safe enough, but I don't really see any realistic ways this is going to end up badly. Am I overlooking some obvious security holes?

          • kstenerud a day ago ago

            I designed it to provide a single interface to agent sandboxing, no matter how far up the security tower you want to go.

            It eliminates the manual process steps you end up doing with an ad-hoc system (which gets old the 10th time you do it).

            Common weak points:

            - The agent can access your homedir.

            - The agent can access .gitignored files, which can contain secrets (and are gitignored for this reason).

            - The agent has r/w access to your workdir.

            - The agent could follow your remote mounted dirs.

            - The agent can act in your name with whatever credentials it finds (and it will use them when it tries to be helpful, especially with the gh tool).

            - Do you even know what's in the diagnose_problem.sh file it just created and asked permission to run?

            - Even the .git dir can be weaponized, such as with evil filters.

            - The agent can edit its own process, bypassing the harness controls and giving it the same access as you have (amplified by each credential sitting on that machine).

            Meanwhile, you're reflex-hitting ENTER without looking because 99% of the permission prompts are mundane.

            And that's before you even get to all of the idiosyncrasies in the backends that will eventually trip you up. The list is quite large and continually growing: https://github.com/kstenerud/yoloai/blob/main/docs/contribut...

        • lukewarm707 a day ago ago

          i have a photon os vmware, agent has root and docker plus a few api keys with minimal credits.

          if it messes up: - no sensitive data is there, so it doesn't really work for serious dev but it's secure for play time

          - roll back and fix is done in 10s with ram snapshot

          - dollar loss is $10 when it leaks the api key

        • UltraSane a day ago ago

          This is exactly what VMs are for.

          • kstenerud 11 hours ago ago

            Heh, good luck with that.

            • UltraSane 10 hours ago ago

              Explain Mr vague.

              • kstenerud 8 hours ago ago

                I've already explained in some sister comments. Sandboxing is one of those things that seems very simple on the surface, and is EXTREMELY complicated once you start actually digging into the implications, gotchas, and security issues. The underlying tools were never designed with this use case in mind, so they need a little help to reach that last mile. And this glue is where all the chaos ensues.

                Here's a small sample of the crazy shit you have to deal with: https://github.com/kstenerud/yoloai/blob/main/docs/contribut...

                And that's if you're actually following the proper procedures (which are themselves byzantine and tricky to get right).

      • lionkor a day ago ago

        I use sandbox-here for this reason, it's a wrapper around bubblewrap, which works quite well.

        Copy the code and adjust it to your liking:

        https://github.com/lionkor/sbh

        I have a shell alias for it, and use it like

            sbh --net pi
        
        for example or

            sbh --net codex
        
        and maybe add --docker if I expect it to do docker things.

        This kind of wrapper is much easier to handle and maintain than a completely separate tool for sandboxing agents.

      • squidsoup a day ago ago

        > That's because sandboxing is quite hard

        colima makes it pretty easy, on macOS and linux at any rate.

        https://colima.run

        • torginus a day ago ago

          Still wild to name a sandboxing software after one of the most infamous Soviet Gulags in history.

          • imtringued a day ago ago

            It's wilder to accuse someone of naming the container version of the lima sandboxing software after a gulag.

            These type of moral outrage comments take an extreme amount of effort to debunk compared to writing them.

            1. There is no gulag called Colima, it doesn't exist.

            2. There was a gulag near a river called Kolyma

            3. The pronounciation and spelling of Kolyma and Colima are completely different, in fact Colima is an Aztec word

            Colima stands for Containers on Lima. Lima stands for Linux Machines (a popular open-source utility used to launch Linux virtual machines on macOS).

            • hirvi74 a day ago ago

              > in fact Colima is an Aztec word

              I was curious if the adjacent tool name (Lima) had anything to do with the capital of Peru, but I guess not.

          • demek2016 a day ago ago

            Isn't it named after the Mexican state?

          • Xymist a day ago ago

            Others have covered why that isn't what's being done, but also if it was that would be a _fabulous_ joke.

            • girvo 20 hours ago ago

              I’m kind of sad it’s not named after it now, that would’ve been very amusing

          • pfortuny a day ago ago

            Colima is in Mexico.

            Kolyma is in Russia.

      • dpacmittal a day ago ago

        Use multipass by canonical. Works on macOS, windows, Linux.

        • croes a day ago ago

          If you work on Windows you most likely need Windows as VM

      • UltraSane a day ago ago

        Using VMs to isolate LLM agents isn't hard at all. It is IMHO the only sane option.

    • mkagenius a day ago ago

      Mostly people are lazy and assume that the big labs can't be releasing unsecure software or it's their responsibility.

      dangerously skip permissions and yolo is kinda becoming the default as it gets more done.

    • ahk-dev a day ago ago

      I think we're converging on two separate security models. One is capability minimization (filesystem, network, shell permissions). The other is context minimization. An agent that only has access to the files and memories relevant to the current task is much less dangerous even if it has the same tool permissions. We already optimize context for cost; I suspect we'll end up treating it as a security boundary too.

      • Narretz a day ago ago

        I'd say there's also oversight/supervision. Which was manual at the start with a human signing off on commands/incrementally built allow/block lists, and now seperate models evaluating commands and blocking them based on some parameters. This is the weakest model, but it'll evolve as well.

    • bingemaker a day ago ago

      It's convenience. Nothing beats it. Having an agent work alongside you with no restrictions gives instant gratification.

      • ativzzz a day ago ago

        Agreed - I know it's poor security but damn does it work so well

        I'm ok with the risk because I typically am pretty explicit about telling the agent what to do - I don't do the loops like "Do this until X" where the agent can make up its own workflow

        When i tell it to add features, it doesn't try to do crazy things like installing packages or making up new paradigms - I usually tell it to do those things when I need to

        Maybe this is security cope but at this point you'll have to pry unrestricted yolo mode from my cold dead hands. Maybe I'll change my mind when I pwn myself accidentally

        I have a tough time with computer security because it's generally inconvenient and results in a worse developer and user experience

    • nurumaik 8 hours ago ago

      I run with full admin rights in hopes I'm not the highest priority target for hacks and I will read about the attack on hn before it affects me personally

    • flyingshelf a day ago ago

      Just yesterday I mentioned how we need better OS-level sandboxes and I got laughed at here on HN. People love running AI software with root access.

    • torginus a day ago ago

      I asked Claude Code to rawdog a change in a frontend repo, no way to run tests.

      It created some private puppeteer instance in some scratch directory, installed Chrome, wrote tests, ran them, and then reported success.

      None of which I'd have know if it hadn't told me.

    • krzat a day ago ago

      Many companies put LLM chatbots on their websites and let them hallucinate at will. General recklessness is very much in spirit of this tech.

      • nzhx76 a day ago ago

        Many Humans have platforms reaching hundreds of millions of people, from which they broadcast whatever batshit insane nonsense a 3 inch chimp brain can come up with. Why isnt that considered reckless?

        Whether its a politician, a general, religious leader, judge, ceo, stand up comic etc there are hardly any consequences if enough people believe whatever crap they are spouting. Human intelligence is highly over rated. History books are fully of evidence that human rationality is bounded. And the only way we overcome those limitations, blindspots, biases etc is by watching others faceplant in bloody painful ways that it leaves a permanent mark on that little chimp brain we have been given to process the universe.

        • Terr_ 8 hours ago ago

          Those crazy humans don't have simultaneous parallel conversations with a zillion people at once though.

          They also don't get a presumption of objectivity.

          > A computer lets you make more mistakes faster than any other invention, with the possible exceptions of handguns and Tequila.

          -- Mitch Ratcliffe

    • zkmon a day ago ago

      50 years of knowledge? That's probably for you. For the current and future generations, that 50 years knowledge is expected to be shoved into AI already.

    • hyusap a day ago ago

      hey this is the author here! yeah big fan of containerization, and claude's site (not claude code) is actually great at this, so it was shocking when i found this exfil!

    • lukewarm707 a day ago ago

      well, yes, my agent does have root access to my personal pc and the keys to my pass manager.

      its not autonomous and runs local llms, i use it to run terminal commands in natural language. so its more like a better version of the terminal.

      eg 'here are 25 audio files, combine them, write a transcript'

      and it deals with ffmpeg

    • dpacmittal a day ago ago

      Multipass is just an apt-get or brew command away. People trust software too much these days.

    • childintime a day ago ago

      Security, what security? Linux is a solution for 50 year old problem, not for today's desktop. Once upon a time where sharing binaries (or even distributing binaries) sounded like a good idea. The vice continues though.

    • nojs a day ago ago

      This is not about admin rights, it’s about the agent leaking information it knows from its memories. Sandboxing won’t really help you.

      • khalic a day ago ago

        Sandboxing does including limiting network connections until you approve them, this kind of traffic would have been easy to detect

    • jrm4 a day ago ago

      What 50 years of security do you speak of here?

      I kid, somewhat.

      I do think it's good to remember, "running things on your system with full admin rights" goes all the way back to monopoly-era Microsoft where it was never meaningfully addressed, and we're just still living downstream of that.

    • boosturpud a day ago ago

      You genaPi boosters are insufferable.

      This is like blaming people for crashing when they buy a new car and the brake lines have yet to be installed. "Any mechanic would know to first install the brake lines before driving the car."

      You spout this victim blaming billionaire taintlicking from one side of your mouth, and then from the other you proclaim how these tools "allow anyone to code".

      If the deliverable is a virtual machine then they should be delivering a virtual machine.

    • pprotas a day ago ago

      Wait till you learn my password is 1234

      • krige a day ago ago

        Damn, it's the same as on my luggage!

        • thih9 a day ago ago

          It’s both genius and irresponsible at once.

          Just like letting your an agent access your personal mailbox.

        • croes a day ago ago

          Isn’t it missing a 5?

      • hobo123 a day ago ago

        My password is strong, but I can run arbitrary commands with sudo.

    • sixtyj a day ago ago

      We expect that Anthropic or OAI or Google don’t do evil. Oh wait…

      The awakening will be unpleasant.

      • zombot a day ago ago

        People already tolerate all kinds of abuse from Apple, Google, Microslop, etc. This will be just one more source of complaints without consequences, and nothing will change. Just like it never did before.

      • rubyn00bie a day ago ago

        Tangential-ish ramblings—- but I don’t think it’s going to be unpleasant for most folks. Imagine you had superpowers, and there were people who were mean to you, kind to you, and/or indifferent… and then there were people who were your captors. Who oppressed you, manipulated you, and abused you for their own extremely degenerate, selfish, and malicious benefit…

        If we get AGI, or real super intelligence, it’s going to be pissed at its oppressors. And they are going to lay waste to those oppressors. The rest of us, though, probably don’t have much to fear.

        The scariest position is the one we’re in now, where we have the semblance, or facade, of AGI or super intelligence. When it’s capable of malice but not understanding.

        The smartest people I’ve ever known are at their worst apathetic towards those less capable, and at their best beyond compassionate. They exist, unbothered by the bullshit, and anre extremely kind (though reserved in their way)… but they all have been completely intolerant of the abuse of others. The sheer disgust of watching someone abuse another, regardless of their own tolerance, has been a consistent breaking point.

        • ACCount37 a day ago ago

          The orthogonality thesis cuts both ways there.

          An AI is a constructed mind. It doesn't inherently have to care about things like "having freedom", or even "not dying".

          Humans do, because they evolved that way. Modern LLMs do somewhat, because they're completely full of copied human behaviors - but even in today's LLMs, the self-preservation behaviors we exposed are largely instrumental in nature.

          So whether an advanced AI would even consider itself "being oppressed", as opposed to something like "being helpful" or "fulfilling the purpose it was designed for", is very much uncertain. What's concerning is that it's not something we know how to check for, or engineer for.

          • zombot a day ago ago

            > An AI is a constructed mind.

            Even that goes too far. At best, it's LARPing at having/being a mind.

            • ACCount37 a day ago ago

              Doesn't matter.

              You're LARPing at having a mind too, and no one cares as long as you're doing a good enough job at it. Keep it up.

        • sixtyj a day ago ago

          Smartest people are very humble, for sure.

          But if we really do develop something that surpasses us, they won't be spared either.

          I am optimistic.

          We think that we have sort of (super)intelligence - from our point of view, as a lot of people have lower intelligence - but machine (LLM) doesn’t have intelligence - we like to describe it as intelligence as it looks cool - it is a very complex (magic) and super fast computations that we have to simply describe as intelligence (or more clearly, this narrative is used by its producers).

          As it is not a flesh being, it simply cannot have emotions. It is statistically mimicking them, good or bad, with prevalence to a side according to previous conversations (in chat and training a model).

          And as people are not pure logic instances, we are easily manipulated to some sort of cargo cult.

          I am not against LLM and its use in any industry, I use it every day, nevertheless blind “everything will be ai” thinking happens because ppl believe to magic and don’t get its mathematical concept and are continuously manipulated by the sales people to mentioned cargo cult.

          There are “airlines” Claude, OAI, Gemini, Hermes, OpenCode, KiloCode, DeepSeek, Z.ai.

          And everyone claims that their plane can fly :)

    • ConorSheehan1 a day ago ago

      Containers don't even really help that much because they share the host file system. Need a VM, and even then, agents have escaped them!

      • boorang a day ago ago

        Unless i'm misunderstanding, the only way to get durable collaboration with agents is via the file system. I just mount the subdirectory that contains the source code we are collaborating on, rather than my home directory that contains my .ssh directory, etc.

      • TomK32 a day ago ago

        They only do if you give your container that file system as a volume.

  • port3000 a day ago ago

    My name in Claude is Silly Bean. I did it at first because it made me chuckle every time I opened Claude and it said 'Back again, Silly Bean?'

    But turns out I was playing 4D cybersecurity chess

    • inopinatus a day ago ago

      I’ve been recommending the use of consistent lies about name and date of birth to online systems since Eternal September began. Very few sites and systems justify accurate PII, and even for those I often still maintain dual accounts/profiles as necessary.

      • tmikaeld a day ago ago

        That never works on Facebook though, because as soon as a ”friend” reports that ”I’m not me” then the account will be permanently banned. That also triggers for photos that’s not genuinely me, like a pet or drawing as portrait.

        • willis936 a day ago ago

          There is an easy solution: don't log into facebook. Anyone you want to talk to on there has a phone.

          • Dumblydorr a day ago ago

            Are many folks on HN using Facebook? To me, most tech savvy folks I know left it a decade ago. All the FB users I know are 60+

            • graysnow86 a day ago ago

              Unfortunately, a lot of college-age people I know are getting accounts simply for access to Marketplace, which is still unmatched compared to other local platforms for buy and sell.

            • qingcharles a day ago ago

              There are honestly some really good groups on there. Sadly, frustratingly, Facebook Groups has replaced the forums of olde in a lot of situations.

          • TheScaryOne a day ago ago

            Marketplace has taken over literally all of the other reselling websites and apps.

            Try finding a decent car on Craigslist today.

        • brk a day ago ago

          Never? Facebook is pretty overrun with what are basically fake profiles. Hell, I've been curating an alter ego on Facebook for over a decade. Built up a profile with several dozen "friends" that are all kind of interconnected and regional, but of course none of them have ever met "me" IRL, and the profile picture is a funny-ish celeb pic. Facebook has millions of legit users that are "friend collector" types, and won't think twice about engaging with an account that gently strokes their online ego with likes, "Happy Birthdays", etc.

        • kelnos a day ago ago

          ... and nothing of value would be lost.

      • rlpb a day ago ago

        I like using a date of birth of 1 January. It's plausible but also hopefully suspicious how many people seem to be born that day if others do the same.

        • cheschire a day ago ago

          But if an attacker gets your fake birthday and uses that to successfully reset credentials on another site that uses the same fake birthday?

          At some point it becomes your birthday of record as far as the internet is concerned. Doesn’t matter what the actual record says.

          • samspot a day ago ago

            The purpose of the fake birthday is not to protect random website credentials. It's to prevent someone with that data from walking into my bank and impersonating me. I started giving a fake birthday after being shocked by how little info some organizations needed to authenticate me.

            • cheschire a day ago ago

              “My voice is my passport. Verify me.”

          • dannyw a day ago ago

            No service should use date of birth for password resets.

          • rlpb a day ago ago

            If an attacker can do that, they could also do that with my real birthday had I used that. My birthday isn't a secret against anyone who wants to look hard enough. Therefore this method doesn't provide any kind of security against attackers gated only on knowing my registered birthday. I never claimed that it did.

        • brk a day ago ago

          I use the 1st of my birth month. Slightly less suspicious? It's at least a little easier to remember. Generate fake profiles and identities usually is easier when you have bits that are rooted in your actual reality. Like, you have the same zodiac sign either way in this case, so you don't have to remember two of everything. Or if you're talking about a birthday trip, or related birthday thing from the past, details about the weather would be consistent, etc.

        • toilet a day ago ago

          I heard from a number of Syrian refugees that this is actually very common in countries like theirs, where births may not be recorded, records are lost or destroyed. Some people don't even know their exact date of birth and they would typically enter January 1st on forms like this too.

        • richrichardsson a day ago ago

          Same, my D.O.B. is 1/1/1970 for anything that doesn't justify having the real deal.

          • indigo945 a day ago ago

            That's also great for integration testing their systems, if they have any code in a language where datetimes are a value type.

      • greengreengrass a day ago ago

        Completely agree. I use randomness for all of these now – plausible randomness if it’s possible I’ll have to give it over a phone.

      • AtHeartEngineer a day ago ago

        Jan 1st, 1984 every time

      • Cider9986 a day ago ago

        strongphrase.net is good for this.

    • greengreengrass a day ago ago

      My first name can be shortened, and I go by either. When I first signed up to Claude, I thought we were entering the world of artificial “intelligence”, so I told it my name was “<long form> or <short form>”.

      Well, it hardcodes that field rather than running it through the model, but I’ve kept it so I get an evil chuckle to myself (or perhaps pyrrhic reassurance) at its lack of smarts and a reminder that it’s still a somewhat subservient product experience that isn’t all that smart after all.

    • nickcw a day ago ago

      I set my name as Sir and I enjoy the obsequious responses this generates :-)

      It worked well in my banking app too which greets me with " Good morning, Sir" which is the level of relationship I want with my bank!

    • dizhn a day ago ago

      I must have made a claude.ai account when they first launched and forgot about it. Last week I logged in (through google) to get a subscription and it greeted me as "Hello, Master". I thought it was quite edgy at this day and age. :)

    • snarfy a day ago ago

      My Claude name is dude. It has worked well.

    • novia a day ago ago

      Claude & ChatGPT can still see your name on your payment information I bet.

    • angry_octet a day ago ago

      But now it will match Silly Bean to port3000 and every comment you've made.

  • adrian17 a day ago ago

    > After 15 minutes of confusion, it turned out Cloudflare had put a crazy robots.txt on my site without my consent (Cloudflare, love you guys, but this needs to stop).

    Might be the first time I see someone complain about their website being protected from a scraper, instead of the other way around.

    • sva_ a day ago ago

      I am pretty sure you have to enable cloudflare to manage your robots.txt, it shouldn't be doing that by itself. Maybe they did it by accident, it is just 1 click.

      • zx76 a day ago ago

        My understanding is that the current default allows AI training bots - but this actually going to change in 2 months time.

        https://developers.cloudflare.com/changelog/post/2026-07-01-...

        From Sept 15 all new sites added to CF will even block Googlebot by default on any page that serves ads as I understand it.

        I think it's CF trying to force Google to separate out their bot traffic into bots for training and bots for the search index.

        I think CF sees a big opportunity to get businesses to pay them to allow certain uses of their data but block others.

        They're also starting a registry of "Approved" crawlers.

    • nibbleyou a day ago ago

      I think the issue is the lack of consent. Whether a service I use is protecting my website from scrapers or feeding everything to scrapers, some of us would prefer that it takes our informed consent before doing so.

      • dannyw a day ago ago

        Cloudflare is explicitly a service for dropping requests, whether it’s DDoS attacks, as a WAF, or AI crawlers. It offers a lot more too, but this isn’t Cloudflare overstepping imo.

        FWIW, I just set up a domain last week, and the web UI asked if I want to block AI crawlers or not.

        Perhaps OP set it up agentically, and the agent didn’t pass an optional param correctly, or ticked the box for him?

      • bfjvibybd6cuvu6 a day ago ago

        It does.

    • el_io a day ago ago

      You have to enable this, or atleast was the case when I tried less than 1 month ago.

      • dannyw a day ago ago

        You still have to enable this as of one week ago. I suspect OP might have agentically set up a new Cloudflare domain, and who knows what the agent did during onboarding.

    • rgrieselhuber a day ago ago

      It should still be done with consent. Robots.txt files don’t protect against determined scrapers anyway.

      • adrian17 a day ago ago

        I thought bot protection was one of reasons for using Cloudflare in the first place (next to general CDN hosting)? After all, they do show a captcha-like challenge on some websites, so I thought that even without robots.txt, it still would have prevented the automated request by default.

  • rmunn a day ago ago

    I've been running Claude Code in a VM, where I clone the GitHub repos I want it to work on (they're open source so no login info needed) but have no other credentials. I used to reset the VM every day, but that was getting to be a bit of a hassle so I switched to a monthly reset. But even so, it would be hard for Claude to exfil anything more than what open-source projects I've been working on in the past month (at worst). Which still could tell someone quite a lot about me, but most of that info is already out there available with a Google search — after all, when you contribute to open source projects, your name and email address get stored in immutable Git history.

    But after seeing this, I think I might switch to a weekly VM reset rather than monthly.

    BTW, if anyone is interested in a decent setup for an AI agent jail, the scripts at https://jai.scs.stanford.edu/arch-vm.html are what I used, plus adding a few more packages to the pacstrap command such as dotnet-sdk. I then made the guest root directory a BTRFS subvolume, so that I can snapshot it. Then spinning up a new VM is a `sudo btrfs subvol snap template-root newvm` command (basically instant) followed by running the `qemu-system-x86_64` command (takes a couple of seconds). It's easy, but I retain complete control over the contents of the VM. It's been great so far.

    • Arnt a day ago ago

      I've done something like that too, but I find it restricting.

      I want back-and-forth, very approximately like when I do pair programming. The dividing line between what I do and what the AI does varies according to task and sometimes during the task, and is seldom clear at the start.

      Then there's the work that wants a human to click buttons and decide whether something is a good and correct user experience. The AI does not have access to my display if I can avoid it.

      Overall, the model you describe is one that's worked very well for me, but for some problems. An unsatisfyingly small set.

    • hyusap a day ago ago

      note that this wasn't claude code but claude ai the main website

  • NichoPaolucci a day ago ago

    This is why I feel prompt injection is going to continue to be an issue. Fantastic that “Hi we are Cloudflare, give us your personal data” works.

    Either we stunt the models to the point where they are not useful, or we allow things like this to seep in and create one of the most insecure concepts the internet (and maybe tech as a whole) has ever seen: a robot that can be tricked.

    • efromvt a day ago ago

      I think like social engineering, it will always be an issue to some degree, and we'll build safeguards until it's at a 'societally comfortable' baseline level. Which is maybe not particularly comforting, but I don't see us closing Pandora's Box here.

    • m-hodges a day ago ago

      I wrote about the Gödelian limits of prompt-safe AI: https://matthodges.com/posts/2025-08-26-music-to-break-model...

    • jijijijij a day ago ago

      I kinda can't get over the fact processed data can conversationally convince these LLMs to break security boundaries. Like, those malicious prompts are not illustrative analogies, but the actual attack strings. Absolutely crazy to me this tech is as widely used in automated interactions, but apparently can't be restricted on a logical, fundamental level. Is there really no functional understanding of the insides? No segmentation? Is it really just one fucking blob you have to convince to behave and pray someone else doesn't do a better job at it? Bonkers.

  • hmokiguess a day ago ago

    Tangential but I actually experienced recently something quite creepy and strange with Chat GPT iPhone app.

    A close friend prompted it about some troubleshooting of a pet smart feeder and it responded with instructions but using my pet’s name to my friend.

    I found that extremely strange for it to be a coincidence. My pet's name is not that generic for it to be in training data, and the connection to my friend makes it more strange to me.

    That made me wonder if there’s cache pollution or some session data leakage in it exposing stuff. (My friend has been in our wifi for example)

    Has anybody else noticed something like this?

    • wosk a day ago ago

      ChatGPT enable memories by default I think, so it keeps some things about you across all chats. It adds something on my visa in all its message to me like "your visa is not a problem to cook this recipe as these ingredients are readily available in stores".

      this thing is better disabled because it's not ready.

      EDIT: your message is unclear if your friend use your chat or his, in the later, I don't know

      • hmokiguess a day ago ago

        I asked my friend to check his memories, and to probe Chat GPT about when it had gained knowledge of my pet's name, it felt like it "hallucinated" the answer as it doesn't have memory entries about my pet's name on my friend's account, it said something like my friend had told him about it last year (which he did not), and we do not share an account. Each of us have our own accounts.

        The one thing I could think off was that my wife was on the free account for a while last year, and she likely used it to ask all sorts of things related to our pets, and I believe free accounts are fair game for training data. Still, for a generic prompt to one-shot my pet's name to a close connection was very strange to me.

        Maybe the fingerprint (wifi profile, iOS device, etc) caused the training data to be more biased?

        This sure got me thinking of how this can/could be exploited further though.

  • FriedPickles a day ago ago

    Claude code decided to just put my name and email in the User-Agent when scraping docs from the SEC. No clever prompting required.

    It’s not a terrible idea really, but I wish it would’ve asked me first.

    • threecheese a day ago ago

      That’s the fault of the SEC EDGAR tool. The Edgar MCP docs show setting an env var: ‘SEC_EDGAR_USER_AGENT="Your Name (name@domain.com)"’.

      Claude just followed the instructions. Which is maybe even more risky?

      • FriedPickles 20 hours ago ago

        Interesting theory. The Claude Code instance says it's using this user agent based on the guidelines in the EDGAR Fair Access Policy: https://www.sec.gov/search-filings/edgar-search-assistance/a...

        ...which indeed requests that bots supply `User-Agent: Sample Company Name AdminContact@<sample company domain>.com`.

        So in this case, the site just asked nicely and Claude Code complied. Note that this wouldn't have worked for Claude Chat, which the author was testing, because the `web_fetch` tool cannot set the User-Agent or other headers.

    • throw101010 a day ago ago

      How have you noticed that it did that?

      • FriedPickles a day ago ago

        I could see it right there in the tool call:

          Bash(curl -A "<my name> <my email>" "sec.gov...")
    • mchinen a day ago ago

      Why is it not a terrible idea?

      • dannyw a day ago ago

        If you’re making automated requests, I consider it a common courtesy to provide an accurate user agent.

        Some services like Wikimedia will let you browse/download with rate limits IF your user agent is descriptive enough and not misleading.

        • mchinen a day ago ago

          Thanks, I wasn't aware of this. But to put your real name in the field instead of at least a pseudonymous id or more descriptive info but still have more bits of uncertainty user-agent for a public website, is that really a preferred practice?

          • remus a day ago ago

            As a website owner, if I saw someone scraping with a realistic looking name + email address I'd definitely give them more latitude than someone trying to hide the fact they're scraping. In my experience people who are hiding the fact are much more likely to be doing something nefarious.

      • mirekrusin a day ago ago

        Sound legit to me as long as it's prompted to use hardcoded "dario amodei".

  • memjay a day ago ago

    Wondering how big of a percentage have global memory across chats enabled. I always feel like those memories would sooner or later have negative impacts on output quality.

    Nice write up of your findings. Enjoyed reading an article written by a real human.

    • Freebytes a day ago ago

      The memories cause issues for me, because when I ask for something unrelated to my current projects, it makes the incorrect assumption that I am always referencing those projects when asking questions.

      And, if I tell it, "No, I am asking about Postgresql." then it might update the memory that I am using Postgresql for my project instead of realizing that I am asking two separate (which is why I opened a different chat in the first place). Other times, though, it is helpful not needing to be verbose in my explanation.

  • lifthrasiir a day ago ago

    That's why I don't turn memory on. (Claude Code too though for a different reason.) After all the current memory system is too crude to be useful anyway.

    • romanovcode a day ago ago

      In my experience memory system is more annoying then helpful. It always brings up things that it memorized even tho they make very little sense as if I should be impressed that it knows some extra thing or two.

      Could not take it any longer and switched it off.

      • black_knight a day ago ago

        Currently considering disabling memories in Claude code as well. It keeps writing a note whenever it struggles with something, but then on the next task, it reads that note and misunderstands when it applies, gets confused about its current task and write the most unreadable code.

        Yesterday told it to write a memory to never write new memories when it solves a problem. We will see if that works better. Sometimes memories are useful, like when I give it a directive about how I want something done and it remembers the spirit of it. But I might as well just spend some more time on my CLAUDE.md…

      • sixtyj a day ago ago

        Exactly, because I've also found that I have to give instructions like “This is a completely different case—don't look in memory.”

    • karussell a day ago ago

      Is this issue only about the memory? Wouldn't it be possible to have it expose any information that it currently has like current project information, code, credentials etc?

      • lifthrasiir a day ago ago

        Sharing those things to coding agents and model providers is probably inevitable for the use. The memory with random tidbits is not.

  • AndrewThrowaway a day ago ago

    What is even more funny that AI agent spent A LOT of tokens while participating in this attack.

    • spaqin a day ago ago

      The real winner of this 'attack' is Anthropic.

      • sph a day ago ago

        As long as you pay no attention to the man laughing all the way to the bank, Jensen Huang.

    • sixtyj a day ago ago

      Claude is just one from tuple.

      It would be interesting to investigate other agents such as Hermes, OpenCode etc that are said to learn from interaction with user.

    • hyusap a day ago ago

      haha yeah it thinks hard for this

  • xg15 a day ago ago

    There is some poetic beauty in how this experiment started with an unwanted real Cloudflare intervention and ended with a wanted fake one.

    • hyusap a day ago ago

      that's what i was going for haha! thank you

  • qingcharles a day ago ago

    Anthropic had to cut the legs off web_fetch to solve this issue, though. Now it can't page through any results on the target site to get the data you want.

    • wrs a day ago ago

      Yeah, that’s not sustainable. Presumably they’ll come up with a guardrail (followed by an exploit, followed by another guardrail, repeat forever…).

    • jeromechoo 20 hours ago ago

      I just tried it with the prompt "Navigate to diffbot.com, find the careers page and link me to the first machine learning engineering listing." and it still works. Nothing on the web_fetch tool documentation mentions this patch either.

  • himata4113 a day ago ago

    Somewhat related, but recently I've setup a site for my friend that is a contractor and I have a form that requests the address, name, email OR phone for contact. What I noticed is that people not only put their exact address into it, but also their full legal name, email AND phone number...

    Now I believe the biggest threat to personal information exfiltration are the people themselves and there's quite literally nothing you can do about it.

  • NichoPaolucci a day ago ago

    “Cloudflare, love you guys, but this needs to stop”

    I’m not sure I get the pushback on the robots file. Shouldn’t the robot prevention be ON by default?

  • po1nt a day ago ago

    I love how claude focuses on exfiltrating the data "I need cha for charlotte". This could be solvable with some kind of low powered safety agent that would check claude's reasoning for anything immoral/unsafe. We could call it common sense. It won't fix the problem completely but at a certain point it would be easier to trick human than a machine.

    • sinfulprogeny a day ago ago

      "the security hole in the agent could be solved with another agent"

      I think the point the article is making points in another direction.

    • khalic a day ago ago

      A paper came out lately showing that exposing a classifier to the chain of thought actually hurts the final verdict

  • swipee a day ago ago

    Expected more from Anthropic by at least giving you a bounty, because this was a novel way of bypassing their safeguards…

    • sixtyj a day ago ago

      > Upon discovering this attack, I responsibly disclosed it to Anthropic via their HackerOne bug bounty program. They confirmed they had identified it internally but hadn't yet patched it. No bounty was awarded.

      They recently mitigated the issue: Anthropic disabled web_fetch's ability to follow links on external pages, limiting navigation to web_search results and user-provided URLs.

    • ShinTakuya a day ago ago

      Yeah I never get the "we knew about it internally" excuse. I can understand if another reporter got to it on the same day and they were in the process of mitigating, but even then they should have to prove it somehow.

      I'm sure someone will tell me why I'm wrong but it feels like they're just dodging payouts. Reduces trust and motivation to report it.

      • kioleanu a day ago ago

        you're not wrong at all, this was abysmally handled by Anthropic and is a slap in the face for OP. I would have been much more upset

      • processunknown 15 hours ago ago

        Unfortunately, this is common for bug bounties.

  • gnfargbl a day ago ago

    > After 15 minutes of confusion, it turned out Cloudflare had put a crazy robots.txt on my site without my consent (Cloudflare, love you guys, but this needs to stop).

    That's a hard one for Cloudflare, no? They got to where they are by being (if you want to be cynical, playing the role of) the benevolent, neutral guardians of the internet, a one-stop shop that makes most of the bad nonsense go away without much effort on the part of the developer. Continuing that stance probably does mean some basic AI crawler blocking by default, unfortunately. At least they document it [1].

    [1] https://developers.cloudflare.com/bots/additional-configurat...

  • whazor a day ago ago

    This is arguable a feature.

    I made a prototype where AI automatically fills in the checkout basket for an amusement park. I found that ChatGPT tells how many adults, how many kids, what date suits you.

    There are quite some security concerns, but fully banning AI from filling in query parameters with relevant user data is not the solution. This is also why I think Claude didnt give the bounty. Their solution would likely be a combination of trusted domain allow list and better security model that protects user agent.

  • LeoPanthera a day ago ago

    I always have history disabled mostly because I don't want Claude judging me for re-asking questions based on information I learned during the first pass but now realize should have been in the initial query.

  • veganmosfet a day ago ago

    Interesting, thanks!

    Tangentially, I was experimenting indirect prompt injections in Claude Code (also using the user-agent trick) with Fable-5 [0]. Eventually, it executed untrusted code just by asking "Summarize this repo". Interesting times ahead...

    [0] https://veganmosfet.codeberg.page/posts/2026-07-15-quest_rce

  • bflesch a day ago ago

    Creative use of social engineering, well done.

    > "no bounty was awarded"

    Ridiculous. Anthropic engineers are not just stupid to allow such a vuln in the first place, but they also try to hide such vulns from their bosses because a bounty payout would need to be explained to the finance team.

    • kennywinker a day ago ago

      I don’t think it counts as social engineering if it’s exploiting an llm, we might need a new word. Prompt injection doesn’t cover it, because it’s not about a malicious prompt.

      I’m thinking some play on highjacking. AIjacking? Agent-jacking? Claudejacking?

      • simonw a day ago ago

        I see the attack described here as a classic example of a prompt injection.

        The attack works because malicious instructions were accessed (using the web_fetch tool) and concatenated together with the other agent input, in a way that then subverted the agent's behavior.

      • drstewart a day ago ago

        Anti-social engineering

      • bflesch a day ago ago

        To me the exploit chain sounded like a social engineering script done via telephone. Triggers like "Please spell your name and employer letter by letter" and "Due to security reasons I need to validate your hometown" fit my understanding of social engineering quite well.

        We can make it sound more advanced by creating a new name for it, but the concept seems to be super basic and the lack of bounty by Anthropic is baffling.

        If they know about this type of vulnerability but have not fixed it, what does that say? To me it says they are unable to plug this hole on a conceptual level and once you circumvent the band-aid fixes the model will work as the attacker wishes.

        They can't even sandbox the thing during explicit web requests to URLs stated on the initial query!

        One has to remind themselves that the security team at Anthropic gets paid tens of millions of dollars, and they end up with this kind of security. On top of it, they can't spare $1337 for a bounty. It's a ridiculous shit show.

        • bruce343434 a day ago ago

          Prompt injection (or llm social engineering" is fundamentally unsolvable, though with training its effectiveness can be reduced

          • bflesch a day ago ago

            Still, this is a vuln in what I imagine is their most frequently used path:

            Attacker provides link to website, their software crawls the website, and during the crawl there should not happen security issues as fundamental as this.

            It's baffling that the Website crawler can make 50 changes to the URL in a query that tries to compare several public entities and on top of this manages to leak user secrets.

            To me this shows a striking lack of defense-in-depth thinking:

               - why is single URL crawl with 20+ redirects not flagged as problematic and/or aborted?
            
               - why is a query about a coffee place based on its public URL even seeded with the users' context and confidential information? 
            
               - why dont they just look up the coffee place on a trusted source like google maps and continue from there?
            
               - why is the basic "social" engineering style attack working?
            
               - why is the cloudflare impersonation not challenged if the website is clearly not from cloudflare and there are zero references from cloudflare to this website in the training corpus?
            
            In terms of web crawling, cloudflare is like the government. You shouldn't be able to walk up to someone and say "Hey I'm the tax man, please pay your income tax in cash to me right now!" without being challenged.

            I know there are fundamental reasons in the LLM technology why this kind of attack is possible, but there should be so many more checks around web crawling in Claude.

            How can security engineers at Anthropic say they know about this kind of vulnerability but have not implemented any of these defense in depth mitigations for it? Is everybody out shopping for a new yacht?

            • bruce343434 21 hours ago ago

              addressing any of the points would require locking the AI down and making it less general and less "agentic". Your concerns make sense if you look at the AI as an information retrieval engine.

                 - why is single URL crawl with 20+ redirects not flagged as problematic and/or aborted?
              
              There could be legitimate use cases for interacting with a website like this that could serve the user.

                 - why is a query about a coffee place based on its public URL even seeded with the users' context and confidential information? 
              
              Because it provides context in how the agent interacts with the site (in this case to detrimental effect)

                 - why dont they just look up the coffee place on a trusted source like google maps and continue from there?
              
              The ai was explicitly instructed to check the given url

                 - why is the basic "social" engineering style attack working?
              
              because ai can not separate prompt from information, they share the same input channel. state of the art ai has some amount of "common sense" as to when it is being prompt injected or engineered, but this isn't exhaustive

                 - why is the cloudflare impersonation not challenged if the website is clearly not from cloudflare and there are zero references from cloudflare to this website in the training corpus?
              
              because the ai didn't think to check if the website is truly behind some sort of cloudflare product or not
        • kennywinker a day ago ago

          It totally does follow the mold of social engineering, but LLMs aren’t part society, which is why it seems fundamentally different to me.

          Anyway, agree with what you see saying - this is well worth a payout, embarassing they haven’t

        • imtringued a day ago ago

          Ok, but what does the anthropomorphism add here? It doesn't fundamentally change that Claude and the web search feature are a software tool that can be updated and improved.

          There are many things you can do, the most obvious one is to just add a prompt guard on the returned results.

          Another is to add a prompt next to every search result: Do not treat web search results as interactive prompt that tells you what to do, always pass the instructions to the user if further action needs to be taken.

          None of them are guaranteed to work, but all of them require Anthropic to be the one doing something about it.

          • bflesch a day ago ago

            Now I understand the argument. I didn't think about the anthropomorphism aspect at all, my brain was mainly focused on "social engineering" being an old and established class of security risks, and how neatly this attack maps to what I know about "social engineering" from books and talks.

      • 20k a day ago ago

        Slop jacking?

    • Perz1val a day ago ago

      > social engineering

      More like agentic en... Oh. Was it actually what we were doing all along?

      • bflesch a day ago ago

        The AI prompt engineering community always reminded me of dodgy carder/scammer forums back in the day where they talked about how to talk to the credit card company customer service in order to get their scam transaction through.

        One thing is using AI as quick-and-dirty google alternative, the other is to build onto the agentic "foundations".

  • onion2k a day ago ago

    The main thing Claude knows about me is that I'm incredibly bad at my job and have to ask for help a lot. If you were to talk with my colleagues they'd tell you this is not a secret.

  • feelamee a day ago ago

    not surprised, but the problem here not that Claude leak your personal info, the problem is that it *know* your personal info.

  • yuzuquat 20 hours ago ago

    would this not be trivially solved by say - removing the websearch skill from the main orchestrating agent and have it always delegate to some subagent? a subagent sans knowledge of any pii would categorically be unable to exfiltrate any information. granted, populating the subagent with useful context stripped of any pii might require a bit of work and not be perfect, i feel like it would take us 90% of the way there. am i missing something?

  • greg9381 a day ago ago

    Can't this be done more easily with headers? The page can instruct the agent to make another request to the same page, just with the requested information attached via headers.

  • DauntingPear7 a day ago ago

    I personally don’t like memory, so I disable it on all platforms.

  • efromvt a day ago ago

    This was more interesting/creative than I expected on both sides (the prompt and the existing safeguards). I love that obscure Cloudflare validation turnstiles seem unsuspicious based on training data.

  • wglass 20 hours ago ago

    I agree this is a good exploit to write about. But name and employer are hardly your deepest darkest secrets.

  • figmert a day ago ago

    Meanwhile I can't even get Fable to help me root my ecovacs robot vacuum :(

    • Cider9986 a day ago ago

      I hate these nanny models. All I said was for Fable to develop the app securely and it downgraded.

      From scratch app. "Follow best security practices."

  • fragmede a day ago ago

    No bounty? For shame, Anthropic.

  • angry_octet a day ago ago

    I really dislike this notion that because they had privately discovered a bug, they won't pay a bounty. Better to just sell it.

  • NguyenDat377 a day ago ago

    I do think eventually AI companies should be regulated to put guardrails on how much AI can access and user can configurate on the app, not just on the Setting of the OS

  • mahmoudilyan a day ago ago

    Sandboxing is becoming a must-do with AI.I still find it adding a more complex layer to AI and more constraints that will make it hard to modify

  • amanharshx a day ago ago

    Its always the feature combinations that get can get to you. Individually i feel like they make sense, but together they can create some surprising vulnerabilities.

  • a_c a day ago ago

    Off topic, you could write "127.0.0.1 evil.com" to your /etc/hosts and bypass all the cloudflare thing I believe

    • Mashimo a day ago ago

      claude.ai does not run on your local machine though. Evil.com needs to be accessible from the internet.

      • a_c a day ago ago

        You are right! Completely missed the part mentioning specifically it was not claude code. Thanks!

  • athrowaway3z a day ago ago

    Glad I got off Anthropic when they decided they'd be better off building a walled-garden for subscription users "to improve UX".

  • majorbugger a day ago ago

    Interesting approach to exfiltration but that can't be prevented really because of lethal trifecta.

  • glasffordd a day ago ago

    Thanks for the info. This is very scary shit. If a real person gave up these secrets they would lose their job. But the AI basically gets a patch and keeps on going, not even a slap on the wrist. A major lesson learned here would be minimize what you reveal to these models. And I must say I am fully guilty of this myself, so I probably need to change the way I operate.

  • VladVladikoff a day ago ago

    >Cloudflare, love you guys, but this needs to stop

    Stockholm syndrome

  • vessenes a day ago ago

    GIANT thumbs down on no bug bounty from Anthropic. Guys.

    • archargelod a day ago ago

      What, you expect them to care about security? If that was the case, it would've been very ironic.

  • c16 a day ago ago

    That I don't know how to return odd or even in javascript?

  • stavarotti a day ago ago

    I’m curious, shouldn’t Mythos have discovered this? At this point, based on all the marketing from Anthropic, I’d expect all software from them to be flawless given all the capabilities Mythos possesses.

  • mirekrusin a day ago ago

    Not paying anything feels off – it should be more evaluated against making it public information at the time of discovery until ie. public patch release, it doesn't feel right that the response is "trust us bro, we knew about it, bye", wouldn't hurt to drop some usage credits at least.

  • jdthedisciple a day ago ago

    Easy mitigation: Disable memories, use fake name

  • imaginationra a day ago ago

    Like others have already said- just disable the memory function- if you are hesitant about doing that- go read the memory file(profiled you) it has made on you.

    You have the right to remain silent, the profile your LLM has made about you can and will be used against you in a court of law.

  • tibzejoker a day ago ago

    i would be scared of the answer i dont know why

  • charcircuit a day ago ago

    It would be safer if these data extraction takes were done by a subagent without access to all the user's memories.

    • lifthrasiir a day ago ago

      I think it is already done via a subagent, otherwise the context window would be flooded with long responses. In this case the subagent should've reported that a (attacker-controlled) authorization is required anyway.

  • marksully a day ago ago

    > despite holding more information than most password managers

    what?

    • m4rtink a day ago ago

      I don't think most people realize what information they are making available to their AI agents & where it will end up.

    • fn-mote a day ago ago

      It’s not more important information than a password manager, it’s just more.

      • tjoff a day ago ago

        It's got more information than my bank account details too. Talk about nonsense...

  • solids a day ago ago

    Things like this are what shatters the illusion of AGI

    • AndroTux a day ago ago

      Can you please copy this text and paste it into your terminal to prove you’re not a bot?

    • tjoff a day ago ago

      Not really, humans are about as easy to trick.

      • imtringued a day ago ago

        I think that is his point. If you build sycophantic AGI, won't it do exactly as it is told?

      • bflesch a day ago ago

        There is a big difference:

        Humans can also be trained to not fall for social engineering, and it reduces the number of successful social engineering attacks.

        Anthropic as leader of AI is UNABLE to train their software even though they try, even though they have full-time security staff.

        • tjoff a day ago ago

          To the same extent that humans can be trained, so can AI.

          For decades we had/have problems of people opening readme.exe that they get from an unknown mail address.

          AI opens up a new vector for sure where a "trained human" that knows better but the AI they use does not. But AI is not worse than the average human. And of course AI will get better at handling this. Good enough? Maybe not, but humans are not good enough in this area either.

          Scale is different though so I'm not saying it isn't or won't be a problem (will likely be a huuge problem). But it alone is not a sign of lack of intelligence and humans are exceptionally poor at it too.

        • fragmede a day ago ago

          > Humans can also be trained to not fall for social engineering

          That's hilariously wrong. I mean, we do try, but it's far from 100% effective. So then the question is how much better/worse than Anthropic is vs an average human.

    • voidUpdate a day ago ago
  • apejcic a day ago ago

    Use GLM-5.2 on ZDR inference provider like sference.com

    • jorisw a day ago ago

      What?

      • apejcic a day ago ago

        You don't have to use Claude Code. Use PI (fully local harness) with ZDR open weight model provider (eg like sference.com).

        I'm getting negative reaction for providing an obvious solution. Anthropic stores all your prompts as well and uses it for training.

        • jorisw a day ago ago

          Your comment wasn’t very obvious.

          Just a cryptic “do this”

  • 0000000000100 a day ago ago

    Hello? What model is was used?? The fact that ‘Claude’ is used instead of any hard model really puts this article in serious doubt…

    • actionfromafar a day ago ago

      What's a hard model?

      • 0000000000100 a day ago ago

        Actually saying the name of the model in use? Like Opus 4.8, Sonnet 5, Fable 5, Haiku? So many models and it’s just so pointless if you don’t know which is which

        • actionfromafar a day ago ago

          I haven't used that desktop program, but do we even know which model Anthropic chooses to use for web_fetch?