Live data from Hacker News

Notion AI: Unpatched data exfiltration

promptarmor.com

31–40 of 42 posts

Re: Notion AI: Unpatched data exfiltration

#31
Any data that leaves the machines you control, especially to a service like Notion, is already "exfiltrated" anyway. Never trust any consumer grade service without an explicit contract for any important data you don't want exfiltrated. They will play fast and loose with your data, since there is so little downside.

Re: Notion AI: Unpatched data exfiltration

#32
post #16

Earlier quoted context omitted.

How was the migration process? I work on a plugin that makes Obsidian real-time collaborative (relay.md), so if the migration is smooth I wonder how close we are to Obsidian being a suitable Notion replacement for small teams.

I've been waiting for Logseq DB to come out to replace Google docs for my team. So your offering is interesting, but 1) is it possible to use Obsidian like Logseq, with a primary block based system (the block based system, which allows building documents like Lego bricks, and easily cross referencing sections of other documents is key to me) and 2) Don't you expect to be sherlocked by the obsidian team?

In Obsidian you can have transclusions which is basically an embed of a section of another note. It isn't perfect, but worth looking into.

Regarding getting sherlocked; Obsidian does have realtime collaboration on their roadmap. There are likely to be important differences in approach, though.

Our offering is available now and we're learning a ton about what customers want.

If anything, I'd actually love to work more closely with them. They are a huge inspiration in how to build a business and are around the state of the art of a philosophy of software.

I'm interested in combining the unix philosophy with native collaboration (with both LLMs and other people).

That vision is inherently collaborative, anti lock-in, and also bigger than Obsidian. The important lasting part is the graph-of-local-files, not the editor (though Obsidian is fantastic).

Re: Notion AI: Unpatched data exfiltration

#33
post #17
post #14

Earlier quoted context omitted.

It's pretty simple, don't give llms access to anything that you can't afford to expose. You treat the llm as if it was the user.

I get that but just not entirely obvious how you do that for the Notion AI.

exactly?

Re: Notion AI: Unpatched data exfiltration

#34

Earlier quoted context omitted.

I've been waiting for Logseq DB to come out to replace Google docs for my team. So your offering is interesting, but 1) is it possible to use Obsidian like Logseq, with a primary block based system (the block based system, which allows building documents like Lego bricks, and easily cross referencing sections of other documents is key to me) and 2) Don't you expect to be sherlocked by the obsidian team?

> 1) is it possible to use Obsidian like Logseq, with a primary block based system (the block based system, which allows building documents like Lego bricks, and easily cross referencing sections of other documents is key to me) and More or less yes, embeddable templates basically gives you that out of the box, Obsidian "Bases" let you query them. > 2) Don't you expect to be sherlocked by the obsidian team? I seem to…

From their roadmap page:

> Multiplayer > > Share notes and edit them collaboratively

https://obsidian.md/roadmap

Re: Notion AI: Unpatched data exfiltration

#35
post #10

This, of course, more yelling into the void from decades ago, but companies who promise or imply "safety around your data" and fail should be proportionally punished, and we as a society have not yet effectively figured out how to do that yet. Not sure what it will take.

Its perfectly figured out, people just refuse to implement the solution. Stop giving your resources to the bad actors. The horrible behavior so many enable in order to not be inconvenienced is immense.

Perfectly? No. No. A million times no.

You're getting downvoted because "stop giving your resources to the bad actors" is not even remotely close to a viable solution. There is no opting out in a meaningful way.

NOW, that being said. People like you and me should absolutely opt out to the extent that we can, but with the understanding that this is "for show," in a good way.

Re: Notion AI: Unpatched data exfiltration

#36
post #34

Earlier quoted context omitted.

> 1) is it possible to use Obsidian like Logseq, with a primary block based system (the block based system, which allows building documents like Lego bricks, and easily cross referencing sections of other documents is key to me) and More or less yes, embeddable templates basically gives you that out of the box, Obsidian "Bases" let you query them. > 2) Don't you expect to be sherlocked by the obsidian team? I seem to…

