Critical code_pattern
MoceanAPI Order SMS Notification for WooCommerce Resolved · vendor_self_publishing_moceansms_api
1mo ago
| Slug | moceansms-order-sms-notification-for-woocommerce |
|---|---|
| Pattern | hardcoded_ip_url |
| Kind | builtin |
| Version | 1.4.12 |
| Hit count | 3 |
| First hit |
|
| Explanation | plugin source hardcodes a raw IPv4 URL (e.g. `https://94.156.79.8/...`) — legitimate plugins use DNS hostnames because IPs change. Hardcoded IPs in plugin code are almost always either dev leftovers or attacker C2 infrastructure. The June 2024 social-warfare keylogger (audit #14) used `https://94.156.79.8/sc-top.js` for the JS payload host, `/AddSites` for victim registration, `/CMSUsers` for filesystem-recon exfil. Operator infrastructure on raw IPs avoids domain registration / RDAP detection paths. Post-filtered to skip RFC1918/loopback/link-local ranges and `vendor/`/`tests/` paths. |
View raw JSON
{
"slug": "moceansms-order-sms-notification-for-woocommerce",
"pattern": "hardcoded_ip_url",
"kind": "builtin",
"version": "1.4.12",
"hit_count": 3,
"first_hit": {
"file": "lib/MoceanSMS.php",
"line": 24,
"snippet": "public $rest_ip_address = 'https://183.81.161.84:443/rest/2';"
},
"explanation": "plugin source hardcodes a raw IPv4 URL (e.g. `https://94.156.79.8/...`) \u2014 legitimate plugins use DNS hostnames because IPs change. Hardcoded IPs in plugin code are almost always either dev leftovers or attacker C2 infrastructure. The June 2024 social-warfare keylogger (audit #14) used `https://94.156.79.8/sc-top.js` for the JS payload host, `/AddSites` for victim registration, `/CMSUsers` for filesystem-recon exfil. Operator infrastructure on raw IPs avoids domain registration / RDAP detection paths. Post-filtered to skip RFC1918/loopback/link-local ranges and `vendor/`/`tests/` paths."
}