frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Banned Books List 2025

https://pen.org/banned-books-list-2025/
1•rendx•1m ago•0 comments

What Is NSPM-7? Over 3k Nonprofits Sound Alarm on New Trump Directive

https://www.newsweek.com/what-is-nspm-7-over-3000-nonprofits-sound-alarm-on-new-trump-directive-1...
1•stopbulying•3m ago•2 comments

Easy Way to Use Sora2

https://aisora2.video
1•vitozhuang•3m ago•0 comments

Ask HN: Deploying Services with an LLM Interface?

1•sigalor•6m ago•0 comments

The Missing Middle: Who is funding Series C and later rounds in India?

https://www.dealflowiq.com/p/the-missing-middle
1•koolhead17•8m ago•0 comments

Immich v2.0.0 – First stable release

https://github.com/immich-app/immich/discussions/22546
1•Alexvb•9m ago•0 comments

Two Amazon delivery drones crash into crane in commercial area of Tolleson

https://www.abc15.com/news/region-west-valley/tolleson/two-amazon-delivery-drones-crash-into-cran...
1•gscott•11m ago•0 comments

It Is Bad (Exploitation of Fortra GoAnywhere MFT CVE-2025-10035) – Part 2

https://labs.watchtowr.com/it-is-bad-exploitation-of-fortra-goanywhere-mft-cve-2025-10035-part-2/
1•xn--yt9h•19m ago•0 comments

Xbox Game Pass page crashing as subscribers rush to cancel after 50% price hike

https://www.thegamer.com/xbox-game-pass-price-increase-cancel-subscription-page-crash/
2•kelseydh•19m ago•0 comments

"We Have No Idea How Models Will Behave in Production Until Production": ML Ops

https://arxiv.org/abs/2403.16795
2•todsacerdoti•20m ago•0 comments

Why Next.js Falls Short on Software Engineering

https://blog.webf.zone/why-next-js-falls-short-on-software-engineering-d3575614bd08
1•thunderbong•22m ago•0 comments

Ask HN: Resources at the Intersection of NLP and Philosophy

1•SonOfZion•22m ago•0 comments

LLVM AI tool policy: start small, no slop

https://discourse.llvm.org/t/rfc-llvm-ai-tool-policy-start-small-no-slop/88476
2•todsacerdoti•29m ago•0 comments

At&Df: Side-Channel Data Encoding Through Virtual MouseMvm(CursorHoppingEncoder)

https://zenodo.org/records/17248248
1•thevieart•32m ago•1 comments

Get cited by ChatGPT, Claude and more. V1 Beta. welcome feedback feature asks

https://www.gptsens.com
1•sansreal•32m ago•0 comments

Delta jets have 'low-speed collision' on the ground at New York's LaGuardia

https://apnews.com/article/delta-planes-collision-new-york-laguardia-6ccff3aabeca787c31f1f6746ad7...
1•petethomas•36m ago•2 comments

The Interstellar Path to Prosperity

https://avi-loeb.medium.com/the-interstellar-path-to-prosperity-72f6908fcd51
1•KnuthIsGod•38m ago•0 comments

Graph-Based AI Compiler

https://www.tdcommons.org/dpubs_series/8241/
1•nkko•40m ago•0 comments

Nokia and Ericsson equipment now have to be "black box" tested in China

https://www.ft.com/content/7d08731c-189e-4835-8cfa-048fe68611bd
2•henriquenunez•41m ago•1 comments

Cell Biology by the Numbers

https://book.bionumbers.org
1•ipnon•45m ago•0 comments

Show HN: Project2txt – Export your codebase to a single text file for LLMs

https://project2txt.com
1•regsvr32•49m ago•0 comments

OpenAI hits $500B valuation after share sale, source says

https://www.reuters.com/technology/openai-hits-500-billion-valuation-after-share-sale-source-says...
5•kamaraju•49m ago•2 comments

Matrix Core Programming on AMD CDNA3 and CDNA4 Architecture

https://salykova.github.io/matrix-cores-cdna
3•skidrow•51m ago•0 comments

Creating custom kernels for the AMD MI300

https://huggingface.co/blog/mi300kernels
1•skidrow•52m ago•0 comments

Bringing Wayland Support to Avalonia

https://avaloniaui.net/blog/bringing-wayland-support-to-avalonia
1•styx31•55m ago•0 comments

LucidraX

https://lucidra-x.lovable.app/
1•ANSAAR•1h ago•1 comments

Plexus – A Solid Modeling Library

https://github.com/cartesian-theatrics/plexus
1•TheWiggles•1h ago•0 comments

OpenAI Completes Share Sale at Record $500B Valuation

https://www.bloomberg.com/news/articles/2025-10-02/openai-completes-share-sale-at-record-500-bill...
4•gopkarthik•1h ago•1 comments

Show HN: Turbo-Flow Claude v1.0.1 Alpha

https://github.com/marcuspat/turbo-flow-claude
1•marcuspat•1h ago•0 comments

Our first step towards an AI-native operating system

https://nothing.community/d/43142-our-first-step-towards-an-ai-native-operating-system
2•ChrisArchitect•1h ago•0 comments
Open in hackernews

10000 dollar RE suite vs. Intel 1997. Guess who wins? (Full research inside)

https://github.com/sapdragon/hint-break
4•sapdragon•1h ago

Comments

sapdragon•1h ago
Hey everyone, A few days ago, a friend sent me a sample with the message: "IDA is going nuts on this, but it runs fine." That kicked off a deep dive that ended up revealing a massive blind spot across the entire RE industry.

TL;DR: Two opcodes from a 25-year-old Intel patent (0F 1A and 0F 1B) are valid NOPs that your disassembler probably can't see, making them perfect for anti-RE.

The Story: These opcodes were reserved by Intel in the 90s to allow new instructions to be added without breaking old software. On older CPUs, they'd just be NOPs. It was a brilliant idea. But somehow, tool developers for IDA, Ghidra, Binary Ninja, etc., just... missed a couple of them.

The result? IDA Pro sees db 0Fh, 1Ah... and stops analyzing the function. Ghidra marks it as undefined. You can literally break static analysis with a single, valid instruction that the CPU executes without a problem.

I've put together a full investigation, a PoC you can compile yourself, and a pre-compiled binary to test your own tools.

GitHub Repo with PoC & Research: https://github.com/sapdragon/hint-break

Full Article: https://alder-innocent-b3c.notion.site/THE-25-YEAR-OLD-INTEL...

Go ahead, throw patched.exe from the repo into your favorite tool and see for yourself. I'm curious to see what you all think.

sim7c00•58m ago
not a bad find, its not unknown that most disassemblers dont do all the things correct. fun when u find one that breaks the further disass tho.

intel xed is pretty accurate usually but it also doesnt disassemble all possible opcodes.

if you do a jump over some UD but the jmp target is taken from reg value u can also get disassembly to break etc.

its kinda the problem of static analysis. it's not easy to see if someone inserted 1 byte of data, or if it was an unknown opcode u dont handle etc.

definitely fun, will throw off automated tools for analysis especially if you can make the invalid disassembly just call exit or do something valid but short/benign..

may also wanna look if they are known unknown, like this stuff: https://x.com/_markel___/status/1373059797155778562

ive seen now multiple type of either debug or backdoor instructions on x86 based cpus over the past few years

sapdragon•36m ago
Yes, but in most cases there is no such large-scale problem, plus we broke even all the popular debuggers here. The jump trick can probably only break Ghydra? But anything can break it(