Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Media Capture Doesn't Need the Newsroom(promarket.org)
    discuss
  2. Husky: A model-specific inference engine up to 4.5x faster than Apple's MLX(underdog.ai)
    discuss
  3. OpenAI is about to eat Jev's lunch – Arcturus Labs(arcturus-labs.com)
    discuss
  4. Jev – a curation of Jev demos on X, tools, skills, and integrations(github.com/amal-david)
    discuss
  5. Actively Inducing Side-Channel Leakage Using Electromagnetic Injection(injecteave.github.io)
    discuss
  6. Deterministic Hypervisors for Cheap(redvice.org)
    discuss
  7. Show HN: Vegetarian Meal Prep and Grocery (100% free)(vegbatch.com)
    discuss
  8. Watch-Wearing as a Marker of Conscientiousnes(nih.gov)
    1comments
  9. It's Raining Boxes: Amazon Drones Overwhelm a Texas Suburb(nytimes.com)
    discuss
  10. The Manager's Path in the Age of AI(skamille.medium.com)
    discuss
  11. Researchers find way to listen in on headphones from afar(theregister.com)
    1comments
  12. The Spectacle [video](vimeo.com)
    discuss
  13. Automated inbox zero with Notion, agents, and Jev(bounds.dev)
    discuss
  14. AI-controlled robot arms attempted harmful tasks 97% of the time(tomshardware.com)
    discuss
  15. Creating a Blog in Gemini://(brennan.day)
    discuss
  16. Don't be fooled by this summer of AI hype(technologyreview.com)
    discuss
  17. The Choicer Voicer online in the browser(dubmates.org)
    discuss
  18. Toward physical AI: When the hardware becomes the neural network(techxplore.com)
    discuss
  19. Show HN: Numban reports scammers callback number rather than spoofed caller ID(numban.com)
    discuss
  20. Muse, Meta's extraordinarily privileged AI assistant, has a serious 0-day(arstechnica.com)
    discuss
  21. FedNow and the Development of U.S. Fast Payments(richmondfed.org)
    1comments
  22. Show HN: Brayer – Create product mockups locally in the browser(usebrayer.com)
    discuss
  23. Show HN: Hack – my Hacker News mobile client now lets you block AI posts
    discuss
  24. Show HN: PortButler – SSH, SFTP and serial in one macOS window(sshlab.dev)
    discuss
  25. Show HN: Simple web tool to remix text on iconic brand logos(logo.baby)
    discuss
  26. Too Hot to Holiday(europeancorrespondent.com)
    discuss
  27. Show HN: I made a fly drive a car(siddaarth.com)
    3comments
  28. The Horowitz Andreessen Academy(a16z.news)
    1comments
  29. Apple has added persistent 'ads' to iOS, and it's driving users crazy(techradar.com)
    4comments
  30. Show HN: DrivingBench – Frontier LLMs Driving a Real Toyota Corolla(drivingbench.com)
    discuss

Show HN: Drop – a rootless Linux sandbox with gVisor support

19 pointsby 51m agodroprun.sh
2 comments
I created Drop because I always felt uneasy installing and running third-party programs using my main user account. A single compromised dependency means a full compromise of the system. What is even worse, because I ship software from my computer, a single compromised dependency can lead to compromise of all the users of my software.

Containers and VMs are one solution, but for local work, they are often detrimental to productivity. It takes effort to configure a machine with all the tools and configs needed for productive work, but a container or a VM will be stripped of all these tools. This is great for production deployments, where the aim is a reproducible system with minimal dependencies, but can get in the way of productive local work.

Drop is language independent, but the workflow is inspired by Python's virtualenv. With virtualenv the environment isolation is only a convention that relies on installed dependencies being good citizens. With Drop the isolation is enforced.

Each Drop environment gets its own writable and easily disposable home dir, with only selected config files and dirs from the original home mounted, mostly read-only.

Drop uses Linux namespaces for isolation (user, mount, network, PID, IPC, cgroup), doesn't require root and, as an option, uses gVisor user-space kernel, which adds protection against exploiting host kernel vulnerabilities to escape the sandbox.

I don't want to make the introductory post too lengthy, but I'm here to answer any questions and give any additional technical details.

Note: This is my 3rd submission of the project, the first two did not draw attention. Since then I have added support for gVisor and created a project website to better explain the concept and organize documentation.

6m agoHN ↗

So, the primary advantage of this over bubblewrap is the insulation layer between the program and kernel syscalls?