Live data from Hacker News

I found a WordPress RCEs with GPT5.6 and $25

slcyber.io

151–160 of 247 posts

Re: I found a WordPress RCEs with GPT5.6 and $25

#151

I am so done with FOMO writing. Sure man, you found one with $25. With $25 plus your entire industry domain specific knowledge of where to look, of how to probe, of what else you may have accumulated and collected over the years of working within this industry. Let's stop with the gambling narrative and the illusion that we are all missing out.

I can't agree with this more. May cooler, more compassionate minds prevail.

Re: I found a WordPress RCEs with GPT5.6 and $25

#152

Earlier quoted context omitted.

Likely referencing https://www.crowdfense.com/exploit-acquisition-program/ Zerodium used to offer up to 300k in 2021 https://www.securityweek.com/sites/default/files/images/Zero... These brokers usually don't pay the bulk sum - they sell access to nation actors and you get payed out over time as long as the bug is not patched to discourage reselling and burning it. I doubt anyone would confirm if they got the full pa…

[flagged]

Is there anywhere currently buying that you can approach without a pre-existing relationship?

Re: I found a WordPress RCEs with GPT5.6 and $25

#154
post #18

https://github.com/WordPress/WordPress/commit/3a640e1c5e39aa... String concatenation SQL injection in the year 2026.

The WordPress codebase is a disgrace. PHP is a beautiful language by now, but they absolutely butcher it and refuse to do anything about that.

I don't think PHP is a beautiful language. If it was Laravel wouldn't need to rewrite every function from standard library. And, I see no reason to use it compared to Typescript.

Re: I found a WordPress RCEs with GPT5.6 and $25

#155
post #71

Earlier quoted context omitted.

[flagged]

Let me convince you! :-) There are match expressions and arrow functions: $slug = $title |> trim(...) |> (fn($str) => str_replace(' ', '-', $str)) |> (fn($str) => str_replace('.', '', $str)) |> strtolower(...); There is meta-programming with annotations: final class PostsController { #[AccessControl(fn(Request $request, Post $post) => $request->user === $post->getAuthor() )] public function update(Request $request, P…

Looks like PHP is trying to act like Elixir. And all these are very new thing which we can't implement in wordpress because you have to care about backward compatibility.

Re: I found a WordPress RCEs with GPT5.6 and $25

#156
post #18

Earlier quoted context omitted.

The WordPress codebase is a disgrace. PHP is a beautiful language by now, but they absolutely butcher it and refuse to do anything about that.

I don't think PHP is a beautiful language. If it was Laravel wouldn't need to rewrite every function from standard library. And, I see no reason to use it compared to Typescript.

Ecosystem? The JS/TS ecosystem approach is to use as many libraries as possible for the sake of it, exposing you to a massive supply chain risk. PHP doesn't suffer from that because there are barely any libraries for it.

Re: I found a WordPress RCEs with GPT5.6 and $25

#157
post #43

Earlier quoted context omitted.

I remember multiple projects giving up on rewriting it. Maybe a machine with endless patience could do it?

I've done it multiple times but no one's gonna use my off the shelf blog when there's a bagilian WordPress plugins they wanna use. But with AI you kinda sorta should just build your own blog. Doctrine with slime framework. You can even throw a WordPress plugin at the LLM and ask it to implement the same thing.

> But with AI you kinda sorta should just build your own blog

Please don't. There is absolutely no reason not to use the extremely simple and powerful combination of:

* a headless CMS / static website generated, of which there are a bunch so pick the one you like the most. My go-to is Hugo but it is somewhat complex

* a static hosting service with a generous free tier like CloudFlare Pages/Workers, Netlify, Firebase Hosting, etc.

Your blog costs nothing, has zero attack surface and zero maintenance.

Re: I found a WordPress RCEs with GPT5.6 and $25

#158

There is no evidence that $500k has been paid or would be paid for an exploit like this one. Given that the article says that prompts are modified like they are holy scripture, perhaps sell the prompt for $500k. The author works for https://www.assetnote.io/ , which has AI products for automated scanning.

"People paid $5,000 for a Macintosh computer when they were new. I found one at a yard sale for $25."

Re: I found a WordPress RCEs with GPT5.6 and $25

#159

Earlier quoted context omitted.

I've done it multiple times but no one's gonna use my off the shelf blog when there's a bagilian WordPress plugins they wanna use. But with AI you kinda sorta should just build your own blog. Doctrine with slime framework. You can even throw a WordPress plugin at the LLM and ask it to implement the same thing.

did you mean Slim, the PHP framework? When I google 'slime framework' i get some machine learning stuff

Yea

Re: I found a WordPress RCEs with GPT5.6 and $25

#160

Earlier quoted context omitted.

What an awful fix. Does WordPress seriously still use basic string concatenation (edit: and sprintf) to build SQL queries?

To construct dynamic sql queries to have to string concatenate at least some parts, . User data should of course be passed via prepared statements.

One usually uses "query builder" pattern for that.

Also, regarding placeholders, historically many DB and frameworks do not support passing lists for a value in a placeholder (like "WHERE id IN(?)") so users of such software fall back to string concatenation.

Post reply on HN