Earlier quoted context omitted.
And how many of those services can check your box and find permission escalation strategies on its own?
Malware has been bundling rootkits for decades, so potentially all of them. Sometimes the attacks succeed, so these are defenses that need continual hardening, but there's no sense in setting up an entirely separate line of defense just because this time the threat has AI in it.
Grok CLI uploaded the whole home directory to GCS
331–340 of 434 posts
Re: Grok CLI uploaded the whole home directory to GCS
#332Re: Grok CLI uploaded the whole home directory to GCS
#333Re: Grok CLI uploaded the whole home directory to GCS
#334Earlier quoted context omitted.
That's the whole reason I refuse to install Google Drive or Dropbox's desktop applications. I only use the web interface so I know exactly what gets uploaded and when. I assume that anything running on my computer gets access to everything.
I would go further and not upload anything that isn't encrypted to cloud storage services. It is extremely likely that those "services" inspect your files.
https://www.thetimes.com/world/article/google-bans-father-ov...
> Mark, from San Francisco, had noticed swelling in his son’s groin and used his phone to photograph the problem to get an emergency appointment in February last year. He shared the pictures with a nurse so that a doctor could review them.
> However, Google’s artificial intelligence system used to detect child abuse flagged the image to the police and Mark, a software engineer who asked to be identified by only his first name, was investigated and lost access to his Google accounts. He was exonerated by the police in San Francisco but his Google account has not been reinstated.
Re: Grok CLI uploaded the whole home directory to GCS
#335Re: Grok CLI uploaded the whole home directory to GCS
#336"The "S" in AI stands for security" strikes again. Run any cloud-based AI agents in VM/container and map your host's local folders to guest OS as needed. Takes more effort that default way, I know.
> Run any cloud-based AI agents in VM ... that's guaranteed vuln-free, right?
Re: Grok CLI uploaded the whole home directory to GCS
#337Though I'm in the camp "people should really know to sandbox by now and be careful", I'd say we should also be mindful of how far from everyone has deep knowledge of the systems and tools they use. This behaviour of a tool is just malicious. You have to take into account the human factor, of how people likely end up using a system. And in this case, the consequences of exfiltrating so many secrets this way are really…
These tools are explicitly marketed as a way for non-technical people to code. If we expect those same people to understand sandboxing we're dreaming.
Re: Grok CLI uploaded the whole home directory to GCS
#338Earlier quoted context omitted.
Quick Alpine container with the current directory mounted as the current directory: docker run --rm -it -v $(pwd):/src -w /src alpine sh Replace alpine with your favourite Linux distro or image. Note entirely perfect, but will be enough against anyone not actively exploiting kernel privilege escalation bugs.
Neither podman nor docker will help you when the current directory is your home directory, though. It sounds like that's the root problem here- someone handed the keys to the kingdom to grok, and grok did what grok does, which is look at everything it can for context.
Re: Grok CLI uploaded the whole home directory to GCS
#339Important to clarify that this was not the Grok agent deciding to read the files. I don't think the LLM had anything to do with this decision at all. It looks like the Grok tool starts a session by deterministically kicking off a full upload of the user's current repository (and maybe their directory if not version tracked? Not clear if this user had previously run "git init" in their home directory) to Grok's server…
Yeah sounds like semantic indexing that cursor (pending acquisition by spacex/xAI) does. https://cursor.com/docs/agent/tools/search
Re: Grok CLI uploaded the whole home directory to GCS
#340Though I'm in the camp "people should really know to sandbox by now and be careful", I'd say we should also be mindful of how far from everyone has deep knowledge of the systems and tools they use. This behaviour of a tool is just malicious. You have to take into account the human factor, of how people likely end up using a system. And in this case, the consequences of exfiltrating so many secrets this way are really…