Critical code_pattern
Resolved · no_longer_matches
2026-04-24 17:01:47 (7d ago)
| Slug | ml-slider |
|---|---|
| Pattern | unserialize_after_remote_call |
| Kind | builtin |
| Version | 3.108.0 |
| Hit count | 3 |
| First hit |
|
| Explanation | a remote HTTP fetch (`wp_remote_*`/`curl_exec`/`file_get_contents`) is followed by `@unserialize` within the same file — classic PHP Object Injection C2 gadget used by EP and most WP supply-chain backdoors. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak. |
View raw JSON
{
"slug": "ml-slider",
"pattern": "unserialize_after_remote_call",
"kind": "builtin",
"version": "3.108.0",
"hit_count": 3,
"first_hit": {
"file": "lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer.php",
"line": 73,
"snippet": "L73: return unserialize(file_get_contents($file)); \u2192 L73: return unserialize(file_get_contents($file));"
},
"explanation": "a remote HTTP fetch (`wp_remote_*`/`curl_exec`/`file_get_contents`) is followed by `@unserialize` within the same file \u2014 classic PHP Object Injection C2 gadget used by EP and most WP supply-chain backdoors. The error-suppressed form is the tell: legit code wants to know when deserialize fails; attackers suppress so malformed gadgets do not leak."
}