frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Konform Browser v140.8.0-105

https://codeberg.org/konform-browser/source/releases/tag/140.8.0.105
1•konform•30s ago•0 comments

Evolving Typst

https://laurmaedje.github.io/posts/evolving-typst/
2•todsacerdoti•2m ago•0 comments

Cloudflare uses lava lamps for randomness

https://www.cloudflare.com/en-au/learning/ssl/lava-lamp-encryption/
1•yuiegi•3m ago•0 comments

Arabic document from 17th-cent. rubbish heap confirms semi-legendary Nubian king

https://phys.org/news/2026-02-arabic-document-17th-century-rubbish.html
1•wglb•4m ago•1 comments

Amazon says drone strikes damaged 3 facilities in UAE and Bahrain

https://www.cnbc.com/2026/03/02/amazon-says-drone-strikes-damaged-3-facilities-in-uae-and-bahrain...
1•csomar•5m ago•0 comments

Show HN: Offline desktop tool that extracts media endpoints from raw HTML

https://z3r0dayzion-install.github.io/hypersnatch-site/
1•hypersnatch_dev•5m ago•1 comments

224k Publicly Exposed OpenClaw Instances

https://openclaw.allegro.earth/
2•fanweixiao•6m ago•0 comments

Show HN: kg Food Log (Google Gemini powered nutrition tracker)

https://kg.enzom.dev
1•emadda•10m ago•0 comments

Trading on Violence

https://rajivsethi.substack.com/p/trading-on-violence
1•neehao•14m ago•0 comments

Show HN: ResumeForge – Free AI resume builder with real-time ATS scoring

https://resumeforge.cc
1•MikeLee-1•16m ago•0 comments

Show HN: AgentOx – MCP Security and Conformance Auditor

https://github.com/CarlosLadd/AgentOx
1•carlosladdz•20m ago•0 comments

Rail Settlement Plan Barcode Specs

https://magicalcodewit.ch/rsp-specs/
1•todsacerdoti•20m ago•0 comments

AI Authentication and Authorization

https://fusionauth.io/articles/ai/ai-authentication-authorization
1•mooreds•22m ago•0 comments

Show HN: Understand GitHub Trending with AI

https://github.com/HarlonWang/TrendingAI
1•81813780•22m ago•1 comments

PaywallPro

https://www.paywallpro.app/
1•candyyao•24m ago•1 comments

Ed Gutenburg: The First Autonomous Investigative Reporter

https://alec.is/posts/worlds-first-fully-autonomous-investigative-reporter-ai-agent/
1•arm32•24m ago•1 comments

Show HN: Giggles – A batteries-included React framework for TUIs

https://github.com/zion-off/giggles
3•ajz317•27m ago•1 comments

Curl documentation bans the word 'very'

https://mastodon.social/@bagder/116161776616642292
2•keyboardJones•28m ago•2 comments

Building an Open-Source Verilog Simulator with AI: 580K Lines in 43 Days

https://normalcomputing.com/blog/building-an-open-source-verilog-simulator-with-ai-580k-lines-in-...
1•matt_d•28m ago•0 comments

Iran's Cryptic Shortwave Messages [video]

https://www.youtube.com/watch?v=ErmbTpxAM7Q
1•bane•29m ago•0 comments

Entry-level PC market to 'disappear' by 2028 – memory prices strain PC market

https://www.tomshardware.com/tech-industry/rising-memory-prices-pile-more-strain-on-consumer-pc-m...
4•ivewonyoung•31m ago•0 comments

How to Recover Your Stolen Crypto After a Scam–Guidance from Intelligence Wizard

1•Petersrobert•32m ago•0 comments

Show HN: Autonoma – Python secret fixer that refuses unsafe fixes

https://github.com/VihaanInnovations/autonoma
1•v_CodeSentinal•32m ago•0 comments

The Excommunicated Devs Making Games with AI

https://www.tyleo.com/blog/the-excommunicated-devs-making-games-with-ai
6•tyleo•37m ago•0 comments

Ask HN: What Online LLM / Chat do you use?

3•ddxv•41m ago•0 comments

CKAN – an open-source DMS (data management system)

https://ckan.org/
3•gjvc•45m ago•1 comments

My (Hypothetical) SRECon26 Keynote

https://charity.wtf/2026/03/03/my-hypothetical-srecon26-keynote-xpost/
2•donutshop•48m ago•0 comments

Prompt Vault – Save and organize your AI prompts ($9 Pro)

https://prompt-vault-sage.vercel.app
2•VyperandUltron•48m ago•0 comments

Show HN: An Auditable Decision Engine for AI Systems

https://maelstrom.ghostlogic.tech
2•adamscottthomas•50m ago•0 comments

How to Recover Your Stolen Crypto After a Scam–Guidance from Intelligence Wizard

2•Petersrobert•54m ago•0 comments
Open in hackernews

Show HN: PHP 8 disable_functions bypass PoC

https://github.com/m0x41nos/TimeAfterFree
24•m0x41nos•1h ago

Comments

altairprime•1h ago
Tell us more about how you searched for and uncovered this? Do you normally use PHP? What disclosure process did you use?
calvinmorrison•53m ago
That's a nice find. People rely a little heavily on this, and it only says in the manual "This directive allows certain functions to be disabled." but its not a security sandbox.

I think PHP has in the past explicitly stated its not a security feature.

There have been a few issues over the years with this.

Anyway - good OS security is required anytime you run software!

heres one from 6 years ago https://bugs.php.net/bug.php?id=76047

kadoban•36m ago
> I think PHP has in the past explicitly stated its not a security feature.

I'm struggling to think what it's for then?

turbert•23m ago
likely intended more as a lint than a security feature, it's not unusual to want to exclude commonly misused features from your code and any libraries you use.

Knowing the mess that is the php standard library, I imagine many applications would want to just straight up ban the really bad parts.

calvinmorrison•20m ago
a lazy security feature that stops 90% of problems?
duskwuff•18m ago
> I'm struggling to think what it's for then?

Placating some users - mainly shared web hosting providers - who still think that disabling functions like system() and exec() is an effective security measure.

halb•53m ago
there was a php-only million-rows challenge that was posted here recently. This uaf offers the opportunity for the funniest solution.
turbert•29m ago
from a quick skim, it looks like the underlying bug is just not handling object resurrection[1] at all (FreeMe adds a reference to $array while its destructor is called).

I'm not really familiar with PHP but this seems like a surprising oversight for a popular language. Does PHP just not care about memory corruption? The fact that it is this easy is far more surprising than it being used to circumvent a questionable security feature.

[1] https://en.wikipedia.org/wiki/Object_resurrection