frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: A browser-based accessibility checker that integrates into web projects

https://accented.dev
2•pomerantsev•8m ago•0 comments

Show HN: PlutoFilter- A single-header, zero-allocation image filter library in C

https://github.com/sammycage/plutofilter
18•sammycage•3d ago•3 comments

Show HN: Object database for LLMs that persists across chats (MCP server)

https://dry.ai/mcp-object-database
3•kooshaazim•1h ago•2 comments

Show HN: I built a cute focus timer where you can grow an infinite garden

https://www.growdoro.com/
4•dqnamo•2h ago•0 comments

Show HN: Improving search ranking with chess Elo scores

https://www.zeroentropy.dev/blog/improving-rag-with-elo-scores
181•ghita_•1d ago•63 comments

Show HN: Claude‑CMD – A CLI for managing Claude Code commands and workflows

https://github.com/kiliczsh/claude-cmd
2•kilic•2h ago•0 comments

Show HN: Detailed explanation and guide to understanding gene editing treatments

https://www.aditharun.com/p/understanding-the-science-behind
4•tinymagician•3h ago•0 comments

Show HN: 0xDEAD//TYPE – A fast-paced typing shooter with retro vibes

https://0xdeadtype.theden.sh/
109•theden•4d ago•25 comments

Show HN: I built a 2B-page search engine, independent of Google/Bing

4•Chief_Searcha•3h ago•5 comments

Show HN: I Wrote a 680-Page Interactive Book on Data Structures and Algorithms

https://cartesian.app
9•EliasY•6h ago•4 comments

Show HN: Conductor, a Mac app that lets you run a bunch of Claude Codes at once

https://conductor.build/
12•Charlieholtz•4h ago•10 comments

Show HN: LangWhich – a 30‑second daily challenge to recognize languages

https://langwhich.app
3•jdmelin•4h ago•0 comments

Show HN: WordPress Without PHP – Build Apps and CLI Tools in TypeScript

https://github.com/rnaga/wp-node
3•rnaga•4h ago•0 comments

Show HN: kiln – Git-native, decentralized secret management using age

https://kiln.sh/
12•pacmansyyu•5h ago•2 comments

Show HN: A directory of 800 free APIs, no auth required

https://freeapis.juheapi.com/apis
2•LeoWood42•5h ago•0 comments

Show HN: BloomSearch – Keyword search with hierarchical Bloom filters

https://github.com/danthegoodman1/bloomsearch
63•dangoodmanUT•4d ago•12 comments

Show HN: A 'Choose Your Own Adventure' written in Emacs Org Mode

https://tendollaradventure.com/sample/
151•dskhatri•22h ago•24 comments

Show HN: The HTML Maze – Escape an eerie labyrinth built with HTML pages

https://htmlmaze.com/
62•kyrylo•2d ago•16 comments

Show HN: A Git(1) implementation written in Python

https://github.com/xqb64/legit
2•xqb64•6h ago•0 comments

Show HN: Shoggoth Mini – A soft tentacle robot powered by GPT-4o and RL

https://www.matthieulc.com/posts/shoggoth-mini
583•cataPhil•2d ago•106 comments

Show HN: Cobble – A hard daily word game

https://wilf.live/cobble/
24•wolfred•19h ago•17 comments

Show HN: I built this to talk Danish to my girlfriend – works with any language

https://menerdu.vercel.app/
201•lil_csom•4d ago•107 comments

Show HN: Speclinter-MCP, better specs for your coding agent

https://github.com/orangebread/speclinter-mcp
2•orangebread•7h ago•0 comments

Show HN: An MCP server that gives LLMs temporal awareness and time calculation

https://github.com/jlumbroso/passage-of-time-mcp
84•lumbroso•1d ago•50 comments

Show HN: Needle – An Explorable Map of the News

https://needle.news
8•ryry•7h ago•7 comments

Show HN: DataRamen, a Fast SQL Explorer with Automatic Joins and Data Navigation

https://dataramen.xyz/
46•oleksandr_dem•1d ago•54 comments

Show HN: templUI Pro – A minimal UI kit for Go and templ apps

https://pro.templui.io/
4•axzilla•8h ago•0 comments

Show HN: Sapphire – Unleashing GPT-2-mini into emergence

https://github.com/oldwalls/sapphire
3•oldwalls•8h ago•3 comments

Show HN: We made our own inference engine for Apple Silicon

https://github.com/trymirai/uzu
176•darkolorin•2d ago•45 comments

Show HN: Beyond Z²+C, Plot Any Fractal

https://www.juliascope.com/
99•akunzler•2d ago•26 comments
Open in hackernews

Show HN: A tool that alerts when 404s silently return 200)

https://heberjulio65.medium.com/when-an-404-suddenly-turns-200-and-you-didnt-knew-b35e474df44b
2•kurogai•9h ago
Hey HN,

I recently ran into a scenario where a page that used to return a 404 suddenly started returning 200 — without warning. This led to the discovery of a forgotten admin endpoint being accidentally reactivated.

I wrote a short post about this issue and how it can surface subtle security or logic flaws.

Along the way, I built a small tool (ReconSnap) to help monitor this kind of thing — basically, it tracks web changes, auto-saves pages, and can react to specific conditions like status code flips, keyword appearance, or DOM mutations. It’s aimed mostly at security folks, OSINT researchers, and curious developers.

I realize this may seem like a bit of a promo, but I genuinely use it myself and figured it might be useful to others too. Feedback is welcome!

Here’s the post: https://medium.com/@heberjulio65/when-an-404-suddenly-turns-...

Comments

bubblebeard•9h ago
Interesting, this is a problem I have never considered. Regarding DOM changes though, wouldn’t it make more sense to monitor files for unexpected changes instead?
kurogai•8h ago
That makes sense — if you’re monitoring from within the system and have access to files directly, that’s definitely a more robust way to detect changes.

But my use case is more external-facing.

So the only thing you can rely on is what the browser sees — HTML, DOM, JS. In that context, unexpected DOM changes (like a hidden login form reappearing, or a 403 turning into a 200) can be quite telling.

What do you think?

bubblebeard•8h ago
Ah of course, that makes sense then. What about dynamic DOM content though? Like content produced by PHP or similar. Is that filtered somehow or does this analysis expect static content?