frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mugib – AI agents that work across every channel–chat, voice, web, and live data

https://mugib.com/
1•anaspro•28s ago•0 comments

Why IBM Turned to Microsoft for Basic

https://nemanjatrifunovic.substack.com/p/why-ibm-turned-to-microsoft-for-basic
1•whobre•1m ago•0 comments

Malicious Job Assessments

https://thecout.com/blog/flexibleferret/
1•taubek•1m ago•0 comments

Show HN: The cutest WhatsApp concierge for dog friendly travel

https://kaliconcierge.com/
1•BuleBule•6m ago•0 comments

Rust Coreutils v0.8.0: performance gains, WebAssembly support, online playground

https://github.com/uutils/coreutils/releases
1•maxloh•8m ago•0 comments

Show HN: Run AI coding agents in real sandboxes, not Git worktrees

https://superhq.ai/
1•harshdoesdev•8m ago•0 comments

The Future of Everything Is Lies, I Guess: Psychological Hazards

https://aphyr.com/posts/416-the-future-of-everything-is-lies-i-guess-psychological-hazards
2•aphyr•9m ago•0 comments

Show HN: Accessyo – CLI to Debug DNS, TCP, TLS and HTTP Issues

https://www.npmjs.com/package/accessyo
1•tmszcncl•13m ago•0 comments

X slashes aggregator payouts to boost original creators

https://www.nbcnews.com/tech/social-media/x-slashes-aggregator-payouts-boost-original-creators-rc...
2•ceejayoz•13m ago•1 comments

Error Translation in Go Services

https://rednafi.com/go/error-translation/
2•Brajeshwar•14m ago•0 comments

PSA Crypto: The P is for Portability

https://danielmangum.com/posts/psa-crypto-portability/
1•hasheddan•15m ago•0 comments

The Sad Decline of Trenchant Exec Who Stole and Sold Zero Days to Russian Buyer

https://www.zetter-zeroday.com/trenchant-exec-says-he-had-depression-money-troubles-when-he-decid...
1•badcryptobitch•15m ago•0 comments

Entangled Systems Reveal Reversible Information Exchange, Defining Flow of Time

https://quantumzeitgeist.com/entangled-systems-subtime-time-emergence/
2•bookofjoe•15m ago•0 comments

Ask HN: Can you cut off AI usage immediately?

1•markus_zhang•20m ago•1 comments

Researchers discover new type of cell that's seen only during pregnancy

https://www.livescience.com/health/reproductive-health/no-one-knows-what-they-are-researchers-dis...
1•gmays•22m ago•0 comments

Why Europe Has Underground Power Lines and America Doesn't [video]

https://www.youtube.com/watch?v=BYuYGxLmwK8
1•dataflow•22m ago•1 comments

MIT Radiation Laboratory

https://www.ll.mit.edu/about/history/mit-radiation-laboratory
2•stmw•22m ago•1 comments

Costasiella kuroshimae – Solar Powered animals, that do indirect photosynthesis

https://en.wikipedia.org/wiki/Costasiella_kuroshimae
1•vinnyglennon•26m ago•0 comments

Berkeley, A Look Back: 75 years ago, Cal dorm housed Army troops

https://www.eastbaytimes.com/2018/03/07/berkeley-a-look-back-75-years-ago-cal-dorm-housed-army-tr...
1•stmw•27m ago•0 comments

DevLens understand codebases faster(onboarding, PR Review,Blast Radius)

https://devlens.io
1•shivang2607•29m ago•0 comments

Audi A1 e-tron driven (2010)

https://www.autoexpress.co.uk/audi/a1/18076/audi-a1-e-tron-driven
1•microsoftedging•29m ago•0 comments

Relive the lunar flyby and re-entry of Artemis II – Orion Integrity

https://vision.gladio.ai/
2•melboudi•30m ago•1 comments

Show HN: 7 Years of Tropospheric NO₂

https://no2.libmap.org/
1•tomtomistaken•30m ago•0 comments

Who Uses AI?

https://www.someweekendreading.blog/who-uses-ai/
1•ColinWright•31m ago•0 comments

Toyota joins hydrogen truck alliance push

https://www.foxnews.com/tech/toyota-joins-hydrogen-truck-alliance-push
3•RickJWagner•34m ago•0 comments

Gobo

https://languagehat.com/gobo/
2•jruohonen•37m ago•0 comments

Our response to the Axios developer tool compromise

https://openai.com/index/axios-developer-tool-compromise/
3•campuscodi•39m ago•1 comments

Training LLMs to Predict World Events

https://thinkingmachines.ai/news/training-llms-to-predict-world-events/
3•EvgeniyZh•40m ago•0 comments

Show HN: Spuddy.sh – Describe your API in terminal get a hosted API with state

https://spuddy.sh
2•boyneyy123•41m ago•0 comments

Cyclone Ditwah

https://en.wikipedia.org/wiki/Cyclone_Ditwah
2•teleforce•46m ago•0 comments
Open in hackernews

Ask HN: Is Zero Trust Architecture Overkill?

2•devinabox•2h ago
Hey everyone! I need you opinion on Zero Trust Architecture for a debugging tool we’ve been building.

My partner and I have built Dev In A Box - a debugging tool that uses simulations to pull out both bugs & security vulnerabilities with ~70% accuracy. It works for both finding the root cause of reported issues and doing more general debugging / tech debt removal sessions.

Naturally, the tool has to handle people’s code, so we wanted to make sure our security was air tight.

We’ve designed our architecture with this in mind - essentially, each new project lives in its own database. Making the contract to access the data much simpler to enforce and making a tenant breach via a SQL / coding mistake impossible.

The other goal of this is enabling a zero trust encryption system - allowing the user to prevent us from accessing their data at rest. However I’m not sure what is the best / most user friendly way to do this is. I’d appreciate any feedback on this concept:

The idea is a user could set a “master password” that only they know (and we don’t) that would serve as the encryption key. Meaning their database can only be unencrypted at run time with that “master password” - similar to how password managers like LastPass work.

This would mean we, as the SaaS company, won’t be able to access their data. Potentially giving users more peace of mind and an additional layer of security.

I think it sounds good in theory - as someone who refuses to use GitHub because I don’t trust Microsoft as far as I can throw them, it definitely fulfills my neurosis. But before we build it, I wanted to run it by all of you to ask if it’s really worth it.

There are some drawbacks, of course. Like:

- Having to input a master password every time you want to access your project

- Managing that password across larger teams (if 50 people know the password, is it really providing any security?)

- If the password is lost, there’s no way to recover the project. It’s gone for good.

So my questions to you are:

- Do the pros out weigh the cons? Is this something that would make you feel better about using a code scanner?

- Is this level of security / privacy important to you?

- Is there a better UX for something like this?

- (For the folks who are knowledgeable in cryptography) Is there a better way of going about this? Do you know of a better method for managing the data so that the provider can’t access it at run time?

For more context you can see our website: dev-in-a-box.com

Thank you in advance. All opinions welcome!

Comments

pestatije•54m ago
is the debug service the same as the data service?
devinabox•18m ago
The debug service and the data are the same application - however there is a 3rd party integration while processing the scan. We are using an open source LLM to process the source code and conduct the scan via DeepInfra. This is based upon the understanding that everything sent to them is covered by a zero data retention agreement. Is that what you meant?