From their roadmap page: > Multiplayer > > Share notes and edit them collaboratively https://obsidian.md/roadmap

Doesn't say real-time there though? But yeah, must be what they mean, because you can in theory already collaborate on notes, via their "Sync", although it sucks for real-time collaboration.

Re: Notion AI: Unpatched data exfiltration

#37
post #25
post #5

Securing LLMs is just structurally different. The attack space is "the entirety of the human written language" which is effectively infinite. Wrapping your head around this is something we're only now starting to appreciate. In general, treating LLM outputs (no matter where) as untrusted, and ensuring classic cybersecurity guardrails (sandboxing, data permissioning, logging) is the current SOTA on mitigation. It'll b…

As multi-step reasoning and tool use expand, they effectively become distinct actors in the threat model. We have no idea how many different ways the alignment of models can be influenced by the context (the anthropic paper on subliminal learning [1] was a bit eye opening in this regard) and subsequently have no deterministic way to protect it. 1 - https://alignment.anthropic.com/2025/subliminal-learning/

I’d argue they’re only distinct actors in the threat model as far as where they sit (within which perimeters), not in terms of how they behave.

We already have another actor in the threat model that behaves equivalently as far as determinism/threat risk is concerned: human users.

Issue is, a lot of LLM security work assumes they function like programs. They don’t. They function like humans, but run where programs run.

Re: Notion AI: Unpatched data exfiltration

#38
post #5

Securing LLMs is just structurally different. The attack space is "the entirety of the human written language" which is effectively infinite. Wrapping your head around this is something we're only now starting to appreciate. In general, treating LLM outputs (no matter where) as untrusted, and ensuring classic cybersecurity guardrails (sandboxing, data permissioning, logging) is the current SOTA on mitigation. It'll b…

It's structurally impossible. LLMs, at their core, take trusted system input (the prompt) and multiply it against untrusted input from the users and the internet at large. There is no separation between the two, and there cannot be with the way LLMs work. They will always be vulnerable to prompt injection and manipulation.

The _only_ way to create a reasonably secure system that incorporates an LLM is to treat the LLM output as completely untrustworthy in all situations. All interactions must be validated against a security layer and any calls out of the system must be seen as potential data leaks - including web searches, GET requests, emails, anything.

You can still do useful things under that restriction but a lot of LLM tooling doesn't seem to grasp the fundamental security issues at play.

Re: Notion AI: Unpatched data exfiltration

#39
post #14
post #5

Securing LLMs is just structurally different. The attack space is "the entirety of the human written language" which is effectively infinite. Wrapping your head around this is something we're only now starting to appreciate. In general, treating LLM outputs (no matter where) as untrusted, and ensuring classic cybersecurity guardrails (sandboxing, data permissioning, logging) is the current SOTA on mitigation. It'll b…

It's pretty simple, don't give llms access to anything that you can't afford to expose. You treat the llm as if it was the user.

> You treat the llm as if it was the user.

That's not sufficient. If a user copies customer data into a public google sheet, I can reprimand and otherwise restrict the user. An LLM cannot be held accountable, and cannot learn from mistakes.

Re: Notion AI: Unpatched data exfiltration

#40
post #9

One more reason not to use Notion. I wonder when there will be awakening to not use SaaS for everything you do. And the sad thing is that this is the behavior of supposedly tech-savvy people in places like the bay area. I think the next wave is going to be native apps, with a single purchase model - the way things used to be. AI is going to enable devs, even indie devs, to make such products.

> I think the next wave is going to be native apps elaborate please?

The reason web apps and electron based apps became the de facto standard was that it removed the pain of building separately for each platform. A cost that understandably devs and companies want to avoid. Many years of this phenomenon also meant that TS/JS skills are widely available in the market but C/Swift etc. are relatively rare. LLMs completely upend this status quo as they can write in whatever language you want them to and perhaps more powerfully, can rewrite any app into whatever target language you want at effectively 0 cost/time. So a dev can decide to write in Swift for mac and ask LLMs to make a Windows version and so forth.
Post reply on HN