View raw JSON
{
"slug": "wp-restaurant-price-list",
"pattern": "unserialize_after_remote_call",
"kind": "builtin",
"version": "1.4.1",
"hit_count": 1,
"first_hit": {
"file": "assets/meta-box/inc/update/checker.php",
"line": 204,
"snippet": "L196: $request = wp_remote_post( \u2192 L204: return $response ? @unserialize( $response ) : false;"
},
"explanation": "a remote HTTP fetch (`wp_remote_*` / `curl_exec`) is followed by `@unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. A real finding regardless of author intent: any plugin that deserializes remote responses without validation is a latent RCE chain if the remote endpoint is ever compromised."
}