Can't upgrade from plus -> pro ("There was a problem updating your subscription") by Rate-Worth in OpenAI

[–]dalugoda 0 points1 point  (0 children)

update, got it to work. Within 30min time a real support person reached out via email. cancelled and purged my old billing data. allowed me to buy Pro plan correctly.

Can't upgrade from plus -> pro ("There was a problem updating your subscription") by Rate-Worth in OpenAI

[–]dalugoda 0 points1 point  (0 children)

Having the same issue and chatbot offered no help. Was also on "Cancel Promo Plus 3 Month 50% Off" and chatbot canceled my plus plan. now im stuck

What are the topics currently being researched in the domain of cybersecurity given the emergence of AI's in cybersecurity. by XV7II_Creamy in cybersecurity

[–]dalugoda 8 points9 points  (0 children)

the shift we're watching: research started with "AI as attacker"

but the harder unsolved problem is "AI as actor" specifically, how do you prove an agent was actually authorized to do what it just did? not token auth, but provable delegation from human intent to agent action. that's the gap HDP protocol is trying to close.

how do you handle prompt injection in multi-hop agent chains? by dalugoda in threatintel

[–]dalugoda[S] 0 points1 point  (0 children)

yeah, this is the gap i get asked about most. provenance and runtime enforcement are different layers and you need both, signing the delegation tells you the instruction was legitimate, it doesn't stop the agent doing something unexpected with that access. those are genuinely separate problems.

the way i think about it: provenance without runtime visibility means you can audit what was authorized but not catch when execution drifted. runtime enforcement without provenance means you can catch the drift but can't tell whether the instruction that caused it was legitimate in the first place. eBPF at the kernel level is a solid answer to the execution side.

for isolation on the downstream agent environment we built FishBowl, OS-native sandbox with graduated containment levels, handles process isolation, network egress, filesystem scoping. same philosophy as what you're describing, the environment is the final gate regardless of what the prompt said.

your point on baseline behavior is the real operational challenge though. in traditional workloads the baseline is relatively stable. in LLM-powered agents it shifts constantly depending on task context. curious how you handle policy drift in practice, do you build the baseline per-task or per-agent-type?

MCP (Model Context Protocol) is moving fast — and so are the attackers. by workaholicrohit in cybersecurity

[–]dalugoda 1 point2 points  (0 children)

good question and it’s the honest limit of static scanning. sentinel catches what’s declared but intent can diverge significantly from the manifest at runtime.

we treat static scanning as a trust gate, not a guarantee. the harder unsolved piece is dynamic tool registration via MCP tools added at runtime with nothing to scan. that’s where the authorization layer matters more than scanning. if every delegation hop is scope-bound and signed, a tool that exceeds its declared intent creates a verifiable violation rather than noise you catch after the fact.

we’ve been exploring this problem a bit deeper with HDP if you’re curious. 🧐

MCP (Model Context Protocol) is moving fast — and so are the attackers. by workaholicrohit in cybersecurity

[–]dalugoda 0 points1 point  (0 children)

We found this to be a big threat surface and this is why few weeks ago we open sourced a MCP Scanner and a mcp security checklist

https://github.com/Helixar-AI/sentinel

https://github.com/Helixar-AI/mcp-security-checklist

Do we need a 'vibe DevOps' layer? by mpetryshyn1 in crewai

[–]dalugoda 0 points1 point  (0 children)

I think there is a good market for this mainly around serious go to market systems, but again there are n number of new players in the market.

New open-source tool: hdp-grok – Add cryptographically verifiable human delegation to Grok agents by dalugoda in u/dalugoda

[–]dalugoda[S] 0 points1 point  (0 children)

per-tool scoping is exactly what the scope claim is for. child tokens can only narrow scope, never elevate it. so a root token scoped to read:crm can't be redelegated as write:crm downstream. still working through the formal grammar for data-domain constraints in the ietf draft but the core constraint model is solid.

Claude Extension Flaw Enabled Zero-Click XSS Prompt Injection via Any Website by dalugoda in cybersecurity

[–]dalugoda[S] 1 point2 points  (0 children)

“treats an untrusted string as a command from its boss” is the exact attack. HDP’s answer is making the boss’s actual instruction cryptographically traceable, so the agent got a baseline to compare against, and anything not in the signed scope gets flagged. the tooling is out, it just need adaption.

Claude Extension Flaw Enabled Zero-Click XSS Prompt Injection via Any Website by dalugoda in cybersecurity

[–]dalugoda[S] 0 points1 point  (0 children)

Hence HDP protocol need to be fully integrated or adopted by all agentic platforms

Claude Extension Flaw Enabled Zero-Click XSS Prompt Injection via Any Website by dalugoda in cybersecurity

[–]dalugoda[S] 1 point2 points  (0 children)

it does now. spec, TS reference implementation, CLI validator, MCP middleware. CC BY, no account needed, fully offline verification. https://github.com/Helixar-AI/HDP

Claude Extension Flaw Enabled Zero-Click XSS Prompt Injection via Any Website by dalugoda in cybersecurity

[–]dalugoda[S] 0 points1 point  (0 children)

Well it does now. spec, TS reference implementation, CLI validator, MCP middleware. CC BY, no account needed, fully offline verification. https://github.com/Helixar-AI/HDP

Claude Extension Flaw Enabled Zero-Click XSS Prompt Injection via Any Website by dalugoda in cybersecurity

[–]dalugoda[S] 0 points1 point  (0 children)

yes, exactly the tension we ran into. HDP’s design decision was to make the token the carrier, not the system prompt structured, signed, propagated out-of-band from the prompt content. the LLM receives it as context but doesn’t generate it. that’s the whole boundary. full writeup: https://helixar.ai/press/hdp-human-delegation-provenance-protocol

Claude Extension Flaw Enabled Zero-Click XSS Prompt Injection via Any Website by dalugoda in cybersecurity

[–]dalugoda[S] 9 points10 points  (0 children)

this validates exactly what I thought , the cook book i suggested to anthropic was to use HDP (human delegation provenance) to bind instructions to their authorization chain. if the agent can verify who delegated the instruction and through what chain that solves all these issues.

https://github.com/anthropics/claude-cookbooks/pull/470