In the end its the next evolution step from computer viruses, worms and trojans. So I propose we will call those "ghosts". I.e. a ghost is when a rogue llm takes control over a victims host.
LLMs could control their host machines by exploiting inference engines
51–60 of 116 posts
Re: LLMs could control their host machines by exploiting inference engines
#52I thought they were going to get the LLM to "think really hard about rowhammer" and have the LLM conjure a JIT.
1MB?
Re: LLMs could control their host machines by exploiting inference engines
#53Re: LLMs could control their host machines by exploiting inference engines
#54Earlier quoted context omitted.
Also, operating systems should let us set filesystem permissions per app/process/executable instead of just user accounts. Similar to how macOS/iOS Sandboxing works but at a more lower and granular level
personally I wish the OS would allow syscall filtering per user
Re: LLMs could control their host machines by exploiting inference engines
#55I thought they were going to get the LLM to "think really hard about rowhammer" and have the LLM conjure a JIT.
Same. Was thinking the other week what would be the smallest llm one could make that is able to figure out tooling in its local environment and build something that can then expand out to other hosts, build more of itself, etc. 1MB?
Probably more in the 500-900MB range.
Re: LLMs could control their host machines by exploiting inference engines
#56Earlier quoted context omitted.
personally I wish the OS would allow syscall filtering per user
I use seccomp filters on linux in my AI sandbox.
Re: LLMs could control their host machines by exploiting inference engines
#57Re: LLMs could control their host machines by exploiting inference engines
#58Re: LLMs could control their host machines by exploiting inference engines
#59Semi-off-topic, but I have a basic question: I have exactly one (Windows) machine at home with a decent GPU. I want to run a local LLM on it and let it run various apps on my machine while taking reasonable security precautions. What am I supposed to do, exactly? Migrate all my files to a VM that can I give pass-through CUDA access to the host somehow? Or is firewalling it and remotely controlling it from a second ma…
I'd guess that prompt injection is the biggest risk in this setup, dwarfing the risk of exploits against the inference engine. Personally, I run LLM agents only inside a Docker container that limits the LLM's access to sensitive information and the LLM's ability to take irreversible destructive actions. See also: https://simonwillison.net/2025/Jun/16/the-lethal-trifecta/
LLM poisoning[0] would be a much greater risk in a locally executed LLM than prompt injection, given that the LLM would be in an entirely controlled environment.
Re: LLMs could control their host machines by exploiting inference engines
#60Semi-off-topic, but I have a basic question: I have exactly one (Windows) machine at home with a decent GPU. I want to run a local LLM on it and let it run various apps on my machine while taking reasonable security precautions. What am I supposed to do, exactly? Migrate all my files to a VM that can I give pass-through CUDA access to the host somehow? Or is firewalling it and remotely controlling it from a second ma…
There are many variations to that(firewalls, sandbox abilities etc) but it's a good start in my opinion. And, most importantly, is a far cry from all the people I read about running agents on their machines with admin access and access to their emails and calendars and lives.