As there are more and more agents in the internet; Security is going to be a big problem. Currently, the problem is solved using a LLM to guard Agent but this creates the problem of hallucination and latency, so I coded a firewall in rust that runs under five miliseconds. This works by creating a plan and enforcing the plan; for per action call, this enforces using the Model context protocols list and for sequence it tracks every single tool call and data flow; there is also a taint mechanism where if the agent reads something outside of the user context, it flags and adds more security mechanism. It works by using a DAG.
No comments yet.