Critical code_pattern
Resolved · no_longer_matches
2026-04-24 17:01:47 (8d ago)
| Slug | megamenu |
|---|---|
| Pattern | unserialize_after_remote_call |
| Kind | builtin |
| Version | 3.8.1 |
| Hit count | 2 |
| 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": "megamenu",
"pattern": "unserialize_after_remote_call",
"kind": "builtin",
"version": "3.8.1",
"hit_count": 2,
"first_hit": {
"file": "classes/scss/1.11.1/src/Cache.php",
"line": 136,
"snippet": "L135: $c = file_get_contents($fileCache); \u2192 L136: $c = unserialize($c);"
},
"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."
}